.btn {
    padding: 14px 25px;
    font-family: var(--font-inter);
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.22px;
}
.btn-primary {
    background: var(--color-brand-blue);
    color: var(--color-brand-black);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
    background: var(--color-brand-dark-blue) !important;
    color: var(--color-brand-black) !important;
    outline: unset !important;
}
.btn-primary:disabled:hover,
.btn-primary:disabled,
.btn-primary:disabled:focus {
    background: var(--color-brand-white) !important;
    color: var(--color-disabled) !important;
    opacity: unset !important;
}
.btn-secondary {
    background: var(--color-brand-white);
    border: 1px solid var(--color-brand-black);
    color: var(--color-brand-black);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active,
.btn-secondary:visited {
    background: var(--color-brand-dark-blue);
}
.btn-secondary:disabled:hover,
.btn-secondary:disabled,
.btn-secondary:disabled:focus {
    border: 1px solid var(--color-disabled);
    color: var(--color-disabled);
}
.btn.active.focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus, 
.btn:active:focus, 
.btn:focus {
    outline: unset;
    outline-offset: unset;
}
h1,.h1 {
    font-family: var(--font-playfair);
    font-size: 40px;
    line-height: 44px;
    font-weight: 800;
    font-optical-sizing: auto;
    @media (max-width: 1024px) {
        font-size: 30px;
        line-height: 32px;
    }
}
.h1-seo {
    font-family: var(--font-inter);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-optical-sizing: auto;
}
h2,.h2 {
    font-family: var(--font-playfair);
    font-size: 30px;
    line-height: 32px;
    font-weight: 800;
    font-optical-sizing: auto;
}
h3,.h3 {
    font-family: var(--font-playfair);
    font-size: 25px;
    line-height: 27px;
    font-weight: 800;
    font-optical-sizing: auto;
}
h4,.h4,h5,h6 {
    font-family: var(--font-playfair);
    font-size: 22px;
    line-height: 27px;
    font-weight: 800;
    font-optical-sizing: auto;
}
.titre {
    font-family: var(--font-inter) !important;
    font-size: 13px !important;
    line-height: 16px !important;
    font-weight: 700 !important;
    font-optical-sizing: auto !important;
    letter-spacing: 0.26px !important;
    text-transform: uppercase;
}
.titre-2 {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    font-optical-sizing: auto;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}
.p2 {
    font-weight: 400;
}
.p3 {
    font-weight: 600;
}
.citation-3 {
   font-family: var(--font-inter);
   font-size: 21px;
   line-height: 34px;
   font-weight: 700;
   text-transform: uppercase; 
   @media (max-width: 1024px) {
    font-size: 18px;
    line-height: 32px;
   }
}
* {
    min-width: 0;
    font: inherit;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img, video, svg {
    display: block;
    height: auto;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
.h1, .h2, .h3 {
    text-transform: unset;
    margin-bottom: 0;
}
body {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    color: var(--color-brand-black);
}
span[data-link],
span[data-link-v2],
span[data-link-blank],
.link-finder,
#ancre-top {
    cursor: pointer;
}
.link,
a.link {
    border-bottom: 2px solid var(--color-brand-black);
    color: var(--color-brand-black);
    font-size: 11px;
    line-height: 12px;
    letter-spacing: 0.22px;
    font-weight: 700;
    text-transform: uppercase;
}
a {
    color: var(--color-brand-black);
    &:hover {
        color: var(--color-brand-dark-blue);
    }
}
/* .link:hover,
a.link:hover {
    border-bottom: 1px solid var(--color-brand-bleu-hover);
    color: var(--color-brand-bleu-hover);
} */
.link:disabled,
a.link:disabled {
    border-bottom: 2px solid var(--color-disabled);
    color: var(--color-disabled);
}
.flex {
    display: flex;
    &.column {
        flex-direction: column;
    }
    &.flex-row {
        flex-direction: row !important;
    }
    &.line {
        flex-direction: row;
    }
    &.flex-end {
        justify-content: flex-end;
    }
    &.flex-start {
        justify-content: flex-start;
    }
    &.center {
        justify-content: center;
    }
    &.space-between {
        justify-content: space-between;
        align-items: center;
    }
    &.align-center {
        align-items: center !important;
    }
    &.align-end {
        align-items: flex-end;
    }
    &.gap-5 {
        gap: 5px;
    }
    &.gap-6 {
        gap: 6px;
    }
    &.gap-7 {
        gap: 7px;
    }
    &.gap-8 {
        gap: 8px;
    }
    &.gap-10 {
        gap: 10px;
    }
    &.gap-12 {
        gap: 12px;
    }
    &.gap-14 {
        gap: 14px;
    }
    &.gap-20 {
        gap: 20px;
    }
    &.gap-30 {
        gap: 30px;
    }
    &.gap-62 {
        gap: 62px;
    }
    &.gap-66 {
        gap: 66px;
    }
    .flex-1 {
        flex: 1;
    }
}
p {
    all: unset;
}
a {
    cursor: pointer;
}
p  {
    display: block;
}
hr {
    border-top: 1px solid var(--color-brand-black);
    margin-top: 18px;
    margin-bottom: 12px;
}
.copyright {
    font-size: 12px;
}
.margin-auto {
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.color-white {
    color: var(--color-brand-white);
}
#wrapper {
    background: unset;
    padding-top: unset;
    @media (max-width: 767px) {
        padding-top: 0;
    }
}
#search_widget {
    min-width: 560px;
    float: unset;
    @media (max-width: 1200px) {
        min-width: 480px;
    }
    @media (max-width: 992px) {
        min-width: 400px;
    }
    @media (max-width: 850px) {
        min-width: 300px;
    }
    @media (max-width: 767px) {
        min-width: 100%;
        margin-bottom: 0;
    }
}
#search_widget form input {
    background: var(--color-brand-white);
    border-radius: 10px;
    border: 1px solid var(--color-brand-black);
    color: var(--color-brand-gris);
    &::placeholder {
        color: var(--color-brand-gris);
        opacity: 1;
    }
}
#search_widget form i {
    color: var(--color-brand-bleu);
}
.slick-prev,
.slick-next {
    width: unset;
    height: unset;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.products.slick-initialized .slick-slide .product-miniature {
    margin: 0 10px;
    @media (max-width: 767px) {
        margin: 0;
    }
}
@media (max-width: 450px) {
    .slick-prev,
    .slick-next {
        width: unset;
        height: unset;
        /* top: 28%; */
        transform: translateY(-50%);
        z-index: 10;
    }
}
.slick-prev {
    left: 37px;
    @media (max-width: 450px) {
        left: 5px;
    }
}
.slick-next {
    right: 37px;
    @media (max-width: 450px) {
        right: 5px;
    }
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.desktop_header {
    display: block;
    @media (max-width: 767px) {
        display: none;
    }
}
.breadcrumb {
    padding-top: 15px !important;
}
.breadcrumb li {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}
.breadcrumb li:last-child {
    color: var(--color-brand-black) !important;
}
#amazzing_filter {
    box-shadow: unset;
    padding: unset;
    border-width: 1px 0;
    border-style: solid;
    border-color: var(--color-brand-gris-3);
    display: flex;
    align-items: center;
    @media (max-width: 767px) {
        display: block;
        a.viewFilteredProducts {
            display: block;
        }
    }
}
#amazzing_filter.block .title_block {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-brand-black);
}
.horizontal-layout .has-selection .af_subtitle {
    color: unset;
}
.horizontal-layout .has-selection .af_subtitle, .horizontal-layout .has-selection .af_subtitle.toggle-content:before, .horizontal-layout .has-selection .af_filter_content {
    border-color: unset;
}
.af_filter {
    margin-bottom: unset;
    &:not(:last-child) {
        margin-right: 10px;
        @media (max-width: 767px) {
            margin-right: unset;
        }
    }
}
#amazzing_filter.horizontal-layout .h-el {
    padding: unset;
    width: min-content !important;
    @media (min-width: 480px) {
        padding: unset;
    }
}
.horizontal-layout .title_block {
    display: block;
    margin-bottom: unset;
}
.horizontal-layout .af_subtitle {
    border: unset
}
#amazzing_filter .af_filter_content {
    @media (min-width: 768px) {
        min-width: 200px;
        border: unset;
        border-radius: 4px;
        box-shadow: 0px 0px 23px rgba(0, 0, 0, 0.1);
        background: var(--color-brand-white);
    }
}
.horizontal-layout .af_subtitle {
    font-size: 15px;
    line-height: 20px;
    text-transform: unset;
    font-weight: 600;
    color: var(--color-brand-black);
}
.af_subtitle.toggle-content:before {
    border: 2px solid var(--color-brand-black);
}
#amazzing_filter.horizontal-layout {
    margin: unset;
}
.pagination .next,
.pagination .previous {
    float: unset;
    color: var(--color-brand-black);
}
.pagination .next {
    display: flex;
    align-items: center;
}
.pagination a {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    color: var(--color-brand-black);
}
.pagination .current a {
    color: var(--color-brand-white);
    font-size: 15px;
    background: var(--color-brand-black);
}
.pagination a:not(.previous):not(.next) {
    letter-spacing: unset;
}
.pagination .page-list {
    display: flex;
    justify-content: center;
}
.pagination .page-list li {
    display: inline-flex;
    text-align: center;
}
.pagination li a {
    width: 100%;
    border-radius: 100px;
    width: 34px;
    height: 34px;
    line-height: 2rem;
}
.af_filter:not(.closed) .af_subtitle.toggle-content:before {
    border-width: 2px 0 0 2px;
}
.wishlist-button-add i {
    color: var(--color-brand-bleu) !important;
}
.selectedFilters.inline .clearAll,
.selectedFilters .cf {
    background: var(--color-brand-bleu);
}
.selectedFilters.inline .clearAll a {
    color: var(--color-brand-black);
}
.blockcart {
    position: relative;
    .products-count {
        text-align: center;
        line-height: 1.1rem;
    }
    span.cart-products-count {
        position: absolute;
        right: -8px;
        top: 0;
        background: var(--color-brand-bleu);
        color: var(--color-brand-black);
        border-radius: 100px;
        width: 20px;
        height: 20px;
        font-weight: 800;
    }
}
.bootstrap-touchspin input.form-control, .bootstrap-touchspin input.input-group, .bootstrap-touchspin .btn-touchspin {
    border: 1px solid var(--color-brand-black);
}
.bootstrap-touchspin {
    @media (max-width: 425px) {
        display: inline-flex;
    }
}
.phone {
    border: 1px solid var(--color-brand-white);
    border-radius: 12px;
    display: inline-flex;
    padding: 0 6px;
}
.banner-slide {
    background: var(--color-brand-blue);
}
.border {
    border: 1px solid var(--color-disabled);
    margin-top: 37px;
    padding: 40px;
}
.thead-default th {
    background-color: unset;
    color: var(--color-brand-black);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.26px;
    font-weight: 700;
}
.table-bordered th {
    border: unset;
}
.table-bordered, .table-bordered td, .table-bordered th {
    border: unset;
}
.no-items {
    display: block;
    margin-top: 15px;
}
.nav-item .nav-link, .nav-item .nav-separtor {
    color: var(--color-disabled);
}
#field-password.form-control.border,
#field-new_password.form-control.border {
    margin-top: 0;
    padding: .5rem 1rem;
    z-index: 0;
}
.alert a {
    font-weight: 600;
}
.underline-custom {
    text-decoration: underline;
}
:root {
    --color-brand-black         : #000000;
    --color-brand-black2        : #4F4F4F;
    --color-brand-black3        : #2A2A2A;
    --color-brand-blue          : #91D4F6;
    --color-brand-dark-blue     : #68BBE4; 
    --color-brand-white         : #FFFFFF;
    --color-brand-grey          : #F5F5F5;
    --color-disabled            : #BDBDBD;
    --font-inter                : "Inter", sans-serif;
    --font-playfair             : "Playfair Display", serif;
    --font-ibarra               : "Ibarra Real Nova", serif;
}
#cart {
    #wrapper .breadcrumb[data-depth="1"] {
        display: block;
    }
    .card-block-title {
        padding: 0;
        padding-bottom: 30px;
    }
    .cart-grid-body .cart-overview {
        padding: 0;
    }
    .product-price {
        color: var(--color-brand-black);
    }
    .checkout {
        .btn-primary {
            background: var(--color-brand-black);
            color: var(--color-brand-white);
        }
    }
    .cart-summary {
        border: 1px solid var(--color-brand-grey);
    }
    #cart-subtotal-products {
        margin-bottom: 0;
        .label {
            font-size: 15px;
            font-weight: 300;
            line-height: 22px;
        }
        .value {
            font-size: 15px;
            line-height: 22px;
            font-weight: 600;
        }
    }
    .cart-total {
        .label, .value {
            font-size: 15px;
            line-height: 22px;
            font-weight: 600;
        }
    }
    .cart-summary-line {
        margin-bottom: 8px;
    }
    .reassurance-cart {
        margin: 0 auto;
        width: fit-content;
        p {
            display: flex;
            margin-bottom: 8px;
        }
        img {
            margin-right: 4px;
        }
    }
    .cart-items {
        .cart-item:not(:last-child) {
            border-bottom: 1px solid var(--color-brand-grey);
        }
    }
    .has-discount .discount {
        background: var(--color-brand-blue);
    }
    a.label:hover {
        color: var(--color-brand-blue);
    }
    .product-price sup {
        top: -3px;
    }
    .pm-csoc-owl-item {
        .product-miniature {
            margin: 0 5px;
        }
    }
}
#js-product-list-header {
    /* background: url('../img/bkg-category.png'); */
    background-size: cover !important;
    min-height: 304px;
    padding-bottom: 34px;
    margin-bottom: 15px;
    .block-category {
        max-width: 715px;
        min-height: unset;
        position: relative;
        top: 62px;
        &.card {
            @media (max-width: 767px) {
                background: var(--color-brand-white);
                padding: 15px;
            }
        }
    }
    .h1-seo {
        font-size: 12px;
        color: var(--color-brand-white);
        background: var(--color-brand-black);
        width: fit-content;
        padding: 5px 30px;
        margin-bottom: 5px;
    }
    #category-description {
        padding-top: 15px;
        &.p1 {
            p {
                font-weight: 300;
            }
        }
    }
}
#category {
    .breadcrumb {
        position: absolute;
        width: 100%;
        li span {
            color: var(--color-brand-white);
        }
    }
    .product-description {
        padding: 0 14px 16px 14px;
    }
}
#subcategories {
    border-top: unset;
}
.subcategories-list {
    gap: 24px;
    justify-content: center;
    li {
        border: 1px solid var(--color-brand-black3);
        border-radius: 31px;
        width: unset !important;
        min-width: 123px !important;
        padding: 5px 20px;
        margin: unset !important;
        &:hover {
            background : var(--color-brand-black3);
            .subcategory-name {
                color: var(--color-brand-blue);
                font-weight: 600;
            }
        }
        .subcategory-name {
            text-transform: unset !important;
        }
    }
}
.wk-btn-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22px;
    line-height: 12px;
}
#amazzing_filter {
    border-width: unset !important;
    border-style: unset !important;
    border-color: unset !important;
    &.block {
        .title_block {
            margin-bottom: unset;
        }
    }
    @media (max-width: 767px) {
        .container {
            all: unset;
        }
        .flex {
            display: block;
        }
        .btn.full-width {
            width: unset;
        }
    }
}
.selectedFilters.inline {
    margin: 15px auto;
}
.product-miniature {
    height: unset !important;
    .product-description {
        height: 120px !important;
        @media (max-width: 767px) {
            height: 165px !important;
        }
    }
    .thumbnail-container {
        height: unset !important;
        width: 100%;
        .product-thumbnail {
            img {
                @media (max-width: 575px) {
                    margin: unset;
                    width: 100%;
                }
            }
        }
    }
}
#category .product-miniature .product-description, #search .product-miniature .product-description {
    height: 150px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    @media (max-width: 575px) {
        height: 175px !important;
    }
    .product-quantity {
        flex-wrap: nowrap !important;
        .qty {
            margin-right: 0;
        }
    }
    .wk-btn-text {
        text-wrap: auto;
    }
}
.wk-atc-btn {
    padding-top: 16px;
    .quantity_wanted {
        border-width: 1px 0 1px 1px !important;
        @media (768px < width < 992px) {
            width: 24px !important;
        }
        @media (max-width: 767px) {
            width: 30px !important;
        }
    }
    .js-decrease-product-quantity {
        border-width: 0 1px 1px 0 !important;
    }
    .js-increase-product-quantity {
        border-width: 1px 1px 0 0 !important;
    }
}
.products-selection {
    margin-bottom: unset;
}
.total-products {
    float: right;
}
#js-product-list {
    .products {
        .product {
            .product-miniature {
                .product-quantity {
                    .qty, .add {
                        margin-bottom: 0;
                    }
                }
            }
            padding: 15px;
            @media (max-width: 992px) {
                padding: 10px;
            }
        }
    }
}
#js-product-list-footer {
    .card {
        margin-bottom: 0;
    }
    .category-additional-description {
        background: var(--color-brand-grey);
        padding: 100px 0;
        h1, h2, h3, h4 {
            margin: 24px 0 14px 0;
        }
    }    
}
/* #products {
    @media (max-width: 575px) {
        padding: 0 60px;
    }
} */
@media (max-width: 576px) {
    #category {
        #js-product-list {
            .products {
                .product {
                    .product-miniature {
                        .thumbnail-container {
                            overflow: visible;
                            height: 100% !important;
                            .thumbnail-top {
                                overflow: visible;
                            }
                        }
                        .product-quantity {
                            display: flex;
                            flex-wrap: wrap;
                            .qty {
                                display: inline-flex;
                                flex-wrap: nowrap;
                                .bootstrap-touchspin {
                                    display: flex;
                                }
                            }
                            .add {
                                .wk-addcart-icon {
                                    display: none;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
#category .ets_mm_megamenu_content .product-quantity {
    display: none;
}
#search .background-search {
    background: url('../img/bkg-category.png');
    background-repeat: no-repeat;
    background-size: 100%;
    @media (max-width: 1440px) {
        background-size: unset;
    }
    h1.h2 {
        padding-top: 20px;
        color: var(--color-brand-white);
    }
}
#search .product-miniature {
    height: 440px !important;
    .thumbnail-container {
        height: 435px !important;
        @media (max-width: 575px) {
            height: unset !important;
        }
        .thumbnail-top {
            overflow: unset;
        }
    }
    @media (max-width: 575px) {
        height: unset !important;
    }
}
.header-checkout {
    position: relative;
    .mobile {
        display: none !important;
        @media (max-width: 767px) {
            display: block !important;
        }
    }
    .desktop {
        display: block !important;
        @media (max-width: 767px) {
            display: none !important;
        }
    }
    .float-left {
        position: absolute;
        color: var(--color-brand-black);
        padding-top: 33px;
    }
    .float-right {
        position: absolute;
        right: 15px;
        top: 0;
        color: var(--color-brand-black);
        padding-top: 22px;
        @media (max-width: 992px) {
            display: none;
        }
    }
    .bkg-blue {
        background: var(--color-brand-blue);
        padding: 4px 12px;
    }
    .underline {
        text-decoration: underline;
    }
    .link-pro {
        color: var(--color-brand-black);
        font-weight: 700;
        margin-top: 4px;
    }
}
.logo-lcsa-checkout {
    display: flex;
    justify-content: center;
}
@media (max-width: 576px) {
    .logo-lcsa-checkout {
        justify-content: flex-end;
    }
}
#checkout {
    a:hover {
        color: var(--color-brand-dark-blue) !important;
    }
    .header-nav {
        border-bottom: 1px solid var(--color-disabled) !important;
    }
    .float-right {
        @media (max-width: 767px) {
            display: none;
        }
    }
    .cart-grid-body,
    .cart-grid-right {
        margin-top: 75px;
        @media (max-width: 767px) {
            margin-top: unset;
        }
    }
    .cart-grid-right .card .cart-summary-subtotals-container .cart-summary-line:not(:last-child) {
        margin-bottom: 4px !important;
    }
    #js-checkout-summary {
        border: 2px solid var(--color-brand-black);
        padding: 15px 14px 18px 11px;
        .js-show-details {
            .material-icons {
                color: var(--color-brand-blue);
            }
        }
        .card-block {
            padding: unset;
        }
        .cart-summary-subtotals-container {
            padding: 15px 0 18px 0;
        }
        .cart-summary-products {
            padding-bottom: 24px;
        }
    }
    #cart-summary-product-list {
        font-size: 15px;
        line-height: 22px;
        font-weight: 400;
        img {
            border: 2px solid var(--color-brand-black);
        }
        .product-price {
            color: var(--color-brand-black);
            font-weight: 600;
        }
    }
    .step-title {
        font-size: unset !important;
        font-weight: 600 !important;
        text-transform: unset !important;
        .material-icons {
            color: var(--color-brand-blue);
            &.edit {
                color: var(--color-brand-black);
            }
        }
    }
    section.checkout-step.-reachable.-complete p .done {
        display: inline-block;
    }
    .checkout-step {
        .content {
            padding: 0 !important;
        }
    }
    .step-number {
        all: unset !important;
        margin-right: 1rem;
        &::after {
            content: '-';
            display: inline-block;
            margin-left: 0.3rem;
        }
    }
    .checkout-step.-reachable.-current .step-number {
        background-color: unset !important;
        color: var(--color-brand-black) !important;
    }
    .js-customer-form {
        label[for=field-optin],
        label[for=field-psgdpr],
        label[for=field-customer_privacy] {
            display: none;
            & + .js-input-column {
                width: 100%;
            }
        }
        button[data-link-action=register-new-customer] {
            float: unset !important;
            width: 100%;
            background: var(--color-brand-black);
            color: var(--color-brand-white);
        }
        .form-informations {
            margin: 40px 0 15px 0;
        }
    }
    section.checkout-step .not-allowed, section.checkout-step.-unreachable .step-title {
        color: var(--color-brand-black) !important;
        opacity: unset !important;
    }
    #footer {
        padding: 0 !important;
    }
    button[data-link-action=sign-in],
    button[name=confirm-addresses],
    button[name=confirmDeliveryOption],
    .ps-shown-by-js button {
        width: 100% !important;
        color: var(--color-brand-white) !important;
        background: var(--color-brand-black) !important;
        margin-top: 24px;
    }
    .forgot-password {
        margin-left: 183px !important;
    }
    section.checkout-step .address-item.selected {
        border: 3px solid var(--color-brand-black) !important;
    }
    section.checkout-step .address-item {
        background: unset !important;
        border: 1px solid var(--color-disabled) !important;
        hr {
            border: 1px solid var(--color-disabled);
        }
    }
    .custom-radio input[type=radio]:checked+span {
        background-color: var(--color-brand-blue);
    }
    .text-address {
        margin-top: 24px;
    }
    section.checkout-step #delivery-addresses, section.checkout-step #invoice-addresses, section.checkout-step .add-address {
        margin-bottom: 1rem !important;
    }
    #checkout-addresses-step {
        h2.h4 {
            margin-top: 24px;
        }
    }
    .step-edit {
        float: right !important;
        display: block !important;
        color: var(--color-brand-black) !important;
        font-weight: 300 !important;
        text-transform: capitalize !important;
    }
    .delivery-options,
    .payment-options  {
        padding-top: 24px;
    }
    .payment-options {
        padding-left: 15px;
    }
    section.checkout-step .delivery-options .delivery-option {
        background: unset !important;
        border: 1px solid var(--color-disabled) !important;
    }
    .block-promo {
        margin-bottom: 0;
        .promo-code-button {
            padding-bottom: 0;
        }
        #promo-code .promo-code {
            padding-bottom: 10px;
        }
    }
    .reassurance-cart {
        margin: 0 auto;
        width: fit-content;
        p {
            display: flex;
            margin-bottom: 8px;
        }
        img {
            margin-right: 4px;
        }
    }
    #checkout-personal-information-step .content p a {
        text-decoration: underline;
    }
    .js-address-form .add-address a,
    .js-address-form .add-address ~ p a {
        text-decoration: underline;
        font-size: 11px;
        font-weight: 700;
        line-height: 12px;
        letter-spacing: 0.22px;
        text-transform: uppercase;
    }
    .js-terms a {
        text-decoration: underline;
    }
    .header-checkout .bkg-blue span.underline a:hover, 
    .header-checkout .p3 a:hover {
        color: var(--color-brand-black) !important;
    }
}
#order-confirmation {
    .text-center {
        margin-top: 20px;
        margin-bottom: 20px;
        .bold {
            font-weight: 500;
        }
    }
    #order-items {
        border-top: 1px solid var(--color-disabled) !important;
        border-right: unset;
    }
}
#checkout, #order-confirmation {
    .logo-lcsa-checkout {
        padding: 5px 0;
    }
}
#checkout .additional-information {
    margin-bottom: 1.25rem;
}
.h1-cms {
    h1 {
        width: fit-content;
        background: var(--color-brand-blue);
        color: var(--color-brand-black) !important;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.24px;
        text-transform: uppercase;
        font-family: var(--font-inter);
        padding: 0 13px;
    }
}
.h2-cms-noir {
    h2, .h2 {
        width: fit-content;
        background: var(--color-brand-black);
        color: var(--color-brand-white) !important;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.24px;
        text-transform: uppercase;
        font-family: var(--font-inter);
        padding: 0 13px;
    }
}
.elementor-text-editor p {
    margin-bottom: 12px;
}
/* Forms */
#cms {
    .bootstrap-filestyle {
        input.form-control {
            height: 100%;
        }
        .group-span-filestyle {
            width: 210px;
            label.btn {
                justify-content: center;
                background-color: var(--color-brand-blue);
                .buttonText {
                    text-wrap: wrap;
                    color: var(--color-brand-black);
                }
            }
        }
    }
    .ets_cfu_input_acceptance {
        display: flex;
    }
}
.description-auth, .send-renew-password-link {
    color: var(--color-brand-black);
    padding-top: 16px;
}
.page-authentication #content, .page-registration #content {
    max-width: unset;
}
.no-account a,
.forgot-password a {
    color: var(--color-brand-black);
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    text-decoration: underline;
}
hr {
    border-top: 1px solid var(--color-brand-grey) !important;
}
.center-email-fields {
    padding-top: 15px;
}
#back-to-login span,
#back-to-login i {
    color: var(--color-brand-black);
}
#my-account .links a {
    border: 2px solid var(--color-brand-black);
    margin-bottom: 0 !important;
    flex: 0 1 calc(33.33% - 30px);
    .link-item {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.32px;
        color: var(--color-brand-black);
        font-weight: 700;
        img {
            width: 40px;
            margin-bottom: 8px;
        }
    }
}
#my-account .links {
    gap: 30px;
    flex-wrap: wrap !important;
    margin-top: 59px;
    @media (max-width: 767px) {
        flex-direction: column;
    }
}
#my-account .page-footer .btn-primary {
    background: var(--color-brand-black);
    color: var(--color-brand-white);
    max-width: 243px;
    width: 100%;
    margin: 44px 0 86px 0;
}
.page-addresses {
    .page-header {
        text-align: center;
    }
}
.page-customer-account {
    .page-header {
        text-align: center;
    }
    .js-customer-form, .js-address-form {
        border: 1px solid var(--color-disabled);
        padding: 40px;
        label {
            text-align: unset;
        }
        .form-control-submit {
            width: 100%;
            background: var(--color-brand-black);
            color: var(--color-brand-white);
        }
    }
    #content {
        color: var(--color-brand-black);
    }
    .page-footer {
        margin-bottom: 82px !important;
    }
}
#history {
    .page-header {
        margin-bottom: unset;
    }
    .page-content {
        padding: 0 1rem 1rem 1rem;
    }
    .text-center {
        color: var(--color-brand-black);
        margin-bottom: 40px;
    }
}
.wishlist-footer-links > a,
.wishlist-add-to-new {
    color: var(--color-brand-black) !important;
}
.wishlist-product-image {
    border: 2px solid var(--color-brand-black);
}
.wishlist-product-title {
    color: var(--color-brand-black) !important;
    font-size: 15px !important;
    line-height: 19px !important;
    font-weight: 600;
}
.wishlist-product-addtocart {
    background: var(--color-brand-black);
    color: var(--color-brand-white);
    text-transform: uppercase !important;
}
.wishlist-products-count {
    color: var(--color-brand-black) !important;
    font-size: 30px !important;
    line-height: 32px !important;
    font-weight: 800 !important;
}
.wishlist-product-price-promo {
    color: var(--color-brand-black) !important;
}
.wishlist-product-price {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}
#password #send-reset-link {
    width: unset;
}
#history .order-actions {
    display: flex;
    flex-direction: column;
}
#registration .h1 ~ p {
    margin: 1rem 0 2rem 0;
    a {
        font-weight: 500;
    }
}
#pagenotfound {
    #main .page-content {
        margin-bottom: unset;
    }
    .page-not-found {
        background: url('../img/bkg-wrapper.jpg');
        background-size: cover;
        height: 600px;
        max-width: unset;
        clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
        padding: unset;
        margin: unset;
        @media (max-width: 575px) {
            padding: 0 15px;
        }
        .container {
            background: var(--color-brand-white);
            max-width: 715px;
            margin-top: 72px;
            padding: 30px 30px 50px 30px;
        }
        p {
            color: var(--color-brand-black);
        }
        .h1 {
            margin-bottom: 16px;
        }
    }
    #search_widget {
        min-width: unset;
        max-width: 432px;
        margin: 24px auto;
        form {
            input {
                border-radius: unset;
            }
        }
    }
    .btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    .breadcrumb {
        position: absolute;
        z-index: 1;
        width: 100%;
        &[data-depth="1"] {
            display: block;
        }
        li {
            span {
                color: var(--color-brand-white);
            }
        }
    }
    .error-footer {
        img {
            padding-bottom: 10px;
        }
        .h1,.h2 {
            padding-bottom: 14px;
        }
        .btn {
            margin-top: 37px;
        }
        padding-bottom: 79px;
    }
}
#contact-block {
    position: relative;
    .shape {
        background: url('../img/bkg-cadre.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
        position: relative;
        height: 473px;
    }
    .content {
        color: var(--color-brand-white);
        text-align: center;
        padding: 50px 0 82px 0;
        .h2 {
            color: var(--color-brand-blue);
            padding: 10px 0 14px 0;
        }
        img {
            margin: 0 auto;
            max-width: 106px;
        }
        .p2 {
            padding-bottom: 27px;
        }
    }
    .banner-slide {
        transform-origin: left;
        transform: translateY(10px) rotate(-3deg);
        width: 100%;
        height: 59px;
        position: absolute;
        bottom: 0;
        overflow: hidden;
        @media (min-width: 1550px) {
            bottom: -20px;
        }
    }
}
#discover-store {
    background: url('../img/bkg-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 52px 0;
    margin-bottom: 95px;
    .content {
        background: url('../img/bkg-cadre-white.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width: 55%;
        padding: 60px 50px;
        @media (max-width: 992px) {
            width: 100%;
        }
        @media (max-width: 768px) {
            position: relative;
            bottom: -100px;
            box-shadow: 0px 5px 4px 0px var(--color-brand-grey);
            padding: 18px 18px 21px 18px;
        }
        .h1-seo span {
            background: var(--color-brand-black);
            color: var(--color-brand-white);
            padding: 3px 14px;
            margin-bottom: 5px;
            /* @media (max-width: 768px) {
            } */
        }
        .p1 {
            padding: 16px 0 29px 0;
        }
        .link {
            display: inline-block;
            margin-top: 30px;
        }
        .infos {
            padding-bottom: 26px;
            .titre {
                line-height: 22px;
            }
            .p1 {
                display: block;
                padding: 0;
            }
            .address {
                padding-bottom: 15px;
                .p1 {
                    border-bottom: 1px solid var(--color-brand-black);
                }
            }
        } 
    }
}
#custom-text {
    all: unset;
    b, strong {
        font-weight: 800;
    }
    p {
        all: unset;
        display: block;
        margin-top: 1rem;
    }
    .content {
        column-count: 2;
        column-gap: 42px;
        padding: 86px 0 100px 0;
        @media (max-width: 767px) {
            column-gap: 50px;
            padding-bottom: 60px;
            padding: 40px 0 100px 0;
        }
        @media (max-width: 550px) {
            column-count: 1;
        }
    }
    .h3,h3 {
        margin-bottom: 0;
        padding-top: 44px;
    }
    .container {
        @media (max-width: 767px) {
            padding-left: 20px;
            padding-right: 20px;
            width: unset;
            max-width: unset;
            margin-left: auto;
            margin-right: auto;
        }
    }
}
#banner-block {
    padding-bottom: 109px;
    background: linear-gradient(transparent 50%, var(--color-brand-grey) 50%);
    .content {
        height: 481px;
        @media (max-width: 992px) {
            height: 380px;
        }
        @media (max-width: 768px) {
            width: 100%;
            margin: 0 auto;
            height: 100%;
        }
        .imgs {
            height: 100%;
            /* background: var(--color-brand-black); */
            @media (max-width: 768px) {
                height: 380px;
                width: 100%;
            }
            .img {
                background-size: cover !important;
                background-repeat: no-repeat !important;
                height: 100%;
            }
            .img-desktop {
                @media (max-width: 768px) {
                    display: none;
                }
            }
            .img-mobile {
                display: none;
                @media (max-width: 768px) {
                    display: block;
                    width: 100%;
                    object-fit: cover;
                    aspect-ratio: 1 / 1;
                }
            }
        }
        @media (max-width: 768px) {
            flex-direction: column;
        }
        .h1-seo {
            span {
                background: var(--color-brand-white);
                padding: 3px 14px;
            }
        }
        .h2 {
            color: var(--color-brand-blue);
            padding-bottom: 19px;
        }
        .p2 {
            color: var(--color-brand-white);
        }
        .btn {
            margin-top: 38px;
            width: fit-content;
        }
        .text {
            padding: 0 61px;
            background: url('../img/bkg-cadre-black.png');
            background-repeat: no-repeat;
            background-size: 100% 100%;
            width: 55%;
            height: 100%;
            display: grid;
            place-content: center;
            margin-left: -10px;
            @media (max-width: 768px) {
                width: 100%;
                margin-left: unset;
                padding: 30px;
                text-align: center;
                margin-top: -5px;
            }
        }
    }
}
#reassurance-home {
    margin-bottom: 126px;
    .container {
        padding: 0 66px;
    }
    .titre {
        margin-bottom: 6px;
    }
    .block {
        img {
            width: 72px;
        }
    }
    @media (max-width: 992px) {
        .container {
            padding: 12px;
        }
        .gap-66 {
            gap: 15px;
        }
        .block {
            text-align: center;
            img {
                margin: 0 auto;
            }
        }
    }
    @media (max-width: 768px) {
        .flex {
            flex-direction: column;
        }
        .pipe {
            width: 2px;
            transform: rotate(90deg);
            margin: 0 auto;
        }
    }
}
#banner-hero {
    margin-bottom: 42px;
    position: relative;
    .wrapper {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        padding: 80px 0 60px 0;
        @media (max-width: 768px) {
            height: 427px;
        }
        .content {
            padding: 25px 50px 45px 50px;
            background: url('../img/bkg-cadre-white-2.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            width: 60%;
            @media (769px <= width <= 992px) {
                width: 75%;
            }
            @media (max-width: 768px) {
                width: 100%;
                position: relative;
                bottom: -100px;
                box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
            }
            @media (max-width: 425px) {
                padding: 10px 14px 28px 14px;
            }
            .reassurance {
                padding: 16px 0;
                .p3 {
                    padding-bottom: 5px;
                    span {
                        flex: 1;
                    }
                }
                img {
                    width: 28px;
                    height: 28px;
                }
            }
            .btn-primary {
                margin-right: 20px;
                @media (max-width: 425px) {
                    margin-right: 0;
                    width: 100%;
                }
            }
            .h1-seo {
                background: var(--color-brand-black);
                color: var(--color-brand-white);
                padding: 3px 15px;
                margin-bottom: 11px;
            }
        }
        .block-btns {
            @media (max-width: 500px) {
                width: 100%;
                display: inline-flex;
                flex-direction: column;
                gap: 20px;
                .link {
                    width: fit-content;
                    margin: 0 auto;
                }
            }
        }
    }
    @media (max-width: 768px) {
        margin-bottom: 200px;
    }
    @media (max-width: 590px) {
        margin-bottom: 300px;
    }
}
#history-home {
    margin-bottom: 88px;
    background: url('../img/crispy-bread-sticks.png');
    background-repeat: no-repeat;
    background-position: right 0;
    @media (max-width: 768px) {
        background-position: bottom -100px right 0;
        height: 700px;
        margin-bottom: 0;
        background-size: 50%;
    }
    .content {
        img {
            max-width: 300px;
            @media (max-width: 768px) {
                margin-bottom: 24px;
            }
        }
        .h1-seo {
            color: var(--color-brand-white);
            margin-bottom: 28px;
            span {
                background: var(--color-brand-black);
                padding: 3px 14px;
            }
        }
        .citation-3 {
            margin-bottom: 28px;
        }
        .btn-primary {
            margin-right: 25px;
            @media (max-width: 768px) {
                margin-right: 0;
            }
        }
    }
    .block-btns {
        @media (max-width: 768px) {
            display: inline-flex;
            flex-direction: column;
            width: 100%;
            gap: 25px;
        }
        .link {
            @media (max-width: 768px) {
                width: fit-content;
                margin: 0 auto;
            }
        }
    }
}
#home-categories {
    margin-bottom: 86px;
    .content {
        .h1-seo {
            color: var(--color-brand-white);
            span {
                background: var(--color-brand-black);
                padding: 3px 14px;
            }
        }
        .h2 {
            margin-bottom: 15px;
        }
        .categories {
            margin-top: 53px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 35px;
            @media (max-width: 992px) {
                display: unset;
            }
            .category {
                img {
                    width: 100%;
                }
                .titre {
                    margin-top: 15px;
                    display: block;
                }
                margin: 0 10px;
            }
            .slick-prev {
                @media (max-width: 992px) {
                    display: none !important;
                    left: 0;
                }
            }
            .slick-next {
                @media (max-width: 992px) {
                    right: 10px;
                }
            }
        }
        .home-categories-titles {
            @media (max-width: 992px) {
                margin-bottom: 32px;
            }
        }
    }
    .slick-list {
        @media (max-width: 992px) {
            margin-left: -10px;
            margin-right: -10px;
        }
    }
}
#team {
    margin-bottom: 91px;
    position: relative;
    .content {
        .background {
            background: url('../img/team.webp');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            width: 100%;
            height: 475px;
            clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
        }
    }
    .banner-slide {
        transform-origin: right;
        transform: translateY(5px) rotate(-2.5deg);
        overflow: hidden;
        position: relative;
        z-index: 1;
        @media (max-width: 992px) {
            transform: translateY(15px) rotate(-2.5deg);
        }
        @media (max-width: 768px) {
            transform: translateY(30px) rotate(-2.5deg);
        }
        @media (max-width: 425px) {
            transform: translateY(40px) rotate(-2.5deg);
        }
    }
}
#avis-garantis {
    margin-bottom: 151px;
    .h1-seo {
        color: var(--color-brand-white);
        span {
            background: var(--color-brand-black);
            padding: 3px 14px;
        }
    }
    .h2 {
        margin-bottom: 19px;
    }
}
#featured-products {
    padding-bottom: 150px;
    background: var(--color-brand-grey);
    .content {
        .h1-seo {
            color: var(--color-brand-white);
            span {
                background: var(--color-brand-black);
                padding: 3px 14px;
            }   
        }
        .h2 {
            margin-bottom: 38px;
        }
        .products {
            margin-bottom: 42px;
        }
    }
}
@media (min-width: 1899px) {
    #contact-block .banner-slide, #team .banner-slide {
        transform: translateY(10px) rotate(-2deg);
    }
}
/* Image produit */
#product #content {
    max-width: 100%;
}
#product .js-qv-product-cover {
    border: 2px solid var(--color-brand-black);
}
#product .product-cover img.slick-slide {
    margin: 0 8px;
}
#product .product-images.js-qv-product-images {
    display: flex;
    justify-content: center;
    align-items: center;
}
#product .product-images.js-qv-product-images .thumb {
    border: 2px solid var(--color-brand-black);
}
#product .images-container .js-qv-mask.scroll {
    overflow: unset !important;
}
#product .images-container .thumb-container img {
    border: 2px solid var(--color-brand-black);
    width: 100%;
}
#product .product-images.js-qv-product-images li.thumb-container.js-thumb-container.slick-slide {
    margin: 0 8px;
}
#product .product-images.js-qv-product-images .slick-prev {
    left: -35px;
}
#product .product-images.js-qv-product-images .slick-next {
    right: -35px;
}
#product .product-images.js-qv-product-images>li.thumb-container {
    margin: 0 8px;
}
@media (max-width: 991.9px) {
    #product .product-images.js-qv-product-images {
        display: none;
    }
}
@media (max-width: 992px) {
    .slick-dots {
        display: flex;
        justify-content: center;
        margin: 0;
        list-style-type: none;
    }
    .slick-dots li {
        margin: 0 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 10px;
    }
    .slick-dots li button {
        display: block;
        background-color: var(--color-brand-blue) !important;
        width: 0.5rem;
        height: 0.5rem;
        padding: 0;
        border: none;
        border-radius: 100%;
        text-indent: -9999px;
    }
    .slick-dots li.slick-active button {
        background-color: var(--color-brand-black) !important;
    }
}
/* Header title */
#product .header-product-title {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
}
@media (max-width: 767px) {
    #product .header-product-title {
        margin-top: 3rem;
    }
}
#product .wishlist-button-product {
    margin: 0;
}
#product .wishlist-button-add {
    background-color: transparent;
    box-shadow: unset;
}
/* Déclinaison */
#product #product-availability .product-last-items, #product-availability .product-unavailable {
    color: var(--color-brand-blue);
}
#product .product-variants>.product-variants-item .control-label {
    color: var(--color-brand-black);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
#product .product-variants>.product-variants-item select {
    width: 100%;
    position: relative;
    background: url('/themes/child_classic/assets/img/Arrow-up.svg') no-repeat right .5rem center/1.25rem 1.25rem;
    color: var(--color-brand-black);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
/* Pack */
#product .product-pack .h4 {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
#product .product-pack .pack-product-container {
    border: 2px solid var(--color-brand-black);
}
#product .product-pack .pack-product-container .pack-product-quantity {
    border-width: 0 0 0 2px;
    border-color: var(--color-brand-black);
}
#product .product-pack .pack-product-container .pack-product-price {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
#product .product-pack .pack-product-container .pack-product-name {
    color: var(--color-brand-black);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}
#product .product-pack .pack-product-container .thumb-mask>.mask {
    border: transparent;
}
/* Modal produit */
#product .product-images>li.thumb-container .thumb {
    border: 2px solid var(--color-brand-black);
}
#product .product-images>li.thumb-container .thumb.selected, 
#product .product-images>li.thumb-container .thumb:hover {
    border: 2px solid var(--color-brand-black);
}
#product #product-modal .modal-content .modal-body .product-cover-modal {
    border: 2px solid var(--color-brand-black);
}
#product #product-modal .image-caption {
    display: none;
}
/* Produit customization */
#booking_product_available_qty {
    margin-top: 5px !important;
}
#product .product-customization  {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
#product .product-customization .date_range_form span {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
@media (max-width: 991px) {
    #product .product-customization .date_range_form .form-group > div {
        margin-bottom: 1rem;
    }
}
#product #booking_product_available_qty span.product_max_avail_qty_display {
    background-color: var(--color-brand-black);
    color: var(--color-brand-white);
}
#product .product-customization .wk-booking-container {
    padding: 0;
    border: none;
    box-shadow: none;
}
#product .product-customization .wk-booking-block .form-control {
    background: transparent !important;
    border-color: var(--color-brand-black) !important;
    color: var(--color-brand-black) !important;
    border-width: 1px 0 1px 1px !important;
}
#product .product-customization .input-group-addon {
    color: var(--color-brand-black);
    background-color: transparent;
    border: 1px solid var(--color-brand-black);
    border-width: 1px 1px 1px 0;
}
#product .product-customization .h4.card-title {
    font-family: inherit;
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
}
#product .product-customization .bootstrap-touchspin .input-group-btn-vertical .touchspin-down::before,
#product .product-customization .bootstrap-touchspin .input-group-btn-vertical .touchspin-up::before {
    content: none;
}
#product .product-customization .booking_total_price {
    color: var(--color-brand-black);
}
#product .product-customization .flex {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 20px;
}
#product .product-customization .flex .col-sm-12:has(button) {
    padding: 0 !important;
}
#product .product-customization button.pull-sm-right {
    color: var(--color-brand-white);
    background-color: var(--color-brand-black);
    width: 100%;
}
#product .product-customization button.pull-sm-right:hover,
#product .product-customization button.pull-sm-right:active,
#product .product-customization button.pull-sm-right:focus,
#product .product-customization button.pull-sm-right:focus-visible,
#product .product-customization button.pull-sm-right:active:focus,
#product .product-customization button.pull-sm-right:active:hover {
    background: var(--color-brand-black3) !important;
    color: var(--color-brand-white) !important;
    outline: unset !important;
}
#product .product-customization button.pull-sm-right:disabled {
    background: var(--color-brand-white) !important;
    color: var(--color-disabled) !important;
    outline: unset !important;
}
/* Price */
#product .product-discount {
    margin-bottom: 0;
}
#product .product-prices {
    margin-top: .5rem;
}
#product .product-prices div {
    margin-bottom: 0;
}
#product .product-prices .regular-price {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
}
#product .product-prices .current-price {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 21px;
    font-weight: 700;
    line-height: 34px;
}
#product .product-price-tax {
    display: flex;
    align-items: center;
    gap: 5px;
}
#product .tax-shipping-delivery-label {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.22px;
}
#product .product-unit-price,
#product .product-pack-price,
#product .caracteristic-price {
    color: #828282;
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    margin-bottom: 7.5px;
}
/* Description courte */
#product .product-information {
    margin-top: 1rem;
    .product-description {
        .flex-block {
            display: flex;
            gap: 5px;
            span {
                padding-top: 5px;
            }
        }
    }
}
#product .product-description,
#product .product-description p {
    color: var(--font);
    color: var(--color-brand-black);
}
#product .product-description ul {
    margin: .5rem 0;
    list-style: url('../img/checkbox-puce.svg');
    padding-left: 1.75rem;
}
#product .product-description ul li {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
    line-height: 15px;
}
/* displayProductAdditionalInfo */
#product .product-add-to-cart .control-label {
    color: var(--color-brand-black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
#product .bootstrap-touchspin {
    display: flex;
    height: 35px;
}
#product .bootstrap-touchspin-up {
    border-width: 1px 1px 0 0;
}
#product .bootstrap-touchspin-down {
    border-width: 0 1px 1px 0;
}
#product .product-quantity {
    gap: 16px;
}
#product #quantity_wanted {
    border-right: 0;
    color: var(--brand-color-black);
    border-width: 1.5px 0 1.5px 1.5px;
    height: 35px;
    font-weight: 500;
    width: 3.5rem;
}
#product .product-quantity .qty {
    width: fit-content;
}
#product .product-quantity .add {
    width: 100%;
}
#product .product-quantity .btn-touchspin {
    height: 1.17rem;
}
#product .add-to-cart {
    height: 36px;
    padding: 14px 25px;
    line-height: 0;
    width: 100%;
    background: var(--color-brand-black);
    color: var(--color-brand-white);
    outline: unset !important;
}
.add-to-cart:hover, 
.add-to-cart:focus, 
.add-to-cart:focus-visible, 
.add-to-cart:active, 
.add-to-cart:active:focus, 
.add-to-cart:active:hover {
    background: var(--color-brand-black3) !important;
    color: var(--color-brand-white) !important;
    outline: unset !important;
}
.add-to-cart:disabled {
    background: var(--color-brand-white) !important;
    color: var(--color-disabled) !important;
    outline: unset !important;
}
/* Description longue */
#product .tabs {
    padding: 2rem 0;
}
#product .tabs .nav-tabs {
    display: flex;
    gap: 0 60px;
    flex-direction: row;
}
#product .tabs .nav-tabs .nav-link {
    padding: 10px 0;
    color: var(--color-disabled);
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    border-color: var(--color-brand-grey);
    border-bottom-width: 2px;
}
#product .tabs .nav-tabs .nav-link.active {
    color: var(--brand-color-black);
}
#product .tab-pane .product-description {
    padding-top: 1.5rem;
}
#product .product-features>dl.data-sheet {
    display: flex;
    flex-direction: column;
}
#product .product-features {
    margin-left: 0;
}
#product .product-features .reference-item {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--color-brand-black);
    gap: 0 5px;
}
#product .product-features .reference-item:last-of-type {
    border-bottom: 0;
}
#product .product-features>dl.data-sheet dd.value, 
#product .product-features>dl.data-sheet dt.name {
    padding: .625rem 0;
    margin-right: 0;
    flex: unset;
    border-bottom: 1px solid;
    width: fit-content;
    margin-bottom: 0;
    border-bottom: 0;
    background: transparent;
    color: #333333;
}
#product .definition-list dl dd:nth-of-type(even), 
#product .definition-list dl dt:nth-of-type(even), 
#product .product-features>dl.data-sheet dd.value:nth-of-type(even), 
#product .product-features>dl.data-sheet dt.name:nth-of-type(even) {
    background: transparent;
}
/* Réassurance */
#product #reassurance-home {
    background-color: var(--color-brand-grey);
    padding: 4rem 0;
    margin: 1rem 0 3rem 0;
}
/* Produit phares */
#product #featured-products {
    margin-bottom: 75px;
}
#product .product-accessories .products .product-miniature {
    height: 425px !important;
    .product-description {
        height: unset !important;
    }
}
#reassurance {
    background: var(--color-brand-blue);
    padding: 10px 0;
    @media (max-width: 767px) {
        padding: 16px 0 22px 0;
        .flex {
            flex-direction: column;
            align-items: start;
            &.space-between {
                gap: 24px;
            }
        }
        .container {
            display: flex;
            justify-content: center;
        }
    }
}
#footer {
    padding-top: unset;
}
.footer-container {
    background: var(--color-brand-black);
    ul {
        margin-bottom: 0;
    }
    li {
        margin-bottom: unset;
        a {
            color: var(--color-brand-white);
            font-size: 15px;
            line-height: 32px;
            font-weight: 400;
        }
    }
    .titre {
        color: var(--color-brand-blue);
        margin-bottom: 12px;
        @media (max-width: 768px) {
            margin-bottom: 0;
        }
    }
    .block-footer {
        color: var(--color-brand-white);
        p {
            padding-bottom: 37px;
        }
        > span.p3 {
            color: var(--color-brand-blue);
        }
    }
    .link {
        color: var(--color-brand-white);
        border-color: var(--color-brand-white);
    }
    .phone {
        margin-top: 6px;
        img {
            margin-right: 3px;
        }
    }
    .text {
        color: var(--color-brand-white);
        font-size: 12px;
        font-weight: 400;
    }
    .copyright, .company {
        .titre {
            margin-bottom: 0;
        }
    }
    .company {
        .socials {
            padding-top: 31px;
            @media (max-width: 768px) {
                justify-content: space-between;
                margin-bottom: 42px;
            }
        }
        img {
            @media (max-width: 768px) {
                margin: 0 auto;
            }
        }
    }
    .footer-bottom {
        padding: 90px 0 25px 0;
    }
    .links .title {
        @media (max-width: 768px) {
            border-bottom: unset;
            padding: unset;
        }
        &[data-toggle="collapse"] {
            @media (max-width: 768px) {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .collapse-icons {
                color: var(--color-brand-white);
            }
        }
    }
    .shop-footer {
        p {
            padding-bottom: 0;
        }
        @media (max-width: 768px) {
            margin-top: 42px;
            padding: 0 15px !important;
        }
        .block-footer:nth-child(3) {
            padding-top: 32px;
            .time {
                padding-top: 13px;
                display: block;
            }
        }
    }
    .links {
        ul {
            background: transparent;
            &>li {
                border-bottom: 0;
                a {
                    color: var(--color-brand-white);
                }
            }
        }
        @media (max-width: 767px) {
            .wrapper:not(:last-child) {
                margin-bottom: 12px;
            }
        }
    }
}
.form-control {
    background: var(--color-brand-white);
    border: 1px solid var(--color-brand-black);
    &:focus {
        outline: unset;
        border-color: unset;
    }
}
.input-group .input-group-btn>.btn[data-action=show-password] {
    background: var(--color-brand-blue);
    border-width: 1px 1px 1px 0;
    border-color: var(--color-brand-black);
    border-style: solid;
    color: var(--color-brand-black);
    left: -15px;
}
input[type=password] {
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: var(--color-brand-black);
    margin-right: 15px;
    &.border {
        padding: 8px 16px;
        margin-top: unset;
    }
}
.form-control-submit {
    width: 100%;
    display: block;
}
.custom-radio input[type=radio]:checked+span {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: var(--color-brand-black);
}
#header {
    box-shadow: unset;
}
@media (max-width: 767px) {
    .ybc-menu-toggle {
        width: auto;
    }
}
.header-top-right {
    width: fit-content;
    position: absolute;
    right: 0;
    @media (max-width: 992px) {
        position: unset;
    }
}
.logo-lcsa {
    @media (max-width: 767px) {
        height: 69px;
    }
}
.lien-logo-lcsa {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.goog-te-gadget-simple, .goog-te-gadget-simple span a {
    display: flex !important;
}
.goog-te-gadget-simple {
    border: 1px solid #BDBDBD !important;
}
#google_translate_element {
    @media (max-width: 992px) {
        display: none;
    }
}
#header .ets_mm_megamenu .product-title a {
    color: var(--color-brand-black);
}
/* Recherche native */
/* Solution 1 */
/* #search_widget {
    min-width: 200px;
}
.header-top-right {
    position: relative;
} */
/* Solution 2 search middle */
#header .header-top-right {
    position: relative;
}
#header .header-top>.container>.row:first-of-type {
    display: flex;
    justify-content: space-between;
}
#header .header-top>.container>.row:first-of-type::after {
    display: none;
}
#header .lien-logo-lcsa {
    margin: 0;
}
@media (min-width: 768px) {
    #header #search_widget {
        min-width: 420px;
    }
}
@media (max-width: 767px) {
    #header #search_widget {
        margin-bottom: 1.5rem;
    }
}
#header #search_widget form input {
    padding: 5px 20px 5px 40px !important;
}
/* Solution 3 - column */
/* #header .test-3 {
    display: flex;
    align-items: flex-start;
}
#header .header-top-right {
    flex-direction: column;
    gap: 20px;
}
#search_widget {
    min-width: 310px;
} */
.layout_layout1 .ets_mm_megamenu_content {
    border-bottom: unset !important;
    border-top: unset !important;
    @media (min-width: 768px) {
        background: unset !important;
    }
}
.layout_layout1 .mm_menus_li:nth-child(2) {
    border-left: unset !important;
}
.layout_layout1 .mm_menus_li {
    border-right: unset !important;
}
.mm_menus_ul {
    display: flex;
    justify-content: center;
    @media (max-width: 768px) {
        flex-direction: column;
        justify-content: flex-start;
    }
}
.mm_menus_li > a {
    color: var(--color-brand-black) !important;
    font-size: 13px !important;
    line-height: 16px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    font-weight: 700;
}
.hook-default.scroll_heading .mm_menus_ul {
    @media (min-width: 768px) {
        display: flex;
    }
}
.ets_mm_megamenu {
    margin: 20px 0 22px 0;
    @media (max-width: 767px) {
        margin: 0;
    }
}
.mm_menu_content_title {
    min-height: 36px !important;
}
.layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li > a::before, .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a::before, .layout_layout1.ybc_vertical_menu:hover .ybc-menu-vertical-button::before, .layout_layout1:hover .ybc-menu-vertical-button .ybc-menu-button-toggle_icon_default .icon-bar, .ybc-menu-vertical-button.layout_layout1:hover {
    @media (min-width: 768px) {
        background-color: unset !important;
    }
}
.layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li:hover > a, .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a, .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a, .ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover, #header .layout_layout1:not(.ybc_vertical_menu):not(.click_open_submenu) .mm_menus_li:hover > a, #header .layout_layout1:not(.ybc_vertical_menu).click_open_submenu .mm_menus_li.open_li > a, #header .layout_layout1:not(.ybc_vertical_menu) .mm_menus_li.menu_hover > a, .ets_mm_megamenu.layout_layout1.ybc_vertical_menu:hover {
    @media (min-width: 768px) {
        background: url('../img/hover-menu.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
}
.ets_mm_megamenu.hook-default {
    @media (max-width: 767px) {
        margin-top: 0;
    }
}
.changestatus {
    .mm_menus_li .arrow {
        margin-top: 5px !important;
    }
    &.ets_mm_megamenu .mm_columns_ul {
        @media (max-width: 767px) {
            position: unset !important;
        }
    }
    .mm_blocks_li .product-miniature .thumbnail-container {
        display: flex;
    }
    .mm_menus_ul>li {
        @media (max-width: 767px) {
            overflow: unset;
        }
    }
}
#blockcart-modal {
    .modal-title {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        line-height: 27px;
        font-weight: 800;
    }
    .modal-body {
        .product-image {
            border: 2px solid var(--color-brand-black);
            margin: unset;
            @media (max-width: 767px) {
                margin-left: 15px;
            }
        }
        .product-name {
            font-size: 15px;
            font-weight: 600;
            line-height: 19px;
            color: var(--color-brand-black);
        }
        .product-price {
            margin-bottom: 9px;
        }
        strong {
            font-weight: 600;
        }
        .divide-right {
            border-right: unset;
        }
        .cart-content {
            background: var(--color-brand-grey);
            padding: 17px 12px 21px 16px;
            @media (max-width: 767px) {
                margin-top: 20px;
            }
        }
        .cart-products-count {
            color: var(--color-brand-black) !important;
            font-size: 12px !important;
            font-weight: 500 !important;
            line-height: 22px !important;
            margin-bottom: 18px;
        }
        .cart-content {
            .label, .value {
                font-size: 12px;
                line-height: 22px;
                font-weight: 500;
            }
        }
        .product-total {
            .label {
                font-size: 15px;
                font-weight: 600 !important;
            }
            .value {
                font-size: 12px;
                line-height: 22px;
                font-weight: 500 !important;
            }
        }
    }
    .cart-content-btn {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 15px;
        padding-bottom: 39px;
        .btn {
            &.btn-primary {
                background: var(--color-brand-black);
                color: var(--color-brand-white);
                width: 414px;
                @media (max-width: 550px) {
                    width: 200px;
                }
            }
            &.btn-secondary {
                all: unset;
                cursor: pointer;
                text-transform: lowercase;
            }
        }
    }
}
.product {
    .product-miniature {
        border: 2px solid var(--color-brand-black);
        .product-description {
            padding: 18px 14px 32px 14px;
        }
        .product-title {
            text-align: left;
            margin-top: unset;
            line-height: 1rem;
            a {
                font-family: var(--font-inter);
                color: var(--color-brand-black);
                font-size: 15px;
                font-weight: 600;
                line-height: 22px;
            }
        }
        .regular-price {
            font-size: 10px;
            line-height: 10px;
            color: var(--color-brand-black2);
            font-weight: 500;
        }
        .product-price-and-shipping {
            text-align: left;
            display: flex;
            flex-direction: column;
            padding-top: 4px;
            .price sup {
                font-size: 8px;
                padding-left: 2px;
            }
        }
        .thumbnail-container {
            margin-bottom: unset;
        }
    }
}
#product .product-description {
    h1, h2, h3, h4 {
        margin: 24px 0 14px 0;
    }
}
.products article .wishlist-button-add,
#cms .product-miniature .wishlist-button-add,
.pm-csoc-owl-item .product-miniature .wishlist-button-add {
    position: absolute;
    left: 13px;
    top: 9px;
    background-color: transparent;
    box-shadow: unset;
    height: 27px;
    width: 27px;
    min-width: 27px;
    padding: unset;
    i {
        font-size: 27px;
    }
}
#product .js-product-container .page-content#content {
    position: relative;
    .wishlist-button-add {
        position: absolute;
        right: 10px;
        top: 5px;
    }
}