#abc {
	display: none;
	position: fixed;
	opacity: .95;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0.63);
    transform-origin: 50% 50%;
}
#abc #popupContact {
    max-height: 150vh;
    overflow: auto;
}

#abc .container {
    padding: 10px 40px 20px 40px;
}

#abc .flex-col {
    display: flex;
    flex-direction: column;
}
#abc .flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 10px 0;
    -webkit-text-fill-color: var(--FormCouleurCarac);
    font-family: var(--FormPoliceChamp);
    font-size: var(--FormFontSizeCarac);
    font-weight: bold;
}
#abc .flex-center {
    justify-content: center;
}
#abc #txtModifObs {
    text-align: center;
    padding-bottom: 20px;
    font-size: var(--FormTailleTitreCarte);
    color: var(--FormCouleurCarac);
    white-space: nowrap;
    background-color: var(--FormCouleurFond);
}
#abc .img-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#abc .flex-start {
    justify-content: flex-start;
}
#abc span {
    width: 55%;
    text-align: left;
}
#abc input, #abc textarea {
    border-radius: 20px;
    padding: 10px 10px 20px 20px;
    width: 100%;
    color: var(--FormCouleurCarac);
    -webkit-text-fill-color: var(--FormCouleurCarac);
    font-family: var(--FormPoliceChamp);
    font-size: var(--FormFontSizeCarac);
    font-weight: bold;
}
#abc textarea {
    resize: vertical;
}
#abc .flex-row-btn {
    margin-top: 20px;
}
#abc .multi-button {
    filter: drop-shadow(3px 10px 15px rgba(0, 0, 0, 0.45));
    margin-top: 10px;
    transform: scale(1) !important;
}
#abc #description, #abc #username, #abc #lati, #abc #longi, #abc #date, #abc #hour, #abc #msg {
    background-color: white;
}
#abc #txtDelete2 {
    -webkit-text-fill-color: red;
    color: red;
    width: 34%;
}
#abc #txtPrivate, #abc #txtisInvisiblelabelModif, #abc #txtisVerifiedlabelModif {
    width: 34%;
}
#abc .photo-row-isPicture {
    display: none;
}
#abc #groupeselect {
    font-family: var(--FormPoliceChamp);
    display: block;
    height: var(--FormMargeHeight);
    padding: 0 20px 0 23px;
    border: 0px solid transparent;
    font-weight: var(--FormFontEpaisseur);
    width: 100%;
    opacity: 1;
    background-color: white;
}
#abc #isVerifiedModif {
    width: 40px;
    height: 45px;
    accent-color: var(--FormCouleurCarac);
}
#abc #groupeselect option {
    font-family: var(--FormPoliceChamp);
    font-weight: var(--FormFontEpaisseur);
}

#abc button {
    height: 60px;
    width: 150px;
    font-size: 95%;
    margin: -2.5px;
}

/*Scrollbar modifObs*/
#popupContact::-webkit-scrollbar {
	width: 5px;
}
#popupContact::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
#popupContact::-webkit-scrollbar-thumb {
	background: var(--FormCouleurSpin);
}
/*Mozilla version*/
#popupContact {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}


@media (max-width: 1440px) and (max-height: 900px) {
    #abc {
        transform: translate(-50%,-50%) scale(0.5) !important;
    }
}

@media screen and (max-width: 767px) {
    #abc {
        width: 200% !important;
        height: 200% !important;
        top: -50% !important;
        left: -50% !important;
        transform: scale(0.5) !important; /*no translate*/

        /* opacity: 1 !important;
		overflow: auto !important; */
    }
    #abc #popupContact {
        height: 100%;
        max-height: none;
    }

    /*Scrollbar modifObs*/
    .formMap::-webkit-scrollbar {
        width: 5px;
    }
    .formMap::-webkit-scrollbar-track {
        background : rgb(255 255 255 / 50%);
    }
    .formMap::-webkit-scrollbar-thumb {
        background: var(--FormCouleurSpin);
    }
}