{# Styles for Countdowm #}

#countdown-timer{
  margin-top: 30px;
  display: flex;
  column-gap: 40px;
}
#countdown-timer .tile{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#countdown-timer .tile>div:first-child{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 80px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 58px;
  line-height: 125%;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
}
#countdown-timer .tile>h4{
  margin-top: 8px;
  margin-bottom: 0px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  #countdown-timer{
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    column-gap: 6px;
  }
  #countdown-timer .tile{
    min-width: 75px;
  }
  #countdown-timer .tile>div:first-child{
    width: 55px;
    height: 45px;
    font-size: 28px;
    align-items: center;
  }
}

{# End Styles for Countdowm #}

.banner-tag{
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  color: #BCD73F;
}

.banner-button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.banner-button-row .banner-button {
  margin-top: 0;
}

@media (max-width: 767px) {
  .banner-button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
  }
  .banner-button-row .banner-button {
    margin-top: 0 !important;
  }
  .banner-button-row .banner-button .button {
    margin-top: 0 !important;
  }
}