.pc-counter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pc-counter-box.pc-v-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pc-counter-box.pc-v-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc-counter-box.pc-v-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc-counter-box.pc-h-left {
  text-align: left;
}
.pc-counter-box.pc-h-left .pc-number {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pc-counter-box.pc-h-center {
  text-align: center;
}
.pc-counter-box.pc-h-center .pc-number {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc-counter-box.pc-h-right {
  text-align: right;
}
.pc-counter-box.pc-h-right .pc-number {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc-counter-box .pc-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}