

/* Start:/local/templates/main/components/bitrix/catalog.element/video-banner/style.css?17792934032159*/
.video-banner {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.video-banner video {
    width: 100%;
    height: 540px;
    display: block;
    object-fit: cover;
}

.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06) 0%, rgba(15, 23, 42, 0.28) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-banner.is-playing::after {
    opacity: 0;
}

.video-banner__watch {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #27314a;
    font-family: Onest, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    z-index: 2;
    animation: video-banner-watch-pulse 1.6s ease-in-out infinite;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.video-banner__watch:hover {
    transform: translateX(-50%) translateY(-1px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
}

.video-banner.is-playing .video-banner__watch {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

@keyframes video-banner-watch-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18), 0 0 0 0 rgba(15, 118, 110, 0.34);
    }
    70% {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18), 0 0 0 14px rgba(15, 118, 110, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18), 0 0 0 0 rgba(15, 118, 110, 0);
    }
}

@media (max-width: 768px) {
    .video-banner video {
        height: 250px;
    }

    .video-banner__watch {
        min-width: 128px;
        min-height: 46px;
        padding: 12px 18px;
        bottom: 16px;
        font-size: 15px;
    }
}
/* End */
/* /local/templates/main/components/bitrix/catalog.element/video-banner/style.css?17792934032159 */
