:root {
    /* Colors */
    --neutral-100: #ffffff;
    --neutral-200: #eef0f1;
    --neutral-300: #ecedee;
    --neutral-400: #c5c7c8;
    --neutral-600: #52626a;
    --neutral-800: #20201e;
    --neutral-900: #000000;

    --accent-color: #bfa451;

    --fg-color: var(--neutral-800);
    --bg-color: var(--neutral-100);

    /* --fw-thin:    200; */
    --fw-normal: 400;
    --fw-bold: 700;
    /* --fw-medium:  700; */
    --fw-black: 900;

    /* z-index: ; */
    --zindex-dropdown: 1000;
    --zindex-sticky: 1020;
    --zindex-fixed: 1030;
    --zindex-modal-backdrop: 1040;
    --zindex-modal: 1050;
    --zindex-popover: 1060;
    --zindex-tooltip: 1070;
}

html,
body {
    font-family: Lato, sans-serif;
    line-height: normal;
    font-stretch: normal;
    width: 100%;
    height: 100%;
}

body {
    padding-top: 3.125rem;
}

body.scroll {
    padding-top: 60px;
}

@media (min-width: 62rem) {
    body {
        padding-top: 17.5rem;
    }
}
@media (min-width: 91.562rem) {
    body {
        padding-top: 11.875rem;
    }
}

body.mobile {
    overflow: hidden;
}

/* RESET */
img {
    max-width: 100%;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
}

.svg-inline--fa {
    width: auto;
}

:focus,
:focus {
    outline: none;
    box-shadow: none;
}
:focus-visible {
    border-color: transparent;
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
}

/* COMPONENTS */
.dropdown-menu {
    margin: 0;
    padding: 0;
}
.dropdown-toggle:focus {
    outline: none;
}

.btn {
    display: inline-block;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0;
    white-space: nowrap;
    text-align: center;
}
.btn-dark {
    color: var(--neutral-100);
    background-color: var(--neutral-800);
    border-color: var(--neutral-800);
}
.btn-red {
    color: #fff;
    background-color: hsl(342, 100%, 39%);
    border-color: hsl(342, 100%, 39%);
}
.btn-red:hover,
.btn-red:focus-visible {
    color: #fff;
    background-color: hsl(342, 100%, 32%);
    border-color: hsl(342, 100%, 32%);
}
.btn-gray {
    color: #fff;
    background-color: hsl(212, 25%, 54%);
    border-color: hsl(212, 25%, 54%);
}
.btn-gray:hover,
.btn-gray:focus-visible {
    color: #fff;
    background-color: hsl(212, 25%, 50%);
    border-color: hsl(212, 25%, 50%);
}

/* NAVBAR ----------------------------------- */

.navbar,
.navbar-collapse {
    row-gap: 1rem;
}
.navbar {
    padding: 1rem 0 0;
    background-color: #fff;
    column-gap: 5vw;
}
.navbar-brand {
    width: 70vw;
    max-width: 25rem;
}
.navbar-toggler {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    color: var(--neutral-800) !important;
}
.navbar-toggler:focus {
    outline: none;
}
.navbar-toggler .line {
    transition: y 200ms ease-in 200ms, rotate 200ms ease-in, opacity 0ms 200ms;
    transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] .line {
    transition: y 200ms ease-in, rotate 200ms ease-in 200ms, opacity 0ms 200ms;
    transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] :is(.top, .bottom) {
    y: 45;
}
.navbar-toggler[aria-expanded="true"] .top {
    rotate: 45deg;
}
.navbar-toggler[aria-expanded="true"] .middle {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .bottom {
    rotate: -45deg;
}

.nav-link,
.dropdown-item {
    padding: 1rem 0.85rem;
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: var(--nav-color);
    text-transform: uppercase;
    align-items: center;
    white-space: normal;
}
.nav-account select {
    border: 1px solid #bfa451;
    background: #bfa451;
    color: white;
    border-radius: 0;
}
.nav-account select:focus {
    outline: none;
    border: 1px solid #bfa451;
    background: #bfa451;
    color: white;
    box-shadow: none;
}
.nav-account select option {
    color: white;
}
.nav-link:hover,
.dropdown-item:hover {
    color: var(--accent-color);
}
.nav-link:active {
    color: var(--accent-color);
    background-color: var(--neutral-100);
}
.nav-link:focus-visible,
.dropdown-item:focus-visible {
    outline: 2px solid var(--accent-color);
}

/* NAV ACCOUNT */
.nav-account .nav-link {
    color: var(--accent-color);
}
/* NAV PRIMARY */
.nav-primary {
    --nav-bg: var(--neutral-200);
    --dropdown-bg: var(--neutral-300);
    margin-block: 0;
    background-color: var(--nav-bg);
}

.nav-primary,
.subnav-primary {
    list-style: none;
    padding: 0;
}

.nav-primary a {
    --nav-color: var(--neutral-600);
}

.nav-primary__link,
.subnav-primary__link,
.nav-primary__link--decorated {
    --nav-bg: transparent;
    display: flex;
    align-items: center;
    white-space: break-spaces;
}

.back-to-parent::before,
.nav-primary__link--decorated::before {
    content: "";
    display: inline-block;
    margin-right: 0.5em;
    width: 1.25em;
    height: 1.25em;
    background-color: var(--accent-color);
    border-radius: 100vmax;
}
.nav-primary__link--decorated {
    font-size: 1rem;
}
@media (min-width: 62rem) {
    .nav-primary__link--decorated {
        font-size: 1.15rem;
    }
}
.nav-primary__link--decorated::after {
    all: unset;
}

.nav-primary__link[aria-expanded="true"],
.subnav-primary__link[aria-expanded="true"] {
    color: var(--neutral-900);
}

.nav-primary__link[aria-expanded="true"] + .dropdown-menu {
    --dropdown-bg: var(--neutral-300);
    background-color: var(--dropdown-bg);
}

.nav-primary__item > .dropdown-menu {
    margin: 0;
    border: unset;
    border-radius: 0;
    background-color: var(--dropdown-bg);
}

/* Dropdown menu */
.nav-primary__dropdown {
    --nav-bg: transparent;
    margin: 0;
    width: 100%;
    padding: 1rem;
    background-color: var(--dropdown-bg, var(--neutral-300));
    border: none;
    border-radius: 0;
}
@media (min-width: 62rem) {
    .nav-primary__dropdown {
        padding: 2rem;
    }
}

/* Subnav */
@media (min-width: 62rem) {
    .subnav-primary {
        border-right: 1px solid var(--neutral-400);
    }
}
@media (max-width: 62rem) {
    .nav-primary__link--decorated::after {
        content: "";
        width: 0.75em;
        height: 0.75em;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        margin-inline-start: auto;
        rotate: 45deg;
    }
}
.subnav-primary__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subnav-primary__link::after {
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    rotate: 45deg;
}
.subnav-primary__dropdown {
    inset-block: 0;
    left: calc(100% + 1px);
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: var(--dropdown-bg);
    border-right: 1px solid var(--neutral-400);
    overflow-y: auto;
    height: fit-content;
}
.subnav-primary__dropdown::-webkit-scrollbar {
    width: 0.35rem;
}
.subnav-primary__dropdown::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.subnav-primary__dropdown::-webkit-scrollbar-thumb {
    background-color: var(--neutral-600);
}

.back-to-parent {
    border: none;
}
.back-to-parent::after {
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    margin-inline-end: 0.5rem;
    rotate: 45deg;
    order: -1;
}

/* Aside */
.nav-primary__aside {
    gap: 1.5rem;
}
.product-callout {
    display: flex;
    gap: 2rem;
}
.product-callout__media {
    flex: 0 0 33%;
    aspect-ratio: 1/1;
    background-color: var(--neutral-100);
}
.product-callout__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-callout__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    white-space: normal;
}
.product-callout__title {
    font-weight: var(--fw-bold);
}

@media (max-width: 991.98px) {
    .nav-primary__dropdown {
        position: fixed;
        inset: 5rem 0 0 0;
    }
    .subnav-primary__dropdown {
        position: fixed;
        inset: 0;
        padding: 1rem;
    }
    .nav-primary .dropdown-menu {
        display: flex;
        flex-direction: column;
        translate: 100vw 0;
        transition: translate 200ms ease-in-out;
    }
    .nav-primary .dropdown-menu.show {
        translate: 0 0;
    }
}

/* Search form */
.search-form {
    display: flex;
    border: 1px solid transparent;
    border-bottom-color: var(--neutral-400);
}
.search-form__input {
    border: none;
    padding: 1rem 1.25rem;
}
.search-form__submit {
    background-color: transparent;
    border: none;
}
.search-form__input:focus,
.search-form__submit:focus {
    outline: none;
    box-shadow: none;
}
.search-form:focus-within {
    border-color: transparent;
    outline: 2px solid var(--accent-color);
}

@media (min-width: 62rem) {
    .search-form {
        order: 1;
        width: 90%;
    }
    .nav-about {
        order: 2;
    }
    .nav-account {
        order: 3;
        flex: 1;
    }
}

/* lang switch */
.lang-switch .dropdown-toggle {
    border: none;
    background-color: transparent;
}

.bold {
    font-size: 14px;
    font-weight: bold;
    color: #1a2732;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.light-grey {
    color: #7d8689;
}

.max-w-sm {
    max-width: 576px;
}

.block-border-grey {
    border: 1px solid #7d8689;
    padding: 20px;
}

.decoration-barre .barre1 {
    border: 1px solid #ccab52;
    width: 30px;
    margin: 10px auto 5px auto;
}

.decoration-barre .barre2 {
    border: 1px solid #ccab52;
    width: 15px;
    margin: auto;
}

.border-right-white {
    border-right: 1px solid #ffffff;
}

.rotate-180 {
    transform: rotate(180deg);
}

.whitespace-normal {
    white-space: normal !important;
}

.title-h1 {
    font-size: 35px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    color: #666666;
    margin: auto;
    margin-bottom: 20px;
}

#content h1.title-categorie,
.title-categorie {
    font-size: 18px;
    font-family: /*'Raleway'*/ "Lato", sans-serif;
    font-weight: bold;
    color: #666666;
    margin: auto;
    margin-bottom: 20px;
}

.description-categorie {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.21;
    letter-spacing: normal;
    color: #666666;
}

.description-categorie-no-bold {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.21;
    letter-spacing: normal;
    color: #666666;
}

.description-categorie-bigger {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.21;
    letter-spacing: normal;
    color: #666666;
}

a.description-categorie-no-bold:hover {
    color: #666666;
}

.text-gold-bold {
    color: #ccab52;
    font-weight: bold;
}

.toggle-gold-color {
    background-color: #ccab52;
    color: #ffffff !important;
    border-color: #ccab52 !important;
    font-weight: bold;
}

.toggle-dark-color {
    background-color: #1a2732 !important;
}

.link-gold-color {
    color: #ccab52;
}

.link-gold-color:hover {
    color: #ccab52;
}

.info-manquante {
    color: #cbcbcb;
    font-weight: normal;
}

.separation-barre {
    margin: 20px 0 20px 0;
    border-bottom: 1px solid #7d8689;
}

.separation-barre-right {
    border-right: 1px solid #7d8689;
}

.input-grey-border {
    border: 1px solid #dfe0e1;
    padding: 5px;
    font-size: 12px;
}

.img-text-adapt {
    height: 2em;
}

.carousel-navigation-left {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 10%;
}

.carousel-navigation-right {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 10%;
}

.customPreviousBtn,
.customNextBtn {
    font-weight: bold;
    font-size: 30px;
}

.customPreviousBtn:hover,
.customNextBtn:hover {
    cursor: pointer;
}

.btn-group .btn {
    border: 1px solid #1a2732;
}

.btn-group .active {
    background: #1a2732;
    color: #ffffff;
}

.btn-group input {
    display: none;
}

input[type="number"] {
    width: 100px;
}

.when-max-width-992 {
    display: none;
}

@media (max-width: 62rem) {
    .separation-barre-right {
        border: none;
    }

    .when-max-width-992 {
        display: block;
    }
}

.w1200 {
    max-width: 1200px;
    margin: auto;
}

.w1140 {
    max-width: 1140px;
    margin: auto;
}
.container-large {
    max-width: 1680px;
    margin-inline: auto;
}

i {
    margin-left: 5px;
    vertical-align: bottom;
}

#submenu {
    box-shadow: 1px 6px 5px #0b0b0b17;
    position: relative;
    z-index: 50;
}

#submenu nav {
    max-width: 1140px;
    margin: auto;
    text-align: center;
}

#submenu nav > a {
    width: 20%;
    margin: 0 20px;
    padding: 15px 20px;
    /*background-color: rgba(0, 0, 0, 0.34);*/
    color: #ffffff;
    display: inline-block;
    position: relative;
}

#submenu nav > a:hover {
    text-decoration: none;
}

#submenu nav > a::before {
    content: "";
    /* filter: blur(1px); */
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

#submenu nav a:hover {
    cursor: pointer;
}

#submenu nav > a#expose::before {
    background-color: rgba(10, 22, 153, 1);
}

#submenu nav > a#welcome::before {
    background-color: rgba(247, 166, 56, 1);
}

#submenu nav > a#conserve::before {
    background-color: rgba(0, 162, 202, 1);
}

#submenu nav > a#restore::before {
    background-color: rgba(67, 149, 138, 1);
}

#submenu nav > a#store::before {
    background-color: rgb(67, 79, 149);
}

#submenu nav > a#frame::before {
    background-color: rgb(67, 79, 149);
}

#submenu .dropdown-menu {
    margin: 0;
    border-radius: 0;
    background-color: #000000;
}

#submenu .dropdown-menu a {
    color: #ffffff;
}

#submenu .dropdown-item:hover {
    background-color: #2d2d2d;
}

@media (max-width: 62rem) {
    #submenu {
        display: none;
    }

    .dropdown-item {
        line-height: 2;
    }
}

.super-menu-class {
    width: 100%;
    transition: height 0.2s linear, opacity 0.4s linear;
    height: 0;
    opacity: 0;
}

/*   replaced by bootstrap class: collapse multi-collapse
.super-sub-menu-class {
  transition: height 0.2s linear, opacity 0.4s linear;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
*/

.super-menu-class .content {
    display: none;
}

.super-menu-class.open {
    height: 100vh;
    opacity: 1;
}

.super-submenu-class.open {
    height: 100vh;
    opacity: 1;
}

.super-menu-class.open .content {
    display: block;
    height: 100%;
    margin: 100px 80px;
}

.super-menu-class.open .block1,
.super-menu-class.open .block2 {
    opacity: 1;
    height: 100%;
}

.super-menu-class .block1,
.super-menu-class .block1 {
    height: 0;
}

.super-menu-class .block1::after,
.super-menu-class .block2::after {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    content: "";
}

/* Changer les couleurs de chaque menu ici et si besoin de rajouter incrementer la classe +1 */
#super-menu-1 .block1 {
    background-color: rgba(10, 22, 153, 0.56);
}

#super-menu-1 .block2 {
    background-color: rgba(10, 22, 153, 0.75);
}

#super-menu-1 .block1::after {
    background: url("../img/EXPOSER.jpg") no-repeat;
    background-size: cover;
}

#super-menu-2 .block1 {
    background-color: rgba(247, 166, 56, 0.56);
}

#super-menu-2 .block2 {
    background-color: rgba(247, 166, 56, 0.75);
}

#super-menu-2 .block1::after {
    background: url("../img/ACCUEILLIR.jpg") no-repeat;
    background-size: cover;
}

#super-menu-3 .block1 {
    background-color: rgba(0, 162, 202, 0.56);
}

#super-menu-3 .block2 {
    background-color: rgba(0, 162, 202, 0.75);
}

#super-menu-3 .block1::after {
    background: url("../img/CONSERVER.jpg") no-repeat;
    background-size: cover;
}

#super-menu-4 .block1 {
    background-color: rgba(67, 149, 138, 0.56);
}

#super-menu-4 .block2 {
    background-color: rgba(67, 149, 138, 0.75);
}

#super-menu-4 .block1::after {
    background: url("../img/RESTAURER.jpg") no-repeat;
    background-size: cover;
}

#super-menu-5 .block1::after {
    background: url("../img/RESTAURER.jpg") no-repeat;
    background-size: cover;
}

#super-menu-5 .block2 {
    background-color: rgba(32, 87, 79, 0.75);
}

#super-menu-6 .block1::after {
    background: url("../img/RESTAURER.jpg") no-repeat;
    background-size: cover;
}

#super-menu-6 .block2 {
    background-color: rgba(32, 87, 79, 0.75);
}

.super-menu-class .block1 h3 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.08;
    text-align: left;
    color: #ffffff;
}

.super-menu-class .block1 h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.08;
    text-align: left;
    color: #ffffff;
}

.super-menu-class nav {
    display: flex;
    flex-direction: column;
}

.super-menu-class .block1 .block-left a {
    font-size: 16px;
    color: #ffffff;
    line-height: 18px;
    font-weight: normal;
    margin-bottom: 16px;
}

.super-menu-class .block1 .block-right a {
    font-size: 16px;
    color: #ffffff;
    line-height: 2;
    font-weight: normal;
}

.super-menu-class .block2 h3 {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.63;
    text-align: left;
    color: #ffffff;
    text-transform: uppercase;
}

.super-menu-class .block2 img {
    width: 100%;
}

.super-menu-class .block2 span {
    font-size: 16px;
    font-weight: normal;
    line-height: 3.25;
    color: #ffffff;
}

.super-menu-class .block2 a {
    font-size: 16px;
    line-height: 3.25;
    color: #ffffff;
    text-transform: uppercase;
}

.menu-right-img {
    display: block;
    width: 50%;
}

@media (max-width: 62rem) {
    .super-menu-class {
        display: none;
    }
}

#menu-mon-compte {
    border-right: 1px solid #1a2732;
}

#menu-mon-compte ul,
#menu-mon-compte li {
    list-style-type: none;
    padding: 0;
}

#menu-mon-compte li {
    margin-bottom: 5px;
}

#menu-mon-compte ul > li > ul > li a {
    padding: 5px 30px;
}

#menu-mon-compte .categorie {
    padding: 5px 10px;
}

#menu-mon-compte .categorie:hover {
    cursor: pointer;
    background-color: #1e3747;
}

#menu-mon-compte ul > li > a {
    color: #ffffff;
}

#menu-mon-compte ul > li > a:hover {
    text-decoration: none;
}

#menu-mon-compte .active:hover {
    background-color: #3c4c59 !important;
}

#menu-mon-compte ul > li > ul > li > a {
    color: #0e1315;
}

#menu-mon-compte ul > li > ul > li > a:hover {
    text-decoration: none;
}

#menu-mon-compte ul > li > ul > li:hover {
    background-color: #f0f0f0;
}

#menu-mon-compte .active a {
    color: #ffffff;
}

#menu-mon-compte .active {
    background-color: #1a2732 !important;
    color: #ffffff !important;
}

#menu-mon-compte a {
    width: 100%;
    display: block;
    white-space: nowrap;
}

#menu-mon-compte i {
    margin-right: 5px;
}

#menu-mon-compte .special-section {
    background-color: #ededed;
}

#menu-mon-compte .special-section li:hover {
    background-color: #cccccc;
}

@media (max-width: 62rem) {
    #menu-mon-compte {
        border-right: none;
    }

    #menu-mon-compte .dropdown {
        visibility: hidden;
        margin: 0;
        max-height: 0;
        transition: visibility 0.2s ease-in-out, max-height 500ms ease-in-out;
    }

    #menu-mon-compte .dropdown ul {
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
    }

    #menu-mon-compte .dropdown.open {
        visibility: visible;
        height: 100%;
        max-height: 500px;
    }

    #menu-mon-compte .dropdown.open ul {
        opacity: 1;
    }
}

#menu-mon-compte .categorie {
    background-color: #ccab52;
    color: #ffffff;
    font-weight: bold;
}

#article {
    padding: 114px 20px;
    position: relative;
    background: url("../img/bg.jpg") no-repeat;
    background-size: cover;
}

#article .nav-left {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 10%;
}

#article .nav-right {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 10%;
}

#article .customPreviousBtn,
#article .customNextBtn {
    font-size: 3em;
}

#article .customPreviousBtn:hover,
#article .customNextBtn:hover {
    cursor: pointer;
}

#article .titre-article {
    font-size: 24px;
    text-align: center;
    font-family: Lato;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #ffffff;
}

#article .left-carousel {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
}

#article .right-carousel {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), #000000);
}

#article .rotate-text {
    transform: rotate(-90deg);
}

#article .block {
    background-color: #ffffff;
    padding: 100px;
    width: 100%;
    display: block;
}

#article .block h1,
#article .block h2,
#article .block .h2-slider-home {
    font-size: 64px;
    border-bottom: 2px solid #ccab52;
}

#article .block .content {
    color: #999999;
}

#article .block .content p {
    margin-top: 20px;
}

#article .block .content h2,
#article .block .content h3,
#article .block .content .h2-slider-home,
#article .block .content .h3-slider-home {
    font-size: 32px;
    margin-top: 20px;
    color: #000000;
}

#article .block .link {
    background-color: #000000;
    display: inline-block;
    padding: 20px 40px;
    text-transform: uppercase;
    float: right;
    margin-top: 20px;
}

#article .block .link a {
    color: #ffffff;
}

#article .block img {
    width: auto;
    margin: auto;
}

#article .block .left-side {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

@media (max-width: 62rem) {
    #article {
        padding: 80px 20px;
    }

    #article .nav-left,
    #article .nav-right,
    #article .titre-article,
    #article .img {
        display: none;
    }

    #article .block {
        background-color: initial;
        padding: 0;
    }

    #article .block h3,
    #article .block .h3-slider-home {
        font-size: 13vw;
    }

    #article .block .content {
        color: #ffffff;
        margin-bottom: 50px;
    }
}

.catalog-section {
    background: var(--neutral-300, #ecedee);
    padding: 120px 0 150px 0;
}

.catalog-section__title {
    display: inline-block;
    padding-bottom: 20px;
    font-size: 3.125rem;
    font-weight: var(--fw-bold, 700);
    text-align: left;
    color: var(--accent-color, #ccab52);
}

.catalog-items {
    display: grid;
    gap: 2rem;
}
@media (min-width: 48rem) {
    .catalog-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.catalog-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    isolation: isolate;
    background-image: var(--catalog-bg);
    border-radius: 1rem;
    overflow: hidden;
}
@media (min-width: 48rem) {
    .catalog-item {
        padding: 2rem;
    }
}
.catalog-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(191, 163, 81, 0.9);
    backdrop-filter: blur(2px);
}
.catalog-item__title {
    width: 100%;
    color: var(--neutral-100, #fff);
    font-weight: var(--fw-bold, 700);
    font-size: 1.5rem;
    text-align: center;
}
@media (min-width: 48rem) {
    .catalog-item__title {
        font-size: 2.5rem;
        text-align: start;
        grid-template-columns: 1fr 2fr;
    }
}
.catalog-item__image {
    flex: 0;
    width: clamp(160px, 2vw, 100%);
}
.catalog-item__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: center;
}

.catalog-item__link {
    --fg-color: white;
    --bg-color: transparent;
    --icon-color: var(--neutral-900, #111);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    gap: 0.5rem;
    color: var(--fg-color);
    background-color: var(--bg-color);
    text-decoration: none !important;
    outline: none;
}
.catalog-item__link i,
.catalog-item__links svg {
    flex: 0;
    font-size: 1.25rem;
    color: var(--icon-color);
}
.catalog-item__link:hover,
.catalog-item__link:focus-visible {
    --fg-color: var(--accent-color, #ccab52) !important;
    --bg-color: var(--neutral-100, #fff);
    --icon-color: var(--accent-color, #ccab52);
    color: var(--fg-color);
    background-color: var(--bg-color);
}

#product {
    padding: 120px 20px;
}

#product h3,
#product h2,
#similar-product h3,
#similar-product h2 {
    font-size: 36px;
    border-bottom: 3px solid #ccab52;
    margin-bottom: 60px;
    text-align: left;
    display: inline-block;
    padding-bottom: 20px;
}

#product .tab-content {
    width: 100%;
    text-align: center;
}

.featured-products .nav {
    justify-content: space-around;
    margin-inline: auto;
    margin-bottom: 2rem;
    width: 100%;
    border-bottom: 1px solid #000000;
}

.featured-products .nav-item {
    padding: 0;
    text-align: center;
}

.featured-products .nav-item a {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
}

#product div.product-title {
    margin-top: 20px;
}

.featured-products .nav-item a.active {
    display: inline-block;
    border-bottom: 8px solid var(--accent-color);
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
}

#product ul a:hover {
    text-decoration: none;
}

#product .link-grey-color {
    color: #666666;
    text-decoration: none;
}

@media (max-width: 62rem) {
    #product {
        padding: 40px 20px;
    }

    #product ul {
        margin-bottom: 20px;
    }

    #product ul li {
        margin: 10px 0;
    }
}

#actualite {
    padding-inline: 1rem;
}
@media (min-width: 62rem) {
    #actualite {
        background: url("../img/shape.svg");
        background-repeat: no-repeat;
        background-position: -25% center;
        background-size: 25%;
    }
}

#actualite .owl-prev {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    left: -50px;
    display: block !important;
    border: 0px solid black;
}

#actualite .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    right: -25px;
    display: block !important;
    border: 0px solid black;
}

#actualite .owl-prev i,
#actualite .owl-next i {
    font-size: 3em;
    color: #ccab52;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none;
    opacity: 1;
    cursor: pointer;
}

.owl-next:focus,
.owl-prev:focus {
    outline: none;
}

#actualite .owl-stage {
    display: flex;
}

#actualite .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.carousel-actu__item {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    min-height: 25rem;
    color: #ffffff;
    box-shadow: 4px 5px 5px #000000ad;
}

#actualite .background1 {
    max-width: 550px;
    background-color: rgba(204, 171, 82, 0.72);
}

#actualite .background1::before {
    content: "";
    background: url("../img/Rectangle 116.png") no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.carousel-actu__title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    width: fit-content;
    border-bottom: 2px solid var(--accent-color);
}

.carousel-actu__link {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
    align-self: flex-start;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
    background-color: #000000;
    color: var(--neutral-100);
    margin-top: auto;
}
.carousel-actu__link:hover,
.carousel-actu__link:focus-visible {
    background-color: var(--neutral-100);
    color: var(--accent-color);
    text-decoration: none;
}

#actualite .nav-left {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 10%;
}

#actualite .nav-right {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 10%;
}

#actualite .customPreviousBtn2,
#actualite .customNextBtn2 {
    font-size: 3em;
    color: #ccab52;
}

@media (max-width: 62rem) {
    #actualite .nav-left,
    #actualite .nav-right {
        display: none;
    }

    .carousel-actu__item {
        padding: 20px;
        height: auto;
    }
}

#newsletter {
    color: #ffffff;
}

.newsletter-title {
    font-size: 30px;
}

#newsletter .block1,
#newsletter .block2 {
    padding: 80px 20px;
}

#newsletter .maxwidth {
    max-width: 640px;
    margin: auto;
}

#newsletter .block1 {
    background-color: rgba(147, 147, 147, 0.77);
    position: relative;
}

#newsletter .block1::after {
    content: "";
    background: url("../img/Rectangle 130.png") no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

#newsletter .block2 {
    background-color: rgba(165, 165, 165, 0.15);
    position: relative;
}

#newsletter .block2::after {
    content: "";
    background: url("../img/Rectangle 125.png") no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

#newsletter .blockform {
    width: 100%;
    margin-top: 50px;
}

#newsletter input {
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    color: #ffffff !important;
    border-radius: 0;
}

#newsletter input::placeholder {
    color: #ffffff;
}

#newsletter button {
    background-color: #000000;
    color: #ffffff;
}

#paiement {
    background-color: #ccab52;
    color: #ffffff;
    text-transform: uppercase;
    padding: 60px 20px;
}

#paiement .block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#paiement img {
    margin: 10px;
}

#paiement span {
    text-align: left;
}

@media (max-width: 62rem) {
    #paiement {
        padding: 40px 20px;
    }

    #paiement .block {
        display: flex;
        flex-direction: initial;
        align-items: center;
        justify-content: flex-start;
    }
}

#contact {
    font-size: 16px;
    color: #999999;
    margin-top: 60px;
}

@media (min-width: 62rem) {
    #contact {
        margin-bottom: 60px;
    }
}

#contact .block {
    padding: 20px;
}

#contact .link {
    margin-top: 100px;
}

#contact .links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 20px;
}

@media (min-width: 62rem) {
    #contact .links {
        flex-direction: row;
    }
}

#contact .address svg,
#contact .phone svg,
#contact .email svg {
    margin-right: 0.75rem;
}

#contact .site-logo {
    display: block;
    max-width: 85%;
}

#contact a,
#contact-page-bottom a {
    color: #ccab52;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 62rem) {
    #contact {
        padding: 40px 20px;
    }
}

@media (max-width: 62rem) {
    #contact .block-logo {
        display: none;
    }
}

footer {
    background-color: #333333;
    color: #ffffff;
    padding: 25px 0;
    font-size: 16px;
}

footer a {
    background-color: #333333;
    color: #ffffff;
    padding-left: 3px;
}

footer a:hover {
    text-decoration: none;
    color: #e1ce9c;
}

@media (max-width: 720px) {
    #product ul {
        padding: 10px;
    }
}

#breadcrumb {
    color: #7d8689;
    font-size: 12px;
    border-bottom: 1px solid #7d8689;
    margin-bottom: 20px;
    line-height: 2;
}

#breadcrumb a {
    color: #7d8689;
}

#breadcrumb .link-gold-color > a {
    color: #ccab52;
}

#pagination-select {
    color: #7d8689;
    font-size: 12px;
    margin-bottom: 20px;
}

#pagination-select select {
    margin: 0 5px;
    width: 45px;
}

#pagination {
    display: flex;
    justify-content: center;
}

#pagination a {
    color: #c4c4c4;
    float: left;
    padding: 3px 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 1px solid #dddddd;
    width: 30px;
    height: 30px;
}

#pagination a.active {
    background-color: #1a2732;
    color: #ffffff;
    width: 30px;
    height: 30px;
    margin: 0 4px;
}

#pagination a:hover:not(.active) {
    background-color: #dddddd;
}

#content {
    padding: 60px 20px;
}

#content h1 {
    font-size: 36px;
    text-align: left;
    font-family: Raleway, sans-serif;
    color: #666666;
    font-weight: bold;
    text-transform: uppercase;
}

#shop .picture,
#favoris .picture {
    width: 100%;
    max-width: 220px;
    height: 227px;
    background-color: #b1b3b4;
    border: black;
    margin: 10px auto 10px auto;
}

#shop .caption {
    width: 220px;
    margin: 0 auto 40px auto;
}

#shop .picture img,
#favoris .picture img {
    width: 100%;
    height: 100%;
    top: 0;
}

#shop h6 {
    color: #7d8689;
    font-size: 12px;
    margin-bottom: 0;
}

#shop .price {
    font-family: Lato;
    font-size: 12px;
    font-weight: bold;
    color: #1a2732;
}

#shop-product {
    padding: 40px 20px 60px 20px;
}

#shop-product h1 {
    font-family: Raleway;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #666666;
}

#shop-product .picture img {
    max-height: 500px;
    background-size: cover;
}

#shop-product .picture figure {
    position: relative;
    background-size: cover;
    text-align: center;
}

#shop-product .picture figure figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #7d8689bf;
    color: #ffffff;
    padding: 18px 20px;
    font-size: 12px;
}

#shop-product .carousel-product .item {
    width: 200px;
    height: 200px;
    background-color: grey;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
    cursor: pointer;
}

#shop-product .carousel-product .customPreviousBtn,
#shop-product .carousel-product .customNextBtn {
    font-size: 16px;
}

#shop-product .content {
    line-height: 1.5em;
    color: #7d8689;
}

#shop-product .link-product {
    margin-bottom: 30px;
}

#shop-product .link-product i {
    color: #ccab52;
    width: 20px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
}

#shop-product .link-product a {
    color: #4b575f;
    font-size: 12px;
    line-height: 2em;
    vertical-align: middle;
}

.product-table thead th {
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-table tbody td {
    border-right: 2px solid #dee2e6;
    border-top: none;
    vertical-align: middle;
}

.product-table tbody td:first-child {
    border-left: none;
}

.product-table tbody td:last-child {
    border-right: none;
}

.product-table tbody img {
    max-width: 150px;
    max-height: 150px;
    margin: 0 10px;
}

.product-table select {
    border: 2px solid #dfe0e1;
    margin-bottom: 10px;
}

.order-button:hover,
.delete-button:hover,
.add-button:hover,
.add-button-2:hover {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.order-button {
    background-color: #1a2732;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
    display: inline-block;
}

.add-button {
    background-color: #1a2732;
    color: #ffffff;
    padding: 10px 40px;
    font-size: 18px;
    white-space: nowrap;
    display: inline-block;
    border: none;
    text-align: center;
}

.add-button.disabled {
    opacity: 0.65;
    pointer-events: none;
}

.add-button-2 {
    background-color: #4b575f;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-button-grey {
    background-color: #cbcbcb;
    color: #1a2732;
    padding: 10px 40px;
    font-size: 18px;
    white-space: nowrap;
    display: inline-block;
}

.add-button-grey:hover {
    text-decoration: none;
    color: #1a2732;
}

.add-button i {
    margin-right: 10px;
}

.button-gold {
    background-color: #ccab52;
    color: white;
    padding: 10px 40px;
    font-size: 18px;
    white-space: nowrap;
    display: inline-block;
}

.button-gold:hover {
    text-decoration: none;
    color: white;
    background: #b49747;
}

.delete-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #1a2732;
    color: #ffffff;
    font-size: 20px;
    white-space: nowrap;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-button i,
.delete-button i {
    margin-left: 0;
}

.ask-connect-button {
    background-color: #ccab52;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.ask-connect-button a {
    color: #ffffff;
}

.ask-connect-button a:hover {
    text-decoration: none;
}

.ask-connect-button a em {
    text-decoration: underline;
    font-style: normal;
}

.title-h2-bold {
    font-size: 24px;
    font-weight: bold;
}

.more-product {
    margin: 50px 0;
}

#similar-product {
    margin: 40px 0;
}

#similar-product h2 {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.17;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/*#similar-product .carousel .item {*/
/*    width: 200px;*/
/*    height: 200px;*/
/*    background-color: grey;*/
/*    margin: auto;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    display: flex;*/
/*    align-items: end;*/
/*    justify-content: center;*/
/*}*/

#similar-product .carousel .item .legend {
    width: 100%;
    background: white;
    text-align: center;
    padding: 0.5rem 0 0 0;
    color: #212529;
}

#favoris {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#favoris .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#favoris figure {
    width: 100%;
    max-width: 250px;
}

#favoris figure img {
    width: 100%;
    height: 200px;
    background-color: grey;
    margin-bottom: 10px;
}

#favoris figure figcaption {
    font-size: 12px;
    font-weight: normal;
    line-height: 1.25;
    text-align: left;
    color: #1a2732;
}

.yellow-button,
.red-button {
    display: inline-block;
    width: 190px;
    padding: 10px;
    background-color: #ccab52;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    white-space: nowrap;
    margin: 0 auto 10px auto;
    text-align: center;
}

.yellow-button {
    background-color: #ccab52;
}

.red-button {
    background-color: #b10034;
}

.yellow-button:hover,
.red-button:hover {
    color: #ffffff;
    text-decoration: none;
}

#breadcrumb-panier {
    margin: 20px 10px;
}

#breadcrumb-panier .row > div {
    padding: 0 5px;
}

#breadcrumb-panier a {
    background-color: #ededed;
    font-size: 14px;
    font-weight: bold;
    color: #1a2732;
    text-align: center;
    width: 100%;
    display: inline-block;
    padding: 10px;
    margin-bottom: 10px;
}

#breadcrumb-panier a:hover {
    text-decoration: none;
    background-color: #e1ce9c;
}

#breadcrumb-panier a.active {
    background-color: #ccab52;
    color: #ffffff;
}

#breadcrumb-panier span {
    background-color: #ededed;
    font-size: 14px;
    font-weight: bold;
    color: #1a2732;
    text-align: center;
    width: 100%;
    display: inline-block;
    padding: 10px;
    margin-bottom: 10px;
}

#breadcrumb-panier span.active {
    background-color: #ccab52;
    color: #ffffff;
}

@media (max-width: 720px) {
    #shop-product .carousel-navigation-left,
    #shop-product .carousel-navigation-right,
    #similar-product .carousel-navigation-left,
    #similar-product .carousel-navigation-right {
        display: none;
    }
}

#feuilleter {
    background-color: #4b575f;
    padding: 20px;
}

#feuilleter img {
    width: 100%;
}

#feuilleter h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 0.81;
    color: #ccab52;
    margin-bottom: 20px;
}

#feuilleter p {
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: normal;
    color: #999999;
    margin-bottom: 20px;
}

#feuilleter a {
    background-color: #000000;
    display: table;
    padding: 20px 40px;
    text-transform: uppercase;
    color: #ffffff;
    width: fit-content;
}

#feuilleter .form {
    display: flex;
    margin: 0 0 40px 0;
}

#feuilleter input {
    background-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border: none;
    padding: 20px;
    width: 100%;
}

#feuilleter input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1; /* Firefox */
}

#feuilleter button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 20px;
}

#feuilleter .block-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0;
}

.popover-header,
.popover-body {
    background-color: #ededed;
}

#connexion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

#connexion input {
    border: 1px solid #cbcbcb;
}

#connexion a {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.62;
    color: #1a2732;
}

#legal-mentions {
    margin-top: 60px;
    margin-bottom: 60px;
}

#legal-mentions p {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 1.62;
    color: #666666;
}

#legal-mentions h1 {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    color: #666666;
    text-transform: uppercase;
}

#cgv {
    margin-top: 60px;
    margin-bottom: 60px;
}

#cookies {
    margin-top: 60px;
    margin-bottom: 60px;
}

#cookies p {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 1.62;
    color: #666666;
}

#cookies h1 {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    color: #666666;
    text-transform: uppercase;
}

#presentation h1 {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    color: #666666;
    text-transform: uppercase;
}

#presentation h2 {
    text-transform: uppercase;
}

#presentation p {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 1.62;
    color: #666666;
}

#presentation h3,
#presentation p {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 1.62;
    color: #666666;
    margin: 10px auto;
}

#presentation .img {
    width: 100%;
    /* background-color: grey; */
    border: 2px solid #1a2732;
    margin-bottom: 20px;
}

#presentation img {
    width: 100%;
}

#presentation img.img-inline {
    width: auto;
    vertical-align: text-bottom;
}

#presentation .description {
    width: 100%;
    background-color: #1a2732;
    color: #ffffff;
    padding: 20px;
}

#presentation .small-text {
    font-size: 14px;
    line-height: 1.21;
    font-size: 13px;
}

.small-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.21;
    color: #ccab52;
    margin: 0;
}

.big-title {
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #ccab52;
    text-transform: uppercase;
}

.img-article {
    width: 100%;
}

.border-article {
    padding: 20px;
    /*
    border-top: 1px solid #7d8689;
    border-left: 1px solid #7d8689;
    border-right: 1px solid #7d8689;
    border-bottom: 1px solid #7d8689;
    */
}

.date-article {
    font-size: 12px;
    color: #7d8689;
    margin-bottom: 10px;
}

#tab-menu {
    margin-bottom: 30px;
    border-bottom: 1px solid #dfe0e1;
}

#tab-menu a {
    padding: 10px;
    display: inline-block;
    text-transform: uppercase;
}

#tab-menu a:hover {
    cursor: pointer;
}

#tab-menu a.active {
    color: #ffffff;
    background-color: #1a2732;
}

#tab-menu .right-button {
    float: right;
    background-color: #1a2732;
}

#tab-menu .right-button a {
    color: #ffffff;
}

#tab-menu .right-button i {
    margin-right: 5px;
}

#tab-menu .right-button a:hover {
    text-decoration: none;
}

#tab-menu-content > div {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#tab-menu-content > div.active {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* RADIO BUTTON */
/* [type="radio"]:checked,
[type="radio"]:not(:checked),
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after{
  content: '';
  width: 12px;
  height: 12px;
  background: black;
  position: absolute;
  top: 3px;
  left: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after, [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after, [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
} */
/* END RADIO BUTTON */

.input-file input[type="file"] {
    position: absolute;
    margin-top: 3px;
    margin-left: 3px;
    height: 1px;
    width: 1px;
    z-index: -5;
}

#suivi {
    padding: 20px;
}

#suivi .content .vertical-step {
    height: 0;
    visibility: hidden;
    opacity: 0;
}

#suivi .content.open .vertical-step {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

#suivi .open-menu {
    padding: 10px 20px;
    color: #ffffff;
    background-color: #666666;
    margin-right: 10px;
    white-space: nowrap;
    cursor: pointer;
}

#suivi .open-menu.open {
    background-color: #ccab52;
}

#suivi .open-menu.open i {
    transform: rotate(180deg);
}

#suivi .barre {
    border-bottom: 1px solid #ccab52;
    width: 100%;
}

.vertical-step {
    padding: 20px;
}

.vertical-step .node {
    height: 40px;
    width: 40px;
    padding: 18px 0;
    border-radius: 50%;
    display: inline-block;
    transition: all 1000ms ease;
    text-align: center;
    background-color: #cbcbcb;
}

.vertical-step .divider {
    height: 50px;
    width: 2px;
    margin-left: 19px;
    transition: all 800ms ease;
    background-color: lightgrey;
}

.vertical-step .activated {
    color: #ffffff;
    background-color: #ccab52 !important;
}

.vertical-step li p {
    display: inline-block;
    margin-left: 25px;
    font-size: 14px;
    line-height: 1.21;
    letter-spacing: normal;
    color: #666666;
    margin-bottom: 0;
    width: 70%;
}

.vertical-step a {
    color: #1a2732;
    text-decoration: underline;
    font-weight: bold;
}

.vertical-step ul {
    padding: 0;
}

.vertical-step li {
    list-style: none;
    line-height: 1px;
}

.masonry .grid-sizer {
    width: 50%;
}

.masonry .grid-item--width2 {
    width: 48%;
    margin-bottom: 20px;
    margin-left: 1%;
    margin-right: 1%;
    border: solid 1px black;
    padding: 10px;
}

.border-event {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 1%;
    margin-right: 1%;
    border: solid 1px #ededed;
    padding: 10px;
}

.border-event-text {
    padding: 0px;
}

.border-event-text button {
    position: absolute;
    bottom: 0px;
}

.border-event-img {
    padding: 0px;
}

@media (max-width: 62rem) {
    .masonry .grid-item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

#shop .pagination a:hover:not(.active) {
    background-color: #dddddd;
}

/* Contact page */

.h1 {
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    color: #666666;
    margin: auto;
    margin-bottom: 20px;
}

.h1-golden {
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: left;
    color: #ccab52;
    margin-top: 20px;
    margin-bottom: 10px;
}

.h1-subtitle {
    margin: auto;
    margin-top: 5%;
    margin-bottom: 8%;
    width: 229px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
}

.p-title {
    font-family: Lato;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.62;
    letter-spacing: normal;
    text-align: center;
    flex-wrap: wrap;
    color: #0e1315;
}

.p {
    font-family: Lato;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.62;
    letter-spacing: normal;
    text-align: left;
    color: #666666;
}

.p-paragraph {
    font-family: Lato;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: left;
    /* color: #0e1315; */
    color: #666666;
    /* color: #7d8689; */
}

.p-text {
    font-family: Lato;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
}

.p-padding-center {
    padding-left: 5%;
    padding-right: 5%;
}

#contact label {
    font-family: Lato;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: normal;
    color: #666666;
}

#contact .checkbox-list {
    text-align: left;
}

#contact-page-top {
    margin-top: 60px;
    margin-bottom: 120px;
    background-color: #ffffff;
}

#contact-page-top .flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#contact-page-top .flex-container > div {
    margin: 10px;
    padding: 20px;
    width: 174px;
    height: 90.4px;
    background-color: #1a2732;
    text-align: center;
    vertical-align: middle;

    font-family: Lato;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-decoration: none;
    color: #ffffff;
}

#contact-page-top .flex-container > div:hover {
    opacity: 0.8;
}

#contact-page-top .buttons > a {
    font-family: Lato;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-decoration: none;
    color: #ffffff;
}

#contact-page-bottom {
    background-color: #ededed;
}

#contact-page-bottom .blocs-bot {
    text-align: center;
    padding-top: 10%;
}

#contact-page-bottom .blocs-bot > h2 {
    margin-top: 1rem;
    font-family: Raleway;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 3.2px;
    color: #0e1315;
}

#contact-page-bottom .line-separator-a {
    width: 30px;
    height: 0;
    margin: auto;
    margin-top: 3px;
    margin-bottom: 3px;
    border: solid 1px #ccab52;
}

#contact-page-bottom .line-separator-b {
    width: 20px;
    height: 0;
    margin: auto;
    margin-top: 3px;
    margin-bottom: 10%;
    border: solid 1px #ccab52;
}

#contact-request {
    margin-top: 60px;
    margin-bottom: 120px;
}

#glossary {
    margin-top: 60px;
    margin-bottom: 120px;
    background-color: #ffffff;
}

#glossary .glossary-letters {
    font-family: Lato;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.21;
    letter-spacing: -0.24px;
    text-align: center;
    color: #666666;
}

#glossary .letter-link {
    font-family: Lato;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    text-decoration: none;
    line-height: 1.21;
    letter-spacing: -0.24px;
    text-align: center;
    color: #666666;
}

#glossary .letter-link:hover {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -0.3px;
    color: #ccab52;
}

#product h3.product-title,
#similar-product h3.product-title {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-top: 20px;
    padding-bottom: 10px;
    width: fit-content;
}

#glossary .letter-link:active {
    color: #ffffff;
}

#glossary .p-glossary {
    font-family: Lato;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.62;
    letter-spacing: normal;
    text-align: left;
    color: #666666;
    margin-bottom: 40px;
}

#sitemap {
    margin-top: 60px;
    margin-bottom: 60px;
}

#sitemap .links {
    color: #000000;
}

#sitemap h2 {
    margin-top: 40px;
    margin-bottom: 10px;
}

#sitemap .tabspace {
    margin-left: 40px;
}

/* Custom BS4 pagination colors */
.pagination .page-link,
.pagination .page-item {
    border-radius: 0 !important;
}

.page-item.active .page-link {
    background-color: #666666;
    border-color: #666666;
}

.page-item.disabled .page-link {
    color: #666666;
}

.page-item .page-link {
    color: #ccab52;
}

.in-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #435660;
    border-radius: 50%;
    color: #ffffff;
    width: 100px;
    height: 100px;
    margin: auto;
}

/*------------------------------------*\
	Cookie
\*------------------------------------*/

#cookie-law {
    position: fixed;
    z-index: 999;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 10px;
    border-radius: 4px;
}

.cok-contain {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

#cookie-law h3 {
    color: #ffffff;
}

#cookie-law p a.btn.btn-danger {
    background: transparent;
    border: none;
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 16px;
    padding: 0;
    font-weight: 100 !important;
    margin: 0;
}

#cookie-law p a {
    color: #ffffff;
    margin-left: 10px;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 600;
}

#cookie-law p {
    margin: 5px 0 0;
    text-align: left;
    color: #ffffff;
    line-height: 22px;
}

.no-wrap {
    white-space: nowrap;
}

#submenu nav > a[data-type="expose"]::before {
    background-color: #0a1699;
}

#submenu nav > a[data-type="welcome"]::before {
    background-color: #f7a638;
}

#submenu nav > a[data-type="conserve"]::before {
    background-color: #00a2ca;
}

#submenu nav > a[data-type="store"]::before {
    background-color: #00566b;
}

#submenu nav > a[data-type="frame"]::before {
    background-color: #00566b;
}

#submenu nav > a[data-type="restore"]::before {
    background-color: #43958a;
}

.mr-5 {
    margin-right: 5px !important;
}

#super-menu ul.categorie-produits {
    padding: 0;
}

#super-menu ul.categorie-produits li {
    font-size: 24px;
    color: #ffffff;
    line-height: 38px;
    font-weight: bold;
    margin-bottom: 16px;
    list-style-type: none;
}

.h3-produit-phare {
    font-size: 24px;
    line-height: 1.63;
    text-align: left;
    color: #ffffff;
    font-weight: bold;
}

#actualite,
#product {
    background-color: #ffffff;
}

@media (max-width: 6) {
    #catalogue a {
        line-height: 1;
        padding-bottom: 15px;
    }

    header .menu-2 .link {
        font-size: 20px;
        height: auto;
        line-height: 2.5;
    }

    #contact {
        margin-top: 0;
        margin-bottom: 0;
    }

    #article {
        background: #cdb87e;
    }

    #article .block .h2-slider-home {
        font-family: Lato;
        font-size: 48px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.19;
        letter-spacing: normal;
        text-align: center;
        color: #000000;
        border-bottom: 2px solid #ffffff;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

#article .block .content h3 {
    padding-bottom: 10px;
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mr-10 {
    margin-right: 10px;
}

@media (min-width: 62rem) and (max-width: 1200px) {
    header .block .link ul li a {
        font-size: 13px;
    }
}

#pageselector-container {
    background: rgba(0, 0, 0, 0.5) !important;
}

#super-menu ul.categorie-produits li.categorie-nom {
    color: #ffffff;
}

.h2-slider-home a {
    color: #0a0a0a;
}

.h2-slider-home a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    header .block .link ul li a {
        font-size: 12px;
    }
}

#mobile-view {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
}

#subcategory {
    margin: 20px;
}

.mobile-categorie-produit {
    display: none;
}

header #products {
    padding: 0;
}

header #products li {
    list-style-type: none;
}

header #products li a {
    color: #ffffff;
    line-height: 2;
}

header #products li a:hover {
    text-decoration: none;
}

header #mobile-view #category-name {
    font-size: 25px;
    font-weight: bold;
}

#subcategories {
    width: 100%;
    padding: 10px;
    background-color: #13427db3;
    outline-color: #ffffff;
    border-color: #ffffff;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto;
}

#subcategories:focus {
    outline-color: #ffffff;
}

#subcategories:after,
#subcategories option {
    background: transparent;
    color: #ffffff;
}

#exit-mobile-menu-link {
    color: #ffffff;
    font-size: 30px;
}

.mt-20 {
    margin-top: 20px;
}

#presentation .h1b,
.h1b {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    margin-top: 1.5rem;
}

#presentation .h2b,
.h2b {
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #ccab52;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    margin-top: 1.5rem;
}

.autocomplete-input {
    border-radius: 0;
    padding: 1rem;
    border: none;
}

.autocomplete-suggestions {
    border: 1px solid #999999;
    border-top: none;
    background: #ffffff;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 5px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #f0f0f0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399ff;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000000;
}

.form-required-asterisk {
    color: #ff0000;
}

a.magazine {
    color: #ccab52;
}

a.magazine:hover {
    color: #ccab52;
    text-decoration: underline;
}

.form-newsletter {
    display: flex;
    width: 100%;
}

a.produit:hover {
    color: #ccab52;
}

.no-border-bottom {
    border-bottom: none !important;
}

#similar-product h2 {
    display: block;
    margin: 0 auto;
    text-align: center;
}

#feuilleter img#loader {
    width: 31px;
    height: 31px;
}

#social-links {
    margin-top: 20px;
}

#social-links a:hover {
    text-decoration: none;
    color: #999999;
    text-align: center;
}

#similar-product a:hover {
    text-decoration: none;
}

#search-loader {
    width: 31px;
    height: 31px;
    display: none;
    margin: 0 auto;
}

.tarteaucitronAlertBigTop {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

/* Carousel Hero ------------------------------ */
.container-hero {
    max-width: 1680px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.carousel-hero {
    --carousel-spacing: 1.5rem;
    background: #0e0e0e;
}

.carousel-hero__title {
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: var(--neutral-100, #fff);
    font-weight: var(--fw-bold, 700);
    background-color: var(--accent-color, #ccab52);
}

.carousel-hero .carousel-indicators {
    inset: auto 0 0;
    justify-content: center;
    margin: auto;
}

.carousel-hero .carousel-item__media {
    aspect-ratio: 4/3;
    margin: 0;
}

.carousel-hero .carousel-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-hero .carousel-item__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--accent-color, #ccab52);
}

.carousel-hero .carousel-item__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.25;
    flex: 1 1 auto;
}

.carousel-hero .carousel-item__link {
    font-size: 1rem;
    color: var(--neutral-100, #fff);
}
@media (min-width: 36rem) {
    .carousel-hero .carousel-item__media {
        aspect-ratio: 5/2;
    }
}

@media (min-width: 48rem) {
    .carousel-hero .carousel-item__content {
        position: absolute;
        left: 0;
        right: 0;
        margin-inline: var(--carousel-spacing);
        bottom: var(--carousel-spacing);
        max-width: 25rem;
        padding: 2.5rem;
    }

    .carousel-hero .carousel-item__title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .carousel-hero .carousel-indicators {
        inset: auto var(--carousel-spacing) var(--carousel-spacing);
        justify-content: flex-end;
        margin: 0;
    }
}

@media (min-width: 62rem) {
    .carousel-hero {
        --carousel-spacing: 3.5rem;
    }
}

.carousel-news .carousel-inner {
    width: 100%;
    height: 350px !important;
    display: flex;
    align-items: center;
}

@media (min-width: 993px) {
    .carousel-news .carousel-inner {
        height: 720px !important;
    }
}

.solutions-services {
    padding-block: 2rem;
}
.solutions-services__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--netral-600, #7089a9);
}

.solutions-services__nav .nav-link {
    color: var(--netral-600, #7089a9);
}

.solutions-services__title .bullets {
    max-width: 4rem;
}
.solutions-services__nav {
    padding-left: 4rem;
}

@media (min-width: 48rem) and (max-width: 62rem) {
    .solutions-services__title .bullets {
        display: none;
    }
    .solutions-services__nav {
        padding-left: 0;
    }
}

.container-hero {
    margin-top: 40px;
}

#content .carousel-product .item {
    width: 200px;
    height: 200px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
    cursor: pointer;
}

.mce-content h2 {
    margin-top: 1.5rem;
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: var(--accent-color);
    text-transform: uppercase;
}
.mce-content p {
    font-family: Lato, sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    text-align: left;
    line-height: 1.62;
    color: var(--neutral-600);
    margin: 10px auto;
}
.mce-content strong {
    color: var(--accent-color);
    font-weight: bold;
}
.mce-content a {
    color: var(--neutral-800);
    font-weight: bold;
    text-decoration: underline;
}
/* UTILITIES */
.center {
    text-align: center;
}

.max-w-lg {
    max-width: 60rem;
}
.max-w-xl {
    max-width: 80rem;
}
.max-w-xxl {
    max-width: 100rem;
}
.underline {
    text-decoration: underline;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}

.margin-auto {
    margin-inline: auto;
}

.email2{
    display: none;
}
