.timerIndicator {
  display: block;
  vertical-align: middle;
  margin-right: 0;
  font-size: 0.875vw;
  color: #B5B5B5;
  font-weight: 600;
  width: 100%;
}
.timerIndicator .current,
.timerIndicator .divider,
.timerIndicator .length {
  display: inline-block;
  vertical-align: middle;
}
.timerIndicator .current,
.timerIndicator .length {
  width: calc(50% - 13px);
}
.timerIndicator .length {
  text-align: right;
}
.timerIndicator .current {
  text-align: left;
  color: #BB8B52;
}
.timerIndicator .divider {
  margin: 0 0.625vw;
}
.timer {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.timer svg .circle {
  stroke: #F7F7F7;
  fill: transparent;
  opacity: 0.2;
  transform-origin: 0px 0px;
}
.timer svg .another-circle {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  stroke: #BB8B52;
  fill: transparent;
  transform-origin: 0px 0px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.timer svg .another-circle.longTimer.timer {
  -webkit-transition: all 14.7s linear;
  -moz-transition: all 14.7s linear;
  -o-transition: all 14.7s linear;
  transition: all 14.7s linear;
}
.timer svg .another-circle.timer {
  stroke-dashoffset: 0;
  -webkit-transition: all 7.7s linear;
  -moz-transition: all 7.7s linear;
  -o-transition: all 7.7s linear;
  transition: all 7.7s linear;
}
.timer .circleCenter {
  height: 9px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 9px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #F7F7F7;
  opacity: 0.2;
  border-radius: 50%;
}
@media all and (max-width: 1080px) {
  .timerIndicator {
    font-size: 1.296vw;
  }
  .timerIndicator .divider {
    margin: 0 0.926vw;
  }
}
@media all and (max-width: 580px) {
  .timerIndicator {
    font-size: 2.414vw;
  }
  .timerIndicator .divider {
    margin: 0 1.724vw;
  }
}
