.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    width: 100vw;
    min-height: 100vh;
    background-color: rgba(0, 10, 20,0.6);
    padding: 80px 30px 0px 30px;
    box-sizing: border-box;
    overflow-y: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* backdrop-filter: blur(10px); */
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 40px;
    max-width: 450px;
    margin: auto auto 80px auto;
    box-shadow: 0px 10px 25px rgba(0, 10, 20, 0.3), 0px 2px 6px rgba(0, 10, 20, 0.1);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.modal-close svg {
    width: 24px;
    height: 24px;
    fill: #aaaaaa;
    transition: 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-close:hover svg,
.modal-close:focus svg {
    fill: #888888;
}

#texte-modal-mentions-legales {
    color: #E71D73;
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    margin-top: 10px;
}

#modal-mentions-legales b {
    color: #E71D73;
    font-size: 18px;
}

#modal-mentions-legales a {
    color: #1B5178;
    text-decoration: none;
}

#modal-mentions-legales .modal-content {
    text-align: justify;
}

#icone-chargement {
    position: fixed;
    top: calc(50vh - 25px);
    left: calc(50vw - 25px);
}

@keyframes iconeChargement {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#icone-chargement svg {
    fill: white;
    width: 50px;
    height: 50px;
    animation: iconeChargement 2s linear infinite;
}

@media screen and (max-width: 500px) {

    .modal {
        padding: 30px 15px;
    }

}