.new_popup{
    border-radius:10px;
    display:table;
    position:absolute;
    background-color:var(--bubble);
    z-index:999;
    box-shadow:0px 0px 4px black;
}
.new_popup .popup_cont{
    padding:20px;
}
.popup_close{
    padding:0 8px;
    height:32px;
    line-height:32px;
    font-size:16px;
    color:white;
    background:red;
    border-radius:0 10px 0 0;
    cursor:pointer;
    position:absolute;
    top:2px;
    right:2px;
}
.popup_header{
    min-width:100px;
    height:36px;
    padding:0 40px 0 10px;
    line-height:36px;
    font-size:16px;
    color:var(--title-light-blue);
    text-align:left;
    font-weight:bold;
}
.popup_clona{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:999;
    background-color:rgba(0,0,0,0.7);
}
.popup_confirm_table{
    display:table;
    text-align:center;
    height:30px;
    width:100%;
    border-top:solid 1px rgb(230,230,230);
}
.popup_confirm_table > div{
    line-height:30px;
    height:30px;
}
.popup_cont{
    text-align:left;
}
.popup_mover{
    position:absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    cursor:move;
}
.popup_cont .left_part{
    float:left;
    width:60px;
    height:60px;
    background-image: url(/inc/img/errorMark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.popup_cont .right_part{
    float:right;
    margin-left:20px;
}