.popup_close{
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 10;
}
.popup_close::before,
.popup_close::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    display: block;
    width: 27px;
    height: 2px;
    background-color: #9ea1a7;
}
.popup_close::before{
    transform: translate(0,-2px) rotate(45deg);
}
.popup_close::after{
    transform: translate(0,-2px) rotate(-45deg);
}
.popup_bg{
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    z-index: 999;
    transition: .3s all;
}
.popup_bg.open{
    opacity: 1;
    pointer-events: auto;
}
.popup_container{
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.popup_block{
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    padding: 40px 15px 20px;
    background-color: #fff;
}