.controls {
  position: absolute;
  display: grid;
  padding: 8px;
  grid-template-rows: repeat(2, 40px) 16px repeat(4, 40px);
  grid-template-columns: 40px;
  row-gap: 8px;
  top: 0;
  left: 0;
}

body {
  font-family: "Google Sans Text", sans-serif;
}

:root {
  --a1: #dabfff;
  --a2: #2c2a4a;
  --a3: #4f518c;
  --a4: #907ad6;
}

.timeline {
  position: absolute;
  display: grid;
  padding: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  grid-template-columns: 160px 40px 160px 40px 160px;
  grid-template-rows: 40px 20px 40px;
  align-items: stretch;
  justify-items: stretch;
}
.timeline .info-text {
  grid-column: 1/6;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--a2);
  pointer-events: none;
  opacity: 0;
}
.timeline .info-text.active {
  opacity: 1;
}
.timeline #next {
  grid-column: 3/4;
  grid-row: 1;
  opacity: 0;
  pointer-events: none;
}
.timeline #next.active {
  opacity: 1;
  pointer-events: all;
}
.timeline progress {
  transition: all 0.2s ease;
  grid-column: 1/6;
  grid-row: 2;
  width: 100%;
  height: 50%;
  border-radius: 99px;
  overflow: hidden;
  opacity: 0;
  background-color: white;
}
.timeline progress.active {
  opacity: 1;
}
.timeline progress[value]::-webkit-progress-bar {
  transition: width 0.2s ease;
}
.timeline progress::-webkit-progress-value {
  background-color: var(--a2);
  background: var(--a2);
}
.timeline progress::-webkit-progress-bar {
  background-color: var(--a3);
  background: var(--a3);
}
.timeline .phase {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--a3);
  border-radius: 12px;
  color: var(--a3);
}
.timeline .phase.active {
  border: 5px solid var(--a2);
  color: var(--a2);
  transform: scale(1.05);
}
.timeline .phase.finished {
  border: 5px solid var(--a2);
  color: var(--a2);
}
.timeline .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline .arrow span {
  color: var(--a3);
}
.timeline .arrow.active span {
  color: var(--a2);
  transform: scale(1.05);
}
.timeline .arrow.finished span {
  color: var(--a2);
}

button {
  all: unset;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 12px;
  border: 5px solid var(--a2);
  display: flex;
  justify-content: center;
  align-items: center;
}
button:hover {
  transform: scale(1.05);
}
button span {
  color: var(--a2);
}

button:disabled, button[disabled] {
  border-color: var(--a3);
  pointer-events: none;
}
button:disabled span, button[disabled] span {
  color: var(--a3);
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 24;
}

@font-face {
  font-family: "Google Sans Text";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/GoogleSansText.woff2") format("woff2");
}

/*# sourceMappingURL=style.css.map */
