.modal_wrap {
    display: flex;
    width: 100%;
    max-width: 60%;
    padding: 30px 15px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4em;
    background: #f1f1f1;
    border-radius: 10px;
    z-index: 99999;
}

.black_bg {
    display: none;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.modal_close {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -30px;
    right: 0;
    cursor: pointer;
}

.modal_close > a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/_resources/assets/img/icon/x.svg) 50% 50% no-repeat;
    text-indent: -9999px;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px){
    .modal_wrap {
        max-width: 100vw;
        max-height: 100vh;
        width: calc(100vw - 10%);
        height: auto;
        font-size: 18px;
        font-weight: 500;
        background: #f1f1f1;
        border: 1px solid #ebebeb;
        border-radius: 10px;
        box-sizing: border-box;
    }       
}