.clock-day:before {
  content: var(--timer-day);
}
.clock-hours:before {
  content: var(--timer-hours);
}
.clock-minutes:before {
  content: var(--timer-minutes);
}
.clock-seconds:before {
  content: var(--timer-seconds);
}

.clock-container {
  margin-bottom: 30px;
  background-color: #080808;
  border-radius: 5px;
  padding: 30px 20px;
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.15), 0 15px 90px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
}
.clock-col {
  text-align: center;
  margin-right: 40px;
  margin-left: 40px;
  min-width: 90px;
  position: relative;
}
.clock-col:not(:last-child):before, .clock-col:not(:last-child):after {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: -42px;
}
.clock-col:not(:last-child):before {
  top: 35%;
}
.clock-col:not(:last-child):after {
  top: 50%;
}
.clock-timer:before {
  color: #fff;
  font-size: 4.2rem;
  text-transform: uppercase;
  font-weight: 600;
}
.clock-label {
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-top: 10px;
}

.countdown h3, .countdown p {
  color: #fff;
  text-align: center;
}

.countdown p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 825px) {
  .clock-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .clock-col:before, .clock-col:after {
    display: none !important;
  }
  .clock-col {
    margin-right: 0;
    margin-left: 0;
    min-width: unset;
    width: 100%;
  }
}