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

/* ------------------------------
    #movie_modal
------------------------------ */
#movie_modal{
    width: 100%;
    height: 100%;
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 65535;
}

#movie_modal .movie_overlay{
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#movie_modal .movie_btn_close{
    width: 30px;
    height: 30px;
    margin: 0 0 0 0;
    background-image:url(../images/parts_modal_close.png);
    background-repeat: no-repeat;
    background-size: 30px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
    cursor: pointer;
    transition: opacity .1s ease;
}

#movie_modal .movie_btn_close:hover{
    opacity: .7;
}

#movie_modal_inner{
    margin: 0 auto;
    opacity: 0;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 2;
} 
}