.push-toggle {
  appearance: none;
  border: 0;
  padding: 7px 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.push-toggle:hover span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.push-toggle:focus-visible {
  outline: 2px solid #cfa45d;
  outline-offset: 4px;
  border-radius: 5px;
}

.push-toggle.is-on i {
  background: #cfa45d;
  box-shadow: 0 0 0 4px rgba(207, 164, 93, 0.16);
}

.push-toggle.is-busy {
  opacity: 0.58;
  pointer-events: none;
}

.push-toast {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  width: min(420px, calc(100% - 28px));
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 14px 17px;
  border: 1px solid rgba(207, 164, 93, 0.42);
  border-radius: 16px;
  color: #fff;
  background: #104f4c;
  box-shadow: 0 14px 40px rgba(16, 79, 76, 0.24);
  font-size: 14px;
  line-height: 1.4;
}

.push-toast[hidden] {
  display: none;
}

@media (max-width: 430px) {
  .push-toggle {
    max-width: 155px;
    text-align: right;
    font-size: 10px;
  }
}
