@charset "utf-8";

:root { --bottomNavHeight: 66px; font-family: var(--font-family-base); font-size: var(--font-size-base); }

@supports (height: env(safe-area-inset-bottom)) {
  :root { --bottomNavHeight: calc(66px + env(safe-area-inset-bottom)); }
}

@media (min-width: 768px) {
  :root { --bottomNavHeight: 86px; }
  @supports (height: env(safe-area-inset-bottom)) {
  :root { --bottomNavHeight: calc(86px + env(safe-area-inset-bottom)); }
}
}