@charset "utf-8";

.is-countdown {
  max-width: 550px;
  width: 100%;
  line-height: 1.1;
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 0 auto 30px;
  padding: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.countdown-row {
  display: flex;
  justify-content: space-around;
  gap: 0 15px;
}
.countdown-amount {
  font-size: clamp(20px,4.9vw,38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #683290;
  color: #FFF;
  width: clamp(60px,10vw,80px);
  height: clamp(60px,10vw,80px);
  border-radius: 6px;
  margin: 0 auto 5px;
}
.countdown-period {
  font-size: 12px;
}

.countdown-section {
  position: relative;
}

.countdown-section:not(:first-child)::before {
  content: ':';
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  left: -0.4em;
  font-size: 30px;
  color: #333;
}
