@media only screen and (max-device-width: 811px) {
  .mobile-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: white;
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
  }

  .mobile-menu-open-button {
    padding: 0;
    border: none;
    -webkit-appearance: none;
    background: transparent;
  }

  .title-mobile {
    font-size: 27px;
    font-weight: 500;
    line-height: 40px;
    display: inline-block;
    text-decoration: none;
    color: var(--color-black);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
  }

  .mobile-menu-hamburger {
    width: 27px;
    height: 20px;
  }
}

@media only screen and (min-device-width: 812px) {
  .mobile-header {
    display: none;
  }
}
