/*Таймер*/

.countbox {
  height: auto;
  width: 100%;
  max-width: 330px;
  /* padding: 14px 25px; */
  display: inline-flex;
  position: relative;
}


.countbox .countbox-num {
  display: block;
  align-items: center;
  text-align: center;
}

.countbox .countbox-space {
  float: left;
  height: 48px;
  width: 40px;
  position: relative;
}

.countbox .countbox-space::after {
  content: ":";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  font-style: normal;
  font-weight: bold;
  font-size: 44px;
  line-height: 44px;
  text-align: center;
  color: rgb(102, 210, 255);
}

.countbox-hours1,
.countbox-mins1,
.countbox-secs1,
.countbox-hours2,
.countbox-mins2,
.countbox-secs2 {
  background: url(../img/sprite.png) no-repeat 0 0;
  font-weight: 300;
  font-size: 67px;
  line-height: 57px;
}

.countbox-hours1,
.countbox-mins1,
.countbox-secs1,
.countbox-hours2,
.countbox-mins2,
.countbox-secs2 {
  float: left;
  text-align: center;
  z-index: 1;
  font-style: normal;
  font-weight: 300;
  font-size: 67px;
  line-height: 57px;
  text-align: center;
  color: rgb(102, 210, 255);
}

.countbox-secs2 {
  margin-right: 0;
}

.countbox-hours-text,
.countbox-mins-text,
.countbox-secs-text {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: rgb(102, 210, 255);
  text-transform: lowercase;
}

@media (max-width: 768px){
  .countbox-hours1,
  .countbox-mins1,
  .countbox-secs1,
  .countbox-hours2,
  .countbox-mins2,
  .countbox-secs2 {
    background: url(../img/sprite.png) no-repeat 0 0;
    font-weight: 300;
    font-size: 57px;
    line-height: 57px;
  }
}
@media (max-width: 667px){
  .countbox{
    justify-content: center;
  }
}
@media (max-width: 478px){
  .countbox-hours1,
  .countbox-mins1,
  .countbox-secs1,
  .countbox-hours2,
  .countbox-mins2,
  .countbox-secs2 {
    font-size: 40px;
    line-height: 1.1;
  }
  .countbox-hours-text,
  .countbox-mins-text,
  .countbox-secs-text {
    font-size: 14px;
    line-height: 16px;
  }
}
