.appbar {
  display: none;
  max-width: 100%;
  padding: 0.5rem 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-top: 1px solid var(--gray--100);
}
@supports (padding: max(0px)) {
  .appbar {
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    right: max(0px, env(safe-area-inset-right));
    left: max(0px, env(safe-area-inset-left));
  }
}
