@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  /* override scroll-behavior: smooth from <GlobalStyle>  */
  scroll-behavior: auto !important;
}

body {
  margin: 0;
}

.pre-loading {
  -webkit-animation: fadeIn 0.5s ease-out both;
  animation: fadeIn 0.5s ease-out both;
}

.pre-loading * {
  box-sizing: border-box;
}

.pre-loading\:stack-nav {
  height: 64px;
  border-bottom: 1px solid #f2f2f2;
}

.pre-loading\:pre-roll-banner {
  height: 108px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.pre-loading\:pre-roll-banner__img {
  height: auto;
  max-width: 85%;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  margin-left: 15%;
}

.pre-loading\:pre-roll-banner__gradient {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 256px;
  background-image: linear-gradient(to bottom, #f7f7f7 0%, #fff 100%);
}

.pre-loading\:cta {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
  text-align: center;
  background: #000;
  white-space: nowrap;
  cursor: progress;
  color: #fff;
  padding: 1rem 2.1rem;
  border-radius: 6.5rem;
  position: fixed;
  transition: bottom 0.2s ease-out 0s;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 0;
  font-weight: bold;
  letter-spacing: 0.01em;
  bottom: 1.5rem;
  bottom: max(1.5rem, var(env(safe-area-inset-bottom)));
}

.pre-loading\:cta img {
  height: 0.9375em;
  width: 2.8125em;
}
