
:root {
    --bleuPolice: #2d3e52;
    --vertTheme: #a7c957;
    --vertFonce: #88b04b;
    --bleuTheme: #71C4F1;
    --bleuFormulaire: #71c4f19f;
}

@font-face {
    font-family: 'Pure Milk';
    src: url('../fonts/PureMilk.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: beige;
    margin: 30% auto;
    padding: 0 0 20px 0;
    border-radius: 10px;
    width: 70%;
    max-width: 500px;
    border: var(--bleuTheme) solid 1.5px;
    font-family: 'Nunito', sans-serif;
    color: var(--bleuPolice);
}

.textModal {
    font-size: 1.2em;
    text-align: center;
    background-color: beige;
    padding: 10px 3px 10px 3px;
    border-radius: 10px;
}

.attention-title {
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dots-loading {
    display: inline-flex;
    font-size: 1em;
    letter-spacing: 1px;
}

.dots-loading span {
    opacity: 0;
    animation: blink 1.4s infinite;
    color: var(--bleuPolice);
    font-weight: bold;
}

.dots-loading span:nth-child(1) {
    animation-delay: 0s;
}

.dots-loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.modalHeader {
    border-radius: 10px 10px 0 0;
    border-bottom: var(--bleuTheme) solid 1.5px;
    background-color: var(--bleuTheme);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.close {
    color: var(--bleuPolice);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.btnsModale {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 15%;
}

.btn-inscription {
    display: block;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background-color: var(--vertFonce);
    color: var(--bleuPolice);
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-inscription:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #679436;
    color: white;
}

/*=============================================================================================================\
|                                          768 PX                                                              |
|                                                                                                              |
|                                                                                                              |
\=============================================================================================================*/
@media (min-width: 768px) {
    .modal-content {
        font-size: 1.2em;
    }
}


/*=============================================================================================================\
|                                          992 PX                                                              |
|                                                                                                              |
|                                                                                                              |
\=============================================================================================================*/
@media (min-width: 992px) {
    .modal-content {
        margin: 15% auto;   
    }

    .modal-content {
        border: var(--bleuTheme) solid 3px;
    }

    .modalHeader {
        border-bottom: var(--bleuTheme) solid 3px;
    }


}