* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-size: 1vw;
  font-family: Montserrat, sans-serif;
}

img {
  max-width: 100%;
}

.intro {
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-row-gap: 1em;
  z-index: 2;
  padding: 2em;
  text-align: center;
}

.intro-title {
  color: white;
  text-transform: uppercase;
  font-family: DINCondensed, sans-serif;
  font-size: 5em;
  cursor: pointer;
  opacity: 0;
}

.intro-description {
  color: white;
  font-size: 1.1em;
  text-align: center;
  width: 50%;
  cursor: pointer;
  opacity: 0;
}

.app {
  height: 100%;
  background-color: #000;
}

.hs-wrapper {
  justify-content: center;
  align-items: center;
  display: flex !important;
}

.hs-text {
  color: #f7f7f7;
  pointer-events: none;
  transition: opacity 0.4s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 25em;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
}

.hs-wrapper.hovered .hs-text {
  opacity: 1;
}

.hs-title {
  position: relative;
  display: flex;
  justify-content: center;
}

.hs-title .hs-title_txt {
  font-family: DINCondensed, sans-serif;
  font-size: 3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hs-desc {
  text-align: center;
}

.hs {
  font-family: Roboto, sans-serif;
  display: flex;
  flex: 0 0 auto;
}

.lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hidden {
  pointer-events: none;
  opacity: 0;
}

.zoom {
  position: fixed;
  right: 1.4em;
  top: 0;
  bottom: 0;
  width: 2.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.4s linear;
}

.zoom-in, .zoom-out {
  height: 2.8em;
  pointer-events: auto;
  cursor: pointer;
}

.zoom-out {
  margin-top: -1px;
}

.sound {
  position: fixed;
  right: 1.4em;
  bottom: 1.4em;
  width: 2.8em;
  height: 2.8em;
  cursor: pointer;
  transition: opacity 0.4s linear;
  z-index: 1;
}

.close-video {
  position: fixed;
  right: 1.4em;
  top: 1.4em;
  width: 2.8em;
  height: 2.8em;
  cursor: pointer;
  transition: opacity 0.4s linear;
  z-index: 1;
}

.subs-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  pointer-events: none;
}

.subs {
  width: 70%;
  max-width: 600px;
  text-align: center;
  color: #f7f7f7;
  padding: 10px 0;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 2px 1px black;
  margin-bottom: 1em;
}

.controls {
  z-index: 20;
  width: 100%;
  height: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  transition: opacity 0.2s;
}

.controls.controls__off {
  opacity: 0;
  pointer-events: none;
}

.playback {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.playback > div {
  cursor: pointer;
}

.playback__time, .playback__play {
  width: 3em;
  height: 3em;
}

.timeline {
  width: 50em;
  height: 3px;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  align-items: center;
  display: flex;
  position: relative;
}

.timeline__fill {
  width: 0;
  height: 100%;
  background-color: orange;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.timeline__fill_ease {
  transition: width 300ms linear;
}

.timeline__dot {
  width: 1em;
  height: 1em;
  background-color: white;
  border-radius: 100%;
  cursor: pointer;
}

.timeline__timer {
  width: 6em;
  justify-content: center;
  display: flex;
}

.timeline__txt {
  font-size: 1em;
  color: white;
}

.timeline__line {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: flex;
  align-items: center;
}

.loading-container {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  left: 0;
  align-items: center;
  z-index: 123;
}

.loading {
  width: 2.8em;
  height: 2.8em;
}

@media screen and (max-width: 991px) {
  .zoom {
    right: 2em;
    width: 5em;
  }
  .zoom-in, .zoom-out {
    height: 5em;
  }
  .sound {
    right: 2em;
    bottom: 2em;
    width: 5em;
    height: 5em;
  }
  .close-video {
    right: 2em;
    top: 2em;
    width: 5em;
    height: 5em;
  }
  .subs {
    width: 60%;
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .hs-text {
    width: 40em;
  }
  .hs-title .hs-title_txt {
    font-size: 4.5em;
  }
  .hs-desc {
    font-size: 2em;
  }
  .controls {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }
}
@media screen and (max-width: 479px) {
  body {
    font-size: 2vw;
  }
  .intro-description {
    width: 80%;
    font-size: 1.5em;
  }
  .controls {
    grid-row-gap: 8em;
  }
  .playback__time, .playback__play {
    width: 4em;
    height: 4em;
  }
  .timeline {
    width: 40em;
  }
  .timeline__dot {
    width: 1.5em;
    height: 1.5em;
  }
  .timeline__timer {
    width: 8em;
  }
  .timeline__txt {
    font-size: 1.4em;
  }
}
@font-face {
  font-family: "DINCondensed";
  src: url("../../fonts/DINCondensed-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINCondensed";
  src: url("../../fonts/DINCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/*# sourceMappingURL=app.css.map */
