/**
* 2007-2019 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2019 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

div.catalog-navigation {
	background-color: #FFF;
	transition: opacity 0.3s;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
	position: fixed;
	top: 5%;
	left: 50%;	
    margin-left: -625px;
	z-index: 999;
	display: none;
}

div.catalog-navigation ul {
	margin: 0px;
}

div.catalog-navigation ul li {
	position: relative;
}

div.catalog-navigation ul li a {
	width: 45px;
	height: 45px;	
	line-height: 45px;
	text-align: center;
	display: inline-block;
}

div.catalog-navigation ul li i.material-icons {
	font-size: 22px;
	color: #333;
}

div.catalog-navigation ul li:hover,
div.catalog-navigation ul li.active,
div.catalog-navigation ul li span.heading{
	background-color: #333;
}

div.catalog-navigation ul li:last-child {
	border-bottom: none;
}

div.catalog-navigation ul li:hover i.material-icons,
div.catalog-navigation ul li.active i.material-icons
{
	color: #FFF !important; 
}

div.catalog-navigation ul li span.heading {
	position: absolute;
	top: 0;
    left: 45px;
	height: 45px;
	line-height: 45px;
	color: #FFF;
	padding: 0px 10px;
	font-size: 13px;
	text-align: center;
	white-space: nowrap;	
	display: none;
}

div.catalog-navigation ul li:hover span.heading {
	display: block;
}

.catalog-blocks {
	float: left;
	width: 100%;
}

div.catalog-block {
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	margin-bottom: 35px;
}

div.catalog-block div.categories {
	padding: 25px 15px;
}

div.catalog-block div.categories i.material-icons {
	margin-bottom: 20px;
	font-size: 40px;
}

div.catalog-block div.categories h4 {
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dadada;
}

div.catalog-block div.categories ul {
	margin: 0px;
}

div.catalog-block div.categories ul li {
	margin-bottom: 10px;
}

div.catalog-block div.categories ul a {
	color: #333;
	font-size: 12px;
	font-weight: 600;
}

div.catalog-block div.categories ul a:hover {
	text-decoration: underline;
	color: #2fb5d2;
}

div.catalog-block div.image img {  
	width: 100%;
    max-height: 550px;
}

div.catalog-block div.image div.title {
	width: calc(100% - 30px);
	font-size: 24px;
	position: absolute;
	bottom: 35px;
	padding: 25px 40px;
	color: #FFF;
}

div.catalog-block div.content {
	padding: 0px;
	text-align: center;
}

div.catalog-block div.content div.content-block {
	padding: 20px;
}

div.catalog-block div.content.right div.content-block {
	border-right: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

div.catalog-block div.content div.content-block:hover {
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}	
	
div.catalog-block div.content div.content-block img {
	max-width: 100%;
	margin-bottom: 15px;
}

div.catalog-block div.content div.content-block a.content-name {
	font-size: 14px;
	color: #333;
	height: 40px;
	display: block;
}

div.catalog-block div.content div.content-block a:hover {
	text-decoration: underline;
}

div.catalog-block div.prices {
	margin-bottom: 10px;
}

div.catalog-block div.labels span.discount-percentage,
div.catalog-block div.labels span.discount-amount {
	position: absolute;
	background: #f39d72;
	color: #fff;
	padding: 5px 6px;
	top: 15px;
	left: 15px;
}

div.catalog-block div.labels span.on-sale {
	position: absolute;
	background: #2fb5d2;
	color: #fff;
	padding: 5px 6px;
	top: 15px;
	right: 15px;
}

div.catalog-block div.prices span.price {
	font-weight: 600;
}

div.catalog-block div.prices span.old_price {
	text-decoration: line-through;
}

div.catalog-block div.content .button-prev, 
div.catalog-block div.content .button-next {
	position: absolute;
	top: calc(50% - 15px);
	z-index: 999;
}

div.catalog-block div.content .button-prev {
	left: 0px;
}

div.catalog-block div.content .button-next {
	right: 0px;
}

div.catalog-block div.content .button-prev i.material-icons, 
div.catalog-block div.content .button-next i.material-icons {
	font-size: 30px;
	background-color: #FFF;
	border: 1px solid #dadada;
}

div.catalog-block div.content .button-prev:hover, 
div.catalog-block div.content .button-next:hover {
	cursor: pointer;
}

/* Responsive */
@media only screen and (max-width: 768px) {
	.swiper-container {
		width: 300px;
	}
}