/* Video css  start*/

.custom-video {
  border: 1px solid #000000;
  background: #000000;
  height: 100%;
}


.largePlayBtn {
  cursor: pointer;
  position: absolute;
  padding: 26.5px 35px;
  margin: 0;
  top: calc(50% - 26.5px);
  left: calc(50% - 35px);
  border: none;
  outline: none;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-radius: 5px;
}

.card-img-holder .largePlayBtn {
  background: url(../images/large-play-icon.png);
}

/* Video Tag Css Additions */

.custom-video .video-controls .controls-container {
  height: 29px;
  background: #222222;
}

.custom-video .controls-container button {
  opacity: 0.8;
  margin: 0 5px;
}

.custom-video .controls-container button:hover {
  opacity: 1;
}

.custom-video .video-controls {
  position: relative;
}

@media (min-width:992px) {

  .col-lg-2>.custom-video .video-controls .mute-unmute,
  .col-lg-2>.custom-video .video-controls .volume-slider {
    display: none;
  }

  .col-lg-3>.custom-video .video-controls .volume-slider {
    display: none;
  }

  .col-lg-2>.custom-video .controls-container {
    padding: 0;
  }

  .col-lg-2>.custom-video .controls-container .timer {
    margin-left: 0;
  }

  .col-lg-2>.custom-video:fullscreen .video-controls .mute-unmute {
    display: block;
  }

  .col-lg-2>.custom-video:fullscreen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-3>.custom-video:fullscreen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-2>.custom-video:-webkit-full-screen .video-controls .mute-unmute {
    display: block;
  }

  .col-lg-2>.custom-video:-webkit-full-screen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-3>.custom-video:-webkit-full-screen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-2>.custom-video:-moz-full-screen .video-controls .mute-unmute {
    display: block;
  }

  .col-lg-2>.custom-video:-moz-full-screen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-3>.custom-video:-moz-full-screen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-2>.custom-video:-ms-fullscreen .video-controls .mute-unmute {
    display: block;
  }

  .col-lg-2>.custom-video:-ms-fullscreen .video-controls .volume-slider {
    display: block;
  }

  .col-lg-3>.custom-video:-ms-fullscreen .video-controls .volume-slider {
    display: block;
  }
}

.custom-video:fullscreen {
  height: 100%;
  width: 100%;
  padding: 0;
  background: #000;
}

.custom-video:-webkit-full-screen {
  height: 100%;
  width: 100%;
  padding: 0;
  background: #000;
}

.custom-video:-moz-full-screen {
  height: 100%;
  width: 100%;
  padding: 0;
  background: #000;
}

.custom-video:-ms-fullscreen {
  height: 100%;
  width: 100%;
  padding: 0;
  background: #000;
}

.custom-video .video-holder {
  position: relative;
}

.custom-video:fullscreen .video-holder {
  height: calc(100% - 57px);
}

.custom-video:-webkit-full-screen .video-holder {
  height: calc(100% - 57px);
}

.custom-video:-moz-full-screen .video-holder {
  height: calc(100% - 57px);
}

.custom-video:-ms-fullscreen .video-holder {
  height: calc(100% - 57px);
}

.custom-video:fullscreen .video-controls {
  top: 0;
}

.custom-video:-webkit-full-screen .video-controls {
  top: 0;
}

.custom-video:-moz-full-screen .video-controls {
  top: 0;
}

.custom-video:-ms-fullscreen .video-controls {
  top: 0;
}

.custom-video:fullscreen video {
  height: 100%;
}

.custom-video:-webkit-full-screen video {
  height: 100%;
}

.custom-video:-moz-full-screen video {
  height: 100%;
}

.custom-video:-ms-fullscreen video {
  height: 100%;
}

.custom-video .video-controls button {
  background: none;
  border: none;
}

.progress-bar {
  height: 8px;
  background-color: #686868 !important;
  cursor: pointer;
}

.time-bar {
  background: #BE1D3D;
  width: 0;
  height: 100%;
  transition: width 0.2s ease-in-out 0s;
}


.icon-play:before {
  content: url(../images/icon-play.png);
}

.icon-pause:before {
  content: url(../images/icon-pause.png);
}

.icon-mute:before {
  content: url(../images/icon-mute.png);
}

.icon-fullscreen:before {
  content: url(../images/icon-fs.png);
}

.icon-exitfs:before {
  content: url(../images/icon-efs.png);
}

.icon-unmute:before {
  content: url(../images/icon-unmute.png);
}


.icon-cc:before {
  content: url(../images/icon-cc.png);
}

.controls-container .timer {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.thumb-container {
  background-size: cover !important;
  background-position: center !important;
}

.video-holder .largePlayBtn {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-radius: 5px;
}

.video-holder .largePlayBtn:hover {
  background-color: rgba(0, 0, 0, 1) !important;
}

.largePlayBtn.play-state {
  background: url(../images/large-pause-icon.png);
}

.largePlayBtn.pause-state {
  background: url(../images/large-play-icon.png);
}

.custom-video .controls-container {
  padding: 0 10px;
}

.custom-video .controls-container .timer {
  margin-left: 5px;
}

.custom-video .controls-container .timer .current {
  margin-right: 2px;
}

.custom-video .controls-container .timer .duration {
  margin-left: 2px;
}

.custom-video:fullscreen .icon-play:before {
  content: url("../images/icon-play-lg.png");
}

.custom-video:-webkit-full-screen .icon-play:before {
  content: url("../images/icon-play-lg.png");
}

.custom-video:-moz-full-screen .icon-play:before {
  content: url("../images/icon-play-lg.png");
}

.custom-video:-ms-fullscreen .icon-play:before {
  content: url("../images/icon-play-lg.png");
}

.custom-video:fullscreen .icon-pause:before {
  content: url("../images/icon-pause-lg.png");
}

.custom-video:-webkit-full-screen .icon-pause:before {
  content: url("../images/icon-pause-lg.png");
}

.custom-video:-moz-full-screen .icon-pause:before {
  content: url("../images/icon-pause-lg.png");
}

.custom-video:-ms-fullscreen .icon-pause:before {
  content: url("../images/icon-pause-lg.png");
}

.custom-video:fullscreen .icon-mute:before {
  content: url("../images/icon-mute-lg.png");
}

.custom-video:-webkit-full-screen .icon-mute:before {
  content: url("../images/icon-mute-lg.png");
}

.custom-video:-moz-full-screen .icon-mute:before {
  content: url("../images/icon-mute-lg.png");
}

.custom-video:-ms-fullscreen .icon-mute:before {
  content: url("../images/icon-mute-lg.png");
}

.custom-video:fullscreen .icon-unmute:before {
  content: url("../images/icon-unmute-lg.png");
}

.custom-video:-webkit-full-screen .icon-unmute:before {
  content: url("../images/icon-unmute-lg.png");
}

.custom-video:-moz-full-screen .icon-unmute:before {
  content: url("../images/icon-unmute-lg.png");
}

.custom-video:-ms-fullscreen .icon-unmute:before {
  content: url("../images/icon-unmute-lg.png");
}

.custom-video:fullscreen .video-controls .controls-container {
  height: 52px;
  padding: 0 20px !important;
}

.custom-video:-webkit-full-screen .video-controls .controls-container {
  height: 52px;
  padding: 0 20px !important;
}

.custom-video:-moz-full-screen .video-controls .controls-container {
  height: 52px;
  padding: 0 20px !important;
}

.custom-video:-ms-fullscreen .video-controls .controls-container {
  height: 52px;
  padding: 0 20px !important;
}


.custom-video:fullscreen .controls-container button {
  margin-right: 15px;
}

.custom-video:-webkit-full-screen .controls-container button {
  margin-right: 15px;
}

.custom-video:-moz-full-screen .controls-container button {
  margin-right: 15px;
}

.custom-video:-ms-fullscreen .controls-container button {
  margin-right: 15px;
}

.custom-video:fullscreen .controls-container button.fullscreen {
  margin-right: 0;
}

.custom-video:-webkit-full-screen .controls-container button.fullscreen {
  margin-right: 0;
}

.custom-video:-moz-full-screen .controls-container button.fullscreen {
  margin-right: 0;
}

.custom-video:-ms-fullscreen .controls-container button.fullscreen {
  margin-right: 0;
}

.custom-video:fullscreen .controls-container .timer {
  font-size: 16px;
  margin-left: 5px !important;
}

.custom-video:-webkit-full-screen .controls-container .timer {
  font-size: 16px;
  margin-left: 5px !important;
}

.custom-video:-moz-full-screen .controls-container .timer {
  font-size: 16px;
  margin-left: 5px !important;
}

.custom-video:-ms-fullscreen .controls-container .timer {
  font-size: 16px;
  margin-left: 5px !important;
}

@media (max-width: 576px),
(max-height: 576px) and (orientation: landscape) {
  .custom-video {
    position: relative;
  }

  .custom-video .video-controls button {
    padding: 5px;
  }

  .custom-video:fullscreen .video-controls {
    position: unset;
  }

  .custom-video:-moz-full-screen .video-controls {
    position: unset;
  }

  .custom-video:-ms-fullscreen .video-controls {
    position: unset;
  }

  .custom-video:-webkit-full-screen .video-controls {
    position: unset;
  }

  .custom-video video {
    max-height: 100vh;
    padding-bottom: 30px;
  }

  .custom-video .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .largePlayBtn {
    top: calc(50% - 42.5px);
  }
}

.custom-video .volume-slider {
  height: 8px;
  width: 75px;
  background: #606060;
  position: relative;
  top: -1px;
  margin-right: 15px;
  cursor: pointer;
  margin-left: -5px;
}

.custom-video .volume-filled {
  width: 100%;
  height: 100%;
  transition: width 0.2s ease-in-out;
  background: #fff;
  opacity: 0.85;
}

.popup-video {
  height: auto;
}


.popup-video:fullscreen .icon-cc:before {
  content: url("../images/icon-cc-lg.png");
}

.popup-video:-webkit-full-screen .icon-cc:before {
  content: url("../images/icon-cc-lg.png");
}

.popup-video:-moz-full-screen .icon-cc:before {
  content: url("../images/icon-cc-lg.png");
}

.popup-video:-ms-fullscreen .icon-cc:before {
  content: url("../images/icon-cc-lg.png");
}


.cc-dropdown {
  inset: auto 30px 102% auto;
  overflow: hidden auto;
  max-height: 120px;
  padding: 0px;
  margin: 2px 0px 0px;
  list-style: none;
  box-shadow: 0px 5px 10px;
  background: #222222;
  opacity: 0.85;
  transition: 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cc-dropdown .langOpt {
  color: #999999;
  padding: 3px 10px;
  font-size: 12px;
  cursor: pointer;
}

.cc-dropdown .langOpt:hover,
.cc-dropdown .langOpt.active {
  color: #fff;
}

.cc-dropdown .divider {
  height: 1px;
  border-bottom: 3px solid rgba(70, 70, 70, 0.5);
}

.popup-video:fullscreen .cc-dropdown {
  max-height: none;
}

.popup-video:-webkit-full-screen .cc-dropdown {
  max-height: none;
}

.popup-video:-moz-full-screen .cc-dropdown {
  max-height: none;
}

.popup-video:-ms-fullscreen .cc-dropdown {
  max-height: none;
}

.popup-video:fullscreen .cc-dropdown .langOpt {
  padding: 8px 15px;
  font-size: 18px;
}

.popup-video:-webkit-full-screen .cc-dropdown .langOpt {
  padding: 8px 15px;
  font-size: 18px;
}

.popup-video:-moz-full-screen .cc-dropdown .langOpt {
  padding: 8px 15px;
  font-size: 18px;
}

.popup-video:-ms-fullscreen .cc-dropdown .langOpt {
  padding: 8px 15px;
  font-size: 18px;
}

@media (max-width: 576px),
(max-height: 576px) and (orientation: landscape) {
  .popup-video {
    position: relative;
  }

  .popup-video .video-controls button {
    padding: 5px
  }

  .popup-video .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    color: #fff;
    opacity: 0.8;
    z-index: 1;
  }

  .popup-video:fullscreen .video-controls {
    position: unset;
  }

  .popup-video:-moz-full-screen .video-controls {
    position: unset;
  }

  .popup-video:-ms-fullscreen .video-controls {
    position: unset;
  }

  .popup-video:-webkit-full-screen .video-controls {
    position: unset;
  }

  .popup-video video {
    max-height: 100vh;
    padding-bottom: 30px;
  }

  .popup-video .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

   .video-modal .modal-content {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .video-modal .modal-dialog {
    width: 100%;
    margin: 0;
  }

  .cc-dropdown {
    inset: auto 0 102% auto;
  }
}
/*Video css end*/