.countdownTimer.container {
  border-radius: 20px;
  width: 100%;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  background: transparent url(../../images/countdown-timer-bg.svg) 0% 0% no-repeat padding-box;
  background-size: cover;
  color: white;
  text-align: center;
}
.countdownTimer.container .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.countdownTimer.container .header .title {
  font-family: ubuntuBold;
  font-size: 30px;
}
.countdownTimer.container .header .description {
  font-family: ubuntu;
  font-size: 16px;
}
.countdownTimer.container .clock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.countdownTimer.container .clock .clock-item {
  position: relative;
  width: 120px;
  height: 120px;
}
.countdownTimer.container .clock .circular-progress {
  --size: 100%;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 3px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 100);
}
.countdownTimer.container .clock .circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}
.countdownTimer.container .clock .circular-progress circle.bg {
  stroke: #ddd;
  opacity: 0.5;
}
.countdownTimer.container .clock .circular-progress circle.fg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: var(--half-size) var(--half-size);
          transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  -webkit-transition: stroke-dasharray 0.3s linear 0s;
  transition: stroke-dasharray 0.3s linear 0s;
  stroke: #fff;
}
.countdownTimer.container .clock .text {
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: ubuntu;
  gap: 8px;
}
.countdownTimer.container .clock .text p {
  margin: 0;
}
.countdownTimer.container .clock .text .val {
  font-size: 42px;
  line-height: 50px;
}
.countdownTimer.container .clock .text .type-time {
  font-size: 10px;
  font-family: ubuntuBold;
  text-transform: uppercase;
}
