.rutube-video-gallery .swiper-cartoon {
    height: 275px;
}

.rutube-video-gallery .swiper-cartoon .swiper-slide a::after {
    content: '';
    width: 50px;
    height: 25px;
    position: absolute;
    background: url('/images/youtube_play_button.svg') no-repeat 50% 50%;
    top: 75px;
    margin-left: 125px;
}

.rutube-video-gallery .swiper-cartoon .swiper-slide img {
    max-height: 225px;
}

/* Кнопки навигации */
.rutube-video-gallery .swiper-custom-button-prev,
.rutube-video-gallery .swiper-custom-button-next {
    position: absolute;
    bottom: 10px;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a01602;
}

.rutube-video-gallery .swiper-custom-button-prev.swiper-custom-button-disabled,
.rutube-video-gallery .swiper-custom-button-next.swiper-custom-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.rutube-video-gallery .swiper-custom-button-prev:after,
.rutube-video-gallery .swiper-custom-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
}

.rutube-video-gallery .swiper-custom-button-prev {
    left: 10px;
    right: auto;
}

.rutube-video-gallery .swiper-custom-button-prev:after {
    content: 'prev';
}

.rutube-video-gallery .swiper-custom-button-next {
    right: 10px;
    left: auto;
}

.rutube-video-gallery .swiper-custom-button-next:after {
    content: 'next';
}

/* Пагинация */
.rutube-video-gallery .swiper-custom-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.rutube-video-gallery .swiper-custom-pagination.swiper-custom-pagination-hidden {
    opacity: 0;
}

.rutube-video-gallery .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #a01602 !important;
    opacity: 0.2;
}

.rutube-video-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background: #a01602 !important;
}

.rutube-video-gallery .swiper-custom-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

/* Исправления для изображений */
.rutube-video-gallery .swiper-cartoon .swiper-slide a::after {
    content: '';
    width: 50px;
    height: 25px;
    position: absolute;
    background: url(/images/youtube_play_button.svg) no-repeat 50% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60px);
    margin-left: 0;
}

.rutube-video-gallery .swiper-slide__image {
    height: 169px;
    width: 300px;
}

.rutube-video-gallery .section__content_role_swiper-video .swiper-slide {
    height: fit-content;
}

.rutube-video-gallery .section__content_role_swiper-video .swiper__video-link {
    width: 100%;
    display: block;
}

.rutube-video-gallery .section__content_role_swiper-video .swiper-slide__image {
    height: auto;
    object-fit: contain;
    width: 100%;
}

.rutube-video-gallery .section__content_role_swiper-video .swiper-cartoon .swiper-slide a::after {
    content: '';
    width: 50px;
    height: 25px;
    position: absolute;
    background: url(/images/youtube_play_button.svg) no-repeat 50% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .rutube-video-gallery .swiper-slide__image {
        height: 100%;
        width: 100%;
    }

    .rutube-video-gallery .swiper-cartoon .swiper-slide a::after {
        transform: translate(-50%, -45px);
    }
}

@media (max-width: 450px) {
    .rutube-video-gallery .section__content_role_swiper-video .swiper-custom-button-prev,
    .rutube-video-gallery .section__content_role_swiper-video .swiper-custom-button-next {
        bottom: 0px;
    }
}