@charset "utf-8";

/*
 * File       : video.css
 * Author     : SMART GEO
 * Guideline  : -
 * Update : 2022-03-18
 *
 * Dependency : 비디오 스타일
 *
 * SUMMARY:
 * 01) 전역 스타일
 */

/* **************************************** *
 * 01) 전역 스타일
 * **************************************** */
.video_content {
    position: fixed;
    width: 800px;
    border: 1px solid #dddddd;
    visibility: hidden;
    padding: 20px;
    opacity: 0;
    transition: .3s ease;
    top: calc(50vh - 45vh);
    left: calc(50vw - 400px);
    background-color: #ffffff;
    z-index: 99999;
}
.video_content.show {
    visibility: visible;
    opacity: 1;
    top: calc(50vh - 200px);
    border-radius: 15px;
}
.video_content iframe {
    width: 100%;
}
.video_content .video_close_btn {
    position: absolute;
    right: 0;
    top: -55px;
    font-size: 40px;
    font-weight: 100;
    line-height: 40px;
    cursor: pointer;
}
.video_content_bg {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 99997;
}
.video_content_bg.show {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .video_content {
        width: 100%;
    }
    .video_content.show {
        top: 30%;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}