/**
 * 2023 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    IT PREMIUM OÜ <info@itpremium.net>
 * @copyright 2023 IT PREMIUM OÜ
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
 */

div.catalog-navigation {
    display: none;
    position: fixed;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    top: 5%;
    margin-left: -75px;
    z-index: 999;
}

div.catalog-navigation ul {
    margin: 0px;
}

div.catalog-navigation ul li {
    position: relative;
}

div.catalog-navigation ul li a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

div.catalog-navigation ul li i.material-icons {
    font-size: 22px;
    color: #333;
}

div.catalog-navigation ul li:hover i.material-icons,
div.catalog-navigation ul li.active i.material-icons {
    color: #FFF;
}

div.catalog-navigation ul li:hover,
div.catalog-navigation ul li.active,
div.catalog-navigation ul li span.block-heading {
    background-color: #333;
}

div.catalog-navigation ul li span.block-heading {
    position: absolute;
    top: 0;
    left: 45px;
    height: 45px;
    line-height: 45px;
    color: #FFF;
    padding: 0px 10px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    display: none;
}

div.catalog-navigation ul li:hover span.block-heading {
    display: block;
}

div.catalog-blocks div.catalog-block {
    margin-bottom: 30px;
}

div.catalog-blocks div.catalog-block div.catalog-block-wrapper {
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

div.catalog-blocks div.catalog-block div.catalog-block-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

div.catalog-blocks div.catalog-block div.categories {
    padding: 25px;
}

div.catalog-blocks div.catalog-block div.categories i.material-icons {
    margin-bottom: 20px;
    font-size: 40px;
}

div.catalog-blocks div.catalog-block div.categories h4 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dadada;
}

div.catalog-blocks div.catalog-block div.categories ul {
    margin-bottom: 0px;
}

div.catalog-blocks div.catalog-block div.categories ul li:not(:last-child) {
    margin-bottom: 10px;
}

div.catalog-blocks div.catalog-block div.categories ul li a {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

div.catalog-blocks div.catalog-block div.categories ul li a:hover {
    text-decoration: underline;
}

div.catalog-blocks div.catalog-block div.image {
    position: relative;
    overflow: hidden;
    padding: 0;
}

div.catalog-blocks div.catalog-block div.image div.secondary-heading {
    width: 100%;
    font-size: 24px;
    position: absolute;
    bottom: 35px;
    padding: 25px 40px;
    color: #FFF;
}

div.catalog-blocks div.catalog-block div.listing {
    padding: 0;
    border-left: 1px solid #dadada;
}

div.catalog-blocks div.catalog-block div.listing .button-prev,
div.catalog-blocks div.catalog-block div.listing .button-next {
    position: absolute;
    top: calc(50% - 15px);
    z-index: 999;
}

div.catalog-blocks div.catalog-block div.listing .button-prev i,
div.catalog-blocks div.catalog-block div.listing .button-next i {
    font-size: 30px;
    background-color: #FFF;
    border: 1px solid #dadada;
}

div.catalog-blocks div.catalog-block div.listing .button-prev i:hover,
div.catalog-blocks div.catalog-block div.listing .button-next i:hover {
    cursor: pointer;
}

div.catalog-blocks div.catalog-block div.listing .button-prev {
    left: 0;
}

div.catalog-blocks div.catalog-block div.listing .button-next {
    right: 0;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.cover {
    margin-bottom: 15px;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.labels span.discount-percentage,
div.catalog-blocks div.catalog-block div.listing div.listing-item div.labels span.discount-amount {
    position: absolute;
    background: #f39d72;
    color: #fff;
    padding: 5px 6px;
    top: 15px;
    left: 15px;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.labels span.on-sale {
    position: absolute;
    background: #2fb5d2;
    color: #fff;
    padding: 5px 6px;
    top: 15px;
    right: 15px;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.prices {
    margin-bottom: 10px;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.prices span.old_price {
    text-decoration: line-through;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.prices span.price {
    font-weight: 600;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.link a {
    font-size: 14px;
    color: #333;
}

div.catalog-blocks div.catalog-block div.listing div.listing-item div.link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .catalog-navigation {
        display: none !important;
    }
    
	div.catalog-blocks .swiper-container {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .hide_on_xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hide_on_sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hide_on_md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hide_on_lg {
        display: none !important;
    }
}