/** Generated by QuickPaging **/
/****Videos Style****/
#video-panel{
    background-color: #ddd;
    padding: 15px;
}
.video_box {
    /* width: 50%;*/
    position: relative;
    display: inline-block;
    padding: 0;
    margin-top: 14px;
}

.videos {
    border: 3px #bbb solid;
}
#video{
    padding: 5px;
}

.videos:hover {
    cursor: pointer;
}
.thumbnails-box{
    background-color: #333;
    padding-top: 9px;
}

.play_icon {
    z-index: 100;
    transition: all .5s;
    opacity: .6;
    width: 25%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.play_icon:hover {
    cursor: pointer;
    width: 35% !important;
}

.videos:hover + .play_icon {
    width: 35% !important;
}

.active {
    opacity: .5;
    cursor: default;
    border: 3px #ff0000 solid;
}

.active + .play_icon {
    display: none;
}
.video-title{
    padding: 25px 15px 0;
    color:#fff;
}
.active-video{
    background-color: #d20000;


}
.active-video p{
    color: #fff !important;
}

@media (min-width: 640px) and (max-width: 800px) {
    iframe {
        height: 395px !important;
    }

    #iframe_box {
        padding: 0;
    }
}

@media (max-width: 640px) {
    iframe {
        height: 200px !important;
        margin-top:0px !important;
    }

    #iframe_box {
        padding: 0;
    }

    .video_box {
        width: 100%;
    }

}

/*..........Mobile Version*..........*/
div.mbl-video {
    overflow: auto;
    white-space: nowrap;
    width: 100%;
    background-color: #eee;
}

div.mbl-video .item {
    background-color: #fff;
    display: inline-block;
    text-align: center;
    width: 50%;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .24);
    margin: 10px 10px 20px 10px;
    border-radius: 4px;
}

div.item .video-mbl-img {
    width: 100%;
    margin: 10px auto 25px;
}

span.mbl-video-title {
    color: #333;
    width: 100%;
    display: block;
    line-height: 35px;
    border-radius: 0 0 4px 4px;
    font-size:11px;
}

/*Customized scrollbar*/
.mbl-video::-webkit-scrollbar-track {
    background-color: #eee;
}

.mbl-video::-webkit-scrollbar {
    width: 12px;
    background-color: #eee;
}

.mbl-video::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #eee;
}

/****End of Videos Style****/