.timer-wrap {
  display: flex;
  align-items: center; /* вертикальное выравнивание */
  gap: 12px; /* расстояние между надписью и таймером */
  justify-content: center; /* по центру горизонтально */
  margin: 0 auto 16px auto;
}

.ends-label {
  color: #8794a1;
  font-size: 13px;
  line-height: 28px;
  white-space: nowrap;
  margin: 0; /* убираем нижний отступ */
  margin-right: 7px;
  font-weight: 400;
}

.timer {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap; /* все элементы в одну строку */
}

.days-pill {
  background-color: #212a33;
  border-radius: 10px;
  /*padding: -2px 11px;*/
  display: flex;
  align-items: center;
  gap: 5px;
  width: 69px;
    height: 28px;
  justify-content: center;
  font-weight: 280;
}

.days-number,
.days-text {
  font-size: 14px;
  font-weight: 600;
}

.digit-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #212a33;
  text-align: center;
  margin: auto -3px;
  height: 28px;
  width: 21px;
}

.digit {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: #eaf6ff;
}

.sep {
  line-height: 16px;
  color: #8794A1;
  font-weight: 700;
    font-size: 21px;
  margin: 0 1px;
  margin-top: -5px;
}








.timer>div:nth-child(3) {
    border-radius: 10px 2px 2px 10px;
}
.timer>div:nth-child(4) {
    border-radius: 2px 10px 10px 2px;
}
.timer>div:nth-child(6) {
    border-radius: 10px 2px 2px 10px;
}
.timer>div:nth-child(7) {
    border-radius: 2px 10px 10px 2px;
}
.timer>div:nth-child(9) {
    border-radius: 10px 2px 2px 10px;
}
.timer>div:nth-child(10) {
    border-radius: 2px 10px 10px 2px;
}































