.BottomRightNav_BottomRightNav {
  position: fixed;
  z-index: 100000000;
  bottom: calc(
    var(--ticker-offset) +
    8px +
    env(safe-area-inset-bottom)
  );
  left: auto;
  right: clamp(18px, 1.2vw, 1.2vw);;
  width: auto;
  max-width: calc(100vw - clamp(32px, 10vw, 56px));
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 0.7vw, 0.7vw);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  animation: BottomRightNav_fadeIn 0.5s ease-in-out 1s forwards;
  mix-blend-mode: normal;
  @media (min-width: 1024px) {
    bottom: calc(
      var(--ticker-offset) +
      clamp(18px, 0.7vw, 0.7vw) +
      env(safe-area-inset-bottom)
    );
    max-width: none;
    font-size: clamp(14px, 0.66vw, 0.66vw);
  }
}
@keyframes BottomRightNav_fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.BottomRightNav_BottomRightNav__creator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 28px;
  padding: 8px 12px;
  border-radius: clamp(4px, 0.3vw, 0.3vw);
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition:
    color 0.1s ease,
    background-color 0.1s ease,
    border-color 0.1s ease;
  width: auto;
  max-width: 100%;
  white-space: normal;
  mix-blend-mode: inherit;
}
.BottomRightNav_BottomRightNav__creator:hover {
  background-color: #f1f1f1;
  border-color: rgba(0, 0, 0, 0.2);
}
.BottomRightNav_BottomRightNav__creatorLogo {
  width: 13px; /*clamp(12px, 0.8vw, 13px);*/
  height: 12px; /*clamp(11px, 0.75vw, 12px);*/
  flex: none;
  background-color: currentColor;
  -webkit-mask: url("../images/usonia.svg") no-repeat center / contain;
  mask: url("../images/usonia.svg") no-repeat center / contain;
}
.BottomRightNav_BottomRightNav__creatorText {
  font-family: var(--font-exposure);
  font-weight: 300;
  font-size: clamp(11px, 0.7vw, 12px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: left;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}
.BottomRightNav_BottomRightNav.BottomRightNav_inverted {
  mix-blend-mode: normal;
}
.BottomRightNav_BottomRightNav.BottomRightNav_inverted
  .BottomRightNav_BottomRightNav__creator {
  mix-blend-mode: normal;
  color: #fff;
  background-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.BottomRightNav_BottomRightNav.BottomRightNav_inverted
  .BottomRightNav_BottomRightNav__creator:hover {
  background-color: #f1f1f1;
}
@media (max-width: 1023px) {
  .BottomRightNav_BottomRightNav {
    --bottom-right-nav-expanded-max: clamp(220px, 90vw, 350px);
    --bottom-right-nav-collapsed-max: clamp(32px, 10vw, 44px);
  }

  .BottomRightNav_BottomRightNav__creator {
    overflow: hidden;
    max-width: var(--bottom-right-nav-expanded-max);
    transition:
      color 0.1s ease,
      background-color 0.1s ease,
      border-color 0.1s ease,
      max-width 0.45s ease,
      padding-right 0.45s ease,
      gap 0.45s ease;
  }

  .BottomRightNav_BottomRightNav__creatorText {
    max-width: 100%;
    transition:
      max-width 0.4s ease,
      transform 0.35s ease,
      opacity 0.3s ease;
  }

  .BottomRightNav_BottomRightNav.BottomRightNav_collapsed
    .BottomRightNav_BottomRightNav__creator {
    max-width: var(--bottom-right-nav-collapsed-max);
    gap: 0;
    padding: 8px;
    min-height: auto;
  }

  .BottomRightNav_BottomRightNav.BottomRightNav_collapsed
    .BottomRightNav_BottomRightNav__creatorText {
    opacity: 0;
    transform: translateX(16px);
    max-width: 0;
    pointer-events: none;
  }

  .BottomRightNav_BottomRightNav.BottomRightNav_expanded
    .BottomRightNav_BottomRightNav__creator {
    max-width: var(--bottom-right-nav-expanded-max);
  }

  .BottomRightNav_BottomRightNav.BottomRightNav_expanded
    .BottomRightNav_BottomRightNav__creatorText {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .BottomRightNav_BottomRightNav__creator {
    transition:
      color 0.1s ease,
      background-color 0.1s ease,
      border-color 0.1s ease !important;
  }

  .BottomRightNav_BottomRightNav__creatorText {
    transition: none !important;
  }
}
.mainpage_container {
  background-color: var(--backgroundColor);
  color: var(--color);
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  min-height: var(--viewport-height);
  padding-bottom: calc(var(--ticker-offset) + env(safe-area-inset-bottom));
}
