.mobile-menu-toggle,.mobile-nav-sheet,.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 700px) {
  .main {
    padding-bottom: 78px;
  }

  .mobile-menu-toggle {
    position: fixed;
    z-index: 3;
    right: 16px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #d8e6df;
    border-radius: 22px;
    background: #173f3c;
    color: #fff;
    padding: 11px 16px;
    box-shadow: 0 5px 15px #183d3a33;
    font: 700 12px "DM Sans";
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    font-size: 16px;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 4;
    inset: 0;
    background: #173e3c55;
  }

  .mobile-nav-backdrop.open {
    display: block;
  }

  .mobile-nav-sheet {
    position: fixed;
    z-index: 5;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 15px 35px #183d3a33;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: .18s;
  }

  .mobile-nav-sheet.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0ec;
    padding: 1px 2px 11px;
    color: #315e56;
  }

  .mobile-nav-head button {
    border: 0;
    background: transparent;
    color: #788985;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding-top: 11px;
  }

  .mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #e4eae6;
    border-radius: 7px;
    background: #fbfcfa;
    color: #667873;
    padding: 11px;
    text-align: left;
    font: 700 11px "DM Sans";
    cursor: pointer;
  }

  .mobile-nav-item span {
    color: #50806f;
    font-size: 18px;
  }

  .mobile-nav-item.active {
    border-color: #a9cdbc;
    background: #edf7f1;
    color: #34725d;
  }

  .toast {
    bottom: 70px;
  }
}
