.custom-anim-calculator {
  --calc-text: #ffffff;
  --calc-accent: #dfff12;
  --calc-bar-track: rgba(255, 255, 255, 0.12);
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--calc-text);
}

.custom-anim-calculator__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--calc-accent);
}

.custom-anim-calculator__head svg {
  flex-shrink: 0;
}

.custom-anim-calculator__total {
  margin: 0 0 20px;
  font-family: "Bebas Neue Cyrillic", "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 65px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.custom-anim-calculator__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.custom-anim-calculator__item {
  padding: 0;
}

.custom-anim-calculator__item + .custom-anim-calculator__item {
  margin-top: 20px;
}

.custom-anim-calculator__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.custom-anim-calculator__row-value {
  white-space: nowrap;
}

.custom-anim-calculator__bar {
  position: relative;
  height: 2px;
  background: var(--calc-bar-track);
  border-radius: 999px;
  overflow: hidden;
}

.custom-anim-calculator__bar-fill {
  display: block;
  height: 100%;
  background: #dfff12;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.custom-anim-calculator__footnote {
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
}

@media (max-width: 900px) {
  .custom-anim-calculator__total {
    font-size: 48px;
  }
}
