.pace {
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 60%;
  left: 3%;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  z-index: 10001;
}

.pace .pace-progress {
  transform: none !important;
  text-align: center;
}

.pace .pace-progress::after {
  content: attr(data-progress-text);
  display: block;
  font-weight: 100;
  font-size: 5em;
  font-family: "Helvetica Neue", "Yu Gothic", "Meiryo", sans-serif;
  color: white;
}

.pace.pace-inactive {
  display: none;
}

.video-loading {
  position: fixed;
  inset: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20%;
  z-index: 9999;
}
.video-loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: none !important;
}
.video-loading .helicopter {
  position: relative;
}
.video-loading .helicopter .helicopter--body {
  width: 140px;
  height: 120px;
  background: #444;
  border-radius: 20px;
  position: relative;
  margin: auto;
}
.video-loading .helicopter .helicopter--body .mirror {
  background: #111;
  height: 60px;
  width: 93px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 50px;
}
.video-loading .helicopter .helicopter--body .body__strip {
  height: 10px;
  width: 390px;
  background: yellow;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.video-loading .helicopter .helicopter--body .heli-foot-container .front-foot,
.video-loading .helicopter .helicopter--body .heli-foot-container .rear-foot {
  height: 20px;
  width: 15px;
  background: #999;
  position: absolute;
  top: 100%;
}
.video-loading .helicopter .helicopter--body .heli-foot-container .front-foot {
  left: 30%;
}
.video-loading .helicopter .helicopter--body .heli-foot-container .rear-foot {
  right: 20%;
}
.video-loading .helicopter .helicopter--body .heli-foot-container .foot {
  height: 10px;
  width: 240px;
  background: #999;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-48%, 0);
}
.video-loading .helicopter .helicopter--body .helicopter--top {
  background: #666;
  height: 30px;
  width: 15px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
.video-loading .helicopter .helicopter--body .helicopter--top .top-blade {
  background: black;
  width: 400px;
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  animation: topbladespinning 0.05s infinite linear alternate;
}
.video-loading .helicopter .helicopter--body .helicopter--tail {
  background: #444;
  width: 200px;
  height: 35px;
  position: absolute;
  left: 95%;
  margin: auto;
  bottom: 0;
  top: 0;
}
.video-loading .helicopter .helicopter--body .helicopter--tail::before, .video-loading .helicopter .helicopter--body .helicopter--tail::after {
  content: "";
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  background: inherit;
  backface-visibility: visible;
}
.video-loading .helicopter .helicopter--body .helicopter--tail::before {
  transform: skewY(8deg);
  top: -12px;
}
.video-loading .helicopter .helicopter--body .helicopter--tail::after {
  transform: skewY(-8deg);
  bottom: -12px;
}
.video-loading .helicopter .helicopter--body .helicopter--tail .tail-container {
  background: #999;
  height: 70px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.video-loading .helicopter .helicopter--body .helicopter--tail .tail-container .tail-bearing {
  background: black;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.video-loading .helicopter .helicopter--body .helicopter--tail .tail-container .tail-blade {
  background: black;
  height: 100px;
  width: 10px;
  position: absolute;
  z-index: 2;
  top: -20%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: tailbladespinning 0.09s linear infinite;
}
@media screen and (max-width: 600px) {
  .video-loading {
    padding-left: 5%;
  }
  .video-loading .body__strip {
    width: 260px !important;
  }
  .video-loading .helicopter--tail {
    width: 170px !important;
  }
}

@keyframes topbladespinning {
  from {
    width: 400px;
  }
  to {
    width: 20px;
  }
}
@keyframes tailbladespinning {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pace .pace-progress[data-progress-text]::after {
  display: none !important;
}/*# sourceMappingURL=loader.css.map */