



/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


.vp-container .livestream-red-dot {
  margin-left: 0px;
  height: 7px;
  width: 7px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
/*  animation: blinker 1s linear infinite;*/
}

.vp-container .red {
  background-color: red;
}

.vp-container {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*buffer icon*/
.vp-container .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display: inline-block;
}

.vp-container .loader-div {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*buffer icon*/

.vp-container, .video-controls, .video-timer, .options{
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.vp-container, .video-player-sdk {
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-player-sdk {
  text-align: center;
}

.vp-container .vertical-center {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-player-sdk p#video-error-msg {
  color: white;
  font-family: sans-serif;
}

.vp-container.fullscreen {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  z-index: 5;
}

.vp-container #video-player-header {
  top: 0px;
  position: absolute;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  text-align: left;
}

.vp-container #video-player-header span {
  font-family: 'Open Sans';
  margin: 0 0 0 10px;
}

.vp-container #video-player-header span a {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: white;
}

.vp-container .wrapper{
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  bottom: 0px;
  transition: all 0.08s ease;
}

/*.show {
  display: block;
}*/

.vp-container.show-controls .wrapper{
/*  margin: 0;*/
  opacity: 1;
  bottom: 0;
  transition: all 0.13s ease;
}
.vp-container .wrapper::before{
  content: "";
  bottom: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: calc(100% + 30px);
  pointer-events: none;
/*  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);*/
}
.vp-container .video-timeline-holder {
  position: relative;
  padding: 25px 0 0 0;
  background: transparent;
}
.vp-container .video-timeline{
  height: 7px;
  width: 98%;
  margin: auto;
  cursor: pointer;
}
.vp-container .video-timeline .progress-area{
  height: 3px;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}
.vp-container .progress-area span{
  position: absolute;
  left: 50%;
  top: -25px;
  font-size: 14px;
  color: #fff;
  pointer-events: none;
  transform: translateX(-50%);
}
.vp-container .progress-area .progress-bar{
  width: 0%;
  height: 100%;
  position: absolute;
  background: #4a4a4a;
  z-index: 1;
}
.vp-container .progress-area .buffered-bar{
  width: 0%;
  height: 100%;
  position: absolute;
  background: #797979;
}
:root {
  --check-secondary: #4a4a4a;
}
.vp-container .progress-bar::before{
  content: "";
  right: 0;
  top: 50%;
  height: 13px;
  width: 13px;
  position: absolute;
  border-radius: 50%;
  background: var(--check-secondary);
  transform: translateY(-50%);
}

.vp-container .progress-bar::before, .buffered-bar::before, .progress-area span{
  display: none;
}
.vp-container .video-timeline:hover .progress-bar::before, .buffered-bar::before,
.vp-container .video-timeline:hover .progress-area span{
  display: block;
}
.video-controls{
  list-style-type: none;
  overflow: visible;
  background-color: transparent;
  box-shadow: none;
}
.vp-container .wrapper .video-controls{
  padding: 2px 20px 5px;
}
.vp-container .video-controls .options{
  width: 100%;
}
.vp-container .video-controls .options:first-child{
  justify-content: flex-start;
}
.vp-container .video-controls .options:last-child{
  justify-content: flex-end;
}
.vp-container .options button{
/*  margin: 0;*/
  margin: 0;
  padding: 0;
  height: 40px;
  width: 40px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background: none;
  color: #efefef;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.vp-container .options button :where(i, span) {
  height: 100%;
  width: 100%;
  line-height: 40px;
}
.vp-container .options button:hover :where(i, span){
  color: #fff;
}
.vp-container .options button:active :where(i, span){
  transform: scale(0.9);
}
.vp-container .options button span{
  font-size: 20px;
}
.vp-container .options input{
  height: 4px;
  margin-left: 3px;
  max-width: 75px;
  accent-color: white;
}
.vp-container .options .video-timer{
  color: #efefef;
  margin-left: 15px;
  font-size: 14px;
}
.vp-container .video-timer .separator{
  margin: 0 5px;
  font-size: 16px;
  font-family: "Open sans";
}
.vp-container .playback-content{
/*  margin: 0;*/
  display: flex;
  position: relative;
}
.vp-container .playback-content .speed-options{
  margin: 0;
  padding: 0;
  position: absolute;
  list-style: none;
  left: -40px;
  bottom: 40px;
  width: 95px;
  overflow: hidden;
  opacity: 0;
  border-radius: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.13s ease;
}

.vp-container .playback-content .speed-options.show {
  opacity: 1;
  pointer-events: auto;
}

.vp-container .speed-options li{
/*  margin: 0;*/
  cursor: pointer;
  color: #000;
  font-size: 14px;
  margin: 2px 0;
  padding: 5px 0 5px 15px;
  transition: all 0.1s ease;
  float: none;
}
.vp-container .playback-content .resolution-options{
  margin: 0;
  padding: 0;
  position: absolute;
  list-style: none;
  left: -40px;
  bottom: 40px;
  width: 95px;
  overflow: hidden;
  opacity: 0;
  border-radius: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.13s ease;
}

.vp-container .playback-content .resolution-options.show {
  opacity: 1;
  pointer-events: auto;
}

.vp-container .resolution-options li{
/*  margin: 0;*/
  cursor: pointer;
  color: #000;
  font-size: 14px;
  margin: 2px 0;
  padding: 5px 0 5px 15px;
  transition: all 0.1s ease;
  float: none;
}
.vp-container .playback-content .video-device-output-options{
  margin: 0;
  padding: 0;
  position: absolute;
  list-style: none;
  left: -100px;
  bottom: 40px;
  width: 180px;
  overflow: scroll;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  opacity: 0;
  border-radius: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.13s ease;
}

.vp-container .playback-content .video-device-output-options::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.vp-container .playback-content .video-device-output-options.show {
  opacity: 1;
  pointer-events: auto;
}

.vp-container .video-device-output-options li{
/*  margin: 0;*/
  cursor: pointer;
  color: #000;
  font-size: 14px;
  margin: 2px 0;
  padding: 5px 0 5px 15px;
  transition: all 0.1s ease;
  float: none;
}
.vp-container .playback-content .audio-device-output-options{
  margin: 0;
  padding: 0;
  position: absolute;
  list-style: none;
  left: -100px;
  bottom: 40px;
  width: 180px;
  max-height: 300px;
  overflow: scroll;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  opacity: 0;
  border-radius: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.13s ease;
}

.vp-container .playback-content .audio-device-output-options::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.vp-container .playback-content .audio-device-output-options.show {
  opacity: 1;
  pointer-events: auto;
}

.vp-container .audio-device-output-options li{
/*  margin: 0;*/
  cursor: pointer;
  color: #000;
  font-size: 14px;
  margin: 2px 0;
  padding: 5px 0 5px 15px;
  transition: all 0.1s ease;
  float: none;
}
.vp-container .video-timer p{
  font-size: 14px;
}
.vp-container .speed-options li:where(:first-child, :last-child){
/*  margin: 0px;*/
}
.vp-container .speed-options li:hover{
  background: #dfdfdf;
}
.vp-container .speed-options li.active{
  color: #fff;
  background: #4a4a4a;
}
.vp-container .speed-options li a{
  display: initial;
  text-align: initial;
  padding: 0px;
  text-decoration: none;
}
.vp-container .resolution-options li:where(:first-child, :last-child){
/*  margin: 0px;*/
}
.vp-container .resolution-options li:hover{
  background: #dfdfdf;
}
.vp-container .resolution-options li.active{
  color: #fff;
  background: #4a4a4a;
}
.vp-container .resolution-options li a{
  display: initial;
  text-align: initial;
  padding: 0px;
  text-decoration: none;
}
.vp-container .video-device-output-options li:hover{
  background: #dfdfdf;
}
.vp-container .video-device-output-options li.active{
  color: #fff;
  background: #4a4a4a;
}
.vp-container .video-device-output-options li a{
  display: initial;
  text-align: initial;
  padding: 0px;
  text-decoration: none;
}
.vp-container .audio-device-output-options li:hover{
  background: #dfdfdf;
}
.vp-container .audio-device-output-options li.active{
  color: #fff;
  background: #4a4a4a;
}
.vp-container .audio-device-output-options li a{
  display: initial;
  text-align: initial;
  padding: 0px;
  text-decoration: none;
}
.vp-container video{
  width: 100%;
}
.vp-container .download-video {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.vp-container .download-video span {
    font-size: 24px;
}










/* media queries for ipads & tablets Portrait and Landscape */
@media (min-width: 700px) and (max-width: 1200px) { 

.vp-container input[type=range]{
  display: none;
}

}










@media screen and (max-width: 699px) {

  .video-player-sdk p#video-error-msg {
    font-size: 3.5vw;
  }


  .vp-container .progress-bar::before{
    height: 10px;
    width: 10px;
  }

  .vp-container .video-timeline-holder {
/*    padding: 15px 0 0 0;*/
  }

  .vp-container .video-timeline{
    height: 3px;
    width: 98%;
    margin: auto;
    cursor: pointer;
  }

  .vp-container #video-player-header {
    height: 47px;
    line-height: 35px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  }

  .vp-container #video-player-header span {
    /*font-family: 'Open Sans';
    float: left;
    margin: 12px 0 0 20px;*/
  }

  .vp-container #video-player-header span a {
    font-size: 3.2vw;
  }
  .video-controls{
/*    margin-top: -25px;*/
  }
  .vp-container .wrapper .video-controls{
    padding: 0px 10px 0px;
  }
  .vp-container .options input, .progress-area span{
    display: none!important;
  }
  .vp-container .options button{
    height: 30px;
    width: 30px;
/*    font-size: 11px;*/
    font-size: 3.1vw; /*play btn, mute btn, full screen btn*/
  }
  .vp-container .options .video-timer{
    margin-left: 5px;
  }
  .vp-container .video-timer .separator{
/*    font-size: 14px;*/
    font-size: 3vw;
    margin: 0 2px;
  }
  .vp-container .options button :where(i, span) {
    line-height: 30px;
  }
  .vp-container .options button span{
/*    font-size: 21px;*/
    font-size: 3.8vw; /*speed btn*/
    margin: 0 0 0 5px;
  }
  .vp-container .options .video-timer, .progress-area span, .speed-options li, .resolution-options li{
/*    font-size: 12px;*/
    font-size: 2.8vw;
  }
  .vp-container .playback-content .speed-options{
    width: 70px;
    left: -30px;
    bottom: 30px;
  }
  .vp-container .speed-options li{
    margin: 1px 0;
    padding: 3px 0 3px 5px;
    font-size: 3.3vw;
  }
  .vp-container .playback-content .resolution-options{
    width: 70px;
    left: -30px;
    bottom: 30px;
  }
  .vp-container .resolution-options li{
    margin: 1px 0;
    padding: 3px 0 3px 5px;
    font-size: 3.3vw;
  }
  .vp-container .video-timer p{
    font-size: 2.8vw;
  }
  .vp-container .right .pic-in-pic{
    display: none;
    margin: 0;
  }
}















@media screen and (max-width: 400px) {

  .vp-container .livestream-red-dot {
  height: 6px;
  width: 6px;
}

  .vp-container #video-player-header {
    height: 44px;
    line-height: 28px;
  }

  .vp-container .options button span{
    margin: 0px 0 0 8px;
  }
  .vp-container .playback-content .speed-options{
    width: 60px;
    left: -10px;
  }
  .vp-container .playback-content .resolution-options{
    width: 60px;
    left: -10px;
  }
}










@media screen and (max-width: 359px) {

  .vp-container #video-player-header {
    height: 42px;
    line-height: 26px;
  }

.vp-container .options button{
    font-size: 3.2vw; /*play btn, mute btn, full screen btn*/
}

.vp-container .options button span{
    margin: 0px 0 0 9.5px;
  }

}