.countdownTimer.container {
  border-radius: 20px;
  width: 100%;
  padding: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -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: -ms-flexbox;
    display: flex;
    -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: -ms-flexbox;
    display: flex;
    -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 {
        transform: rotate(-90deg);
        transform-origin: var(--half-size) var(--half-size);
        stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
        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;
      -ms-flex-pack: center;
          justify-content: center;
      display: -ms-flexbox;
      display: flex;
      -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; }
