.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c77916;
    padding: 50px;
    box-shadow: 0px 0px 10px gray;
    z-index: 1000;
    width: 702px;
    min-height: 250px;
    align-items: center;
}
.popup-ctn {
    width: 100%;
}
.popup-content {
    position: relative;
    text-align: left;
    color: white;
}
#groupPopup #customerGroupSelect{
    width: 75%;
}

/* Style de l'overlay */
#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 10001;
}


/* Style du popup */
#groupPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0e1219;
    padding: 20px;
    border-radius: 10px;
    z-index: 10001;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#customerGroupSelect{
    padding: 11px;
    border-radius: 10px 0 0 10px;
    border: none;
}

#saveGroup{
    padding: 12px;
    background-color: #f79a34;
    border-radius: 0 10px 10px 0;
    width: 160px;
    /* height: 28px; */
    border: none;
    color: #000;
}
#saveGroup:hover, #useGeolocation:hover  {
    cursor: pointer;
}

/*******************************/
/*Popup Style*/
#useGeolocation {
    width: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

body.hidden-ov {
    overflow: hidden;
}

#groupPopup h2 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    #groupPopup {
        display: block;
        width: 95%;
    }

    #useGeolocation,
    #groupPopup h2,
    #groupPopup #customerGroupSelect  {
        width: 100%;
        margin-bottom: 20px;
    }

    #saveGroup {
        width: 100%;
    }
}