.popup-alertes{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    background-color: #1e1521;
    z-index: 1000;
}
.popup-alertes h3{
    font-size: 21px;
    font-weight: 500;
    color: #f7a438;
}
#close-alertes{
    font-size: 32px;
    color: #f7a438;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#close-alertes:hover{
    opacity: 0.8;
}
.grp-inputs-alertes{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.selector-server-alertes{
    position: relative;
}
.current-server-alertes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #17061c;
}
.current-server-alertes span{
    font-size: 14px;
}
.current-value-alertes{
    font-size: 14px;
}
.list-server-alertes{
    position: absolute;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 3px;
    background-color: #17061c;
    width: 100%;
    top: 45px;
    z-index: 99;
    max-height: 100px;
    overflow-y: scroll;
}
.list-server-alertes span{
    font-size: 14px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.list-server-alertes span:hover{
    background-color: #41234b;
}
.list-server-alertes.active{
    display: flex;
}
.list-server-alertes.active{
    display: flex;
}
.list-server-alertes {
    scrollbar-width: thin;
    scrollbar-color: #DB67FF #421350;
}
.list-server-alertes::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.list-server-alertes::-webkit-scrollbar-track {
  background: #792323;
  border-radius: 10px;
}
.list-server-alertes::-webkit-scrollbar-thumb {
  background: #DB67FF;
  border-radius: 10px;
}
.list-server-alertes::-webkit-scrollbar-thumb:hover {
  background: #DB67FF;
}






.input-alertes{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.input-alertes label{
    font-size: 14px;
}
.input-alertes input{
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    color: #fff;
    background-color: #17061c;
}
.note-alertes{
    font-size: 14px;
    color: #f7a438;
}
#btn-alertes{
    font-size: 14px;
    text-align: center;
    padding: 10px 15px;
    width: 120px;
    max-width: 100%;
    color: #17061c;
    border-radius: 3px;
    cursor: pointer;
    background-color: #f7a438;
    transition: all 0.3s ease-in-out;
}
#btn-alertes:hover{
    color: #fff;
    background-color: #41234b;
}
.overlay-alertes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
#price-alertes{
    cursor: pointer;
}
#price-alertes:hover{
    opacity: 0.8;
}
.devis-alertes{
    display: none;
    flex-direction: column;
    gap: 10px;
}
.devis-alertes.active{
    display: flex;
}
.grp-info-alertes{
    display: flex;
    align-items: center;
    gap: 10px;
}
.grp-info-alertes h3{
    font-size: 16px;
    font-weight: normal;
}
.grp-info-alertes img{
    width: 200px;
}
@media (max-width: 768px){
    .popup-alertes{
        width: 90%;
    }
    .popup-alertes h3{
        font-size: 18px;
    }
    .popup-alertes{
        padding: 20px;
    }
    .grp-info-alertes{
        flex-direction: column;
    }
}