.pwa-install-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  padding: 0 10px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.pwa-install-button.is-available {
  display: flex;
}

.pwa-install-button:hover,
.pwa-install-button:focus-visible {
  background: var(--sage);
  border-color: var(--green-2);
  outline: none;
}

.pwa-install-button svg {
  width: 17px;
  height: 17px;
}

.pwa-install-button span {
  display: none;
}

.pwa-help-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 24, 19, .6);
  backdrop-filter: blur(5px);
}

.pwa-help-modal[hidden] {
  display: none;
}

.pwa-help-panel {
  width: min(100%, 390px);
  padding: 24px 21px 21px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.pwa-help-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 17px;
  color: var(--surface);
  background: var(--green);
  border-radius: 12px;
}

.pwa-help-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 400;
}

.pwa-help-panel p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.pwa-help-panel ol {
  margin: 0 0 20px;
  padding-left: 21px;
  font-size: 13px;
  line-height: 1.75;
}

.pwa-help-close {
  width: 100%;
  min-height: 42px;
  color: var(--surface);
  background: var(--green);
  border: 0;
  border-radius: 5px;
  font-weight: 700;
}

body.pwa-help-open {
  overflow: hidden;
}

@media (min-width: 680px) {
  .pwa-install-button span {
    display: inline;
  }
}
