/* POPUP GLOBALE - START */
:root {
    --popin-title-color: #000000;
    --popin-close-color: #000000;
}

/* POPUP ROUE */

.roue-module-popin {
    position: fixed;
    display: none;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1000;
    -webkit-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    /* mobile viewport bug fix */
    min-width: 100vw;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 13px;
    color: #000000;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

.roue-module-popin .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #FFFFFF;
    width: 490px;
    max-width: 98%;
    margin: 0 auto;
    position: relative !important;
    left: auto !important;
    top: 15% !important;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0;
}

.roue-module-popin .content .title {
    font-size: 15px;
    color: #676767;
    text-align: center
}

.roue-module-popin .content .button {
    border: 1px solid #666;
    -webkit-border-radius: 13em;
            border-radius: 13em;
    margin: 25px auto 0;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 12px;
    color: #FFF;
    -webkit-transition: color .4s linear, background-color .4s linear;
    -o-transition: color .4s linear, background-color .4s linear;
    transition: color .4s linear, background-color .4s linear;
    text-decoration: none;
    background: #fff;
}

.roue-module-popin .content .button:hover {
    background-color: #666;
    color: #fff
}

.roue-module-popin .content .close {
    position: absolute;
    top: 1em;
    right: 1em;
    cursor: pointer;
    width: 3em;
    height: 3em;
    z-index: 1;
    -webkit-transition: opacity .4s linear, -webkit-transform .4s cubic-bezier(.23, 1, .32, 1);
    transition: opacity .4s linear, -webkit-transform .4s cubic-bezier(.23, 1, .32, 1);
    -o-transition: opacity .4s linear, transform .4s cubic-bezier(.23, 1, .32, 1);
    transition: opacity .4s linear, transform .4s cubic-bezier(.23, 1, .32, 1);
    transition: opacity .4s linear, transform .4s cubic-bezier(.23, 1, .32, 1), -webkit-transform .4s cubic-bezier(.23, 1, .32, 1);
    -webkit-transform: rotate(.01deg);
        -ms-transform: rotate(.01deg);
            transform: rotate(.01deg)
}

.notouch .roue-module-popin .content .close:hover {
    opacity: .5;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg)
}

.roue-module-popin .content .close i {
    width: 100%;
    height: 1px;
    background: #676767;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    display: block;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    top: 44%;
    position: relative
}

.roue-module-popin .content .close i:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg)
}

.roue-module-popin .popin-close {
    position: absolute;
    top: -20px;
    right: -15px;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background: var(--popin-close-color);
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer
}

.roue-module-popin .close {
    display: none
}

.roue-module-popin .api-content {
    text-align: center;
    position: relative;
}

.roue-module-popin .api-content .popin_header .api-text {
    text-align: center;
    margin-top: 15px;
    padding: 20px 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1;
}

.roue-module-popin .api-content .popin_header .api-img {
    width: 115px;
}

.roue-module-popin .api-content .api-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 370px;
    padding-left: 45%;
    padding-right: 2%;
    background: url('/mobile2/img/background-popup-roue.png') no-repeat left center / 250px auto;
}

.roue-module-popin .api-content .api-columns .api-right {
    text-align: center;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    padding: 15px;
}

.roue-module-popin .api-content .api-columns .api-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 24px;
    padding-right: 24px
}

.roue-module-popin .api-content .api-columns .api-text {
    font-size: 1.3em;
    line-height: 1.2;
    font-weight: 300;
    white-space: break-spaces;
}

.roue-module-popin .api-content .api-columns .api-text span {
    font-size: 1em;
}

.roue-module-popin .api-content .api-columns cite {
    font-size: 0.7em;
    line-height: 1.15;
    font-weight: 400;
    font-style: normal;
}

.roue-module-popin .api-content .api-columns #popup_double_cta {
    cursor: pointer;
}

.roue-module-popin .api-content .api-columns .api-img {
    width: 128px;
    max-width: 100%;
    margin: 25px auto 15px auto;
}

.roue-module-popin .api-content .api-columns .api-picture {
    margin-top: 8em;
    width: 80%;
    margin-left: auto;
    margin-right: auto
}

.roue-module-popin .api-content .api-columns .api-cta-w {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 35px;
}

.roue-module-popin .api-content .api-columns .api-cta-w a {
    margin-top: 0;
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    max-width: 80%;
    -webkit-border-radius: 50px;
            border-radius: 50px;
    padding: 10px 15px;
    height: auto;
    font-weight: 600;
    text-decoration: none;
}

.roue-module-popin .api-content .popin_footer .api-text {
    font-size: 1.7em;
    text-align: center;
    font-weight: 700;
    padding: 15px;
    line-height: 1;
    margin-bottom: 30px;
}

.roue-module-popin .api-content .cgu_info_link {
    color: #000000;
    font-size: 16px;
}

.roue-module-popin .api-content .cgu_info_link:hover {
    color: #313131;
}

@media only screen and (max-width: 768px) {

    .roue-module-popin .content {
        max-width: 92%;
        top: 15% !important;
    }

    .roue-module-popin .api-content .popin_header .api-text {
        font-size: 1.6em;
    }

    .roue-module-popin .api-content .api-columns {
        background-size: 220px auto;
        background-position: -50px center;
        min-height: 320px;
        padding-left: 40%;
    }

    .roue-module-popin .api-content .cgu_info_link {
        display: table;
    }

    .roue-module-popin .api-content .api-columns .api-text {
        font-size: 1em;
    }

    .roue-module-popin .api-content .popin_footer .api-text {
        font-size: 1.2em;
        margin-bottom: 0;
    }
}

/* END - POPUP GLOBALE */


/* POPUP ARCHIVES 2025 */

.archives-module-popin {
    position: fixed;
    display: none;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 10000;
    -webkit-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
    min-height: 100vh;
    min-height: -webkit-fill-available; /* mobile viewport bug fix */
    min-width: 100vw;
    height: 100%;
}

.archives-module-popin .content {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    max-width: 300px;
    width: 90vw;
}

.archives-module-popin .content .title {
    font-size: 15px;
    color: #676767;
    text-align: center
}

.archives-module-popin .content .button {
    border: 1px solid #4a4749;
    border-radius: 13em;
    margin: 25px auto 0;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 12px;
    color: #4a4749;
    font-weight: bold;
    -webkit-transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    -o-transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    text-decoration: none;
    background: #fff;
}

.archives-module-popin .content .button:hover {
    background-color: #4a4749;
    color: #FFF;
}

.archives-module-popin .content .button.api-cta-addcustom {
    color: #FFF;
}

.archives-module-popin .content .close {
    position: absolute;
    top: 1em;
    right: 1em;
    cursor: pointer;
    width: 3em;
    height: 3em;
    z-index: 1;
    -webkit-transition: opacity .4s linear,-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    -o-transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1),-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    -webkit-transform: rotate(.01deg);
        -ms-transform: rotate(.01deg);
            transform: rotate(.01deg)
}

.notouch .archives-module-popin .content .close:hover {
    opacity: .5;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg)
}

.archives-module-popin .content .close i {
    width: 100%;
    height: 1px;
    background: #676767;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    display: block;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    top: 44%;
    position: relative
}

.archives-module-popin .content .close i:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg)
}

.archives-module-popin {
    /* background-color: rgba(0, 0, 0, .75); */
    font-size: 1.35rem;
    line-height: 1.25;
}

.archives-module-popin .content {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, rgba(250, 245, 236, 1) 80%, rgba(250, 245, 236, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, rgba(250, 245, 236, 1) 80%, rgba(250, 245, 236, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, rgba(250, 245, 236, 1) 80%, rgba(250, 245, 236, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#faf5ec", GradientType=1);
    border-radius: 45px;
    top: calc(5% + 40px) !important; /* Taille du bandeau promo */
    width: 500px;
    max-width: 92%;
    transform: none;
    transform: translateX(-50%);
}

.archives-module-popin .close {
    display: none;
}

.archives-module-popin .popin-close {
    top: 10px;
    right: 10px;
    border: 0;
    position: absolute;
    background: var(--popin-close-color);
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.archives-module-popin .api-content {
    padding: 15px;
    text-align: center;
}

.archives-module-popin .api-content .popin_header .api-img {
    width: 254px;
    max-width: 100%;
    padding-top: 15px;
}

.archives-module-popin .api-content .popin_header .api-text {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: 325;
    text-transform: none;
    padding: 40px 12px 50px 12px;
    margin: 0;
}

.archives-module-popin .api-content .popin_header .api-text b {
    font-weight: 700;
}

.archives-module-popin .content .button {
    background-color: #000000;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
}

.archives-module-popin .content .popin_body {
    margin: 0 12px;
    background-color: #FAF5EC;
    border-radius: 20px;
    padding: 15px;
}

.archives-module-popin .content .popin_body img {
    margin: 25px auto;
    width: 136px;
}

.archives-module-popin .content .popin_body p {
    color: #000000;
    padding: 0 1rem;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.archives-module-popin .content .popin_body p b {
    font-weight: 700;
}

@media only screen and (max-width: 1144px) {
    .archives-module-popin .content .popin_body img {
        width: 110px;
    }
}

@media only screen and (max-width: 768px) {
    .archives-module-popin .content {
        top: 5% !important;
    }

    .archives-module-popin .content .popin_body p {
        font-size: 1.5rem;
    }

    .archives-module-popin .api-content .popin_header .api-text {
        padding: 15px;
    }

    .archives-module-popin .content {
        padding: 15px;
    }

    .archives-module-popin .api-content {
        padding: 0;
    }

    .archives-module-popin .content .popin_body img {
        width: 90px;
    }

    .archives-module-popin .content .close {
        width: 2em;
        height: 2em;
    }
}