@charset "utf-8";

/* movie */
#movie_modal_bg {
    width: 100%;
    height: 100%;
    background-color: #fff;
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: 0.75;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}

#movie_modal_content {
    max-width: 960px;
    width: calc(100vw - 20px);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    display: none;
    cursor: pointer;
}

#movie_modal_content #modalyoutube_close {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: -37px;
    right: 0px;
}

#movie_modal_content #modalyoutube_movie {
    max-width: 95vw;
    width: 100%;
    height: auto;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#modalyoutube_player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#modalyoutube_player iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width:768px) {

    #movie_modal_content {
        width: 100vw;
    }
}
