

.logoSOS-container {
    position: fixed;
    left: 15px;
    top: 2.5vh !important;
}
.logoSOS-container img {
    max-width: 70px;
    cursor: pointer;
}

#popupSOS-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5% 10%;
    background-color: #00000025;
}
#popupSOS {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 3%;
    border-radius: 10px;
    background-color: #65b0b5;
    cursor: auto;
    height: 100%;
}
#popupSOS h1 {
    color: var(--FormCouleurCarac);
    font-size: 2.5em;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    margin: 0 !important;
    background-color: transparent;
    background: none;
}
#popupSOS img {
    max-width: 80px;
}
#popupSOS .title-popupSOS {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
#popupSOS .text-popupSOS {
    overflow: auto;
    max-height: 350px;
    padding: 2% 5%;
    text-align: left;
    color: white;
    line-height: 1.3;
    font-weight: 100;
    margin: 2% 0;
}
#popupSOS p {
    color: #FFFFFF;
}
#popupSOS #popupSOSClose {
    padding: 5px 15px;
    background: var(--FormCouleurCarac);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 25px;
    font-family: var(--FormPoliceChamp);
    font-weight: bold;
}

@media screen and (min-width: 1920px) {
    .logoSOS-container {
        top: 7.5vh;
    }
    #popupSOS-overlay {
        padding: 5% 20%;
    }
}
@media screen and (max-width: 767px) {
    .logoSOS-container {
        display: block;
    }
    .logoSOS-container img {
        margin-top: 10px;
        max-width: 60px;
    }
    #popupSOS-overlay {
        padding: 0;
    }
    #popupSOS {
        width: 100%;
        height: 100%;
    }
}

/*ScrollBar*/
/* Track */
#presentationSOS::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
#presentationSOS::-webkit-scrollbar-thumb {
    background: var(--FormCouleurCarac);
}

/* Handle on hover */
#presentationSOS::-webkit-scrollbar-thumb:hover {
    background: #24468e;
}
/*Mozilla version*/
#presentationSOS {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}
