.site-mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(18, 18, 18, .18);
  border-radius: 12px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  cursor: pointer;
  z-index: 1002;
}

.site-mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.site-mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-menu-toggle.is-floating {
  position: fixed;
  top: 14px;
  right: 14px;
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(14, 14, 12, .34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.site-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-mobile-menu-panel {
  width: min(420px, calc(100% - 28px));
  margin: 70px auto 0;
  padding: 12px;
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 18px;
  background: #fbfaf7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.site-mobile-menu-title {
  padding: 8px 10px 12px;
  font-weight: 800;
  color: #111;
}

.site-mobile-menu-list {
  display: grid;
  gap: 8px;
}

.site-mobile-menu-list a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 12px;
  background: #fff;
  color: #111;
  font: 800 15px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
}

.site-mobile-menu-list a::after {
  content: "→";
  opacity: .55;
}

.site-mobile-menu-list a.site-mobile-menu-primary {
  justify-content: center;
  border-color: transparent;
  background: #ffd33d;
  color: #111;
}

.site-mobile-menu-list a.site-mobile-menu-primary::after {
  content: "";
}

@media (max-width: 980px) {
  .site-mobile-menu-toggle {
    display: inline-flex;
  }

  body[data-site-mobile-menu="youtaxi"] .site-mobile-menu-toggle {
    position: fixed;
    top: 14px;
    right: auto;
    left: 14px;
  }
}

@media (max-width: 520px) {
  .site-mobile-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .site-mobile-menu-panel {
    margin-top: 64px;
  }
}

@media (max-width: 767px) {
  body[data-site="dostarun"] header {
    min-height: 69px;
  }

  body[data-site="dostarun"] header > .container {
    padding-right: 68px;
  }

  body[data-site="dostarun"] header > .container > button {
    display: none !important;
  }

  body[data-site="dostarun"] header > .site-mobile-menu-toggle {
    position: absolute;
    top: 15px;
    right: 16px;
  }
}
