/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

@font-face {
    font-family: 'Mirador-Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Mirador-Bold'), url('../font/Mirador-Bold.woff') format('woff');
}

/* Variables */
:root {
    /* --main-green-color: #2B9F77; */
    --main-green-color: #245726;
    /* --main-green-light-color: #50D5A7; */
    --main-green-light-color: #C5EDC6;
    /* --main-green-dark-color: #0F6446; */
    --main-green-dark-color: #245726;
    --second-green-light-color: #CEF0E5;
    /* --third-green-light-color: #89E3C4; */
    --third-green-light-color: #48BC4D;
    --main-orange-color: #FFB500;
    /* --main-orange-light-color: #FFC989; */
    --main-orange-light-color: #F86163;
    --main-orange-dark-color: #33160C;
    --main-red-color: #F86163;
    --main-red-dark-color: #A80000;
    --main-red-light-color: #FFF2F2;
    --main-gray-color: #F0F0F0;
}

/* Texts and colors */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    letter-spacing: 0px;
}

p {
    margin-bottom: 0;
}

.uppercase {
    text-transform: uppercase;
}

.main-title-size {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
}

.second-title-size {
    font-size: 23px;
    font-weight: bold;
    line-height: normal;
}

.third-title-size {
    font-size: 17px;
    font-weight: bold;
    line-height: normal;
}

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

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

.semi-bold {
    font-weight: 600;
}

.color-white {
    color: white !important;
}

.color-green {
    color: var(--main-green-color) !important;
}

.color-green-light {
    color: var(--main-green-light-color) !important;
}

.color-green-dark {
    color: var(--main-green-dark-color) !important;
}

.color-orange-dark {
    color: var(--main-orange-dark-color) !important;
}

.link {
    color: var(--main-green-color);
    text-decoration: underline;
    transition: all .2s ease-in;
}

.link:hover {
    color: var(--main-green-dark-color);
}

.btn {
    outline: none;
    box-shadow: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 50px;
    border: 0;
    transition: all .2s ease-in;
}

.btn.btn-primary {
    color: white;
    background-color: var(--main-orange-color);
}

.btn.btn-secondary {
    color: white;
    background-color: var(--third-green-light-color);
}

.btn.btn-light {
    color: var(--main-green-dark-color);
    background-color: var(--third-green-light-color);
    border: 2px solid var(--main-green-dark-color);
}

.btn.btn-green {
    color: white;
    background-color: var(--main-green-color);
}

.btn.btn-success {
    color: var(--main-green-dark-color);
    background-color: var(--main-green-light-color);
}

.btn.btn-info {
    color: var(--main-green-dark-color);
    border: 2px solid var(--main-green-dark-color);
    background: unset;
}

.btn.btn-icon {
    padding: 10px;
}

.btn.btn-icon svg {
    margin-right: 10px;
}

.btn:hover,
.btn:active,
.btn:focus {
    background-color: var(--main-red-color);
    color: var(--main-orange-dark-color);
}

.btn.btn-info:hover {
    background: unset;
    border-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

.btn:hover svg path,
.btn:active svg path,
.btn:focus svg path,
.btn:hover svg circle,
.btn:active svg circle,
.btn:focus svg circle {
    stroke: var(--main-orange-dark-color);
}

.btn.btn-light:hover,
.btn.btn-light:active,
.btn.btn-light:focus {
    color: white;
    background-color: unset;
}

.btn.btn-light:hover svg path,
.btn.btn-light:active svg path,
.btn.btn-light:focus svg path,
.btn.btn-light:hover svg circle,
.btn.btn-light:active svg circle,
.btn.btn-light:focus svg circle {
    stroke: white;
}

span.custom-label {
    background: var(--main-green-dark-color);
    color: white;
    padding: 10px 15px;
    display: inline-block;
}

/* Spacing */
.margin-top-10 {
    margin-top: 10px;
}

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

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

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* Inputs */
input:not([type='range']) {
    height: 50px;
    border-radius: 25px;
    padding-left: 25px;
    padding-right: 25px;
    outline: none;
    border: 2px solid var(--main-green-color);
    color: var(--main-green-color);
    font-size: 14px;
    transition: all .2s ease-in;
}

input:not([type='range'])::placeholder {
    color: var(--main-green-color);
}

input:not([type='range']):active {
    border-color: var(--main-green-dark-color);
    color: var(--main-green-dark-color);
}

input:not([type='range']):hover {
    border-color: var(--main-green-dark-color);
}

input.error:not([type='range']),
.error input:not([type='range']) {
    border-color: var(--main-red-color);
    color: var(--main-red-color);
    background-color: var(--main-red-light-color);
}

input.error:not([type='range'])::placeholder,
.error input:not([type='range'])::placeholder {
    color: var(--main-red-color);
}

textarea.form-control {
    border-radius: 25px 25px 0 25px;
    padding: 10px 25px;
    outline: none;
    border: 2px solid var(--main-green-color);
    color: var(--main-green-color);
    font-size: 14px;
    transition: all .2s ease-in;
}

textarea.form-control::placeholder {
    color: var(--main-green-color);
}

textarea.form-control:focus {
    background-color: white;
    border-color: var(--main-green-dark-color);
    color: var(--main-green-dark-color);
    box-shadow: none;
}

.input-btn {
    position: relative;
}

.input-btn input {
    padding-right: 60px;
}

.input-btn button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2px;
    border-radius: 25px;
    width: 50px;
    border: 0;
    background: var(--main-green-dark-color);
    transition: all .2s ease-in;
}

.input-btn button:hover {
    background: var(--main-orange-light-color);
}

.input-btn button svg circle,
.input-btn button svg line {
    stroke: white;
    transition: all .2s ease-in;
}

.input-btn button:hover svg circle,
.input-btn button:hover svg line {
    stroke: var(--main-orange-dark-color);
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    background: #CEF0E5;
    border: 5px solid transparent;
    outline: #CEF0E5 solid 2px;
    position: relative;
    top: 5px;
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    transition: all .2s ease-in;
}

input[type=checkbox]:hover {
    outline-color: var(--main-green-dark-color);
    border-color: #CEF0E5;
}

input[type=checkbox]:not(.disabled-checkbox):checked {
    background-color: var(--main-green-dark-color);
    outline-color: var(--main-green-dark-color);
    border-color: #CEF0E5;
}

/* Custom select */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected {
    border-radius: 25px;
    border: 2px solid white;
}

.select-items div,
.select-selected {
    color: var(--main-orange-dark-color);
    font-size: 14px;
    font-weight: 500;
    background: white;
    padding: 14px 16px;
    cursor: pointer;
}

.green-border .select-selected {
    border: 2px solid var(--main-green-color);
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 24px;
    right: 14px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--main-orange-dark-color) transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--main-green-color) transparent;
    top: 17px;
}

.select-selected:hover {
    border: 2px solid var(--main-green-dark-color);
    color: var(--main-orange-dark-color);
}

.select-selected.disabled {
    border-color: #95cfbb !important;
    background-color: #95cfbb !important;
    color: var(--main-green-color) !important;
    cursor: auto;
}

.select-selected.select-arrow-active {
    border: 2px solid var(--main-orange-dark-color);
    color: var(--main-orange-dark-color);
    border-bottom: 0 !important;
    border-radius: 25px 25px 0 0;
}

.select-hide {
    display: none;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0 0 25px 25px;
    border: 2px solid var(--main-orange-dark-color);
    border-top: 0;
    max-height: 300px;
    overflow-y: auto;
}

.select-items::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.select-items::-webkit-scrollbar {
    width: 0;
}

.select-items::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.select-items div {
    border-top: 1px solid var(--main-orange-dark-color);
}

.select-items div a {
    text-decoration: none;
    color: unset;
    display: block;
    width: 100%;
}

.select-items div:hover,
.same-as-selected {
    background-color: var(--main-green-light-color);
}

.select-items div:last-child {
    border-radius: 0 0 25px 25px;
}

/* Custom range price */
.range-slider {
    height: 2px;
    position: relative;
    background-color: var(--third-green-light-color);
}

.range-selected {
    height: 100%;
    left: 30%;
    right: 30%;
    position: absolute;
    background-color: var(--main-green-dark-color);
}

.range-input {
    position: relative;
}

.range-price {
    margin: 0;
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-price div {
    width: 50%;
}

.range-price div:last-child {
    text-align: end;
    margin-right: -5px;
}

.range-price span {
    position: relative;
    color: var(--main-green-dark-color);
    font-weight: 600;
    font-size: 14px;
}

.range-price span::after {
    content: "€";
    position: absolute;
    top: -1px;
    right: 5px;
}

.range-price.range-unit-cm span::after {
    content: "cm";
    right: -5px;
}

.range-price input {
    width: 50%;
    height: unset;
    border-radius: 0;
    border: 0;
    background: unset;
    padding: 0;
    color: var(--main-green-dark-color);
    font-weight: 600;
    font-size: 14px;
}

/* Custom checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container-checkbox input {
    position: absolute;
    opacity: 0;
}

.container-checkbox:not(.disabled),
.container-checkbox input:not([disabled]) {
    cursor: pointer;
}

.checkmark-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--second-green-light-color);
    border-radius: 50%;
    border: 2px solid var(--second-green-dark-color);
}

.container-checkbox:hover input:not([disabled])~.checkmark-checkbox {
    border: 2px solid var(--main-green-dark-color);
}

.container-checkbox input:checked~.checkmark-checkbox {
    border: 2px solid var(--main-green-dark-color);
}

.checkmark-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.container-checkbox input:checked~.checkmark-checkbox:after {
    display: block;
}

.container-checkbox .checkmark-checkbox:after {
    top: 5px;
    left: 4.7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--main-green-dark-color);
}

/* Custom file input */
.custom-file-upload {
    position: relative;
    width: 100%;
    height: 50px;
    border: 2px solid var(--main-green-color);
    border-radius: 25px;
    background-color: white;
    white-space: nowrap;
    overflow: hidden;
}

.custom-file-upload:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 0 15px;
    display: block;
    width: calc(100% - 120px);
    pointer-events: none;
    z-index: 20;
    height: 46px;
    line-height: 50px;
    color: var(--main-green-color);
    border-radius: 25px 0 0 25px;
    font-weight: 300;
}

.custom-file-upload:before {
    content: "Parcourir";
    position: absolute;
    top: -2px;
    right: -3px;
    height: 50px;
    background: var(--third-green-light-color);
    color: var(--main-green-dark-color);
    font-weight: 600;
    z-index: 25;
    font-size: 14px;
    line-height: 50px;
    padding: 0 35px;
    pointer-events: none;
    border-radius: 30px;
}

.custom-file-upload:hover:before {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

.custom-file-upload input {
    opacity: 0;
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0px;
    left: 0;
    height: 50px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
    border-radius: 25px;
}

.custom-label-desc {
    margin-top: -20px;
    margin-left: 15px;
}

/* Custom quantity input */
.custom-input-quantity .quantity input {
    float: left;
    border: 2px solid var(--main-green-light-color);
    border-left: 0;
    border-right: 0;
    width: 33%;
    height: 40px;
    text-align: center;
    border-radius: 0;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    padding: 0;
    transition: none;
    background: unset;
}

.custom-input-quantity .quantity span {
    text-align: center;
    float: left;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 2px solid var(--main-green-light-color);
    width: 33%;
    height: 40px;
    font: normal normal bold 24px/36px Montserrat;
    color: var(--main-green-dark-color);
}

.custom-input-quantity .quantity span:hover {
    background-color: var(--main-orange-light-color);
    border-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

/* Custom checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-checkbox label {
    font: normal normal 500 14px/20px Montserrat;
    color: white;
}

.custom-checkbox input {
    top: 2.5px;
}

/* Custom toggle checkbox with icon */
.custom-toggle-btn-icon input {
    display: none;
}

.custom-toggle-btn-icon label {
    color: var(--main-green-dark-color);
    background-color: white;
    outline: none;
    box-shadow: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    padding-left: 40px;
    border: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    transition: all .2s ease-in;
}

.custom-toggle-btn-icon label svg {
    position: absolute;
    left: 25px;
}

.custom-toggle-btn-icon input:checked+label {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

/* Show or hide password eye for input fields */
.password-field-with-eye {
    position: relative;
}

.password-field-with-eye input {
    padding-right: 50px;
}

.password-field-with-eye span {
    position: absolute;
    bottom: 13px;
    right: 20px;
    cursor: pointer;
    transition: all .2s ease-in;
}

.password-field-with-eye span svg {
    fill: var(--main-green-color);
    transition: all .2s ease-in;
}

.password-field-with-eye span:hover svg {
    fill: var(--main-green-dark-color);
}

.password-field-with-eye.error span svg {
    fill: var(--main-red-color);
}

.password-field-with-eye.eye-opened .eye-close,
.password-field-with-eye.eye-closed .eye-open {
    display: none;
}

/* Custom input color */
.custom-input-color {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-input-color input[type=color] {
    padding: 0;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border: 1px solid black;
}

.custom-input-color input[type=color]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.custom-input-color input[type=color]::-webkit-color-swatch {
    border: 0;
    border-radius: 0;
    border-radius: 50%;
}

.custom-input-color input[type=color]::-moz-color-swatch,
.custom-input-color input[type=color]::-moz-focus-inner {
    border: 0;
}

.custom-input-color input[type=color]::-moz-focus-inner {
    padding: 0;
}

/* Custom carousel */
.custom-carousel .carousel-indicators {
    z-index: 10;
    background-color: var(--third-green-light-color);
    margin: 0;
    width: fit-content;
    bottom: 10px;
    right: unset;
    left: 75%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 16px;
}

.custom-carousel .carousel-indicators [data-bs-target] {
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 1;
}

.custom-carousel .carousel-indicators .active {
    background-color: var(--main-orange-dark-color);
}

.custom-carousel .carousel-inner {
    height: 100%;
}

/* Messages box */
.message-box {
    font-weight: 500;
    padding: 20px;
}

.message-box.success {
    background: var(--main-green-light-color);
    color: var(--main-green-dark-color);
}

.message-box.error {
    background: var(--main-red-light-color);
    color: var(--main-red-color);
}

main.content-page .message-box {
    margin-bottom: 20px;
    margin-right: 20px;
}

/* Password validity */
.password-valid-elems {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 13px;
}

.password-valid-elems li {
    list-style: none;
    text-align: left;
    margin-right: 20px;
}

.password-valid-elems .valid {
    color: var(--main-green-color);
    font-weight: 700;
    text-decoration: line-through;
}

/* Sidebar */
.sidebar {
    background-color: var(--main-green-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    transform: translateX(250px);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    border: 5px solid white;
    border-right: 0;
    border-radius: 60px 0 0 60px;
    padding: 25px;
    z-index: 100;
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.sidebar.open {
    transform: none;
}

.sidebar .sidebar-header {
    font-size: 14px;
    color: var(--main-green-dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.sidebar .sidebar-header svg {
    width: 24px;
    margin-right: 15px;
}

.sidebar .close-sidebar svg {
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: 15px;
    width: 15px;
    height: 15px;
    margin-right: 0;
}

.sidebar .close-sidebar svg path {
    stroke: white;
}

.sidebar .close-sidebar svg:hover path {
    stroke: var(--main-orange-light-color)
}

.sidebar .content-sidebar {
    margin-top: 30px;
}

.sidebar .content-sidebar .btn {
    width: 100%;
}

.sidebar .content-sidebar hr {
    border-color: var(--second-green-light-color);
    margin: 20px 0;
}

.sidebar .content-sidebar .sidebar-title {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sidebar p {
    overflow-wrap: break-word;
}

#sidebar-overflow {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 100;
}

.sidebar-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-hours li {
    display: flex;
    justify-content: space-between;
}

.sidebar .content-sidebar .sidebar-notifs {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar .content-sidebar .sidebar-notifs li {
    display: flex;
    color: white;
    font-size: 14px;
    width: 100%;
    align-items: center;
    position: relative;
}

.sidebar .content-sidebar .sidebar-notifs li div {
    position: absolute;
    left: -30px;
    background: var(--main-orange-color);
    width: 40px;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar .content-sidebar .sidebar-notifs li a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--main-green-light-color);
    width: 100%;
    padding: 10px 0;
    margin-left: 20px;
}

.sidebar .content-sidebar .sidebar-notifs li a:hover {
    color: var(--main-orange-light-color);
}

.sidebar .content-sidebar .sidebar-notifs li:last-child a {
    border: 0;
}

.sidebar input[type="text"] {
    max-width: 100%;
}

.sidebar .custom-input-quantity {
    display: flex;
    justify-content: center;
}

.sidebar .custom-input-quantity .quantity span,
.sidebar .custom-input-quantity .quantity input {
    background-color: white;
    border-width: 1px;
}

.sidebar .custom-checkbox {
    justify-content: center;
}

.sidebar .content-sidebar .sidebar-supplier-icon {
    display: flex;
    justify-content: center;
}

.sidebar .content-sidebar .sidebar-supplier-icon img {
    width: 80px;
    max-height: 80px;
    object-fit: cover;
}

.sidebar .content-sidebar .sidebar-bigtitle {
    font: normal normal bold 17px/22px Montserrat;
}

.sidebar .content-sidebar .sidebar-link a {
    font: normal normal normal 14px/22px Montserrat;
    color: var(--main-green-dark-color);
    transition: all .2s ease-in;
}

.sidebar .content-sidebar .sidebar-link a:hover {
    color: var(--main-orange-light-color);
}

.sidebar .content-sidebar .sidebar-btn-white .btn {
    color: white;
    border-color: white;
}

.sidebar .content-sidebar .sidebar-btn-white .btn:hover {
    border-color: var(--main-orange-light-color);
}

#please-wait {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--main-green-dark-color);
    font-size: 40px;
    font-weight: 600;
    z-index: 9999;
}

/* Custom table */
.custom-table {
    width: calc(100% - 20px);
    border: 5px solid var(--main-green-color);
    border-radius: 50px 50px 0 0;
    border-spacing: 0;
    border-collapse: separate;
    background: var(--main-green-light-color);
}

.custom-table thead tr th {
    padding: 30px 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-green-dark-color);
}

.custom-table tbody {
    background-color: var(--main-gray-color);
}

.custom-table tbody tr td {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--main-green-light-color);
}

.custom-table tbody tr td .btn {
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: end;
    margin-right: 20px;
    margin-top: 20px;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.pagination ul li a {
    background-color: var(--third-green-light-color);
    color: var(--main-green-dark-color);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.pagination ul li a:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

.pagination ul li a.active {
    background-color: var(--main-green-dark-color) !important;
    color: white !important;
}

.pagination ul li a.inactive {
    background-color: var(--third-green-light-color) !important;
    color: var(--main-green-dark-color) !important;
}

/* Modals */
.modal {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-content {
    border: 5px solid var(--main-green-light-color);
    border-radius: 0;
    font-size: 14px;
    color: var(--main-green-color);
}

.modal-header {
    border: 0;
    background-color: var(--main-green-light-color);
    border-radius: 0;
}

.modal-header.no-header {
    display: none;
}

.modal-header .btn-close:focus {
    opacity: .5;
    box-shadow: none;
}

.modal-body {
    padding: 20px;
}

.modal-body .confirmation-title {
    font: normal normal bold 23px/20px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 10px;
    padding: 20px 10px 0 10px;
}

.modal-body .confirmation-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--main-green-dark-color);
    margin-bottom: 50px;
    padding: 0 10px;
}

.modal-body .confirmation-btns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.modal-body .confirmation-btns .btn {
    min-width: 200px;
}

.modal-form-content form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px 0;
}

.modal-form-content form .modal-form-content-title {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
    margin-left: 10px;
}

.modal-form-content form .btn {
    width: fit-content;
    margin: 0 auto;
    min-width: 200px;
}

.modal-form-content form .col-title {
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.modal-form-content form .col-lg-6 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.modal-form-content form .col-lg-6:first-child {
    margin-bottom: 30px;
}

#modal-message.error .modal-content {
    border-color: var(--main-orange-dark-color);
    color: var(--main-red-color);
}

.modal-header.header-with-icon {
    justify-content: center;
    gap: 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.modal-header.header-with-icon svg ellipse,
.modal-header.header-with-icon svg path {
    stroke: white;
}

.modal-content .select-selected {
    border-color: var(--main-green-color);
}

.modal-content .select-selected.select-arrow-active {
    border-color: var(--main-green-dark-color);
}

.modal .custom-checkbox label {
    color: var(--main-green-color);
    margin-top: 5px;
}

#modal-message .modal-body {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 50px;
}

#modal-message.error .btn {
    border-color: var(--main-orange-dark-color);
    color: var(--main-red-color);
}

#modal-message.error .btn:hover {
    background-color: var(--main-orange-dark-color);
    color: white;
}

#modal-delivery-zone .modal-dialog {
    max-width: 60%;
    height: 90%;
    min-height: unset;
}
#modal-delivery-zone .modal-dialog .modal-content {
    height: 100%;
}

#modal-delivery-zone .map {
    margin: -20px;
    margin-bottom: 20px;
    height: 60%;
}

#modal-delivery-zone .map #cf-map {
    /* height: 300px; */
    height: 100%;
}

#modal-delivery-zone .map #cf-map.leaflet-container .leaflet-control-attribution {
    display: none;
}

#modal-delivery-zone input[type=text] {
    width: 100%;
}

#modal-delivery-zone .map-checkboxs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}

#modal-delivery-zone .content {
    height: 40%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@media screen and (max-width: 1600px) {
    #modal-delivery-zone .second-title-size {
        font-size: 18px;
    }
    #modal-delivery-zone .margin-top-20 {
        margin-top: 10px !important;
    }
    #modal-delivery-zone input[type=text] {
        height: 30px;
        font-size: 14px;
    }
}
@media screen and (min-width: 1600px) {
    #modal-delivery-zone .second-title-size {
        font-size: 20px;
    }
    #modal-delivery-zone input[type=text] {
        height: 45px;
    }
}

#modal-news .modal-body .news-text,
#modal-actu-price-drop .modal-body .price-drop-text {
    font-weight: 500;
}

#modal-news .modal-body .news-text p,
#modal-actu-price-drop .modal-body .price-drop-text p {
    margin-bottom: 10px;
}

#modal-news .modal-body .btn,
#modal-actu-price-drop .modal-body .btn {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

#modal-ticket .label-ticket {
    display: inline-block;
    text-align: center;
    background-color: var(--main-orange-color);
    color: white;
    padding: 8px 25px;
    margin-bottom: 20px;
}

#modal-ticket .label-ticket.done {
    background-color: var(--main-green-light-color);
}

#modal-supplier-product-photo .modal-body {
    padding: 0;
}

#modal-supplier-product-photo .modal-body img {
    width: 100%;
}

#modal-supplier-order-history .modal-body {
    padding: 0;
}

#modal-supplier-order-history .modal-body .btn {
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
}

/* Compo mobile cart popup */
#block-compo-home-right-return-mobile-btn {
    margin-top: -30px;
}

#block-compo-home-right-return-mobile-btn:hover {
    color: var(--main-orange-dark-color);
}

#block-compo-home-right-mobile-cart {
    z-index: 80;
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    top: 45%;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
    background-color: var(--main-orange-color);
}

@media (min-width: 992px) {
    .modal-form-content form .col-lg-6:first-child {
        border-right: 1px solid var(--main-green-light-color);
        padding-right: 40px;
        margin-bottom: 0;
    }

    .modal-form-content form .col-lg-6:last-child {
        padding-left: 40px;
    }
}

@media (min-width: 1150px) {
    #block-compo-home-right-return-mobile-btn {
        display: none;
    }

    .block-compo-home-right-container {
        display: block !important;
    }
}

@media (max-width: 1150px) {
    #block-compo-home-right-mobile-cart {
        display: flex;
    }

    .block-compo-home-right-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none;
    }

    .block-compo-home-right {
        left: 50%;
        right: unset;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        position: fixed;
        width: 350px !important;
    }

    .block-compo-home-right-container .btn {
        width: 225px;
    }
}

/* Login - connexion pages */
.full-background-motif {
    background-color: var(--third-green-light-color);
    background-image: url(../img/background_login.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.full-background-motif .left-col,
.full-background-motif .right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

.full-background-motif .left-col {
    width: 45%;
}

.full-background-motif .right-col {
    width: 55%;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 70px;
    margin: 20px;
}

.full-background-motif .left-col img,
.full-background-motif .right-col img {
    max-width: 300px;
    margin: 0 auto;
}

.full-background-motif .left-col hr {
    border: 2px solid var(--main-green-light-color);
    width: 55px;
    margin: 30px auto;
}

.full-background-motif .right-col form {
    margin: 0 auto;
    max-width: 425px;
    width: 100%;
}

.full-background-motif .right-col form input {
    width: 100%;
    margin-top: 40px;
}

#new-password-page.full-background-motif .right-col form input,
#new-password-page.full-background-motif .right-col form {
    margin-top: 20px;
}

.stores-choice {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}

.stores-choice li {
    text-align: left;
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.stores-choice li:last-child {
    border: 0;
}

#store-choice-page.full-background-motif .left-col svg {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    #store-choice-page.full-background-motif {
        display: block;
        padding-top: 20px;
    }

    #store-choice-page.full-background-motif .right-col {
        width: unset;
        margin-top: 0;
    }

    #store-choice-page.full-background-motif .left-col {
        display: none;
    }
}

@media (max-width: 870px) {
    .full-background-motif {
        display: block;
    }

    .full-background-motif .left-col,
    .full-background-motif .right-col {
        width: unset;
    }

    .full-background-motif .left-col p {
        display: none;
    }

    .full-background-motif .right-col {
        padding: 30px 20px;
    }

    .full-background-motif .left-col {
        padding-bottom: 0;
    }
}

@media (max-width: 530px) {
    .stores-choice li {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Topbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

header .topbar {
    display: flex;
    background-color: white;
}

header .topbar .user-group {
    background: var(--main-green-light-color);
    color: var(--main-orange-dark-color);
    padding: 8px 30px;
    font-size: 14px;
    margin: 20px 0;
    font-weight: 600;
}

header .topbar .user-name {
    font-size: 23px;
    color: var(--main-green-dark-color);
    font-weight: bold;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .topbar .user-name span {
    width: 250px;
}

header .topbar .user-name a {
    color: var(--main-green-dark-color);
    text-decoration: none;
}

header .topbar .topbar-menu {
    display: flex;
    justify-content: end;
    width: 100%;
}

header .topbar .topbar-menu .store-list-header ul {
    display: flex;
    padding: 0;
    margin: 0;
    height: 100%;
}

header .topbar .topbar-menu .store-list-header ul li {
    list-style: none;
    position: relative;
}

header .topbar .topbar-menu .store-list-header ul li span {
    z-index: 10;
    display: block;
}

header .topbar .topbar-menu .store-list-header ul li.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 50px;
    height: 50px;
    background-color: var(--main-orange-color);
    border-radius: 3px;
}

header .topbar .topbar-menu .store-list-header ul li a {
    width: 230px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: var(--main-green-light-color);
    color: var(--main-green-color);
    text-decoration: none;
    font-size: 14px;
    transition: all .2s ease-in;
}

header .topbar .topbar-menu .store-list-header ul li:nth-child(even) a {
    background-color: var(--second-green-light-color);
}

header .topbar .topbar-menu .store-list-header ul li.active a {
    background-color: var(--main-orange-color);
    color: white;
}

header .topbar .topbar-menu .store-list-header ul li:not(.active) a:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

header .topbar .topbar-menu .my-store-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header .topbar .topbar-menu .my-store-btn a {
    display: flex;
    padding: 21px 30px;
    background: white;
    font-size: 12px;
    font-weight: 600;
    color: var(--main-orange-dark-color);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all .2s ease-in;
    align-items: center;
}

header .topbar .topbar-menu .my-store-btn a::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: var(--main-red-color);
}

header .topbar .topbar-menu .my-store-btn a:hover::after {
    display: none;
}

header .topbar .topbar-menu .my-store-btn a:hover {
    background: var(--main-red-color);
    color: var(--main-orange-dark-color);
}

header .topbar .topbar-menu .my-store-btn a:hover svg path {
    stroke: var(--main-orange-dark-color);
}

header .topbar .topbar-menu .my-store-btn a span {
    margin-left: 15px;
}

header .topbar .topbar-menu .config-btn {
    display: flex;
}

header .topbar .topbar-menu .config-btn a {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header .topbar .topbar-menu .config-btn a:hover {
    background: var(--main-red-color);
}

header .topbar .topbar-menu .config-btn a:hover svg path {
    stroke: var(--main-orange-dark-color);
}

header .topbar .logout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

header .topbar .logout-btn svg path,
header .topbar .logout-btn svg line {
    stroke: var(--main-orange-dark-color);
}

header .second-topbar {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 120px;
    background-color: var(--main-gray-color);
}

header .second-topbar .page-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .second-topbar .page-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--main-orange-dark-color);
}

header .second-topbar .page-subtitle {
    font-size: 14px;
    color: var(--main-red-color);
    font-weight: 600;
}

header .second-topbar .page-tools {
    display: flex;
    gap: 75px;
    align-items: center;
}

header .second-topbar .page-tools a {
    cursor: pointer;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .2s ease-in;
}

header .second-topbar .page-tools a:hover {
    background: white;
    box-shadow: 0 0px 10px -6px #000;
}

header .second-topbar .page-tools a svg line,
header .second-topbar .page-tools a svg path {
    stroke: var(--main-orange-dark-color);
}

header .second-topbar .page-tools .tools-notifications a {
    position: relative;
    margin-right: 20px;
}

header .second-topbar .page-tools .tools-notifications a svg {
    margin-right: 7px;
}

header .second-topbar .page-tools .tools-notifications a span {
    position: absolute;
    top: 18px;
    right: 14px;
    background: var(--main-red-color);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .second-topbar .tools-topbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .second-topbar .tools-topbar .topbar-customer-order {
    display: flex;
    align-items: center;
    font-size: 100px;
    line-height: 90px;
    color: var(--main-green-dark-color);
    font-weight: bold;
}

header .second-topbar .tools-topbar .topbar-customer-order span {
    font-size: 14px;
    line-height: 21px;
    font-weight: normal;
    margin-left: 30px;
}

header .topbar .topbar-menu .store-list-header .tablet {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 230px;
    padding: 12px;
    position: relative;
}

header .topbar .topbar-menu .store-list-header .tablet .select-selected {
    border-color: var(--main-orange-dark-color);
}

header .topbar .topbar-menu .store-list-header .tablet::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: var(--main-red-color);
}

header .second-topbar .tools-topbar .topbar-manuals {
    display: flex;
    gap: 20px;
    margin-left: 50px;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a {
    border: 2px solid var(--main-green-light-color);
    height: 55px;
    font-size: 14px;
    color: var(--main-green-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    transition: all .2s ease-in;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a.active {
    border-color: var(--main-orange-dark-color);
    background-color: var(--main-orange-dark-color);
    color: white;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a.active svg path,
header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a.active svg text {
    fill: white;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a.active svg .stroke {
    stroke: white;
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a:not(.active):hover {
    color: var(--main-orange-dark-color);
    border-color: var(--main-orange-light-color);
    background-color: var(--main-orange-light-color);
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a:not(.active):hover svg path,
header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a:not(.active):hover svg text {
    fill: var(--main-orange-dark-color);
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a:not(.active):hover svg .stroke {
    stroke: var(--main-orange-dark-color);
}

header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-search {
    display: flex;
    align-items: center;
}

.search-bar {
    position: relative;
}

.search-bar svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.search-bar input {
    padding-left: 50px;
}

@media (min-width: 1000px) {
    .topbar-news-search .search-bar input {
        min-width: 300px;
    }
}

@media (min-width: 1200px) {
    .topbar-news-search .search-bar input {
        min-width: 450px;
    }
}

@media (min-width: 1450px) {
    .search-bar input {
        min-width: 300px;
    }

    .topbar-news-search .search-bar input {
        min-width: 600px;
    }

    header .second-topbar .tools-topbar .topbar-manuals .topbar-manuals-categories a {
        min-width: 220px;
    }
}

@media (min-width: 1500px) {
    header .topbar .topbar-menu .store-list-header .tablet:not(.desktop) {
        display: none !important;
    }
}

@media (max-width: 1500px) {
    header .topbar .topbar-menu .store-list-header .desktop {
        display: none !important;
    }
}

@media (max-width: 1300px) {
    header .second-topbar .page-tools {
        gap: 15px;
    }

    .search-bar input {
        max-width: 180px;
    }

    .topbar-news-search .search-bar input {
        max-width: 400px;
    }

    header .second-topbar .tools-topbar .topbar-manuals {
        margin-left: 20px;
    }
}

@media (max-width: 1000px) {
    header .second-topbar .tools-topbar {
        display: none;
    }

    header .second-topbar .page-tools {
        gap: 0;
    }

    header .topbar .user-group {
        display: none;
    }

    header .topbar .user-name {
        margin-left: 0;
    }
}

@media (max-width: 850px) {
    header .topbar .user-name {
        display: none;
    }
}

@media (max-width: 700px) {
    header .second-topbar {
        justify-content: end;
    }

    header .second-topbar .page-infos {
        display: none;
    }
}

@media (max-width: 550px) {
    header .topbar .topbar-menu .my-store-btn a span {
        display: none;
    }

    header .topbar .topbar-menu .my-store-btn a,
    header .topbar .topbar-menu .config-btn a {
        padding-left: 19px;
        padding-right: 19px;
    }
}

/* Navbar */
.navbar-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -130px;
    background: var(--third-green-light-color);
    border-radius: 0 90px 90px 0;
    padding: 50px 0;
    transition: all .2s ease-in;
    z-index: 100;
    overflow-x: hidden;
}

.navbar-menu .navbar-logo {
    text-align: end;
    margin-bottom: 30px;
    margin-right: 40px;
}

.navbar-menu ul {
    padding-inline: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 230px;
    overflow-y: auto;
    max-height: calc(100vh - 198px);
    direction: rtl;
}

.navbar-menu ul::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

.navbar-menu ul::-webkit-scrollbar-track {
    background-color: var(--main-green-dark-color);
    border-radius: 5px;
}

.navbar-menu ul::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--main-green-light-color);
    border-radius: 5px;
}

.navbar-menu ul li {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: end;
    direction: ltr;
}

.navbar-menu ul li.active {
    background-color: white;
}

.navbar-menu ul li.external-links { background: var(--main-green-light-color); }
.navbar-menu ul li.external-links a span { color: var(--main-orange-dark-color); }

.navbar-menu ul li a {
    padding-right: 30px;
    padding-left: 15px;
    padding-top: 11px;
    padding-bottom: 11px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    width: 100%;
    transition: all .2s ease-in;
    position: relative;
}

.navbar-menu ul li a:hover {
    background-color: var(--main-green-dark-color);
}

.navbar-menu ul li a span {
    text-align: end;
    color: white;
    font-size: 12px;
}

.navbar-menu ul li.active span {
    color: var(--main-green-dark-color);
}

.navbar-menu ul li a:hover span {
    color: white;
}

.navbar-menu ul li a svg {
    margin-left: 50px;
    width: 35px;
}

.navbar-menu ul li a svg path,
.navbar-menu ul li a svg ellipse,
.navbar-menu ul li a svg g,
.navbar-menu ul li a svg line {
    stroke: var(--main-green-light-color);
}

.navbar-menu ul li.werecruit a svg path:nth-child(2),
.navbar-menu ul li.werecruit a svg path:nth-child(3) {
    fill: var(--main-green-light-color);
}

.navbar-menu ul li a svg .change-fill {
    fill: var(--main-green-light-color);
    stroke: none;
}

.navbar-menu ul li.external-links a svg path,
.navbar-menu ul li.active a svg path,
.navbar-menu ul li.external-links a svg ellipse,
.navbar-menu ul li.active a svg ellipse,
.navbar-menu ul li.external-links a svg g,
.navbar-menu ul li.active a svg g,
.navbar-menu ul li.external-links a svg line,
.navbar-menu ul li.active a svg line {
    stroke: var(--main-orange-dark-color);
}

.navbar-menu ul li.external-links a svg .change-fill,
.navbar-menu ul li.active a svg .change-fill {
    fill: var(--main-green-dark-color);
    stroke: none;
}

.navbar-menu ul li a:hover svg path,
.navbar-menu ul li a:hover svg ellipse,
.navbar-menu ul li a:hover svg g,
.navbar-menu ul li a:hover svg line {
    stroke: var(--main-orange-dark-color);
}

.navbar-menu ul li.werecruit a:hover svg path:nth-child(2),
.navbar-menu ul li.werecruit a:hover svg path:nth-child(3) {
    fill: var(--main-orange-dark-color);
}

.navbar-menu ul li a:hover svg .change-fill {
    fill: var(--main-orange-dark-color);
    stroke: none;
}

#menu-link {
    position: absolute;
    top: 186px;
    left: 194px;
    width: 110px;
    background: var(--third-green-light-color);
    color: white;
    padding: 5px 15px;
    transform: rotate(-90deg);
    border-radius: 0 0 25px 25px;
    font-size: 14px;
    display: none;
    cursor: pointer;
}

#menu-link svg {
    transform: rotate(-180deg);
    margin-right: 5px;
    transition: all .2s ease-in;
}

.navbar-menu.open #menu-link svg {
    transform: none;
}

#menu-link svg path {
    stroke: white;
}

#nav-menu-arrow-down,
#nav-menu-arrow-up {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    display: none;
}

#nav-menu-arrow-down svg,
#nav-menu-arrow-up svg {
    width: 13px;
    height: 13px;
}

.navbar-menu.open #nav-menu-arrow-up {
    top: 100px;
    display: flex;
}

#nav-menu-arrow-down {
    bottom: 10px;
}

#nav-menu-arrow-up svg {
    transform: rotate(180deg);
}

#nav-menu-arrow-up svg path,
#nav-menu-arrow-down svg path {
    stroke: var(--main-green-dark-color);
}

@media (min-height: 800px) and (max-height: 899px) {
    .navbar-menu .navbar-logo {
        margin-bottom: 10px;
    }

    .navbar-menu ul li a {
        padding-top: 9px;
        padding-bottom: 9px;
    }
}

@media (max-height: 799px) {
    #menu-link {
        display: block;
    }

    .navbar-menu {
        left: -235px;
        overflow-x: initial;
    }

    .navbar-menu.open {
        transform: translateX(235px);
    }

    .navbar-menu ul {
        margin-left: 5px;
        padding-left: 5px;
    }

    .navbar-menu.open {
        overflow-x: hidden;
    }
}

@media (min-height: 800px) {
    .navbar-menu:hover {
        transform: translateX(130px);
    }

    .navbar-menu:hover ul li a::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 180px;
        height: 1px;
        background-color: var(--main-green-light-color);
    }

    .navbar-menu:hover ul li.external-links a::after {
        background-color: var(--third-green-light-color);
    }

    .navbar-menu ul li:last-child a::after {
        display: none;
    }
}

@media (max-height: 800px) {
    .navbar-menu.open #nav-menu-arrow-down {
        display: flex;
    }

    .navbar-menu:not(.open) #nav-menu-arrow-up,
    .navbar-menu:not(.open) #nav-menu-arrow-down {
        display: none !important;
    }
}

/* Footer */
footer .help-btn a {
    background: var(--main-orange-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 225px;
    height: 60px;
    border-radius: 100px 100px 0 0;
    transition: all .2s ease-in;
    z-index: 11;
    text-decoration: none;
    -webkit-text-decoration-skip: none;
}

footer .help-btn a svg ellipse {
    stroke: white;
}

footer .help-btn a svg text {
    fill: white;
    text-decoration: none;
    -webkit-text-decoration-skip: none;
}

footer .help-btn a:hover {
    background: var(--main-orange-light-color);
}

footer .help-btn a:hover svg ellipse {
    stroke: var(--main-orange-dark-color);
}

footer .help-btn a:hover svg text {
    fill: var(--main-orange-dark-color);
}

footer #back-to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: var(--main-green-light-color);
    border-radius: 16px 16px 0 16px;
    padding: 7px 18px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease-in;
    display: none;
}

footer #back-to-top svg {
    margin-right: 7px;
    transform: rotate(180deg);
}

footer #back-to-top svg path {
    stroke: white;
}

footer #back-to-top:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

footer #back-to-top:hover svg path {
    stroke: var(--main-orange-dark-color);
}

@media (max-width: 600px) {
    footer #back-to-top span {
        display: none;
    }
}

/* Content */
header .topbar,
header .second-topbar,
main.content-page {
    padding-left: 125px;
}

main.content-page {
    background-color: var(--main-gray-color);
    padding-top: 220px;
    padding-bottom: 80px;
    min-height: 100vh;
}

@media (max-height: 799px) {

    header .topbar,
    header .second-topbar,
    main.content-page {
        padding-left: 40px;
    }
}

/* Dashboard widgets */
.widget-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.widget {
    display: flex;
    position: relative;
    justify-content: space-between;
    margin-right: 20px;
    margin-bottom: 20px;
}

.widget.widget-size-1 {
    width: calc(16.66% - 20px);
}

.widget.widget-size-2 {
    width: calc(33.34% - 20px);
}

.widget.widget-size-3 {
    width: calc(50% - 20px);
}

.widget.widget-size-4 {
    width: calc(66.66% - 20px);
}

.widget.widget-size-5 {
    width: calc(83.34% - 20px);
}

.widget.widget-size-6 {
    width: calc(100% - 20px);
}

.widget .widget-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 20px;
    background-color: var(--main-orange-dark-color);
    color: white;
    font-size: 14px;
}

.widget .widget-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-orange-dark-color);
    margin-bottom: 20px;
}

#widget-customer-order {
    border: 5px solid var(--main-orange-dark-color);
    background-color: var(--main-green-light-color);
    /* ajout spktr octobre 2025 */
    width: calc(50% - 1em);
    margin: 0;
    padding: 0;

}

#widget-customer-order .widget-col-left {
    width: 45%;
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#widget-customer-order .widget-col-left img {
    max-width: 140px;
}

#widget-customer-order .widget-col-left div {
    font-size: 100px;
    line-height: 110px;
    font-weight: bold;
    color: var(--main-orange-dark-color);
    display: flex;
    flex-direction: column;
    text-align: center;
}

#widget-customer-order .widget-col-left div span {
    font-size: 14px;
    color: var(--main-orange-dark-color);
    line-height: 20px;
}

#widget-customer-order .widget-col-right {
    width: 55%;
    background-color: white;
    border-radius: 50px 0 0 50px;
    padding: 30px 15px;
}

#widget-customer-order .widget-order-list .widget-order {
    list-style: none;
    text-align: center;
    font-size: 13px;
    color: var(--main-orange-dark-color);
    font-weight: 500;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--main-red-color);
    align-items: center;
}

#widget-customer-order .widget-order-list .widget-order:last-child {
    border: 0;
}

#widget-customer-order .widget-order-list .widget-order li {
    width: 25%;
}

#widget-customer-order .widget-order-list .widget-order li:first-child {
    text-align: left;
}

#widget-customer-order .widget-order-list .widget-order li:last-child {
    text-align: end;
}

#widget-customer-order .widget-order-list .widget-order li a {
    color: var(--main-orange-dark-color);
    font-weight: 600;
    transition: all .2s ease-in;
}

#widget-customer-order .widget-order-list .widget-order li a:hover {
    color: var(--main-orange-dark-color);
}

#widget-compo {
    display: flex;
    background-color: var(--main-green-light-color);
    margin: 0;
    border: 5px solid var(--main-orange-dark-color);
}
#widget-compo .widget-col-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    background-color: white;
    border-radius: 0 50px 50px 0;
}
#widget-compo .widget-col-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#widget-compo img {
    max-width: 100%;
}

#widget-compo strong {
    color: white;
    font: normal normal bold 17px/22px Montserrat;
}

#widget-compo .btn {
    padding: 20px;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}

#widget-todo .todo_widget_carousel,
#widget-todo .todo_widget_carousel .carousel-item,
#widget-todo .todo_widget_carousel .carousel-item .one-todo {
    height: 100%;
}

#widget-todo li {
    width: 100%;
}

#carouselTodoWidget {
    width: 100%;
}

#widget-todo .carousel-indicators {
    left: 25%;
}

#widget-todo .one-todo {
    width: 100%;
    align-items: flex-start !important;
}

#widget-todo .one-todo .one-todo-left {
    border-radius: 0 50px 0 0;
    border-left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--second-green-light-color);
}

#widget-todo .one-todo .one-todo-content .one-todo-content-title {
    padding-right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 10px;
}

#widget-todo .one-todo .one-todo-content {
    position: relative;
    padding-bottom: 100px !important;
    min-height: 350px;
}

#widget-todo .one-todo .one-todo-content .one-todo-content-link {
    position: absolute;
    bottom: 30px;
}

#widget-todo .one-todo .one-todo-image {
    width: 100% !important;
    height: calc(100% - 35px) !important;
}

#widget-todo .link-todo-page {
    position: absolute;
    bottom: 0;
    right: 0;
    color: white;
    text-decoration: none;
    background-color: var(--main-green-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 0px 16px;
    font: normal normal bold 22px/22px Montserrat;
    transition: all .2s ease-in;
}

#widget-todo .link-todo-page:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

#widget-todo .link-add-a-todo {
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
    background-color: var(--main-orange-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px 0px 16px 16px;
    transition: all .2s ease-in;
    border: 0;
    z-index: 9;
}

#widget-todo .link-add-a-todo svg path {
    stroke: white;
}

#widget-todo .link-add-a-todo svg text {
    fill: white;
}

#widget-todo .link-add-a-todo:hover {
    background-color: var(--main-orange-light-color);
}

#widget-todo .link-add-a-todo:hover svg path {
    stroke: var(--main-orange-dark-color);
}

#widget-todo .link-add-a-todo:hover svg text {
    fill: var(--main-orange-dark-color);
}

#widget-news {
    border: 5px solid var(--main-orange-dark-color);
    background-color: white;
    position: relative;
    /* edit spktr octobre 2025 */
    width: calc(50% - 1em);
    margin: 0;
    padding: 0;
}

#widget-news .widget-label {
    z-index: 10;
}

#widget-news .widget-news-action {
    position: absolute;
    bottom: -5px;
    right: -5px;
    color: white;
    text-decoration: none;
    font: normal normal bold 22px/22px Montserrat;
    background-color: var(--main-orange-dark-color);
    border-radius: 16px 16px 0px 16px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in;
    z-index: 10;
}

#widget-news .widget-news-action:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item {
    display: flex;
    height: 100%;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item.active {
    z-index: 9;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col {
    width: 50%;
    border-radius: 0 50px 50px 0px;
    background: var(--main-green-dark-color);
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col {
    padding: 50px 40px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-right-col img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col .news-svg {
    display: flex;
    justify-content: end;
}

#widget-news #carouselNewsWidget .carousel-inner .news-hidden-infos {
    display: none;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col .news-title {
    font: normal normal bold 14px/20px Montserrat;
    color: white;
    text-transform: uppercase;
    margin-bottom: -30px;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col .news-exerpt {
    font: normal normal 500 14px/20px Montserrat;
    color: white;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col .btn.btn-light {
    color: white;
    background-color: var(--third-green-light-color);
    width: fit-content;
    padding: 20px 60px;
}

#widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col .btn.btn-light:hover {
    color: var(--main-orange-dark-color);
    background-color: var(--main-red-color);
}

#widget-suppliers {
    border: 5px solid var(--main-orange-dark-color);
    justify-content: unset;
}

#widget-suppliers .supplier_list_widget {
    background-color: var(--main-green-dark-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font: normal normal bold 14px/20px Montserrat;
    color: white;
    gap: 45px;
    padding: 45px;
    width: 50%;
    border-radius: 50px 0px 0 50px;
}

#widget-suppliers .supplier_list_widget.fullwidth {
    width: 100%;
}

#widget-suppliers .supplier_list_widget .supplier_list_widget_suppliers {
    display: flex;
    flex-direction: column;
    width: 210px;
    gap: 15px;
}

#widget-suppliers .supplier_list_widget .supplier_list_widget_suppliers .btn {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 50px;
}

#widget-suppliers .supplier_list_widget .supplier_list_widget_suppliers .btn span {
    text-transform: uppercase;
}

#widget-suppliers .supplier_list_widget .supplier_list_widget_suppliers .btn svg {
    position: absolute;
    left: 22px;
}

#widget-suppliers .supplier_list_widget .supplier_list_widget_suppliers .btn:hover svg .fill {
    fill: var(--main-orange-dark-color);
    stroke: none;
}

#widget-suppliers .widget-suppliers-action {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    text-decoration: none;
    font: normal normal bold 22px/22px Montserrat;
    background-color: var(--main-green-light-color);
    border-radius: 16px 16px 16px 0px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in;
    z-index: 10;
}

#widget-suppliers .widget-suppliers-action:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

#widget-suppliers .custom-carousel .carousel-indicators {
    left: calc(25% + 25px);
}

#widget-suppliers .widget-label {
    z-index: 11;
}

#widget-suppliers .price_drop_widget {
    height: 100%;
}

#widget-suppliers #carouselSupplierWidget .carousel-item {
    display: flex;
    border: 5px solid var(--main-green-light-color);
    background-color: white;
    height: 100%;
}

/* EDIT NOVEMBRE 2025 SPKTR */
/* #widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_left_col,
#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col {
    width: 50%;
} */

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_left_col img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col {
    background-color: white;
    border: 5px solid var(--main-green-light-color);
    border-right: 0;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 50px 0px 0px 50px;
    padding: 50px 30px;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .price-drop-title {
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 23px;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .price-drop-supplier-name {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 2px;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .price-drop-exerpt {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
    margin-bottom: 20px;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .price-drop-price {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-orange-color);
    margin-bottom: 30px;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .btn {
    padding: 20px;
    width: 100%;
    color: var(--main-green-dark-color) !important;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .btn:hover {
    color: var(--main-orange-dark-color) !important;
}

#widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col .price-drop-hidden-infos {
    display: none;
}

@media (max-width: 1600px) {
    #widget-suppliers {
        /* width: calc(100% - 20px); EDIT NOVEMBRE */
        width: calc(50% - 1em);
    }
}

@media (max-width: 1400px) {
    .widget.widget-size-3 {
        /* width: calc(100% - 20px); EDIT NOVEMBRE */
        width: calc(50% - 1em);
    }

    .widget.widget-size-2 {
        width: calc(75% - 20px);
    }

    .widget.widget-size-1 {
        width: calc(25% - 20px);
    }
}

@media (max-width: 1000px) {
    .widget.widget-size-3 {
        width: calc(100% - 20px);
    }
}

@media (max-width: 900px) {
    #widget-customer-order .widget-col-left img {
        display: none;
    }

    #widget-customer-order .widget-col-left {
        width: unset;
        padding: 70px 0 30px 0;
        min-width: 200px;
    }

    #widget-customer-order .widget-col-right {
        width: 100%;
    }

    .widget.widget-size-2 {
        width: calc(100% - 20px);
    }

    .widget.widget-size-1 {
        width: calc(100% - 20px);
    }
}

@media (max-width: 800px) {
    #widget-suppliers {
        display: block;
    }
}

@media (max-width: 700px) {
    #widget-customer-order {
        display: block;
    }

    #widget-customer-order .widget-col-left {
        padding: 50px 20px 20px 20px;
    }

    #widget-customer-order .widget-col-right {
        border-radius: 50px 50px 0 0;
    }
}

@media (min-width: 550px) and (max-width: 700px) {
    #widget-customer-order .widget-col-left div {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 30px;
    }
}

@media (max-width: 600px) {

    #widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-right-col,
    #widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_left_col {
        display: none;
    }

    #widget-news #carouselNewsWidget .carousel-inner .carousel-item .news-widget-left-col,
    #widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col {
        width: 100%;
    }

    .custom-carousel .carousel-indicators,
    #widget-suppliers .custom-carousel .carousel-indicators {
        left: 50%;
    }

    #widget-suppliers #carouselSupplierWidget .carousel-item .price_drop_widget_right_col {
        border: 0;
        margin: 0;
        border-radius: 0;
    }

    #widget-todo .one-todo .one-todo-left {
        display: none;
    }

    #widget-todo .one-todo .one-todo-content {
        width: 100% !important;
        padding-bottom: 120px !important;
    }

    #widget-todo .one-todo .one-todo-content .one-todo-content-link {
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 80% !important;
    }

    #widget-todo .carousel-indicators {
        left: 50%;
    }
}

@media (max-width: 550px) {
    #widget-customer-order .widget-order-list .widget-order {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    #widget-customer-order .widget-order-list .widget-order li {
        width: 100%;
        text-align: left !important;
    }

    #widget-customer-order .widget-order-list .widget-order li:nth-child(even) {
        text-align: end !important;
    }
}

@media (max-width: 500px) {
    #widget-todo .one-todo .one-todo-content .one-todo-content-checkbox {
        padding-right: 40px;
    }
}

/* Customer order */
.order-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.order-details .order-table {
    border: 5px solid var(--main-green-light-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--main-green-color);
    background: white;
}

.order-details .order-table.left-table {
    width: 65%;
}

.order-details .order-table.right-table {
    width: 35%;
    margin-right: 20px;
}

.order-details .order-table .order-table-header {
    background: var(--second-green-light-color);
    padding: 25px 30px;
    font-weight: bold;
    color: var(--main-green-dark-color);
}

.order-details .order-table .order-table-header span {
    color: var(--main-green-color);
}

.order-details .order-table .order-table-col {
    display: flex;
    background: white;
}

.order-details .order-table .order-table-col .order-table-col-1 {
    width: 100%;
}

.order-details .order-table .order-table-col .order-table-col-2 {
    width: 50%;
    border-right: 1px solid var(--second-green-light-color);
}

.order-details .order-table .order-table-col .order-table-col-3 {
    width: 33.33%;
    border-right: 1px solid var(--second-green-light-color);
}

.order-details .order-table .order-table-col .order-table-col-4 {
    width: 25%;
    border-right: 1px solid var(--second-green-light-color);
}

.order-details .order-table .order-table-col .order-table-col-2:last-child,
.order-details .order-table .order-table-col .order-table-col-3:last-child,
.order-details .order-table .order-table-col .order-table-col-4:last-child {
    border-right: 0;
}

.order-details .order-table .order-table-col .order-table-col-title {
    background: var(--main-green-light-color);
    padding: 25px 30px;
    color: var(--main-green-dark-color);
    font-weight: bold;
}

.order-details .order-table .order-table-col ul {
    padding: 0 30px;
    margin: 0;
    list-style: none;
}

.order-details .order-table .order-table-col ul li {
    margin-top: 20px;
    overflow-wrap: break-word;
}

.order-details .order-table .order-table-col ul li:last-child {
    margin-bottom: 20px;
}

.order-details .order-table .order-table-col ul li strong {
    color: var(--main-green-dark-color);
}

.order-details .order-table .order-table-col ul li a {
    display: block;
    margin-top: 20px;
    color: var(--main-orange-color);
    cursor: pointer;
    font-weight: 600;
}

.order-details .order-table .order-table-col ul li a:hover {
    color: var(--main-green-dark-color);
}

.order-details .order-table .order-table-col .order-table-product ul li {
    display: flex;
    justify-content: space-between;
    text-align: end;
    border-bottom: 1px solid var(--second-green-light-color);
    padding-bottom: 20px;
}

.order-details .order-table .order-table-col .order-table-product ul li:last-child {
    border-bottom: 0;
}

.order-details .order-table .order-table-col .order-table-product ul li div {
    width: 90px;
}

.order-details .order-table .order-table-col .order-table-product ul li div:first-child {
    text-align: left;
    width: calc(100% - 270px);
}

.order-details .order-table .order-table-col .order-table-totals ul {
    padding: 10px 25px;
    background: var(--second-green-light-color);
}

.order-details .order-table .order-table-col .order-table-totals ul li {
    display: flex;
    justify-content: space-between;
}

.order-details .order-table .order-table-col .order-table-total-ttc {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 25px 25px;
    margin-bottom: 30px;
    color: var(--main-orange-dark-color);
}

.order-details .order-table .order-table-col .order-table-total-ttc div:last-child {
    font-size: 22px;
}

.order-details .order-table.right-table .order-table-col .order-table-col-title {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
}

.order-details .order-table.right-table .order-table-col .order-table-col-title svg ellipse {
    stroke: white;
}

.order-details .order-table.right-table .order-table-col .order-table-col-title svg text {
    fill: white;
}

.mobile-table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mobile-table .one-mobile-order {
    background-color: white;
    border: 5px solid var(--main-green-color);
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc(50% - 20px);
    position: relative;
    font-size: 14px;
    color: var(--main-green-dark-color);
}

.mobile-table .one-mobile-order ul {
    padding: 20px;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 14px;
    color: var(--main-green-dark-color);
}

.mobile-table .one-mobile-order-btn {
    position: absolute;
    top: -5px;
    right: -5px;
}

.mobile-table .one-mobile-order-btn .btn.btn-success {
    background-color: var(--main-green-color);
    padding: 15px;
    border-radius: 15px 0 15px 15px;
}

.mobile-table .one-mobile-order-btn .btn.btn-success svg circle,
.mobile-table .one-mobile-order-btn .btn.btn-success svg line {
    stroke: white;
}

.mobile-table .one-mobile-order.no-order {
    width: calc(100% - 20px);
    padding: 20px;
}

@media (max-width: 1400px) {
    .order-details {
        flex-direction: column;
    }

    .order-details .order-table.left-table,
    .order-details .order-table.right-table {
        width: calc(100% - 20px);
    }
}

@media (min-width: 1200px) {
    .mobile-table {
        display: none;
    }
}

@media (max-width: 1200px) {
    .desktop-table {
        display: none;
    }
}

@media (max-width: 900px) {
    .order-details .order-table.left-table .order-table-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .order-details .order-table.left-table .order-table-col.grid-three-col {
        grid-template-columns: repeat(1, 1fr);
    }

    .order-details .order-table.left-table .order-table-col .order-table-col-4,
    .order-details .order-table.left-table .order-table-col .order-table-col-3,
    .order-details .order-table.left-table .order-table-col .order-table-col-2 {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .mobile-table .one-mobile-order {
        width: calc(100% - 20px);
    }
}

@media (max-width: 550px) {
    .order-details .order-table.left-table .order-table-col {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .order-details .order-table .order-table-col .order-table-product ul li {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .order-details .order-table .order-table-col .order-table-product ul li div {
        width: 100% !important;
        text-align: left !important;
    }

    .order-details .order-table .order-table-col .order-table-product ul li div:nth-child(even) {
        text-align: end !important;
    }
}

/* Communication kit */
.kitcom-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.kitcom-list .one-kit {
    width: calc(33% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    border: 5px solid var(--main-green-color);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s ease-in;
}

.kitcom-list .one-kit:hover {
    border-color: var(--main-orange-light-color);
}

.kitcom-list .one-kit .one-kit-content {
    width: 70%;
    margin-left: 30%;
    padding: 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 5px solid var(--main-green-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    margin-top: -5px;
    margin-bottom: -5px;
    transition: all .2s ease-in;
}

.kitcom-list .one-kit:hover .one-kit-content {
    border-color: var(--main-orange-light-color);
}

.kitcom-list .one-kit .one-kit-content .one-kit-content-date {
    margin-top: -15px;
}

.kitcom-list .one-kit .one-kit-content .one-kit-content-texte {
    font-weight: 500;
}

@media (max-width: 1350px) {
    .kitcom-list .one-kit {
        width: calc(50% - 20px);
    }
}

@media (max-width: 850px) {
    .kitcom-list .one-kit {
        width: calc(100% - 20px);
    }
}

@media (max-width: 450px) {
    .kitcom-list .one-kit .one-kit-content {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }
}

@media (min-width: 450px) {
    .kitcom-list .one-kit .one-kit-content {
        height: calc(100% + 10px);
    }
}

/* News */
.news-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news-list .one-news {
    width: calc(50% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    border: 5px solid var(--main-green-color);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s ease-in;
}

.news-list .one-news:hover {
    border-color: var(--main-orange-light-color);
}

.news-list .one-news.not-diffuse {
    opacity: .5;
}

.news-list .one-news .news-content {
    width: 50%;
    margin-left: 50%;
    padding: 40px 30px 30px 30px;
    background-color: var(--main-green-light-color);
    border: 5px solid var(--main-green-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    margin-top: -5px;
    margin-bottom: -5px;
    transition: all .2s ease-in;
    position: relative;
}

.news-list .one-news:hover .news-content {
    border-color: var(--main-orange-light-color);
}

.news-list .one-news .news-content .news-category {
    font-size: 12px;
    color: white;
    background-color: var(--main-green-dark-color);
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 7px 15px;
}

.news-list .one-news .news-content .news-infos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list .one-news .news-content .news-infos .news-date {
    margin-top: -15px;
}

.news-list .one-news .news-content .news-infos .news-exerpt {
    font-weight: 500;
}

.news-list .one-news .news-content .news-infos .btn {
    color: white;
    border-color: white;
    width: 70%;
    min-width: 170px;
}

.news-list .one-news .news-content .news-infos .btn:hover {
    border-color: var(--main-orange-dark-color);
}

.news-list .one-news .news-content .news-infos .news-hidden-infos {
    display: none;
}

@media (min-width: 2000px) {
    .news-list .one-news {
        width: calc(33% - 20px);
    }
}

@media (min-width: 1700px) and (max-width: 2000px) {
    .news-list .one-news .news-content {
        width: 65%;
        margin-left: 35%;
    }
}

@media (max-width: 1300px) {
    .news-list .one-news {
        width: calc(100% - 20px);
    }

    .news-list .one-news .news-content {
        width: 70%;
        margin-left: 30%;
    }
}

@media (max-width: 550px) {
    .news-list .one-news .news-content {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }
}

@media (min-width: 550px) {
    .news-list .one-news .news-content {
        height: calc(100% + 10px);
    }
}

/* Reports */
.reports {
    display: flex;
}

.reports .mystery-report,
.reports .visit-report {
    width: calc(100% - 20px);
    height: fit-content;
    margin-right: 20px;
    border: 5px solid var(--main-green-color);
    border-radius: 50px 50px 0 0;
}

.reports .report-title {
    font-size: 16px;
    background-color: var(--main-green-light-color);
    border-radius: 45px 45px 0 0;
    padding: 20px 30px;
}

.reports ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reports ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 0 30px;
    border-bottom: 1px solid var(--third-green-light-color);
}

.reports ul li:last-child {
    border-bottom: 0;
}

.reports .date-manual {
    font-weight: normal;
    color: var(--main-green-color);
}

@media (max-width: 850px) {
    .reports {
        display: block;
    }

    .reports .mystery-report,
    .reports .visit-report {
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .reports ul li {
        flex-direction: column;
        gap: 20px;
    }
}

/* Help */
.ticket-panel.hide,
.tuto-panel.hide {
    display: none;
}

.ticket-panel .ticket-form,
.ticket-panel .ticket-history {
    border: 5px solid var(--main-green-light-color);
    margin-bottom: 20px;
}

.ticket-panel .ticket-form {
    width: calc(100% - 20px);
    background-color: white;
    display: flex;
}

.ticket-panel .ticket-form img {
    width: 30%;
    padding: 50px;
    object-fit: contain;
}

.ticket-panel .ticket-form .ticket-form-content {
    width: 70%;
    border: 5px solid var(--main-green-light-color);
    border-right: 0;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 50px 0 0 50px;
    padding: 80px;
    background-color: var(--second-green-light-color);
    display: flex;
    flex-direction: column;
}

.ticket-panel .ticket-form .ticket-form-content form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.ticket-panel .ticket-history {
    width: calc(100% - 20px);
    margin-right: 20px;
}

.ticket-panel .ticket-history .ticket-history-title {
    background-color: var(--main-green-light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-green-dark-color);
    gap: 15px;
}

.ticket-panel .ticket-history .ticket-history-title svg ellipse,
.ticket-panel .ticket-history .ticket-history-title svg path {
    stroke: white;
}

.ticket-panel .ticket-history .ticket-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 650px;
}

.ticket-panel .ticket-history .ticket-history-list::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.ticket-panel .ticket-history .ticket-history-list::-webkit-scrollbar {
    width: 10px;
}

.ticket-panel .ticket-history .ticket-history-list::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.ticket-panel .ticket-history .ticket-history-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin: 0 20px 20px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-green-color);
    border-bottom: 1px solid var(--third-green-light-color);
}

.ticket-panel .ticket-history .ticket-history-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.ticket-panel .ticket-history .ticket-history-list li strong {
    color: var(--main-green-dark-color);
}

.ticket-panel .ticket-history .ticket-history-list li .label-ticket {
    display: block;
    text-align: center;
    background-color: var(--main-orange-color);
    color: white;
    padding: 8px 25px;
    margin-bottom: 5px;
}

.ticket-panel .ticket-history .ticket-history-list li .label-ticket.done {
    background-color: var(--main-green-light-color);
}

.ticket-panel .ticket-history .ticket-history-list li a {
    text-align: end;
    display: block;
    color: var(--main-green-color);
}

.ticket-panel .ticket-history .ticket-history-list li a:hover {
    color: var(--main-green-dark-color);
}

.ticket-panel .ticket-history .ticket-history-list li .ticket-hidden-infos {
    display: none;
}

.tuto-panel ul {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tuto-panel ul li {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: white;
    border: 5px solid var(--main-green-color);
    transition: all .2s ease-in;
}

.tuto-panel ul li:hover {
    border-color: var(--main-orange-light-color);
}

.tuto-panel ul li .tuto-content {
    margin-top: 180px;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 5px solid var(--main-green-color);
    transition: all .2s ease-in;
}

.tuto-panel ul li:hover .tuto-content {
    border-color: var(--main-orange-light-color);
}

.tuto-panel ul li .tuto-content .btn:hover,
.tuto-panel ul li .tuto-content .btn:active,
.tuto-panel ul li .tuto-content .btn:focus {
    color: var(--main-orange-dark-color);
}

.tuto-panel ul li .tuto-content .tuto-hidden-infos {
    display: none;
}

.tickets-validate-block {
    width: calc(100% - 20px);
    border: 5px solid var(--main-green-light-color);
    margin-bottom: 20px;
    margin-right: 20px;
}

.tickets-validate-block .tickets-validate-block-title {
    background-color: var(--main-green-light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-green-dark-color);
    gap: 15px;
}

.tickets-validate-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tickets-validate-block ul li {
    align-items: center;
    padding: 20px 0;
    margin: 0 20px 20px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-green-color);
    border-bottom: 1px solid var(--third-green-light-color);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 0px;
}

.tickets-validate-block ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.tickets-validate-block ul li strong {
    color: var(--main-green-dark-color);
}

.tickets-validate-block ul li a[data-bs-target="#modal-ticket"] {
    color: var(--main-green-color);
}

.tickets-validate-block ul li a[data-bs-target="#modal-ticket"]:hover {
    color: var(--main-green-dark-color);
}

.tickets-validate-block ul li .label-ticket {
    display: inline-block;
    text-align: center;
    background-color: var(--main-orange-color);
    color: white;
    padding: 8px 25px;
}

.tickets-validate-block ul li .ticket-hidden-infos {
    display: none;
}

@media (min-width: 1400px) {
    .ticket-panel {
        display: flex;
        gap: 20px;
    }

    .ticket-panel .ticket-form {
        width: calc(100% - 400px - 20px);
    }

    .ticket-panel .ticket-history {
        width: 400px;
    }
}

@media (max-width: 1400px) {
    .tuto-panel ul li {
        width: calc(33% - 20px);
    }
}

@media (max-width: 1000px) {
    .tuto-panel ul li {
        width: calc(50% - 20px);
    }

    .tickets-validate-block ul li {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .ticket-panel .ticket-form img {
        display: none;
    }

    .ticket-panel .ticket-form .ticket-form-content {
        width: 100%;
        border: 0;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
        padding: 50px;
    }
}

@media (max-width: 650px) {
    .tuto-panel ul li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 550px) {
    .ticket-panel .ticket-form .ticket-form-content {
        padding: 30px 20px;
    }
}

@media (max-width: 450px) {
    .tickets-validate-block ul li {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, 1fr);
        text-align: center;
    }
}

/* Cataweb */
.cataweb-header {
    z-index: 99;
}

.cataweb-header .cataweb-header-topbar {
    background-color: #085937;
    height: 40px;
    width: 100%;
}

.cataweb-header .cataweb-header-menubar {
    background-color: #CCE8DF;
    width: 100%;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 15px 10px 200px;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-logo {
    position: absolute;
    left: 0;
}

.cataweb-search-bar {
    position: relative;
}

.cataweb-search-bar svg {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.cataweb-search-bar input {
    border-radius: 0;
    padding-left: 50px;
    box-shadow: 0px 0px 3px #005B344D;
    border: 2px solid white;
    min-width: 400px;
    color: #085937 !important;
    font-weight: 600;
}

.cataweb-search-bar input::placeholder {
    color: #085937 !important;
    opacity: .5;
    font-weight: 100;
}

.cataweb-search-bar input:hover,
.cataweb-search-bar input:active {
    border-color: #085937;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    align-items: center;
    padding: 5px 0;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu .cataweb-favorite {
    background-color: #085937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    width: 70px;
    height: 70px;
    transform: rotate(45deg);
    transition: all .2s ease-in;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu .cataweb-favorite:hover {
    background-color: #167B50;
}

.cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu .cataweb-favorite svg {
    transform: rotate(-45deg);
}

#cataweb-burger,
#close-cataweb-nav {
    cursor: pointer;
    transition: all .2s ease-in;
}

#close-cataweb-nav:hover svg path {
    stroke: #ffc989;
}

#cataweb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #085937b5 0% 0% no-repeat padding-box;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
}

#cataweb-nav .cataweb-nav-content {
    max-width: 1400px;
    height: 70vh;
    margin: 15vh auto;
    position: relative;
}

#cataweb-nav .cataweb-nav-content #close-cataweb-nav {
    position: absolute;
    top: 0;
    right: 20px;
}

#cataweb-nav .cataweb-nav-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#cataweb-nav .cataweb-nav-content ul a {
    text-decoration: none;
    color: white;
    letter-spacing: 0.7px;
    font: normal normal normal 35px/45px 'Mirador-Bold';
}

.cataweb-content-page {
    padding-top: 180px;
    background-image: url(../img/bg-cartaweb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.cataweb-content-page .cataweb-inner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 100px;
    position: relative;
}

.cataweb-content-page .cataweb-inner-content .cataweb-bg-home {
    position: absolute;
    bottom: 0;
    left: -80px;
    right: -80px;
}

.cataweb-content-page .cataweb-inner-content .cataweb-bg-home img {
    width: 100%;
}

.cataweb-home-categories {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 20px;
}

.cataweb-home-categories li {
    width: calc(50% - 20px);
    margin-bottom: 20px;
    padding: 50px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 360px;
}

.cataweb-home-categories li.full-width {
    width: 100%;
}

.cataweb-home-categories li h2 {
    color: white;
    font: normal normal bold 35px/36px 'Mirador-Bold';
    letter-spacing: 0.7px;
    text-shadow: 0px 0px 10px #00000098;
}

.cataweb-home-categories li hr {
    width: 60px;
    height: 2px;
    color: #EB9182;
    opacity: 1;
    margin: 30px 0;
}

.cataweb-home-categories li .btn.btn-light {
    padding: 15px 50px;
    color: white;
    border-color: white;
    border-width: 1px;
    display: inline-block;
    z-index: 80;
    position: relative;
}

.cataweb-home-categories li .btn.btn-light:hover {
    border-color: #167B50;
    background-color: #167B50;
}

#cataweb-page .cataweb-filters {
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

#cataweb-page .cataweb-filters .cataweb-clear-selection {
    width: calc(50% - 20px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 15px;
}

#cataweb-page .cataweb-filters .cataweb-clear-selection .btn {
    height: 51px;
    padding: 10px 40px;
    display: block;
    background-color: #572017;
    border: 2px solid #572017;
}

#cataweb-page .cataweb-filters .cataweb-clear-selection .btn:hover,
#cataweb-page .cataweb-filters .cataweb-clear-selection .btn:active,
#cataweb-page .cataweb-filters .cataweb-clear-selection .btn:focus {
    color: #572017;
    background-color: transparent;
}

#cataweb-page .cataweb-filters .custom-select {
    width: calc(25% - 20px) !important;
    margin-bottom: 15px;
}

#cataweb-page .cataweb-filters .custom-select .select-selected {
    border-radius: 0;
    border: 1px solid #005B34;
    box-shadow: 0px 0px 3px #005B344D;
    transition: all .2s ease-in;
}

#cataweb-page .cataweb-filters .custom-select .select-selected.require-selected {
    font-weight: 600;
    color: #085937;
}

#cataweb-page .cataweb-filters .custom-select .select-selected:hover,
#cataweb-page .cataweb-filters .custom-select .select-selected.select-arrow-active {
    border-color: white;
}

#cataweb-page .cataweb-filters .custom-select .select-items {
    border-color: white;
    border-radius: 0;
    box-shadow: 0px 0px 3px #005B344D;
}

#cataweb-page .cataweb-filters .custom-select .select-items div:last-child {
    border-radius: 0;
}

#cataweb-page .cataweb-leaf-products {
    position: absolute;
    top: 300px;
    left: -250px;
}

#cataweb-page h1 {
    color: #883E32;
    font-size: 13px;
    line-height: 16px;
    padding: 15px 20px;
    font-weight: 600;
}

#cataweb-page .cataweb-products-list {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

#cataweb-page .cataweb-products-list .no-product {
    font-size: 20px;
    line-height: 24px;
    color: #085937;
    font-weight: 500;
}

#cataweb-page .cataweb-products-list li {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    background-color: white;
    position: relative;
    box-shadow: 3px 3px 10px #5720171C;
    border: 2px solid transparent;
}

#cataweb-page .cataweb-products-list li:hover {
    border-color: #167B50;
}

#cataweb-page .cataweb-products-list li a {
    text-decoration: none;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-star {
    position: absolute;
    background-color: #085937;
    border: 2px solid white;
    border-radius: 14px;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -7px;
    right: -7px;
    transition: all .2s ease-in;
    z-index: 5;
    cursor: pointer;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-star:hover {
    background-color: #167B50;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-star.product-in-selection {
    background-color: #EB9182 !important;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-image {
    overflow: hidden;
}

#cataweb-page .cataweb-products-list li img {
    width: 100%;
    object-fit: cover;
    height: 340px;
    transition: all .2s ease-in;
}

#cataweb-page .cataweb-products-list li:hover img {
    transform: scale(1.5);
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-content {
    padding: 25px;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-content .cataweb-miniature-content-title {
    font-size: 20px;
    line-height: 24px;
    min-height: 48px;
    letter-spacing: 0px;
    color: #085937;
    font-weight: 500;
    margin-bottom: 20px;
}

#cataweb-page .cataweb-products-list li .cataweb-miniature-content .cataweb-miniature-content-price {
    font-size: 20px;
    line-height: 24px;
    color: #572017;
    font-weight: 500;
}

#cataweb-product {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 0 20px;
}

#cataweb-product .cataweb-product-left-col,
#cataweb-product .cataweb-product-right-col {
    width: 50%;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-back-link {
    text-decoration: underline;
    font: normal normal 600 13px/16px Montserrat;
    color: #085937;
    cursor: pointer; /* ajout 8 aout 2024 - curseur */
}

#cataweb-product .cataweb-product-right-col .cataweb-product-back-link:hover {
    color: #167B50;
}

#cataweb-product .cataweb-product-right-col h1 {
    font: normal normal bold 60px/62px "Mirador-Bold";
    letter-spacing: 1.2px;
    color: #085937;
    margin: 10px 0;
}

#cataweb-product .cataweb-product-right-col h2 {
    font: normal normal bold 23px/27px "Mirador-Bold";
    letter-spacing: 0px;
    color: #085937;
    margin: 15px 0;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-description {
    color: #085937;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 50px;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes {
    margin-bottom: 50px;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute {
    margin-bottom: 20px;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute h3 {
    margin-bottom: 15px;
    color: #085937;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #085937;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    width: 55px;
    height: 55px;
    border: 2px solid #085937;
    border-radius: 36px;
    cursor: pointer;
    transition: all .2s ease-in;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute ul li:hover {
    color: white;
    background-color: #085937;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute ul li.active {
    color: white;
    background-color: #572017 !important;
    border-color: #572017 !important;
}

#cataweb-product .cataweb-product-right-col .cataweb-product-price {
    margin-bottom: 50px;
    font: normal normal bold 50px/61px Montserrat;
    color: #572017;
}

#cataweb-product .cataweb-product-right-col .btn {
    display: block;
    margin-bottom: 25px;
    min-width: 300px;
    height: 55px;
    padding: 10px 20px;
    border-radius: 36px;
    border: 2px solid #085937;
}

#cataweb-product .cataweb-product-right-col .btn.btn-primary {
    background-color: #085937;
}

#cataweb-product .cataweb-product-right-col .btn:hover,
#cataweb-product .cataweb-product-right-col .btn:active,
#cataweb-product .cataweb-product-right-col .btn:focus {
    background-color: #167B50;
    border-color: #167B50;
    color: white;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-category-title {
    color: #883E32;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images {
    position: relative;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images .cataweb-product-main-image {
    padding-left: 50px;
    width: 100%;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li {
    cursor: pointer;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-prev,
#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 50px;
    border: 2px solid #085937;
    border-radius: 43px;
    background-color: white;
    transition: all .2s ease-in;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-prev:hover,
#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-next:hover {
    background: #167B50 0% 0% no-repeat padding-box;
    border: 2px solid #085937;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-prev svg {
    transform: rotate(180deg);
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-prev:hover svg path,
#cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-next:hover svg path {
    stroke: white;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail {
    width: 105px;
    height: 105px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all .2s ease-in;
    overflow: hidden;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail.invisible,
#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail.invisible-top {
    display: none;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail.active {
    border: 4px solid #EB9182;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all .2s ease-in;
}

#cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail:hover img {
    transform: scale(1.5);
}

@media (max-width: 1600px) {
    .cataweb-content-page .cataweb-inner-content .cataweb-bg-home {
        display: none;
    }
}

@media (max-width: 1300px) {
    #cataweb-page .cataweb-products-list li {
        width: calc(33% - 20px);
    }

    #cataweb-page .cataweb-filters .custom-select {
        width: calc(33% - 20px) !important;
    }
}

@media (max-width: 1100px) {
    #cataweb-product .cataweb-product-left-col .cataweb-product-images .cataweb-product-main-image {
        padding: 0;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul {
        position: relative;
        transform: rotate(-90deg);
        margin: -290px 0 -160px 0;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail img {
        transform: rotate(90deg);
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail:hover img {
        transform: scale(1.5) rotate(90deg);
    }

    #cataweb-product {
        display: block;
    }

    #cataweb-product .cataweb-product-left-col,
    #cataweb-product .cataweb-product-right-col {
        width: 100%;
    }

    #cataweb-product .cataweb-product-left-col {
        margin-bottom: 50px;
    }
}

@media (max-width: 1000px) {
    .cataweb-home-categories li {
        width: 100%;
    }

    #cataweb-page .cataweb-products-list li {
        width: calc(50% - 20px);
    }

    #cataweb-page .cataweb-filters .custom-select {
        width: calc(50% - 20px) !important;
    }
}

@media (max-width: 800px) {
    #cataweb-page .cataweb-filters .cataweb-clear-selection .btn {
        padding: 10px 20px;
    }

    .cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content {
        padding: 10px 15px 10px 150px;
    }

    .cataweb-search-bar input {
        min-width: unset;
    }
}

@media (max-width: 600px) {
    .cataweb-header .cataweb-header-topbar {
        display: none;
    }

    .cataweb-content-page {
        padding-top: 100px;
    }

    .cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content {
        padding: 10px 15px 10px 90px;
    }

    .cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-logo img {
        max-width: 80px;
    }

    .cataweb-search-bar input {
        max-width: 160px;
    }

    .cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu {
        gap: 20px;
    }

    .cataweb-header .cataweb-header-menubar .cataweb-header-menubar-content .cataweb-menu .cataweb-favorite {
        width: 50px;
        height: 50px;
    }

    #cataweb-page .cataweb-products-list li {
        width: 100%;
    }

    #cataweb-page .cataweb-filters {
        display: block;
    }

    #cataweb-page .cataweb-filters .cataweb-clear-selection {
        width: 100%;
        display: block;
    }

    #cataweb-page .cataweb-filters .cataweb-clear-selection .btn {
        width: 100%;
    }

    #cataweb-page .cataweb-filters .custom-select {
        width: 100% !important;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul {
        margin: -200px 0 -100px 0;
        gap: 15px;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-container {
        gap: 15px;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-prev,
    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul .cataweb-product-images-next {
        width: 50px;
        height: 30px;
    }

    #cataweb-product .cataweb-product-left-col .cataweb-product-images ul li.cataweb-product-images-thumbnail {
        width: 70px;
        height: 70px;
    }

    #cataweb-product .cataweb-product-right-col .cataweb-product-attributes .cataweb-product-one-attribute ul {
        gap: 10px;
    }
}

/* Todo */
.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.todo-list li {
    margin-bottom: 20px;
    width: calc(33% - 20px);
}

.todo-list li img,
#widget-todo img {
    max-width: 100%;
}

.todo-list .add-a-todo {
    border: 5px solid var(--main-green-dark-color);
    background-color: var(--main-green-light-color);
    display: flex;
    align-items: center;
}

.todo-list .add-a-todo .add-a-todo-content {
    width: 60%;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.todo-list .add-a-todo .add-a-todo-content .add-a-todo-content-title {
    font: normal normal bold 23px/28px Montserrat;
    color: #FFFFFF;
}

.todo-list .add-a-todo .add-a-todo-content .add-a-todo-content-text {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.todo-list .add-a-todo .add-a-todo-content .add-a-todo-content-cta .btn {
    width: 100%;
}

.todo-list .add-a-todo .add-a-todo-image {
    width: 40%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% + 10px);
    border-radius: 50px 0 0 50px;
    background-color: var(--main-green-dark-color);
    margin-top: -5px;
    margin-bottom: -5px;
}

.todo-list .one-todo,
#widget-todo .one-todo {
    display: flex;
    align-items: center;
    border: 5px solid var(--main-green-color);
    background-color: white;
    cursor: pointer;
    transition: all .2s ease-in;
    position: relative;
}

.todo-list .one-todo {
    min-height: 375px;
    max-height: 450px;
}

.todo-list .one-todo:hover,
#widget-todo .one-todo:hover {
    border-color: var(--main-orange-light-color);
}

.todo-list .one-todo .one-todo-image,
#widget-todo .one-todo .one-todo-image {
    height: calc(100% + 10px);
    border-radius: 0 50px 50px 0;
    border: 5px solid var(--main-green-color);
    border-left: 0;
    margin-top: -5px;
    margin-bottom: -5px;
    width: 50%;
    transition: all .2s ease-in;
}

.todo-list .one-todo:hover .one-todo-image,
#widget-todo .one-todo:hover .one-todo-image {
    border-color: var(--main-orange-light-color);
}

.todo-list .one-todo .one-todo-image img,
#widget-todo .one-todo .one-todo-image img {
    object-fit: cover;
    height: 100%;
    border-radius: 0 45px 45px 0;
}

.todo-list .one-todo .one-todo-content,
#widget-todo .one-todo .one-todo-content {
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.todo-list .one-todo .one-todo-content .one-todo-content-date,
#widget-todo .one-todo .one-todo-content .one-todo-content-date {
    color: white;
    background-color: var(--main-orange-color);
    padding: 8px 13px 7px 13px;
    width: fit-content;
    font: normal normal 500 16px/20px Montserrat;
}

.todo-list .one-todo .one-todo-content .one-todo-content-checkbox,
#widget-todo .one-todo .one-todo-content .one-todo-content-checkbox {
    display: flex;
    gap: 15px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.todo-list .one-todo:hover input[type=checkbox],
#widget-todo .one-todo:hover input[type=checkbox] {
    outline-color: var(--main-green-dark-color);
    border-color: #CEF0E5;
}

.todo-list .one-todo input[type=checkbox].enabled-checkbox,
#widget-todo .one-todo input[type=checkbox].enabled-checkbox {
    background-color: var(--main-green-dark-color);
    outline-color: var(--main-green-dark-color);
    border-color: #CEF0E5;
}

.todo-list .one-todo .one-todo-content .one-todo-content-checkbox .one-todo-content-checkbox-info .one-todo-content-checkbox-info-title,
#widget-todo .one-todo .one-todo-content .one-todo-content-checkbox .one-todo-content-checkbox-info .one-todo-content-checkbox-info-title {
    color: var(--main-green-color);
    font-weight: bold;
}

@media (max-width: 1500px) {
    .todo-list li {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1000px) {
    .todo-list li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 500px) {

    .todo-list .add-a-todo .add-a-todo-content,
    .todo-list .one-todo .one-todo-content,
    #widget-todo .one-todo .one-todo-content {
        width: 100%;
    }

    .todo-list .add-a-todo .add-a-todo-image,
    .todo-list .one-todo .one-todo-image,
    #widget-todo .one-todo .one-todo-image {
        display: none;
    }

    .todo-list .one-todo {
        min-height: unset;
        padding-bottom: 30px;
    }

    .todo-list .add-a-todo .add-a-todo-content {
        padding: 40px 40px;
    }
}

/* Compo */
.block-compo-home {
    display: flex;
    gap: 20px;
}

.block-compo-home .block-compo-home-left,
.block-compo-product .block-compo-product-left {
    width: calc(100% - 400px - 20px);
    margin-bottom: 20px;
}

.block-compo-home .block-compo-home-left .block-select-week {
    background-color: var(--second-green-light-color);
    padding: 30px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.block-compo-home .block-compo-home-left .block-select-week .custom-select {
    max-width: 350px;
}

.block-compo-home .block-compo-home-left .block-compo-news {
    display: flex;
    border: 5px solid var(--main-green-dark-color);
    margin-bottom: 20px;
    margin-right: 20px;
}

.block-compo-home .block-compo-home-left .block-compo-news .block-compo-news-image {
    width: 55%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
}

.block-compo-home .block-compo-home-left .block-compo-news .block-compo-news-content {
    width: calc(45% + 50px);
    padding: 80px 40px;
    margin-left: -50px;
    background-color: var(--main-green-dark-color);
    color: white;
    border-radius: 50px 0 0 50px;
    font: normal normal 500 14px/20px Montserrat;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block-compo-home .block-compo-home-left .block-compo-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product {
    width: calc(33.33333% - 20px);
    border: 5px solid var(--main-green-color);
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product img {
    width: 100%;
    height: 250px;
    /* object-fit: cover;  EDIT SPKTR OCTOBRE 2025 */
    object-fit: contain;
    background-color: white;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content {
    border-top: 5px solid var(--main-green-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .block-compo-one-product-added {
    background-color: var(--main-orange-color);
    border-radius: 16px 0 0 16px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -5px;
    top: -27px;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .block-compo-one-product-title {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .block-compo-one-product-qte-price {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .block-compo-one-product-qte-price .block-compo-one-product-price {
    text-align: end;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .block-compo-one-product-qte-price .block-compo-one-product-price span {
    color: var(--main-orange-color);
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .btn {
    height: 60px;
}

.block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product .block-compo-one-product-content .btn:hover {
    color: var(--main-orange-dark-color);
}

.block-compo-home-right {
    width: 400px;
    margin-left: -20px;
    margin-right: 20px;
    margin-bottom: 20px;
    max-height: 800px;
    border: 5px solid var(--main-green-light-color);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.block-compo-home-right .block-compo-home-right-title {
    background-color: var(--main-green-light-color);
    display: flex;
    width: 100%;
    height: 75px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-home-right .block-compo-home-right-product-selection {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-bottom: 6px solid var(--second-green-light-color);
    margin-bottom: 50px;
    height: 100%;
    overflow-y: auto;
}

.block-compo-home-right .block-compo-home-right-product-selection::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.block-compo-home-right .block-compo-home-right-product-selection::-webkit-scrollbar {
    width: 10px;
}

.block-compo-home-right .block-compo-home-right-product-selection::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.block-compo-home-right .block-compo-home-right-product-selection li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin: 0 30px;
    border-bottom: 1px solid var(--third-green-light-color);
}

.block-compo-home-right .block-compo-home-right-product-selection li:last-child {
    border-bottom: 0;
}

.block-compo-home-right .block-compo-home-right-product-selection li .block-compo-home-right-product-selection-name strong {
    display: block;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-home-right .block-compo-home-right-product-selection li .block-compo-home-right-product-selection-name a {
    font: normal normal normal 14px/22px Montserrat;
}

.block-compo-home-right .block-compo-home-right-product-selection li button {
    border: 0;
    outline: none;
    background: unset;
    padding: 0;
    margin: 0;
    transition: all .2s ease-in;
}

.block-compo-home-right .block-compo-home-right-product-selection li button:hover svg path,
.block-compo-home-right .block-compo-home-right-product-selection li button:hover svg line {
    stroke: var(--main-orange-color);
}

.block-compo-home-right .btn {
    margin-bottom: 50px;
}

.block-compo-product {
    display: flex;
    gap: 20px;
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product {
    border: 5px solid var(--main-green-color);
    display: flex;
    margin-bottom: 20px;
    margin-right: 20px;
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-image-product {
    width: 55%;
    /* background-size: cover; EDIT SPKTR OCTOBRE 2025 */
    background-repeat: no-repeat;
    /* background-position: left center; */
    display: block;
    background-color: white;
    background-size: contain;
    background-position: center;
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product {
    width: calc(45% + 50px);
    padding: 80px 40px;
    margin-left: -50px;
    background-color: white;
    border: 5px solid var(--main-green-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    margin-top: -5px;
    margin-bottom: -5px;
    position: relative;
}

.block-compo-product-left-info-product-print {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--main-green-color);
    border-radius: 16px 0 16px 16px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease-in;
}

.block-compo-product-left-info-product-print:hover {
    background-color: var(--main-orange-light-color);
}

.block-compo-product-left-info-product-print svg rect,
.block-compo-product-left-info-product-print svg path {
    stroke: white;
}

.block-compo-product-left-info-product-print:hover svg rect,
.block-compo-product-left-info-product-print:hover svg path {
    stroke: var(--main-orange-dark-color);
}

.block-compo-product-left-info-product-print svg circle {
    fill: white;
}

.block-compo-product-left-info-product-print:hover svg circle {
    fill: var(--main-orange-dark-color);
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product .block-compo-one-product-added {
    background-color: var(--main-orange-color);
    border-radius: 16px 0 0 16px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.block-compo-one-product-detail-text {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-one-product-detail-text h1 {
    font: normal normal bold 23px/20px Montserrat;
    margin-bottom: 5px;
}

.block-compo-one-product-detail-text span {
    color: var(--main-orange-color);
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product .block-compo-one-product-detail-actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product .block-compo-one-product-detail-actions .custom-input-quantity {
    margin-top: 10px;
}

.block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product .block-compo-one-product-detail-actions .btn {
    min-width: 180px;
}

.block-compo-product-left-block-compo-list {
    border: 5px solid var(--main-green-color);
    border-radius: 50px 50px 0 0;
    margin-bottom: 20px;
    margin-right: 20px;
    background-color: white;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title {
    border-radius: 45px 45px 0 0;
    background-color: var(--main-green-light-color);
    display: flex;
    justify-content: space-between;
    padding: 25px 45px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    gap: 50px;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name {
    font: normal normal bold 23px/22px Montserrat;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name,
.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
    width: calc(100% - 380px - 100px);
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-qte,
.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte {
    width: 190px;
    text-align: center;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte span {
    display: none;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-categ {
    background-color: var(--second-green-light-color);
    padding: 20px 45px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products {
    list-style: none;
    padding: 0 45px;
    margin: 0;
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 50px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--second-green-light-color);
}

.block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li:last-child {
    border-bottom: 0;
}

.block-compo-selection {
    display: flex;
    gap: 20px;
}

.block-compo-selection .block-compo-selection-left {
    width: calc(100% - 400px - 20px);
    margin-bottom: 20px;
}

.block-compo-selection .block-compo-selection-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li {
    background-color: white;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 50px 50px 0 0;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header {
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-name {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-delete a {
    font: normal normal normal 14px/22px Montserrat;
    color: var(--main-green-color);
    transition: all .2s ease-in;
    cursor: pointer;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-delete a:hover {
    color: var(--main-green-dark-color);
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content {
    border: 5px solid var(--main-green-color);
    border-radius: 50px 50px 0 0;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header {
    border-radius: 45px 45px 0 0;
    background-color: var(--main-green-light-color);
    display: flex;
    justify-content: space-between;
    padding: 25px 45px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    gap: 40px;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-name {
    font: normal normal bold 23px/22px Montserrat;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-name,
.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-name {
    width: calc(100% - 380px - 20px - 120px);
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-qte,
.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte {
    width: 190px;
    text-align: center;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-delete,
.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete {
    width: 20px;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-categ {
    background-color: var(--second-green-light-color);
    padding: 20px 45px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list {
    padding: 0 45px;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 40px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--second-green-light-color);
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li:last-child {
    border-bottom: 0;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte span {
    display: none;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete button {
    border: 0;
    outline: none;
    background: unset;
    padding: 0;
    margin: 0;
    transition: all .2s ease-in;
    width: 20px;
    text-align: end;
}

.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete button:hover svg path,
.block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete button:hover svg line {
    stroke: var(--main-orange-color);
}

@media (min-width: 1150px) {
    .block-compo-home-right {
        height: calc(100vh - 260px - 40px);
        position: fixed;
        right: 0;
    }
}

@media (max-width: 1470px) {
    .block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product {
        width: calc(50% - 20px);
    }
}

@media (min-width: 1150px) and (max-width: 1470px) {
    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product {
        display: block;
    }

    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-image-product {
        width: 100%;
        height: 450px;
    }

    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product {
        width: 100%;
        margin: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-radius: 0;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
        width: calc(100% - 240px - 100px);
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-qte,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte {
        width: 120px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-name,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-name {
        width: calc(100% - 240px - 20px - 120px);
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-qte,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte {
        width: 120px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-quantity,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-add {
        justify-content: end;
        display: flex;
    }
}

@media (max-width: 1150px) {

    .block-compo-home,
    .block-compo-product,
    .block-compo-selection {
        display: block;
    }

    .block-compo-home .block-compo-home-left,
    .block-compo-product .block-compo-product-left,
    .block-compo-selection .block-compo-selection-left {
        width: calc(100% - 20px);
    }

    .block-compo-home-right {
        width: calc(100% - 40px);
        margin-left: 0;
        margin-right: 0;
    }

    .block-compo-home-right .block-compo-home-right-product-selection {
        height: unset;
        min-height: 320px;
        max-height: 725px;
    }
}

@media (max-width: 900px) {
    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product {
        display: block;
    }

    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-image-product {
        width: 100%;
        height: 450px;
    }

    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product {
        width: 100%;
        margin: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-radius: 0;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
        width: calc(100% - 240px - 100px);
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-qte,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte {
        width: 120px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-name,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-name {
        width: calc(100% - 240px - 20px - 120px);
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-qte,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte {
        width: 120px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-quantity,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-add {
        justify-content: end;
        display: flex;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-add .btn {
        padding: 15px 20px;
    }

}

@media (max-width: 650px) {
    .block-compo-home .block-compo-home-left .block-compo-news .block-compo-news-image {
        display: none;
    }

    .block-compo-home .block-compo-home-left .block-compo-news .block-compo-news-content {
        width: 100%;
        padding: 40px;
        margin-left: 0;
        border-radius: 0;
    }

    .block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product {
        width: calc(100% - 20px);
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title {
        gap: 25px;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
        width: calc(100% - 200px - 50px);
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-qte,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte {
        width: 100px;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-name,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-name,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-qte,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte {
        width: 100%;
        text-align: left;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-name {
        font-weight: 600;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-qte,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-header .block-compo-selection-left-content-header-delete {
        display: none;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li {
        display: block;
        position: relative;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-qte span {
        display: inline;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header {
        display: flex;
        flex-direction: column;
    }

    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-quantity,
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-header .block-compo-selection-left-header-add {
        justify-content: flex-start;
    }
}

@media (max-width: 550px) {

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-name,
    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
        width: 100%;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-title .block-compo-product-left-block-compo-list-qte {
        display: none;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li {
        display: block;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte {
        width: 100%;
        text-align: left;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-name {
        font-weight: 600;
    }

    .block-compo-product-left-block-compo-list .block-compo-product-left-block-compo-list-products li .block-compo-product-left-block-compo-list-qte span {
        display: inline;
    }
}

@media (max-width: 500px) {
    .block-compo-product .block-compo-product-left .block-compo-product-left-block-product .block-compo-product-left-info-product .block-compo-one-product-detail-actions {
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .block-compo-selection .block-compo-selection-left ul li.block-compo-selection-left-li .block-compo-selection-left-content .block-compo-selection-left-content-elements-list li .block-compo-selection-left-content-elements-list-delete {
        top: 15px;
    }
}

/* Suppliers */
.suppliers-btn-first-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.suppliers-btn-first-line a {
    height: 56.41px;
    padding: 10px 50px;
    display: flex;
    align-items: center;
}

.suppliers-btn-first-line .settings-add-button {
    margin-bottom: 0;
}

.suppliers-first-line {
    background-color: var(--third-green-light-color);
    background-image: url(../img/illustration-supplier.png);
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 98% center;
    gap: 20px;
    margin-bottom: 20px;
}

.suppliers-first-line #widget-suppliers {
    width: 33%;
}

.suppliers-first-line .suppliers-top-line {
    display: flex;
    width: 50%;
    gap: 20px;
}

.suppliers-first-line .supplier-top-line {
    width: 50%;
    margin: 15px 0;
}

.suppliers-first-line .supplier-top-line .supplier-content {
    height: 100%;
    background-color: var(--main-green-dark-color);
    border: 5px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 30px;
    color: white;
    font: normal normal 500 14px/20px Montserrat;
    transition: all .2s ease-in;
}

.suppliers-first-line .supplier-top-line .supplier-content .supplier-content-logo {
    position: absolute;
    right: 30px;
    top: 35px;
}

.suppliers-first-line .supplier-top-line .supplier-content .supplier-content-logo svg path,
.suppliers-first-line .supplier-top-line .supplier-content .supplier-content-logo svg circle,
.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-category svg path,
.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-category svg ellipse {
    stroke: var(--main-green-light-color);
}

.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-name {
    font: normal normal bold 23px/22px Montserrat;
    margin-bottom: 40px;
}

.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-category {
    margin-top: 25px;
    margin-bottom: 35px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-cta {
    display: flex;
    justify-content: center;
    /* ajout janvier 2025 */
    align-items: center;
    gap: 1em;
}

.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-cta a {
    width: 200px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 15px;
    height: 60px;
}

.suppliers-first-line .supplier-top-line .supplier-content .supllier-content-cta a:hover svg .fill {
    fill: var(--main-orange-dark-color);
    stroke: none;
}

.suppliers-second-line ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.suppliers-second-line ul li {
    width: calc(25% - 20px);
    border: 5px solid var(--main-green-color);
    background-color: white;
    padding: 30px;
    position: relative;
    transition: all .2s ease-in;
}

.suppliers-first-line .supplier-top-line .supplier-content:hover,
.suppliers-second-line ul li:hover {
    border-color: var(--main-orange-light-color);
}

.suppliers-first-line .supplier-top-line .supplier-content:hover .supllier-content-cta a,
.suppliers-second-line ul li:hover .supllier-content-cta a {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

.suppliers-first-line .supplier-top-line .supplier-content:hover .supllier-content-cta a svg .fill {
    fill: var(--main-orange-dark-color);
    stroke: none;
}

.suppliers-second-line ul li .supplier-content {
    display: flex;
    flex-direction: column;
}

.suppliers-second-line ul li .supplier-content .supplier-content-logo {
    position: absolute;
    right: 30px;
}

.suppliers-second-line ul li .supplier-content .supplier-content-logo img {
    width: 80px;
    max-height: 80px;
    object-fit: cover;
}

.suppliers-second-line ul li .supplier-content .supllier-content-name {
    padding-right: 90px;
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 40px;
    min-height: 44px;
}

.suppliers-second-line ul li .supplier-content .supllier-content-description {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.suppliers-second-line ul li .supplier-content .supllier-content-category {
    display: flex;
    align-items: center;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    margin-top: 25px;
    margin-bottom: 95px;
    gap: 15px;
}

.suppliers-second-line ul li .supplier-content .supllier-content-cta {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.supplier-filters-btns {
    display: flex;
    align-items: center;
    gap: 75px;
}

.supplier-order {
    display: flex;
    gap: 20px;
}

.supplier-order .supplier-order-left-col {
    /* edit spktr octobre 2025 width: calc(100% - 480px - 20px); */
    width: calc(75%);
    margin-bottom: 20px;
}

.supplier-order .supplier-order-right-col {
    /* edit spktr octobre 2025 width: 480px; */
    width: 330px;
    margin-left: -20px;
    margin-right: 20px;
    margin-bottom: 20px;
    max-height: 800px;
    border: 5px solid var(--main-green-light-color);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block {
    display: flex;
    position: relative;
    border: 5px solid var(--main-green-dark-color);
    background-color: var(--second-green-light-color);
    margin-right: 20px;
    margin-bottom: 20px;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-action {
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 55px;
    height: 55px;
    background-color: var(--main-green-dark-color);
    border-radius: 16px 16px 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font: normal normal bold 22px/22px Montserrat;
    text-decoration: none;
    transition: all .2s ease-in;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-action:hover {
    background-color: var(--main-orange-light-color);
    color: var(--main-orange-dark-color);
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-label {
    width: 28%;
    padding-left: 70px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container {
    width: 72%;
    border: 5px solid var(--main-green-dark-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    margin-top: -5px;
    margin-bottom: -5px;
    background-color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .carousel-indicators {
    left: 20% !important;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item {
    display: flex;
    align-items: center;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col {
    width: 40%;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col img {
    width: 100%;
    height: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 45px 0 0 45px;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content {
    width: calc(60% + 50px);
    height: 160px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-left: -50px;
    background-color: var(--main-green-dark-color);
    border-radius: 50px 0 0 50px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content .price-drop-exerpt {
    font: normal normal 500 14px/20px Montserrat;
    color: white;
    margin-bottom: 10px;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content .price-drop-price {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-light-color);
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content .price-drop-hidden-infos {
    display: none;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content .btn {
    color: white;
    border-color: white;
    min-width: 180px;
    padding: 20px;
}

.supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content .btn:hover {
    border-color: var(--main-orange-light-color);
}

.supplier-products {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supplier-products li {
    display: flex;
    border: 5px solid var(--main-green-color);
    background-color: var(--main-green-light-color);
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 1450px;
    position: relative;
    /* edit spktr octobre 2025 */
    justify-content: space-between;
}

.supplier-products li .supplier-products-mark-added {
    background-color: var(--main-orange-color);
    border-radius: 16px 0 0 16px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.supplier-products li .supplier-products-infos {
    position: relative;
    display: flex;
    /* width: 320px; edit spktr octobre 2025 */
    width: fit-content;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-expire {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: var(--main-orange-color);
    width: 170px;
    padding: 7px;
    font: normal normal 600 12px/16px Montserrat;
    color: var(--main-orange-dark-color);
}

.supplier-products li .supplier-products-infos .supplier-products-infos-expire span {
    color: white;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-see-photo {
    position: absolute;
    bottom: -5px;
    left: -5px;
    background-color: var(--main-green-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 16px 0;
    cursor: pointer;
    transition: all .2s ease-in;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-see-photo:hover {
    background-color: var(--main-orange-light-color);
}

.supplier-products li .supplier-products-infos .supplier-products-infos-see-photo:hover svg path {
    stroke: var(--main-orange-dark-color);
}

.supplier-products li .supplier-products-infos .supplier-products-infos-image {
    display: flex;
    align-items: center;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-image img {
    width: 160px;
    height: 100%;
    object-fit: cover;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-text {
    border-left: 5px solid var(--main-green-color);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-text .supplier-products-infos-text-name {
    font: normal normal bold 17px/19px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-products li .supplier-products-infos .supplier-products-infos-text .supplier-products-infos-text-reference {
    font: normal normal 500 12px/19px Montserrat;
    color: var(--main-green-dark-color);
    margin-top: 2px;
}

.supplier-products li .supplier-products-infos .supplier-products-infos-text .supplier-products-infos-text-description {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-products li .supplier-products-details,
.supplier-products li .supplier-products-actions {
    width: calc(50% - 160px);
}

.supplier-products li .supplier-products-details {
    display: flex;
    background-color: var(--third-green-light-color);
    border-radius: 40px 0 0 40px;
    padding: 20px 15px;
    font: normal normal 500 14px/20px Montserrat;
    color: white;
    gap: 15px;
    /* edit spktr octobre 2025 */
    width: fit-content;
}

.supplier-products li .supplier-products-details .supplier-products-details-caracs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--third-green-light-color);
    /* edit spktr octobre 2025 */
    width: 170px;
}

.supplier-products li .supplier-products-details .supplier-products-details-caracs .group-carac {
    padding-right: 15px;
}

.supplier-products li .supplier-products-details .group-carac .group-title {
    font-weight: bold;
    color: var(--main-green-dark-color);
}

.supplier-products li .supplier-products-details .group-carac .group-color {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-top: 10px;
}

.supplier-products li .supplier-products-actions {
    background-color: white;
    padding: 15px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    font: normal normal 500 12px/16px Montserrat;
    color: var(--main-green-dark-color);
    /* edit spktr octobre 2025 */
    width: fit-content;
}

.supplier-products li .supplier-products-actions .supplier-products-actions-qte {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 130px;
}

.supplier-products li .supplier-products-actions .supplier-products-actions-btn {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.supplier-products li .supplier-products-actions .supplier-products-actions-btn .supplier-products-actions-update.settings-update-button a {
    cursor: pointer;
    text-decoration: underline;
    font: normal normal normal 12px/16px Montserrat;
    color: var(--main-green-color);
    transition: all .2s ease-in;
}

.supplier-products li .supplier-products-actions .supplier-products-actions-btn .supplier-products-actions-btn-total-price {
    font: normal normal 500 14px/20px Montserrat;
    margin-top: 10px;
}

.supplier-products li .supplier-products-actions .supplier-products-actions-btn .supplier-products-actions-btn-total-price b {
    font: normal normal bold 23px/20px Montserrat;
}

.order-history {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
    max-height: 500px;
    min-height: 300px;
    overflow-y: auto;
    padding: 0 30px;
    border-bottom: 6px solid var(--second-green-light-color);
}

.order-history::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.order-history::-webkit-scrollbar {
    width: 10px;
}

.order-history::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.order-history li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--third-green-light-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.order-history li:first-child {
    padding-top: 30px;
}

.order-history li:last-child {
    border: 0;
    margin-bottom: 0;
}

.order-history li .order-history-price {
    text-align: end;
}

.order-history li strong {
    color: var(--main-green-dark-color);
}

#supplier-order-right-col-mobile-cart {
    z-index: 80;
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    top: 45%;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
    background-color: var(--main-orange-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-title {
    background-color: var(--main-green-light-color);
    display: flex;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-right-col .btn {
    margin-bottom: 3%;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products::-webkit-scrollbar {
    width: 10px;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin: 0 30px;
    border-bottom: 1px solid var(--third-green-light-color);
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products li:last-child {
    border-bottom: 0;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products li strong {
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products .supplier-order-right-col-products-price {
    text-align: end;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products li .delete-product-cart {
    border: 0;
    outline: none;
    background: unset;
    padding: 0;
    margin: 0;
    transition: all .2s ease-in;
}

.supplier-order-right-col-container.open-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: block;
}

.supplier-order .open-confirmation .supplier-order-right-col {
    width: 480px;
    height: 90vh;
    margin-left: 0;
    margin-right: 0;
    left: 50%;
    right: unset;
    top: 5vh;
    transform: translateX(-50%);
    margin: 0;
    position: fixed;
}

.open-confirmation #supplier-order-right-col-return-mobile-btn,
.open-confirmation .btn {
    display: block !important;
}

#supplier-order-right-col-return-mobile-btn:hover {
    color: var(--main-orange-dark-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-products-totals {
    width: 100%;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-shipping {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
    background-color: var(--second-green-light-color);
    padding: 5px 25px;
    align-items: center;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-shipping strong {
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-total-ht {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    padding: 0 25px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-tva {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 25px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-total-ttc {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 25px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-orange-dark-color);
    align-items: center;
}

.supplier-order .supplier-order-right-col .supplier-order-right-col-total-ttc .total-ttc {
    font: normal normal bold 22px/22px Montserrat;
}

@media (min-width: 1150px) {
    .supplier-order .supplier-order-right-col {
        height: calc(100vh - 260px - 40px);
        position: fixed;
        right: 0;
    }

    #supplier-order-right-col-return-mobile-btn,
    .supplier-order .supplier-order-right-col .btn {
        display: none;
    }

    #supplier-order-right-col-validate-btn {
        display: block !important;
    }

    .open-confirmation #supplier-order-right-col-validate-btn {
        display: none !important;
    }
}

@media (min-width: 1650px) {
    .supplier-order .supplier-order-right-col {
        width: 480px;
    }
    .supplier-order .supplier-order-left-col {
        width: calc(100% - 480px - 20px);
    }
}

@media (max-width: 1600px) {
    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-label {
        width: 180px;
        padding-left: 50px;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container {
        width: calc(100% - 180px);
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-label span span {
        display: none;
    }

    .supplier-order #widget-suppliers {
        width: 100%;
    }
}

@media (max-width: 1500px) {
    .suppliers-first-line {
        display: block;
    }

    .suppliers-first-line #widget-suppliers,
    .suppliers-first-line .suppliers-top-line {
        width: 75%;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content {
        height: auto;
        padding: 30px;
        flex-direction: column;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col img {
        max-height: 210px;
    }
}

@media (max-width: 1400px) {
    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-label {
        display: none;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col img {
        border-radius: 0;
    }
}

@media (min-width: 1150px) and (max-width: 1350px) {
    .supplier-products li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 1300px) {
    .supplier-filters-btns {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .suppliers-second-line ul li {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1150px) {
    .supplier-order {
        display: block;
    }

    .supplier-order .supplier-order-left-col {
        width: calc(100% - 20px);
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col img {
        max-height: 200px;
    }

    #supplier-order-right-col-mobile-cart {
        display: flex;
    }

    .supplier-order-right-col-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none;
    }

    .supplier-order .supplier-order-right-col {
        /* edit spktr octobre 2025 width: 480px; */
        width: 330px;
        height: 90vh;
        margin-left: 0;
        margin-right: 0;
        left: 50%;
        right: unset;
        top: 5vh;
        transform: translateX(-50%);
        margin: 0;
        position: fixed;
    }

    .supplier-order .supplier-order-right-col .btn {
        min-width: 225px;
    }

    #supplier-order-right-col-validate-btn {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .suppliers-first-line {
        background-image: none;
        margin-right: 20px;
    }

    .suppliers-first-line #widget-suppliers,
    .suppliers-first-line .suppliers-top-line {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .supplier-products li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 750px) {
    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item {
        display: block;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-left-col {
        width: 100%;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .promo-block-carousel .carousel-item .promo-block-carousel-right-col.price-drop-content {
        margin: 0;
        width: 100%;
    }

    .supplier-order .supplier-order-left-col .supplier-order-promo-block .supplier-order-promo-block-carousel-container .carousel-indicators {
        left: 50% !important;
        bottom: unset;
        top: 160px;
    }
}

@media (max-width: 700px) {
    .suppliers-btn-first-line {
        flex-direction: column;
        align-items: start;
    }

    .suppliers-btn-first-line a {
        padding: 10px 45px;
    }
}

@media (max-width: 650px) {
    .suppliers-first-line .suppliers-top-line {
        display: block;
    }

    .suppliers-first-line .supplier-top-line {
        width: 100%;
    }

    .suppliers-second-line ul li {
        width: calc(100% - 20px);
    }
}

@media (max-width: 500px) {
    .supplier-order .supplier-order-right-col {
        width: 360px;
    }

    .supplier-order .supplier-order-right-col .supplier-order-right-col-products li {
        margin: 0 20px;
        flex-wrap: wrap;
    }

    .supplier-order .supplier-order-right-col .supplier-order-right-col-products .supplier-order-right-col-products-price {
        text-align: left;
    }
}

@media (max-width: 450px) {
    .supplier-products li .supplier-products-infos .supplier-products-infos-image img {
        width: 130px;
    }

    .supplier-products li .supplier-products-infos .supplier-products-infos-expire {
        width: 140px;
    }

    .supplier-products li .supplier-products-actions {
        flex-direction: column;
        align-items: center;
    }

    .supplier-products li .supplier-products-details {
        flex-direction: column;
        gap: 0;
    }

    .supplier-products li .supplier-products-details .supplier-products-details-caracs {
        border: 0;
    }

    .supplier-products li .supplier-products-details .supplier-products-details-caracs .group-carac {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    .supplier-products li .supplier-products-details .supplier-products-details-colors {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--third-green-light-color);
    }

    .supplier-products li .supplier-products-details .supplier-products-details-colors .group-carac {
        display: flex;
        align-items: center;
    }

    .supplier-products li .supplier-products-details .supplier-products-details-colors .group-carac .group-color {
        margin: 0;
        margin-left: 15px;
    }
}

/* Promo */
.promo-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-list ul .one-promo {
    width: calc(25% - 20px);
    border: 5px solid var(--main-green-dark-color);
    display: flex;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.promo-list ul .one-promo .one-promo-content {
    width: 50%;
    margin-left: 50%;
    padding: 40px 30px 30px 30px;
    background-color: var(--main-green-light-color);
    border: 5px solid var(--main-green-dark-color);
    border-right: 0;
    border-radius: 50px 0 0 50px;
    margin-top: -5px;
    margin-bottom: -5px;
    position: relative;
}

.promo-list ul .one-promo .one-promo-content .price-drop-title-actu {
    font: normal normal bold 23px/20px Montserrat;
    color: white;
}

.promo-list ul .one-promo .one-promo-content .price-drop-date {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
    margin-top: 5px;
    margin-bottom: 20px;
}

.promo-list ul .one-promo .one-promo-content .price-drop-exerpt {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 5px;
}

.promo-list ul .one-promo .one-promo-content .price-drop-price {
    font: normal normal 500 14px/20px Montserrat;
    color: white;
}

.promo-list ul .one-promo .one-promo-content .price-drop-hidden-infos {
    display: none;
}

.promo-list ul .one-promo .one-promo-content .btn {
    margin-top: 20px;
    color: white;
    border-color: white;
}

.promo-list ul .one-promo .one-promo-content .btn:hover {
    border-color: var(--main-orange-dark-color);
}

.add-one-promo {
    display: flex;
    width: calc(50% - 20px);
    border: 5px solid var(--main-green-light-color);
    background-color: var(--main-green-dark-color);
}

.add-one-promo .add-one-promo-left {
    width: 50%;
    border: 5px solid var(--main-green-light-color);
    border-left: 0;
    border-radius: 0 60px 60px 0;
    margin: -5px 0;
}

.add-one-promo .add-one-promo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 55px 55px 0;
}

.add-one-promo .add-one-promo-right {
    width: 50%;
    padding: 30px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

.add-one-promo .add-one-promo-right .add-one-promo-right-title {
    font: normal normal bold 23px/22px Montserrat;
    color: white;
}

.add-one-promo .add-one-promo-right .add-one-promo-right-text {
    margin: 20px 0;
    font: normal normal 500 14px/20px Montserrat;
    color: white;
}

.add-one-promo .add-one-promo-right .btn {
    width: fit-content;
}

@media (max-width: 2100px) {
    .promo-list ul .one-promo {
        width: calc(33.33% - 20px);
    }

    .add-one-promo {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 1600px) {
    .promo-list ul .one-promo {
        width: calc(50% - 20px);
        background-size: 60%;
    }

    .add-one-promo {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1150px) {
    .promo-list ul .one-promo {
        width: calc(100% - 20px);
    }

    .add-one-promo {
        width: calc(100% - 20px);
    }
}

@media (max-width: 550px) {
    .promo-list ul .one-promo .one-promo-content {
        width: 100%;
        margin-left: 0;
        background-color: var(--main-green-light-color);
        border: 0;
        border-radius: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .add-one-promo .add-one-promo-left {
        display: none;
    }

    .add-one-promo .add-one-promo-right {
        width: 100%;
    }
}

/* Autocomplete address */
.autocomplete-address {
    position: absolute;
    margin: 0;
    list-style: none;
    margin-top: 5px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    border: 1px solid var(--main-green-dark-color);
    border-radius: 5px;
    padding: 0;
}

.autocomplete-address li {
    cursor: pointer;
    padding: 5px 25px;
    border-radius: 3px;
    transition: all .2s ease-in;
}

.autocomplete-address li:hover {
    background-color: var(--main-green-dark-color);
    color: white;
}

/* Add/update button settings */
.settings-add-button {
    margin-bottom: 20px;
}

.settings-add-button .btn {
    padding: 15px 40px 15px 15px;
}

.settings-add-button .btn:hover svg text {
    fill: var(--main-orange-dark-color);
}

.settings-update-container {
    position: relative;
}

.settings-update-container.manual-settings-container {
    padding-bottom: 40px;
}

.settings-update-container .settings-update-button {
    position: absolute;
    top: 10px;
    right: 15px;
}

.settings-update-container.manual-settings-container .settings-update-button {
    top: unset;
    right: 0px;
    bottom: 10px;
}

.news-content.settings-update-container .settings-update-button {
    right: unset;
    top: 5px;
}

.supplier-content.settings-update-container .settings-update-button,
.suppliers-second-line ul li.settings-update-container .settings-update-button {
    top: 5px;
    right: 10px;
}

.settings-update-container .settings-update-button span {
    cursor: pointer;
    text-decoration: underline;
    font: normal normal normal 12px/16px Montserrat;
    color: var(--main-green-color);
    transition: all .2s ease-in;
}

.block-compo-news.settings-update-container .settings-update-button span {
    color: white;
}

.settings-update-container .settings-update-button span:hover {
    color: var(--main-green-dark-color);
}

.block-compo-news.settings-update-container .settings-update-button span:hover {
    color: var(--main-orange-color);
}

.suppliers-first-line .supplier-top-line .supplier-content.settings-update-container .settings-update-button span {
    color: white;
}

.suppliers-first-line .supplier-top-line .supplier-content.settings-update-container .settings-update-button span:hover {
    color: var(--main-orange-color);
}

.settings-remove-link {
    text-align: center;
}

.settings-remove-link span {
    cursor: pointer;
    text-decoration: underline;
    font: normal normal normal 14px/22px Montserrat;
    color: var(--main-green-color);
    transition: all .2s ease-in;
}

.settings-remove-link span:hover {
    color: var(--main-green-dark-color);
}

/* Configuration page */
.configuration-bloc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.configuration-bloc {
    width: calc(50% - 20px);
    border: 5px solid var(--main-green-dark-color);
    background-color: white;
    display: flex;
}

.configuration-bloc .configuration-bloc-content {
    padding: 30px;
    width: calc(100% - 300px);
}

.configuration-bloc .configuration-bloc-content .configuration-bloc-title {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
    margin-bottom: 20px;
}

.configuration-bloc .configuration-bloc-content .configuration-bloc-text {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.configuration-bloc .configuration-bloc-cta {
    background-color: var(--main-green-dark-color);
    border-radius: 60px 0 0 60px;
    width: 300px;
    margin: -5px 0;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.configuration-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.configuration-product {
    width: calc(50% - 20px);
    border: 5px solid var(--main-green-color);
    background-color: var(--main-green-light-color);
    display: flex;
}

.configuration-product .configuration-product-image {
    border-right: 5px solid var(--main-green-color);
    position: relative;
    width: 150px;
    min-height: 150px;
}

.configuration-product .configuration-product-image .supplier-products-infos-image {
    height: 100%;
    width: 100%;
}

.configuration-product .configuration-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.configuration-product .configuration-product-image .configuration-product-image-quickview {
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-green-color);
    border-radius: 16px 16px 16px 0;
    cursor: pointer;
    transition: all .2s ease-in;
}

.configuration-product .configuration-product-image .configuration-product-image-quickview:hover {
    background-color: var(--main-orange-color);
}

.configuration-product .configuration-product-image .configuration-product-image-quickview:hover svg path {
    stroke: var(--main-orange-dark-color);
}

.configuration-product .configuration-product-infos {
    width: calc(100% - 300px);
    padding: 30px;
}

.configuration-product .configuration-product-infos .configuration-product-infos-name {
    font: normal normal bold 17px/19px Montserrat;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.configuration-product .configuration-product-infos .configuration-product-infos-ref {
    font: normal normal normal 12px/19px Montserrat;
    color: var(--main-green-dark-color);
}

.configuration-product .configuration-product-action {
    width: 150px;
    background-color: white;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.configuration-product .configuration-product-action .configuration-product-action-price {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
}

.configuration-product .configuration-product-action .configuration-product-action-price span {
    font: normal normal bold 23px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.configuration-product .configuration-product-action .configuration-product-action-update {
    text-align: center;
}

.configuration-product .configuration-product-action .configuration-product-action-update span {
    font: normal normal normal 12px/16px Montserrat;
    color: var(--main-green-color);
    text-decoration: underline;
    cursor: pointer;
    transition: all .2s ease-in;
}

.configuration-product .configuration-product-action .configuration-product-action-update span:hover {
    color: var(--main-green-dark-color);
}

.product-settings-tab {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-tab-btns {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.product-tab-btns .btn {
    margin: 0 !important;
}

.compo-category-container {
    max-height: 500px;
    overflow-y: auto;
}

.compo-category-container .compo-category-block {
    margin-bottom: 15px;
}

.compo-category-container::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.compo-category-container::-webkit-scrollbar {
    width: 10px;
}

.compo-category-container::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.compo-category-container .compo-category-title {
    background-color: var(--second-green-light-color);
    padding: 20px 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.compo-category-container .compo-category-title div {
    font: normal normal bold 20px/20px Montserrat;
    margin-right: 10px;
}

.compo-category-container .compo-category-products {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    border: 2px solid var(--second-green-light-color);
}

.compo-category-container .compo-category-products li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--second-green-light-color);
    padding: 10px 0;
}

.compo-category-container .compo-category-products li:last-child {
    border-bottom: 0;
}

.input-square {
    border-color: var(--main-green-light-color) !important;
    border-radius: 0 !important;
    height: 40px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 160px !important;
}

.settings-image-title {
    background-color: var(--second-green-light-color);
    padding: 20px 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
}

.settings-main-image {
    border: 10px solid var(--second-green-light-color);
    border-top: 0;
}

.settings-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.settings-other-images {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    border: 10px solid var(--second-green-light-color);
    border-top: 0;
    overflow-x: auto;
}

.settings-other-images::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.settings-other-images::-webkit-scrollbar {
    height: 10px;
}

.settings-other-images::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.settings-other-images li {
    position: relative;
}

.settings-other-images img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.settings-other-images li span {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: white;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease-in;
}

.settings-other-images li span:hover svg path,
.settings-other-images li span:hover svg line {
    stroke: var(--main-orange-dark-color);
}

.settings-other-images li span:hover {
    background-color: var(--main-orange-color);
}

.prepare-selection-hebdo {
    background-color: var(--second-green-light-color);
    padding: 30px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.prepare-selection-hebdo form {
    display: inline-flex;
    gap: 30px;
    width: 50%;
}

.prepare-selection-hebdo form .btn {
    width: 330px;
    height: 51px;
    padding: 0 15px;
}

.configuration-product.selection-page {
    cursor: pointer;
    position: relative;
    transition: all .2s ease-in;
}

.configuration-product.selection-page:hover {
    opacity: 1 !important;
}

.configuration-product.selection-page .configuration-product-layout-selection {
    display: none;
    transition: all .2s ease-in;
}

.configuration-product.selection-page:hover .configuration-product-layout-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .8);
    z-index: 9;
}

.config-general-section {
    margin-bottom: 40px;
    margin-right: 20px;
}

.config-general-section .config-general-section-title {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.config-general-section .config-general-block {
    margin-top: 20px;
}

.config-general-section .config-general-block .config-general-block-title {
    background-color: var(--second-green-light-color);
    padding: 20px 15px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.config-general-section .config-general-block .config-general-block-title.no-cursor {
    cursor: auto;
    display: flex;
    align-items: center;
}

.config-general-section .config-general-block .config-general-block-title div {
    font: normal normal bold 20px/20px Montserrat;
    margin-right: 10px;
}

.config-general-block-title>span {
    width: 100px;
}

.config-search-bar {
    margin-right: 50%;
}

.config-general-section .config-general-block .config-general-block-list {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    border: 2px solid var(--second-green-light-color);
    background-color: white;
    max-height: 400px;
    overflow-y: auto;
}

.config-general-section .config-general-block .config-general-block-list::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.config-general-section .config-general-block .config-general-block-list::-webkit-scrollbar {
    height: 10px;
}

.config-general-section .config-general-block .config-general-block-list::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.config-general-section .config-general-block .config-general-block-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--second-green-light-color);
    padding: 10px 0;
    gap: 10px;
}

.config-general-section .config-general-block .config-general-block-list li:last-child {
    border-bottom: 0;
}

.config-general-section .config-general-block .config-general-block-list li.attribute {
    background-color: var(--main-green-color);
    color: white;
    margin: 0 -15px;
    padding: 10px 15px;
}

.config-general-section .config-general-block .config-general-block-list li a {
    cursor: pointer;
    text-decoration: underline;
    transition: all .2s ease-in;
}

.config-general-section .config-general-block .config-general-block-list li a:hover {
    color: var(--main-green-color);
}

.config-general-section .config-general-block .config-general-block-list li.attribute a:hover {
    color: var(--main-orange-dark-color);
}

.config-general-section .config-general-block .config-general-block-list li.flex-col-3 span {
    width: 33.33%;
}

.stores-list-user {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    max-height: 370px;
    overflow-y: auto;
}

.stores-list-user::-webkit-scrollbar-track {
    background-color: var(--third-green-light-color);
}

.stores-list-user::-webkit-scrollbar {
    width: 5px;
}

.stores-list-user::-webkit-scrollbar-thumb {
    background-color: var(--main-green-dark-color);
}

.stores-list-user.disabled-stores {
    opacity: 0.5;
}

.stores-list-user li {
    margin-bottom: 10px;
}

.stores-list-user.disabled-stores input {
    cursor: auto;
}

@media (max-width: 1400px) {
    .configuration-bloc {
        width: calc(100% - 20px);
    }
}

@media (max-width: 1100px) {
    .configuration-product {
        width: calc(100% - 20px);
    }
}

@media (max-width: 650px) {
    .prepare-selection-hebdo form {
        flex-direction: column;
        display: flex;
    }

    .prepare-selection-hebdo form .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .configuration-bloc {
        flex-direction: column;
    }

    .configuration-bloc .configuration-bloc-content {
        width: 100%;
    }

    .configuration-bloc .configuration-bloc-cta {
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 20px;
    }
}

@media (max-width: 550px) {
    .configuration-product {
        flex-direction: column;
    }

    .configuration-product .configuration-product-image {
        width: 100%;
        max-height: 150px;
        border-right: 0;
        border-bottom: 5px solid var(--main-green-color);
    }

    .configuration-product .configuration-product-infos,
    .configuration-product .configuration-product-action {
        width: 100%;
    }

    .configuration-product .configuration-product-action {
        text-align: center;
    }

    .product-tab-btns {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

    .config-general-section .config-general-block .config-general-block-list li.flex-col-3 {
        flex-direction: column;
        text-align: center;
    }

    .config-general-section .config-general-block .config-general-block-list li.flex-col-3 span {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .compo-category-container .compo-category-title {
        text-align: center;
    }

    .compo-category-container .compo-category-products li {
        flex-direction: column;
    }

    .input-square {
        margin-top: 10px;
    }
}

/* PRINT */
.print-content {
    display: none;
}

@media print {

    header,
    nav,
    main,
    footer {
        display: none;
    }

    .print-content {
        display: block;
    }
}

.print-content .print-product-compo h1 {
    font-size: 30px;
    font-weight: bold;
    color: var(--main-orange-dark-color);
}

.print-content .print-product-compo hr {
    border-top: 3px solid var(--main-green-color);
    margin: 15px 0;
}

.print-content .print-product-compo-two-cols {
    display: flex;
    gap: 50px;
}

.print-content .print-product-compo-two-cols .print-product-compo-two-cols-left,
.print-content .print-product-compo-two-cols .print-product-compo-two-cols-left {
    width: 50%;
}

.print-content .print-product-compo-two-cols .print-product-compo-two-cols-left img {
    width: 100%;
}

.print-content .print-product-compo-two-cols .print-product-compo-two-cols-text {
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.print-product-compo .print-product-compo-compo-list {
    border: 2px solid var(--main-green-color);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-title {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    background-color: var(--main-green-light-color);
    padding: 25px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-title .print-product-compo-compo-list-title-name {
    width: calc(100% - 400px);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-title .print-product-compo-compo-list-title-qte {
    width: 200px;
    text-align: center;
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-categ {
    background-color: var(--second-green-light-color);
    padding: 15px 25px;
    font: normal normal bold 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content li {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding: 15px 25px;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--second-green-light-color);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content li:last-child {
    border-bottom: 0;
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content li .print-product-compo-compo-list-content-name {
    width: calc(100% - 400px);
}

.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content li .print-product-compo-compo-list-content-qte {
    width: 200px;
    text-align: center;
}

.print-product-cataweb .print-product-cataweb-header {
    background-color: #CCE8DF;
    position: relative;
    display: flex;
    padding-left: 150px;
    margin-bottom: 80px;
}

.print-product-cataweb .print-product-cataweb-header img {
    position: absolute;
    left: 0;
    top: 5px;
}

.print-product-cataweb .print-product-cataweb-header div {
    padding: 15px 0;
}

.print-product-cataweb .print-product-cataweb-header div h1 {
    font: normal normal bold 30px/32px "Mirador-Bold";
    letter-spacing: 1.2px;
    color: #085937;
    margin-bottom: 0;
}

.print-product-cataweb .print-product-cataweb-header div h3 {
    font: normal normal 500 14px/17px Montserrat;
    font-style: italic;
    color: #085937;
    margin: 0;
}

.print-product-cataweb .print-product-cataweb-infos {
    padding: 0 25px;
}

.print-product-cataweb .print-product-cataweb-infos .print-product-cataweb-infos-text {
    color: #085937;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-top: 10px;
}

.print-product-cataweb .print-product-cataweb-infos h2 {
    font: normal normal bold 20px/24px "Mirador-Bold";
    letter-spacing: 0px;
    color: #085937;
    margin-top: 20px;
}

.print-product-cataweb .print-product-cataweb-photo {
    width: 70vw;
    margin-left: 15vw;
    margin-top: 30px;
}

.print-product-cataweb .print-product-cataweb-photo img {
    width: 100%;
}

.print-product-cataweb .print-product-cataweb-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #085937;
    text-align: center;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

/* Product supplier */
.products-supplier-add-btns {
    list-style: none;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.add-one-supplier-product {
    display: flex;
    width: calc(50% - 20px);
    border: 5px solid var(--main-green-dark-color);
    background-color: white;
}

.add-one-supplier-product .add-one-supplier-product-left {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.add-one-supplier-product .add-one-supplier-product-left .add-one-supplier-product-right-title {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.add-one-supplier-product .add-one-supplier-product-left .add-one-supplier-product-right-text {
    margin: 20px 0;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.add-one-supplier-product .add-one-supplier-product-left .btn {
    width: fit-content;
}

.add-one-supplier-product .add-one-supplier-product-right {
    width: 50%;
    background-color: var(--main-green-dark-color);
    border: 5px solid var(--main-green-dark-color);
    border-right: 0;
    border-radius: 60px 0 0 60px;
    margin: -5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-supplier-add-btns .add-one-promo,
#widget-supplier-products-promos .add-one-promo {
    max-height: 250px;
}

.products-supplier-list.supplier-products {
    background-color: var(--second-green-light-color);
    margin-right: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.products-supplier-list.supplier-products .product-supplier-container {
    max-width: none;
    width: calc(50% - 30px);
    margin-left: 20px;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.products-supplier-list.supplier-products li .supplier-products-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.products-supplier-list.supplier-products li .supplier-products-actions .supplier-products-actions-qte-unit-price {
    font: normal normal 500 14px/20px Montserrat;
}

.products-supplier-list.supplier-products li .supplier-products-actions .supplier-products-actions-qte-unit-price b {
    font: normal normal bold 23px/20px Montserrat;
}

.products-supplier-list.supplier-products li .supplier-products-actions .supplier-products-actions-update a {
    font: normal normal normal 12px/16px Montserrat;
    color: var(--main-green-color);
    transition: all .2s ease-in;
}

.products-supplier-list.supplier-products li .supplier-products-actions .supplier-products-actions-update a:hover {
    color: var(--main-green-dark-color);
}

.products-supplier-list.supplier-products p.main-text-size.color-green-dark {
    padding: 20px;
    padding-bottom: 0;
}

@media (max-width: 2100px) {
    .products-supplier-add-btns .add-one-promo {
        width: calc(50% - 20px);
    }
}

@media (min-width: 1000px) and (max-width: 1350px) {

    .products-supplier-add-btns .add-one-promo,
    #widget-supplier-products-promos .add-one-promo {
        max-height: 300px;
    }
}

@media (min-width: 1000px) and (max-width: 1150px) {

    .products-supplier-add-btns .add-one-promo,
    #widget-supplier-products-promos .add-one-promo {
        max-height: 320px;
    }
}

@media (min-width: 1650px) {
    .products-supplier-list {
        width: calc(100% - 320px - 370px);
    }
}

@media (min-width: 1650px) and (max-width: 1800px) {

    .products-supplier-list.supplier-products li .supplier-products-details .supplier-products-details-caracs {
        border-right: 0;
    }

    .products-supplier-list.supplier-products li .supplier-products-details .supplier-products-details-colors {
        display: none;
    }

    .products-supplier-list.supplier-products li .supplier-products-actions {
        width: calc(100% - 320px - 270px);
    }
}

@media (max-width: 1650px) {
    .products-supplier-list.supplier-products li .supplier-products-actions {
        flex-direction: row;
        padding-top: 80px;
        height: 100%;
    }

    .supplier-products li .supplier-products-infos .supplier-products-infos-image img {
        height: 150px;
    }
}

@media (max-width: 1000px) {

    .products-supplier-add-btns .add-one-promo,
    .add-one-supplier-product {
        width: calc(100% - 20px);
    }
}

@media (max-width: 900px) {
    .products-supplier-list.supplier-products .product-supplier-container {
        width: calc(100% - 40px);
    }
}

@media (max-width: 550px) {
    .add-one-supplier-product .add-one-supplier-product-left {
        width: 100%;
    }

    .add-one-supplier-product .add-one-supplier-product-right {
        display: none;
    }
}

/* Widgets supplier environnement */
#widget-supplier-order {
    border: 5px solid var(--main-green-dark-color);
    background-color: var(--main-green-light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#widget-supplier-order .widget-supplier-order-top {
    padding: 45px 20px;
    text-align: center;
}

#widget-supplier-order .widget-supplier-order-top .widget-supplier-order-top-text {
    font: normal normal 500 14px/20px Montserrat;
    color: white;
}

#widget-supplier-order .widget-supplier-order-top .widget-supplier-order-top-nbr {
    font: normal normal bold 100px/140px Montserrat;
    color: var(--main-green-dark-color);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
}

#widget-supplier-order .widget-supplier-order-bottom {
    background-color: var(--third-green-light-color);
    border-radius: 60px 60px 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-title {
    font: normal normal bold 23px/22px Montserrat;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    font: normal normal 500 14px/20px Montserrat;
    color: var(--main-green-color);
    margin-bottom: 25px;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid white;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li div {
    width: 25%;
    text-align: center;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li div:first-child {
    text-align: left;
}

#widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li div:last-child {
    text-align: end;
}

#widget-supplier-products-promos {
    flex-direction: column;
}

#widget-supplier-products-promos .configuration-bloc {
    width: 100%;
    height: fit-content;
}

#widget-supplier-products-promos .add-one-promo {
    width: 100%;
    margin-top: 20px;
}

#widget-supplier-products-promos .last-product-supplier {
    background-color: var(--second-green-light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
    padding-top: 50px;
}

#widget-supplier-products-promos .last-product-supplier .last-product-supplier-title {
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-green-dark-color);
    border-bottom: 1px solid var(--main-green-light-color);
    width: 100%;
    text-align: center;
    position: relative;
}

#widget-supplier-products-promos .last-product-supplier .last-product-supplier-title span {
    min-width: 260px;
    background-color: var(--second-green-light-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 25px;
}

#widget-supplier-products-promos .products-supplier-list.supplier-products,
#widget-supplier-products-promos .products-supplier-list.supplier-products .product-supplier-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

#carouselSupplierWidget {
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    #carouselNewsWidget .carousel-indicators {
        left: 32.5%;
        border: 1px solid white;
    }
}

@media (max-width: 550px) {
    #widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    #widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li div {
        width: 100%;
        text-align: left;
    }

    #widget-supplier-order .widget-supplier-order-bottom .widget-supplier-order-bottom-list li div:nth-child(even) {
        text-align: end;
    }
}

@media (max-width: 450px) {
    #widget-supplier-order .widget-supplier-order-top .widget-supplier-order-top-nbr {
        width: 250px;
    }
}

/* Delivery page */
header.delivery-header {
    background-color: var(--main-green-color);
    padding: 0 15px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.delivery-header a:first-child {
    position: absolute;
    left: 30px;
}

main.delivery-content {
    padding-top: 70px;
    background-color: var(--main-gray-color);
    min-height: 100vh;
}

.delivery-topbar {
    background-color: var(--main-gray-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
}

.delivery-topbar h1 {
    font: normal normal bold 23px/22px Montserrat;
    margin: 0;
    padding: 0;
    color: var(--main-green-color);
}

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

.delivery-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
}

.delivery-list li .delivery-list-icon {
    display: flex;
    width: 70px;
    justify-content: center;
}

.delivery-list li .delivery-list-no-orders {
    padding: 30px 35px;
}

.delivery-list li .delivery-list-content {
    padding: 30px 10px;
    padding-left: 0;
    width: calc(100% - 70px - 50px);
}

.delivery-list li .delivery-list-content .delivery-status {
    margin-bottom: 15px;
}

.delivery-list li .delivery-list-content .delivery-status span {
    font: normal normal 500 14px/13px Montserrat;
    padding: 8px 15px;
    color: white;
}

.delivery-list li .delivery-list-content .delivery-infos {
    font: normal normal 500 14px/16px Montserrat;
    color: var(--main-green-dark-color);
}

.delivery-list li .delivery-list-content .delivery-infos strong {
    color: var(--main-orange-dark-color);
}

.delivery-list li .delivery-list-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    background-color: var(--main-green-light-color);
    padding: 15px 0;
    width: 40px;
}

footer.delivery-footer #back-to-top {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px 16px 0 0;
    width: 185px;
}

.delivery-topbar-detail {
    background-color: var(--main-gray-color);
    padding: 35px;
}

.delivery-topbar-detail h1 {
    font: normal normal bold 23px/22px Montserrat;
    color: var(--main-green-color);
    border-bottom: 1px solid var(--main-green-color);
    padding-bottom: 12.5px;
    margin-bottom: 16.5px;
}

.delivery-topbar-detail .delivery-topbar-detail-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-topbar-detail .delivery-topbar-detail-status strong {
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-orange-dark-color);
    margin-right: 15px;
}

.delivery-topbar-detail .delivery-topbar-detail-status span {
    font: normal normal 500 14px/13px Montserrat;
    padding: 8px 15px;
    color: white;
}

.delivery-topbar-detail .delivery-topbar-detail-status a {
    font: normal normal 500 14px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.delivery-infos-delivery {
    background-color: var(--third-green-light-color);
    padding: 30px 65px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font: normal normal 500 14px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.delivery-infos-delivery h2 {
    margin: 0;
    font: normal normal bold 17px/22px Montserrat;
}

.delivery-infos-order {
    background-color: white;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font: normal normal 500 14px/22px Montserrat;
    color: var(--main-green-color);
}

.delivery-infos-order h2 {
    margin: 0;
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.delivery-infos-order .delivery-infos-order-detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.delivery-infos-order .delivery-infos-order-detail img {
    width: 110px;
}

.delivery-infos-order .delivery-infos-order-detail h3 {
    font: normal normal bold 17px/20px Montserrat;
    color: var(--main-green-dark-color);
}

.delivery-infos-order .delivery-infos-order-photo {
    border-top: 2px solid var(--third-green-light-color);
    padding-top: 30px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-infos-sign {
    padding: 25px 35px;
    padding-bottom: 85px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-infos-sign h2 {
    margin: 0;
    font: normal normal bold 17px/22px Montserrat;
    color: var(--main-green-dark-color);
}

.btn-custom-delivery {
    color: white;
    font: normal normal 500 13px/19px Montserrat;
    outline: none;
    box-shadow: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 50px;
    border: 0;
    text-align: center;
}

.btn-custom-delivery span {
    margin-left: 10px;
}

.delivery-infos-order .delivery-infos-order-photo .btn-custom-delivery {
    background-color: var(--main-orange-dark-color);
}

.delivery-infos-sign .btn-custom-delivery {
    background-color: var(--main-green-light-color);
}

.delivery-infos-sign-html-bloc {
    border: 5px solid var(--main-green-light-color);
    background-color: var(--second-green-light-color);
    display: flex;
    align-items: center;
    padding: 30px 20px;
    gap: 15px;
    font: normal normal 500 14px/22px Montserrat;
    text-decoration: none;
    color: var(--main-green-color);
}

.delivery-infos-sign-html-bloc strong {
    font: normal normal bold 17px/21px Montserrat;
    color: var(--main-green-dark-color);
    min-width: 200px;
    display: inline-block;
}

.delivery-infos-order-photo-todelete {
    position: relative;
}

.delivery-infos-order-photo-todelete img {
    width: 100%;
}

.delivery-infos-order-photo-todelete .delivery-infos-order-photo-todelete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--third-green-light-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-infos-order .delivery-infos-order-photo form {
    display: contents;
}

#uploadPhotoDelivery {
    display: none;
}

#modal-confirmation-remove-photo-delivery .confirmation-title {
    font: normal normal bold 17px/20px Montserrat;
    text-align: center;
    margin-bottom: 25px;
}

#modal-confirmation-remove-photo-delivery .confirmation-btns {
    gap: 15px;
}

#modal-confirmation-remove-photo-delivery .confirmation-btns .btn {
    width: 100%;
}

#modal-add-delivery-signature {
    overflow: hidden;
}

#modal-add-delivery-signature .modal-dialog {
    margin: 0;
}

#modal-add-delivery-signature .modal-dialog #sig-canvas {
    border-radius: 25px 25px 0 25px;
    padding: 10px 25px;
    outline: none;
    border: 2px solid var(--main-green-color);
    color: var(--main-green-color);
    cursor: crosshair;
}

#modal-add-delivery-signature .modal-dialog .btn {
    width: 100%;
}

#delivery-date-form {
    display: contents;
}

#delivery-date-form input {
    padding: 5px 10px;
    border-radius: 0;
    height: auto;
    width: auto;
    margin-top: 10px;
}

#sidebar-filters-delivery .custom-toggle-btn-icon label,
#sidebar-filters-delivery-update-status .custom-toggle-btn-icon label {
    font-size: 11px;
}

#modal-supplier-order-detail>div {
    max-width: unset;
}

#modal-supplier-order-detail .btn-info {
    margin: auto;
}

.order-history-details table {
    width: -webkit-fill-available;
}

.table-cell {
    border: 1px solid #ccc;
    text-align: center;
}

.topbar-news-search .search-bar #searchValue {
    min-width: unset;
}

#topbar-products-categories {
    margin-left: unset;
    margin-right: 100px;
}

#createWeekLink {
    display: flex;
    justify-content: center;
    align-items: center;
}

.repartition_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    margin-right: 20px;
}

.repartition_row {
    display: flex;
    justify-content: center;
}

.repartition_item {
    flex: 1;
    text-align: center;
    margin: 5px;
}

#massImportProducts {
    display: flex;
    align-items: center;
    max-width: 500px;
}

#massImportProducts button {
    margin-left: 20px;
    width: 150px;
    padding: 15px;
}

#massImportProductsTitle {
    margin: 10px 0;
}

.select-container {
    overflow-y: auto;
    max-height: 200px;
    /* Ajustez la hauteur maximale souhaitée */
}


@media (max-width: 600px) {
    footer.delivery-footer #back-to-top span {
        display: inline;
    }
}


/* ICC DIGITAL - IB - Fournisseurs */
@media (max-height: 780px) and (min-width: 1150px) {
    .supplier-order .supplier-order-right-col {
        height: calc(100vh - 180px - 40px);
    }

    .supplier-order .supplier-order-right-col .supplier-order-right-col-products li {
        padding: 20px 0;
        margin: 0px 20px;
    }

    .supplier-order .supplier-order-right-col .supplier-order-right-col-shipping {
        padding: 20px;
    }

    .supplier-order .supplier-order-right-col .btn,
    .supplier-order .supplier-order-right-col .supplier-order-right-col-total-ttc {
        margin-bottom: 20px;
    }

    .supplier-order .supplier-order-right-col .supplier-order-right-col-total-ht,
    .supplier-order .supplier-order-right-col .supplier-order-right-col-tva,
    .supplier-order .supplier-order-right-col .supplier-order-right-col-total-ttc {
        padding: 0 20px;
    }
}



/* ----- AJOUT 28 MARS 2024 ROMAIN SPKTR ----- */

.input-container {
    position: relative;
    text-align: right;
}

.input-container::after {
    content: "€";
    color: #2b9f77;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

/* AJOUT AVRIL 2024 ROMAIN SPKTR */

.imprimante:hover {
    cursor: pointer;
}

.outdated,
.not-diffuse {
    position: relative;
    opacity: .5;
}

.not-diffuse:before {
    content: "Planifiée";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f39c12;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
}

.outdated::before {
    content: "Terminée";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
}

.product-supplier-container.disabled::before {
    content: "Désactivé";
    position: absolute;
    top: 0;
    right: auto;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    z-index: 99;
}

.product-supplier-container.disabled {
    opacity: .5;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px;
    background-color: var(--main-green-color);
    color: white;
    border: 2px solid var(--main-green-dark-color);
    border-color: var(--main-green-dark-color);
    font-size: 20px;
    border-radius: 10px;
    z-index: 9999999;
}

.notification.success {
    background-color: var(--third-green-light-color);
    color: white;
    border-color: var(--main-green-dark-color);
}

.notification.error {
    background-color: var(--main-red-color);
    color: white;
    border-color: var(--main-red-dark-color);
}

.notification.info {
    background-color: var(--main-orange-color);
    color: white;
    border-color: var(--main-orange-dark-color);
}

/* AJOUT JUILLET SPKTR - tablea récap ajout / modif produit */
.value-modified {
    font-weight: bolder;
    color: var(--main-orange-color);
}

.news-link .news-link-list {
    display: flex;
}
.print-content .print-product-compo hr {
    margin: 22px 0;
}
.print-content .print-product-compo-two-cols .print-product-compo-two-cols-left {
    max-height: 400px;
}
.print-content .print-product-compo-two-cols .print-product-compo-two-cols-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.print-content .print-product-compo-two-cols .print-product-compo-two-cols-left img {
    max-height: 100%;
}
.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-title {
    padding: 5px 25px;
    background-color: #50d5a7;
}
.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-categ {
    padding: 5px 25px;
    background-color: #cef0e5;
}
.print-product-compo .print-product-compo-compo-list .print-product-compo-compo-list-content li {
    padding: 5px 25px;
    background-color: #FFFFFF;
}

#new-file-container .form-control {
    margin-top: 1%;
}
#new-file-container h6 {
    margin-left: 15px;
    margin-top: 10px;
}
#btn-add-file {
    padding: 10px 25px;
}

@media screen and (min-width: 1500px) {
    .configuration-product {
        width: calc(33% - 20px);
    }
}

.configuration-product .configuration-product-image img {
    object-fit: contain;
    background-color: white;
    aspect-ratio: 1 / 1;
}
/*------------------------- AOUT 2024 - SPKTR cta todo -------------------------*/
.add-a-todo-cta-todopage a {
    color: var(--main-green-color);
}
.add-a-todo-cta-todopage a:hover {
    color: var(--main-green-color);
    font-weight: 600;
}

/*------------------------- AOUT 2024 - SPKTR ajout section prestataires -------------------------*/
.settings-update-container .prestataire-content .prestataire-content-name {
    font-size: 150%;
    font-weight: bold;
    color: var(--main-green-dark-color);
}
.settings-update-container .prestataire-content .prestataire-content-category {
    color: var(--main-green-dark-color);
    margin-top: 5%;
}
.settings-update-container .prestataire-content .prestataire-content-description {
    color: var(--main-green-color);
}
.settings-update-container .prestataire-content .prestataire-content-category-content {
    color: var(--main-green-color);
    font-size: 90%;
}


/* AJOUT OCTOBRE 2024 */
.promo-download-svg {
    max-width: 20px;
    margin-left: 10px;
}
.btn-light:hover .promo-download-svg path {
    stroke: var(--main-orange-light-color) !important
}
.price-drop-file {
    display: flex;
    flex-direction: column;
}
.price-drop-file .news-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-drop-file .news-link-list a {
    width: 100% !important;
}
.display-contents {
    display: contents;
}

.mt--5p {
    margin-top: -5%;
}
.gap-5p {
    gap: 5%;
}

#reinitialize .select-selected {
    background-color: var(--main-green-dark-color);
    color: white;
}
#reinitialize .select-selected:after {
    display: none;
}

/* Ajout novembre 2024 */
.supplier-history {
    color: white !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    padding: 10px 20px;
    border: 2px solid white !important;
}
.supplier-history:hover {
    background-color: var(--main-orange-color) !important;
    border: 2px solid var(--main-orange-color) !important;
}
.custom-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.custom-checkbox-group input {
    margin-right: 5px;
}
.custom-checkbox-group p {
    color: var(--main-green-dark-color);
    font-weight: 600;
}
.one-todo-content-destinataires {
    margin-top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.one-todo-content-destinataires p {
    color: var(--main-green-dark-color);
    font-weight: 600;
}

/* AJOUT DECEMBRE 2024 */
.one-todo-content-checkbox-info.height-200 {
    height: 200px;
}

.one-todo-content-checkbox-info.height-250 {
    height: 250px;
}

.one-todo-content-checkbox-info.height-auto {
    height: auto;
}

.todo-list .one-todo {
    max-height: unset;
}

@media screen and (max-width: 978px) {
    .one-todo-content-checkbox {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .todo-list .one-todo {
        padding-bottom: 0;
    }
    .one-todo-content-destinataires {
        margin-top: 10px;
        font-size: 14px;
    }
    .one-todo-content-checkbox-info {
        overflow: scroll;
        height: auto;
    }
}

.hidden { display: none; }

/* ajout janvier 2025 - informations fournisseur */
.supplier-order .supplier-order-left-col .supplier-informations-block {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
    background-color: white;
}
.supplier-order .supplier-informations-block-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2%;
    background-color: var(--second-green-light-color);
    padding: 2% 3%;
    justify-content: space-around;
}
.supplier-order .supplier-informations-block-header button {
    font-size: 13px;
    padding: 2% 5%;
}

.supplier-order .supplier-informations-block-label {
    width: 50%;
    font: normal normal bold 23px / 22px Montserrat;
    color: var(--main-green-dark-color);
}

.supplier-order .supplier-order-left-col .supplier-informations-block .supplier-informations-block-header .eye-open,
.supplier-order .supplier-order-left-col .supplier-informations-block .supplier-informations-block-header .eye-close {
    background-color: var(--main-green-color);
    padding: 2%;
    border-radius: 25px;
    cursor: pointer;
}

.supplier-informations-block.eye-opened .eye-close,
.supplier-informations-block.eye-closed .eye-open {
    display: none;
}
.supplier-order .supplier-informations-block-body {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.supplier-order .supplier-informations-block-row {
    display: flex;
    padding: 3% 3% 3% 0;
}

.supplier-order .supplier-informations-block-col {
    width: calc(80% / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    word-break: break-word;
}
.supplier-order .supplier-informations-block-col.first-col {
    padding: 0 5%;
}
.supplier-order .supplier-informations-block-col.last-col {
    width: 20%;
}
.supplier-order .supplier-informations-block-col.centered {
    justify-content: center;
}
.supplier-order .supplier-informations-block-col.left-divided {
    border-left: 1px solid var(--main-green-color);
    padding: 0 5%;
}

.supplier-order .supplier-informations-block-col-title {
    font: normal normal bold 19px / 18px Montserrat;
    color: var(--main-green-dark-color);
}
.supplier-order .supplier-informations-block-col-content {
    font-size: 14px;
}

.supllier-content-cta .open-sidebar {
    width: unset !important;
    cursor: pointer;
    background-color: unset !important;
}
.supllier-content-cta .open-sidebar:hover ellipse {
    stroke: var(--main-orange-color);
}
.supllier-content-cta .open-sidebar:hover text {
    fill: var(--main-orange-color);
}

/* Ajout juillet 2025 */
.tools-orders-download .promo-download-svg {width: 100%;height: 100%;max-width: 40px;max-height: 40px;margin: 0;}

/* AJOUT OCTOBRE 2025 */
.supplier-products-right-info {display: flex;}
.supplier-order .supplier-order-right-col .supplier-order-right-col-products li div {font-size: 12px;}
.label-container {display: flex;flex-direction: column;gap: .5em;}

/* AJOUT NOVEMBRE 2025 */
.block-compo-products .supplier-products-infos {position: relative;}
.block-compo-products .supplier-products-infos-see-photo {z-index: 9;position: absolute;bottom: -5px;left: -5px;background-color: var(--main-green-color);width: 55px;height: 55px;display: flex;justify-content: center;align-items: center;border-radius: 16px 16px 16px 0;cursor: pointer;transition: all .2s ease-in;}
.block-compo-products .supplier-products-infos-see-photo:hover {background-color: var(--main-orange-light-color);}
.block-compo-products .supplier-products-infos-see-photo:hover svg path {stroke: var(--main-orange-dark-color);}

.supplier-products-by-search .supplier-products {display: flex;flex-wrap: wrap;gap: 1em;}
.supplier-products-by-search .supplier-products .product-supplier-container {width: 49%;margin: 0;}
#widget-suppliers {margin: 0;}
@media screen and (max-width: 978px) {
    .supplier-products-by-search .supplier-products .product-supplier-container {width: 100%;}
}

.menu-fav:hover svg path {
    fill: var(--main-orange-dark-color);
}

/* FAVORIS */
#favoris .block-compo-home .block-compo-home-left { width: 95%;}
#favoris .block-compo-home .block-compo-home-left .block-compo-products {display: grid;grid-template-columns: repeat(4, 1fr);}
#favoris .block-compo-home .block-compo-home-left .block-compo-products .block-compo-one-product {width: 100%;}
.supplier-products-infos-like {
    z-index: 9;
    position: absolute;
    bottom: -5px;
    left: auto;
    right: -5px;
    background-color: var(--main-green-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 0px 16px;
    cursor: pointer;
    transition: all .2s ease-in;
}
.supplier-products-infos-like:hover,
.supplier-products-infos-like.favorite-active { background-color: var(--main-orange-light-color); }
.supplier-products-infos-like:hover svg path,
.supplier-products-infos-like.favorite-active svg path { fill: var(--main-orange-dark-color);}
#favoris .block-compo-products { align-items: stretch; }
#favoris .supplier-products-infos { height: 60%; }
#favoris .supplier-products-infos .supplier-products-infos-image,
#favoris .supplier-products-infos .supplier-products-infos-image img { height: 100%; }
#favoris .block-compo-one-product-content { height: 40%; }
#favoris .block-compo-one-product-content .btn { margin-top: auto; }
/* favoris supplier */
#favoris-fournisseurs .supplier-order-left-col { width: 95%; }
.product-supplier-container .supplier-products-infos-like { right: auto; top: 0; border-radius: 0px 16px 16px 16px; }
#favoris-fournisseurs .supplier-products-actions-btn { display: flex; align-items: center; justify-content: center; }
#favoris-fournisseurs .supplier-products-actions-btn .supplier-products-actions-supplier-name { font-size: 22px; font-weight: 700; }

@media screen and (max-width: 978px) {
    #favoris .block-compo-home .block-compo-home-left .block-compo-products {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* RECHERCHE DE PRODUITS FOURNISSEURS - AJOUT NOVEMBRE 2025 */
.tags-list { display: flex; flex-wrap: wrap; gap: .125em; margin-top: .25em; }
.tag { background: var(--main-orange-dark-color); color: white; padding: 2px 5px; border-radius: 3px; display: flex; align-items: center; font-size: 0.9em; }
.remove-tag { margin-left: 5px; cursor: pointer; color: red; font-weight: bold; }
#product-in-compo-suggestions { background: white; border-radius: .25em; padding: 1em; display: flex; flex-direction: column; gap: .5em; }
#product-in-compo-suggestions .suggestion-item { color: #116749; cursor: pointer; }
#product-in-compo-suggestions .suggestion-item:hover { color: #5f0000; }
header .second-topbar .page-tools { gap: 2em !important; }
.btn-white { background-color: white !important; color: var(--main-green-dark-color) !important; border: 2px solid var(--main-green-dark-color) !important; }
.btn-white:hover { background-color: var(--third-green-light-color) !important; color: white !important; border: 2px solid var(--third-green-dark-color) !important; }

/* AJOUT JANVIER 2026 */
#carouselNewsWidget { width: 100%;}
.flexbox { display: flex; }
.space-evenly { justify-content: space-evenly; }
.align-end { align-items: flex-end; }
.flexbox.column { flex-direction: column; }
.flexbox.spaced { justify-content: space-between; }


.gap-0-5 { gap: 0.5rem; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
@media screen and (max-width: 920px) {
    .gap-0-5-mobile { gap: 0.5rem; }
    .gap-1-mobile { gap: 1rem; }
    .gap-2-mobile { gap: 2rem; }
    .gap-3-mobile { gap: 3rem; }
    .flexbox.column-mobile { flex-direction: column; }
}

/* DATE AJOUT PRODUIT */
.configuration-product .configuration-product-infos .configuration-product-infos-date-add { font-weight: bold; font: normal normal normal 12px/19px Montserrat; color: var(--main-green-dark-color); }
