.video-controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 50vw;
    height: 50px;
    border-radius: 80px;
 
    border: 1px solid #B1ADA6;
    display: flex;
    transform: translateX(-50%);
}


.play-pause {
    width: 40px;
    height: 40px;
    background-image: url(../icons/icon-play.svg);
    background-size: 28px;
    background-position: center;
    cursor: pointer;
    margin: auto 0px auto 10px;
}

.play-pause.playing{
    background-image: url(../icons/icon-pause.svg);
}

.play-pause.pause {
    background-image: url(../icons/video-pause.svg);
}

.progress-bar{
    margin: auto 5px auto 5px;
    position: relative;
    z-index: 999999999;
}

#progress {
    height: .5px;
    width: 100%;
    background: #B1ADA6;
    border-radius: 15px;
    border: none;
    border-radius: 0px;
}
.current-progress {
    position: relative;
}
.current-progress:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #F38B00;
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 0px;
    top: -5px;
}
video {object-fit: cover;width: 100vw;object-position: center;}
 
.video-separator{
    position: relative;
    margin: auto 5px auto 5px;
    height: 35px;
    width:1px;

    border-left: 0.5px solid #B1ADA6;
}


#volume {
 
    background: #B1ADA6;
 
}
.mute-unmute.video {
    width: 40px;
    height: 40px;
    background-image: url(../icons/ico-mute.svg);
    background-size: 20px;
    background-position: center;
    cursor: pointer;
    margin: auto 0px;
}

.volume-down.video {
    width: 40px;
    height: 40px;
    background-size: 20px;
}

.volume-up.video {
    width: 40px;
    height: 40px;
    background-size: 20px;
    margin: auto 5px;
}

.video-controls > div {
    display: flex;
}

.video-controls-main {
    width: 80%;
}

.curent-time {
    font-size: 14px;
    margin: auto;
    color: #D3CFC8;
    margin: auto 15px;
}

div#volume-video {width: 70px;}
.video-controls .play-pause {
    margin-right: 10px;
}


div#volume-video {
    border-bottom: 0.5px solid #B1ADA6!important;
    border: none;
}

#progress .ui-slider-range.ui-corner-all.ui-widget-header.ui-slider-range-min {
    border: 1px solid #f38b00;
}

div#volume-video .ui-slider-range {
    border: 1px solid #d3d3d3;
}

.video-controls.show {
    opacity: 1;
}