.countdown {
  /* width: 465px;
  height: 112px;
  text-align: center;
  padding: 24px 0; */
}


.countdown .tiles {
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}

.countdown .tiles>span {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 7px 0;
  font-family: 'PF DinDisplay Pro Bold';
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #000;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(216, 216, 216);
  border-radius: 15px;
  display: inline-block;
  position: relative;
}

.countdown .tiles>span:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #eee;
  border-top: 1px solid #333;
  display: block;
  opacity: 0.3;
  position: absolute;
  top: 48%;
  left: 0;
}

.tiles span+span {
  margin-left: 35px;
}

.countdown .labels {
  width: 100%;
  height: 25px;
  display: flex;
  justify-content: space-between;
}

.main-banner._two .countdown .labels {
  width: 82%;
}

.main-banner._two .countdown .tiles {
  width: max-content;
}

.countdown .labels li {
  width: 60px;
  font-family: 'PF DinDisplay Pro Bold';
  font-size: 14px;
  line-height: 15px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .tiles span+span {
    margin-left: 20px;
  }

  .countdown .tiles>span {
    width: 50px;
    height: 50px;
    padding: 6px 0;
    font-size: 30px;
    line-height: 34px;
  }

  .countdown .labels li {
    width: 50px;
    font-size: 13px;
    line-height: 14px;
  }
}

@media screen and (max-width: 900px) {
  .tiles span+span {
    margin-left: 20px;
  }

  .countdown .tiles>span {
    width: 40px;
    height: 40px;
    padding: 2px 0;
    font-size: 26px;
    line-height: 30px;
    border-radius: 10px;
  }

  .countdown .labels li {
    width: 40px;
    font-size: 10px;
    line-height: 12px;
  }
}

@media screen and (max-width: 420px) {
  .countdown {
    width: 63%;
  }

  .tiles {
    display: flex;
    justify-content: space-around;
  }

  .countdown .labels {
    justify-content: space-around;
  }

  .tiles span+span {
    margin-left: 0;
  }

  .countdown .tiles>span {
    width: 35px;
    height: 35px;
    padding: 2px 0;
    font-size: 20px;
    line-height: 28px;
  }

  .countdown .labels li {
    width: 35px;
    font-size: 10px;
    line-height: 12px;
  }
}