@charset "UTF-8";
/* Таймер */
/* Используемые переменные */
/* Высота секции с таймером */
/* Высота секции с таймером в два раза меньше */
/* Высота секции с таймером в два раза больше */
/* Радиус загругления таймера обычного */
/* Радиус загругления таймера поменьше */
/* Радиус загругления таймера побольше */
/* Цвет шрифта таймера */
/* Цвет разделитея между цыфрами */
/* Цвет подписи под цыфрами */
/* Шрифт цыфр таймера */
/* Цвет фона секции таймера */
/* Используемые переменные */
.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.timer-wrapper {
  text-align: center;
  cursor: default; }
  .timer-wrapper .digit {
    float: left;
    position: relative; }
    .timer-wrapper .digit > .item {
      color: #000;
      font-family: "PTSansBold", sans-serif;
      font-size: 56px;
      background-color: #ffca11;
      height: 70px;
      width: 49px;
      line-height: 70px;
      -webkit-border-radius: 5px;
              border-radius: 5px;
      float: left;
      margin: 0 2px;
      -webkit-transition: -webkit-transform linear .2s;
      transition: -webkit-transform linear .2s;
      transition: transform linear .2s;
      transition: transform linear .2s, -webkit-transform linear .2s; }
    .timer-wrapper .digit:not(:last-child) {
      margin: 0 14px 0 0; }
      .timer-wrapper .digit:not(:last-child):before, .timer-wrapper .digit:not(:last-child):after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: #fff;
        right: -9px;
        -webkit-border-radius: 50%;
                border-radius: 50%; }
      .timer-wrapper .digit:not(:last-child):before {
        top: 30%; }
      .timer-wrapper .digit:not(:last-child):after {
        bottom: 30%; }
    .timer-wrapper .digit .digit-items {
      font-size: 14px;
      color: #333;
      position: absolute;
      text-align: center;
      width: 100%;
      bottom: -1.5em; }

.timer-sm .timer-wrapper .digit > .item {
  font-size: 28px;
  height: 35px;
  width: 24.5px;
  line-height: 35px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  margin: 0 1px; }

.timer-sm .timer-wrapper .digit:not(:last-child) {
  margin: 0 7px 0 0; }
  .timer-sm .timer-wrapper .digit:not(:last-child):before, .timer-sm .timer-wrapper .digit:not(:last-child):after {
    width: 3px;
    height: 3px;
    right: -4.5px; }

.timer-sm .timer-wrapper .digit .digit-items {
  font-size: 10px; }

.timer-lg .timer-wrapper .digit > .item {
  font-size: 112px;
  height: 140px;
  width: 98px;
  line-height: 140px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  margin: 0 3px; }

.timer-lg .timer-wrapper .digit:not(:last-child) {
  margin: 0 28px 0 0; }
  .timer-lg .timer-wrapper .digit:not(:last-child):before, .timer-lg .timer-wrapper .digit:not(:last-child):after {
    width: 10px;
    height: 10px;
    right: -19px; }

.timer-lg .timer-wrapper .digit .digit-items {
  font-size: 18px; }

/* .flip
	transform: scaleY(-1) */
/* Таймер */
.flip {
  -webkit-animation: hh 0.15s linear;
          animation: hh 0.15s linear; }

@-webkit-keyframes hh {
  from {
    opacity: 1; }
  40% {
    opacity: 0; }
  60% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes hh {
  from {
    opacity: 1; }
  40% {
    opacity: 0; }
  60% {
    opacity: 0; }
  to {
    opacity: 1; } }
