.dim{
   position:fixed;
   top:0;
   left:0;
   width:100%;
   height: 100%;
   background: rgba(0,0,0,0.3);
   display:none;
   z-index:9;
}
.dim.active{
    display:block;
}
.popup, .subscr-popup{
    min-width: 720px;
    width:720px;
    position:fixed;
    background: #fff;
    /* min-height: 630px; */
    border-radius:5px;
    top:200px;
   left:0;
   right:0;
   margin-left: auto;
   margin-right: auto;
   z-index:999;
   display:none;
   max-height: 90vh;
   overflow-y: scroll;
}
.popup.active, .subscr-popup.active{
    display:block
}
.popup-title{
    background: #FAA61A;
    display:flex;
    padding:20px 20px;
    box-sizing:border-box;
    justify-content: space-between;
    border-top-left-radius:5px;
    border-top-right-radius:5px;


}
.popup-title .title{
   color:#FFFFFF;
   font-size:32px;
   font-weight: 700;
}
.popup-content{
    float:left;
    width:100%;
    padding:20px;
    box-sizing:border-box;
}
.popup-content .contact-box{
    float:left;
    width:100%;
    margin-bottom:30px;
}
.popup-content .contact-box .bold-title{
    float:left;
    width:100%;
    color:#FAA61A;
    font-size:20px;
    margin-bottom:10px;
}
.choise-wrap{
    float:left;
    width:100%;
}
.choise-wrap input{
    float:left;
    width:100%;
    height: 40px;
    line-height: 40px;
    border:1px solid #C1C1C1;
    padding-left:10px;
    box-sizing:border-box;
    border-radius:5px;
}
@media (max-width: 720px){
    .popup, .subscr-popup{
        min-width: 85%;
        width:85%;
        top:15px;
        z-index:9999999999999;
        height: 80%;
        overflow: scroll;
    }
    .popup-title{
        padding:5px;
    }
    .popup-title .title{
        font-size:20px;
    }
}
