input#edit-salt-popup-max-days{
    width: 20%;
}

.form-item-salt-popup-max-days{
    line-height: 4rem;
    margin-bottom: 8px;
    width: 100%;
    margin-left: 5%;
}

#edit-submit{
    margin-left: 5%;
}


#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fond noir transparent */
    z-index: 9999;
    /* Assure que l'overlay est au-dessus de tout le contenu */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    
}

#popup {
    /*background-color: white;*/
    /* Couleur de fond du pop-up */
    padding: 2px;
   /* border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Ombre pour le pop-up */
    z-index: 10000;
    /* Assure que le pop-up est au-dessus de l'overlay */
    /*max-width: 80%;*/
    /* Largeur maximale du pop-up */
    max-height: 70%;
    /* Hauteur maximale du pop-up */
    /*overflow-y: auto;
    /* Permet le défilement si le contenu du pop-up dépasse */
    cursor: pointer;

    overflow: hidden;
    /*align-content: center;*/
    /*align-items: center;*/
    text-align: center;
    margin-top: 25px;
}

#close-button {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bolder;
    border: 1px solid;
    background: transparent;
    border-radius: 50px;
    /*float: right;*/
    margin-top: -18px;
    position: absolute;
    /*right: 43px;*/
    height: 35px;
    width: 35px;
}

.bottom-close-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10001;
}

.overlay-img{
    /*width: 38%;*/
    height: 85%;
}

@media (min-width: 3840px){
    .overlay-img{
        /*width: 100%;*/
         height: 100%;
    }
}
/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 2160px) and (max-width: 3839px){
    .overlay-img{
        /*width: 100%;*/
         height: 100%;
    }
}

@media (min-width: 1821px) and (max-width: 2159px){
    .overlay-img{
        /*width: 50%;*/
         height: 100%;
    }
}

@media (min-width: 1481px) and (max-width: 1820px){
    .overlay-img{
        /*width: 38%;*/
         height: 100%;
    }
}

@media (min-width: 1281px) and (max-width: 1480px){
    .overlay-img{
        /*width: 38%;*/
         height: 100%;
    }
}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1161px) and (max-width: 1280px){
    .overlay-img{
        /*width: 38%;*/
         height: 100%;
    }
}

@media (min-width: 1025px) and (max-width: 1160px){
    .overlay-img{
        /*width: 100%;*/
         height: 100%;
    }
}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 800px) and (max-width: 1024px){
    .overlay-img{
        /*width: 100%;*/
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 799px){
    .overlay-img{
        /*width: 100%;*/
         height: 75%;
    }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
    .overlay-img{
        /*width: 38%;*/
        /* height: 75%;*/
    }
}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px){
    .overlay-img{
        /*width: 100%;*/
        /* height: 75%;*/
    }
}
/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/


@media (min-width: 411px) and (max-width: 480px){
    .overlay-img{
        /*width: 38%;*/
        /* height: 75%;*/
    }
}

@media screen and (min-width: 320px) and (max-width: 480px){
    .overlay-img{
        /*width: 100%;*/
        /* height: 75%;*/
    }
}

@media (min-width: 320px) and (max-width: 411px){
    .overlay-img{
        /*width: 100%;*/
        /* height: 75%;*/
    }
}