/*video player*/

.video-player {
    position: relative;
    height: 100vh;
}

.v-overflow-hidden {
    overflow: hidden;
}

.v-video-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999999;
}

video {
    display: block;
    width: 100%;
    height: 100%;
}


progress {
    vertical-align: baseline;
    width: 100%;
    border-radius: 0;
    bottom: 0;
    position: absolute;
    color: var(--theme-color-2);
    font-size: 12px;
    height: 8px;
    background: rgba(221, 221, 221, .5);


}

progress:hover {
    cursor: pointer;
}

progress::-moz-progress-bar {
    color: var(--theme-color-2);
    background: var(--theme-color-2);
}

progress[value]::-webkit-progress-bar {
    background-color: rgba(221, 221, 221, .5);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
    background-color: var(--theme-color-2);
}

.v-controls {
    position: absolute;
    right: 65px;
    bottom: 70px;
}

#volume-bar {
    transform: rotate(-90deg);
    position: absolute;
    right: -40px;
    bottom: 95px;
    display: none;
}

.play .v-pause, .mute .v-mute {
    visibility: hidden;
}

.play-pause .v-play, .play-mute .v-unmute {
    visibility: hidden;
}

.play-pause .v-pause, .play-mute .v-mute {
    visibility: visible;
    position: relative;
}


#player {
    height: 100%;
}

.v-video-player-top {
    display: none;
}

#btnPlayPause, #btnMute {
    border: none;
    background: unset;
    display: inline-block;
    padding: 0 10px;
}

#btnPlayPause img, #btnMute img {
    position: absolute;
}
#btnPlayPause img {
    right: 30px;
}
