*{
    box-sizing: border-box;
}
.new_modal_overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top:0;
    background-color: rgba(11,18,45,0.6);
    z-index: 99;
    display: none;
}
.new_modal_wrap{
    width: 494px;
    height: 393px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}
.new_modal{
    padding: 40px 65px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    background-image: url(/img/100_bg.svg);
    background-repeat: no-repeat;
    -ms-background-position-x: center;
    background-position-x: center;
    background-size:contain;
    box-sizing: border-box;
    -ms-background-position-y: 5px;
    background-position-y: 5px;
}
.new_modal:before{
    position: absolute;
    content:"";
    background-image: url(/img/docs.svg);
    width: 100px;
    height: 100px;
    left:-50px;
    top:-50px;
}
.new_modal_title{
    font-size: 24px;
    font-weight: 700;
    color:#323131;
    text-align: center;
}
.sec_title, .last_title{
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color:#323131;
    margin: 5px 0;
}
.blue_background_title{
    color:#fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.form_wrap form input{
    padding:0 20px;
    height: 37px;
    width: 100%;
    border:1px solid #B6C8DB;
    border-radius: 6px;
}
.form_wrap form input::placeholder{
    color:#AAAEB8;
}
.form_wrap form p{
    color:#323131;
    margin:0;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 10px;
}
.form_wrap form button{
    text-transform: uppercase;
    width: 200px;
    background: #71DD75;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    display: block;
    height: 40px;
    border:none;
    cursor: pointer;
    margin:40px auto;
}
.new_modal_close{
    width: 11px;
    height: 11px;
    background-image: url(/img/close_new_modal.svg);
    position: absolute;
    right:20px;
    cursor: pointer;
    top: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
.new_modal_second_step{
    display: none;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 494px;
    height: 286px;
    background-color: #fff;
    padding: 60px 40px 40px;
    background-image: url(/img/sec_step_bg.png);
}
.new_modal_second_step:before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    left:-50px;
    background-image: url(/img/check.svg);
}
.second_step_title{
    text-align: center;
    color: #323131;
    font-weight: bold;
    font-size: 24px;
    line-height: 40px;
}
.pdf_link_modal a{
    display: block;
    text-decoration: none;
    width: 200px;
    height: 40px;
    color:#fff;
    background: #71DD75;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    margin:0 auto;
    margin-top: 38px;
}
.error_new_modal{
    color:red;
    font-size: 12px;
    position: absolute;
    display: none;
}