
.video_box_01 { position:relative; padding-top:76px; padding-left:18px; height:540px; }
#videoContainer {
  width: 840px;
  height: 476px;
  padding:0px; 
  border-radius: 0px;
  /*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;
  float:left;
  margin-left:4px;


}
#videoContainer.fullScreen {
  width: 100vw !important;
  height: 70vh !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: 26px !important;
  height: 26px !important;
}
#videoContainer.small .progressBar {
  height: 6px !important;
}
#videoContainer.small .overlay .button {
  width: 50px !important;
  height: 50px !important;
}
#videoContainer.small .time {
  display: none !important;
}
#videoContainer .overlay {
  width: 100%;
  height: 100%;
  
  position: absolute;
  top: 0;
  left: 0;
  z-index:0;
  border-radius: 5px;
}
#videoContainer .overlay .button {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../player/play-button.svg);
  background-size: 100% 100%;
  transform: translate(-50%, calc(-50% - 30px));
  cursor: pointer;
  transition: width 0.2s, height 0.2s;
}
#videoContainer .overlay .button:hover {
  width: 90px;
  height: 50px;
}
#videoContainer #video {
  width: 850px;
  /*height: calc(100% - 30px);*/
  height: 506;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 0px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#videoContainer #video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius:0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
#controls {
  width: 570px;
  height: 28px;
  background: #1A2F7E;
  padding-right: 15px;

  position: absolute;
  left: 350px;

  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  z-index:11;
  -ms-bottom: -20px;
  -webkit-bottom: -0px;
}
 #controls .playButton {
  width: 45px;
  
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
  cursor: pointer;
  transition: all 0.4s;
  border-bottom-left-radius: 5px;
}
#controls .playButton:hover {
 
 
}
#controls .playButton .playPause {
  width: 25px;
  height: 25px;
  background: url(../player/btn_player_off.png);
  background-size: 100% 100%;
}

#controls .playButton .play {
  width: 25px;
  height: 25px;
  background: url(../player/btn_player_off.png);
  background-size: 100% 100%;
}

#controls .playButton .play:hover {
  width: 25px;
  height: 25px;
  background: url(../player/btn_player_on.png);
  background-size: 100% 100%;
}

#controls .playButton .Pause {
  width: 25px;
  height: 25px;
  background: url(../player/btn_mute_off.png);
  background-size: 100% 100%;
}

#controls .playButton .Pause:hover {
  width: 25px;
  height: 25px;
  background: url(../player/btn_mute_on.png);
  background-size: 100% 100%;
}

#controls .playButton .replay {
  width: 25px;
  height: 25px;
  background: url(../player/btn_replay_off.png);
  background-size: 100% 100%;
}

#controls .playButton .replay:hover {
  width: 25px;
  height: 25px;
  background: url(../player/btn_replay_on.png);
  background-size: 100% 100%;
}




#controls .ProgressContainer {
  color: #fff;
  width: calc(100% - 100px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
#controls .ProgressContainer .progressBar {
  width: 100%;
  height: 16px;
  background: #333;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  margin-left:7px;
}
#controls .ProgressContainer .progressBar:hover + .time {
  opacity: 1;
  transform: translateY(0);
}
#controls .ProgressContainer .progressBar .progress {
  width: 0%;
  height: 100%;
  background: #ffd339;
  border-radius: 20px;
}
#controls .ProgressContainer .timer {
  margin: 0 10px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
}
 #controls .ProgressContainer .time {
  width: 80px;
  height: 25px;
  background: #2c7a57;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 5px;
  color: #fff;
  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;
}
 #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 #2c7a57;
}
 #controls .volume {
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-left:-5px;
}
 #controls .playbackRate {
  width: 130px;
  height: 100%;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-left:-5px;
}
/*#controls .volume .icon {
  width: 25px;
  height: 25px;
  background: url(../player/volume.svg);
  background-size: 100% 100%;
  cursor: pointer;
  margin-right: 10px;
}*/

#controls .volume .icon {
  width: 44px;
  height: 22px;
  background: url(../player/btn_sound_on.png);
  cursor: pointer;
  margin-right: 4px;
}

#controls .volume .intensityBar {
  width: 100px;
  height: 10px;
  background: #333;
  border-radius: 20px;
  max-width: 100px;
  overflow: hidden;
  transform-origin: right center;
  cursor: pointer;
  transition: all 0.5s;
}
 #controls .volume .intensityBar .intensity {
  width: 50%;
  height: 100%;
  background: #faf990;
}
#controls .scale {
  width: 55px;
  height:110px;
 
  position:absolute;
  right:-23px;
  top:-200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.4s;
  border-bottom-right-radius: 5px;
}
 #controls .scale:hover {
  /*background: #272727;*/
}
/*#controls .scale .icon {
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
  background: url(../player/expand.svg);
  background-size: 100% 100%;
}*/


#controls .scale .icon {
  width: 55px;
  height: 110px;
  background-size: 100% 100%;
  background: url(../images/btn/btn_scale.png);
  background-size: 100% 100%;
}


