.support-entry {
  position: fixed;
  z-index: 65;
  right: 16px;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #8262d7 0%, #704bc9 56%, #5734aa 100%);
  box-shadow: 0 9px 22px rgba(83, 52, 164, .22), 0 2px 7px rgba(50, 32, 96, .12), inset 0 1px rgba(255, 255, 255, .26);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .16s ease, box-shadow .16s ease;
}

.support-entry::after {
  content: "24h";
  position: absolute;
  right: -2px;
  bottom: -2px;
  min-width: 17px;
  height: 11px;
  padding: 0 2px;
  display: grid;
  place-items: center;
  border: 1.5px solid #fff;
  border-radius: 6px;
  color: #53368e;
  background: #ffe076;
  box-shadow: 0 3px 7px rgba(54, 34, 98, .2);
  font-size: 5px;
  font-weight: 850;
  line-height: 1;
}

.support-entry-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px rgba(255, 255, 255, .2);
  font-size: 14px;
}

.support-entry-icon svg { width: 20px; height: 20px; }

.support-entry-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.support-entry:hover,
.support-entry:focus-visible {
  color: #fff;
  outline: 3px solid rgba(112, 75, 201, .16);
  outline-offset: 2px;
  box-shadow: 0 11px 25px rgba(83, 52, 164, .28), 0 3px 8px rgba(50, 32, 96, .15), inset 0 1px rgba(255, 255, 255, .28);
}

.support-entry:active { transform: scale(.97); }
@media (max-width: 360px) {
  .support-entry { right: 12px; }
}

@media (min-width: 460px) {
  .support-entry { right: calc(50% - 194px); }
}

@media (prefers-reduced-motion: reduce) {
  .support-entry { transition: none; }
}
