@charset "utf-8";

.popup-bg {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: 0.50;
    filter: alpha(opacity=80);
}

.popup-content {
    width: 300px;
    height: 500px;
    background-color: #fff;
    position: fixed;
    z-index: 1002;
    top: calc((100% - 500px) * 0.5);
    left: 50%;
    transform: translateX(-50%);
}

.popup-content .content {
    width: 100%;
    height: 460px;
}

.popup-content .content img {
    font-size: 0;
}

.popup-content .close {
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    text-align: right;
}

.disable-scroll {
    overflow: hidden;
    height: 100vh;
}