@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

html,body
{
    padding: 0px;
    margin: 0px;
    background-color: #000000;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;  
    
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    /* -moz-user-select: none; */
    -ms-user-select: none;
    user-select: none;  
}

.playerControll
{
    max-height: 26px;
    max-width: 25px;
    padding-top: 17px;
    padding-bottom: 15px;
    padding-left:5px;
    padding-right: 5px;
    cursor: pointer;
}
    
.scroller 
{
    width:25px;
    height:25px;
    position: absolute;
    left:50%;
    top: 50%;
    transform: translateY(-50%);
    /* border-radius: 50%; */
    background-color: transparent;
    opacity: 0.9;
    pointer-events: auto;
    cursor: pointer;
    z-index: 90003;
}    

.scroller:before, .scroller:after {
    content: " ";
    display: block;
    width:2px;
    height:50vh;
    position: absolute;
    left: calc(50% - 2px);
    z-index: 30;
    transition: 0.1s;
}    
    
.scroller:before {
    top: calc(100% + 10px);
    background: #fff;
}
   
.scroller:after {
    bottom: 100%;
    background: #fff;
} 
    
.scroller__thumb {
    border:2px solid white;
    border-radius: 50%;
    width:30px;
    height:30px;
    padding: 8px;
    margin-left: -7px;
} 
    
    
.video_progress_bar 
{
    width: 100%;
    /* background-color: #4c4c4c; */
    height: 4px;
    position: absolute;
    left: 0px;
    top: calc(100% - 34px);
} 
    
input[type="range"] {
    width: 100%;
    height:4px;
    padding: 0;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    background: white;
}

/*

/*Chrome
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width:100%;
      -webkit-appearance: none;
      background-color: #FFFFFF;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #13bba4;
      margin-top: -1px;
    }
    
    input[type='range']::-webkit-slider-thumb {
      width: 20px;
      -webkit-appearance: none;
      height: 10px;
      cursor: ew-resize;
      background: #0A69EC;
      box-shadow: -8000px 0 0 8000px #43e5f7;
    }

}
/** FF
input[type="range"]::-moz-range-progress {
background-color: #43e5f7;
 height: 10px;    
}
input[type="range"]::-moz-range-track {  
  background-color: #FFFFFF;
}
/* IE
input[type="range"]::-ms-fill-lower {
  background-color: #43e5f7; 
height: 10px;    
}
input[type="range"]::-ms-fill-upper {  
  background-color: #FFFFFF;
}

*/




.video-mover {
    width: 100%;
    /* margin: 7px 0px 0px 15px; */
    margin: 7px 0px 0px 0px;
    background-color: #404040;
}
    
    
    
.video-container
{
    width:200px; 
    border:0px solid red; 
    position: absolute;
    /* min-width: 260px; */
    min-width: 200px;
    background: #00000;
    height:auto; 
    max-height:100vh;
    overflow: hidden;
}
 
.after-video
{
    width:100%; 
    border:0px solid yellow; 
    position: relative; 
    float:left; 
    z-index: 90001;
    max-height:100vh;
}
    
.before-video
{
    width:100%; 
    clip-path: inset(0% 50% 0% 0%); 
    border:0px solid green; 
    position: absolute; 
    left:0px; 
    top: 0px; 
    z-index: 90002;
    max-height:100vh;
}
    
.video-controll-bar
{
    position:absolute; 
    text-align:left; 
    width:100%; 
    opacity: 0.5; 
    bottom:0px; 
    height: 66px; 
    background:black; 
    z-index: 90003;
}
  
.video-controll-holder
{
    position:absolute; 
    text-align:left; 
    width:100%;  
    bottom:0px; 
    height: 66px;  
    z-index: 90004;
}

.timer-font
{
    color: #ffffff; 
    margin-left:20px; 
    position: relative; 
    bottom:20px; 
    font-size:22px;
}

.after-text
{
    position: absolute;
    top: 30px;
    left: calc(75% - 25px);
    z-index: 90003;
    color: white;
    opacity: 0.4;    
}

.before-text
{
    position: absolute;
    top: 30px;
    left: calc(25% - 25px);
    z-index: 90003;
    color: white;
    opacity: 0.4;    
}

.watermark
{
    position: absolute; 
    left:50%;
    top: calc(100% - 120px);
    z-index: 90002;
    color: #fff; 
    opacity: .7; 
    font-size: 16px; 
    font-family: fantasy;
}
.watermark img
{
    max-width: 400px;
    margin-left: -200px;
}    
 


@media screen and (max-width: 500px) {
   
.playerControll
{
    max-height:15px;
    padding-top: 17px;
    padding-bottom: 15px;
    padding-left:5px;
    padding-right: 5px;
    cursor: pointer;
    
}
    
.scroller:before {
    top: 100%;
    background: #fff;
}    
    
.timer-font
{
    color: #ffffff; 
    margin-left:5px; 
    position: relative; 
    bottom:17px; 
    font-size:16px;
}    
    
.video-controll-bar
{
    position:absolute; 
    text-align:left; 
    width:100%; 
    opacity: 0.5; 
    bottom:0px; 
    height:26px; 
    background:black; 
    z-index: 90003;
}
  
.video-controll-holder
{
    position:absolute; 
    text-align:left; 
    width:100%;  
    bottom:0px; 
    height:37px; 
    z-index: 90004;
}      
    
.scroller__thumb {
    border: 2px solid white;
    border-radius: 50%;
    width:20px;
    height:20px;
    padding: 8px;
    margin-left:-1px;
} 
    
.watermark
{
    position: absolute; 
    right:20px; 
    top: calc(50% - 10px); 
    z-index: 999999;
    color: #fff; 
    opacity: .5; 
    font-size: 12px; 
    font-family: fantasy;
} 
.watermark img
{
    max-width: 100px;
    max-width: 52px;
}
    
}


@media screen and (max-width:350px) {
 
/*    
.timer-font
{
    color: #ffffff; 
    margin-left:5px; 
    position: relative; 
    bottom:17px; 
    font-size:16px;
    display: none;
}
*/
    
.timer-font {
    color: #ffffff;
    margin-left: 107px;
    position: relative;
    bottom: 17px;
    font-size: 12px;
    display: block;
    width: 100px;
    margin-top: -17px;
}       
  
.watermark
{
    position: absolute; 
    right:20px; 
    top: calc(50% - 10px); 
    z-index: 999999;
    color: #fff; 
    opacity: .5; 
    font-size: 8px; 
    font-family: fantasy;
} 
.watermark img
{
    max-width: 70px;
    max-height: 36px;
}    
  
.scroller__thumb {
    border:2px solid white;
    border-radius: 50%;
    width:8px;
    height:8px;
    padding:6px;
    margin-left:0px;
} 
    
.scroller:before {
    top:90%;
    background: #fff;
}  
    
    
}


