/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
a, a:hover, a:focus {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  background: none;
  border: none;
}
#videoContainer {
  width: 100%;
  height: auto;
  background: #343434;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#videoContainer .overlay {
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  border-radius: 5px;
}

#videoContainer .overlay .button {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(play-button.png);
  background-size: 100% 100%;
  transform: translate(-50%, calc(-50% - 30px));
  cursor: pointer;
  transition: width 0.2s, height 0.2s;
}

#videoContainer .overlay .button:hover {
  width: 80px;
  height: 80px;
}

#videoContainer #video {
  width: 100%;
  height: calc(100% - 60px);
  height:70vh;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#videoContainer #video video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit:fill;
  top: 0;
  left: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.video_thumb{
height:120px;
width:100%;	
position:relative;
margin-bottom:0;
padding-bottom:0;
background:#fff;

}
.thumb_inner{
height:120px;
padding-left:60px;	
}

.thumb_inner div{
height:115px; 
width:23.55%;
float:left;
margin-left:3px;
}
.thumb_inner div img{
height:115px; 
width:100%;
cursor:pointer;
border-radius:4px;
}
#videoContainer.fullScreen {
  width: 100vw !important;
  height: 100vh !important;
}

#videoContainer.small .intensityBar { width: 50px !important; }

#videoContainer.small .playButton {
  margin: 0 !important;
  margin-right: 5px !important;
}

#videoContainer.small .timer { display: none !important; }

#videoContainer.small .playPause, #videoContainer.small .volume .icon, #videoContainer.small .scale .icon {
  width: 30px !important;
  height: 30px !important;
}

#videoContainer.small .progressBar { height: 6px !important; }

#videoContainer.small .overlay .button {
  width: 50px !important;
  height: 50px !important;
}

#videoContainer.small .time { display: none !important; }



#videoContainer #controls {
  width: 100%;
  height: 60px;
  background:#2e0304;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
.main_container{position:relative;}
.welcome{
height:40px;
width:100%;
line-height:40px;
text-align:center;
color:#fff;
font-size:14px;
font-family: 'Poppins', sans-serif;
background:#2e0304;
position:absolute;
bottom:-34px;
box-shadow:0px 3px 10px rgba(0,0,0,0.7);
}

#videoContainer #controls .playButton {
  width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.4s;
  border-bottom-left-radius: 5px;
}

#videoContainer #controls .playButton .playPause {
  width: 50px;
  height: 50px;
  background: url(play.png);
  background-size: 100% 100%;
}

#videoContainer #controls .ProgressContainer {
  color: #fff;
  width: calc(100% - 100px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

#videoContainer #controls .ProgressContainer .progressBar {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,0.4);
  background:red;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
}

#videoContainer #controls .ProgressContainer .progressBar:hover + .time {
  opacity: 1;
  transform: translateY(0);
}

#videoContainer #controls .ProgressContainer .progressBar .progress {
  width: 0%;
  height: 100%;
  background:#fff;
  border-radius: 20px;
}

#videoContainer #controls .ProgressContainer .timer {
  margin: 0 10px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
}

#videoContainer #controls .ProgressContainer .time {
  width: 80px;
  height: 25px;
  background: #fff;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 5px;
  color: #232323;
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s, opacity 0.3s;
}

#videoContainer #controls .ProgressContainer .time::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 25px;
  left: 33px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

#videoContainer #controls .volume {
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

#videoContainer #controls .volume .icon {
  width: 50px;
  height: 44px;
  background: url(volume.png);
  background-size: 100% 100%;
  cursor: pointer;
  margin-right: 10px;
}

#videoContainer #controls .volume .intensityBar {
  width: 100px;
  height: 4px;
  background: rgba(0,0,0,0.4);
  box-shadow:inset 1px 2px 3px #000;
  border-radius: 20px;
  max-width: 100px;
  overflow: hidden;
  transform-origin: right center;
  cursor: pointer;
  transition: all 0.5s;
}

#videoContainer #controls .volume .intensityBar .intensity {
  width: 50%;
  height: 100%;
  background: #fff;
}

#videoContainer #controls .scale {
  width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.4s;
  border-bottom-right-radius: 5px;
}
#videoContainer #controls .scale .icon {
  width: 45px;
  height: 45px;
  background-size: 100% 100%;
  background: url(expand.png);
  background-size: 100% 100%;
}

@media only screen and (max-width: 1200px) {
 .thumb_inner{
padding-left:55px;	
} 
}

@media only screen and (max-width: 1100px) {
 .thumb_inner{
padding-left:50px;	
} 
}

@media only screen and (max-width: 1000px) {
 .thumb_inner{
padding-left:40px;	
} 
}

@media only screen and (max-width: 900px) {
 .thumb_inner{
padding-left:33px;	
} 
}
@media only screen and (max-width: 800px) {
 .thumb_inner{
padding-left:28px;	
} 
}
@media only screen and (max-width: 700px) {
 .thumb_inner{
padding-left:24px;	
} 
}

@media only screen and (max-width: 650px) {
 .thumb_inner{
padding-left:20px;	
} 
}

@media only screen and (max-width: 650px) {
 .thumb_inner{
padding-left:20px;	
} 
}

@media only screen and (max-width: 600px) {
 #videoContainer #video {
height:60vh;
}
.video_thumb{
height:100px;
}
.thumb_inner{
height:100px;
padding-left:10px;	
}
.thumb_inner div{
height:90px; 
width:24%;
}
.thumb_inner div img{
height:90px; 
}
}

@media only screen and (max-width: 533px) {
.thumb_inner{
padding-left:7px;	
}
}

@media only screen and (max-width: 500px) {
.thumb_inner{
padding-left:4px;	
}
}

@media only screen and (max-width: 414px) {
.thumb_inner{
padding-left:1px;	
}
}


@media only screen and (max-width: 400px) {
 #videoContainer #video {
height:50vh;
}
.video_thumb{
height:80px;
}
.thumb_inner{
height:80px;
padding-left:1px;	
}
.thumb_inner div{
height:70px; 
width:24%;
}
.thumb_inner div img{
height:70px; 
}
}