.echo-cue {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 12px auto 0;
  border-radius: 18px;
  color: #466050;
  font-weight: 700;
  transition:
    background 0.25s,
    color 0.25s;
  padding: 10px;
  text-align: center;
}
.echo-cue-icon {
  display: flex;
  width: 26px;
  flex: none;
}
.echo-cue svg,
.echo-sound svg {
  width: 24px;
  height: 24px;
}
.echo-cue-correct {
  background: #deefd9;
  color: #386146;
}
.echo-cue-wrong {
  background: #f7e3dc;
  color: #975543;
}
.echo-progress {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin: 12px 0 20px;
}
.echo-progress i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e0e4d8;
  transition:
    transform 0.2s,
    background 0.2s;
}
.echo-progress i.is-complete {
  background: #638e62;
}
.echo-progress i.is-playing {
  background: #d5ac4c;
  transform: scale(1.35);
}
.echo-touch-pads .arc-pad {
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.13s,
    filter 0.2s,
    box-shadow 0.2s;
  min-width: 0;
}
.echo-touch-pads .arc-pad:disabled {
  opacity: 0.85;
}
.echo-touch-pads .arc-pad.is-flashing {
  transform: translateY(-5px) scale(1.035);
  filter: brightness(1.2);
  box-shadow:
    0 0 0 5px #fff9,
    0 0 30px #d7bf72;
}
.echo-touch-pads .arc-pad.echo-pad-correct {
  box-shadow: 0 0 0 3px #72996a;
}
.echo-touch-pads .arc-pad.echo-pad-wrong {
  box-shadow: 0 0 0 3px #bf7765;
}
.echo-pad-feedback {
  position: absolute;
  right: 9px;
  top: 8px;
  display: flex !important;
  width: 23px;
  height: 23px;
}
.echo-pad-feedback svg {
  width: 23px !important;
  height: 23px !important;
}
.echo-sound {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px auto 0;
  padding: 8px 14px;
  border: 1px solid #d8dfce;
  border-radius: 22px;
  background: #f5f7ef;
  color: #67785e;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.echo-sound.is-enabled {
  color: #39754b;
  background: #e7f2df;
}
@media (prefers-reduced-motion: reduce) {
  .echo-touch-pads .arc-pad,
  .echo-progress i {
    transition: none;
  }
  .echo-touch-pads .arc-pad.is-flashing {
    transform: none;
  }
}
