@charset "utf-8";

.is-countdown {
  width: 300px;
  line-height: 1.1;
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 0 auto 30px;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: inset 0 0 3px #331F3F;
}
.countdown-row {
  display: flex;
  justify-content: space-around;
  gap: 0 15px;
}
.countdown-amount {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 25%, rgba(69, 72, 77, 1) 50%, rgba(0, 0, 0, 1) 75%);
  color: #FFF;
  width: 60px;
  height: 60px;
  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;
}
