.counter {
  justify-content: center;
  text-align: center;
  clear: both;

  background-color: #FFF2F3;
  padding: 20px;
}
.counter.mobile {
  display: none;
}
.counter .texto-contador {
  color: #9E9E9E;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  width: 413px;
  margin: 10px auto 25px;
}
.counter .texto-contador span{
  color: #fff;
}
.counter .lote-contador i {
  margin-right: 10px;
}
.counter .lote-contador {
  color: #660004;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.counter .countdown-element {
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter .countdown-clock-seja-aprovado {
  width: 330px;
  height: 85px;
  margin: 0 auto;
  border-radius: 6px;
}
.counter .countdown-element .data {
  color: #660004;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 28px;
  width: max-content;
}
.counter .countdown-element .dot {
  color: #757575;
  font-size: 20px;
  font-family: 'Mulish', sans-serif;
  width: 30px;
}
.counter .countdown-element small {
  display: block;
  color: #757575;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px){
  .counter.mobile {
    display: block;
    padding: 50px 0;
  }
  .counter.desktop {
    display: none;
  }
  .counter .texto-contador {
    width: 80%;
    max-width: 370px;
  }
}
