﻿*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.header {
    height: 100px;
    background-image: url(../images/Header.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .header {
        height: 150px;
    }
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .header {
        height: 200px;
    }
}

@media screen and (max-device-width: 599px) {
    .header {
        height: 80px;
    }
}

.header .logo-header {
    margin: 0 auto;
    height: 80%;
    max-height: 200px;
}

.logo-operation {
    align-self: center;
    margin: 25px auto;
    position: relative;
    display: block;
    height: 50px;
}

.header-operation {
    height: 100px;
    background-image: url(../images/Header.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    background-position: center;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .header-operation {
        height: 150px;
    }
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .header-operation {
        height: 200px;
    }
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .header-operation.active {
        width: calc(100% - 16em);
    }
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .header-operation {
        width: calc(100% - 16em);
    }
}

.navbar {
    width: 100%;
    color: #000;
    height: 50px;
    z-index: 12;
    position: absolute;
    top: 0;
}

.navbar__menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-left: -17rem;
    min-width: 16rem;
    width: 16rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0 4px rgba(37, 79, 154, 0.5);
    transition: all 0.4s;
    background: #fff;
    padding: 50px 0 0 20px;
    z-index: 1;
}

    .navbar__menu.active {
        margin: 0;
    }

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .navbar__menu {
        margin: 0;
        padding: 20px 0 0 20px;
    }
}

.navbar__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.navbar__icon {
    display: inline-block;
    width: 28px;
    height: 18px;
    margin-right: 10px;
}

.hamburger {
    display: block;
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 2;
    background: #fff;
    padding: 7px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .hamburger {
        display: none;
    }
}

.hamburger.active {
    box-shadow: none;
    transition: box-shadow 0.3s ease-in-out;
}

.hamburger__lines {
    display: block;
    height: 18px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger__line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0970E6;
}

    .hamburger__line.line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

        .hamburger__line.line1.active {
            transform: rotate(45deg);
        }

    .hamburger__line.line2 {
        transition: transform 0.2s ease-in-out;
    }

        .hamburger__line.line2.active {
            transform: scaleY(0);
        }

    .hamburger__line.line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

        .hamburger__line.line3.active {
            transform: rotate(-45deg);
        }

/*.navbar input[type="checkbox"]:checked ~ .navbar__menu {
    transform: translateX(0);
}

.navbar input[type="checkbox"]:checked ~ .hamburger {
    box-shadow: none;
    transition: box-shadow 0.3s ease-in-out;
}

.navbar input[type="checkbox"]:checked ~ .hamburger .line1 {
    transform: rotate(45deg);
}

.navbar input[type="checkbox"]:checked ~ .hamburger .line2 {
    transform: scaleY(0);
}

.navbar input[type="checkbox"]:checked ~ .hamburger .line3 {
    transform: rotate(-45deg);
}*/
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background: #fff;
    width: 100%;
    height: 20px;
    bottom: 0;
    flex-shrink: 0;
}

.footer__collector {
    font-family: "Ubuntu";
    font-weight: bold;
    color: #0970E6;
    padding: 10px 0;
    font-size: 1.2em;
    text-align: center;
    width: 100%;
}

.footer__text {
    text-align: center;
}

.button {
    position: relative;
    color: #FFF;
    font-family: "Ubuntu";
    font-weight: bold;
    font-size: 16px;
    background: #0970E6;
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #0970E6;
    border-radius: 4px;
    min-width: 200px;
    appearance: none;
}

    .button:hover {
        opacity: 0.8;
    }

    .button:disabled, .button[disabled] {
        background: #888;
        color: #FFF;
    }

.button--secondary {
    background: transparent;
    border: 1px solid #0970E6;
    color: #0970E6;
}

.button--little {
    min-width: 0px;
    padding: 5px 10px;
}

.button.important {
    background: #A22;
    color: #FFF;
}

.checkbox {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    text-align: justify;
    margin: 10px;
}

    .checkbox input {
        transform: translateY(5px);
    }

    .checkbox label {
        margin: 0 10px;
    }

.qty-input {
    color: black;
    background: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: 15px;
}

    .qty-input .product-qty,
    .qty-input .qty-count {
        background: transparent;
        color: inherit;
        font-weight: bold;
        font-size: inherit;
        border: none;
        display: inline-block;
        min-width: 0;
        height: 2.5rem;
        line-height: 1;
    }

        .qty-input .product-qty:focus,
        .qty-input .qty-count:focus {
            outline: none;
        }

    .qty-input .product-qty {
        width: 30px;
        color: transparent;
        min-width: 0;
        display: inline-block;
        text-align: center;
        appearance: textfield;
        text-shadow: 0 0 #0970E6;
    }

        .qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
            appearance: none;
            margin: 0;
        }

    .qty-input .qty-count {
        background: #0970E6;
        padding: 0;
        cursor: pointer;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.25em;
        text-indent: -100px;
        overflow: hidden;
        position: relative;
        border-radius: 100%;
    }

        .qty-input .qty-count:before, .qty-input .qty-count:after {
            content: "";
            height: 2px;
            width: 10px;
            position: absolute;
            display: block;
            background: white;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }

    .qty-input .qty-count--add:after {
        transform: rotate(90deg);
    }

    .qty-input .qty-count--delete {
        background: url(../images/icons/icon_poubelle.svg);
        width: 2rem;
        height: 2rem;
        right: 0;
    }

        .qty-input .qty-count--delete:after, .qty-input .qty-count--delete:before {
            height: 0px;
        }

    .qty-input .qty-count:disabled {
        color: gray;
        background: #f2f2f2;
        cursor: not-allowed;
        border-color: transparent;
    }

        .qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
            background: gray;
        }

.splide__pagination {
    transform: translateY(20px);
}

.splide__pagination__page {
    margin-top: 25px !important;
}

    .splide__pagination__page.is-active {
        background: #0970E6 !important;
    }

.splide__slide {
    margin: 1em 0 !important;
}

.splide__arrow {
    background: #0970E6 !important;
}

.splide__arrow--upcoming-prev {
    display: none;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .splide__arrow--upcoming-prev {
        display: flex;
        left: -1.5em;
    }
}

.splide__arrow--upcoming-next {
    display: none;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .splide__arrow--upcoming-next {
        display: flex;
        right: -1.5em;
    }
}

.splide__arrow--none {
    display: none;
}

.splide__arrow--col-prev {
    display: none !important;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .splide__arrow--col-prev {
        display: flex !important;
        left: -3em !important;
    }
}

.splide__arrow--col-next {
    display: none !important;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .splide__arrow--col-next {
        display: flex !important;
        right: -3em !important;
    }
}

.splide__arrow svg {
    fill: white !important;
}

.my-slider-progress {
    background: #F8CFD1;
    transform: translateY(-15px);
    width: 80%;
    margin: auto;
    border-radius: 5px;
}

.my-slider-progress-bar {
    background: #790100;
    height: 4px;
    transition: width 400ms ease;
    width: 0;
    border-radius: 5px;
}

.link {
    font-family: "Open Sans";
    font-weight: bold;
    text-decoration: none;
    color: #0970E6;
    position: relative;
}

    .link:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #0970E6;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .link:hover:after {
        transform: scaleX(1);
    }

    .link:hover + .navbar__icon {
        fill: white;
    }

.link--footer {
    color: #575757;
    font-size: 0.7em;
    margin: 0 0.5em;
}

    .link--footer:after {
        background: #575757;
    }

.link--navbar {
    font-family: "Ubuntu";
    font-weight: initial;
    color: #575757;
    font-size: 17px;
}

    .link--navbar:hover {
        color: #0970E6;
        transition: color 0.3s ease;
    }

.spinner {
    cursor: progress;
    position: absolute;
    width: 100%;
    height: 100%;
}

    .spinner::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 10001;
        overflow: hidden;
        background: #0b0b0b;
        opacity: 0.6;
    }

.spinner__container {
    position: fixed;
    width: 100%;
    height: 64px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
}

.spinner__bloc {
    position: fixed;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .spinner__bloc div {
        box-sizing: border-box;
        position: absolute;
        display: block;
        width: 64px;
        height: 64px;
        border: 8px solid #0970E6;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #0970E6 transparent transparent transparent;
    }

        .spinner__bloc div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .spinner__bloc div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .spinner__bloc div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.textbox {
    font-family: "Open Sans";
    font-weight: initial;
    font-size: 1.1em;
    width: 90%;
    height: 50px;
    margin: 5px;
    padding: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    animation: backdrop 0.5s ease normal;
}

.modal__close {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
}

    .modal__close:hover, .modal__close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal__content {
    margin: auto;
    position: relative;
    background-color: #fefefe;
    overflow-y: auto;
    padding: 20px 10px;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: calc(100vh - 100px);
    animation: scale 0.5s ease normal;
}

.modal__title {
    font-family: "Ubuntu";
    font-weight: initial;
    text-align: center;
    margin: auto;
    font-size: 60px;
    color: #0970E6;
}

.modal__subtitle {
    font-family: "Ubuntu";
    font-weight: initial;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.modal__text {
    font-size: 15px;
}

.modal__button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.thumbnail-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30px 15px 15px;
    text-align: center;
    color: #790100;
    font-family: "Ubuntu";
    font-weight: initial;
    line-height: 1;
}

.thumbnail-counter__roll {
    display: inline-block;
    padding: 0 5px;
    border: 1px solid #790100;
    font-size: 2.5em;
    font-weight: bold;
    border-radius: 3px;
}

.thumbnail-counter__text {
    display: block;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .thumbnail-counter__text {
        margin: 0;
    }
}

.thumbnail-counter__subtext {
    display: block;
}

.collector {
    width: 80%;
    max-width: 800px;
    margin: 25px auto;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .collector {
        max-width: 1000px;
    }
}

.collector__vignetteInfo {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    font-size: 0.9em;
    font-weight: 700;
    margin: auto;
}

.collector__pb {
    text-align: center;
    margin: 16px;
    background: #840d00;
    padding: 16px;
    border-radius: 6px;
    color: #fff;
    margin-top: 30px;
}

.collector__title {
    font-family: "Ubuntu";
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .collector__title {
        text-align: left;
        margin-left: 10px;
    }
}

.collector__body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-gap: 5px;
    margin-bottom: 20px;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .collector__body {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .collector__body {
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

.collector__page {
    padding: 0 5px;
}

.collector__vignette {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    background: #F8CFD1;
    border-radius: 5px;
    height: 9vw;
    min-height: 35px;
    max-height: 55px;
    color: white;
    font-weight: bold;
    user-select: none;
    box-sizing: content-box;
}

.collector__vignette--collected {
    background: white;
    border: 2px solid #F8CFD1;
}

    .collector__vignette--collected p {
        display: none;
    }

    .collector__vignette--collected .logo-image {
        height: 100%;
        width: 100%;
    }

.collector__vignette--blocked-level, .collector__vignette--collected-level {
    background: white;
    border: 2px solid #F8CFD1;
}

    .collector__vignette--blocked-level p, .collector__vignette--collected-level p {
        display: none;
    }

    .collector__vignette--blocked-level .logo-image, .collector__vignette--collected-level .logo-image {
        width: 100%;
        height: 100%;
        padding: 5px;
    }

    .collector__vignette--blocked-level:after {
        content: "";
        position: absolute;
        background: black;
        width: 100%;
        height: 100%;
        border-radius: 3px;
        opacity: 0.4;
    }

    .collector__vignette--blocked-level:before {
        content: "";
        position: absolute;
        width: 15px;
        height: 20px;
        background-image: url(../images/icons/icon_cadena.svg);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 4;
    }

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .collector__vignette--blocked-level:before {
        width: 25px;
        height: 33px;
    }
}

.collector__vignette--counter img {
    width: 100%;
}

.collector__vignette--counter .text-counter {
    position: absolute;
    font-size: 0.7em;
    font-family: "Open Sans Light";
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5em;
    top: 0;
    margin: auto;
    width: 88%;
    margin-left: 10px;
}

    .collector__vignette--counter .text-counter span {
        display: block;
        width: 100%;
    }

.collector__vignette--counter .text-counter__number {
    font-size: 1.8em;
    font-weight: bold;
}

.collector__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-device-width: 599px) {
    .collector__footer {
        flex-direction: column;
    }
}

.catalog {
    width: 100%;
}

.catalog__header {
    background: #790100;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.catalog__body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../images/);
    background-position: top center;
    background-repeat: repeat-y;
    background-size: cover;
    padding: 0 0 1em;
}

.catalog__product-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: auto 25px;
    padding: 15px 0;
    max-width: 800px;
}

    .catalog__product-title img {
        width: 20%;
        min-width: 65px;
        max-width: 100px;
    }

.catalog__text-title {
    padding: 15px;
    text-transform: uppercase;
    font-family: "Open Sans";
    font-weight: bold;
    font-size: clamp(0.95em, 3vw, 1.2em);
    display: inline-block;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-gap: 10px;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
    padding-bottom: 2em;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .catalog__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.catalog__logo {
    background: #fff;
    border-radius: 10px;
}

.catalog__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    grid-column: span 2;
    grid-row: span 1;
}

    .catalog__logo img {
        width: 65%;
        max-width: 200px;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: auto;
        max-height: 100%;
    }

.product-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: #fff;
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    user-select: none;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .product-card {
        grid-row: span 3;
    }
}

.product-card__cost {
    font-family: "Ubuntu";
    font-weight: bold;
    font-size: 10pt;
    color: #79b8b5;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .product-card__cost {
        font-size: 16pt;
    }
}

.product-card__image {
    width: 30%;
    min-width: 100px;
    max-width: 200px;
    margin: 10px 0;
}

.product-card__image--donation {
    max-width: unset;
    top: 0;
    border-radius: 20px;
    width: 100%;
    margin: 0px;
}

.product-card__name {
    font-family: "Open Sans Light";
    font-weight: initial;
    font-size: 10pt;
    text-transform: uppercase;
    line-height: 1;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .product-card__name {
        font-size: 16pt;
    }
}

.product-card__shortdescrption {
    font-size: 0.8em;
}

.product-card__old-price {
    font-family: "Ubuntu";
    font-weight: initial;
    color: #666666;
    text-decoration: line-through;
    font-size: 11pt;
}

.product-card__price {
    font-family: "Ubuntu";
    font-weight: bold;
    color: #79b8b5;
    font-size: 1.2em;
    font-weight: bold;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .product-card__price {
        font-size: 2.5em;
    }
}

.product-card__button {
    width: 20px;
    height: 20px;
    position: static; /* Enlève le absolute */
    flex-shrink: 0; /* Empêche le SVG de rétrécir */
}

.product-card__button-text {
    font-size: 14px;
    font-weight: 600;
    color: #0970E6;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    padding-right: 8px;
}

.product-card--donation {
    background: none;
}

.product-card--disabled > .product-card__cost, .product-card--disabled > .product-card__price {
    color: black;
}

.product-card--disabled > .product-card__button {
    z-index: 4;
}

.product-card--disabled:after {
    content: "";
    position: absolute;
    background: black;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    border-radius: 10px;
}

.product-card {
    text-decoration: none;
    color: inherit;
}

.product-card__action {
    position: absolute;
    right: 2%;
    bottom: 2%;
    display: flex;
    align-items: center;
    gap: 8px; /* Espacement entre le SVG et le texte */
}

.info-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: #f5faff;
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    gap: 15px;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .info-card {
        grid-row: span 3;
    }
}

.info-card__icon {
    width: 40%;
    max-width: 120px;
    margin-bottom: 2px;
}

    .info-card__icon img {
        width: 100%;
        height: auto;
    }

.info-card__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-size: 14pt;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .info-card__title {
        font-size: 16pt;
    }
}

.info-card__text {
    font-family: "Ubuntu", sans-serif;
    font-size: 10pt;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .info-card__text {
        font-size: 11pt;
    }
}



.donate {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.donate__title {
    color: #0970E6;
}

.donate__text {
    margin: 10px;
}

.donate__solde, .donate__fid, .donate__give {
    width: 100%;
    margin: 10px 0;
}

.donate__element-title {
    font-family: "Open Sans";
    font-weight: bold;
}

.donate__element-title--primary {
    color: #0970E6;
}

.donate__solde {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gived {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.gived__title {
    color: #0970E6;
}

.gived__text {
    margin: 10px;
    color: #575757;
}

.no-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.no-card__title {
    color: #0970E6;
}

.no-card__text {
    margin: 10px auto 25px;
}

.no-account {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.no-account__title {
    color: #0970E6;
}

.no-account__text {
    margin: 10px auto 25px;
}

.product {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.product__name {
    font-family: "Open Sans";
    font-weight: bold;
    color: #79b8b5;
    font-size: 24pt;
    line-height: 0.8;
}

.product__subname {
    font-family: "Open Sans";
    font-weight: initial;
    color: #79b8b5;
    font-size: 15pt;
}

.product__image {
    width: 80%;
    max-width: 500px;
    height: auto;
    margin-top: 15px;
}

.product__old-price {
    font-family: "Open Sans";
    font-weight: initial;
    color: #666666;
    text-decoration: line-through;
    font-size: 21pt;
}

.product__price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: #79b8b5;
}

.product__price__price {
    font-size: 4em;
    font-weight: bold;
}

.product__price__infos {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 15px;
}

.product__price__text1 {
    font-size: 0.8em;
    padding: 0 2px;
}

.product__price__text2 {
    color: white;
    background: #79b8b5;
    font-size: 1.2em;
    padding: 2px 5px;
    border-radius: 5px;
    text-transform: uppercase;
}

.product__description {
    width: 95%;
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.4);
    padding: 16px;
}

.product__title-description {
    font-family: "Ubuntu";
    font-weight: bold;
    color: #0970E6;
    font-size: 1.2em;
}

.product__text-description {
    font-family: "Open Sans Light";
    font-weight: initial;
    color: #666666;
}

.product__quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.product__picto__info {
    display: grid;
}

.product__picto__images {
    display: flex;
    margin: 10px auto;
    flex-flow: wrap;
    justify-content: center;
}

    .product__picto__images img {
        height: 70px;
        margin: 0 3px;
    }

.register {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.register__title {
    color: #0970E6;
}

.register__text {
    margin: 15px 0 25px;
}

.register__image {
    display: block;
    margin: 20px auto;
    width: 80%;
}

.register__link {
    color: #0970E6;
    text-decoration: none;
}

.register__info {
    max-width: 500px;
    margin: 20px auto 40px auto;
}

.home {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}

.home__title {
    color: #0970E6;
    margin-bottom: 15px;
}

@media screen and (max-device-width: 599px) {
    .home__title {
        font-size: 28px;
    }
}

.operation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 4px 16px rgba(37, 79, 154, 0.5);
    border-radius: 10px;
    padding: 15px 0;
    margin-bottom: 1em;
    padding-top: 0px;
    padding-bottom: 15px;
}

.operation__title {
    color: #0970E6;
    margin: 10px;
}

@media screen and (max-device-width: 599px) {
    .operation__title {
        font-size: 22px;
    }
}

.operation__logo {
    width: 150px;
}

@media screen and (max-device-width: 599px) {
    .operation__logo {
        width: 120px;
    }
}

.operation__date {
    margin: 10px 0;
}

.operation__banniere, .operation__banniere__web {
    width: 100%;
    height: 100px;
    background-image: url(../images/banniere_1920_200.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 10px 10px 0px 0px;
}

@media screen and (max-device-width: 599px) {
    .operation__banniere, .operation__banniere__web {
        height: 70px;
    }
}

.operation__banniere {
    display: none;
}

@media screen and (max-device-width: 599px) {
    .operation__banniere {
        display: block;
    }
}

.operation__banniere__web {
    display: block;
}

@media screen and (max-device-width: 599px) {
    .operation__banniere__web {
        display: none;
    }
}

.operation__description {
    padding: 18px;
    color: #575757;
}

.operation__link {
    font-family: "Open Sans";
    font-weight: bold;
    text-decoration: none;
    color: #0970E6;
}

.upcoming-operation {
    box-shadow: 0px 4px 16px rgba(37, 79, 154, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1em;
    display: flex;
    flex-flow: column;
    color: #575757;
    text-align: center;
    min-height: 250px;
    margin: 0 1em;
    height: 100%;
}

.upcoming-operation__title {
    color: #ACACAC;
}

.upcoming-operation__infos {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    margin-top: 25px;
    height: 100%;
}

@media screen and (max-device-width: 599px) {
    .upcoming-operation__infos {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
    }
}

.upcoming-operation__banniere, .upcoming-operation__banniere__web {
    background-image: url(../images/);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40%;
    margin: 0 15px;
    border-radius: 25px;
}

@media screen and (max-device-width: 599px) {
    .upcoming-operation__banniere, .upcoming-operation__banniere__web {
        width: auto;
        height: 150px;
    }
}

.upcoming-operation__banniere {
    display: none;
}

@media screen and (max-device-width: 599px) {
    .upcoming-operation__banniere {
        display: block;
    }
}

.upcoming-operation__banniere__web {
    display: block;
}

@media screen and (max-device-width: 599px) {
    .upcoming-operation__banniere__web {
        display: none;
    }
}

.upcoming-operation__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

@media screen and (max-device-width: 599px) {
    .upcoming-operation__description {
        width: auto;
    }
}

.upcoming-operation__text-container {
    height: 100%;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.upcoming-operation__logo {
    width: 100px;
}

.upcoming-operation__date {
    font-weight: bold;
    font-size: 0.8em;
}

.upcoming-operation__text {
    font-size: 0.8em;
}

.past-operation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 4px 16px rgba(37, 79, 154, 0.5);
    border-radius: 10px;
    padding: 15px 0;
    margin-bottom: 1em;
}

.past-operation__logo {
    width: 150px;
}

.past-operation__banniere, .past-operation__banniere__web {
    width: 100%;
    height: 100px;
    background-image: url(../images/banniere_1920_200.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.past-operation__description {
    padding: 18px;
    margin: 10px 0;
    color: #575757;
}

.past-operation__banniere {
    display: none;
}

@media screen and (max-device-width: 599px) {
    .past-operation__banniere {
        display: block;
    }
}

.past-operation__banniere__web {
    display: block;
}

@media screen and (max-device-width: 599px) {
    .past-operation__banniere__web {
        display: none;
    }
}

.tab-group {
    width: 70%;
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
}

@media screen and (max-device-width: 599px) {
    .tab-group {
        margin: 0 auto 20px auto;
    }
}

.tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.tab-group li a {
    font-family: "Ubuntu";
    font-weight: bold;
    display: block;
    position: relative;
    text-decoration: none;
    padding: 15px;
    background: #fff;
    color: #ACACAC;
    font-size: 0.907em;
    float: left;
    width: 50%;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .tab-group li a {
        font-size: 20px;
    }
}

.tab-group li a:hover {
    background: #fff;
    color: #0970E6;
}

    .tab-group li a:hover::after {
        content: "";
        background: #0970E6;
    }

.tab-group li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ACACAC;
}

.tab-group .active a {
    background: #fff;
    color: #0970E6;
}

    .tab-group .active a:after {
        content: "";
        background: #0970E6;
    }

.tab-content > div:last-child {
    display: none;
}

.history, .empty-history {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
    width: 100%;
}

.empty-history__title {
    color: #0970E6;
}

.empty-history__text {
    margin: 10px 0;
}

.history__header {
    background: #790100;
    color: white;
    padding: 10px;
}

.history__text {
    color: #575757;
    margin: 10px 0;
}

.history__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
}

.history-product {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    box-shadow: 0px 4px 16px rgba(37, 79, 154, 0.5);
    width: 90%;
    max-width: 370px;
    padding: 20px 5px;
    border-radius: 10px;
    margin: 15px;
}

.history-product__product {
    width: 40%;
}

.history-product__image {
    width: 80%;
    height: auto;
}

.history-product__description {
    text-align: left;
}

.history-product__name {
    font-weight: bold;
    color: #79b8b5;
    line-height: 0.8;
}

.history-product__subname {
    color: #79b8b5;
    font-size: 0.7em;
}

.history-product__prices {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.history-product__prices__price {
    margin-right: 10px;
    font-weight: bold;
    color: #79b8b5;
    font-size: 1.2em;
}

.history-product__prices__old-price {
    font-size: 0.8em;
    text-decoration: line-through;
    color: #575757;
}

.history-product__cost {
    color: #0970E6;
    font-weight: bold;
}

.history-product__cost--deleted {
    color: #313131;
    text-decoration: line-through;
}

.unsubscribe, .unregistered {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.unsubscribe__title, .unregistered__title {
    color: #0970E6;
}

.unsubscribe__text, .unregistered__text {
    color: #575757;
    margin: 15px;
}

.help-thumbnail {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.help-thumbnail__title {
    color: #0970E6;
}

.help-thumbnail__text {
    color: #575757;
    margin: 25px 0;
}

.help-thumbnail__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

.help-thumbnail__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 10px;
}

.help-thumbnail__image {
    width: 100px;
    border: 1px solid #F8CFD1;
    border-radius: 5px;
}

.help-thumbnail__description {
    color: #790100;
    padding: 0 10px;
    text-align: left;
}

.confirm-product, .delete-product {
    text-align: center;
    width: 90%;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.confirm-product__title, .delete-product__title {
    color: #0970E6;
    margin-bottom: 15px;
}

.confirm-product__remains, .delete-product__remains {
    color: #0970E6;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.confirm-product__text, .delete-product__text {
    color: #575757;
}

.confirm-product__image, .delete-product__image {
    width: 150px;
    margin: 25px;
    transform: rotate(-5deg);
}

.ML__title {
    padding: 30px;
    background-color: #0970E6;
    color: white;
}

.ML__parts {
    background-color: #0970E6;
    border-radius: 16px;
    margin: 24px;
    color: white;
    padding: 24px 16px;
}

.ML__Btn {
    margin: 15px auto;
    display: block;
}

.faq {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
    width: 100%;
}

    .faq .accordion-content {
        text-align: center;
    }

    .faq .accordion-container h2 {
        margin: 25px;
    }

    .faq .accordion-content .description {
        background: white;
        color: #4f4f4f;
        cursor: pointer;
        padding: 5px 5px 4px 25px;
        max-width: 100%;
        outline: none;
        font-size: 16px;
        margin: 4px 0px;
        position: relative;
        overflow: hidden;
        text-align: left;
    }

        .faq .accordion-content .description p {
            margin: 0px;
            color: gray;
        }

    .faq .accordion-content .title {
        margin: 10px 5px;
        font-weight: bold;
        font-size: 16px;
        color: #0970e6;
        position: relative;
        display: inline-block;
        padding: 0px 20px;
        cursor: pointer;
    }

    .faq .accordion-content.show .description {
        height: auto;
    }

    .faq .accordion-content.hide .description {
        height: 0;
    }

    .faq .accordion-content.hide .title::after {
        content: "";
        position: absolute;
        top: 8px;
        right: 0;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #0970e6;
    }

    .faq .accordion-content.show .title::after {
        content: "";
        position: absolute;
        width: 0;
        top: 8px;
        right: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #0970e6;
    }

    .faq h1 {
        padding: 10px;
    }

body {
    font-family: "Open Sans";
    font-weight: initial;
}

form {
    min-height: 98vh;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.main, .header, .footer, .spinner__container {
    width: 100%;
    margin: 0;
    transition: all 0.4s;
}

@media screen and (min-device-width: 768px) and (min-width: 768px) {
    .main.active, .header.active, .footer.active, .spinner__container.active {
        width: calc(100% - 16rem);
        margin-left: 16rem;
    }
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .main, .header, .footer, .spinner__container {
        width: calc(100% - 16em);
        margin-left: 16em;
    }
}

.main.disconnected, .header.disconnected, .footer.disconnected, .spinner__container.disconnected {
    width: 100%;
    margin: 0;
    transition: all 0.4s;
}

.main {
    flex: 1 0 auto;
}

.help {
    width: 100px;
    margin-bottom: 2em;
    cursor: pointer;
    border-radius: 50px;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .help {
        position: fixed;
        bottom: 1.5em;
        right: 1.5em;
    }
}

.emoji {
    font-size: 30px;
    margin-bottom: 10px;
}

.m-1 {
    margin: 10px;
}

.m-2 {
    margin: 20px;
}

.m-3 {
    margin: 30px;
}

.m-4 {
    margin: 40px;
}

.m-5 {
    margin: 50px;
}

.m-6 {
    margin: 60px;
}

.show-desktop {
    display: none;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .show-desktop {
        display: block;
    }
}

.show-mobile {
    display: block;
}

@media screen and (min-device-width: 1350px) and (min-width: 1350px) {
    .show-mobile {
        display: none;
    }
}
