.timer {
	padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 25px;
  margin: 0px;
  border-style: none;
  background-color: var(--secondary);
  border-radius: 40px;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #212529;
  max-width:320px;
  width:100%:
}

.timer-message {
	font-size:1.2rem;
	letter-spacing:-0.025rem;
	line-height:1.2
}

#countdownTimer {
	display:flex;
	flex-direction:row;
	width:100%;
}

#countdownTimer div {
	display:flex;
	flex-direction:column;
	font-size:2.5rem;
	width:25%;
	margin-bottom:0px;
	padding-left:0px;
	position:relative;
	line-height:1;
	margin-bottom:10px;
}

#countdownTimer div:after {
	content:"";
	position:absolute;
	right:10px;
	height:100%;
	width:1px;
	background:#000;
}

#countdownTimer div:last-child:after {
	width:0px;
}

#countdownTimer div span {
	display:flex;
	flex-direction:column;
	font-size:0.75rem;
	margin-top:10px;
	margin-bottom:0px;
}