#_popup {
    max-width: none;
    min-width: 100px;
    position: fixed;
    left:50%;
    top:50%;
    max-width:720px;
    max-height: 720px;
    /*height:300px;*/
    margin-top:-160px;
    margin-left: -160px;
    background-color: #fff;
    padding:0px;
    z-index:99;
    display: none;
    visibility: hidden;
    opacity: 0;
    /*border-radius: 5px;*/
    border:2px solid #007ac3;
}

    #_popup > div{
        padding:0;
        margin:0 auto;
        text-align: center;
    }
    
        #_popup > div > img{
            max-width: 720px;
            max-height: 700px;
        }
    
    #_popup > a{
        position: absolute;
        right:-15px;
        top:-15px;
        background: url(/img/site/ico_close.png) center center no-repeat #195073;
        width: 30px;
        height:30px;
        border-radius: 20px;
        z-index: 2;
	cusror:pointer;
    }
    #_popup ._description{
        font-size: 13px;
    }
    #_popup._minimize ._description{
        line-height: 0px;
    }
    
    #_popup ._message{
        padding:20px;
        font-size: 13px;
        color:#666666;
    }
    
#_popup_shadow {
    max-width: none;
    min-width: auto;
    z-index:98;
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color: rgba(0,0,0,0.3);
    /*background-image: url(/img/site/popup_bg.png);*/
    display: none;
}

#_popup.show,  #_popup_shadow.show{
    display: block;
}

#_popup.visible{
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    visibility: visible;
}



    
    #_popup ._text{
        font-size: 14px;
    }
    .error{display:none}
    
    .error.on{
        display: block;
        color:red;
        font-size: 13px;
        text-align: right;
    }
    
    
#_popup h2._title{
    text-transform: uppercase;
    color:#007ac3;
    font-size: 14px;
    text-align: left;
    padding-left: 5px;
}

