/* video all */
.video-item-image {
    position: relative;
}
.video-item-image > div {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.video-item-image > div:hover {
    opacity: 1;
}

.video-item-image {
    width: 100%;
    padding-bottom: 56%;
    background-size: cover;
    background-position: center center;
}
.video-item-name h1 {
    margin: 1rem 0 0 0;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-item-date {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #666;
}
.paginations {
    text-align: center;
    width: 100%;
    margin: 2rem;
}
.item-not-found {
    text-align: center;
    font-size: 1rem;
    margin: 4rem 0;
}
/** end video all */

/* video detail */
/** override **/
.breadcrumb {
    overflow: hidden;
}
/** end override **/

#videoPlayer {
    position: relative;
    /* border: 2px solid red; */
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

#videoPlayer > iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#videoPlayerTop {
    position: absolute;
    z-index: 9;
    background: rgba(255, 0, 0, 0);
    right: 0;
    left: 0;
    top: 0;
    bottom: 55px;
    /* height: 70px; */
    cursor: pointer;
}
#videoPlayerBottom {
    position: absolute;
    z-index: 9;
    background: rgba(255, 0, 0, 0);
    right: 0;
    /* left: 0; */
    bottom: 0;
    height: 32px;
    width: 200px;
    /* left: 0; */
}

.video-detail .name {
    font-size: 1.5rem;
    margin: 1rem 0 0.6rem 0;
    font-weight: 500;
}
.video-detail .date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
}
/* end video detail */
