body,
html {
  background-color: black;
}

.player {
  max-width: 1920px;
  width: 100%;
  position: relative;
  font-size: 0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 768px) {
  .player {
    width: auto;
    height: 100vh;
  }
}

/* This css is only applied when fullscreen is active. */
.player:-webkit-full-screen {
  max-width: none;
  width: 100%;
}
.player:-ms-fullscreen {
  max-width: none;
  width: 100%;
}
.player:fullscreen {
  max-width: none;
  width: 100%;
}

.player:-webkit-full-screen {
  max-width: none;
  width: 100%;
}

.player__video {
  height: 100%;
  margin-left: 50vw;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.player__button {
  width: 96px;
  height: 96px;
  background: url(../images/home/icn_Play_Controller_play_96.png) center/contain no-repeat;
  border: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.player__button.stop {
  opacity: 0;
}
.player__button::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 165, 0, 0);
  display: block;
}

.player__controls {
  position: fixed;
  right: 45px;
  bottom: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2147483648;
}
@media (max-width: 767px) {
  .player__controls {
    right: 24px;
    bottom: 75px;
  }
}

.fullscreen-btn {
  border: none;
  width: 33px;
  height: 33px;
  background: url(../images/home/icn_Play_Controller_screen_full_44.png) center/contain no-repeat;
}
.fullscreen-btn.active {
  background: url(../images/home/icn_Play_Controller_screen_shrink_44.png) center/contain no-repeat;
}

.volume-btn {
  margin-bottom: 30px;
  border: none;
  width: 33px;
  height: 33px;
  background: url(../images/home/icn_Play_Controller_voice_mute_44.png) center/contain no-repeat;
}
.volume-btn.active {
  background: url(../images/home/icn_Play_Controller_voice_open_44.png) center/contain no-repeat;
}

@media (max-width: 767px) {
  *::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
  }

  *::--webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
  }

  *::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
  }
}