.countdown-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f0f0f0; /* Adjust background color as needed */
  border: 1px solid #ccc;
  border-radius: 5px;
}

.countdown-item {
  text-align: center;
  width: 80px;
  height: 80px;
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.countdown-label {
  font-size: 14px;
  color: #666;
}

.block-countdown-clock .countdown-timer {
  display: flex;
  flex-wrap: wrap;
}
.block-countdown-clock .countdown-timer > div + div {
  margin-left: 20px;
}
.block-countdown-clock .countdown-timer .countdown-number {
  display: flex;
  font-family: "Tahoma", sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
}
.block-countdown-clock .countdown-timer  .countdown-label {
  font-size: 18px;
  font-weight: bold;
}
.block-countdown-clock .countdown-timer .countdown-number span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 45px;
  box-shadow: 3px 3px 4px #dcdcdc;
}
.block-countdown-clock .countdown-timer .countdown-number span + span {
  margin-left: 10px;
}
.block-countdown-clock .countdown-timer .countdown-number span::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #d3d3d3;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
