        .ti-angle-left::before {
    content: "\f053";
    font-family: 'fontawesome';
}

.ti-angle-right::before {
    content: "\f054";
    font-family: 'fontawesome';
}

.ti-layout-grid2::before {
    content: "\f84c";
    font-family: 'fontawesome';
}

.ti-zoom-in::before {
    content: "\f00e";
    font-family: 'fontawesome';
}

.ti-zoom-out::before {
    content: "\f010";
    font-family: 'fontawesome';
}

.ti-fullscreen::before {
    content: "\f31e";
    font-family: 'fontawesome';
}

.ti-sharethis::before {
    content: "\f064";
    font-family: 'fontawesome';
}


.ti-more-alt::before {
    content: "\f141";
    font-family: 'fontawesome';
}



.youtube-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.youtube-player {
    flex: 1;
    width: 100%;
}

.youtube-player .video-container {
    padding-bottom: 0 !important;
}

.youtube-player iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: 0;
    position: static;
    border-radius: 10px;
}

.youtube-sidebar {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 80vh;
    overflow-y: auto;
    padding-left: 30px;
}

.youtube-item {
    position: relative;
    cursor: pointer;
    transition: .3s;
    border-radius: 8px;
}

.youtube-item.private-video {
    display: none;
}

.thumb-wrap {
    position: relative;
}
.youtube-item .thumb{
    /*position:absolute;*/
    width: 160px;
    min-width: 160px;
    height: 100%;
    object-fit:cover;
    border-radius: 8px;
    z-index:2;
}

.youtube-item:hover {
    opacity: .85;
}

.info-video {
    display: flex;
    gap: 10px;
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
}

.youtube-item iframe {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 0;
    pointer-events: none;
}

.youtube-item .main-video {
    display: none;
}

.youtube-item.active .info-video {
    background-color: #ddd;
}

.youtube-item.active::before {
    content: "\f04b";
    font-family: 'fontawesome';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    color: #6c6d6f;
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    padding: 1px 4px;
    z-index: 2;
}

.youtube-item .title {
    font-weight: 600;
}

@media(max-width:991px) {

    .youtube-layout {
        flex-direction: column;
    }

    .youtube-sidebar {
        width: 100%;
        padding-left: 20px;
        max-height: none;
    }
    
    .youtube-item.active::before {
        left: -20px;
    }

}
