/*
 * Базовая логика отображения.
 * Ваши существующие стили классов VideoLibrary* можно оставить в шаблоне сайта.
 */
.VideoLibraryPanel {
    display: none;
}

.VideoLibraryPanel.IsActive {
    display: block;
}

.VideoLibrarySlide {
    display: none;
}

.VideoLibrarySlide.IsActive {
    display: block;
}

.VideoLibraryEmpty {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.VideoLibraryEmptyTitle {
    font-size: 20px;
    font-weight: 500;
}

.VideoLibraryEmptyText {
    margin-top: 8px;
    opacity: 0.6;
}
