/* https://mdbootstrap.com/docs/standard/plugins/countdown/ */

.countdown {
  color: var(--color);
  font-size: 5vh;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.countdown-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.countdown-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.countdown-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3vw;
  padding-right: 3vw;
  width: 100%;
}
.countdown-unit-horizontal {
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.countdown-unit-horizontal,
.countdown-unit-vertical {
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.countdown-unit-vertical {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.countdown-unit-vertical > span[data-mdb-countdown-label] {
  font-size: 2vh;
  width: 100%;
  text-align: center;
}
.countdown-prefix {
  color: var(--color);
  margin-bottom: 0px;
  font-size: 3vh;
}

@media only screen and (min-width: 768px) {
  .countdown {
    font-size: 6vw;
  }

  .countdown-unit-vertical > span[data-mdb-countdown-label] {
    font-size: 1.25vw;
  }

  .countdown-prefix {
    font-size: 2vw;
  }
}
