#custom-modal .overlay{
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    background: #222;
    z-index: 40000;
    top:0;
    left: 0;
    overflow: hidden;

    animation-name: fadeIn_Container;
    animation-duration: 1s;
    justify-content: center;
    align-content: center;

}

#custom-modal .modal-dialog{
    display:none;
    top: 20%;
    margin: 0 auto;
    position: fixed;
    z-index: 40001;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
    animation-name: fadeIn_Modal;
    animation-duration: 0.8s;
    width: 30vw;


}


#custom-modal .pmsz_50_percent_container{
    margin-left: 0;
    width: 100%;
    padding: 20px;
}

#custom-modal .pmsz_btn{
    margin-left: 0;
}

#custom-modal .cancel{
    color: #1EA8E0;
    font-size: 40px;
    margin-right: 20px;
    margin-top: 20px;
    display: block;
    cursor: pointer;
}

/****MEDIA QUERIES****/

@media screen and (min-width: 600px){




}


/****ANIMATIONS****/

@keyframes fadeIn_Modal {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@keyframes fadeIn_Container {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
