html {
  height: auto;
}

:root {
  --animation-default-fast: 0.4s cubic-bezier(0.425, 0, 0, 1);
  --animation-default: 0.8s cubic-bezier(0.425, 0, 0, 1);
  --animation-default-speedup: 0.175s ease;
}

/* -- Global -- */

/* @media (min-width: 990px) {
        :root {
          --size: 1600;
        }
      
        html {
          height: auto !important;
          -ms-overflow-style: none;
          scrollbar-width: none;
          font-size: calc(15.8 * 100vw / var(--size));
          -webkit-text-size-adjust: none;
          -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }
      } */

/* -- Media -- */

@media only screen and (max-width: 1900px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}

/* -- Keyframe Animations -- */

@keyframes marquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marqueeRev {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 991px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes marqueeRev {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
}

/**/

[elem="video-box"] {
}

[elem="video-box"] .play {
  display: block;
}

[elem="video-box"] .pause {
  display: none;
}

[elem="video-box"] .muted {
  display: block;
}

[elem="video-box"] .unmuted {
  display: none;
}

[elem="video-box"].is--muted {
}

[elem="video-box"].is--muted .muted {
  display: none;
}

[elem="video-box"].is--muted .unmuted {
  display: block;
}

[elem="video-box"].is--play {
}

[elem="video-box"].is--play .pause {
  display: block;
}

[elem="video-box"].is--play .play {
  display: none;
}
