.video_container {
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    z-index: 10100;
}
.video_container .video_mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 10101;
}
.video_container .video_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -400px;
    width: 800px;
    height: 500px;
    z-index: 10102;
    background: #fff;
}
.video_container .video_close {
    position: absolute;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.7);
    right: 40px;
    top: 40px;
    z-index: 10103;
    cursor: pointer;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.video_container .video_close:hover {
    color: #fff;
}


.video_container .prism-player .prism-big-play-btn {
    border: none;
    width: 64px;
    height: 64px;
    left: 50%!important;
    bottom: 50%!important;
    margin-left: -32px;
    margin-bottom: -32px;
}
.video_container .prism-player .prism-big-play-btn:hover {
    border: none;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}

