.pop_wrap {
    width: 500px;
    height: 480px;
    max-width: 100vw;
    max-height: 100vh;
    position: fixed;
    top: 100px;
    left: 100px;
    z-index: 11000;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0px 0px 36px 0px;
    border: 1px solid #171717;
}

.pop_con_box {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.pop_wrap .pop_img_box {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 16px;
}

.pop_wrap .pop_img_box > img {
    width: auto;
    max-width: 100%;
}

.pop_wrap .close_area {
    width: 100%;
    height: 36px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.pop_wrap .close_area .today_close {
    display: block;
    width: calc(100% - 100px);
    height: 100%;
    color: #fff;
    font-size: 11px;
    text-align: right;
    line-height: 36px;
}

.pop_wrap .close_area .today_close input {
    background-color: #fff;
}

.pop_wrap .close_area .close_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100px;
    display: block;
    height: 100%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 36px;
}

.pop_wrap .close_area .today_close input {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: top;
    margin-top: 11px;
    margin-left: 10px;
}

.pop_wrap .pop_txt_box {
    box-sizing: border-box;
    padding: 0 16px;
    margin-top: 24px;
}

.pop_wrap .pop_txt_box .b_txt {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.pop_wrap .pop_txt_box .s_txt {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
    line-height: 1.5;
}

.pop_video {
    position: fixed;
    top: 150px;
    left: 40px;
    width: 800px;
    max-width: 90%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
}

.pop_video.active {
    display: block;
}

.pop_video .pop_video_header {
    padding: 16px;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pop_video .pop_video_close {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    
    &::before,
    &::after {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    
    &::before {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    &::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

.pop_video .pop_video_wrap {
    position: relative;
    width: 100%;
}

.pop_video .pop_video_wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.pop_video .pop_video_wrap::after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

@media screen and (max-width: 1199px) {
    .popup_con {
        overflow-x: auto;
    }
    
    .pop_wrap {
        width: calc(100% - 40px) !important;
        height: calc(100% - 40px) !important;
        top: 0 !important;
        left: 0 !important;
        margin: 20px;
    }
    
    .pop_video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}