.turn-reminder {
  display: none;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #747474;
  font-family: JiaLiDaYuan, "PingFang SC", "Hiragino Sans GB", sans-serif;
}

.turn-reminder[data-visible="true"] {
  display: flex;
}

.screen--waiting .screen__body {
  justify-content: flex-start;
  gap: 0;
  padding-top: clamp(60px, 12.5cqh, 110px);
}

.screen--waiting .stats-header {
  margin-bottom: 60px;
}

.screen--waiting .mascot-block {
  height: auto;
  margin-bottom: 40px;
}

.screen--waiting .turn-reminder {
  margin-bottom: 30px;
}

.turn-reminder__switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 4px 7px;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.turn-reminder__track {
  position: relative;
  width: 44px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #d6d6d8;
  transition: background 160ms ease;
}

.turn-reminder__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.turn-reminder__switch[aria-checked="true"] .turn-reminder__track {
  background: #58b86d;
}

.turn-reminder__switch[aria-checked="true"] .turn-reminder__thumb {
  transform: translateX(19px);
}

.turn-reminder__switch:focus-visible {
  outline: 3px solid rgba(88, 184, 109, 0.26);
  outline-offset: 2px;
  border-radius: 999px;
}

.screen--waiting .speech-bubble--turn-reminder {
  width: min(332px, calc(100cqw - 32px));
  max-width: min(332px, calc(100cqw - 32px));
  padding: 13px 18px;
}

.screen--waiting .speech-bubble__text {
  font-size: 20px;
}

.screen--waiting .speech-bubble__line--custom-copy {
  white-space: normal;
}
