/* line 1, ../../styles/059.scss */
.flip-clock {
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

/* line 10, ../../styles/059.scss */
html, body {
  height: 100%;
}

/* line 14, ../../styles/059.scss */
html {
  box-sizing: border-box;
}

/* line 18, ../../styles/059.scss */
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* line 24, ../../styles/059.scss */
body {
  background: #d0d0d0;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%22580%22%20height%3D%22400%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20id%3D%22svg_1%22%20d%3D%22m128%2C0.5l-90%2C156.5l336%2C52l102%2C161l104%2C-63l0%2C-106l-137%2C28l-315%2C-228.5z%22%20fill%3D%22%23e67885%22/%3E%0A%20%20%20%20%3Cpath%20id%3D%22svg_2%22%20d%3D%22m44%2C0.5l229%2C104.5l305%2C162l-166%2C84l-298%2C-103l-115%2C-189l2%2C-60l43%2C1.5z%22%20fill%3D%22rgba%280%2C135%2C182%2C0.5%29%22/%3E%0A%20%20%3C/g%3E%0A%20%20%3C/svg%3E);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* line 36, ../../styles/059.scss */
main {
  display: block;
  width: 620px;
  height: 440px;
  background: linear-gradient(-10deg, #1f1f1f, #333937);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5), 0px -2px 40px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  text-align: center;
  padding: 50px 0 34px 0;
}
/* line 46, ../../styles/059.scss */
main:after, main:before {
  clear: both;
  content: " ";
  display: table;
}
/* line 53, ../../styles/059.scss */
main h1 {
  font-weight: 200;
  color: #fff;
  margin-bottom: 18px;
}
/* line 58, ../../styles/059.scss */
main h1 em {
  font-style: normal;
  color: #ff2b0b;
}
/* line 64, ../../styles/059.scss */
main p {
  clear: both;
  color: #6b6b6b;
  font-size: 13px;
}
/* line 70, ../../styles/059.scss */
main a {
  text-decoration: none;
  color: #ff2b0b;
  text-transform: uppercase;
}

/* line 78, ../../styles/059.scss */
.flip-clock {
  backface-visibility: hidden;
  text-align: center;
  position: relative;
  width: 560px;
  margin: 50px auto 40px auto;
  height: 180px;
  clear: both;
}
/* line 89, ../../styles/059.scss */
.flip-clock .divider {
  float: left;
  width: 68px;
  height: 180px;
}
/* line 94, ../../styles/059.scss */
.flip-clock .divider:after, .flip-clock .divider:before {
  content: " ";
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #434446;
  left: 50%;
  transform: translateX(-50%);
}
/* line 106, ../../styles/059.scss */
.flip-clock .divider:before {
  top: 45%;
}
/* line 110, ../../styles/059.scss */
.flip-clock .divider:after {
  top: 55%;
}
/* line 116, ../../styles/059.scss */
.flip-clock .clock-group {
  float: left;
}
/* line 119, ../../styles/059.scss */
.flip-clock .clock-group:after, .flip-clock .clock-group:before {
  content: " ";
  display: table;
}
/* line 125, ../../styles/059.scss */
.flip-clock .clock-group ul:last-child {
  margin-right: 0;
}
/* line 131, ../../styles/059.scss */
.flip-clock:after, .flip-clock:before {
  content: " ";
  display: table;
}
/* line 137, ../../styles/059.scss */
.flip-clock ul {
  list-style-type: none;
  margin: 0 4px 0 0;
  padding: 0;
  position: relative;
  float: left;
  width: 120px;
  height: 180px;
  font-size: 160px;
  font-weight: bold;
  line-height: 180px;
  border-radius: 6px;
  background: #414244;
  color: #fff;
}
/* line 154, ../../styles/059.scss */
.flip-clock ul.play li.active {
  animation: asd 0.5s 0.5s linear both;
}
/* line 158, ../../styles/059.scss */
.flip-clock ul.play li.active .up .shadow {
  background: llinear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, black 100%);
  animation: hide 0.5s 0.3s linear both;
}
/* line 164, ../../styles/059.scss */
.flip-clock ul.play li.active .down {
  z-index: 2;
  animation: turn 0.5s 0.5s linear both;
}
/* line 168, ../../styles/059.scss */
.flip-clock ul.play li.active .down .shadow {
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.8) 100%);
  animation: hide 0.5s 0.2s linear both;
}
/* line 175, ../../styles/059.scss */
.flip-clock ul.play li.before {
  z-index: 3;
}
/* line 178, ../../styles/059.scss */
.flip-clock ul.play li.before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}
/* line 184, ../../styles/059.scss */
.flip-clock ul.play li.before .up .shadow {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%);
  animation: show 0.5s linear both;
}
/* line 191, ../../styles/059.scss */
.flip-clock ul.play li.before .down .shadow {
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%);
  animation: show 0.5s linear both;
}
/* line 200, ../../styles/059.scss */
.flip-clock ul li {
  margin: 0;
  padding: 0;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* line 210, ../../styles/059.scss */
.flip-clock ul li.active {
  z-index: 2;
}
/* line 214, ../../styles/059.scss */
.flip-clock ul li .flip-box {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible;
}
/* line 223, ../../styles/059.scss */
.flip-clock ul li .flip-box div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
/* line 231, ../../styles/059.scss */
.flip-clock ul li .flip-box div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* line 238, ../../styles/059.scss */
.flip-clock ul li .flip-box div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}
/* line 246, ../../styles/059.scss */
.flip-clock ul li .flip-box div.up .inn {
  top: 0;
}
/* line 251, ../../styles/059.scss */
.flip-clock ul li .flip-box div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
}
/* line 259, ../../styles/059.scss */
.flip-clock ul li .flip-box div.down .inn {
  bottom: 0;
}
/* line 264, ../../styles/059.scss */
.flip-clock ul li .flip-box div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
  text-align: center;
  background-color: #333;
  border-radius: 6px;
}

@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
