/* FONTS */

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-black.eot');
    src: url('../fonts/cairo-blackd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-black.woff2') format('woff2'), url('../fonts/cairo-black.woff') format('woff'), url('../fonts/cairo-black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-bold.eot');
    src: url('../fonts/cairo-boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-bold.woff2') format('woff2'), url('../fonts/cairo-bold.woff') format('woff'), url('../fonts/cairo-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-extralight.eot');
    src: url('../fonts/cairo-extralightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-extralight.woff2') format('woff2'), url('../fonts/cairo-extralight.woff') format('woff'), url('../fonts/cairo-extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-light.eot');
    src: url('../fonts/cairo-lightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-light.woff2') format('woff2'), url('../fonts/cairo-light.woff') format('woff'), url('../fonts/cairo-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-regular.eot');
    src: url('../fonts/cairo-regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-regular.woff2') format('woff2'), url('../fonts/cairo-regular.woff') format('woff'), url('../fonts/cairo-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/cairo-semibold.eot');
    src: url('../fonts/cairo-semiboldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/cairo-semibold.woff2') format('woff2'), url('../fonts/cairo-semibold.woff') format('woff'), url('../fonts/cairo-semibold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


/*  1. LOADER
====================================*/

#loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 99999;
}

    #loader.fullscreen {
        padding: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background-color: #fff;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #loader .loader-svg {
        -webkit-animation: loader-rotate 2s linear infinite;
        animation: loader-rotate 2s linear infinite;
        position: absolute;
        left: calc(50% - 24px);
        top: calc(50% - 24px);
        display: block;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

        #loader .loader-svg .path {
            stroke-dasharray: 1, 200;
            stroke-dashoffset: 0;
            -webkit-animation: loader-dash 1.5s ease-in-out infinite;
            animation: loader-dash 1.5s ease-in-out infinite;
            stroke-linecap: round;
        }

    #loader.show {
        -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
        -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
        transition: opacity .4s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

@keyframes loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}


/*  3. MAIN ELEMENTS
====================================*/

html,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100%;
}

body {
    background-color: #ECFDFA; /*#F8F1EA*/
    min-height: 100%;
    color: #272625;
    font-size: 15px;
    line-height: 1.46;
    font-family: 'Cairo', sans-serif;
    font-weight: normal;
    position: relative;
}

p {
    margin-bottom: 1rem;
}

strong,
b {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    /*display: inline-block;*/
    transition: all 0.15s cubic-bezier(0.1, 0.2, 0.8, 1);
}

    a:hover {
        text-decoration: none;
        transition: all 0.15s cubic-bezier(0.1, 0.2, 0.8, 1);
    }

hr {
    border: 0;
    border-top: 1px dashed #C3996F;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -user-select: none;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}


/*------------------------------------*\
  #HEADING
\*------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    line-height: 1.2;
    color: #393939;
    font-weight: bold;
    margin-bottom: 1rem;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h1 a:hover,
    h2 a:hover,
    h3 a:hover,
    h4 a:hover,
    h5 a:hover {
        text-decoration: none;
        color: inherit;
    }

h1,
.h1 {
    font-size: 2rem;
}

h2,
.h2 {
    font-size: 1.5rem;
}

h3,
.h3 {
    font-size: 1.25rem;
}

h4,
.h4 {
    font-size: 1.125rem;
}

h5,
.h5 {
    font-size: 1rem;
}

h6,
.h6 {
    font-size: 15px;
}

.page-title,
.subtitle {
    position: relative;
    font-size: 36px;
    font-weight: 300;
    color: #485870;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    padding: 1rem 0;
}

.subtitle {
    text-align: center;
    top: -0.5rem;
}

    .subtitle::before,
    .subtitle::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 1rem;
        background-color: #485870;
    }

    .subtitle::before {
        top: 0;
    }

    .subtitle::after {
        bottom: 0;
    }

@media(max-width:767px) {
    h1,
    .h1,
    #hero .h-body .h-title {
        font-size: 1.75rem;
    }

    h2,
    .h2 {
        font-size: 1.5rem;
    }

    h3,
    .h3 {
        font-size: 1.25rem;
    }
}


/*  Header  */

.header {
    /*padding: 1.5rem 0 3rem 0;*/
    transition: all 0.3s;
}

    .header .container {
        display: -webkit-box;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

.logo {
    display: inline-block;
}

.header-menu,
.header-menu li a {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-menu li {
        padding-left: 1.5rem;
    }

        .header-menu li a {
            color: #485870;
            font-size: 18px;
            font-weight: 600;
        }

            .header-menu li a .text {
                margin-left: 0.75rem;
            }

.header-cart {
}

    .header-cart > a .icon {
        position: relative;
    }

.header-cart__count {
    display: inline-block;
    position: absolute !important;
    top: -8px;
    right: -8px;
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    width: 25px;
    height: 25px;
    background-color: #485870;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(98, 79, 174, 0.3);
}

.header-cart .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-cart {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
    border-width: 0;
    min-width: 20rem;
}

.cart-list {
    height: 20rem !important;
    width: 100% !important;
    padding: 0 0.75rem;
}

.cart-item {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.75rem 0;
}

    .cart-item + .cart-item {
        border-top: 1px dashed #C3996F;
    }

    .cart-item:last-child {
        border-bottom: 0;
    }

.cart-item__image {
    max-width: 30%;
}

    .cart-item__image img {
    }

.cart-item__body {
    padding-left: 1rem;
    max-width: 70%;
}

.cart-item__title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cart-item__price {
}


/* Search */

.block-search {
    padding: 1.5rem 0 0.5rem;
    position: relative;
    background-color: #1FB1A5;
}

.search-wrap {
    position: relative;
    margin-top: -3rem;
}

.searchbar {
    position: relative;
    margin-bottom: 0.5rem;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 0;
    color: #C19D60;
    transform: translateY(-50%);
    padding: 0 1.25rem;
}

.search-input {
    padding: 1.5rem 1rem 1.5rem 4.5rem;
    font-size: 18px;
    border-width: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}

.search-fltr {
    padding: 15px 15px 15px 0;
    width: 100%;
    width: calc(100% + 15px);
}

.fltr-list,
.submenu-list {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .fltr-list li,
    .submenu-list li {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

        .fltr-list li:first-child {
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        }

        .fltr-list li + li {
            padding-left: 1rem;
        }

.fltr-label {
    padding: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #fff;
    background-color: #E3F1EA;
    border-radius: 50%;
}

.fltr-link {
    width: 100%;
    color: #5C5C5C;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #fff;
    border-color: #fff;
    height:10px !important;
}

    .fltr-link:hover {
        box-shadow: 0 0 15px rgb(0, 0, 0, 0.16);
    }

    .fltr-link.active {
        color: #fff;
        background-color: #485870;
        border-color: #485870;
    }

.search-fltr .ps__rail-x,
.search-fltr .ps__rail-y,
.submenu-wrap .ps__rail-x,
.submenu-wrap .ps__rail-y {
    /*display: none !important;*/
    opacity: 0 !important;
}


/* Social */

.social {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center !important;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-direction: row !important;
    flex-direction: row;
}

    .social li {
    }

        .social li a {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center !important;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            text-align: center;
            font-size: 1rem;
            white-space: nowrap;
            line-height: 1;
            padding: 0 0.5rem;
            transition: all 0.3s linear;
            margin-left: 0.25rem;
            margin-bottom: 0.375rem;
        }

            .social li a .icon {
                width: 25px;
                height: 25px;
                line-height: 20px;
                text-align: center;
                color: #C19D60;
                background-color: #ECFDFA;
                border-radius: 50%;
            }

            .social li a svg {
                width: 14px;
                height: 14px;
            }

    .social a .text {
        margin-left: 0.5rem;
    }

    .social label {
        font-size: 1rem;
        color: #fff;
        font-weight: 500;
        margin-left: 1rem;
        margin-bottom: 0;
    }


/* Footer */

.footer {
    padding: 1.5rem 0;
    background: #326BA8;
}

.footer-body {
}

.footer-fix {
    background: #fff;
    padding: 15px;
    margin-top: -100px;
    color: #000;
    box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    text-align: center;
}

.footer-notice {
    text-align: center;
}


/* Kategoriler */

.main {
    margin-bottom: 3rem;
}

.category {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid #1FB1A5;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.category-image {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

    .category-image img {
        border-radius: 8px;
        width: 100%;
    }

.category-body {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

.category-title,
.category-title .icon {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.category-title {
    position: relative;
    font-size: 19px;
    color: #000000;
    font-weight: 400;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: -1.5rem;
    min-width: 80%;
    background-color: #F8F1EA;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

    .category-title .icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        color: #485870;
        border: 1px solid #485870;
        border-radius: 50%;
        margin-right: 0.75rem;
        transition: transform 0.3s linear;
    }

.category:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.40);
}

    .category:hover .category-title .icon {
        transform: translateX(0.5rem);
    }


/* Sub Menu */

.submenu {
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.submenu-wrap {
    width: 100%;
    padding: 0.5rem 1rem;
}

.submenu-list li {
    text-align: center;
    padding: 0 0.5rem;
}

.submenu-link {
    position: relative;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    color: #666666;
    text-align: center;
    padding: 0.75rem 0;
    border-radius: 1.5rem;
}

    .submenu-link:hover,
    .submenu-link.active {
        color: #485870;
    }

        .submenu-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            height: 5px;
            background-color: #485870;
        }


/* Product */

.product-list {
}

.product {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px dashed #C3996F;
}

.product-title {
    font-weight: 600;
    font-size: 21px;
    color: #000;
    text-transform: uppercase;
    padding-right: 4rem;
    margin-bottom: 0.5rem;
}

.product-body {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.product-image {
    /*max-width: 145px;*/
    -ms-flex: 0 0 145px;
    flex: 0 0 145px;
    /*height: 140px;*/
    margin-right: 1rem;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.5rem;
    }

.product-content {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 15px;
    color: #000;
}

.product-price {
    font-size: 18px;
    color: #272625;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 1rem;
}

.product-ext {
    /*max-width: 36px;*/
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    margin-left: 1rem;
}

/*.btn-add {
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 1;
    color: #fff;
    background-color: #485870;
    border-color: #485870;
    box-shadow: 5px 5px 10px rgba(98, 79, 174, 0.33);
    border-radius: 50%;
}

    .btn-add .icon {
        width: 16px;
        height: 16px;
    }*/


/* Product Modal */

.modal-product {
    max-width: 550px;
    width: 100%;
    padding: 4rem 0 0 0;
    background-color: transparent;
}

    .modal-product .fancybox-close-small {
        width: 42px;
        height: 42px;
        color: white;
        background-color: #C19D60;
        border-radius: 50%;
        top: 2.75rem;
        right: 1.5rem;
        opacity: 1;
    }

        .modal-product .fancybox-close-small:hover {
            background-color: white;
            color: #C19D60;
        }

.product-modal {
    border-radius: 1rem;
    background-color: #ECFDFA;
    text-align: center;
    padding: 2rem;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% auto;
}

.pm-image {
    margin-bottom: 1rem;
    text-align: center;
}

    .pm-image img {
        border-radius: 8px;
        max-width: 300px;
    }

.modal-product .pm-title {
    font-weight: 600;
    font-size: 21px;
    color: #C19D60;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pm-content {
    font-size: 14px;
    max-width: 25rem;
    margin: 0 auto 1rem auto;
    color: #C19D60 !important;
}

    .pm-content p span {
        color: #182A22 !important;
    }

.pm-price {
    font-size: 1.5rem;
    border-bottom: 1px dashed #1FB1A5;
    padding-bottom: 1rem;
    max-width: 13rem;
    margin: 0 auto 2.5rem auto;
    color: #C19D60 !important;
}

.pm-button {
    position: relative;
}

    .pm-button .btn-add {
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .pm-button .btn-addcart {
    }

.modal-product.with-image .product-modal {
    padding-top: 0.1rem;
}

.modal-product.with-image .pm-image {
    margin-top: -3rem;
}

.predictive {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
    padding: 1rem;
    z-index: -1;
}

.predictive-title {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 1rem;
}

.predictive-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 300px;
}

    .predictive-list li {
        border-bottom: 1px dashed #C6C6C6;
    }

        .predictive-list li:last-child {
            border-bottom: 0;
        }

.predictive-item {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #000000;
    font-size: 1rem;
    padding: 0.5rem 0;
}

    .predictive-item .image {
    }

        .predictive-item .image img {
            border-radius: 8px;
            max-width: 60px;
            max-height: 60px;
        }

    .predictive-item .title {
        font-size: 1rem;
        margin-bottom: 0;
        margin-left: 1rem;
    }

    .predictive-item:hover {
        background-color: #F8F1EA;
    }

.predictive--active .predictive {
    z-index: 9999;
    display: block;
}


/* Page Cookie */

.page-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #000000;
    opacity: .9;
}

    .page-cookie .grid-center {
        padding: 8px 15px;
    }

    .page-cookie .cookie-text {
        font-size: 12px;
        letter-spacing: .5px;
        color: #fff;
        margin-bottom: 0;
        padding-right: 40px;
    }

        .page-cookie .cookie-text a {
            color: #fff;
            font-weight: bold;
        }

    .page-cookie .btn {
        border-radius: 0;
        padding: 8px 2rem;
    }

.mb-0 {
    margin-bottom: 0 !important;
}

.mbx-1 {
    margin-bottom: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}


/*  CROSS BROWSER
====================================*/


/*Internet Explorer */

.ie_11 .quickview,
.msie .quickview {
    width: 100%;
    max-width: 1140px;
}

.ie_11 .figure-img {
    overflow: visible;
}


/* IE-10 */

.msie .pd-bttns .btn {
    padding-left: 15px;
}


/* Safari */

.safari .form-control,
.safari .btn {
    line-height: normal;
}


/*  MEDIA QUERY
====================================*/

@media(max-width:1199px) {
}

@media(max-width:991px) {
    .search-fltr {
        width: 100%;
    }
}

@media(max-width:767px) {
    html,
    body {
        /*overflow-x: hidden;*/
    }

    .header-menu li a .text {
        display: none;
    }

    .main,
    .category {
        margin-bottom: 1rem;
    }

    .header-cart__count {
        font-size: 13px;
        color: #fff;
        line-height: 20px;
        text-align: center;
        width: 22px;
        height: 22px;
    }

    .page-title {
        font-size: 22px;
    }

    .search-input {
        font-size: 1rem;
        padding: 1.25rem 1rem 1.25rem 3rem;
    }

    .search-icon {
        padding: 0 1rem;
    }

        .search-icon svg {
            width: 20px !important;
            height: 20px !important;
        }

    .category-title {
        font-size: 16px;
        line-height: 1.3;
        padding: 0.5rem;
        margin-top: -1rem;
    }

        .category-title .icon {
            margin-right: 0.5rem;
            min-width: 20px;
            max-width: 20px;
        }

    .footer {
        text-align: center;
    }

    .footer-notice {
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 13px;
    }

    .social li a {
        font-size: 14px;
    }

        .social li a .icon {
            line-height: 23px;
        }

    .submenu-list li {
        padding: 0 0.75rem;
    }

    .submenu-link {
        color: #485870;
    }

        .submenu-link.active::after {
            height: 3px;
        }
}

@media(max-width:567px) {
    .predictive {
        max-width: 100%;
    }

    .product-image {
        /*max-width: 25%;*/
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        /*height: 120px;*/
    }

    .product-price {
        position: absolute;
        right: 0;
        top: 1rem;
    }
}

@media(max-width:359px) {
}

@media(min-width:568px) {
}

@media(min-width:568px) and (max-width:767px) {
}

@media(min-width:768px) {
    .submenu {
        background-color: #fff;
        border-radius: 30px;
        margin-top: -1rem;
        margin-bottom: 1.5rem;
    }

    .submenu-list {
        -webkit-justify-content: center;
        justify-content: center;
    }

        .fltr-list li,
        .submenu-list li {
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            padding: 0 1rem;
        }

            .fltr-list li:first-child {
                padding-left: 0;
            }

    .product.with-image .product-price {
        position: absolute;
        right: 0;
        top: 1rem;
    }

    /*.product-list {
        margin-right: -1rem;
        margin-left: -1rem;
    }*/

        .product-list > .grid {
            padding-right: 1rem;
            padding-left: 1rem;
        }

            .product-list > .grid:nth-child(2n)::before {
                content: "";
                position: absolute;
                left: 0;
                top: 30%;
                height: 40%;
                width: 1px;
                border-left: 1px dashed #C3996F;
            }
}

@media(min-width:568px) and (max-width:991px) {
}

@media(min-width:768px) and (max-width:991px) {
    .footer .social {
        margin-top: 1rem;
    }
}

@media(min-width:992px) {
    .social {
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        float: right;
    }

    .submenu {
        margin-bottom: 2.5rem;
    }

    .submenu-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
        overflow: inherit !important;
    }

    .submenu-link.active::after {
        margin-top: 1.25rem;
    }

    .submenu .ps--active-y > .ps__rail-y {
        display: none;
    }
}

@media(min-width:992px) and (max-width:1199px) {
}

@media(min-width:1200px) {
    .submenu-wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }

/*    .product-list {
        margin-right: -2rem;
        margin-left: -2rem;
    }*/

        .product-list > .grid {
            padding-right: 2rem;
            padding-left: 2rem;
        }

    .product {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

@media(min-width:1600px) {
}

@media(min-width:1200px) and (max-width:1899px) {
}

@media(min-width:1900px) {
}

@media(min-width:2100px) {
}

@media(min-width:2500px) {
}

::selection {
    color: #ffffff;
    background-color: #485870;
}

::-moz-selection {
    color: #ffffff;
    background-color: #485870;
}

::-webkit-scrollbar-track {
    background-color: #37474f;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #C19D60;
    border-radius: 0;
}
