.detailed, .fullscreen { .video-player__volume__current, .video-player__volume::before { bottom: 27px; } .video-player__volume__handle { bottom: 23px; } } .video-player { @apply relative box-border max-w-full overflow-hidden rounded-[10px] bg-black text-white; direction: ltr; &.editable { @apply rounded-none; height: 100% !important; } &:focus { outline: 0; } video { display: block; z-index: 1; position: relative; } &.fullscreen { width: 100% !important; height: 100% !important; margin: 0; video { max-width: 100% !important; max-height: 100% !important; width: 100% !important; height: 100% !important; outline: 0; } } &--inline { video { object-fit: contain; max-height: 100%; } } &__controls { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; box-sizing: border-box; background: linear-gradient(0deg, #000000d9 0, #00000073 60%, transparent); padding: 0 15px; opacity: 0; transition: opacity 0.1s ease; &.active { opacity: 1; } } &__buttons-bar { display: flex; justify-content: space-between; padding-bottom: 8px; margin: 0 -5px; .video-player__download__icon { color: inherit; } } &__buttons { display: flex; flex: 0 1 auto; min-width: 30px; align-items: center; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; .player-button { display: inline-block; outline: 0; flex: 0 0 auto; background: transparent; padding: 5px 6px; font-size: 16px; border: 0; color: rgba(#fff, 0.75); .svg-icon { width: 20px; height: 20px; } &:active, &:hover, &:focus { color: #fff; } } } &__time { display: inline; flex: 0 1 auto; overflow: hidden; text-overflow: ellipsis; margin: 0 5px; } &__time-sep, &__time-total, &__time-current { font-size: 14px; font-weight: 500; } &__time-current { color: #fff; } &__time-sep { display: inline-block; margin: 0 6px; } &__time-sep, &__time-total { color: #fff; } &__volume { flex: 0 0 auto; display: inline-flex; cursor: pointer; height: 24px; position: relative; overflow: hidden; .no-reduce-motion & { transition: all 100ms linear; } &.active { overflow: visible; width: 50px; margin-right: 16px; } &::before { content: ''; width: 50px; background: rgba(#fff, 0.35); border-radius: 4px; display: block; position: absolute; height: 4px; left: 0; top: 50%; transform: translate(0, -50%); } &__current { @apply bg-accent-500; display: block; position: absolute; height: 4px; border-radius: 4px; left: 0; top: 50%; transform: translate(0, -50%); } &__handle { @apply bg-accent-500; position: absolute; z-index: 3; border-radius: 50%; width: 12px; height: 12px; top: 50%; left: 0; margin-left: -6px; transform: translate(0, -50%); box-shadow: 1px 2px 6px #0003; opacity: 0; .no-reduce-motion & { transition: opacity 100ms linear; } } &.active &__handle { opacity: 1; } } &__link { padding: 2px 10px; a { text-decoration: none; font-size: 14px; font-weight: 500; color: #fff; &:hover, &:active, &:focus { text-decoration: underline; } } } &__seek { cursor: pointer; height: 24px; position: relative; &::before { content: ''; width: 100%; background: rgba(#fff, 0.35); border-radius: 4px; display: block; position: absolute; height: 4px; top: 14px; } &__progress, &__buffer { display: block; position: absolute; height: 4px; border-radius: 4px; top: 14px; } &__progress { @apply bg-accent-500; } &__buffer { background: rgba(#fff, 0.2); } &__handle { @apply bg-accent-500; position: absolute; z-index: 3; opacity: 0; border-radius: 50%; width: 12px; height: 12px; top: 10px; margin-left: -6px; box-shadow: 1px 2px 6px #0003; .no-reduce-motion & { transition: opacity 0.1s ease; } &.active { opacity: 1; } } &:hover { .video-player__seek__handle { opacity: 1; } } } &.detailed, &.fullscreen { .video-player__buttons { .player-button { padding-top: 10px; padding-bottom: 10px; } } } } .media-spoiler-video { background-size: cover; background-repeat: no-repeat; background-position: center; cursor: pointer; margin-top: 8px; position: relative; border: 0; display: block; }