* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.player {
  text-align: center;
}

.player:fullscreen .play {
  color: coral;
}

video {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}

video::-webkit-media-controls {
  display:none !important;
}

.is-hidden {
  display: none;
}

.video_controls {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, black 25%, transparent 100%);
}

.video_controls.is-active {
  display: flex;
}

.video_btn {
  padding: 0 8px;
  margin: 0 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.video_controls_center {
  display: flex;
}

.play {
  animation: blink-animation 1.5s steps(5, start) infinite;
  -webkit-animation: blink-animation 1.5s steps(5, start) infinite;
}

.prev,
.next,
.backward,
.forward {
  display: flex;
  align-items: center;
}

.prev svg,
.next svg,
.backward svg,
.forward svg {
  width: 20px;
  margin: 0 4px;
}

.random::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: red;
}

.random.is-active::before {
  background-color: green;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
