/* Échec de l'agrandissement. Renvoi du contenu non agrandi.
(48,23): run-time error CSS1046: Expect comma, found '0'
(48,27): run-time error CSS1046: Expect comma, found '/'
(769,62): run-time error CSS1046: Expect comma, found '0'
(769,66): run-time error CSS1046: Expect comma, found '/'
 */
body {
    min-height: 100vh;
    min-width: 100vw;
    text-align: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg,rgba(243, 146, 0, 1) 0%, rgba(228, 18, 18, 1) 50%, rgba(168, 23, 21, 1) 100%);
    color: white;
    font-family: 'Casto', sans-serif;
    font-size: 0.8em;
}

.casto-regular {
    font-weight: 400;
}

.casto-medium {
    font-weight: 500;
}

.casto-bold {
    font-weight: 700;
}

.casto-black {
    font-weight: 900;
}

.errorDiv {
    padding: 2px 7px;
    border-radius: 5px;
    background: red;
    margin-bottom: 5px;
}

.Modal {
    top: 0;
    left: 0;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    flex-direction: column;
    z-index: 1000;
    background: rgb(0 0 0 / 74%);
    display: none;
}

    .Modal h2 {
        margin: 5px auto;
    }

    .Modal button {
        cursor: pointer;
    }

.white-container {
    max-width: 400px;
    background: white;
    margin: auto;
    width: 80%;
    border-radius: 15px;
    color: rgb(49, 117, 190);
    position: relative;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .white-container button {
        position: absolute;
        right: 2%;
        top: 5%;
        background: none;
        border: none;
        color: rgb(49, 117, 190);
    }


.whiteBox {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 6px;
    margin: auto;
    width: 90%;
    margin-bottom: 10px;
    overflow: hidden;
    color: white;
}

.tasPopup {
    background: white;
    margin: auto;
    width: 100%;
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
    color: rgb(49, 117, 190);
    position: absolute;
    bottom: 0;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    justify-content: center;
    max-width: 500px;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    animation: rotate 1s linear infinite
}



    .loader::before, .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid #FFF;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::after {
        border-color: rgb(34, 93, 150);
        animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
        inset: 6px;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}

.footer {
    font-size: 0.7em;
    width: 100%;
    max-width: 400px;
    margin: auto;
    position: fixed;
    /*    position: relative;*/
    bottom: 0;
    color: #ffffff;
    border-radius: 10px 10px 0px 0px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    width: 100%;
    position: relative;
    /*    position: inherit;*/
}

.footer-img {
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: -90px;
    width: 250px;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
}

.mention {
    position: relative;
    font-size: 0.7em;
    z-index: 2;
}

.imgSocial img {
    width: 18px;
}

.imgSocial a {
    text-decoration: none;
}

.container {
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    padding: 0px 15px;
/*    overflow: hidden;*/
    position: relative;
}

.blueData-container {
    background: rgb(242, 139, 1);
    background: -moz-linear-gradient(180deg, rgba(242, 139, 1, 1) 0%, rgba(254, 206, 4, 1) 50%, rgba(254, 201, 11, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(242, 139, 1, 1) 0%, rgba(254, 206, 4, 1) 50%, rgba(254, 201, 11, 1) 100%);
    background: linear-gradient(180deg, rgba(242, 139, 1, 1) 0%, rgba(254, 206, 4, 1) 50%, rgba(254, 201, 11, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3149be",endColorstr="#3149be",GradientType=1);
    width: 900%;
    height: 410px;
    position: absolute;
    z-index: -1;
    transform: translate(-39%,-115%);
    rotate: -25deg;
    border-radius: 207px;
}

.Modal .content {
    position: relative;
}

.form {
    max-width: 350px;
    margin: 10px auto;
    width: 100%;
}

    .form .textbox {
        margin: 10px auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

.textbox .tips {
    border: 1px solid #2085c6;
    border-radius: 50%;
    width: 20px;
    cursor: pointer;
    color: #2085c6;
    align-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    height: 20px;
}

.textbox .input {
    background: white;
    color: black;
    padding: 11px 6px;
    border-radius: 30px;
    font-size: 12px;
    /*margin-right: 5px;*/
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}

    .textbox .input input {
        all: unset;
        text-align: left;
        width: 55%;
    }

.textbox .input2 {
    background: white;
    color: black;
    padding: 11px 12px;
    border-radius: 30px;
    font-size: 12px;
    /*margin-right: 5px;*/
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: left;
    gap: 5px;
}

    .textbox .input2 input {
        all: unset;
        text-align: left;
        width: 70%;
    }


.btnsSection {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.btn {
    cursor: pointer;
    border: none;
    width: 240px;
    border-radius: 45px;
    padding: 15px;
    font-size: 18px;
    color: white;
    margin: 10px auto;
    box-shadow: 0px 9px 5px #00000094;
    transition: 0.1s;
}

.blue-btn {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(0,136,222,1) 12%, rgba(0,112,181,1) 48%, rgba(0,86,140,1) 71%, rgba(0,66,108,1) 92%, rgba(0,39,64,1) 100%);
    /*background: linear-gradient(180deg,rgba(132, 209, 255, 1) 0%, rgba(1, 136, 222, 1) 20%, rgba(39, 58, 152, 1) 80%, rgba(0, 34, 76, 1) 100%);*/
}

.yellow-btn {
    background: linear-gradient(180deg,rgba(254, 201, 11, 1) 0%, rgba(254, 206, 4, 1) 50%, rgba(242, 139, 1, 1) 100%);
    color: #0174be;
}

.green-btn {
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(26,241,76,1) 12%, rgba(17,210,55,1) 48%, rgba(20,171,40,1) 71%, rgba(1,120,21,1) 92%, rgba(10,88,4,1) 100%);
}

.grey-btn {
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(197,197,197,1) 12%, rgba(142,142,142,1) 48%, rgba(91,91,91,1) 71%, rgba(71,71,71,1) 92%, rgba(33,33,33,1) 100%);
}

.header {
    background: url(Images/header_footer/header.png) center no-repeat;
    height: 170px;
    z-index: 1;
    position: relative;
    /*background-size: cover;
    background-position: top;*/
}

.listAlign {
    text-align: justify;
    width: fit-content;
    margin: auto;
}

.createCardDiv {
    font-size: 20px;
    display: flex;
    /*border: 1px solid white;*/
    border-radius: 35px;
    padding: 8px 0px;
    width: 238px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
    background: linear-gradient(180deg,rgba(137, 213, 255, 1) 0%, rgba(71, 185, 255, 1) 20%, rgba(16, 98, 210, 1) 80%, rgba(31, 49, 69, 1) 100%);
}

    .createCardDiv img {
        width: 45px;
        margin: 0px 4px;
    }
/*confetti de la default*/
.confetti-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Pour permettre l'interaction avec le slider en dessous */
    z-index: 1;
}

    .confetti-container img {
        position: absolute;
        width: 45px; /* Taille ajustable selon vos besoins */
        height: auto;
        z-index: -1;
    }

        .confetti-container img:nth-child(1) {
            top: -55px;
            rotate: -35deg;
            left: 30%;
            width: 30px;
            animation: floating 4s ease-in-out infinite;
        }

        .confetti-container img:nth-child(2) {
            top: 17%;
            left: 66%;
            rotate: -41deg;
            width: 35px;
            z-index: 0;
            animation: floating 5s ease-in-out infinite;
        }

        .confetti-container img:nth-child(3) {
            top: -80px;
            left: 56%;
            rotate: -37deg;
            animation: floating 6s ease-in-out infinite;
            width: 10px;
        }

        .confetti-container img:nth-child(4) {
            top: -45px;
            left: 73%;
            rotate: 60deg;
            z-index: 2;
            width: 20px;
            animation: floating 4.5s ease-in-out infinite;
        }

        .confetti-container img:nth-child(5) {
            top: -11px;
            left: 25%;
            width: 25px;
            animation: floating 5.5s ease-in-out infinite;
        }

        .confetti-container img:nth-child(6) {
            top: 88%;
            left: 23%;
            rotate: -51deg;
            width: 11px;
            z-index: 2;
            animation: floating 3.5s ease-in-out infinite;
        }

        .confetti-container img:nth-child(7) {
            right: 18%;
            rotate: -42deg;
            width: 19px;
            z-index: 2;
            animation: floating 3.5s ease-in-out infinite;
        }

        .confetti-container img:nth-child(8) {
            top: 14%;
            left: 14%;
            rotate: -150deg;
            width: 40px;
            z-index: 2;
            animation: floating 3.5s ease-in-out infinite;
        }

.mention .confetti-container img:nth-child(1) {
    top: 21%;
    rotate: 25deg;
    left: 11%;
    width: 30px;
    z-index: -1;
    animation: floating 4s ease-in-out infinite;
}

.mention .confetti-container img:nth-child(2) {
    top: 7%;
    left: 64%;
    rotate: -41deg;
    width: 35px;
    z-index: -1;
    animation: floating 5s ease-in-out infinite;
}

.mention .confetti-container img:nth-child(3) {
    top: 31%;
    left: 88%;
    rotate: -37deg;
    z-index: -1;
    animation: floating 6s ease-in-out infinite;
}

.mention .confetti-container img:nth-child(4) {
    display: none;
    top: 97%;
    left: 86%;
    rotate: 23deg;
    z-index: -1;
    width: 38px;
    animation: floating 4.5s ease-in-out infinite;
}

.mention .confetti-container img:nth-child(5) {
    top: 47%;
    left: 4%;
    width: 13px;
    z-index: -1;
    animation: floating 5.5s ease-in-out infinite;
}

.mention .confetti-container img:nth-child(6) {
    top: 86%;
    left: 23%;
    rotate: -51deg;
    width: 11px;
    z-index: -1;
    animation: floating 3.5s ease-in-out infinite;
}

/* Animation de flottement */
@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(10px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/*.logoPartenaire{
    padding:5px;
    border:2px solid #ffffff;
    border-radius:25px;
    display:flex;
    flex-direction:row;
    align-content:center;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin:10px auto;
}*/
.logoPartenaire-fieldset {
    border: 2px solid white;
    border-radius: 25px;
    padding: 5px;
    margin: 10px auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: fit-content;
}

    .logoPartenaire-fieldset legend {
        padding: 0 15px;
        color: white;
        font-weight: bold;
        text-align: center;
        margin: 0 auto;
    }

.btn h3 {
    margin: 0;
    font-size: 20px;
}
/*Slider de la default*/
.slider-container {
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
}

    .slider-container:active {
        cursor: grabbing;
    }

/* Style pour le wrapper qui contiendra tous les slides */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Style pour chaque slide */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    opacity: 0.85;
    transition: opacity 0.6s ease-in-out, transform 0.4s ease-out;
    transform: scale(0.80);
    padding: 0px 60px;
    box-sizing: border-box; /* Pour que le padding soit inclus dans la largeur/hauteur totale */
}

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }
    /* Style pour les images du slider */
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changé de 'cover' à 'contain' pour mieux voir le padding */
        pointer-events: none;
        border-radius: 10px; /* Ajout d'un arrondi aux coins des images */
    }

/* Style pour les indicateurs */
.slider-indicators {
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    border: 1px #3175be;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active {
        background-color: #3175be;
        border-radius: 35px;
        width: 25px;
    }

@font-face {
    font-family: 'Casto';
    src: url('fonts/Casto-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Casto';
    src: url('fonts/Casto-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Casto';
    src: url('fonts/Casto-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Casto';
    src: url('fonts/Casto-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.welcomeVerif {
    height: 35px;
    width: 200px;
    margin: 25px auto;
    display: flex;
    font-size: 1.2em;
    text-align: left;
}

    .welcomeVerif img {
        height: 100%;
        margin: 0px 5px;
    }



.boxReveal {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 60px;
    margin-bottom: 125px;
}

.blue-box, .yellow-box {
    width: 55%;
    padding: 20px;
    text-align: center;
    height: 95px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.5em;
}

.blue-box {
    background-color: #1876d2;
    color: white;
    top: -10px;
    left: -100%;
    animation: slideInLeft 1s forwards,jiggle 5s infinite ease;
    position: relative;
    rotate: 2deg;
}

.m-2 {
    margin: 15px;
}

.yellow-box {
    background-color: #ffcc00;
    color: black;
    bottom: 0;
    right: -150%;
    animation: slideInRight 1s forwards,jiggle 5s infinite ease;
    position: absolute;
    top: 44px;
    rotate: -5deg;
    width: 60%;
    height: fit-content;
    padding: 15px;
    padding-bottom: 0px;
    animation-delay: 1s;
    box-shadow: 0px 7px 0px #b68700, -6px 20px 2px 0px rgb(0 0 0 / 49%);
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}



    .yellow-box img {
        width: 100%;
        animation: pulse 1s infinite;
    }

@keyframes jiggle {
    0% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    to {
        left: 15%;
    }
}

@keyframes slideInRight {
    to {
        right: 15%;
    }
}

.boxReveal .textCongrat {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 1.2em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.textCongrat h2 {
    margin: 0;
    font-size: 2.8em;
    line-height: 45px;
    letter-spacing: -5px;
}

.btn:active {
    box-shadow: inset 0px 7px 5px #00000094;
    transform: translateY(1px);
    animation: none;
}

.btnPulse {
    animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.textCheckbox {
    align-self: center;
}

.partner-container {
    display: none;
}

.dotation-container {
    display: none;
}

.animated-image {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

    .animated-image.pulse {
        transform: scale(1.25);
    }

@media screen and (min-width: 768px) {
    .global-container {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 20px;
        padding: 0 20px;
    }

    .container {
        margin: inherit;
    }

    .dotation-container {
        max-width: 400px;
    }

    .partner-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        border: 2px solid white;
        padding: 20px 0;
        border-radius: 35px;
        position: relative;
        align-items: center;
        background: white;
        width: 100%;
    }

    .partner-title {
        color: black;
        font-weight: bold;
        font-size: 1.5rem;
        position: relative;
        margin-bottom: 10px;
    }

        .partner-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(180deg,rgba(243, 146, 0, 1) 0%, rgba(228, 18, 18, 1) 50%, rgba(168, 23, 21, 1) 100%);
            border-radius: 2px;
        }

    .partner-logo-home {
        width: 200px;
        border-radius: 10px;
    }

    .dotation-container {
        display: flex;
    }

    .partner-logo {
        display: none;
    }

    .mention {
        align-self: center;
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 500px;
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .partner-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 200px;
        border: 2px solid white;
        padding: 20px 10px;
        border-radius: 35px;
        position: relative;
        align-items: center;
        background: white;
        width: 100%;
    }

    .partner-title {
        color: black;
        font-weight: bold;
        font-size: 1.1rem;
        position: relative;
        margin-bottom: 10px;
    }

        .partner-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(180deg,rgba(243, 146, 0, 1) 0%, rgba(228, 18, 18, 1) 50%, rgba(168, 23, 21, 1) 100%);
            border-radius: 2px;
        }

    .partner-logo-home {
        width: 150px;
        border-radius: 10px;
    }

    .dotation-container {
        display: flex;
    }

    .partner-logo {
        display: none;
    }

    .mention {
        align-self: center;
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
    }
}

@media screen and (max-width: 900px) {
    .global-container {
        align-items: start;
    }

    .partner-container {
        display: none;
    }

    .dotation-container {
        display: none;
    }

    .partner-logo {
        display: inline;
    }
}

