.video-window {
    display: flex;
    flex-direction: column;

    max-height: 400px;
    background: #1f242a;
    padding: 16px;
    border-radius: 4px;

    box-shadow: 0 5px 10px rgba(0,0,0,.3);
}

.video-window video {
    cursor: pointer;
    max-width: 100%;
    max-height: 80%;
    margin: 0 auto;
}



.video-window .opened-video-playback {
    min-height: 15px;
    position: relative;
    margin-top: 1rem;
    height: 20px;
    background: #2f3b44;
    margin-bottom: 1rem;
    border-radius: 1px;
}

.video-window .opened-video-playback .opened-video-seekable {
    min-height: 15px;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ccd6da;
    cursor: pointer;
}

.video-window .opened-video-playback .opened-video-grabber {
    position: absolute;
    top: -1px;
    bottom: -1px;
    width: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-window .opened-video-playback .opened-video-grabber.opened-video-grabber-start {
    background: #ffffff;
    left: 0;
}

.video-window .opened-video-playback .opened-video-grabber.opened-video-grabber-end {
    background: #ffffff;
    right: 0;
}


.video-window .opened-video-playback .opened-video-grabber img{
    user-drag: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}


.video-window .opened-video-playback .opened-video-progress {
    background:#a5b0b5;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    pointer-events: none;
}


.video-window .opened-video-controls {
    display:flex;
    justify-content:center;
    text-align:center;
}

.video-window .opened-video-controls .opened-video-player-controls button{
    width: 34px;
    margin: 0 .125rem;
}

.video-window .opened-video-controls .opened-video-player-controls .opened-video-play-control {
    background: #2f3b44;
    border: 0;
    color: #a5b0b5;
    padding: .5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-start {
    background: #2f3b44;
    border: 0;
    color: #a5b0b5;
    padding: .5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05em;
}


.video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-start:hover {
    background: lighten(#2f3b44, 10%);
}

.video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-end {
    background: #2f3b44;
    border: 0;
    color: #a5b0b5;
    padding: .5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-end:hover {
    background: lighten(#2f3b44, 10%);
}


@media (max-height: 350px), (max-width: 300px) {
    .video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-start {
        display: none;
    }

    .video-window .opened-video-controls .opened-video-player-controls .opened-video-seek-end {
        display: none;
    }
}


@keyframes useArrowsHintAnnimation {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
  

.use-arrows-popup {
    color: #ffffff;
    background: #000000;
    font-size: 13px;
    height: 15px;
    padding: 1px 5px;
    border-radius: 4px;
    animation-name: useArrowsHintAnnimation;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.use-arrows-popup i {
    font-size: 11px;
}