/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

 :root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --light-grey: #DEDEDE;
    --light-green: #5C6960;
    --dark-green: #1D2927;
    --grey: #575757;
    --title-text: #141C1A;
    --footer-background: #F3EADC;
    --footer-border-color: #ECE4D7;

    /* Colors: */
    --unnamed-color-141c1a: #141C1A;
    --unnamed-color-ffffff: #FFFFFF;
    --unnamed-color-4f4947: #4F4947;

    /* Font/text values */
    --unnamed-font-family-montserrat-medium: Montserrat-Medium;
    --unnamed-font-style-normal: normal;
    --unnamed-font-weight-normal: normal;
    --unnamed-font-size-13: 13px;
    --unnamed-font-size-14: 14px;
    --unnamed-character-spacing-0: 0px;
    --unnamed-line-spacing-20: 20px;

    /*Order confirmation page*/
    --order-confirmation-text-color: #1E2A28;
    --order-confirmation-button-color: #5C6960;
}

/*Start cart design*/
.sb-menu-right {
    overflow-y: auto;
}

.sb-menu-right .cart-preview .cart-title {
    background: var(--light-green) 0 0 no-repeat padding-box;
    padding: 0;
}

.sb-menu-right .cart-preview .cart-title .h4 {
    color: var(--white-color);
    font: normal normal 600 16px/40px Montserrat;
    padding: 0 20px;
}

.sb-menu-right .sb-close-btn {
    top: 10px;
    right: 20px;
}

.cart-remove-all-products-block {
    background-color: var(--white-color);
}

.checkout-remove-all-products-button,
.cart-remove-all-products-button,
.checkout-create-new-address-button {
    border: 1px solid var(--dark-green);
    margin: 20px;
    padding-block: 11px;
    color: var(--dark-green);
    font: normal normal normal 13px/16px Montserrat;
    text-transform: uppercase;
    text-align: center;
}

.checkout-remove-all-products-button:hover,
.cart-remove-all-products-button:hover,
.checkout-create-new-address-button:hover {
    background-color: var(--dark-green);
    color: var(--white-color);
    border-color: var(--dark-green);
    cursor: pointer;
}

.checkout-remove-all-products-button.disabled,
.cart-remove-all-products-button.disabled {
    background-color: var(--light-grey);
    color: var(--dark-green);
    cursor: not-allowed;
}

.cart-available-products-title {
    background-color: var(--white-color);
    letter-spacing: 2.4px;
    color: var(--title-text);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    padding: 10px 20px;
}

.sb-menu-right .cart-items {
    padding: 5px 0 10px 0;
}

.sb-menu-right .cart-preview .cart-product-line {
    padding: 10px 0;
    margin: 0 20px;
    border: 0;
}

.sb-menu-right .cart-preview .cart-product-line .product-image {
    flex: 70px 0 0;
}

.sb-menu-right .cart-preview .cart-product-line .product-infos {
    padding-left: 15px;
}

.sb-menu-right .cart-preview .product-infos .product-name {
    letter-spacing: 0;
    color: var(--dark-green);
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    margin: 0;
}

.sb-menu-right .cart-preview .product-infos .product-name:hover {
    text-decoration: underline;
}

.sb-menu-right .cart-preview .product-infos .product-code,
.sb-menu-right .cart-preview .product-infos .product-delivery {
    color: var(--dark-green);
    font-size: 12px;
    line-height: 15px;
}

.sb-menu-right .cart-preview .product-infos .product-delivery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.product-name-block,
.product-price-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.product-price-block {
    align-items: center;
}

.product-qty {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.product-qty .product-qty-container {
    margin-right: 5px;
    width: 80px;
}

.sb-menu-right .cart-preview .product-infos .product-price {
    margin-top: unset;
    color: var(--dark-green);
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-top: 3px;
}

.product-qty .quantity-button,
.product-qty-input {
    background-color: var(--white-color);
}

.product-qty-input {
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    border-left: 0;
    border-right: 0;
    color: var(--title-text);
    font-weight: 600;
}

.product-qty .quantity-button {
    border: 1px solid var(--light-grey);
}

.product-qty .quantity-button.quantity-down {
    border-right: 0;
}

.product-qty .quantity-button.quantity-up {
    border-left: 0;
}

.quantity-button-left,
.quantity-button-right {
    background-color: var(--light-grey);
    width: 16px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-button-left {
    border-radius: 0 100% 100% 0/ 0 50% 50% 0;
}

.quantity-button-right {
    border-radius: 100% 0 0 100%/50% 0 0 50%;
    margin-top: -1px;
}

.product-remove-icon-container:hover .product-remove-icon {
    stroke: var(--black-color);
}

.quantity-button-right,
.quantity-button-left {
    width: 20px;
    height: 30px;
    background-repeat: no-repeat;
}

.product-qty-text {
    height: 32px;
    padding-top: 5px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#js-cart-sidebar .product-qty-text {
    font-size: 13px;
}

.sb-menu-right .cart-preview .cart-bottom {
    padding: 20px
}

.cart-preview .cart-product-line .product-remove {
    align-self: unset;
    width: 18px;
}

.sb-menu-right .cart-bottom .total-line span,
.sb-menu-right .cart-bottom .total-line span.price {
    color: var(--grey);
    font-size: 13px;
    line-height: 16px;
    font-weight: normal;
}

.sb-menu-right .cart-preview .cart-bottom .total-line.products {
    margin-bottom: 10px;
}

.sb-menu-right .cart-bottom .cart-total span.label,
body .sb-menu-right .cart-bottom .cart-total .price-total {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.cart-preview .cart-action .btn-primary {
    height: 40px;
    border-radius: 0;
    background: var(--light-green) 0 0 no-repeat padding-box;
    padding: 11px 5px;
    font-size: 13px;
    line-height: 16px;
    margin-top: 0;
}

.sb-close-btn {
    background-image: url("../img/svg/close-menu.svg");
    width: 18px;
    height: 18px;
}

.sb-close-btn:hover {
    background-image: url("../img/svg/close-menu-black.svg");
}

.sb-close-btn i {
    display: none;
}

.product-delivery-icon {
    width: 10px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 5px;
}

/*End cart design*/

/*Start index page design*/
@media (min-width: 991px) and (max-width: 1200px) {
    #index #left-column {
        padding-left: 0;
        padding-right: 10px;
    }

    #index #content-wrapper.left-column {
        padding-left: 10px;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    #_mobile_search {
        display: none;
    }
}

@media (max-width: 991px) {
    .checkout-login-wrapper {
        background: none !important;
    }

    #authentication .form-footer #submit-login {
        float: none;
    }

    .security-block-main {
        display: none;
    }

    #index #left-column {
        padding-left: 5px;
        padding-right: 10px;
    }

    #index #content-wrapper.left-column {
        padding-left: 10px;
        padding-right: 5px;
    }

    #_mobile_search {
        height: 46px;
    }
}

#index .banner-container {
    margin-bottom: 15px;
}

#index .index-category-title {
    margin-bottom: 5px;
}

#carousel .carousel-control {
    display: none;
}

#carousel .carousel-control:hover svg path {
    stroke: #F5DDC8;
}

#carousel:hover .carousel-control {
    display: unset;
}

#carousel .carousel-control > span {
    height: 60px;
    background: rgba(20, 28, 26, 0.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

#carousel .left.carousel-control > span {
    border-radius: 0 100px 100px 0;
}

#carousel .left.carousel-control > span svg {
    margin-left: 8px;
}

#carousel .right.carousel-control > span {
    border-radius: 100px 0 0 100px;
}

#carousel .right.carousel-control > span svg {
    margin-left: 13px;
    transform: matrix(-1, 0, 0, -1, 0, 0);
}

.carousel .carousel-control .icon-next {
    right: 1rem;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    padding-left: 10px;
    padding-right: 10px;
}

#new-products .product-miniature .highlighted-informations,
#prices-drop .product-miniature .highlighted-informations,
#best-sales .product-miniature .highlighted-informations {
    padding-top: 2px;
    padding-right: 0;
}

@media (min-width: 320px) {
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        margin-top: -30px;
        margin-right: -15px;
        width: 30px;
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    #header .vertical-center {
        display: none;
    }
}

/*End index page design*/
/*Start Footer design*/
#footer .newsletter-title {
    color: var(--light-green);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;
}

#footer .block_newsletter {
    background: var(--footer-background);
}

#footer .block_newsletter > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.block_newsletter p {
    color: var(--light-green);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

#search_filters_wrapper {
    position: relative;
}

#footer .block_newsletter {
    margin-bottom: 50px;
}

#footer .newsletter-bottom-line {
    padding-top: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--footer-border-color);
    width: 100%;
}

#footer .block_newsletter form button[type=submit] {
    padding: 0;
    border-radius: 0;
    margin-right: 15px;
    bottom: -7px;
    opacity: 1;
}

#footer input::-webkit-input-placeholder {
    color: var(--light-green);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    opacity: 1;
}

.block_newsletter form .input-wrapper {
    margin: unset;
    float: right;
    width: 90%;
    margin-right: 40px;
    max-width: 325px;
}

.block_newsletter form input[type=text] {
    max-width: 325px;
    min-width: unset;
    color: var(--light-green);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    padding-inline: 0;
}

#footer .alert-success.block_newsletter_alert,
#footer .alert-danger.block_newsletter_alert {
    padding: 10px;
}

.copyright-container {
    background-color: var(--footer-background);
    border: 0;
}

.copyright-container .row {
    padding: 25px 0;
    margin-inline: 0;
    border-top: 1px solid var(--footer-border-color);
}

.block-social li a svg path {
    fill: var(--light-green);
}

#footer .footer-container .block-social li {
    background: none;
    margin: 0 0 0 5px;
    align-items: center;
}

#footer .footer-container .block-social li:hover {
    background-color: #fff;
}

.block-social li.facebook a svg {
    width: 9px !important;
    height: 18px;
}

.block-social li.instagram a svg {
    width: 18px !important;
    height: 18px;
}

.block-social li a {
    width: 18px !important;
}

#footer .links .h3 {
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--light-green);
    margin-bottom: 21px;
}

#footer .links a {
    font-size: 13px;
}

#footer .links a:hover {
    text-decoration: underline;
}

#footer #footer_contact_info li,
.footer-container .links ul > li a {
    font-size: 12px;
    color: var(--light-green);
    word-break: break-word;
}

.footer-container .links .title {
    color: var(--light-green);
    margin-bottom: 21px;
}

#footer #footer_contact_info .footer-company-name {
    font-weight: 600;
}

#footer .block-contact li {
    font-size: 12px;
    color: var(--light-green);
}

#footer .footer-container li {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
}

#footer .footer-container .block-contact li svg {
    margin-right: 12px;
    flex-shrink: 0;
}

#footer_contact_info,
#footer .links ul {
    margin-bottom: 0;
}

.footer-store-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
}

.footer-store-day {
    margin-right: 4px;
}

@media (max-width: 576px) {
    #footer .block_newsletter > div {
        display: unset;
    }

    .block_newsletter form .input-wrapper {
        float: unset;
        width: unset;
        max-width: unset;
    }

    .block_newsletter form input[type=text] {
        max-width: unset;
    }
}

/*End Footer design*/

/*Start registration and login design*/

#authentication #wrapper {
    padding-top: 0;
}

#checkout .page-header > h1
#authentication .page-header > h1 {
    font-size: 24px;
    font-weight: normal;
    line-height: 68px;
}

#checkout h1,
#authentication h1 {
    margin: 30px 0 0;
}

#authentication #login-form .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

#authentication #login-form .form-control-label,
#checkout #login-form .form-control-label,
#checkout #login-form .form-control-comment,
#authentication #login-form .form-control-comment {
    display: none;
}

#checkout #login-form .form-group .col-md-6,
#authentication #login-form .form-group .col-md-6 {
    padding: 0;
}

.page-authentication #content,
#module-reregistration-guest #content-wrapper {
    margin: 0 auto;
}

#checkout .login-form,
#authentication .login-form {
    margin: 0;
}

#checkout .login-form-forgot a,
#authentication .login-form-forgot a {
    color: #141C1A;
    font-size: 13px;
    line-height: 24px;
}

#checkout .login-form-forgot a,
#authentication .login-form-forgot a {
    color: #141C1A;
    font-size: 13px;
    line-height: 24px;
}

#checkout .form-control,
#authentication .form-control,
#module-reregistration-guest .form-control,
#module-reregistration-registration .form-control {
    background-color: transparent;
    border: 1px solid #E1E1E1;
    padding: 7px 15px;
    font-size: 13px;
    color: #141C1A;
    line-height: 24px;
}

#checkout .input-group.focus,
#authentication .input-group.focus,
#checkout .form-control:focus,
#authentication .form-control:focus {
    outline: none;
    border-color: #000;
}

#checkout .input-group-btn,
#authentication .input-group-btn {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 60px;
    z-index: 3;
}

#authentication .input-group .input-group-btn > .btn {
    background: transparent;
}

#authentication .input-group .input-group-btn > .btn:hover + svg path {
    fill: #000;
}

#customer-form > section {
    display: inline-flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -15px;
    width: calc(100% + 15px);
}

#customer-form section > * {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 48%;
    margin: 15px 0 0 15px;
}

#address .js-address-form section {
    display: inline-flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -15px;
    width: calc(100% + 15px);
}

#address .js-address-form section + footer {
    margin-top: 30px;
}

#address .js-address-form section > * {
    flex: 48%;
    margin: 15px 0 0 15px;
}

.no-gutter-left {
    padding-left: 0 !important;
}

.no-gutter {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.register-form a:hover {
    text-decoration: underline;
}

.form-optional-spam {
    font-size: 10px;
    line-height: 16px;
    color: #141C1A;
}

.customer-form-bottom {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    flex: 100%;
}

.form-customer-switcher {
    margin-bottom: 20px;
}

#authentication .radio-inline-switch {
    padding: 0;
    margin: 0 10px 0 0;
}

.custom-radio-switch {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #7a7a7a;
    background: #fff;
    margin-right: 8px;
}

.custom-radio-switch input[type=radio] {
    opacity: 0;
    cursor: pointer
}

.custom-radio-switch input[type=radio]:checked + span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: .125rem;
    top: .125rem
}

.custom-radio-switch input[type=radio]:focus + span {
    border-color: #7a7a7a
}

#authentication .custom-radio-switch input[type=radio]:checked + span,
#checkout .custom-radio-switch input[type=radio]:checked + span {
    top: 2px;
    left: 2px;
}

.custom-radio-switch input[type=radio]:checked + span {
    background-color: var(--light-green);
}

#authentication .custom-checkbox input[type=checkbox]:checked + span,
#checkout .custom-checkbox input[type=checkbox]:checked + span,
#module-reregistration-registration .custom-checkbox input[type=checkbox]:checked + span {
    border: none;
    background-color: #243330;
}

.custom-checkbox input[type="checkbox"]:checked + span .checkbox-checked svg path,
.checkbox-checked svg path {
    fill: white;
}

#authentication .form-footer .btn.btn-primary,
#checkout .form-footer .btn.btn-primary {
    float: right;
    font-size: 13px;
    line-height: 24px;
}

#authentication .form-footer .btn.btn-primary {
    width: calc(50% - 15px);
}

.customer-password-block {
    display: inline-flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -15px;
    width: calc(100% + 15px);
}

.customer-password-block > * {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 48%;
    margin: 15px 0 0 15px;
}

#customer-form hr {
    margin: 20px 0;
}

/*Product page start*/

#product #wrapper {
    padding-top: 30px;
}

#product #left-column,
#product #content-wrapper,
#product .col-md-5,
#product .col-md-4,
#product .col-md-6,
#product .col-md-7 {
    padding-left: 10px;
    padding-right: 10px;
}

.js-qv-product-cover {
    width: 100% !important;
    height: auto !important;
}

#product h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: var(--title-text);
    margin: 0 0 10px;
}

#product .product-code-block {
    color: var(--title-text);
    margin-bottom: 15px;
}

#product .product-code {
    font-size: 12px;
    margin-bottom: 10px;
}

#product .product-height {
    font-size: 14px;
}

#product .product-description-short,
#product .product-description-short p,
#product .product-description-short span {
    font-size: 13px !important;
    color: var(--product-description) !important;
    text-align: left;
}

.product-availability {
    border-top: 1px solid #B8A077;
    border-bottom: 1px solid #B8A077;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.product-availability.out-of-stock {
    border-top: 1px solid #9E0D0D;
    border-bottom: 1px solid #9E0D0D;
}

.product-availability.out-of-stock .product-quantity {
    color: #9E0D0D;
}

.product-availability.out-of-stock .product-quantity strong {
    margin-right: 5px;
}

.product-availability > div {
    flex-basis: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
}

.product-arriving-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-arriving-block {
    position: absolute;
    background-color: #B8A077;
    box-shadow: 0 0 20px #00000012;
    width: 100%;
    top: 39px;
    display: none;
    right: 0;
    text-align: center;
    z-index: 3;
}

.product-arriving-block div {
    padding: 10px;
}

.product-arriving-block div:hover {
    text-decoration: underline;
    cursor: pointer;
}

.product-availability .product-quantity {
    color: #AC9369;
}

.product-availability .product-arriving {
    color: #1D2927;
    font-weight: 600;
    align-items: center;
    border-left: 1px solid #B8A077;
}

.product-availability .product-arriving.browned {
    background: #fbf4e9;
}

#product .product-availability .product-arriving .product-arriving-date {
    font-weight: normal;
    padding-left: 3px;
    padding-right: 3px;
}

#product .product-cart-title {
    margin-bottom: 12px;
}

#product .product-cart-title.row > div {
    text-align: center;
    color: var(--title-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
}

#product .product-cart-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

#product .product-cart-content > div,
#search .product-cart-content > div,
#new-products .product-cart-content > div,
#module-an_wishlist-list .product-cart-content > div,
#category .product-cart-content > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#product .product-cart-content .qty > div,
#product .product-cart-content .qty > input {
    left: -14px;
    display: block;
}

#product .quantity_availability {
    margin-top: 10px;
}

#product .quantity_availability .add {
    width: 100%;
    background-color: #CB997E;
    color: var(--white-color);
    font-size: 13px;
    text-transform: uppercase;
}

#product .quantity_availability .add-to-cart {
    width: 100%;
    margin-right: 0;
}

#product .an_wishlist-mini {
    top: 0;
    right: 0;
}

.an_wishlist-in #heart {
    fill: var(--white-color);
}

#product .an_wishlist-mini .js-an_wishlist-addremove svg {
    width: 36px;
    height: 36px;
    transform: unset;
}

#product .quantity_availability .add-to-cart:hover {
    background-color: #CB997E;
    border-radius: 0;
}

.product-miniature .slick-arrow {
    z-index: 10;
    width: 25px;
    height: 50px;
    background: #5C6960 no-repeat padding-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    transform: translatey(-25px);
    color: #ffffff;
}

#products .count {
    background: #F6F6F6;
    border: 1px solid #DEDEDE;
    color: #1E2A28;
    font-size: 15px;
    width: 57px;
    height: 58px;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

#products .count .text {
    font-size: 9px;
}

.product-miniature .slick-arrow.slick-prev {
    border-radius: 0 100px 100px 0;
}

.product-miniature .slick-arrow.slick-next {
    border-radius: 100px 0 0 100px;
}

.product-cart-content .product-cart-price {
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    justify-content: flex-end;
}

.hide-qty-input {
    display: none;
}

#product .breadcrumb.row {
    padding-top: 15px;
}

.input-disabled {
    opacity: 0.2;
}

.input-disabled {
    cursor: not-allowed;
}

.product-qty .input-disabled .quantity-button,
.product-qty .input-disabled input {
    cursor: not-allowed;
}

#product .quantity_availability .btn-primary {
    background-color: #CB997E;
}

.register-link {
    color: #141C1A;
    text-align: center;
    text-decoration: underline;
    font-size: 10px;
    line-height: 13px;
    font-weight: normal;
}

#category .product-qty {
    margin-top: 0;
}

#category .product-cart-content,
#search .product-cart-content,
#new-products .product-cart-content,
#module-an_wishlist-list .product-cart-content {
    margin-top: 5px;
}

#product #zoom-in-slider {
    display: none;
}

#product .owl-nav {
    display: inherit;
}

#product .product-accessories {
    margin-top: 30px;
    padding: 0 30px;
}

#product .product-accessories .product-packaging {
    display: none;
}

#addresses .address .address-footer {
    position: relative;
}

#main .images-container .js-qv-mask.scroll {
    padding: 0;
}

#product .js-qv-product-cover {
    cursor: zoom-in;
}

#product .owl-stage-outer .thumb {
    opacity: 0.7;
    border: 2px solid transparent;
}

#product .owl-stage-outer .thumb:hover {
    cursor: pointer;
}

#product .owl-stage-outer .thumb.selected {
    border: 2px solid #1E2A28;
    opacity: 1;
}

.product-packaging-text {
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 18px;
    cursor: pointer;
}

.product-packaging-text svg {
    margin-right: 7px;
}

.product-packaging {
    position: relative;
}

#product .product-packaging {
    min-width: 120px;
}

.product-packaging:focus > .product-packaging-block {
    display: block;
}

.product-packaging-block {
    position: absolute;
    background-color: var(--white-color);
    box-shadow: 0 0 20px #00000012;
    min-width: 120px;
    top: 0;
    display: none;
    z-index: 1;
    right: 0;
}

#product .product-packaging-block {
    right: 10px;
}

.product-packaging-close {
    cursor: pointer;
}

.product-packaging-block-title {
    font-weight: 600;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px 8px;
}

.product-packaging-content div {
    padding: 7px;
    border-bottom: 1px solid #ECECEC;
    text-align: left;
}

.product-packaging-content div:last-child {
    border-bottom: 0;
}

#product .product-variants > .product-variants-item .color {
    width: 57px;
    height: 58px;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#product .product-variants > .product-variants-item .input-color:checked + span {
    border: 2px solid #1E2A28;
}

#product .product-variants > .product-variants-item ul li {
    margin: 2px 3.6px -2px 0;
}

.product-discount-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-discount-block .product-price {
    font-size: 11px;
    line-height: 14px;
    text-decoration: line-through;
    color: #CECECE;
    text-align: right;
}

.product-discount-block .product-discount-price {
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    color: #B8A077;
    text-align: right;
}

@media (max-width: 762px) {
    .product-availability .product-quantity {
        border-right: 0;
        border-bottom: 1px solid #B8A077;
    }

    #product .product-availability > div {
        flex-basis: 100%;
    }
}

/*Product page end*/

/*End registration and login design*/

.btn-primary {
    background-color: var(--main-button-bg-color);
    color: var(--main-button-color);
}

.category-subcategory-container {
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px 10px;
}

.category-subcategory-container > a {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
}

.category-subcategory {
    background: transparent linear-gradient(180deg, #00000000 0%, rgba(0,0,0, 0.63) 100%) 0 0 no-repeat padding-box;
    padding-top: 100%;
    position: relative;
}

.category-subcategory:hover .category-subcategory-title {
    text-decoration: underline;
}

.category-subcategory-title {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 600;
    line-height: 22px;
    position: absolute;
    left: 15px;
    bottom: 35px;
    right: 15px;
}

/*Start Breadcrumb*/
.breadcrumb {
    padding: 15px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb ol {
    text-align: left;
}

.breadcrumb li a {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #B5B5B5;
}

.breadcrumb li:after {
    content: ">";
    color: #B5B5B5;
}

.breadcrumb li:last-child a {
    color: #5C6960;
}

/*End Breadcrumb*/
/*Start category page*/
.block-category .h1 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: #141C1A;
    line-height: 29px;
}

.category-stock-item {
    background-color: #F6F6F6;
    border-right: 1px solid #fff;
    height: 36px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1E2A28;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-stock-item:last-of-type {
    border: 0;
}

.category-stock-item.active,
.category-stock-item:hover {
    background-color: #CB997E;
    color: #fff;
}

.product-cart-content.row, .product-cart-title.row {
    margin-right: 0;
    margin-left: 0;
}

#category .product-cart-content.row .col-md-4,
#search .product-cart-content.row .col-md-4,
#new-products .product-cart-content.row .col-md-4,
#module-an_wishlist-list .product-cart-content.row .col-md-4,
#product .product-cart-content.row .col-md-4 {
    padding-right: 5px;
    padding-left: 5px;
    align-items: center;
}

#category .product-cart-content.row .product-qty,
#new-products .product-cart-content.row .product-qty,
#search .product-cart-content.row .product-qty {
    margin-top: 0;
}

#category .product-cart-content.row .justify-content-center,
#new-products .product-cart-content.row .justify-content-center,
#search .product-cart-content.row .justify-content-center {
    justify-content: center;
}

#new-products .product-cart-content.row .align-items-center,
#category .product-cart-content.row .align-items-center,
#search .product-cart-content.row .align-items-center {
    align-items: center;
}

#category .products .col-lg-12 .an_productattributes,
#new-products .products .col-lg-12 .an_productattributes,
#search .products .col-lg-12 .an_productattributes {
    max-width: unset;
}

#category .products .an_productattributes,
#new-products .products .an_productattributes,
#search .products .an_productattributes {
    padding-bottom: 0;
}

#products .product-miniature.col-lg-12 .thumbnail-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#products .product-miniature.col-lg-12 .thumbnail-container-image,
#products .product-miniature.col-lg-12 .product-description {
    width: 30% !important;
}

#category .products .col-lg-12 .left-column,
#new-products .products .col-lg-12 .left-column,
#search .products .col-lg-12 .left-column {
    flex-basis: 40%;
    flex-grow: 0;
}

#category .product-miniature .highlighted-informations,
#new-products .product-miniature .highlighted-informations,
#search .product-miniature .highlighted-informations {
    padding: 1px 0 0 0;
}

#category .products .col-lg-12 .right-column,
#new-products .products .col-lg-12 .right-column,
#search .products .col-lg-12 .right-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-end;
    flex-basis: 60%;
}

#category .products .col-lg-12 .h3.product-title
#new-products .products .col-lg-12 .h3.product-title
#search .products .col-lg-12 .h3.product-title {
    white-space: initial;
    max-height: unset;
    font-size: 20px;
    line-height: 23px;
}

#category .col-lg-4 .variant-links,
#new-products .col-lg-4 .variant-links,
#search .col-lg-4 .variant-links {
    display: none;
}

:not(.col-lg-12) .variant-links {
    display: none;
}

#category .col-lg-12 .variant-links .variant-checkbox input[type="radio"],
#new-products .col-lg-12 .variant-links .variant-checkbox input[type="radio"],
#search .col-lg-12 .variant-links .variant-checkbox input[type="radio"] {
    display: none;
}

#category .col-lg-12 .variant-links .variant-checkbox a,
#new-products .col-lg-12 .variant-links .variant-checkbox a,
#search .col-lg-12 .variant-links .variant-checkbox a {
    position: relative;
}

#category .col-lg-12 .variant-links .variant-checkbox input[type="radio"]:checked + a,
#new-products .col-lg-12 .variant-links .variant-checkbox input[type="radio"]:checked + a,
#search .col-lg-12 .variant-links .variant-checkbox input[type="radio"]:checked + a {
    border: 2px solid #232323;
}

#category .col-lg-12 .variant-links,
#new-products .col-lg-12 .variant-links,
#search .col-lg-12 .variant-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 3.6px;
    padding-inline: 15px;
}

#category .col-lg-12 .variant-links a,
#new-products .col-lg-12 .variant-links a,
#search .col-lg-12 .variant-links a {
    width: 57px;
    height: 58px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
    margin: 0;
    position: relative;
}

#product .products .variant-links {
    display: none;
}

.breadcrumb-wrapper {
    margin-bottom: 18px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
    background: #fff;
    top: 75px;
    transition: top 0.5s;
}

#category #js-active-search-filters {
    display: none;
}

.product-miniature {
    border: 1px solid transparent;
}

.product-miniature:hover {
    box-shadow: 0 0 20px #00000012;
    border: 1px solid #00000000;
}

#js-product-list-top {
    align-items: center;
    padding-top: 20px;
}

.collection-view {
    margin: 0;
}

.products-selection .sort-by {
    font-size: 13px;
    color: var(--title-text);
}

.products-sort-order .select-title {
    font-size: 13px;
    font-weight: 600;
}

#product .product-qty-input.product-qty {
    margin-top: 0;
}

.products-sort-order i {
    margin-left: 12px;
    width: 9px;
}

#products .products {
    margin: 0 -10px;
}

#products .product-miniature {
    padding: 10px;
    border: 1px solid transparent;
}

@media (max-width: 480px) {
    #products .product-miniature,
    #new-products .product-miniature {
        max-width: 100%;
    }
}

#products .thumbnail-container {
    margin-bottom: 0;
}

#products img {
    width: 100% !important;
}

#products .col-lg-4 .product-title {
    margin: 15px 0 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-title-tooltip {
    background-color: red;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

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

.category-product-attributes {
    font-size: 13px;
    color: var(--title-text);
}

#product .category-product-attributes {
    height: 58px;
    overflow-x: hidden;
    overflow-y: auto;
}

.category-product-attr-block > div {
    margin-bottom: 5px;
}

.category-product-arrive {
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 12px;
}

.category-product-arrive.in-stock {
    border-top: 1px solid var(--product-in-stock-border);
    border-bottom: 1px solid var(--product-in-stock-border);
}

.category-product-arrive.out-of-stock {
    border-top: 1px solid var(--product-out-of-stock);
    border-bottom: 1px solid var(--product-out-of-stock);
}

.category-product-arrive.out-of-stock span {
    color: var(--product-out-of-stock);
}

.category-product-arrive.in-stock span {
    font-size: 14px;
    color: #AC9369;
}

.an_productattributes-add {
    position: relative;
    margin-top: 15px;
}

.an_productattributes-add .js-an_productattributes-add-to-cart {
    width: 100%;
    border-radius: 0;
    background-color: #CB997E;
    color: var(--white-color);
    font-size: 13px;
}

.js-an_productattributes-add-to-cart:hover {
    background-color: #CB997E;
}

.category-product-qty {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--title-text);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-product-input {
    color: var(--black-color);
    font-size: 13px;
}

.product-cart-content .col-md-4 {
    padding-left: 5px;
    padding-right: 5px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.row .category-product-input {
    margin-right: -5px;
    margin-left: -5px;
    min-height: 79px;
    flex: 1 0 auto;
}

.category-product-input div {
    text-align: center;
}

.category-product-attr-block {
    min-height: 18px;
}

.an_productattributes-qty-container {
    padding-right: 0;
}

/*End category page*/

.block-title-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100px;
    background-image: url("../img/checkout_block_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #CB997E;
}

.card-block-title {
    font-size: 30px;
    line-height: 36px;
    color: #141C1A;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-top: unset;
    margin-bottom: unset;
}

.card-block-title-bold {
    margin-left: 10px;
    font-weight: bold;
}

#cart .security-block {
    margin-bottom: 20px;
}

.block-product-controller {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.block-product-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FBF4E9;
    background-color: #5C6960;
    flex: 87% 1 1;
    padding-left: 15px;
}

.block-product-right:hover {
    cursor: pointer;
}

.block-product-right {
    flex: 13% 1 1;
    border: 1px solid #141C1A;
    margin: 0;
}

.cart-detailed-actions .btn-primary {
    min-width: 120px;
    width: 100%;
}

.product-detail-heading {
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #141C1A;
    text-transform: uppercase;
}

.cart-items-header {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    padding: 9px 8px;
    text-align: center;
    text-transform: uppercase;
}

.product-line-grid .product-qty-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.an_productattributes {
    opacity: 1;
    visibility: inherit;
    position: initial;
    top: 0;
    transform: translateY(0);
}

.product-flags {
    left: 0;
}

#product .product-flags {
    left: 5px;
    position: absolute;
    top: 5px;
}

.product-flags .product-flag {
    margin-top: 5px;
    margin-left: 0;
    border-radius: 0;
    padding: 4px 8px;
    color: #141C1A;
    font-size: 12px;
    line-height: 15px;
}

.product-flags .product-flag.on-sale {
    background-color: #F3A384;
    color: #141C1A;
}

.product-flags .product-flag.new {
    background-color: #5C695F;
    color: #FFFFFF;
}

.product-flags .product-flag.out_of_stock {
    background-color: #9E0D0D;
    color: #FFFFFF;
}

.product-flags .product-flag.arriving {
    background-color: #83455D;
    color: #FFFFFF;
}

.product-reference {
    margin-bottom: 10px;
}

#product .stock-change {
    display: none;
}

.product-flags-container {
    position: absolute;
    top: 5px;
    left: 0px;
    z-index: 5;
}

@media (min-width: 768px) and (max-width: 1199px ) {
    .cart-items-header, .product-line-grid .product-price, .product-line-grid .product-qty-text {
        font-size: 12px;
    }

    .category-product-attr-block > div {
        width: 100%;
        display: block;
        float: none;
    }
}

.product-type-selection {
    border: none;
    background: none;
    outline: none;
    max-height: 18px;
}

.product-type-selection option:not(.no-stock),
.product-type-selection:not(.no-stock) {
    color: #000;
}

.product-type-selection .no-stock,
.product-type-selection.no-stock {
    color: #f00;
}

@media (max-width: 1399px ) {
    #products .product-miniature.col-lg-12 .thumbnail-container-image,
    #products .product-miniature.col-lg-12 .product-description {
        width: 45% !important;
    }

    #category .products .col-lg-12 .product-description {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width: 992px) and (max-width: 1399px ) {
    #product #main {
        padding: 0 4% !important;
    }

    #product #main .offset-xl-1 {
        margin-left: 3%;
        width: 47%;
    }
}

@media (max-width: 580px ) {
    #products .product-miniature.col-lg-12 .thumbnail-container-image,
    #products .product-miniature.col-lg-12 .product-description {
        width: 100% !important;
    }
}

.product-line-grid-number, .product-line-grid-number-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 5% 0 0;
}

.cart-item .product-line-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

#header.sticky.down {
    top: -132px;
}

.product-line-grid-name, .product-line-grid-name-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex: calc(25% - 122px) 0 0;
}

.product-line-grid-img, .product-line-grid-name-image-col {
    width: 122px;
    min-width: 122px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

aside#notifications .alert {
    margin-top: 30px;
}

.product-line-grid-name-col {
    justify-content: center;
}

.product-line-grid-img img {
    height: auto !important;
}

.product-line-info {
    font: var(--unnamed-font-style-normal) normal 600 var(--unnamed-font-size-13)/var(--unnamed-line-spacing-20) Montserrat;
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-141c1a);
    text-align: left;
}

.product-line-ref {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-141c1a);
    text-align: left;
    opacity: 1;
}

.product-line-grid-comment-col, .product-line-grid-comment {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 15% 0 0;
}

.product-line-grid-comment input {
    width: calc(100% - 30px);
    height: 46px;
    background: #F7F7F7 0 0 no-repeat padding-box;
    border: 1px solid #E1E1E1;
    margin: 0 15px;
}

.product-line-grid-comment input::placeholder,
.block-promo .promo-input::placeholder {
    color: #232323;
    opacity: 1;
    font-weight: normal;
    text-transform: uppercase;
}

.product-line-grid-comment input::-ms-input-placeholder,
.block-promo .promo-input::-ms-input-placeholder {
    color: #232323;
}

.product-variants-item ul li {
    position: relative;
}

.attribute-icon-image {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 9px;
    left: 4px;
    background-size: contain;
}

#category .attribute-icon-image,
#new-products .attribute-icon-image,
#search .attribute-icon-image {
    bottom: 5px;
}

.attribute-icon-image.check {
    background: url(../img/check.svg) no-repeat center center;
}

.attribute-icon-image.cart {
    background: url(../img/cart.svg) no-repeat center center;
}

.attribute-icon-image.car {
    background: url(../img/car.svg) no-repeat center center;
}

.attribute-icon-image.redCar {
    background: url(../img/redCar.svg) no-repeat center center;
}

article .left-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1 0 auto;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-line-grid-qty .product-qty {
    margin: 0;
}

.product-line-grid .product-price {
    margin: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.product-line-grid-price, .product-line-grid-price-col,
.product-line-grid-discount, .product-line-grid-discount-col,
.product-line-grid-included, .product-line-grid-included-col,
.product-line-grid-price, .product-line-grid-price-col,
.product-line-grid-qty, .product-line-grid-qty-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 10% 0 0;
}

.product-line-grid-total, .product-line-grid-total-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex: 15% 0 0;
}

.product-line-grid-total {
    font-weight: bold;
    justify-content: space-around;
}

.product-line-grid-total-col {
    justify-content: center;
}

.product-line-grid-total {
    position: relative;
}

.product-line-explained {
    display: none;
}

.remove-item-wrap {
    position: relative;
    right: 23px;
    top: 0;
}

body#checkout section.checkout-step #customer-form {
    margin-left: 50px;
}

.promo-input-group .btn {
    background-color: var(--main-button-bg-color);
}

.cart-grid-bottom-left {
    padding: 0;
}

.cart-voucher > p {
    margin-top: 20px;
    text-align: left;
    font: normal normal bold 13px/16px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
    opacity: 1;
}

.block-promo {
    padding: 23px;
    background: #F6F6F6;
}

.promo-code > form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.promo-input-group > button {
    width: 100%;
}

.block-promo .promo-name {
    display: inline-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background: #CB997E 0 0 no-repeat padding-box;
    color: white;
    padding: 15px;
    width: 100%;
}

.block-promo .promo-name a {
    position: absolute;
    right: 15px;
    top: 35%;
}

.block-promo .promo-name i {
    color: white;
    transition: all 0.25s ease-in-out;
}

.block-promo .promo-name i:hover, .block-promo .promo-name i:focus {
    color: black;
}


.cart-promo-divider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.promo-voucher-code {
    padding-left: 10px;
}

.promo-voucher-text, .promo-voucher-code {
    font-weight: bold;
}

.cart-promo-divider > p {
    color: white;
}

.cart-summary {
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
}

.cart-detailed-totals {
    padding: 20px;
    margin-bottom: 0;
}

.cart-total-discount {
    margin-bottom: 15px;
}

.cart-total-discount > span.label,
.cart-total-discount > span.value {
    font-weight: bold;
}

.cart-total-discount > span.value:before {
    content: '-';
}

.cart-total-total {
    border-top: 1px solid #E6E6E6;
}

.cart-total-total > span.label,
.cart-total-total > span.value {
    font-size: 16px;
    line-height: 35px;
    font-weight: bold;
}

.flex-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
}

.checkbox-icon {
    margin-right: 10px;
}

.product-line-explained {
    width: 50%;
}

#header .header-banner-inner a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.dropdown:hover .expand-more {
    color: var(--white-color);
}

.user-info .btn-unstyle {
    cursor: pointer;
}

/*Start order confirmation page*/
#order-confirmation #wrapper {
    background-image: url("../img/svg/order-confirm-background.svg");
    background-repeat: no-repeat;
    color: var(--order-confirmation-text-color);
    text-align: center;
    margin-top: -10px;
    background-position: center;
}

#content-hook_order_confirmation {
    padding: 200px 0;
}

#order-confirmation #content-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

#order-confirmation .order-confirmation-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-flow: column;
}

#order-confirmation .order-confirmation-title {
    font-weight: 600;
    font-size: 48px;
    margin-top: 30px;
}

#order-confirmation .order-confirmation-subtitle {
    font-size: 20px;
    margin-top: 15px;
}

#order-confirmation .order-confirmation-info-block {
    margin-top: 38px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: nowrap;
    gap: 10px;
    font-size: 16px;
}

#order-confirmation .order-confirmation-button a {
    padding: 12px 36px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 30px;
    height: 40px;
    background-color: var(--order-confirmation-button-color);
    border: 2px solid var(--order-confirmation-button-color);
    color: var(--white-color);
    text-transform: uppercase;
}

#order-confirmation .order-confirmation-button a:hover {
    background-color: var(--white-color);
    color: var(--order-confirmation-text-color);
}

#order-confirmation #footer {
    margin-top: 0;
}

/*End order confirmation page*/

/*Start 404 page*/
#pagenotfound #wrapper {
    color: var(--order-confirmation-text-color);
    text-align: center;
}

#pagenotfound .page-content.page-not-found h4 {
    font-weight: 600;
    font-size: 36px;
    margin-top: 30px;
}

#pagenotfound .page-not-found-subtitle {
    font-size: 20px;
    margin-top: 15px;
}

.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
}

.responsive-iframe-container:not(.visible) {
    display: none;
}

.responsive-iframe-container.visible {
    display: inline-block;
    padding-top: 0;
    height: 100%;
}

.responsive-iframe-container.visible .responsive-iframe {
    max-width: 50%;
    max-height: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

.video-thumb {
    padding-top: 11%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    #pagenotfound #_desktop_search {
        display: block;
    }
}

/*End 404 page*/

/*Start Stores page*/
#stores #map {
    height: 500px;
    width: calc(100% - 22px);
    margin: 0 11px;
}

#stores .page-header {
    margin-top: 0;
}

#stores .store-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-text);
}

#stores .store-address {
    max-width: 200px;
}

#stores .store-hours-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#stores .page-stores .store-item-container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

#stores .page-stores {
    width: unset;
    margin: unset;
}

#stores #content.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#stores #content.row > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

#stores .page-stores .store-item-container {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 45px;
}

#stores .page-stores .store-picture img {
    height: 200px;
}

#stores .page-stores .store-item-container .store-description {
    padding: 15px 0;
}

#stores .stores-contact-block {
    margin-bottom: 32px;
}

#stores .stores-contact-block a:hover {
    color: unset;
    text-decoration: underline;
}

#stores .store-item {
    margin-bottom: 0;
}

/*End Stores page*/
#checkout .block-title-wrapper {
    margin-top: 20px;
}

.step-title {
    text-transform: uppercase;
    color: #FBF4E9;
    background-color: #5C6960;
}

.title-right {
    margin-right: 15px;
}

.title-left, .title-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

h2.step-title {
    margin-top: 30px;
}

.checkout-login-wrapper .card-block {
    max-width: 935px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.login-form-lead-information {
    background: rgba(92, 105, 96, 0.8);
    box-shadow: 0 4px 20px 0 #0000000F;
    padding: 32px 64px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#checkout #login-form {
    background: #FFFFFF;
    padding: 32px 64px !important;
    box-shadow: 0 4px 20px 0 #0000000F;
}

.login-form-lead-information-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.information-content-lead {
    text-align: center;
    font: normal normal 600 24px/29px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
    max-width: 320px;
    margin-bottom: 15px;
}

.information-content-sub-lead {
    font: normal normal 400 14px/20px Montserrat;
    letter-spacing: 0;
    color: #141414;
    margin-bottom: 20px;
}

.summary-proceed {
    background: #5C6960 0 0 no-repeat padding-box;
    max-width: 270px;
}

.login-form-container {
    padding: 20px 70px 0;
}
#checkout .login-form-container {
    padding: 0;
    margin-right: 15px;
}
#checkout .registration-form {
    padding: 0;
    margin-left: 15px;
}

.login-form-container h4{
    font: normal normal 600 24px/29px Montserrat;
    text-align: center;
    margin-bottom: 20px;
}

#checkout .login-form-container .no-account {
    display: none;
}

.guest-form-container {
    margin-top: 30px;
}

#checkout .block-product-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#checkout .cart-grid {
    margin-top: 15px;
}

body#checkout section.checkout-step #delivery-address .form-control-label {
    width: 100%;
}

.js-address-pick-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font: normal normal 600 16px/20px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
    text-transform: uppercase;
    background: #F3EADC 0 0 no-repeat padding-box;
    opacity: 1;
    text-align: center;
}

.js-address-form-container {
    margin-top: 30px;
}

body#checkout section.checkout-step .address-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.address-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 0 1 calc((100% - 40px) / 3);
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
    opacity: 1;
}

.address-item,
.address-item label,
body#checkout section.checkout-step .address-item .radio-block {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

body#checkout section.checkout-step .address-item .custom-radio-delivery {
    background-color: var(--light-green);
    height: 32px;
}

body#checkout section.checkout-step .address-item .custom-radio-delivery label {
    cursor: pointer;
}

body#checkout section.checkout-step .address-item.selected .custom-radio-delivery {
    background-color: #CB997E;
}

body#checkout section.checkout-step .address-item .custom-radio-delivery label span {
    font-size: 14px;
}

body#checkout section.checkout-step .address-item .custom-radio-delivery .picked-option {
    display: none;
}

body#checkout section.checkout-step .address-item.selected .custom-radio-delivery .picked-option {
    display: flex;
}

body#checkout section.checkout-step .address-item.selected .custom-radio-delivery .non-picked-option {
    display: none;
}

body#checkout section.checkout-step .address {
    padding-bottom: 19px;
}

.address-footer {
    position: absolute;
    top: 0;
    right: 0;
}

.address-item-header .custom-radio {
    border-radius: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.address-item-header .custom-radio input[type="radio"]:checked + span {
    border-radius: 0;
    position: unset;
    height: 100%;
    width: 100%;
}

/*body#checkout section.checkout-step .address-item.selected .custom-radio {
    background: #CB997E 0 0 no-repeat padding-box;
    opacity: 1;
}*/

body#checkout section.checkout-step .address-item-header .custom-radio {
    width: 5px;
    border: none;
    margin: 0;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.delivery-options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

body#checkout section.checkout-step .delivery-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 45%;
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
    opacity: 1;
}

body#checkout section.checkout-step .delivery-radio-button {
    background-color: var(--light-green);
    height: 32px;
}

.delivery-option-container {
    height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

body#checkout section.checkout-step .carrier-logo {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

body#checkout section.checkout-step .carrier-logo > img,
body#checkout section.checkout-step .carrier-logo > svg {
    margin: 23px;
}

.delivery-option-2-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

body#checkout section.checkout-step .delivery-option label {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

body#checkout section.checkout-step .carrier-name {
    font: normal normal 600 13px/16px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
    margin-bottom: 10px;
}

body#checkout section.checkout-step .carrier-delay {
    font: normal normal normal 13px/16px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
}

body#checkout section.checkout-step .carrier-price {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #EEEEEE 0 0 no-repeat padding-box;
    border-radius: 12px;
    opacity: 1;
    font: normal normal 600 13px/16px Montserrat;
    letter-spacing: 0;
    color: #1E2A28;
    padding: 4px 14px;
}

.custom-radio-delivery {
    display: block;
    width: 100%;
    height: 32px;
    position: relative;
    cursor: pointer;
}

.custom-radio-delivery > label > span {
    transition: all 0.25s ease-in-out;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
    top: 0;
    left: 0;
}

.custom-radio-delivery input[type=radio] {
    width: 100%;
    height: 32px;
    opacity: 0;
    cursor: pointer;
    z-index: 5000;
    position: relative;
}

.custom-radio-delivery input[type=radio]:checked + span {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
}

.custom-radio-delivery input[type=radio]:focus + span {
    border-color: #7a7a7a
}

#checkout .custom-radio-delivery input[type=radio]:checked + span {
    top: 0;
    left: 0;
}

.custom-radio-delivery input[type=radio]:checked + span {
    background-color: #CB997E;
}

.custom-radio-delivery span.picked-option {
    display: none;
}

.payment-options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

body#checkout section.checkout-step .payment-options .payment-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex: 1 1 20%;
}

.payment-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: transparent;
    opacity: 1;
}

.payment-option > .ps-shown-by-js {
    position: relative;
    opacity: 0;
    z-index: -500;
}

body#checkout .payment-option-card > .payment-option > label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    font: normal normal 600 12px/13px Montserrat;
    letter-spacing: 0;
    color: #1E2A28;
    opacity: 1;
    margin: 0;
}

.payment-option > label input[type=radio] {
    position: absolute;
    opacity: 0;
    z-index: -5000;
}

body#checkout .payment-option-card:not(.active-payment-card) > .payment-option > label > span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

body#checkout .payment-option-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #F6F6F6;
    flex: 1 1 20%;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
}

body#checkout .payment-option-card.active-payment-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
    opacity: 1;
    flex: 0 1 75%;
}

body#checkout .payment-option-card.active-payment-card > .additional-information {
    position: relative;
    padding: 7px 24px 7px 47px;
    width: 0;
    max-width: 70%;
    transition: all 0.5s ease-in-out;
}

body#checkout .payment-option-card .additional-information {
    display: none;
}

body#checkout .payment-option-card.active-payment-card .additional-information {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F6F6;
    width: 65%;
    height: 100%;
}

.additional-information > .additional-info-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 9px;
    left: 21px;
}

body#checkout .payment-option-card .additional-information p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: left;
    font-size: 12px;
    line-height: 15px;
    font-weight: normal;
    letter-spacing: 0;
    color: #000000;
    max-height: 60px;
    animation-name: opacity;
    animation-duration: 2s;
}

body#checkout .payment-option-card.active-payment-card .additional-information p {
    opacity: 1;
}

@keyframes opacity {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.block-product-right.cart-remove-all-products-button {
    display: block;
    position: relative;
    z-index: 200000;
}

body#checkout #modal-delete-allt .modal-content {
    min-width: 450px;
    background: #FFFFFF 0 0 no-repeat padding-box;
}

body#checkout #modal-delete-all .modal-title {
    text-align: left;
    font: normal normal 600 20px/24px Montserrat;
    letter-spacing: 0;
    color: #FFFFFF;
    opacity: 1;
}

body#checkout #modal-delete-all .modal-content > .modal-body {
    padding: 41px 25px 20px 25px;
    text-align: left;
    font: normal normal medium 16px/18px Montserrat;
    letter-spacing: 0;
    color: #141C1A;
    text-transform: uppercase;
    opacity: 1;
}

body#checkout #modal-delete-all .modal-content > .modal-header {
    background: #5C6960 0 0 no-repeat padding-box;
}

body#checkout #modal-delete-all .modal-content .modal-footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    text-align: right;
    border: none;
}

.identity-logged-in {
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
    padding: 20px;
}

.identity-logged-in > form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
}

.checkout-step.-unreachable {
    display: none;
}

.checkout-guest-form-wrapper {
    display: none;
}

.no-address-container {
    margin: 20px 0;
    padding: 20px;
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 0 10px #00000014;
    border: 1px solid #E6E6E6;
    opacity: 1;
}


.address-not-logged-in {
    display: none;
    animation-name: opacity;
    animation-duration: 1s;
}

.js-address-form-container,
.guest-form-container {
    animation-name: opacity;
    animation-duration: 1s;
}

.guest-form-container hr,
.guest-form-container .customer-password-block {
    display: none;
}

.guest-form-container #customer-form section > * {
    flex: 100%;
}

.ps-hidden-by-js {
    display: none;
}

#checkout .alert {
    margin-top: 15px;
}

#error-block,
#custom-error-block {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 622px;
    width: 90%;
    z-index: 20000;
    background-color: #ffffff;
    display: none;
}

#error-block .error-block-top,
#custom-error-block .error-block-top {
    background-color: #5C6960;
    height: 45px;
    font-size: 20px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    color: #ffffff;
    font-weight: 600;
}

#error-block .error-block-bottom,
#custom-error-block .error-block-bottom {
    padding: 20px;
    text-transform: uppercase;
    color: #141C1A;
    font-size: 16px;
}

#error-block .error-block-bottom button,
#custom-error-block .error-block-bottom button {
    height: 40px;
    text-align: center;
    width: 100%;
    background-color: #5C6960;
    border: 0;
    margin-top: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

#error-block .error-block-bottom button:hover,
#custom-error-block .error-block-bottom button:hover {
    cursor: pointer;
}

.error-overly {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0.4;
    background: #141C1A;
}

.mobile-menu-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.mobile-menu-header .an_wishlist-nav-link .hidden-lg-up {
    display: none;
}

.mobile-menu-header .an_wishlist-nav-link .cart-item-count {
    display: block;
}

.mobile-menu-top-right {
    gap: 10px;
}

.mobile-menu-header .banner-tax-switch button i {
    margin-top: -3px;
}

.mobile-menu-top-right #_desktop_user_info {
    margin-left: 0;
}

#_desktop_user_info .dropdown-item:not(.logout) {
    padding-top: 0;
    padding-bottom: 0;
}

.megamenu_mobile-btn-back, .megamenu_mobile-btn-close {
    padding-top: 2px;
}

.mobile-menu-top-right .banner-tax-switch.dropdown button,
.mobile-menu-top-right .banner-tax-switch.dropdown .expand-more {
    color: #5C6960;
}

.js-top-menu-bottom #_mobile_clientservice,
.js-top-menu-bottom #_mobile_an_wishlist-nav,
.js-top-menu-bottom .mobile-lang-and-cur #_mobile_currency_selector,
.js-top-menu-bottom .mobile-lang-and-cur #_mobile_user_info {
    display: none;
}

.vertical-menu-container .current-category,
.vertical-menu-container .current-parrent-category {
    background: #E7DCCA 0 0 no-repeat padding-box;
}

.carousel-indicators {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    gap: 7px;
    bottom: 10px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    background: #141C1A 0 0 no-repeat padding-box;
    padding: 0;
    border: 0;
    border-radius: 100%;
}

.carousel-indicators button.active {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(20, 28, 26, 0.5);
    background: #F5DDC8 0 0 no-repeat padding-box;
    opacity: 1;
}

#checkout .security-block-main,
.security-block-main {
    margin-bottom: 10px;
}

#wrapper,
#category #wrapper,
#product #wrapper {
    padding-top: 20px;
}

#category #left-column {
    padding-top: 0;
}

#authentication .btn-primary {
    background-color: #5C6960;
}

.justify-content-center {
    justify-content: center;
}

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

#header.cloned {
    opacity: 1;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1000;
}

#header.cloned #_mobile_search {
    display: none;
}

.product-out-of-stock .thumbnail-container-image,
.product-out-of-stock .category-product-input,
.product-out-of-stock .an_productattributes-add {
    opacity: 0.25;
}

.product-out-of-stock:hover .thumbnail-container-image,
.product-out-of-stock:hover .category-product-input,
.product-out-of-stock:hover .an_productattributes-add {
    opacity: 1;
}

.cart-action {
    padding: 20px;
}

.cart-dropdown-wrapper {
    background-color: #FFFFFF;
}

.fixed-menu-mobile {
    background: #fbf4e9;
    box-shadow: none;
    position: unset;
    margin: 0 -5px;
}

#header.sticky .mobile-header-holder {
    display: none;
}

#authentication .security-block-main,
#authentication #footer,
#module-reregistration-info .security-block-main,
#module-reregistration-info #footer,
#module-reregistration-success .security-block-main,
#module-reregistration-success #footer,
#password .security-block-main,
#password #footer {
    margin: 0;
}

#authentication #wrapper,
#module-reregistration-info #wrapper,
#module-reregistration-guest #wrapper,
#module-reregistration-success #wrapper {
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 80px 0 145px;
}

#password #wrapper {
    background-size: 100%;
    background-repeat: no-repeat;
}

.page-customer-account #content-wrapper {
    background: transparent;
}

.page-authentication #content,
#module-reregistration-guest #content-wrapper
{
    max-width: 935px;
    display: flex;
    flex-direction: row;
}

.page-authentication #content.registration {
    gap: 0;
}

.page-authentication #content:not(.registration) > section,
#checkout #content:not(.registration) > section
{
    flex: 1;
    margin-right: calc(15px / 2);
}

.page-authentication #content section + section {
    flex: 1;
    margin-right: 0;
    margin-left: calc(15px / 2);
}

.page-authentication .login-form {
    background: #FFFFFF;
    padding: 32px 64px;
    box-shadow: 0 4px 20px 0 #0000000F;
}

.page-authentication .register-form,
#module-reregistration-guest #content-wrapper > .container
{
    background: #FFFFFF;
    padding: 32px 64px;
    box-shadow: 0 4px 20px 0 #0000000F;
}

.page-authentication .register-form label.required:after {
    content: '*';
}

.page-authentication .register-form .customer-form-bottom label.required:after {
    content: '';
}

.page-authentication #login-form {
    display: inline-flex;
    flex-direction: column;
    height: 100%;
}

.page-authentication #login-form footer {
    align-content: flex-end;
    flex-direction: column;
    flex: 1 1;
}

.page-authentication .registration-form,
#checkout .registration-form {
    background: rgba(92, 105, 96, 0.8);
    box-shadow: 0 4px 20px 0 #0000000F;
    padding: 32px 64px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#checkout .registration-form,
#checkout .login-form-container{
    width: 50%;
}

.checkout-login-wrapper {
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 145px;
}

.page-authentication .registration-form .registration-form-info,
#checkout .registration-form .registration-form-info
{
    margin-bottom: 24px;
    color: #fff;
}

.page-authentication .registration-form h4,
.page-authentication .login-form h4,
.page-authentication .register-form h4,
.wholesale-registration-info h4,
.registration-form-container h4,
#checkout .registration-form h4,
#checkout .login-form h4,
#checkout #login-form h4,
#checkout .register-form h4,
#password h4 {
    text-align: center;
    width: 100%;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 36px;
    font-weight: 500;
}

#password h4 {
    margin-bottom: 8px;
}

#password .send-renew-password-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    margin-bottom: 36px;
}

.renew-password .info-text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 36px;
}

.renew-password .btn {
    width: 100%;
}

.renew-password .container-fluid {
    padding: 0 10px;
}

#password .renew-password .account-link-container {
    margin-top: 9px;
}

#password .account-link-container {
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: left;
}

#password .password-button-container button {
    width: 100%;
}

.wholesale-registration-info h4,
.registration-form-container h4 {
    margin-bottom: 24px;
}

.registration-form-container h4 {
    text-align: left;
}
#module-reregistration-guest .registration-form-container h4 {
    text-align: center;
}
.registration-form-container .registration-form-block {
    margin-right: -15px;
}

.page-authentication .register-form h4 {
    margin-bottom: 8px;
}

.page-authentication .login-form h4 {
    color: #222
}

.page-authentication .registration-form h4,
#checkout .registration-form h4 {
    color: #fff;
}

.wholesale-registration-info .info-content {
    color: #222;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 24px;
}

.wholesale-registration-info .info-content ul {
    list-style: unset;
    margin-left: 20px;
}

.wholesale-registration-info .info-button-container {
    text-align: right;
}

.wholesale-registration-info .register-button {
    width: 33%;
}

.page-authentication .register-form .have-account {
    margin-bottom: 36px;
}

.page-authentication .registration-form .registration-button,
#checkout .registration-form .registration-button {
    background: #fff;
    padding: 8px;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    width: 100%;
    display: inline-block;
    color: #5C6960;
    text-transform: uppercase;
}

.registration-button-container {
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    flex: 1 1;
}

.page-authentication .page-header {
    display: none;
}

#authentication .form-footer {
    margin: 0;
}

#authentication #login-form .form-group,
#checkout #login-form .form-group {
    margin-bottom: 20px;
}

#authentication #login-form .forgot-password,
#checkout #login-form .forgot-password {
    margin-top: 4px;
    margin-bottom: 4px;
}

#authentication #login-form #submit-login{
    width: 100%;
}

#checkout #login-form .continue {
    width: calc(100% - 20px);
}

.customer-success-container {
    max-width: 935px;
    display: flex;
    flex-direction: row;
    text-align: center;
    margin: 0 auto;
}

.customer-success-container .success-block {
    background: rgba(255, 255, 255, 0.8);
    width: calc(50% - 15px / 2);
    margin-right: calc(15px / 2);
    padding: 32px 64px;
}

.customer-success-container .success-block h4 {
    color: #000;
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}

.customer-success-container .success-block .btn {
    width: 66%;
    margin-top: 24px;
}

.customer-success-container .success-block + .success-block {
    margin-right: 0;
    margin-left: calc(15px / 2);
}

.customer-registration-container {
    max-width: 935px;
    margin: 60px auto 115px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.customer-registration-container .success-check-container {
    width: 100%;
}

.customer-success-container .success-info {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    margin-top: 24px;
}

.customer-registration-container .success-check,
.customer-success-container .success-check,
#password .success-check {
    width: 64px;
    height: 64px;
    background: url('../img/success-check.png') no-repeat center center;
    background-size: 100%;
    display: inline-block;
    margin-bottom: 24px;
}

.customer-success-container .success-clock {
    width: 64px;
    height: 64px;
    background: url('../img/clock.png') no-repeat center center;
    background-size: 100%;
    display: inline-block;
    margin-bottom: 24px;
}

.customer-registration-container h4 {
    color: #222;
    font-size: 26px;
    margin-bottom: 36px;
    font-weight: 500;
}

.customer-registration-container .login-buttons-container {
    display: flex;
    flex-direction: row;
}

.customer-registration-container .login-buttons-container > a {
    flex: 1;
    display: inline-flex;
    margin-right: calc(15px / 2);
    width: calc(50% - 15px / 2);
    padding: 30px;
    background: #CB997E;
    color: #fff;
    font-size: 26px;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.customer-registration-container .login-buttons-container > a + a {
    margin-right: 0;
    margin-left: calc(15px / 2);
    background: #5C6960;
}

.wholesale-registration-info {
    max-width: 1173px;
    padding: 32px 64px;
    background: #fff;
    margin: 60px auto 115px;
    box-shadow: 0 4px 20px 0 #0000000F;
}

#password #content {
    max-width: 460px;
    padding: 32px 64px;
    background: #fff;
    margin: 60px auto 115px;
    text-align: center;
    box-shadow: 0 4px 20px 0 #0000000F;
}

.wholesale-registration-registration {
    max-width: 1173px;
    margin: 60px auto 115px;
    display: flex;
    flex-direction: row;
}

.wholesale-registration-registration .registration-form-container {
    flex-grow: 1;
    background: #fff;
    padding: 32px 64px;
    box-shadow: 0 4px 20px 0 #0000000F;
}

.wholesale-registration-registration .registration-banner {
    max-width: 341px;
    margin-right: 15px;
}

.wholesale-registration-registration .registration-banner .registration-banner-link {
    position: relative;
}

.wholesale-registration-registration .registration-banner img {
    max-width: 100%;
}

.wholesale-registration-registration .registration-banner .banner-text {
    position: absolute;
    max-width: 75%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-weight: bold;
    color: #fff;
    font-size: 26px;
    line-height: 32px;
    word-wrap: break-word;
    text-align: center;
}

.wholesale-registration-registration .registration-form-container .registration-form-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 -15px 24px;
    width: 100%;
}

.wholesale-registration-registration .registration-form-container .form-block-label {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.wholesale-registration-registration .registration-form-container .registration-form-wrapper > * {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 40%;
    margin: 15px 0 0 15px;
}

.wholesale-registration-registration .registration-form-container .registration-form-wrapper label.required:after {
    content: '*';
}

.wholesale-registration-registration .registration-form-container .registration-form-wrapper label .form-aoptional-spam {
    display: none;
}

.wholesale-registration-registration .info-button-container {
    text-align: right;
    margin: 0 0 0 15px;
}

.wholesale-registration-registration .info-button-container .btn {
    width: 50%;
}

#cms #content-wrapper {
    background: transparent;
}

.cms-container {
    max-width: 1173px;
    padding: 32px 64px;
    background: #fff;
    box-shadow: 0 4px 20px 0 #0000000F;
    margin: 60px auto 115px;
}

.cms-container .page-cms,
.cms-container .page-cms p,
.cms-container .page-cms ul {
    color: #222;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

.cms-container h1 {
    color: #222;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .address-item {
        flex: 1 1 calc((100% - 20px) / 2);
    }

    .product-line-grid-number, .product-line-grid-number-col {
        display: none;
    }

    #header.sticky .header-top {
        display: none;
    }

    .product-line-grid-name, .product-line-grid-name-col {
        flex: 11% 0 0;
    }
}

@media (min-width: 992px) {
    .breadcrumb-wrapper.down {
        top: -50px;
    }
}

@media (min-width: 768px) {
    .product-price-and-shipping {
        height: calc(100% - 58px);
    }

    .right-column {
        height: 223px;
    }
    .product-miniature.col-lg-4 {
        .product-price-and-shipping {
            position: absolute;
            bottom: 0;
            width: 100%;
        }
        .right-column {
            position: relative;
        }
    }
}

@media (min-width: 768px) and (max-width: 991px ) {
    .product-line-grid-comment input {
        width: 80px;
        height: 32px;
    }
}

@media (max-width: 991px ) {
    .wholesale-registration-registration {
        display: block;
    }

    .wholesale-registration-registration .registration-banner {
        max-width: 100%;
    }

    .wholesale-registration-info {
        padding: 15px;
    }

    .wholesale-registration-info .register-button {
        width: 100%;
    }

    #authentication #wrapper, #module-reregistration-info #wrapper, #module-reregistration-success #wrapper, #module-reregistration-guest #wrapper {
        padding: 15px 0;
    }

    .customer-success-container .success-block {
        padding: 15px;
    }

    .customer-success-container .success-block .btn {
        width: 100%;
    }

    .wholesale-registration-registration {
        margin: 0 auto;
    }

    .wholesale-registration-registration .registration-form-container {
        padding: 15px;
    }

    .wholesale-registration-registration .registration-form-container .registration-form-wrapper {
        display: inline-block;
    }

    .wholesale-registration-registration .registration-form-container .registration-form-wrapper .form-group > div {
        width: 100%;
    }

    .wholesale-registration-registration .info-button-container {
        margin: 0;
    }

    .wholesale-registration-registration .info-button-container .btn {
        width: 100%;
    }

    .customer-success-container,
    .customer-success-container .success-block {
        display: block;
        width: 100%;
        text-align: center;
    }

    .wholesale-registration-info {
        margin: 0 auto;
    }

    .wholesale-registration-info .register-button {
        width: 100%;
    }

    .page-authentication .register-form {
        padding: 15px;
    }

    .register-form .form-group > div {
        width: 100%;
    }

    .page-authentication #login-form {
        display: block;
    }

    .page-authentication #content,
    .checkout-login-wrapper .card-block {
        display: block;
        text-align: center;
    }

    #checkout .registration-form,
    #checkout .login-form-container {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    #checkout .checkout-login-wrapper {
        display: block !important;
    }

    .page-authentication #content:not(.registration) > section {
        margin: 0;
    }

    #cms .cms-container {
        padding: 15px;
        margin: 0 auto;
    }

    body#checkout .payment-option-card.active-payment-card {
        flex: 0 1 100%;
    }

    .vertical-menu-title svg {
        display: none;
    }

    #category-top {
        top: 160px;
    }

    .breadcrumb-wrapper {
        position: unset;
    }

    #left-column .vertical-menu-container {
        display: none !important;
    }

    #left-column + div {
        width: 100%;
    }

    .block-product-right {
        flex: 25% 1 1;
    }

    .header-footer {
        background: transparent;
    }

    #header {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    #product .breadcrumb-wrapper {
        margin-bottom: 50px;
    }

    #product #main {
        padding: 0 10%;
    }
}

@media (max-width: 992px) {
    #header.cloned {
        display: none;
    }

    .header-banner-inner .banner-tax-switch {
        display: none;
    }

    .banner-phone-block,
    .banner-email-block {
        margin-right: 0;
    }

    .header-banner-inner {
        gap: 10px;
    }
}

main {
    margin-top: 174px;
    transition-property: margin-top;
    transition-duration: 0.5s;
}

#header {
    position: fixed !important;
    top: 37px;
    z-index: 10000;
    left: 0;
    right: 0;
    transition: top .5s;
}

#header.sticky {
    top: 0;
}

.ui-autocomplete.ui-widget-content {
    z-index: 10001;
}

.magnify {
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    z-index: 20;
    background-repeat: no-repeat;
    background-color: white;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .5);
    display: none;
    cursor: none;
}

#header .logo,
#header .header-topline {
    transition: 0.5s;
}

#header.sticky .logo {
    max-height: 35px;
}

#header .header-banner {
    position: fixed;
    top: 0;
    transition: top 0.5s;
    z-index: 1;
}

#header.sticky .header-banner {
    top: -37px;
}

#header.sticky .header-topline {
    min-height: 35px;
}

#header.sticky .sc-horizontal-menu-item {
    padding-top: 5px;
    padding-bottom: 5px;
}

#product .fancybox-overlay,
#product .fancybox-opened,
#product .fancybox-wrap {
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
    visibility: hidden;
!important;
    height: 0 !important;
    z-index: -1 !important;
}

#galleries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    grid-gap: 30px;
}

#galleries .title {
    display: inline-block;
    width: calc(100% - 20px);
    text-align: center;
    background: #ffffff66;
    padding: 20px;
    margin: 10px;
}

#galleries .img-wrapper,
#galleries .img-wrapper > a {
    height: 100%;
    width: 100%;
}

#module-responsivegallery-galleryitems .fancybox-overlay {
    z-index: 10000;
}

#module-responsivegallery-galleryitems h1,
#module-responsivegallery-galleries h1 {
    text-align: center;
    text-transform: none;
}

#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    grid-gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#gallery .img-wrapper,
#gallery .img-wrapper > a {
    height: 100%;
    width: 100%;
}

#gallery .img-wrapper:hover a {
    box-shadow: 0 0 20px #00000012;
}

#galleries .img-wrapper > a,
#gallery .img-wrapper > a {
    display: block;
    position: relative;
    padding-top: 66.66%;
    overflow: hidden;
}

#galleries .img-wrapper > a > img,
#gallery .img-wrapper > a > img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 125%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#galleries .carousel-inner > .carousel-item > a > img,
#galleries .carousel-inner > .carousel-item > img,
#galleries .img-fluid, .img-thumbnail {
    max-width: unset;
    max-height: unset;
}

.pswp__button--arrow--right {
    right: 80px;
}

.pswp__button--arrow--left {
    left: 80px;
}

li.show-more {
    text-align: center;
    padding: 15px;
}

li.show-more button {
    cursor: pointer;
}

.pswp {
    z-index: 100000;
}

.ui-autocomplete.searchbar-autocomplete {
    position: fixed;
    transition-property: top;
    transition-duration: 0.5s;
    max-height: calc(100% - 120px);
    overflow-y: auto;
}
@media (max-width: 425px) {
    .ui-autocomplete.searchbar-autocomplete{
        left: 0 !important;
        width: 100% !important;
    }
}
:not(#module-responsivegallery-galleryitems) .fancybox-lock {
    overflow: auto !important;
}

.fancybox-lock body {
    overflow: auto !important;
}

#product .product-accessories .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#product .product-accessories .owl-carousel .owl-item article {
    width: auto;
    height: 100%;
    padding: 0 15px;
}

#product .product-accessories .left-column {
    flex: 0;
}

#product .product-accessories .owl-prev {
    left: -30px;
}

#product .product-accessories .owl-next {
    right: -30px;
}

#product .product-accessories h2 {
    text-align: left;
    font: normal normal 600 20px/68px Montserrat;
    color: #141C1A;
}

#search_filters_wrapper {
    margin-bottom: 0;
    box-shadow: 0 0 20px #00000012;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#search_filters_wrapper::-webkit-scrollbar {
    display: none;
}

#search_filters_wrapper .vertical-menu-container {
    margin-bottom: 0;
    box-shadow: none;
}

#scrolltopbtn {
    bottom: 72px;
}

.sb-overlay {
    z-index: 10000;
}

.sb-open body {
    overflow: hidden;
}

.pagination {
    height: 0;
    opacity: 0;
    margin: 0;
}

#carousel .carousel-inner {
    max-height: 420px;
}

.product-thumbnail {
    height: auto !important;
}

.open-filter {
    padding: 14px 20px;
    background-color: #5C6960;
    border: none;
    outline: none;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 12px;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 10px;
}

.arriving-filter-container {
    display: inline-block;
    border: 1px solid #DEDEDE;
    background-color: #F6F6F6;
    padding: 6px;
    margin-top: 10px;
}

.arriving-filter-container label {
    color: #141C1A;
    font-size: 12px;
    margin-right: 10px;
    margin-left: 10px;
}

.arriving-filter-container input[type="date"] {
    background-color: #FFFFFF;
    border: 1px solid #DEDEDE;
    padding: 4px 10px;
    color: #141C1A;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.products-filter-container {
    margin: 20px 0;
}

.custom-checkbox input[type=checkbox]:checked + span .checkbox-checked {
    display: none;
}

.facet-label .custom-checkbox input[type=checkbox]:checked + span .checkbox-checked {
    position: absolute;
    display: block;
    top: -5px;
}

.filter-open {
    overflow: hidden;
}

.filter-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 10005;
}

#search_filters {
    position: fixed;
    width: 350px;
    z-index: 10010;
    top: 0;
    right: -350px;
    height: 100%;
    background-color: #fff;
    padding: 0 20px 80px;
    transition: 0.5s;
}

#search_filters .expandable-values li:nth-child(n+5):not(:last-child) {
    display: none;
}

.show-more-button-container .show-more-button {
    color: #CDA387 !important;
    text-decoration: underline !important;
    font-size: 14px;
    cursor: pointer;
}

.filter-open #search_filters {
    right: 0;
}

#search_filters .h3 {
    background-color: #5C6960;
    color: #fff;
    font-size: 16px;
    padding: 11px 20px 10px;
    text-transform: uppercase;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    margin-bottom: 30px;
}

#search_filters .h3 .close-filters {
    color: #fff;
    position: absolute;
    top: 11px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

#search_filters .facet .facet-title {
    color: #141C1A;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 600;
    cursor: pointer;
}

section.facet .title .plus-minus {
    display: inline-block;
    float: right;
    font-size: 30px;
}

section.facet .title[aria-expanded="true"] .plus,
section.facet .title[aria-expanded="false"] .minus {
    display: none;
}

#search_filters .facet .facet-label .custom-checkbox,
#search_filters .facet .facet-label .custom-radio {
    margin-right: 10px !important;
}

#search_filters .custom-checkbox span,
#search_filters .custom-radio {
    width: 12px;
    height: 12px;
    background-color: #CFCFCF;
    border: none;
    border-radius: 0;
}

#search_filters .custom-checkbox span.texture {
    width: 32px;
    height: 24px;
    background-repeat: no-repeat;
    background-color: #fff;
}

#search_filters .custom-checkbox input[type="checkbox"]:checked + span,
#search_filters .active .custom-radio {
    background-color: #5C6960;
}

.custom-radio input[type=radio]:checked + span {
    left: 1px;
    top: 1px;
}

#search_filters .active .custom-radio i {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    height: auto;
}

.facet-label .custom-radio input[type=checkbox] + span {
    font-size: 16px;
    margin: 0;
    align-items: center;
    justify-content: center;
    width: 95%;
    height: auto;
    padding-left: 1px;
    display: none;
}

.facet-label .active .custom-radio input[type=checkbox] + span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.facet-label .custom-checkbox input[type=checkbox] + span .checkbox-checked {
    width: 95%;
    height: auto;
}

#search_filters .ui-slider .ui-slider-handle {
    background: #fff !important;
    box-shadow: 0 3px 6px #00000029;
}

#search_filters .ui-slider-horizontal .ui-slider-range {
    background-color: #CDA387 !important;
}

#search_filters .ui-slider-horizontal {
    background: #EBEBEB !important;
}

#search_filters .facet .facet-label a {
    font-size: 15px;
    color: #000000;
}

.faceted-slider .slider-title span:first-child {
    width: 45%;
    text-align: center;
    display: inline-block;
    border: 0.5px solid #C5C5C5;
    border-radius: 4px;
    padding: 8px 0 10px;
    margin-bottom: 13px;
    font-size: 14px;
    font-weight: 700;
}

.faceted-slider .slider-title span:nth-child(2) {
    width: 10%;
    text-align: center;
    display: inline-block;
    color: #212F3E;
    font-size: 14px;
}

.faceted-slider .slider-title span:nth-child(3) {
    width: 45%;
    text-align: center;
    display: inline-block;
    border: 0.5px solid #C5C5C5;
    border-radius: 4px;
    padding: 8px 0 10px;
    margin-bottom: 13px;
    font-size: 14px;
    font-weight: 700;
}

.filter-products-container {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.filter-products-container .filter-products {
    width: 100%;
}

.filters-container {
    overflow-y: auto;
    max-height: calc(100% - 75px);
}

#search_filters ul {
    width: 100%;
}

#search_filters .facet-dropdown {
    border: 1px solid #E1E1E1;
    background-color: #fff;
    padding: 0;
    width: 100%;
}

#search_filters .facet-dropdown a {
    background-color: #fff;
    padding: 12px 15px;
    font-size: 13px;
    color: #141C1A;
}

.facet-dropdown .select-title > svg {
    margin-left: auto;
}

#search_filters .dropdown-menu {
    border: 1px solid #E1E1E1;
}

#search_filters .dropdown-menu a:hover {
    color: #666;
}

body#checkout .block-promo .promo-code-button,
body#checkout .cart-summary-products a,
body#checkout .cart-summary-line .label,
body#checkout #cart-subtotal-products .value,
body#checkout .cart-summary-line .value {
    font-size: 13px;
    font-weight: normal;
}

body#checkout .cart-summary-line.cart-total-total .label,
body#checkout .cart-summary-line.cart-total-total .value {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    padding-top: 10px;
}

body#checkout .cart-summary-line {
    margin-bottom: 10px;
}

body#checkout .cart-summary-line:last-child {
    margin-bottom: 0;
}

.card-block .alert + .cart-summary-line {
    margin-top: 15px;
}

.logged-in-button {
    border-radius: 5px;
    padding: 2px;
}
.logged-in-button span {
    font-weight: 600;
    color: #58645C;
    margin-left: 8px;
}

.logged-in-button span .expand-more{
    color: #58645C !important;
}

.mobile-logged svg {
    background: rgb(92, 105, 96);
    border-radius: 5px;
    padding: 3px;
    height: 28px;
    width: 28px;
    margin-top: -3px;
}

.mobile-logged svg path {
    fill: #fff;
}

.mobile-header .user-info {
    height: 58px;
}

.non-picked-option,
.picked-option {
    color: #fff;
}

.add-to-cart-counter {
    background: #fff;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    color: #141C1A;
    border-top: solid 2px #CB997E;
    border-left: solid 2px #CB997E;
    border-right: solid 2px #CB997E;
    margin: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: 0.3s;
}

.an_productattributes-add:hover .add-to-cart-counter {
    top: -37px;
    opacity: 1;
}

.quantity_availability  .add-to-cart-counter {
    position: relative;
}

.product-actions .quantity_availability  .add-to-cart-counter {
    top: 37px;
}

.product-actions .quantity_availability:hover  .add-to-cart-counter {
    top: 0;
    opacity: 1;
}

.product-line-info .product-line-explained {
    width: 100% !important;
}

#ps_wirepayment_overlay, #contractpayment_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: #000;
    z-index: 10001;
}

#ps_wirepayment_popup, #contractpayment_popup {
    display: none;
    position: fixed;
    width: 600px;
    max-width: calc(100vw - 60px);
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    z-index: 10005;
    padding: 30px 37px 0;
    font-size: 14px;
    color: #141C1A;
    line-height: 22px;
}

#ps_wirepayment_popup strong, #contractpayment_popup strong {
    font-size: 18px;
}

#footer #ps_wirepayment_popup ul, #footer #contractpayment_popup ul {
    list-style: disc;
    margin-left: 18px;
}

#ps_wirepayment_popup .bold, #contractpayment_popup .bold {
    font-weight: 700;
}

#ps_wirepayment_popup .total-sum, #contractpayment_popup .total-sum {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

#ps_wirepayment_popup .buttons-container, #contractpayment_popup .buttons-container {
    margin: 0 50px;
    margin-top: 26px;
}

#ps_wirepayment_popup .buttons-container button:first-child, #contractpayment_popup .buttons-container button:first-child {
    background: #fff;
    width: calc(50% - 13px);
    padding: 15px 0;
    color: #141C1A;
    border-radius: 0;
    border: solid 1px #707070;
    margin-right: 11px;
}

#ps_wirepayment_popup .buttons-container button:nth-child(2), #contractpayment_popup .buttons-container button:nth-child(2) {
    background: #5C6960;
    width: calc(50% - 13px);
    padding: 15px 0;
    color: #fff;
    border-radius: 0;
    border: solid 1px #707070;
    margin-left: 11px;
}

#ps_wirepayment_popup .info-info, #contractpayment_popup .info-info {
    display: inline-block;
}

#footer #ps_wirepayment_popup ul li, #footer #contractpayment_popup ul li {
    display: list-item;
}

#ps_wirepayment_popup .wirepayment-popup-footer, #orderConfModal .wirepayment-popup-footer,
#contractpayment_popup .contractpayment-popup-footer, #orderConfModal .contractpayment-popup-footer {
    background: #1E2A28;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 18px -37px 0;
}

.sc-horizontal-menu-list {
    text-transform: uppercase;
}

/*.product-miniature.col-lg-12 .slider_product-wrapper-main,*/
/*.product-miniature.col-lg-4 .slider_product-wrapper {*/
/*    height: 0;*/
/*    width: 0;*/
/*    opacity: 0;*/
/*}*/

.product-miniature.col-lg-4 .slider_product-wrapper-main:not(.slick-initialized) .slider-product-item + .slider-product-item,
.product-miniature.col-xl-3 .slider_product-wrapper-main:not(.slick-initialized) .slider-product-item + .slider-product-item {
    display: none;
}

.category-product-input .combination-block:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

.right-column .stock-block {
    display: none;
}

/* Packing block loading indicator */
.packing-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    gap: 10px;
    width: 100%;
}

.packing-loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: packing-spin 0.8s linear infinite;
}

@keyframes packing-spin {
    to {
        transform: rotate(360deg);
    }
}

.packing-loader-text {
    font-size: 13px;
    color: #666;
}

.packing-loader.hidden {
    display: none;
}


.checkout-step:not(.js-current-step, .filled) {
    display: none;
}

#checkout-personal-information-step.js-current-step + .checkout-step,
.checkout-step.filled + .checkout-step {
    display: block;
}

.cart-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 6000;
    display: none;
}

.cart-loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.js-address-form label.required:after {
    content: '*';
}

#new-products .filters-toggler-block {
    display: none;
}

#products .highlighted-informations,
.featured-products .highlighted-informations,
.product-accessories .highlighted-informations,
.product-miniature .highlighted-informations {
    padding: 0;
}

@media (max-width: 1349px) {
    .sc-horizontal-menu-item {
        padding: 15px 0;
    }

    .cursorshade, .magnifyarea {
        display: none !important;
    }

    .zoomtracker {
        cursor: zoom-in !important;
    }
}

@media (max-width: 450px) {
    #gallery,
    #galleries {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }
}

@media (min-width: 581px) and (max-width: 767px) {
    .category-product-input {
        height: 156px;
        overflow-y: auto;
    }
}

@media (max-width: 767px) {
    #ps_wirepayment_popup .buttons-container, #contractpayment_popup .buttons-container {
        margin: 15px 0 0 0;
    }

    #ps_wirepayment_popup, #contractpayment_popup {
        max-width: calc(100vw - 30px);
        padding: 30px 15px 0;
    }

    #ps_wirepayment_popup .wirepayment-popup-footer,
    #orderConfModal .wirepayment-popup-footer,
    #contractpayment_popup .contractpayment-popup-footer,
    #orderConfModal .contractpayment-popup-footer {
        margin: 15px -15px 0;
        padding: 15px;
    }

    #content-hook_order_confirmation {
        padding: 15px 0;
    }

    #checkout .checkout-login-wrapper,
    #authentication .checkout-login-wrapper {
        padding-top: 0;
    }

    #checkout .login-form-container,
    #authentication .login-form-container {
        margin: 0;
        width: 100%;
    }

    #checkout #login-form,
    #authentication .login-form,
    #password #content
    {
        padding: 15px !important;
    }

    #checkout .login-form-container,
    #authentication .login-form-container {
        width: 100%;
    }

    #checkout .registration-form,
    #authentication .registration-form {
        margin: 0;
        width: 100%;
        padding: 15px;
    }

    main {
        margin-top: 135px;
    }

    .category-stock-item {
        font-size: 10px;
    }

    #checkout .block-title-wrapper {
        margin: 0;
        min-height: 40px;
    }

    #checkout .block-title-wrapper .card-block-title {
        font-size: 20px;
    }

    #checkout-summary-step h1, #checkout-summary-step .block-product-controller {
        margin-top: 10px;
    }

    #checkout-summary-step .product-detail-heading {
        line-height: unset;
        margin: 15px 0;
    }

    #checkout-summary-step .product-line-grid p {
        font-size: 13px;
    }

    body#checkout section.checkout-step .form-footer {
        margin: 5px -10px 5px;
    }

    #checkout .product-line-grid-comment .product-line-explained {
        display: none;
    }

    .address-item {
        flex: 1 1 100%;
    }

    .sc-banner-container {
        display: none;
    }

    .products-filter-container {
        margin: 10px 0;
    }

    .arriving-filter-container {
        text-align: center;
    }

    .arriving-filter-container label {
        width: auto;
    }

    .arriving-filter-container input {
        width: 40%;
    }

    .arriving-filter-container :first-child {
        width: 100%;
        text-align: center;
    }

    #wrapper,
    #category #wrapper,
    #product #wrapper {
        padding-top: 0;
    }

    #category #left-column {
        padding-bottom: 0;
    }

    #payment-confirmation .ps-shown-by-js .btn-primary {
        width: 100%;
    }

    .block-promo {
        padding: 15px;
    }

    .block-promo .promo-code {
        padding-bottom: 0;
    }

    .cart-voucher > p {
        margin: 0;
        padding: 0;
    }

    #footer .footer-container li,
    .footer-container .links .title,
    #footer .links .h3 {
        margin-bottom: 0;
    }

    :is(#contractpayment_popup, #ps_wirepayment_popup) .buttons-container button {
        width: 100% !important;
        margin: 10px 0 0 0 !important;
    }

    body#checkout section.checkout-step .delivery-option label,
    .delivery-option-2-inner {
        width: 95%;
    }

    body#checkout section.checkout-step .form-group {
        margin-top: 0;
        margin-bottom: 0;
    }

    body#checkout section.checkout-step #customer-form .form-control-label,
    body#checkout section.checkout-step #delivery-address .form-control-label {
        padding-top: 15px;
    }

    body#checkout section.checkout-step .delivery-option {
        flex: 1 1 100%;
    }

    #product .category-product-input {
        height: 156px;
        overflow-y: auto;
    }

    #carousel .carousel-control {
        display: unset;
    }

    .open-filter,
    .arriving-filter-container {
        width: 100%;
        margin-right: 0;
    }

    .breadcrumb-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }

    #category-top {
        margin: 0 -15px;
    }

    #search_filters_wrapper .mobile-menu-header {
        display: none;
    }

    .stock-change .hidden-md-up,
    .stock-change .hidden-md-up + div {
        min-height: 40px;
    }

    .cart-item .product-line-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
        align-items: flex-start;
    }

    .cart-items-header {
        display: none;
    }

    #index .banner-container {
        min-height: 220px;
        overflow: hidden;
    }

    #index .banner-container img {
        width: auto !important;
        position: absolute;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    #index .banner-container .inside-container {
        width: 100%;
        position: absolute;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .product-line-grid > div,
    .product-line-grid > div.product-price {
        width: 100%;
        justify-content: space-between;
        flex: unset;
        margin-bottom: 10px;
    }

    .cart-item .product-line-grid {
        display: block;
    }

    .cart-item .product-line-grid-img,
    .cart-item .product-line-grid-name,
    .cart-item .product-line-grid-comment {
        width: auto;
        display: inline-block;
        float: left;
        max-width: 50%;
    }

    .product-line-grid-img {
        max-width: calc(40% - 10px);
    }

    .block-product-controller .block-product-left,
    .block-product-controller .block-product-right {
        flex: 100% 1 1;
    }

    .product-line-grid-name {
        display: block;
        padding-right: 15px;
    }

    .product-line-grid-price,
    .product-line-grid-discount,
    .product-line-grid-included {
        width: calc(100% / 3) !important;
        float: left;
        flex-direction: column;
    }

    .product-line-grid-price .product-line-explained,
    .product-line-grid-discount .product-line-explained,
    .product-line-grid-included .product-line-explained {
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }

    .product-line-grid-name .product-line-explained,
    .product-line-grid-name .product-line-grid-img {
        width: auto;
        display: inline-block;
        padding: 0;
        float: left;
        margin-right: 15px;
    }

    .product-line-info .product-line-explained {
        display: none;
    }

    .product-line-grid-body>.product-line-info {
        max-width: unset;
        margin-right: 35px;
    }

    .product-line-grid-comment {
        display: inline-block;
    }

    .product-line-grid-comment input {
        width: 100%;
        margin: 0;
        max-width: 190px;
    }

    .product-price.product-line-grid-total {
        border-top: solid 2px #F6F6F6;
        padding-top: 5px;
    }

    .product-line-grid-qty .product-line-explained {
        display: none;
    }

    .product-line-grid-total {
        position: unset;
    }

    .product-line-grid {
        position: relative;
    }

    .remove-item-wrap {
        position: absolute;
        right: 15px;
    }

    .product-line-explained {
        display: block;
    }

    .login-form-container {
        padding: 15px 15px 0;
    }

    #checkout #login-form .form-group, #authentication #login-form .form-group {
        display: block;
    }

    body#checkout section.checkout-step #customer-form {
        margin: 0;
    }

    .guest-form-container {
        padding: 0;
    }

    #delivery-address > .js-address-form {
        padding: 0;
    }

    body#checkout section.checkout-step .carrier-price {
        position: unset;
        text-align: center;
    }

    .product-cart-content {
        border-bottom: solid 1px #AC9369;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    #index #carousel {
        margin: -17px -20px 0 -25px;
    }

    #category .root-category h1 {
        font-size: 20px;
    }

    #product .product-images {
        display: none;
    }
}
#new-products .faceted-overlay{left:0;top:0;width:100%;height:100%;position:fixed;background-color:rgba(25,25,25,0.5);z-index:100}
#new-products .faceted-overlay .overlay__inner{left:0;top:0;width:100%;height:100%;position:absolute}
#new-products .faceted-overlay .overlay__content{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%)}
#new-products .faceted-overlay .spinner{width:75px;height:75px;display:inline-block;border-width:2px;border-color:rgba(255,255,255,0.05);border-top-color:#fff;animation:spin 1s infinite linear;border-radius:100%;border-style:solid}
@keyframes spin{100%{transform:rotate(360deg)}}
.product-miniature.col-lg-4 .an_productattributes-add .one-color-add {
    display: none !important;
}
.product-miniature.col-lg-12 .an_productattributes-add .more-colors{
    display: none !important;
}
.product-miniature.col-lg-12 .an_productattributes-add .one-color-add{
    display: block !important;
}
#module-an_wishlist-list .variant-links{
    display: none;
}

#order-products tr > td:first-child {
    width: 20%;
}

#order-products img {
    width: 100%;
    max-width: 98px;
}

#orderConfModal .modal-body p {
    margin: 0px 0px 20px;
}

#orderConfModal .modal-body {
    padding-bottom: 0;
}

#orderConfModal .modal-header, #orderConfModal .modal-footer {
    border: none;
    font-size: 22px;
}

#orderConfModal .modal-footer {
    display: flex;
    justify-content: center;
}

#orderConfModal .modal-header, #orderConfModal .modal-body {
    padding: 33px 33px 0;
}

#orderConfModal .modal-body p {
    font-size: 15px;
}

#orderConfModal .btn {
    width: calc(40% - 13px);
}

@media (min-width: 576px) {
    #orderConfModal .modal-dialog {
        max-width: 600px;
    }
}

#orderConfModal .btn-secondary {
    height: 45px;
    border: 1px solid #7a7a7a;
    color: var(--dark-green);
    font: normal normal normal 13px/16px Montserrat;
    text-align: center;
    border-radius: 0;
    line-height: 16px;
    text-transform: none;
    margin-right: 20px;
}

#orderConfModal .btn-primary {
    border: 1px solid #7a7a7a;
    height: 45px;
    border-radius: 0;
    background: var(--light-green) 0 0 no-repeat padding-box;
    padding: 11px 5px;
    font-size: 13px;
    line-height: 16px;
    margin-top: 0;
    text-transform: none;
    color: white;
}

#orderConfModal .wirepayment-popup-footer {
    font-size: 12px;
    margin: 0;
}

#orderConfModal .modal-title {
    font-weight: 700;
    font-size: 19px;
}

@media(max-width: 767px) {
    #welcome-page .welcome-page-block svg {
        visibility: hidden;
    }

    #orderConfModal .modal-header, #orderConfModal .modal-body {
        padding: 20px 20px 0;
    }
    #orderConfModal .modal-body p {
        font-size: 13px;
    }
    #orderConfModal .modal-title {
        font-size: 13px;
        margin-top: 5px;
    }
    #orderConfModal .btn {
        width: 100%;
    }
    #orderConfModal .btn-secondary {
        margin-bottom: 10px;
    }

    #orderConfModal .modal-footer {
        flex-direction: column;
    }
    #orderConfModal {
        width: 100%;
    }

    #header {
        top: 0;
    }

    #header .header-banner {
        display: none;
    }

    body#checkout .payment-option-card img {
        max-width: 130px;
        padding: 20px;
    }
}

/*.stripe_official .js-payment-option-form {*/
/*    width: 40%;*/
/*    padding-right: 10%;*/
/*}*/

.payment-options #stripe-card-payment {
    margin: 15px 0;
}

body#checkout .payment-options #stripe-card-payment {
    flex: 0 1 30%;
}

body#checkout section.checkout-step .payment-options .active-payment-card #payment-option-1-container.payment-option {
    width: 30%;
}

body#checkout .active-payment-card.payment-option-card.stripe_official {
	justify-content: center;
}

body#checkout .payment-option-card.stripe_official:not(.active-payment-card) > .payment-option > label > span {
    display: block;
    height: unset;
    width: unset;
}

.stock-unvisible {
    display: none;
}

@media(max-width: 767px) {
    body#checkout .payment-option-card.stripe_official {
        justify-content: center;
        flex-direction: column;
    }
    body#checkout .payment-option-card.stripe_official.active-payment-card {
        height: 100px;
    }
    /*.stripe_official .js-payment-option-form {*/
    /*	width: 90%;*/
    /*	padding-right: 0;*/
    /*}*/
    body#checkout section.checkout-step .payment-options .active-payment-card.stripe_official #payment-option-1-container.payment-option {
    	width: 60%;
    }
    .payment-options #stripe-card-payment {
    	margin-top: 0px;
    }
    body#checkout .payment-option-card.stripe_official:not(.active-payment-card) > .payment-option > label {
        flex-direction: column;
    }
    .delivery-option-container {
        height: 150px;
    }
    .index-category-name,
    .category-subcategory-title {
        font-size: 14px;
        bottom: 20px;
    }
    #products .product-miniature {
        padding-top: 0;
    }
    .an_productattributes-add {
        margin-top: 5px;
    }

    .order-products-container {
        overflow-x: auto;
    }
}

.stripe_official.active-payment-card span {
    margin-right: 10px;
}

body#checkout .payment-option-card > .payment-option > label > span {
    padding: 5px;
}

#pay-with-paysera-payment-form {
    display: none !important;
}
#_mobile_search .search-button svg{
    position: absolute;
    right: 14px;
}
#_mobile_search .search-button-lead{
    width: 100%;
    margin: 0;
}
#_mobile_search .ui-autocomplete-input, #_mobile_search input[name="s"]{
    background: #f9f9fa!important;
    width: 100%;
    padding: 10px;
}
.opacity-block .category-image, .category-subcategory .category-image{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
}
.cms-container img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}
@media(max-width: 450px) {
    #order-products.table td, #order-products.table th {
        padding: 7px;
    }
}

.cart-hover-preview {
    position: absolute;
    border: 1px solid #ccc;
    background: #fff;
    max-width: 400px;
    max-height: 400px;
    z-index: 1000;
}

.product-line-grid-img .media-middle .loop-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    pointer-events: none;
}
.product-line-grid-img .media-middle:hover .loop-icon {
    display: block;
}

.product-line-grid-img .media-middle {
    position: relative;
    display: inline-block;
}

/* Darken (and slightly grey) the image */
.product-line-grid-img .media-middle:hover img {
    display: block;
    width: 100%;
    height: auto;
    /* you can tweak these values */
    filter: brightness(50%) grayscale(20%);
    cursor: pointer;
}

.slick-track
{
    min-height: 253px;
}
@media(max-width: 767px) {
    .slick-track
    {
        min-height: 302px;
    }
}

.lgcookieslaw-banner-bottom {
    min-height: 100px;
}

/* Out-of-stock overlay for packing rows */
.category-product-input,
.product-add-to-cart .product-quantity {
    position: relative;
}

.oos-packing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.oos-packing-overlay .oos-message {
    color: #9E0D0D;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #9E0D0D;
    border-radius: 2px;
    line-height: 1.4;
}

.oos-state .product-cart-content {
    opacity: 0.3;
    pointer-events: none;
}

.oos-state .product-cart-content input,
.oos-state .product-cart-content button {
    pointer-events: none;
    cursor: not-allowed;
}

/* Disabled add-to-cart button when OOS */
.an_productattributes-add .btn-oos-disabled,
.product-add-to-cart .btn-oos-disabled {
    background-color: #ccc !important;
    color: #888 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    border: 1px solid #bbb;
}

.an_productattributes-add .btn-oos-disabled:hover,
.product-add-to-cart .btn-oos-disabled:hover {
    background-color: #ccc !important;
    color: #888 !important;
}
