.timer__clock {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  text-align: center;

  font-size: 17px;
  color: #fff;

}




.timer__part {
  display: inline-block;
  vertical-align: top;
  width: 35px;
  position: relative;
}

.timer__part-devider {
  width: 35px;
  padding-top: 26px;
  vertical-align: top;
  font-size: 17px;

  left: 1px;


}

.timer__text {
  font-weight: 300;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 8px;
}

.timer__text:first-child {
  margin-bottom: 10px;
}

.timer__nums {
  margin-bottom: 8px;
  display: inline-table;
  line-height: 1;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
  position: relative;
  z-index: 1;
}

.timer__part:first-child::before,
.timer__part:nth-child(3)::before,
.timer__part:last-child::before {
  background: url(../img/timer-fire.png) no-repeat center;
}

.timer__part:first-child::before {
  content: "";
  width: 55px;
  height: 57px;
  position: absolute;
  left: -20%;
  top: -30%;

}

.timer__part:nth-child(3)::before {
  content: "";
  width: 55px;
  height: 57px;
  position: absolute;
  left: -33%;
  top: -25%;
  transform: rotate(270deg);
}

.timer__part:last-child::before {
  content: "";
  width: 55px;
  height: 57px;
  position: absolute;
  left: -30%;
  top: -19%;
  transform: rotate(180deg);

}

.timer__nums:last-child {
  margin-bottom: 0;
}

.timer__num {
  display: inline;
  color: #fff;




  position: relative;

  background-clip: padding-box;

}

.timer__num:first-of-type {
  margin-left: 0;
  border-left-width: 0;
}

.timer__num:last-of-type {
  margin-right: 0;
  border-right-width: 0;
}

.timer__num:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

@media(min-width:992px) {
  .timer__clock {
    font-size: 24px;
    font-weight: 300;
  }

  .timer__nums {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .timer__part:first-child::before,
  .timer__part:nth-child(3)::before,
  .timer__part:last-child::before {
    width: 75px;
    height: 78px;
    background: url(../img/desc/timer-fire.png) no-repeat center;
  }

  .timer__text {
    font-size: 11px;
    font-weight: 300;
  }

  .timer__part {
    width: 50px;
  }

  .timer__part-devider {
    width: 35px;
  }
}