.web-call {
  bottom: var(--footer-controls-offset, 72px);
  left: max(0.75rem, env(safe-area-inset-left));
  position: fixed;
  z-index: 1100;
}

.web-call button {
  font: inherit;
}

.web-call__launcher,
.web-call__start {
  background: #d4144b;
  border: 1px solid #a90d3b;
  border-radius: 999px;
  box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 0.65rem 0.95rem;
}

.web-call__launcher {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}

.web-call__launcher:hover,
.web-call__launcher:focus-visible,
.web-call__start:hover,
.web-call__start:focus-visible {
  background: #b80f42;
}

.web-call__panel {
  background: var(--minima-background-color, #fff);
  border: 1px solid rgba(128, 128, 128, 0.45);
  border-radius: 0.75rem;
  bottom: calc(100% + 0.75rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: var(--minima-text-color, #111);
  left: 0;
  padding: 0.9rem;
  position: absolute;
  width: min(13.68rem, calc(100vw - 1.5rem));
}

.web-call__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.web-call__actions {
  gap: 0.5rem;
}

.web-call__actions button {
  flex: 1;
}

.web-call__start.is-active {
  background: #a52828;
  border-color: #7e1f1f;
}

.web-call__keypad {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0.75rem 0;
}

.web-call__keypad[hidden] {
  display: none;
}

.web-call__status {
  color: #a52828;
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0.7rem 0 0;
  text-align: center;
}

.web-call__keypad button {
  background: transparent;
  border: 1px solid rgba(128, 128, 128, 0.55);
  border-radius: 0.4rem;
  color: inherit;
  cursor: pointer;
  min-height: 2.35rem;
}

.web-call small {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  margin-top: 0.7rem;
  text-align: center;
}

.web-call small span {
  display: block;
}

@media screen and (max-width: 600px) {
  .web-call {
    display: none;
  }

  .web-call__launcher {
    padding: 0.55rem 0.75rem;
  }
}
