html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

body, html {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: white;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: helvetica;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

::-webkit-selection {
  background: black;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: black;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: black;
  color: #fff;
  text-shadow: none;
}

#watch-container {
  width: 100%;
  height: 100%;
}
#watch-container #watch #hoursContainer {
  position: absolute;
  display: block;
  font-size: 20vw;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1000;
  -webkit-transition: left easeInOut;
  -webkit-transition-delay: 0.3s;
  -moz-transition: left easeInOut 0.3s;
  -o-transition: left easeInOut 0.3s;
  transition: left easeInOut 0.3s;
}
#watch-container #watch #hoursContainer.left {
  left: 25%;
}
#watch-container #watch #hoursContainer.right {
  left: 75%;
}
#watch-container #watch .second-item, #watch-container #watch .minute-item {
  position: absolute;
  top: 50%;
}
#watch-container #watch .second-item .text, #watch-container #watch .minute-item .text {
  /*position:absolute;
  margin-left:-25px;
  margin-top:-25px;
  display:block;
  width:50px;
  height:50px;
  font-size: 12px;
  font-weight:bold;
  padding-top:20px;
  text-align:center;
  color:#000;
  background-color:$bodyBackgroundColor;
  @include border-radius(26px);
  @include box-sizing(border-box);
  z-index:10;*/
  position: absolute;
  display: block;
  font-size: 30vw;
  -webkit-transform: translate(-50%, -70%);
  -moz-transform: translate(-50%, -70%);
  -ms-transform: translate(-50%, -70%);
  -o-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  color: white;
  z-index: 10;
}
#watch-container #watch .second-item .line, #watch-container #watch .minute-item .line {
  position: absolute;
  display: block;
  width: 1px;
  height: 100px;
  background-color: black;
  z-index: 1;
}
#watch-container #watch .second-item.consumed.v1 .line {
  background-color: #0f829b;
}
#watch-container #watch .second-item.consumed.v2 .line {
  background-color: #bd1550;
}
#watch-container #watch .second-item.consumed.v3 .line {
  background-color: #e97f02;
}
#watch-container #watch .second-item.consumed.v4 .line {
  background-color: #f8ca00;
}
#watch-container #watch .second-item.consumed.v5 .line {
  background-color: #8a9b0f;
}
#watch-container #watch .minute-item .text {
  -webkit-transform: translate(-50%, -30%);
  -moz-transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%);
  -o-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
}
#watch-container #watch .minute-item .line {
  background-color: black;
}
