.countdown-timer-current-style .countdown-timer {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.countdown-timer-current-style .countdown-timer .counter {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 140px;
  font-size: 14px;
  line-height: 2em;
  color: #797f7d;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  z-index: 7;
  letter-spacing: 0.01em;
  border-radius: 20px;
  padding: 10px 0 0;
  margin: 0;
  background: #ffffff;
  margin-right: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.countdown-timer-current-style .countdown-timer .counter .value {
  font-family: var(--heading-font-family);
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 30px;
  color: var(--theme-color1);
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.countdown-timer-current-style .countdown-timer .counter .label {
  font-size: 1.2rem;
  color: #111c16;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}