.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.timer--big {
  gap: 10px;
}

.timer__text {
  font-weight: 600;
  text-align: center;
  font-size: 10px;
  line-height: 12px;
}

.timer--big .timer__text {
  font-size: 18px;
  line-height: 22px;
}

.timer__list {
  display: flex;
  align-items: center;
  gap: 3px;
}

.timer--big .timer__list {
  gap: 5px;
}

.timer__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  line-height: 12px;
  align-items: center;
  text-align: center;
  font-family: "Roboto", "Arial", sans-serif;
  font-weight: 400;
}

.timer__big .timer__item {
  gap: 5px;
  font-size: 14px;
  line-height: 18px;
}

.timer__number {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  width: 25px;
  height: 25px;
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid var(--red);
  padding: 5px;
}

.timer--big .timer__number {
  font-size: 36px;
  line-height: 40px;
  width: 45px;
  height: 45px;
}

.timer__info {
  font-size: 10px;
  line-height: 12px;
  text-transform: lowercase;
}

.timer--big .timer__info {
  font-size: 18px;
  line-height: 20px;
}

.timer__points {
  position: relative;
  top: -7px;
}

.timer__group {
  display: flex;
  align-items: center;
  gap: 3px;
}

.timer--big .timer__group {
  gap: 5px;
}

@media (max-width: 1180px) {
  .timer--big .timer__text {
    font-size: 16px;
    line-height: 20px;
  }

  .timer--big .timer__number {
    width: 40px;
    height: 40px;
    font-size: 32px;
    line-height: 36px;
  }

  .timer--big .timer__info {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 980px) {
  .timer--big .timer__number {
    width: 35px;
    height: 35px;
    font-size: 28px;
    line-height: 32px;
  }

  .timer--big .timer__info {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 780px) {
  .timer--big .timer__text {
    font-size: 14px;
    line-height: 18px;
  }

  .timer--big .timer__number {
    width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 28px;
  }

  .timer--big .timer__info {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  .timer__text,
  .timer--big .timer__text {
    font-size: 12px;
    line-height: 16px;
  }

  .timer--big .timer__number {
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: 24px;
  }

  .timer__group {
    gap: 3px;
  }

  .timer__item {
    gap: 2px;
  }

  .timer--big .timer__info {
    font-size: 10px;
    line-height: 14px;
  }

  .timer--big {
    gap: 5px;
  }

  .timer--big .timer__group {
    gap: 3px;
  }

  .timer--big .timer__list {
    gap: 3px;
  }
}

