.countdown-widget {
  color: #3c4858;
  position: relative;
  text-align: center;
  opacity: 0;
}
.countdown-widget.active {
  opacity: 1;
}
.countdown-widget .countdown-content {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 1rem;
}
.countdown-widget .number {
  width: 2.625rem;
}
.countdown-widget .number .type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.countdown-widget .number .type.expired {
  color: #aeb9c6;
}
.countdown-widget .number .digit {
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  border-radius: 0.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 1.25rem;
  overflow: hidden;
}
.countdown-widget .separator {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 600;
  margin: 0.4rem 0.25rem 0;
}
.countdown-widget .label {
  font-size: 0.6875rem;
  line-height: 1.125rem;
  margin-top: 0.25rem;
  font-weight: 600;
}
.countdown-widget.dark-mode {
  color: #fff;
}
.countdown-widget.dark-mode .number .type.expired {
  color: #a4a4a8;
}
.countdown-widget.dark-mode .number .digit {
  background-color: #262629;
}
