.videoContainer {
  /*width: 70vw;*/
  /*height: 65vh;*/
  /*background: #39a072;*/
  margin: 30px auto;
  /*border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);*/
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.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: 15px !important;
  height: 15px !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%;
  background: radial-gradient(circle, rgba(77, 191, 140, 0.9), rgba(41, 115, 82, 0.9));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  border-radius: 5px;
}

.videoContainer .overlay .button {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(https://www.jqueryscript.net/demo/Flat-Responsive-HTML5-Video-Player-With-jQuery-CSS3/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: 90px;
}

.videoContainer .video {
  width: 100%;
  height: calc(100% - 60px);
  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;
  top: 0;
  left: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.videoContainer .controls {
  width: 100%;
  height: 40px;
  background: #152F52;
  /*position: absolute;
  right: 0;
  bottom: 0;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*margin-top: -3px;*/
  /*z-index: 9999;*/
  max-width: 700px;
  text-align:center;
  margin: -2px auto 0 auto;
}

.videoContainer .controls .playButton {
  width: 40px;
  height: 100%;
  /*background: #4dbf8c;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
  cursor: pointer;
  transition: all 0.4s;
  /*border-bottom-left-radius: 5px;*/
}

.videoContainer .controls .playButton:hover { background: .41b682; }

.videoContainer .controls .playButton .playPause {
  width: 25px;
  height: 25px;
  background: url(/Display/images/play.svg);
  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: #39a072;*/
  background: #777777;
  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;*/
  background: #fff;
  border-radius: 20px;
}

.videoContainer .controls .ProgressContainer .timer {
  margin: 0 10px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-weight: 300;
  /*color: #2c7a57;*/
  letter-spacing: 1px;
}

.videoContainer .controls .ProgressContainer .time {
  width: 80px;
  height: 25px;
  background: #6D98D1;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 5px;
  border-color: #6D98D1;
  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;
}

.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 #6D98D1;
}

.videoContainer .controls .volume {
  /*min-width: 60px;*/
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.videoContainer .controls .volume .icon {
  width: 25px !important;
  height: 25px !important;
  background: url(/Display/Images/volume.svg);
  background-size: 100% 100%;
  cursor: pointer;
  margin-right: 10px;
}

.videoContainer .controls .volume .intensityBar {
  min-width: 40px;
  max-width: 50px;
  height: 4px;
  background: #777777;
  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: 20px;
  height: 100%;
  /*background: #4dbf8c;*/
  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:hover { background: #40b27f; }

.videoContainer .controls .scale .icon {
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
  background: url(https://www.jqueryscript.net/demo/Flat-Responsive-HTML5-Video-Player-With-jQuery-CSS3/expand.svg);
  background-size: 100% 100%;
}*/