html,
body {
  scroll-behavior: smooth;
}

.static-h5 [class*="opacity--0"] {
  opacity: 1;
}

.static-h5 .static-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.static-h5 .static-reveal.static-revealed {
  opacity: 1;
  transform: translateY(0);
}

.static-h5 .swiper-wrapper {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.static-h5 .swiper-slide {
  flex: 0 0 100%;
  width: 100% !important;
}

.static-h5 .swiper-pagination-bullet {
  cursor: pointer;
}

.static-h5 a,
.static-h5 button {
  -webkit-tap-highlight-color: transparent;
}

.static-h5 a:active,
.static-h5 button:active {
  transform: translateY(1px);
}

.static-static-disabled {
  cursor: default !important;
}

.static-h5.static-device-blocked {
  background: #fff;
  overflow: hidden;
}

.static-h5.static-device-blocked #root {
  display: none;
}

.static-device-gate {
  align-items: center;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 2000;
}

.static-device-gate__panel {
  align-items: center;
  border: 1px solid rgba(255, 107, 0, .18);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(84, 62, 53, .12);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  padding: 26px 22px;
  text-align: center;
  width: 100%;
}

.static-device-gate__title {
  color: #1f232b;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}

.static-device-gate__text {
  color: #69707d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 9px 0 0;
  word-break: keep-all;
}

.static-h5.static-countdown-active #root {
  opacity: .3;
  transition: opacity .25s ease;
}

.static-countdown-overlay {
  align-items: center;
  background: rgba(255, 255, 255, .3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity .25s ease;
  z-index: 1000;
}

.static-countdown-overlay.static-countdown-overlay--done {
  opacity: 0;
  pointer-events: none;
}

.static-countdown {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 107, 0, .2);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(84, 62, 53, .18);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  max-width: calc(100vw - 48px);
  min-height: 142px;
  padding: 24px 20px 22px;
  width: 312px;
}

.static-countdown__spinner {
  animation: static-countdown-spin .85s linear infinite;
  border: 4px solid rgba(255, 107, 0, .18);
  border-top-color: #ff6b00;
  border-radius: 50%;
  height: 42px;
  width: 42px;
}

.static-countdown__message {
  color: #24272f;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 14px;
  max-width: 100%;
  text-align: center;
  word-break: keep-all;
}

.static-countdown__message-main {
  font-size: 14px;
}

.static-countdown__message-sub {
  color: #5f6673;
  font-size: 13px;
  margin-top: 6px;
}

@keyframes static-countdown-spin {
  to {
    transform: rotate(360deg);
  }
}

.static-toast {
  background: rgba(24, 25, 31, .94);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  left: 50%;
  line-height: 18px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  padding: 11px 14px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  width: max-content;
  z-index: 1001;
}

.static-toast.static-toast--open {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .static-h5 .static-reveal,
  .static-h5 .swiper-wrapper,
  .static-toast {
    transition: none;
  }
}
