.popup{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    display: none;
}
.popup .filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 5;
    cursor: pointer;
}
.popup .info{
    width: 80svw;
    height: 70svh;
    background-color: #f8f8f6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border-radius: 10px;
    padding: 30px;
    padding-right: 0;
}
.popup .info .over_y{
    height: 100%;
    overflow-y: scroll;
    padding-right: 30px;
}
.popup .info .close{
    position: absolute; 
    width: 40px;
    top: -40px;
    right: 0;
    color: white;
    cursor: pointer;
}
.popup .info .space_custom{
    clear: both;
    height: 30px;
}
.popup h3{
    font-size: 25px;
    color: var(--primary_color);
    line-height: 28px;
}

@media screen and (max-width: 999px){
    .popup .info{
        width: 90svw;
        height: calc( 100svh - 80px );
        padding: 20px;
    }
    .popup .info .over_y{
        padding-right: 20px;
    }
    .popup .info .space_custom{
        clear: both;
        height: 15px;
    }

}

