.video-player__media_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: var(--bw-white)
}

.video-player__media_description {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 11;
    flex-direction: column;
    align-items: start;
    gap: 3%;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.05) 10.11%, #000 72.82%);
    width: 100%;
    height: 100px;
    padding: 8% 5%;
}

.video-player__media_description.hidden {
    display: none;
}

.video-player__media_description time {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--bw-white);
}

.video-player {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    max-width: 904px;
    width: 100%;
    max-height: 508px;

}

.video-player video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;

}

.video-player__play-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 100%;
    overflow: hidden;
}
.video-player__play-btn svg {
    width: 100%;
    height: 100%;
}
.video-player__play-btn svg circle {
    fill: #1A1A1A;
    pointer-events: none;
}

.video-player__play-btn svg path {
    fill: var(--primary-primary-300);
}

.video-player__play-btn.played {
    display: none;
}

.video-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
}

.video-navigation.hidden {
    display: none;
}
.video-navigation__sound_btn svg {
    pointer-events: none;
}