.video-player_tabs {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    overflow: scroll;
    scrollbar-width: none;
    margin-bottom: 20px;
}

.video-player_tabs::-webkit-scrollbar {
    width: 0;
}

.video-player_tabs .vd-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 30px;
    cursor: pointer;
    font-size: 14px;
    background-color: #e2e2e2;
    text-wrap: nowrap;
}

.cover-wrapper {
    position: relative;
    z-index: 100;
}

.cover-wrapper.__hidden {
    display: none;
}

.video-iframe {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}
.video-iframe iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
@media screen and (max-width: 480px) {
    .page_player {
        height: 215px!important;
    }
}

@media screen and (max-width: 420px) {
    .page_player {
        height: 190px!important;
    }
}


@media screen and (max-width: 390px) {
    .page_player {
        height: 180px!important;
    }
}

.video-player_tabs .vd-tab:hover,
.video-player_tabs .vd-tab.__active {
    background-color: #2980b9;
    color: #fff;
}

#layout header {
    margin-bottom: 1px;
}