/* POP UP */
#PopUp_div{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 9999;
}
#PopUp_content{
    position: absolute;
    display: block;
    width: 470px;
    height: 250px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
}
#PopUp_bg{
    position: absolute;
    display: block;
    width: 98%;
    height: 81%;
    background-image: linear-gradient(rgb(143, 143, 143), rgb(51, 51, 51));
    border-radius: 8px;
    border: 2px solid rgb(118, 118, 118);
    top: 10px;
}
#PopUp_innerBg{
    position: absolute;
    display: block;
    top: 43px;
    left: 1%;
    width: 96%;
    height: 66%;
    background-color: white;
    border-radius: 8px;
    border: 2px solid rgb(60, 60, 60);
    background-image: linear-gradient(rgb(207, 207, 207), rgb(242, 242, 242), rgb(252, 252, 252), rgb(188, 188, 188));
}
#PopUp_label_title{
    position: absolute;
    display: block;
    pointer-events: none;
    user-select: none;
    top: 18px;
    left: 2%;
    color: black;
}
#PopUp_value_msg{
    position: absolute;
    display: block;
    pointer-events: none;
    user-select: none;
    top: 50px;
    /* left: 2%; */
    width: 95%;
    /* height: 41%; */
    /* overflow: auto; */
    color: black;
    font-size: 14px;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 37%;
}
#PopUp_btn_close{
    position: absolute;
    display: block;
    cursor: pointer;
    right: 0px;
    top: 0px;
}
#PopUp_Password_Container{
    position: absolute;
    display: block;
    width: 98%;
    height: 15%;
    bottom: 17%;
}
#PopUp_label_password{
    position: absolute;
    display: block;
    pointer-events: none;
    user-select: none;
    top: 5px;
    left: 0px;
    color: black;
    width: 30%;
    text-align: right;
}
#PopUp_value_password{
    position: absolute;
    display: block;
    left: 32%;
    /*top: 172px;*/
    color: black;
    font-size: 12px;
    text-align: left;
    width: 35%;
    height: 20px;
    border-radius: 5px;
}
#PopUp_btn_submit{
    position: absolute;
    display: block;
    cursor: pointer;
    width: 21%;
    height: 62%;
    text-align: center;
    left: 69%;
    top: 0px;
    background-color: rgb(130, 128, 128);
    border: 2px solid gray;
    border-radius: 5px;
    line-height: 24px;
    color: black;
    font-size: 14px;
    pointer-events: none;
}
#PopUp_YesNo_Container{
    position: absolute;
    display: block;
    width: 98%;
    height: 15%;
    bottom: 17%;
}
#PopUp_btn_yes{
    position: absolute;
    display: block;
    cursor: pointer;
    width: 21%;
    height: 62%;
    text-align: center;
    left: 28%;
    top: 0px;
    background-color: rgb(204, 204, 204);
    border: 2px solid gray;
    border-radius: 5px;
    line-height: 24px;
    color: black;
    font-size: 14px;
}
#PopUp_btn_no{
    position: absolute;
    display: block;
    cursor: pointer;
    width: 21%;
    height: 62%;
    text-align: center;
    left: 52%;
    top: 0px;
    background-color: rgb(204, 204, 204);
    border: 2px solid gray;
    border-radius: 5px;
    line-height: 24px;
    color: black;
    font-size: 14px;
}
#PopUp_Icon{
    position: absolute;
    display: block;
    top: 50px;
    left: 0px;
    right: 0px;
    margin: auto;
}

@media screen and (max-width: 600px) {
    #PopUp_content{
        width: 400px;
    }
    
}
@media screen and (max-width: 450px) {
    #PopUp_content{
        width: 300px;
    }
}
