/*
 To change this license header, choose License Headers in Project Properties.
 To change this template file, choose Tools | Templates
 and open the template in the editor.
*/
/* 
 Created on : 19 oct. 2021, 17:55:36
 Author     : Charles
*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@400;600;700&display=swap');
/*font-family: "Anton", sans-serif;*/
/*///////////////////////////////////////*/
/* ///// GLOBAL STYLES //////////////// */
/*/////////////////////////////////////*/
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #020203;
}
body.no-scroll {
    overflow: hidden;
}
body #wrapper {
    padding-top: 0;
    background: transparent;
}
body a {
    transition: all 200ms ease-in-out;
}
body img {
    max-width: 100%;
    height: auto;
}
body h2, body h3, body h4, body h5, body h6 {
    font-weight: normal;
}
body main {
    font-family: 'Open Sans', sans-serif;
}
.container-large {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}
.container-medium {
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 0 auto;
}
.container-small {
    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 0 auto;
}
.flex-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.flex-end {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.dynamic-padding-left, .dynamic-padding-right {
    opacity: 0;
    transition: 200ms ease-in-out;
}
.page-home {
    overflow: hidden;
}
.page-content.page-cms ul, p {
    font-size: 16px;
    line-height: 30px;
    color: #020203;
}
.flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
}
.container-large {
    position: relative;
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}
.default-btn {
    font-size: 18px;
    font-family: "Anton", sans-serif;
    padding: 8px 30px 7px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    min-width: fit-content;
}
.default-btn.black {
    color: #fff;
    background: #020203;
}
.default-btn.green {
    color: #fff;
    background: #739500;
}
/*///////////////////////////////////////*/
/* ///////// HEADER /////////////////// */
/*/////////////////////////////////////*/
@keyframes fadeTranslateIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#header-mateco {
    position: relative;
    z-index: 1000;
}
#custom-menu-mobile {
    display: none;
}
#header-mateco #open-menu-mobile {
    display: none;
}
#close-menu-mobile {
    position: absolute;
    top: 0;
    right: 0;
}
#header-mateco .part-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 15px;
}
#header-mateco .part-top .container-right {
    display: flex;
    flex-direction: column;
}
#header-mateco .part-top .container-right .menus {
    display: flex;
    gap: 40px;
}
#header-mateco .part-top .container-right .menus .menu-secondaire {
    display: flex;
    gap: 40px;
}
#header-mateco .part-top .container-right .menus .menu-secondaire a {
    color: #020203;
    font-weight: 700;
}
#header-mateco .part-top .container-right .menus .menu-socials {
    display: flex;
    gap: 10px;
}
#header-mateco .part-top .container-right .menus .menu-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header-mateco .part-top .container-right .menus .menu-socials a.facebook {
    background: #1877F2;
}
#header-mateco .part-top .container-right .menus .menu-socials a.instagram {
    background: #E4405F;
}
#header-mateco .part-top .container-right .menus .menu-socials a.linkedin {
    background: #0A66C2;
}
#header-mateco .part-top .container-right .contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    margin-top: 12px;
    gap: 16px;
}
#header-mateco .part-top .container-right .contacts .horaires {
    font-size: 15px;
    line-height: 20px;
}
#header-mateco .part-top .container-right .contacts .horaires strong {
    font-size: 16px;
}
#header-mateco .part-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    position: relative;
}
#header-mateco .part-bottom .container-left {
    display: flex;
    gap: 20px;
    width: calc(100% - 240px);
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .lien-produits {
    position: relative;
    height: 42px;
    font-size: 20px;
    font-family: "Anton", sans-serif;
    padding: 8px 30px 7px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 15px;
    border: solid 1px #9CCB3F;
    color: #020203;
    text-transform: uppercase;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories {
    display: none;
    gap: 40px;
    position: absolute;
    left: 0;
    top: 62px;
    right: 0;
    background: #fff;
    border: solid 1px #9CCB3F;
    padding: 40px 40px 50px 10px;
    opacity: 0;
    animation: fadeTranslateIn 0.5s ease-in-out;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 375px;
    border-right: solid 5px #739500;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories .lien-categorie {
    position: relative;
    display: flex;
    align-items: center;
    color: #020203;
    height: 56px;
    font-size: 18px;
    border-radius: 30px 0 0 30px;
    padding: 5px 40px 5px 24px;
    transition: none;
    font-family: "Anton", sans-serif;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories .lien-categorie:before {
    content: '';
    position: absolute;
    right: 32px;
    left: 24px;
    top: 0;
    height: 1px;
    background: #739500;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories .lien-categorie:last-of-type:after {
    content: '';
    position: absolute;
    right: 32px;
    left: 24px;
    bottom: 0;
    height: 1px;
    background: #739500;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories .lien-categorie.active {
    padding: 5px 40px 5px 30px;
    color: #fff;
    background: #739500 url('../img/svg/arrow-hover-categorie-menu.svg') no-repeat right 10px center;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-categories .lien-categorie.active + .lien-categorie:before {
    opacity: 0;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories {
    width: 100%;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie {
    display: none;
    transition: all 250ms ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie.active {
    display: block;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .entete-categorie {
    height: 104px;
    padding: 10px 0 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .entete-categorie .titre {
    color: #fff;
    font-size: 34px;
    font-family: "Anton", sans-serif;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .entete-categorie .all-products {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 104px;
    width: 100%;
    max-width: 530px;
    background: linear-gradient(to left, #fff, #fff 50%, transparent);
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .entete-categorie .all-products a {
    color: #020203;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 25px;
    height: 34px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: solid 1px #739500;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .entete-categorie .all-products a:hover {
    color: #fff;
    background: #739500;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories {
    column-count: 3;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie {
    break-inside: avoid-column;
    margin-bottom: 30px;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie .lien-sous-categorie {
    margin-bottom: 10px;
    font-size: 18px;
    color: #020203;
    font-family: "Anton", sans-serif;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie .lien-sous-categorie:hover {
    text-decoration: underline;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie .sous-sous-categories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie .sous-sous-categories .lien-sous-sous-categorie {
    font-size: 16px;
    line-height: 24px;
    color: #020203;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits .container-menu-categories .menu-sous-categories .bloc-categorie .sous-categories .bloc-sous-categorie .sous-sous-categories .lien-sous-sous-categorie:hover {
    text-decoration: underline;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits:hover .lien-produits:after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -12px;
    z-index: 51;
    height: 12px;
    background: #fff;
    border-left: solid 1px #9CCB3F;
    border-right: solid 1px #9CCB3F;
}
#header-mateco .part-bottom .container-left .menu-principal .menu-produits:hover .container-menu-categories {
    display: flex;
    opacity: 1;
}
#header-mateco .part-bottom .container-left .lien-espace-pro {
    height: 42px;
    font-size: 20px;
    font-family: "Anton", sans-serif;
    padding: 8px 30px 7px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 15px;
    background: #739500;
    border: solid 1px #739500;
    color: #fff;
    text-transform: uppercase;
}
#header-mateco .part-bottom .container-left #search_widget {
    min-width: 0;
    width: 100%;
    max-width: 550px;
}
#header-mateco .part-bottom .container-left #search_widget form {
    display: flex;
    border: solid 1px #020203;
}
#header-mateco .part-bottom .container-left #search_widget form input[type="text"] {
    width: 100%;
    background: #fff;
    padding: 0 20px;
    border-radius: 0;
    height: 40px !important;
    border: none !important;
}
#header-mateco .part-bottom .container-left #search_widget form input[type="text"]::placeholder {
    font-style: italic;
}
#header-mateco .part-bottom .container-left #search_widget form input[type="submit"] {
    cursor: pointer;
    width: 100%;
    max-width: 70px;
    height: 40px;
    border-radius: 0;
    background: #020203 url('../img/svg/picto-search-white.svg') no-repeat center;
}
#header-mateco .part-bottom .container-right {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 30px;
}
#header-mateco .part-bottom .container-right a {
    position: relative;
    color: #020203;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 18px;
    font-family: "Anton", sans-serif;
}
#header-mateco .part-bottom .container-right a .cart-products-count {
    font-family: "Open Sans";
    color: #fff;
    background: #739500;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 4px;
    right: -17px;
    font-weight: 700;
}
/*///////////////////////////////////////*/
/* /////// CAROUSEL ACCUEIL /////////// */
/*/////////////////////////////////////*/
#carousel-accueil {
    position: relative;
}
#carousel-accueil .swiper-slide a {
    width: 100%;
}
#carousel-accueil .swiper-slide .image {
    width: 100%;
}
#carousel-accueil .swiper-slide .image img {
    width: 100%;
}
#carousel-accueil .swiper-slide .contenu {
    display: flex;
    flex-direction: column;
    max-width: 674px;
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.9);
}
#carousel-accueil .swiper-slide .contenu .titre {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
    color: #020203;
    font-family: "Anton", sans-serif;
}
#carousel-accueil .swiper-slide .contenu .description p {
    color: #313131;
    font-size: 16px;
    line-height: 22px;
}
.swiper-button-prev {
    width: 16px;
    height: 32px;
    left: 70px;
    background: url('../img/svg/arrow-swiper-black-prev.svg') no-repeat center / contain;
}
.swiper-button-next {
    width: 16px;
    height: 32px;
    right: 70px;
    background: url('../img/svg/arrow-swiper-black-next.svg') no-repeat center / contain;
}
/*///////////////////////////////////////*/
/* ///// ACCUEIL SLOGAN CARTE ///////// */
/*/////////////////////////////////////*/
#accueil-slogan-carte {
    position: relative;
    z-index: 10;
}
#accueil-slogan-carte:after {
    content: url('../img/svg/map-bretagne-mat-eco.svg');
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#accueil-slogan-carte .container-large .inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
#accueil-slogan-carte .container-large .inner h2 {
    font-weight: normal;
    font-size: 56px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
}
#accueil-slogan-carte .container-large .inner h2 .small {
    font-size: 50px;
    line-height: 50px;
}
#accueil-slogan-carte .container-large .inner h2 .vert {
    color: #739500;
}
#accueil-slogan-carte .container-large .inner .zones {
    color: #000000;
}
#accueil-slogan-carte .container-large .inner .zones .flag {
    margin-left: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
}
/*///////////////////////////////////////*/
/* // ADD TO CART MODAL /////////////// */
/*/////////////////////////////////////*/
#blockcart-modal {
    padding-right: 0 !important;
}
#blockcart-modal .modal-dialog {
    max-width: 1000px;
    width: calc(100% - 44px);
}
#blockcart-modal .modal-content {
    border: none;
    border-radius: 0;
}
/*BODY*/
#blockcart-modal .modal-body {
    background: #fff;
    padding: 47px 35px;
    display: flex;
    align-items: center;
}
/*LEFT PART*/
#blockcart-modal .modal-body .left-part {
    width: 100%;
    max-width: 415px;
    padding-right: 25px;
    margin-right: 50px;
    border-right: solid 1px #DEDDD7;
    display: flex;
    align-items: center;
}
#blockcart-modal .modal-body .left-part .image {
    width: auto;
    height: 110px;
    object-fit: cover;
    margin-right: 15px;
}
#blockcart-modal .modal-body .left-part .image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}
#blockcart-modal .modal-body .left-part .product-name {
    font-size: 24px;
    line-height: 26px;
    color: #020203;
    font-weight: normal;
    text-transform: uppercase;
    font-family: "Anton";
}
#blockcart-modal .modal-body .left-part .product-price-qty {
    font-size: 15px;
    line-height: 23px;
    color: #17191A;
}
/*RIGHT PART*/
#blockcart-modal .modal-body .right-part .cart-products-count {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    color: #17191A;
    margin-bottom: 0;
}
#blockcart-modal .modal-body .right-part .product-total {
    font-size: 15px;
    line-height: 23px;
    color: #17191A;
    margin-bottom: 20px;
}
/*BTNS*/
#blockcart-modal .modal-body .right-part .cart-content-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#blockcart-modal .modal-body .right-part .continue-shopping {
    font-size: 16px;
    line-height: 22px;
    color: #A88021;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    margin-right: 30px;
    margin-bottom: 10px;
    cursor: pointer;
}
#blockcart-modal .modal-body .right-part .continue-shopping:focus {
    outline: none;
}
#blockcart-modal .modal-body .right-part .continue-shopping:hover {
    text-decoration: underline;
}
#blockcart-modal .modal-body .right-part .go-to-basket {
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    padding: 0 40px;
    height: 35px;
    line-height: 37px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    background: #A88021;
    color: #fff;
    font-family: "Josefin Sans";
    margin-bottom: 10px;
    border: solid 1px #A88021;
    transition: all 200ms ease-in-out;
}
#blockcart-modal .modal-body .right-part .go-to-basket:hover {
    background: #A88021;
}
/*PRODUCT IMAGE MODAL*/
#product-modal .modal-content {
    background: #fff;
    display: flex;
}
#product-modal .modal-content .modal-body {
    display: flex;
    background: #fff;
}
/*///////////////////////////////////////*/
/* ///// CONFIRMATION COMMANDE //////// */
/*/////////////////////////////////////*/
#order-confirmation #content-wrapper {
    padding: 25px;
    max-width: 1200px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    margin: 100px auto;
}
#order-confirmation #content-wrapper .image img {
    width: auto;
    max-height: 100px;
}
#order-confirmation #content-wrapper p a {
    color: #739500;
    text-decoration: underline;
}
#order-detail #content-wrapper #content {
    padding: 25px;
    max-width: 1200px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    margin: 120px auto 50px;
}
#order-detail #content-wrapper #content li a, #order-detail #content-wrapper #content td a {
    color: #739500;
    text-decoration: underline;
}
#order-detail #content-wrapper #content .btn-primary {
    background: #739500;
}
#order-detail #content-wrapper #content .btn-primary:hover {
    color: #fff;
}
#history #content-wrapper a {
    text-decoration: underline;
}
/*///////////////////////////////////////*/
/* ///// COMMANDE ///////////////////// */
/*/////////////////////////////////////*/
#checkout .page-header h1 {
    max-width: 1364px;
}
body#checkout main section#content {
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 30px auto;
}
#cart #main .cart-grid .cart-grid-right .montant-pour-livraison {
    color: #fff;
    background: #739500;
    padding: 13px 15px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
#checkout #wrapper .checkout-header {
    margin-bottom: 15px;
}
#checkout #wrapper .checkout-header h1 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    text-transform: none;
    color: #384842;
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
}
#checkout main #content {
    display: flex;
    align-items: flex-start;
}
/*LEFT*/
#checkout main #content .cart-grid-body {
    width: calc(100% - 413px);
}
/*RIGHT*/
#checkout main #content .cart-grid-right {
    width: 100%;
    max-width: 373px;
    margin-left: 40px;
}
#checkout main #content .cart-grid-right #js-checkout-summary {
    box-shadow: none;
    margin-bottom: 30px;
    padding: 30px 0;
    border: none;
    background: transparent;
}
#checkout main #content .cart-grid-right .cart-summary-products p {
    color: #17191A;
    margin-bottom: 0;
}
#checkout main #content .cart-grid-right .cart-summary-products p a {
    text-decoration: underline;
    color: #739500;
}
body#checkout #cart-summary-product-list img {
    background: #fff;
}
body#checkout #cart-summary-product-list .value {
    color: #232323;
}
body#checkout #cart-summary-product-list .media {
    margin-bottom: 10px;
}
#checkout main #content .cart-grid-right .product-price {
    color: #17191A;
    display: inline-block;
}
#checkout main #content .cart-grid-right #cart-subtotal-products {
    margin-top: 10px;
}
#checkout main #content .cart-grid-right .card-block {
    padding: 0;
}
#checkout main #content .cart-grid-right .pictos-security {
    width: 100%;
    text-align: center;
}
/*ETAPES COMMANDE*/
body#checkout main section.checkout-step {
    box-shadow: none;
    background-color: transparent;
    border-bottom: solid 1px #CBC9BE;
    padding: 20px 50px;
}
body#checkout main section.checkout-step.-current {
    border: solid 1px #CBC9BE;
}
body#checkout main section.checkout-step .step-title {
    font-size: 24px;
    color: #000000;
    font-weight: normal;
    padding: 0 30px;
    text-transform: none;
    font-family: "Anton";
}
body#checkout main section.checkout-step.-current .step-title {
    margin-bottom: 25px;
    font-size: 24px;
    color: #000000;
    font-weight: normal;
    font-family: "Anton";
}
body#checkout main section.checkout-step.-reachable.-current .step-number {
    padding-right: 0px;
    width: auto;
    height: auto;
    margin-right: 0;
    font-size: 24px;
    color: #000000;
    font-weight: normal;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-family: "Anton";
}
body#checkout main section.checkout-step .step-title {
    border-bottom: none;
}
body#checkout main section.checkout-step.-current + .checkout-step .step-title {
    padding-top: 0;
    border-top: none;
}
body#checkout main section.checkout-step .content {
    padding: 0 30px;
}
body#checkout main section.checkout-step p {
    font-size: 15px;
    line-height: 24px;
    color: #393939;
    font-style: italic;
}
body#checkout main section.checkout-step .form-group input[type="text"], body#checkout main section.checkout-step .form-group input[type="email"], body#checkout main section.checkout-step .form-group input[type="password"], body#checkout main section.checkout-step .form-group input[type="tel"], body#checkout main section.checkout-step .form-group select {
    height: 40px;
    line-height: 40px;
    background: transparent;
    padding: 0 15px;
    border: solid 1px #B1B3BB;
}
.form-control:focus, .input-group.focus {
    outline: none;
}
body#checkout main section.checkout-step .form-group input[type="text"]:focus, body#checkout main section.checkout-step .form-group input[type="email"]:focus, body#checkout main section.checkout-step .form-group input[type="password"]:focus, body#checkout main section.checkout-step .form-group input[type="tel"]:focus, body#checkout main section.checkout-step .form-group select:focus {
    border: solid 1px #739500;
}
body#checkout main section.checkout-step p a, body#checkout main section.checkout-step .forgot-password a {
    font-size: 15px;
    line-height: 24px;
    color: #739500;
    text-decoration: underline;
}
body#checkout main section.checkout-step .form-control-comment {
    display: none;
}
body#checkout main section.checkout-step .input-group .input-group-btn {
    display: none;
}
body#checkout main section.checkout-step .form-footer {
    margin-top: 20px;
}
.forgotten-password .form-fields .center-email-fields {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.forgotten-password .form-fields .center-email-fields button, .forgotten-password .form-fields .email input {
    height: auto;
}
/*Informations personnelles*/
#checkout-personal-information-step .nav-inline {
    display: flex;
    justify-content: space-between;
}
#checkout-personal-information-step .nav-inline .nav-item {
    width: 47%;
    margin: 0;
    text-align: center;
}
#checkout-personal-information-step .nav-inline .nav-item a {
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    color: #739500;
    padding-bottom: 10px;
    border-bottom: solid 1px #CBC9BE;
    position: relative;
}
body#checkout main section.checkout-step .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
body#checkout main section.checkout-step .forgot-password {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
}
body#checkout main section.checkout-step .form-group label.form-control-label {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    color: #2D2F36;
}
body#checkout main section.checkout-step .form-group .col-md-6 {
    width: 100%;
}
body#checkout #header .header-nav {
    padding: 0;
    box-shadow: none;
}
#checkout-personal-information-step .nav-inline .nav-item a.active {
    color: #384842;
    border-bottom: solid 1px #739500;
}
#checkout-personal-information-step .nav-inline .nav-item a.active:after {
    content: '';
    position: absolute;
    bottom: -11px;
    width: 16px;
    height: 11px;
    left: calc(50% - 8px);
    background: url(../img/svg/arrow-active-link.svg) no-repeat center bottom;
}
body#checkout a:hover {
    color: #739500;
}
/*Adresses*/
body#checkout main section.checkout-step .address-item.selected {
    border: 1px solid #739500;
}
body#checkout main section.checkout-step .address-item.selected .address {
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
}
.custom-radio input[type=radio]:checked + span {
    background-color: #739500;
}
/*Livraison*/
body#checkout #delivery textarea, body#checkout #gift_message textarea {
    max-width: 100%;
    margin-bottom: 10px;
    width: 100%;
}
body#checkout main section.checkout-step .delivery-options .delivery-option {
    background: transparent;
    min-height: 80px;
    border: none;
}
body#checkout main section.checkout-step .carrier-delay, body#checkout main section.checkout-step .carrier-name {
    word-break: normal;
}
body#checkout #delivery label {
    font-style: italic;
}
/*Paiement*/
#checkout-payment-step .condition-label label a {
    color: #739500;
    text-decoration: underline;
}
/*///////////////////////////////////////*/
/* ///// PANIER /////////////////////// */
/*/////////////////////////////////////*/
#cart .page-header h1 {
    max-width: 1364px;
}
#cart .alert-encours h4 {
    font-weight: 700;
}
#cart .alert-encours p {
    color: #000;
    margin-bottom: 0;
}
#cart .cart-grid-body .card-block, #cart .cart-grid-body .cart-overview {
    padding: 0;
}
#cart .cart-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 150px auto 150px;
}
#cart .cart-grid .cart-grid-body {
    width: 100%;
}
#cart .cart-grid .cart-grid-right {
    width: 100%;
    max-width: 398px;
    margin-left: 100px;
}
#cart .cart-grid-body .cart-overview .cart-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    padding-top: 0;
    border-bottom: solid 1px #E4E4E4;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid {
    display: flex;
    align-items: center;
}
/*image*/
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-left {
    width: 100%;
    max-width: 122px;
    margin-right: 15px;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-left .product-image {
    height: 110px;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-left .product-image img {
    height: 110px;
    width: 100%;
    object-fit: cover;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .bottom-mobile {
    width: 100%;
    display: flex;
    align-items: center;
}
/*Nom et Prix*/
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-body {
    width: 100%;
    margin-right: 15px;
    margin-bottom: 0;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-body .label {
    font-size: 24px;
    line-height: 24px;
    color: #313131;
    font-weight: normal;
    font-family: 'Anton', serif;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-body .label:hover {
    text-decoration: underline;
}
#cart .cart-grid-body .cart-overview .cqty {
    display: flex;
    flex-direction: column;
}
#cart .cart-grid-body .cart-overview .cqty .control-label {
    font-size: 16px;
    font-weight: 700;
    color: #2D2F36;
    margin-bottom: 5px;
}
#cart .cart-grid-body .cart-overview .price {
    margin-bottom: 3px;
}
#cart .cart-grid-body .cart-overview .trash-product {
    margin-bottom: 13px;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-body .current-price, #cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-body .regular-price {
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #17191A;
}
#cart .cart-grid-body .cart-overview .cart-item .variation .value {
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #17191A;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-info.product-price {
    margin-bottom: 0;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-info.product-price .discount {
    display: none;
}
/*Actions*/
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-right {
    width: 100%;
    max-width: 310px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .product-line-grid-right .product-price {
    font-size: 18px;
    font-weight: 400;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .remove-from-cart {
    display: flex;
    margin-top: -2px;
}
#cart .cart-grid-body .cart-overview .cart-item .product-line-grid .remove-from-cart img {
    margin: 0;
}
/*RIGHT*/
#cart #main .cart-grid .cart-grid-right .cart-summary {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(228, 228, 228, 0.2);
}
#cart #main .cart-grid .cart-grid-right .cart-summary .card-block {
    padding: 0;
}
#cart #main .cart-grid .cart-grid-right .cart-summary .card-block .default-btn {
    width: 100%;
    max-width: none;
}
#cart #main .cart-grid .cart-grid-right .collapse-button {
    color: #739500;
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
}
#cart #main .cart-grid .cart-grid-right .promo-code form input {
    width: 100%;
    margin-bottom: 10px;
    color: #232323;
    background-color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-right: 0;
    padding: 8px 30px 10px;
    border: solid 1px #739500;
}
#cart #main .cart-grid .cart-grid-right .promo-code form input:focus {
    outline: none;
}
.cart-detailed-totals {
    margin-bottom: 20px;
}
#cart #main .cart-grid .cart-grid-right .promo-code form .promo-btn {
    transition: all 200ms ease-in-out;
    cursor: pointer;
    border: solid 1px #739500;
    background: #739500;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 7px 10px;
}
#cart #main .cart-grid .cart-grid-right .promo-code form .promo-btn:hover {
    background: #fff;
    color: #739500;
}
#cart #main .cart-grid .cart-grid-right .promo-code form .promo-btn:focus {
    outline: none;
}
#cart #main .cart-grid .cart-grid-right .promo-code {
    padding: 1rem;
    border: solid 1px #739500;
    margin-top: 15px;
    text-align: center;
}
#cart-subtotal-products, #cart-subtotal-shipping {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #E4E4E4;
}
#cart-subtotal-products .label, #cart-subtotal-products .value, #cart-subtotal-shipping .label, #cart-subtotal-shipping .value {
    font-size: 14px;
    color: #17191A;
    font-weight: 700;
}
#cart-subtotal-products .label {
    font-weight: 400;
}
#cart .cart-summary-line.cart-total-ttc {
    margin-top: 15px;
    margin-bottom: 5px;
}
.cart-summary-line.cart-total-ttc .label {
    font-size: 19px;
    color: #17191A;
    font-weight: 700;
    font-style: italic;
}
.cart-summary-line.cart-total-ttc .value {
    font-size: 24px;
    color: #739500;
    font-weight: 700;
}
.card-block.cart-summary-totals .cart-summary-line {
    padding: 0;
}
.cart-summary-line.taxes .label, .cart-summary-line.taxes .value {
    font-size: 15px;
    font-style: italic;
    color: #17191A;
    font-weight: 400;
}
.cart-summary-line.taxes .label {
    font-size: 12px;
}
#cart #main .cart-grid .cart-grid-right .pictos-security {
    width: 100%;
    text-align: center;
}
#cart, .cart-grid-body .cart-overview {
    padding: 0;
}
.btn-primary, #cart .btn-primary, #checkout .btn-primary {
    transition: all 200ms ease-in-out;
    cursor: pointer;
    border: solid 1px #739500;
    background: #739500;
    color: #fff;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 10px;
}
.btn-primary:hover, #cart .btn-primary:hover, #checkout .btn-primary:hover {
    background: #fff;
    color: #739500;
    border: solid 1px #739500;
}
.btn-primary:focus, #cart .btn-primary:focus, #checkout .btn-primary:focus {
    outline: none;
}
.btn-primary.disabled, #cart .btn-primary.disabled, #checkout .btn-primary.disabled {
    border: solid 1px grey;
    background: grey;
    cursor: not-allowed;
}
.btn-primary.disabled:hover, #cart .btn-primary.disabled:hover, #checkout .btn-primary.disabled:hover {
    color: #fff;
}
/*///////////////////////////////////////*/
/* //// PAGES MON COMPTE ////////////// */
/*/////////////////////////////////////*/
#customer-form .titre-pro {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}
#customer-form label.required {
    position: relative;
}
#customer-form label:not([for="field-psgdpr"]).required:after {
    content: "*";
    color: red;
}
#customer-form .form-group-pro, #customer-form .form-group-pro .form-control-comment {
    display: none;
}
#customer-form.is-pro .form-group-pro {
    display: block;
}
body.page-customer-account #content {
    padding: 0;
    background: transparent;
}
.logout-btn a {
    color: #17191A;
    text-decoration: underline;
}
.wishlist-container, .wishlist-products-container, #search .content-wrapper {
    padding: 0;
    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 40px auto;
    padding-bottom: 100px;
}
#search .content-wrapper .products {
    gap: 25px;
}
.wishlist-product-bottom {
    margin-top: 10px;
}
.wishlist-product-bottom .wishlist-product-addtocart {
    background-color: #739500;
}
.page-addresses .block-encours, body.page-my-account .block-encours, body.page-authentication .block-encours, body.page-registration .block-encours, body.page-customer-account .block-encours {
    background-color: #edf3de;
    border-color: #b9c98f;
    color: #000;
}
.page-addresses .block-encours .alert-heading, body.page-my-account .block-encours .alert-heading, body.page-authentication .block-encours .alert-heading, body.page-registration .block-encours .alert-heading, body.page-customer-account .block-encours .alert-heading {
    font-weight: 700;
}
.page-addresses .block-encours p, body.page-my-account .block-encours p, body.page-authentication .block-encours p, body.page-registration .block-encours p, body.page-customer-account .block-encours p {
    color: #000;
    margin-bottom: 0;
}
.page-addresses #content, body.page-my-account #content, body.page-authentication #content, body.page-registration #content, body.page-customer-account #content {
    padding: 0;
    width: calc(100% - 60px);
    max-width: 1000px;
    margin: 40px auto;
    padding-bottom: 100px;
}
.page-addresses #content .register-form > p, body.page-my-account #content .register-form > p, body.page-authentication #content .register-form > p, body.page-registration #content .register-form > p, body.page-customer-account #content .register-form > p {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    color: #739500;
}
.page-addresses #content .register-form > p a, body.page-my-account #content .register-form > p a, body.page-authentication #content .register-form > p a, body.page-registration #content .register-form > p a, body.page-customer-account #content .register-form > p a {
    color: #739500;
    text-decoration: underline;
}
.page-addresses #content form, body.page-my-account #content form, body.page-authentication #content form, body.page-registration #content form, body.page-customer-account #content form {
    width: 100%;
    max-width: none;
}
.page-addresses #content form .send-renew-password-link, body.page-my-account #content form .send-renew-password-link, body.page-authentication #content form .send-renew-password-link, body.page-registration #content form .send-renew-password-link, body.page-customer-account #content form .send-renew-password-link {
    padding-right: 0;
    padding-left: 0;
}
.page-addresses #content form.forgotten-password .form-fields .center-email-fields, body.page-my-account #content form.forgotten-password .form-fields .center-email-fields, body.page-authentication #content form.forgotten-password .form-fields .center-email-fields, body.page-registration #content form.forgotten-password .form-fields .center-email-fields, body.page-customer-account #content form.forgotten-password .form-fields .center-email-fields {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.page-addresses #content form.forgotten-password .form-fields .center-email-fields label.required, body.page-my-account #content form.forgotten-password .form-fields .center-email-fields label.required, body.page-authentication #content form.forgotten-password .form-fields .center-email-fields label.required, body.page-registration #content form.forgotten-password .form-fields .center-email-fields label.required, body.page-customer-account #content form.forgotten-password .form-fields .center-email-fields label.required {
    width: 100%;
    text-align: left;
    padding: 0;
}
.page-addresses #content .form-footer, body.page-my-account #content .form-footer, body.page-authentication #content .form-footer, body.page-registration #content .form-footer, body.page-customer-account #content .form-footer {
    display: flex;
    justify-content: center;
}
.page-addresses #content .form-footer .btn-primary, body.page-my-account #content .form-footer .btn-primary, body.page-authentication #content .form-footer .btn-primary, body.page-registration #content .form-footer .btn-primary, body.page-customer-account #content .form-footer .btn-primary {
    width: auto;
}
.page-addresses #content .btn-primary, body.page-my-account #content .btn-primary, body.page-authentication #content .btn-primary, body.page-registration #content .btn-primary, body.page-customer-account #content .btn-primary {
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    padding: 0 30px;
    background: #739500;
    margin-bottom: 5px;
}
.page-addresses #content .forgot-password a, body.page-my-account #content .forgot-password a, body.page-authentication #content .forgot-password a, body.page-registration #content .forgot-password a, body.page-customer-account #content .forgot-password a, .page-addresses #content .no-account a, body.page-my-account #content .no-account a, body.page-authentication #content .no-account a, body.page-registration #content .no-account a, body.page-customer-account #content .no-account a {
    display: inline-block;
    font-size: 16px;
    margin: 15px 0;
    text-decoration: underline;
    color: #739500;
}
body.page-my-account #content .links {
    max-width: 380px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
body.page-my-account #content .links a {
    padding: 0;
    width: 100%;
    margin: 0;
}
body.page-my-account #content .links a span.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #739500;
    color: #fff;
    height: 40px;
    padding: 0 30px;
    width: 100%;
    transition: all 200ms ease-in-out;
}
body.page-my-account #content .links a span.link-item:hover {
    background: #242424;
}
body.page-my-account #content .links a span.link-item i {
    padding: 0;
    font-size: 22px;
    color: #fff;
    width: 20px;
}
body.page-my-account .logout-link {
    text-align: center;
    padding-bottom: 50px;
}
body.page-my-account .logout-link a {
    color: #242424;
    text-decoration: underline;
    font-weight: 700;
}
/*///////////////////////////////////////*/
/* //// ACCUEIL PRODUITS HOUBLONS ///// */
/*/////////////////////////////////////*/
#slider-products-arranges-filtres {
    position: relative;
    background: #ECC0AE;
    padding: 180px 0;
}
#slider-products-arranges-filtres:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -98px;
    right: 0;
    height: 100px;
    background: url('../img/interface/home-after-arranges.png') no-repeat top center / 100% 100%;
}
#slider-products-arranges-filtres .container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
}
#slider-products-arranges-filtres .container-flex .contenu {
    width: 100%;
    max-width: 828px;
}
#slider-products-arranges-filtres .container-flex .contenu h2 {
    position: relative;
    display: inline-block;
    font-size: 56px;
    font-weight: normal;
    color: #B74212;
    font-family: 'Anton';
}
#slider-products-arranges-filtres .container-flex .contenu h2:after {
    content: '';
    position: absolute;
    right: -26px;
    top: -12px;
    width: 25px;
    height: 32px;
    background: url('../img/svg/before-title-arranges.svg') no-repeat center / contain;
}
#slider-products-arranges-filtres .container-flex .contenu .default-btn {
    margin-top: 20px;
}
#slider-products-arranges-filtres .container-flex .points-forts {
    min-width: 727px;
    display: flex;
    justify-content: space-between;
}
#slider-products-arranges-filtres .container-flex .points-forts .point-fort {
    width: 100%;
    padding: 0 15px;
}
#slider-products-arranges-filtres .container-flex .points-forts .point-fort:nth-child(1), #slider-products-arranges-filtres .container-flex .points-forts .point-fort:nth-child(2) {
    border-right: solid 1px #B74212;
}
#slider-products-arranges-filtres .container-flex .points-forts .point-fort .picto {
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#slider-products-arranges-filtres .container-flex .points-forts .point-fort .picto img {
    max-height: 59px;
    width: auto;
}
#slider-products-arranges-filtres .container-flex .points-forts .point-fort .texte {
    margin-top: 10px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
}
#slider-products-arranges-filtres .products {
    position: relative;
}
#slider-products-arranges-filtres .products .swiper-slide {
    max-width: 370px;
}
#slider-products-arranges-filtres .products .swiper-button-prev {
    left: 90px;
    width: 16px;
    height: 32px;
    background: url('../img/svg/arrow-swiper-white-prev.svg') no-repeat center / contain;
}
#slider-products-arranges-filtres .products .swiper-button-next {
    right: 90px;
    width: 16px;
    height: 32px;
    background: url('../img/svg/arrow-swiper-white-next.svg') no-repeat center / contain;
}
.swiper-slide {
    display: flex;
    justify-content: center;
}
.dynamic-padding-left, .dynamic-padding-right {
    opacity: 0;
    transition: 200ms ease-in-out;
}
/*///////////////////////////////////////*/
/* ////////// REASSURANCE ///////////// */
/*/////////////////////////////////////*/
.reassurances {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 200px 0 120px;
}
.reassurances .reassurance {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reassurances .reassurance .picto {
    height: 75px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.reassurances .reassurance .picto img {
    max-height: 75px;
}
.reassurances .reassurance .titre {
    font-size: 22px;
    line-height: 22px;
    font-family: 'Anton';
    color: #313131;
    margin-bottom: 3px;
}
.reassurances .reassurance .sous-titre {
    color: #313131;
    line-height: 22px;
}
.reassurances .reassurance .sous-titre a {
    color: #739500;
    text-decoration: underline;
}
/*///////////////////////////////////////*/
/* ////////// PAGE CMS //////////////// */
/*/////////////////////////////////////*/
#cms .elementor-section-wrap, #module-prestablog-actualites .elementor-section-wrap {
    margin-top: 50px;
}
#cms .elementor-section-wrap .btn-default, #module-prestablog-actualites .elementor-section-wrap .btn-default {
    min-width: 280px;
    font-size: 18px;
    font-family: "Anton", sans-serif;
    padding: 8px 30px 7px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #739500;
    text-decoration: none;
    text-transform: uppercase;
    border: solid 1px #739500;
    background: #fff;
}
#cms .elementor-section-wrap .btn-default:hover, #module-prestablog-actualites .elementor-section-wrap .btn-default:hover {
    color: #fff;
    background: #739500;
    border: solid 1px #fff;
}
#cms .elementor-section-wrap .swiper-slide, #module-prestablog-actualites .elementor-section-wrap .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: -webkit-fill-available;
}
#cms .elementor-section-wrap .swiper-slide img, #module-prestablog-actualites .elementor-section-wrap .swiper-slide img {
    width: auto;
}
#cms .elementor-section.elementor-section-boxed > .elementor-container, #module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container {
    width: calc(100% - 60px);
    max-width: 1450px;
    margin: 0 auto;
}
#cms .elementor-section.elementor-section-boxed > .elementor-container h2, #module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container h2 {
    font-size: 36px;
    line-height: 45px;
    color: #313131;
    font-weight: normal;
    font-family: 'Anton';
    text-align: left;
    padding: 0;
    border: none;
    margin: 0 0 20px 0;
}
#cms .elementor-section.elementor-section-boxed > .elementor-container h3, #module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container h3 {
    text-align: left;
    padding: 0;
    border: none;
    margin: 20px 0 15px 0;
}
#cms .elementor-section.elementor-section-boxed > .elementor-container .elementor-widget-heading h2, #module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container .elementor-widget-heading h2 {
    text-align: center;
    margin: 50px 0 20px;
    text-align: left;
}
#cms .elementor-section.elementor-section-boxed > .elementor-container p, #module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container p {
    font-size: 16px;
    line-height: 30px;
}
#module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container {
    width: calc(100% - 60px);
    max-width: 1265px;
    margin: 0 auto;
}
#module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container h2 {
    font-size: 22px;
    line-height: 26px;
    color: #739500;
}
#module-prestablog-actualites .elementor-section.elementor-section-boxed > .elementor-container h3 {
    font-size: 18px;
    line-height: 26px;
    color: #020203;
    font-family: 'Anton';
}
#prestablogfront, .prestablogExtra {
    border-bottom: none !important;
    padding-bottom: 70px !important;
}
#cms #content {
    padding-bottom: 120px;
}
/*///////////////////////////////////////*/
/* ///// SLICK BANNER ///////////////// */
/*/////////////////////////////////////*/
.reassur_banner {
    width: 100%;
    height: 40px;
    overflow: hidden;
    background: #2298b0;
}
.reassur_banner .slide {
    color: #fff;
    padding: 0;
    text-align: center;
}
.reassur_banner .slide p {
    color: #fff;
    height: 40px;
    line-height: 36px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/
#header .header-nav .blockcart {
    height: auto;
    padding: 8px 15px;
    margin-left: 0;
    background: #f6f6f6;
}
#header .header-nav .blockcart .header {
    margin-top: 0;
}
/*///////////////////////////////////////*/
/* ///// BREADCRUMB /////////////////// */
/*/////////////////////////////////////*/
body #wrapper .breadcrumb {
    margin-bottom: 0;
}
body #wrapper .breadcrumb li::after {
    content: url('../img/svg/arrow-breadcrumb.svg');
}
body #wrapper .breadcrumb li a, body #wrapper .breadcrumb li span {
    font-size: 12px;
    line-height: 19px;
    color: #000000;
}
body #wrapper .breadcrumb li a:hover {
    text-decoration: underline;
}
/*///////////////////////////////////////*/
/* /////////// HOME BANNER //////////// */
/*/////////////////////////////////////*/
#home-banner {
    width: 100%;
    position: relative;
}
#home-banner .temp-logo {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}
#home-banner .visuel {
    width: 55%;
    max-width: 1050px;
}
#home-banner .visuel img {
    width: 100%;
}
#home-banner .contenu {
    position: absolute;
    left: 45%;
    top: 40%;
    width: 50%;
    max-width: 775px;
}
#home-banner .contenu h1 {
    font-weight: normal;
    font-size: 42px;
    margin: 25px 0 12px;
    color: #739500;
    font-family: 'Anton';
}
#home-banner .contenu p {
    max-width: 475px;
}
#home-banner .contenu .default-btn {
    margin-top: 30px;
}
/*///////////////////////////////////////*/
/* ///// REASSURANCE ////////////////// */
/*/////////////////////////////////////*/
#block-reassurance {
    width: calc(100% - 40px);
    max-width: 1364px;
    margin: 100px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
}
#block-reassurance .block-reassurance-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#block-reassurance .block-reassurance-item .picto {
    width: 100%;
    height: 70px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#block-reassurance .block-reassurance-item .picto img {
    width: auto;
    max-width: 100%;
    margin-right: 0;
}
#block-reassurance .block-reassurance-item .titre {
    font-weight: 700;
}
/*///////////////////////////////////////*/
/* ///// FEATURED PRODUCTS //////////// */
/*/////////////////////////////////////*/
.featured-products {
    position: relative;
    z-index: 11;
    padding: 80px 0;
}
.featured-products .swiper-button-prev {
    left: -25px;
}
.featured-products .swiper-button-next {
    right: -25px;
}
.featured-products .entete-nouveautes {
    margin-bottom: 20px;
}
.featured-products .entete-nouveautes h2 {
    font-size: 28px;
    line-height: 42px;
    font-family: 'Anton';
    font-weight: normal;
    margin-bottom: 0;
    text-transform: uppercase;
}
.featured-products .products {
    display: block;
}
.featured-products .products .swiper-slide {
    display: flex;
    justify-content: center;
    padding: 6px 0;
    height: auto;
}
.featured-products .products .swiper-slide .product {
    width: calc(100% - 12px);
}
/*///////////////////////////////////////*/
/* ///// ACCUEIL CATEGORIES /////////// */
/*/////////////////////////////////////*/
.accueil-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.accueil-categories .categorie {
    position: relative;
    display: flex;
    overflow: hidden;
    width: calc(33.333333% - 16px);
}
.accueil-categories .categorie img {
    transition: all 250ms ease-in-out;
}
.accueil-categories .categorie .inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 28px;
    line-height: 30px;
    color: #020203;
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    height: 60%;
    padding: 30px;
    text-align: center;
    font-family: 'Anton';
    transition: all 250ms ease-in-out;
    background: linear-gradient(to bottom, transparent, #fff);
}
.accueil-categories .categorie:hover img {
    transform: scale(1.1);
}
.accueil-categories .categorie:hover .inner {
    padding-bottom: 45px;
}
.accueil-a-propos-materiaux {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 50px 0 90px;
    gap: 50px;
}
.accueil-a-propos-materiaux h2 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Anton';
    margin-bottom: 10px;
}
.accueil-a-propos-materiaux .texte {
    line-height: 20px;
}
.accueil-materieux-ecolos {
    min-height: 730px;
    background: url('../img/interface/accueil-visuel-maison.jpg') no-repeat top right / 72%;
}
.accueil-materieux-ecolos .contenu {
    width: 604px;
    max-width: 35%;
}
.accueil-materieux-ecolos .contenu h2 {
    font-size: 36px;
    line-height: 54px;
    font-family: 'Anton';
    margin-bottom: 25px;
}
.accueil-materieux-ecolos .contenu .texte {
    line-height: 30px;
}
.accueil-materieux-ecolos .contenu .btns {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}
.accueil-presentation {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}
.accueil-presentation .visuel {
    width: 100%;
    max-width: 613px;
}
.accueil-presentation .contenu {
    width: calc(100% - 673px);
    padding-top: 20px;
}
.accueil-presentation .contenu h2 {
    font-size: 36px;
    line-height: 54px;
    font-family: 'Anton';
    margin-bottom: 25px;
}
.accueil-presentation .contenu p {
    line-height: 30px;
}
.accueil-presentation .contenu h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 50px 0 30px;
    font-family: 'Anton';
}
.accueil-presentation .contenu .slider-marques {
    padding: 0 50px;
    position: relative;
}
.accueil-presentation .contenu .slider-marques .swiper-slide {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accueil-presentation .contenu .slider-marques .swiper-button-prev {
    left: 0;
}
.accueil-presentation .contenu .slider-marques .swiper-button-next {
    right: 0;
}
/*///////////////////////////////////////*/
/* ///// BLOC REASSURANCE ///////////// */
/*/////////////////////////////////////*/
.bloc-reassurance {
    background: #F3F3F3;
    padding: 65px 0;
}
.bloc-reassurance .liste-items {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.bloc-reassurance .liste-items .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.bloc-reassurance .liste-items .item .picto {
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.bloc-reassurance .liste-items .item .titre {
    font-size: 20px;
    line-height: 24px;
    margin: 6px 0 0;
    font-family: 'Anton';
}
.bloc-reassurance .liste-items .item .texte a {
    color: #739500;
    text-decoration: underline;
}
/*///////////////////////////////////////*/
/* ///// LISTE ARTICLES BLOG ////////// */
/*/////////////////////////////////////*/
#liste-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
}
#liste-articles .article {
    width: calc(33.3333% - 20px);
    text-align: center;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1100px) {
    #liste-articles .article {
        width: calc(50% - 15px);
    }
}
@media screen and (max-width: 768px) {
    #liste-articles {
        gap: 20px;
    }
    #liste-articles .article {
        width: 100%;
    }
}
#liste-articles .article .block_top {
    display: flex;
    position: relative;
    width: 100%;
}
#liste-articles .article .block_top .date-article {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    font-size: 13px;
    background: #fff;
    height: 20px;
    line-height: 22px;
    padding: 0 9px;
    color: #4B4B4B;
    margin-top: -10px;
    font-family: 'Libre Baskerville', serif;
}
#liste-articles .article .block_top .image-link {
    width: 100%;
    height: 210px;
    padding: 10px;
}
#liste-articles .article .block_top .image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: all 400ms ease-in-out;
}
/*#liste-articles .article:hover .block_top .image-link img {
 transform: scale(1.1);
 }*/
#liste-articles .article .block_bottom {
    padding: 20px 30px 55px;
}
#liste-articles .article .block_bottom h3 {
    margin-bottom: 15px;
    text-transform: none;
    font-weight: normal;
}
#liste-articles .article .block_bottom h3 a {
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    font-family: 'Anton';
}
#liste-articles .article .block_bottom .blog_desc {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    min-height: 120px;
    max-height: 120px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
#liste-articles .article .block_bottom .readmore {
    text-align: center;
}
#liste-articles .article .block_bottom .readmore a {
    margin-top: 22px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #739500;
}
.home-header-news {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 70px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prestablog.blog-home {
    padding-bottom: 70px;
}
.bloghometitle {
    margin: 150px 0 30px;
}
.bloghometitle h2 {
    font-size: 36px;
    line-height: 44px;
    color: #739500;
    font-family: 'Anton';
    text-transform: uppercase;
}
#module-prestablog-actualites #liste-articles {
    padding-bottom: 80px;
}
/*///////////////////////////////////////*/
/* ///// DETAIL ARTICLE BLOG ////////// */
/*/////////////////////////////////////*/
#module-everpsblog-post #wrapper, #prestablogfront {
    padding-top: 0;
    position: relative;
    padding-top: 85px;
}
#module-everpsblog-post .back-btn-actu, #prestablogfront .article-header .back-btn-actu {
    text-decoration: underline;
    color: #384842;
    margin-left: 15px;
    display: inline-block;
    color: #E27100;
    font-weight: 700;
}
#module-everpsblog-post #wrapper:before, #prestablogfront:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to right, #739500, #9CCB3F);
    background-size: cover;
}
#module-everpsblog-post .page-content {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 90%;
    max-width: 1245px;
    margin: 0 auto;
}
#prestablogfront .article-header {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
}
#module-everpsblog-post .post-header, #prestablogfront .post-header {
    min-height: 396px;
    margin-bottom: 20px;
}
#module-everpsblog-post .postcontent {
    width: 90%;
    max-width: 1088px;
    margin: 0 auto;
    border: none;
    padding: 20px 0 60px;
    margin-bottom: 0;
}
#module-everpsblog-post #content {
    padding-bottom: 80px;
}
#module-everpsblog-post .postcontent postDate, #prestablogfront .article-header postDate {
    font-size: 13px;
    background: #E5E0CC;
    height: 20px;
    line-height: 22px;
    padding: 0 9px;
    color: #4B4B4B;
    font-family: 'Libre Baskerville', serif;
}
#module-everpsblog-post .postcontent h1, #prestablogfront .article-header h1 {
    font-size: 36px;
    line-height: 44px;
    color: #020203;
    font-weight: normal;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    font-family: 'Anton', serif;
}
#module-everpsblog-post .breadcrumb.herboristerie, #prestablogfront .article-header .breadcrumb.herboristerie {
    margin-bottom: 20px;
    text-align: center;
}
#module-everpsblog-post .return-blog, #prestablogfront .article-header .return-blog {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
/*Produis associés*/
#module-everpsblog-post .products {
    justify-content: center;
    margin-bottom: 80px;
}
#module-everpsblog-post .products .product-miniature-herboristerie {
    margin: 5px 10px;
}
/*///////////////////////////////////////*/
/* ///// AVIS ACCUEIL ///////////////// */
/*/////////////////////////////////////*/
#reviews-home {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
    padding-left: 450px;
    min-height: 850px;
    background: url('../img/interface/bg-avis.jpg') no-repeat left bottom / cover;
}
#reviews-home .content {
    width: 100%;
}
#reviews-home .content .h2 {
    font-size: 32px;
    line-height: 44px;
    font-family: 'Anton';
    text-align: left;
    color: #fff;
    margin-bottom: 0;
    font-weight: normal;
}
#reviews-home .content .slider-reviews {
    padding-left: 16px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#reviews-home .content .slider-reviews .swiper-slide {
    width: 485px;
}
#reviews-home .content .slider-reviews .swiper-button-prev, #reviews-home .content .slider-reviews .swiper-button-next {
    top: 50%;
    width: 41px;
    height: 41px;
    left: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background: url(../img/svg/arrow-swiper-reviews-prev.svg) no-repeat center;
}
#reviews-home .content .slider-reviews .swiper-button-next {
    left: auto;
    right: 0;
    background: url(../img/svg/arrow-swiper-reviews-next.svg) no-repeat center;
}
#reviews-home .swiper-button-prev.swiper-button-disabled, #reviews-home .swiper-button-next.swiper-button-disabled {
    opacity: 1;
}
#reviews-home .content .slider-reviews .swiper-slide {
    min-height: -webkit-fill-available;
    padding-bottom: 7px;
}
#reviews-home .content .slider-reviews .swiper-slide .review {
    width: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#reviews-home .content .slider-reviews .swiper-slide .review .header-review {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}
#reviews-home .content .slider-reviews .swiper-slide .review .note {
    display: flex;
}
#reviews-home .content .slider-reviews .swiper-slide .review .note img {
    margin-right: 2px;
}
#reviews-home .content .slider-reviews .swiper-slide .review .commentaire {
    margin: 10px 0 14px;
}
#reviews-home .content .slider-reviews .swiper-slide .review .commentaire p {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 0;
}
#reviews-home .content .slider-reviews .swiper-slide .review .nom {
    font-size: 22px;
    line-height: 22px;
    color: #739500;
    text-align: right;
    font-family: 'Anton';
}
#reviews-home .content .google-intro {
    display: flex;
    align-items: center;
    margin: 20px 0 30px;
}
#reviews-home .content .google-intro .texte {
    max-width: 600px;
    color: #fff;
    line-height: 22px;
}
#reviews-home .content .google-intro .google-notation {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 230px;
    margin-right: 25px;
    padding-right: 25px;
    border-right: solid 1px #fff;
}
#reviews-home .content .google-intro .google-notation .note {
    font-size: 53px;
    font-weight: normal;
    color: #fff;
    margin-right: 10px;
    font-family: 'Anton';
}
#reviews-home .content .google-intro .google-notation .stars {
    display: flex;
}
#reviews-home .content .google-intro .google-notation .stars img {
    margin-right: 4px;
}
#reviews-home .content .google-intro .google-notation .nb-reviews a {
    color: #fff;
    font-size: 14px;
}
#reviews-home .content .google-intro .google-notation .nb-reviews a span {
    text-decoration: underline;
}
#reviews-home .content .google-intro .google-notation .nb-reviews img {
    width: 20px;
    margin-left: 5px;
}
/*///////////////////////////////////////*/
/* ///// MINIATURE PRODUIT //////////// */
/*/////////////////////////////////////*/
.products .product {
    position: relative;
    width: 100%;
    max-width: 354px;
    background: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.products .product .block-image img {
    max-width: 100%;
    height: auto;
}
.products .product .block-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px 70px;
}
.products .product .block-content .product-list-reviews {
    position: relative;
}
.products .product .block-content .product-title {
    color: #020203;
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    text-align: center;
    font-family: 'Anton';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    min-height: 44px;
    max-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.products .product .block-content .categorie {
    color: #fff;
    font-size: 13px;
    background: #020203;
    border-radius: 12px;
    line-height: 18px;
    padding: 1px 14px 2px;
    margin: 5px 0 10px;
}
.products .product .block-content .description-short {
    margin-bottom: 24px;
}
.products .product .block-content .description-short p {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #1C1C1C;
}
.products .product .block-content .product-price-and-shipping {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.products .product .block-content .product-price-and-shipping .regular-price {
    color: #1C1C1C;
    font-size: 15px;
    text-decoration: line-through;
}
.products .product .block-content .product-price-and-shipping .price {
    font-size: 24px;
    color: #739500;
    font-family: 'Anton';
}
.products .product .block-content .product-price-and-shipping .default-btn {
    padding: 5px 25px 3px;
}
/*///////////////////////////////////////*/
/* ///// FICHE PRODUIT //////////////// */
/*/////////////////////////////////////*/
#wk_additional_info {
    display: none;
}
#product #breadcrumb-product {
    background: #739500;
    padding: 5px 0;
}
#product #breadcrumb-product .breadcrumb li::after {
    content: url(../img/svg/arrow-breadcrumb-white.svg);
}
#product #breadcrumb-product .breadcrumb li:last-child::after {
    content: "";
}
#product #breadcrumb-product .breadcrumb li a, #product #breadcrumb-product .breadcrumb li span {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
}
#product #infos-comp {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#product #infos-comp .documents, #product #infos-comp .videos {
    display: none;
    padding: 20px;
    border: solid 1px rgba(0, 0, 0, 0.2);
}
#product #infos-comp .documents > .titre, #product #infos-comp .videos > .titre {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}
#product #infos-comp .liste-documents {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
}
#product #infos-comp .liste-documents .lien-doc {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#product #infos-comp .liste-documents .lien-doc .picto {
    width: 40px;
}
#product #infos-comp .liste-documents .lien-doc .titre {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
#product #infos-comp .liste-videos {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}
#product #infos-comp .liste-videos .video {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
#product #infos-comp .liste-videos .video iframe {
    width: 100%;
}
#product #infos-comp .liste-videos .video .titre {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
#product .product-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-top: 30px;
    margin-bottom: 100px;
}
#product .product-container .block-images {
    width: 100%;
    max-width: 512px;
}
#product .product-container .block-images .container-images {
    position: relative;
}
#product .product-container .block-images .product-cover {
    border: solid 1px #E4E4E4;
    margin-bottom: 20px;
}
#product .product-container .block-images .mask.scroll {
    width: 100%;
    padding: 0 30px;
    position: relative;
}
#product .product-container .block-images .scroll-box-arrows i {
    background: #fff;
    bottom: 13px;
    cursor: pointer;
}
#product .product-container .block-images .thumb-container {
    position: relative;
    margin-right: 24px;
}
#product .product-container .block-images .thumb-container picture {
    display: inline-block;
    width: 110px;
    height: 92px;
    border: solid 1px #E4E4E4;
}
#product .product-container .block-images .thumb-container picture img {
    margin: 0;
    border: none;
}
#product .product-container .block-images .thumb-container .picto-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#product .product-container .block-images .labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    margin: 25px 0;
}
#product .product-container .block-images .photos-non-contractuelles {
    font-style: italic;
    text-align: center;
    font-size: 14px;
    color: #807b7b;
}
#product .product-container .block-content {
    width: 100%;
    position: relative;
    min-height: 200px;
    transition: lla 200ms ease-in-out;
}
.custom-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3; /* Gris clair */
    border-top: 5px solid #3498db; /* Bleu (changez la couleur selon votre charte) */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
#product .product-container .block-content .block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: solid 1px #E4E4E4;
}
#product .product-container .block-content .block-title .part-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
#product .product-container .block-content .block-title .part-left .title-reference {
    display: flex;
    flex-direction: column;
}
#product .product-container .block-content .block-title .part-left .title-reference h1 {
    font-size: 32px;
    line-height: 36px;
    color: #020203;
    text-transform: none;
    font-weight: normal;
    text-decoration: none;
    font-family: 'Anton';
    margin-bottom: 0;
    max-width: 600px;
}
#product .product-container .block-content .block-title .part-left .title-reference .product-reference {
    font-size: 14px;
    color: #777777;
}
#product .product-container .block-content .block-title .part-right {
    text-align: right;
}
#product .product-container .block-content .block-title .part-right .post-product-comment {
    font-size: 14px;
    color: #777777;
    cursor: pointer;
    text-decoration: underline;
}
#product .product-container .block-content .block-title .part-right .comments-note a {
    font-size: 14px;
    color: #777777;
    cursor: pointer;
    text-decoration: underline;
}
#product .container-actions {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px #E4E4E4;
}
#product .container-actions .part-left {
    width: 45%;
    padding-right: 40px;
    border-right: solid 1px #E4E4E4;
}
#product .container-actions .part-left .product-prices {
    margin-top: 0;
    margin-bottom: 0;
}
#product .container-actions .part-left .product-prices .product-discount {
    font-size: 24px;
}
#product .container-actions .part-left .product-prices .product-price {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 0;
}
#product .container-actions .part-left .product-prices .product-price .current-price {
    margin-bottom: 0;
    font-size: 44px;
    font-weight: 700;
    color: #739500;
    font-family: 'Open Sans', sans-serif;
}
#product .container-actions .part-left .product-prices .product-price .current-price .unite {
    font-size: 16px;
}
#product .container-actions .part-left .product-prices .product-price .current-price sup {
    font-size: 26px;
}
#product .container-actions .part-left .product-prices .product-price .unite-surface {
    color: #000;
    margin-bottom: 5px;
    font-size: 14px;
}
#product .container-actions .part-left .product-prices .product-price .product-unit-price {
    font-size: 14px;
    font-weight: 700;
    color: #777777;
}
#product .container-actions .part-left .product-prices .price-ecotax {
    font-size: 13px;
    color: #777777;
}
#product .container-actions .part-left .stock {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
#product .container-actions .part-left .stock .disponibilite {
    height: 19px;
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
    color: #fff;
}
#product .container-actions .part-left .stock .disponibilite.en-stock {
    background: #9CCB3F;
}
#product .container-actions .part-left .stock .disponibilite.en-rupture {
    background: #e85050;
}
#product .container-actions .part-left .stock .delai-expedition {
    font-size: 14px;
    color: #777777;
}
#product .container-actions .part-left .info-livraison {
    margin-bottom: 24px;
}
#product .container-actions .part-left .info-livraison a {
    font-size: 14px;
    color: #020203;
    text-decoration: underline;
}
#product .container-actions .part-right {
    width: 55%;
    padding-left: 40px;
}
#product .container-actions .part-right .product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}
#product .container-actions .part-right .product-variants > .product-variants-item {
    width: calc(50% - 6px);
    margin-top: 0;
    margin-bottom: 0;
}
#product .container-actions .part-right .product-variants > .product-variants-item select {
    width: 100%;
    height: 36px !important;
    line-height: 36px !important;
    border: solid 1px #E4E4E4 !important;
    background: #fff url(../img/svg/arrow-select.svg) no-repeat center right 15px / 8px !important;
}
#product .container-actions .part-right .product-variants > .product-variants-item .select2-container--default .select2-selection--single {
    border-radius: 0;
    height: 36px !important;
    border: solid 1px #E4E4E4 !important;
}
#product .container-actions .part-right .product-variants > .product-variants-item .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #7a7a7a;
    line-height: 36px;
    padding: 0 50px 0 20px;
}
#product .container-actions .part-right .product-variants > .product-variants-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    position: absolute;
    top: 1px;
    right: 10px;
    width: 20px;
    background: #fff url(../img/svg/arrow-select.svg) no-repeat center / 8px !important;
}
#product .container-actions .part-right .product-variants > .product-variants-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
#product .container-actions .part-right .product-variants .control-label {
    font-size: 14px;
    font-weight: 700;
    color: #313131;
}
#product .container-actions .part-right .product-variants label .color {
    width: 30px;
    height: 30px;
}
#product .container-actions .part-right .product-quantity {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}
#product .container-actions .part-right .product-quantity .qty {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    margin: 0;
}
#product .container-actions .part-right .product-quantity .qty .control-label {
    font-size: 14px;
    font-weight: 700;
    color: #313131;
}
#product .container-actions .part-right .product-quantity .price-total {
    display: flex;
    align-items: flex-end;
    font-size: 32px;
    font-weight: 700;
    color: #020203;
    margin-bottom: 15px;
}
#product .container-actions .part-right .product-quantity .price-total sup {
    font-size: 24px;
}
#product .container-actions .part-right .product-quantity .volume-unite {
    font-size: 16px;
    font-weight: 700;
    color: #020203;
    line-height: 10px;
    margin-bottom: 15px;
}
#product .container-actions .part-right .add-to-cart {
    background: #739500;
    font-size: 18px;
    font-weight: 700;
    height: 35px;
    padding: 0 20px;
    line-height: 32px;
}
#product .container-actions .part-right .add-to-cart:hover {
    color: #fff;
    background: #8FB50F;
}
#product .container-actions .part-right .add-to-cart:disabled {
    background: grey;
}
#product .product-description {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px #E4E4E4;
}
#product .product-description p {
    line-height: 30px;
    color: #1A171B;
}
#product .tabs {
    padding: 0;
    margin-top: 0;
}
#product .tabs .nav-tabs {
    display: flex;
    gap: 60px;
}
#product .tabs .nav-item {
    padding: 0;
}
#product .tabs .nav-item a {
    padding: 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}
#product .tabs .nav-item a.active, #product .tabs .nav-item a:hover {
    border-bottom: #9CCB3F 4px solid;
}
#product .tabs #avantages .bloc-carac, #product .tabs #caracteristiques .bloc-carac {
    margin-top: 30px;
}
#product .tabs #avantages .bloc-carac:first-of-type, #product .tabs #caracteristiques .bloc-carac:first-of-type {
    margin-top: 0;
}
#product .tabs #avantages h3, #product .tabs #caracteristiques h3 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
#product .tabs #avantages p, #product .tabs #caracteristiques p {
    font-size: 14px;
    line-height: 24px;
    color: #1A171B;
}
#product .tabs .product-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#product .tabs .product-attachments .attachment {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px 10px 10px;
    border: solid 1px #E4E4E4;
}
#product .tabs .product-attachments .attachment .titre {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 3px;
}
#product .tabs .product-attachments .attachment .sous-titre {
    margin-bottom: 15px;
}
#product .star-content div.star, #product .star-content div.star-on, #product .star-content div.star-hover {
    background: url(../img/interface/stars-review.png) no-repeat 0 0 transparent;
}
#product .star-content div.star-on, #product .star-content div.star-hover {
    background-position: -24px 0;
}
#product .product-accessories {
    margin: 80px 0 120px;
    padding: 45px 0;
    background: #E9E9E9;
}
#product .product-accessories .header-block {
    text-align: center;
    margin-bottom: 50px;
}
#product .product-accessories .header-block h2 {
    font-size: 36px;
    font-weight: normal;
    color: #739500;
    line-height: 42px;
    font-family: 'Anton';
    text-transform: uppercase;
}
#product .product-accessories .products {
    width: 100%;
}
#product .product-accessories .products .swiper-container {
    width: 100%;
}
#product .product-accessories .products .swiper-slide {
    /*max-width: 350px;*/
    padding-bottom: 6px;
    height: auto;
}
#product #gl-produits-associes {
    padding-bottom: 100px;
    margin-top: 80px;
}
#product #gl-produits-associes .header-block {
    text-align: center;
    margin-bottom: 50px;
}
#product #gl-produits-associes .header-block h2 {
    font-size: 36px;
    font-weight: normal;
    color: #739500;
    line-height: 42px;
    font-family: 'Anton';
    text-transform: uppercase;
}
#product #gl-produits-associes .products .swiper-slide {
    padding-bottom: 6px;
    height: auto;
}
#product #product-comments-list-header {
    display: none;
}
#product #product-comments-list-footer {
    display: none;
}
/*PAGINATION*/
.pagination .page-list {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-list li a:not(.next):not(.previous) {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
    background: #fff;
    line-height: 40px;
    padding: 0;
    font-size: 14px;
    text-align: center;
    border: solid 1px rgba(0, 0, 0, 0.2);
}
.pagination .page-list li a.next, .pagination .page-list li a.previous {
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
}
.pagination .page-list li a:not(.next):not(.previous):hover, .pagination .page-list li.current a:not(.next):not(.previous) {
    background: #739500;
    color: #fff;
}
#product .product-flags li.product-flag.out_of_stock, .miniature-mateco .product-flags li.product-flag.out_of_stock {
    background: #ef3e41;
}
#product .wishlist-button-add, .miniature-mateco .wishlist-button-add {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 46px;
    min-width: 2.5rem;
    padding: 0;
    background-color: #fff;
    box-shadow: none;
    border-radius: 50%;
    cursor: pointer;
    border: solid 1px #E4E4E4;
    transition: 0.2s ease-out;
    margin-left: 0;
    cursor: pointer;
}
#product .wishlist-button-add i, .miniature-mateco .wishlist-button-add i {
    color: #FF4141;
}
/*///////////////////////////////////////*/
/* //// COMMENTAIRES PRODUIT ////////// */
/*/////////////////////////////////////*/
#product-comments {
    width: calc(100% - 40px);
    max-width: 1364px;
    margin: 50px auto;
}
/*///////////////////////////////////////*/
/* // ADD TO CART MODAL /////////////// */
/*/////////////////////////////////////*/
body #blockcart-modal {
    padding-right: 0 !important;
}
body #blockcart-modal .modal-dialog {
    max-width: 1000px;
    width: calc(100% - 44px);
}
body #blockcart-modal .modal-content {
    border: none;
    border-radius: 0;
}
body #blockcart-modal .modal-header {
    position: relative;
    display: flex;
    align-items: center;
    background: #739500;
    height: 56px;
    padding: 0 25px;
}
body #blockcart-modal .modal-header .modal-title {
    font-size: 32px;
    color: #fff;
    font-weight: normal;
    text-transform: none;
    font-family: 'Anton';
}
body #blockcart-modal .modal-header .close {
    margin-top: 0;
    position: absolute;
    right: 22px;
}
body #blockcart-modal .modal-header .close:focus {
    outline: none;
}
body #blockcart-modal .modal-body {
    background: #fff;
    padding: 47px 35px;
    display: flex;
    align-items: center;
}
body #blockcart-modal .modal-body .left-part {
    width: 100%;
    max-width: 415px;
    padding-right: 25px;
    margin-right: 50px;
    border-right: solid 1px #DEDDD7;
    display: flex;
    align-items: center;
}
body #blockcart-modal .modal-body .left-part .image {
    width: auto;
    height: 110px;
    object-fit: cover;
    margin-right: 15px;
}
body #blockcart-modal .modal-body .left-part .image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}
body #blockcart-modal .modal-body .left-part .product-name {
    font-size: 24px;
    line-height: 26px;
    color: #020203;
    font-weight: normal;
    text-transform: none;
    font-family: 'Anton', sans-serif;
}
body #blockcart-modal .modal-body .left-part .product-price-qty {
    font-size: 15px;
    line-height: 23px;
    color: #17191A;
}
body #blockcart-modal .modal-body .right-part .cart-products-count {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    color: #17191A;
    margin-bottom: 0;
}
body #blockcart-modal .modal-body .right-part .product-total {
    font-size: 15px;
    line-height: 23px;
    color: #17191A;
    margin-bottom: 20px;
}
body #blockcart-modal .modal-body .right-part .cart-content-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
body #blockcart-modal .modal-body .right-part .continue-shopping {
    font-size: 16px;
    line-height: 22px;
    color: #739500;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    margin-right: 30px;
    margin-bottom: 10px;
    cursor: pointer;
}
body #blockcart-modal .modal-body .right-part .continue-shopping:focus {
    outline: none;
}
body #blockcart-modal .modal-body .right-part .continue-shopping:hover {
    text-decoration: underline;
}
body #blockcart-modal .modal-body .right-part .go-to-basket {
    border-radius: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    padding: 5px 40px 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    background: #739500;
    color: #fff;
    margin-bottom: 10px;
    border: solid 1px #739500;
    transition: all 200ms ease-in-out;
}
body #blockcart-modal .modal-body .right-part .go-to-basket:hover {
    color: #739500;
    background: #fff;
}
/*///////////////////////////////////////*/
/* ///// PAGE CONTACT ///////////////// */
/*/////////////////////////////////////*/
#contact .card-block {
    padding: 0;
}
#contact .contact-form {
    width: calc(100% - 40px);
    max-width: 1088px;
    margin: 30px auto;
    padding: 0;
}
/*///////////////////////////////////////*/
/* ///// FIALISER LA COMMANDE ///////// */
/*/////////////////////////////////////*/
#checkout main #content {
    width: calc(100% - 40px);
    max-width: 1364px;
    margin: 70px auto 0;
}
#checkout #wrapper .checkout-header {
    margin-bottom: 15px;
}
#checkout #wrapper .checkout-header h1 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    text-transform: none;
    color: #384842;
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
}
#checkout main #content {
    display: flex;
    align-items: flex-start;
}
/*LEFT*/
#checkout main #content .cart-grid-body {
    width: 100%;
}
/*RIGHT*/
#checkout main #content .cart-grid-right {
    width: 100%;
    max-width: 373px;
    margin-left: 40px;
}
#checkout main #content .cart-grid-right .cart-summary-products p {
    color: #17191A;
    margin-bottom: 0;
}
body#checkout #cart-summary-product-list img {
    background: #fff;
}
body#checkout #cart-summary-product-list .value {
    color: #232323;
}
body#checkout #cart-summary-product-list .media {
    margin-bottom: 10px;
}
body#checkout #cart-summary-product-list .media a {
    color: #739500;
}
#checkout main #content .cart-grid-right .product-price {
    color: #17191A;
    display: inline-block;
}
#checkout main #content .cart-grid-right #cart-subtotal-products {
    margin-top: 10px;
}
#checkout main #content .cart-grid-right .card-block {
    padding: 0;
}
#checkout main #content .cart-grid-right .pictos-security {
    width: 100%;
    text-align: center;
}
/*ETAPES COMMANDE*/
body#checkout main section.checkout-step {
    box-shadow: none;
    background-color: transparent;
    border-bottom: solid 1px #CBC9BE;
    padding: 20px 50px;
}
body#checkout main section.checkout-step.-current {
    border: solid 1px #CBC9BE;
}
body#checkout main section.checkout-step .step-number {
    padding-right: 0px;
}
body#checkout main section.checkout-step .step-title {
    border-bottom: none;
}
body#checkout main section.checkout-step .content {
    padding: 0 30px;
}
body#checkout main section.checkout-step p {
    font-size: 15px;
    line-height: 24px;
    color: #393939;
    font-style: italic;
}
body#checkout main section.checkout-step .form-group input[type="text"], body#checkout main section.checkout-step .form-group input[type="email"], body#checkout main section.checkout-step .form-group input[type="password"], body#checkout main section.checkout-step .form-group input[type="tel"], body#checkout main section.checkout-step .form-group select {
    height: 40px;
    line-height: 40px;
    background: transparent;
    padding: 0 15px;
    border: solid 1px #B1B3BB;
}
.form-control:focus, .input-group.focus {
    outline: none;
}
body#checkout main section.checkout-step .form-control-comment {
    display: none;
}
body#checkout main section.checkout-step .input-group .input-group-btn {
    display: none;
}
body#checkout main section.checkout-step .form-footer {
    margin-top: 20px;
}
/*Informations personnelles*/
#checkout-personal-information-step .nav-inline {
    display: flex;
    justify-content: space-between;
}
#checkout-personal-information-step .nav-inline .nav-item {
    width: 47%;
    margin: 0;
    text-align: center;
}
#checkout-personal-information-step .nav-inline .nav-item a {
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    color: #2D2F36;
    padding-bottom: 10px;
    border-bottom: solid 1px #CBC9BE;
    position: relative;
}
body#checkout main section.checkout-step .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
body#checkout main section.checkout-step .forgot-password {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
}
body#checkout main section.checkout-step .form-group label.form-control-label {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    color: #2D2F36;
}
body#checkout main section.checkout-step .form-group .col-md-6 {
    width: 100%;
}
body#checkout #header .header-nav {
    padding: 0;
    box-shadow: none;
}
#checkout-personal-information-step .nav-inline .nav-item a.active:after {
    content: '';
    position: absolute;
    bottom: -11px;
    width: 16px;
    height: 11px;
    left: calc(50% - 8px);
    background: url(../img/svg/arrow-active-link.svg) no-repeat center bottom;
}
body#checkout main section.checkout-step .address-item.selected .address {
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
}
/*Livraison*/
body#checkout #delivery textarea, body#checkout #gift_message textarea {
    max-width: 100%;
    margin-bottom: 10px;
    width: 100%;
}
body#checkout main section.checkout-step .delivery-options .delivery-option {
    background: transparent;
    min-height: 80px;
    border: none;
}
body#checkout main section.checkout-step .carrier-delay, body#checkout main section.checkout-step .carrier-name {
    word-break: normal;
}
body#checkout #delivery label {
    font-style: italic;
}
/*Paiement*/
#checkout-payment-step .condition-label label a {
    color: #739500;
    text-decoration: underline;
}
#cart .block-promo .promo-name {
    margin-top: 20px;
}
#cart .block-promo .promo-name .cart-summary-line span {
    color: #739500;
}
/*///////////////////////////////////////*/
/* ///// CATEGORY ///////////////////// */
/*/////////////////////////////////////*/
#category #wrapper .content-wrapper {
    display: flex;
    align-items: flex-start;
    width: calc(100% - 40px);
    max-width: 1640px;
    margin: 50px auto;
}
#category #wrapper .content-wrapper #left-column {
    width: 100%;
    max-width: 398px;
    margin-right: 40px;
    background: #fff;
    padding: 0;
    /*FACETS*/
}
#category #wrapper .content-wrapper #left-column #search_filters {
    padding: 0;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet {
    padding-top: 0;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet .entete-categorie {
    padding: 8px 10px 6px;
    font-size: 22px;
    line-height: 28px;
    font-family: 'Anton';
    text-transform: uppercase;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet .sous-categories {
    background: #F8F3EF;
    padding: 17px 20px 32px;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet .sous-categories .titre-sous-categorie {
    font-weight: 700;
    color: #313131;
    margin-bottom: 5px;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet .sous-categories .sous-sous-categories {
    padding-left: 20px;
}
#category #wrapper .content-wrapper #left-column #search_filters .facet input[type=checkbox]:before {
    background: #fff;
    cursor: pointer;
}
#category #wrapper .content-wrapper #left-column .autres-categories {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 11px;
}
#category #wrapper .content-wrapper #left-column .autres-categories a {
    position: relative;
    padding: 8px 40px 6px 10px;
    font-size: 22px;
    line-height: 28px;
    font-family: 'Anton';
}
#category #wrapper .content-wrapper #left-column .autres-categories a:after {
    content: '';
    position: absolute;
    right: 11px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: url('../img/svg/plus-facet.svg') no-repeat center / contain;
}
#category #wrapper .content-wrapper #left-column .block-categories {
    padding: 0;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] {
    background: #F8F3EF;
    margin-bottom: 10px;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a {
    position: relative;
    position: relative;
    padding: 8px 40px 6px 10px;
    font-size: 22px;
    font-weight: normal;
    line-height: 28px;
    font-family: 'Anton';
    color: #fff;
    margin-top: 0;
    text-transform: uppercase;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="3"] {
    background: #99582A;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="5"] {
    background: #00A2DE;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="6"] {
    background: #9CCB3F;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="7"] {
    background: #0C7C59;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="8"] {
    background: #6F1D1B;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a[data-category-id="9"] {
    background: #432818;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a .collapse-icons {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    height: auto;
    background: url(../img/svg/plus-facet.svg) no-repeat center;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] > a .collapse-icons[aria-expanded="true"] {
    background: url('../img/svg/moins-facet.svg') no-repeat center;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu {
    margin: 0;
    padding: 17px 20px 32px;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li[data-depth="1"] > a {
    font-weight: 700;
    color: #313131;
    margin-bottom: 5px;
    font-size: 16px;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li[data-depth="1"] li[data-depth="2"] > a {
    display: inline-block;
    color: #313131;
    margin-bottom: 8px;
    font-size: 16px;
}
#category #wrapper .content-wrapper #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu .category-sub-menu {
    padding: 10px;
}
/*///////////////////////////////////////*/
/* ///// PAGE CONTACT ///////////////// */
/*/////////////////////////////////////*/
.contact-form-container {
    display: flex;
    align-items: flex-start;
    margin: 50px auto;
    gap: 70px;
}
.contact-form-container .colonne-gauche {
    width: 100%;
    max-width: 430px;
    padding: 16px 16px 55px;
    border: solid 1px #739500;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.contact-form-container .colonne-gauche .logo {
    margin: 40px 0 20px;
}
.contact-form-container .colonne-gauche .phone-btn {
    margin: 20px 0;
}
.contact-form-container .colonne-gauche .menu-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.contact-form-container .colonne-gauche .menu-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-container .colonne-gauche .menu-socials a.facebook {
    background: #1877F2;
}
.contact-form-container .colonne-gauche .menu-socials a.instagram {
    background: #E4405F;
}
.contact-form-container .colonne-gauche .menu-socials a.linkedin {
    background: #0A66C2;
}
.contact-form-container form {
    width: 100%;
}
.contact-form-container form .intro-form {
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}
.contact-form-container form .form-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form-container form .form-fields .form-group {
    width: 100%;
}
.contact-form-container form .form-fields .form-group.small {
    width: calc(50% - 17px);
}
.contact-form-container form .form-fields .form-group:not(.checkbox) label {
    color: #020203;
    font-family: 'Anton';
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 4px;
}
.contact-form-container form .form-fields .form-group.checkbox {
    margin-top: 25px;
}
.contact-form-container form .form-fields .form-group.checkbox .field-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-form-container form .form-fields .form-group.checkbox .field-group label {
    font-size: 14px;
    line-height: 20px;
    margin-top: -5px;
    padding: 0;
    font-weight: 400;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}
.contact-form-container form .form-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.contact-form-container form .form-footer .contact-form-btn {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 252px;
    height: 42px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Open Sans', san-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: url(../img/svg/contact-send-btn.svg) no-repeat center / contain;
}
/*///////////////////////////////////////*/
/* ///// FORMULAIRES ////////////////// */
/*/////////////////////////////////////*/
input[type=text], input[type=email], input[type=tel], input[type=password], select {
    height: 50px !important;
    padding: 0 20px;
    background: #fff;
    border: solid 1px #707070 !important;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, select:focus {
    outline: solid 2px #707070;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    cursor: pointer;
    padding: 0 50px 0 20px !important;
    background: #fff url('../img/svg/arrow-select.svg') no-repeat center right 25px !important;
}
select:focus {
    outline: solid 2px #707070;
}
textarea.form-control {
    min-height: 180px;
    padding: 20px;
    background: #fff;
    border: solid 1px #707070;
}
textarea.form-control:focus {
    outline: solid 2px #707070;
}
/*CHECKBOX*/
input[type=checkbox] + label, input[type=radio] + label {
    cursor: pointer;
}
input[type=checkbox]:checked, input[type=checkbox]:disabled:checked, input[type=radio]:checked, input[type=radio]:disabled:checked {
    background-color: #F39517;
}
input[type=checkbox]:hover, input[type=checkbox]:focus, input[type=radio]:hover, input[type=radio]:focus {
    border: 2px solid #C2C2C2;
}
input[type=checkbox], input[type=radio] {
    margin: 0 10px 0 0;
}
input[type=checkbox]:before, input[type=radio]:before {
    font-family: 'Font Awesome 5 Free';
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    font-weight: 700;
    border-radius: 0;
    padding-left: 0.5px;
    padding-top: 2px;
    text-align: center;
    background: #fff;
    border: 1px solid #0F2E47;
    cursor: pointer;
    margin-left: -2px;
}
input[type=radio]:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
input[type=radio]:checked:before {
    background: #0F2E47;
    outline: solid 3px #fff;
    outline-offset: -4px;
}
input[type=checkbox]:checked:before {
    content: "";
    background: #fff url('../img/svg/checkbox-checked.svg') no-repeat center;
}
/*///////////////////////////////////////*/
/* ///// PAGE HEADER ////////////////// */
/*/////////////////////////////////////*/
.page-header {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, #739500, #9CCB3F);
    padding: 50px 0;
    margin-bottom: 80px;
}
.page-header:not(.page-header-category):after {
    content: '';
    position: absolute;
    right: 100px;
    width: 400px;
    top: 0;
    bottom: 0;
    background: url('../img/svg/triskell-header.svg') no-repeat center / cover;
}
body #wrapper .page-header-category .breadcrumb a span,
body #wrapper .page-header-category .breadcrumb li span {
    color: #fff;
}
.page-header h1 {
    font-size: 44px;
    line-height: 48px;
    color: #fff;
    text-transform: none;
    font-family: 'Anton';
    width: calc(100% - 40px);
    max-width: 1640px;
    padding-right: 375px;
    margin: 0 auto;
    font-weight: normal;
    position: relative;
    z-index: 10;
}
#contact .page-header h1 {
    max-width: 1364px;
}
#cms #main .page-header {
    margin-bottom: 120px;
}
#cms #main .page-header h1 {
    max-width: 1450px;
}
#category #wrapper #content-wrapper {
    width: 100%;
}
#category #wrapper #content-wrapper .products {
    gap: 60px;
}
#category #wrapper #content-wrapper .products .product {
    width: calc(33.333333% - 40px);
    padding: 0;
}
.block-category {
    min-height: 0;
}
/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/
#main .page-content, #main .page-footer, #main .page-header {
    margin-bottom: 0 !important;
}
#footer, body#checkout main #footer {
    padding-top: 0;
    background: #020203;
    color: #fff;
}
#footer .container-footer, body#checkout main #footer .container-footer {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 30px 0 70px;
}
#footer .container-footer .part-left, body#checkout main #footer .container-footer .part-left {
    width: 100%;
}
#footer .container-footer .part-left .titre, body#checkout main #footer .container-footer .part-left .titre {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-family: 'Anton';
    text-transform: uppercase;
    border-bottom: solid 1px #fff;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
#footer .container-footer .part-left .menu-categories, body#checkout main #footer .container-footer .part-left .menu-categories {
    column-count: 3;
    margin-bottom: 40px;
}
#footer .container-footer .part-left .menu-categories a, body#checkout main #footer .container-footer .part-left .menu-categories a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
#footer .container-footer .part-left .menu-principal, body#checkout main #footer .container-footer .part-left .menu-principal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}
#footer .container-footer .part-left .menu-principal a, body#checkout main #footer .container-footer .part-left .menu-principal a {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-family: 'Anton';
}
#footer .container-footer .part-left .contact .mateco, body#checkout main #footer .container-footer .part-left .contact .mateco {
    font-size: 18px;
    font-family: 'Anton';
}
#footer .container-footer .part-left .contact .btn-itineraire, body#checkout main #footer .container-footer .part-left .contact .btn-itineraire {
    color: #fff;
}
#footer .container-footer .part-left .contact .btn-itineraire span, body#checkout main #footer .container-footer .part-left .contact .btn-itineraire span {
    text-decoration: underline;
}
#footer .container-footer .part-left .contact .btn-itineraire svg, body#checkout main #footer .container-footer .part-left .contact .btn-itineraire svg {
    margin-left: 5px;
}
#footer .container-footer .part-right, body#checkout main #footer .container-footer .part-right {
    width: 100%;
    max-width: 198px;
    display: flex;
    flex-direction: column;
}
#footer .container-footer .part-right .btn-espace-pro, body#checkout main #footer .container-footer .part-right .btn-espace-pro {
    padding: 15px 10px 20px;
    background: #739500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Anton';
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
#footer .container-footer .part-right .btn-phone, body#checkout main #footer .container-footer .part-right .btn-phone {
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    gap: 12px;
    font-family: 'Anton';
    font-size: 18px;
    border: solid 1px #fff;
    margin-bottom: 25px;
}
#footer .container-footer .part-right .socials, body#checkout main #footer .container-footer .part-right .socials {
    display: flex;
    justify-content: space-between;
}
#footer .container-footer .part-right .socials .titre, body#checkout main #footer .container-footer .part-right .socials .titre {
    font-size: 14px;
    line-height: 16px;
}
#footer .container-footer .part-right .socials a, body#checkout main #footer .container-footer .part-right .socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#footer .container-footer .part-right .socials a.facebook, body#checkout main #footer .container-footer .part-right .socials a.facebook {
    background: #1877F2;
}
#footer .container-footer .part-right .socials a.instagram, body#checkout main #footer .container-footer .part-right .socials a.instagram {
    background: #E4405F;
}
#footer .container-footer .part-right .socials a.linkedin, body#checkout main #footer .container-footer .part-right .socials a.linkedin {
    background: #0A66C2;
}
#footer .gl-copy, body#checkout main #footer .gl-copy {
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    border-top: solid 1px #fff;
    padding: 20px;
    font-family: 'Open sans', sans-serif;
}
#footer .gl-copy a, body#checkout main #footer .gl-copy a {
    color: #fff;
}
