/*  VIDEO PLAYER CONTAINER
############################### */
.vid-container {
    position: relative;
    padding-bottom: 420px;
    padding-top: 30px; 
    height: 0; 
}
 
.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*  VIDEOS PLAYLIST 
############################### */
.vid-list-container {
    height: 450px;
    overflow: hidden;
}

.vid-list {
    height: 385px;
    overflow: hidden;
}

.vid-item {
    position: relative;
}
.vid-del {
    position: absolute;
    z-index: 999;
    right: 8px;
    color: #FFF;
    top: 8px;
}

.vid-thumb {
    overflow:hidden;
    height: 84px;
}

.vid-thumb img {
    width: 100%;
    position: relative;
    top: -13px;
}

.vid-item .vid-name {
    color: #000;
    font-size: 14px;
    padding-left: 4px;
}
.vid-item .vid-desc {
    color: #000;
    font-size: 12px;
    margin-bottom:10px;
    padding-left: 4px;
}
.vid-item:hover {
    background: #ddd;
    cursor: pointer;
}

.arrows {
    cursor:pointer;
    z-index: 99;
}
.arrows:hover {
    color:#2780e3;
}

.arrowUp {
    cursor:pointer;
    z-index: 99;
}

.arrowDown {
    cursor:pointer;
    z-index: 99;
    
}



