﻿@keyframes shine-skeleton-lines {
    0 {
        background-position: -100px
    }

    40%,100% {
        background-position: 600px
    }
}

.mod__max-w-xl {
    max-width: 1436px;
    margin: auto
}

.cmp-video-spinner {
    --cmp-video-spinner-width: 32px;
    --cmp-video-spinner-icon-play: none;
    --cmp-video-spinner-icon-pause: none
}

.cmp-video-spinner {
    position: absolute;
    max-width: var(--cmp-video-spinner-width);
    aspect-ratio: 1 / 1;
    cursor: pointer
}

.cmp-video-spinner__progress {
    position: relative;
    width: 100%;
    height: 100%
}

.cmp-video-spinner__circle {
    position: relative;
    width: 100%;
    height: 100%
}

.cmp-video-spinner__circle--active {
    z-index: 2
}

.cmp-video-spinner__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    width: 35%;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.cmp-video-spinner--paused .cmp-video-spinner__icon {
    left: 55%;
    background-image: var(--cmp-video-spinner-icon-play)
}

.cmp-video-spinner--playing .cmp-video-spinner__icon {
    background-image: var(--cmp-video-spinner-icon-pause)
}
