#video {}

#video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
}

#video .back-drop {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
}

#video .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 750px;
    min-height: 200px;
    z-index: 1;
}

#video .exit {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    padding: 18px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.4;
}


/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
    #video .submit {
        display: block;
    }

    #video .popup-content {
        width: 98%;
    }
}

/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {}

/* PC */
@media screen and (min-width: 1024px) {}

#video video {
    width: 100%;
}