#ticker{
  position: relative;
  transition: all 0.3s ease-in-out;
  top: 0;
  background-color: var(--sunflower);
  padding: 20px 30px;
  text-align: center;
  color: var(--muted_black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-height: 60px;
  margin-bottom: 25px;
}
#ticker .ended-note{
	font-size: 24px;
	font-weight: bold;
}

#ticker .val{
  font-size: var(--font-md);
  font-weight: 600;
  line-height: 1em;
  margin-right: 5px;
  font-family: 'HammerBold', sans-serif;
}
#ticker .label{
  padding-top: 2px;
  margin-right: 15px;
}
#ticker .label .clock{
  margin-right: 8px;
  margin-top: -4px;
}
#cd-seconds{
  width: 35px;
  display: inline-block;
}

@media screen and (max-width: 991px){
  #ticker{
    display: block;
    padding: 8px 15px;
	  font-size: 18px;
	  min-height: 40px;
  }
  #ticker .ended-note{
	font-size: 18px;
	  min-height: 30px; 
	  display: flex; 
	  align-items: center; 
	  justify-content: center;
  }
  #ticker .label{
    display: block;
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 5px;
    font-size: 14px;
  }
  #ticker > div:not(.label){
    display: inline-block;
    margin: 0 6px;
    font-size: 14px;
  }
  #ticker .days{
    margin-left: 0!important;
  }
  #ticker .seconds{
    margin-right: 0!important;
  }
  #ticker .val{
    font-size: 20px;
    margin-right: 0;
  }
  #cd-seconds{
    width: 30px;
  }
}