@import "base.css";
@font-face {
  font-family: 'icons';
  src: url('../fonts/icons-webfont.eot');
  src: url('../fonts/icons-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/icons-webfont.woff') format('woff'), url('../fonts/icons-webfont.ttf') format('truetype'), url('../fonts/icons-webfont.svg#webfont') format('svg');
}
#loader {
  background-image: url("../img/logo.svg");
  background-size: 160px 90px;
  background-position: top center;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  margin-top: -80px;
}
#loader .spinner {
  top: 100%;
}
.spinner {
  width: 20px;
  height: 20px;
  background: url("../img/throbber-light-small.png") no-repeat 50% 50%;
  -webkit-animation: spinner 0.8s infinite linear;
  -moz-animation: spinner 0.8s infinite linear;
  margin: 0 auto;
  position: relative;
}
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
body {
  position: relative;
}
header {
  border: 0;
}
h1 {
  text-transform: uppercase;
  font-style: oblique;
  font-weight: normal;
  font-size: 22px;
  margin: 0;
}
a,
a:link,
a:active {
  color: #5db300;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #5db300;
  text-decoration: underline;
}
input {
  opacity: 0.8;
  border: none;
  border-radius: 0;
}
input:focus {
  opacity: 1;
  outline: none;
}
input:invalid {
  background: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
textarea {
  border: 1px solid #abb1ba;
  -webkit-box-shadow: inset 0 1px 1px #ccc;
  -moz-box-shadow: inset 0 1px 1px #ccc;
  box-shadow: inset 0 1px 1px #ccc;
  border-radius: 2px;
  -webkit-appearance: none;
}
textarea:focus {
  outline: none;
  border-color: #5db300;
  -webkit-box-shadow: 0 0 8px #5db300;
  -moz-box-shadow: 0 0 8px #5db300;
  box-shadow: 0 0 8px #5db300;
}
::-webkit-input-placeholder {
  color: #8f97a3;
}
:-moz-placeholder {
  color: #8f97a3;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#main {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0;
  z-index: 99;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
/*#main.active {
	.transform(scale(1));
	.transition(0.3s);
	opacity: 1;
}*/
.page {
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-property: -webkit-transform, background;
}
.page .view {
  height: 100%;
  overflow: visible;
}
/*.page.active {
	.transform(translatex(0));
	z-index:9;
}

.page.active ~ .page {
	.transform(translate3d(100%,0,0));
}*/
.toolbar {
  text-align: center;
  height: 58px;
  position: absolute;
  width: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toolbar header {
  display: inline-block;
  font-weight: bold;
  padding: 16px 0;
}
.toolbar header.touch {
  text-shadow: 0 0 10px white, 0 0 20px white;
}
.toolbar input {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 58px;
  height: 32px;
  padding: 5px;
  padding-left: 32px;
  border-radius: 16px;
  opacity: 0.6;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.toolbar input:focus {
  opacity: 1;
}
.toolbar .input-search {
  font-family: "icons";
  font-size: 24px;
  position: absolute;
  left: 20px;
  top: 12px;
  color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  padding: 0;
  width: 0;
}
.toolbar .button {
  height: 58px;
  width: 58px;
  margin: 0;
  padding: 8px;
  border-radius: 0;
  position: absolute;
  top: 0;
  text-align: center;
  background-color: transparent;
}
.toolbar.alt {
  opacity: 0;
}
.toolbar.alt .cancel {
  font-family: "icons";
  font-size: 32px;
  right: 0;
  color: #fff;
}
.toolbar.alt .selected-count {
  font-size: 18px;
  font-weight: bold;
  padding-top: 16px;
  color: #fff;
  left: 0;
}
.toolbar.alt .selected-count:after {
  content: '';
  display: block;
  border: 2px solid white;
  border-top: none;
  height: 10px;
  margin: -10px 4px;
}
.toolbar.bottom {
  opacity: 0;
  bottom: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  /*[data-action="complete"] .icon {
			color: @green;
		}

		[data-action="move"] .icon {
			color: @blue;
		}

		[data-action="delete"] .icon {
			color: @red;
		}*/
}
.toolbar.bottom .disabled {
  opacity: 0.5;
}
.toolbar.bottom > span {
  width: 33%;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-left: 8px;
  padding-top: 2px;
}
.toolbar.bottom > span .glyph {
  padding: 0;
  padding-top: 10px;
  width: 28px;
  height: 58px;
  position: relative;
  vertical-align: middle;
}
.toolbar.show {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: 99;
}
.toolbar.hide {
  opacity: 0;
}
.info {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 62px;
  color: #888;
  font-size: 13px;
  opacity: 0;
}
.tip {
  text-align: center;
  font-size: 16px;
}
.tip .arrow-up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.container {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 58px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /*&::-webkit-scrollbar {
	    width: 10px;
	    overflow: visible;
	}

	&::-webkit-scrollbar-thumb {
	    border-radius: 0px;
	    border-left: 2px solid #000;
	    background-color: rgba(255,255,255,0.3);
	}*/
}
.container li {
  list-style-type: none;
  position: relative;
  width: 100%;
  height: 58px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-perspective: 500;
  -moz-perspective: 500;
  -ms-perspective: 500;
  perspective: 500;
  -webkit-perspective-origin: 50% 100%;
  -moz-perspective-origin: 50% 100%;
  -ms-perspective-origin: 50% 100%;
  perspective-origin: 50% 100%;
}
.container li > span {
  font-family: 'icons';
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 14px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.container li .inner {
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.container li.placeholder {
  height: 58px;
  background: none;
  border: none;
  padding: 0;
  -webkit-transition: height 0.2s ease-in-out;
  -moz-transition: height 0.2s ease-in-out;
  -ms-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}
.container li.dragging {
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  z-index: 999;
}
.container.editing {
  padding-bottom: 58px;
  /*span {
		visibility: hidden;
	}*/
  /*.inner.selected:before {
		font-family: "icons";
		font-size: 32px;
		content: "9";
		display: block;
		float: left;
		margin-right: 8px;
		margin-top: -8px;
	}*/
}
.container.editing .inner {
  -webkit-transform: translate3d(32px, 0, 0);
  -moz-transform: translate3d(32px, 0, 0);
  -ms-transform: translate3d(32px, 0, 0);
  transform: translate3d(32px, 0, 0);
  opacity: 0.8;
}
.container.editing .inner.selected {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.inner + span {
  text-align: right;
  color: #FF4B19;
}
.inner {
  width: 100%;
  height: 58px;
  position: relative;
  z-index: 999;
  font-weight: bold;
  padding: 16px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #5db300;
  border-bottom: 1px solid #58a900;
  background-image: -moz-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.inner .label {
  float: right;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  height: 58px;
  padding: 18px 8px;
  position: relative;
  top: -16px;
  right: -10px;
  text-align: center;
  min-width: 75px;
}
.inner .label b {
  color: rgba(0, 0, 0, 0.3);
  padding-left: 4px;
}
.inner .label:empty {
  padding: 0;
  min-width: 0;
}
.inner .save {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.inner .save .save-inner {
  margin: 8px;
  padding: 8px 10px;
  font-weight: bold;
  color: #5db300;
  background-color: #fff;
  border-radius: 2px;
  display: block;
}
.inner .save.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.inner .save:hover > .save-inner {
  -webkit-box-shadow: 0 0 20px 4px #fff;
  -moz-box-shadow: 0 0 20px 4px #fff;
  box-shadow: 0 0 20px 4px #fff;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  color: rgba(93, 179, 0, 0.5);
}
.inner .save-inner:after {
  content: "DONE";
}
.inner.add {
  background-color: #6acc00;
}
.inner.done {
  background-color: #737d8c;
  border-color: #6e7887;
}
.inner.done .save-inner {
  color: #737d8c;
}
.inner.done .save:hover > .save-inner {
  color: rgba(171, 177, 186, 0.5);
}
.inner.done .save-inner:after {
  content: "SAVE";
}
.inner.open {
  background-image: -moz-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}
.view[data-view="jobs"] + .inner .save:after {
  content: "SAVE";
}
.overlay {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  top: 58px;
  bottom: 0;
}
.overlay.show {
  opacity: 1;
}
.panel-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.panel {
  position: absolute;
  color: #000;
  width: 100%;
  -webkit-perspective: 500;
  -moz-perspective: 500;
  -ms-perspective: 500;
  perspective: 500;
  -webkit-perspective-origin: 50% 0;
  -moz-perspective-origin: 50% 0;
  -ms-perspective-origin: 50% 0;
  perspective-origin: 50% 0;
}
.panel-container.active .inner-panel {
  opacity: 1;
  -webkit-transform: rotatex(0deg);
  -moz-transform: rotatex(0deg);
  -ms-transform: rotatex(0deg);
  transform: rotatex(0deg);
}
.inner-panel {
  background-color: #f3f3f3;
  padding: 16px;
  opacity: 0.3;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotatex(-90deg);
  -moz-transform: rotatex(-90deg);
  -ms-transform: rotatex(-90deg);
  transform: rotatex(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-backface-visibility: none;
  -webkit-transition-property: opacity, -webkit-transform;
}
.inner-panel header {
  border-bottom: 1px solid #abb1ba;
  padding-bottom: 8px;
}
.inner-panel header h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 125%;
  padding-bottom: 4px;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  transform: scaleX(0.75);
  -webkit-transform-origin: 0;
  -moz-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
}
.inner-panel header .phone {
  color: #abb1ba;
  padding-right: 8px;
}
.inner-panel .marker {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  padding-top: 8px;
  padding-right: 8px;
  font-family: 'icons';
  font-size: 32px;
  text-align: right;
  width: 64px;
  height: 48px;
}
.inner-panel .stopwatch {
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #abb1ba;
}
.inner-panel .stopwatch div {
  display: inline-block;
  height: 100%;
}
.inner-panel .stopwatch .timer {
  width: 43%;
  height: 48px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background-color: #5db300;
  background-image: -moz-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.inner-panel .stopwatch .timer.active {
  background-color: #cc2c00;
  background-image: -moz-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: radial-gradient(bottom, ellipse cover, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}
.inner-panel .stopwatch .start-time {
  width: 25%;
  text-align: left;
  float: left;
  padding: 8px 0;
}
.inner-panel .stopwatch .end-time {
  width: 25%;
  text-align: right;
  float: right;
  padding: 8px 0;
}
.inner-panel .stopwatch .start-time:before {
  display: block;
  content: "START";
  color: #abb1ba;
  font-size: 12px;
  height: 12px;
}
.inner-panel .stopwatch .end-time:before {
  display: block;
  content: "FINISH";
  color: #abb1ba;
  font-size: 12px;
  height: 12px;
  padding-right: 1px;
}
.history {
  margin-top: -8px;
}
.history header {
  border-bottom: 1px solid #abb1ba;
  margin-bottom: 16px;
  padding: 0;
}
.history h2 {
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
  color: #5c6470;
  background-color: #f3f3f3;
  display: inline-block;
  position: relative;
  margin: 0;
  padding-right: 16px;
  bottom: -12px;
}
.history b {
  padding-right: 16px;
  font-size: 18px;
  color: #000;
}
.history div[data-date] {
  padding: 8px 0;
  font-size: 15px;
  color: #737d8c;
}
.history div[data-date].touch > b {
  color: #5db300;
}
.history div[data-date]:before {
  content: "8";
  font-family: "icons";
  font-size: 15px;
  color: #fff;
  display: block;
  float: right;
  margin-top: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 5px;
  width: 20px;
  height: 20px;
  background-color: #5db300;
  border-radius: 20px;
}
.tabs-container {
  padding: 0;
  overflow: hidden;
}
.tab-nav {
  background-color: #d5d8dd;
  height: 42px;
}
.tab-nav .tab {
  display: inline-block;
  height: 100%;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
  color: #737d8c;
}
.tab-nav .tab.active {
  background-color: #f3f3f3;
  color: #000;
  /*border-color: lighten(@gray, 10%);
		border-style: solid;
		border-width: 0 1px;*/
}
.tab-panel {
  padding: 16px;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
}
.tab-panel.active {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.tab-panel.active ~ .tab-panel {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.right {
  float: right;
  right: 0;
}
.left {
  float: left;
  left: 0;
}
.disabled {
  opacity: 0.5;
}
.noscroll {
  overflow: hidden;
  margin: 0;
}
.button-group {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 8px;
}
.button-group .button {
  border-radius: 0;
  float: left;
  margin-right: 1px;
}
.button-group .button:first-of-type {
  border-radius: 2px 0 0 2px;
}
.button-group .button:last-of-type {
  border-radius: 0 2px 2px 0;
}
.button {
  background-color: #fff;
  color: #2e3238;
  border-radius: 2px;
  padding: 8px;
  font-size: 14px;
}
.arrow-after {
  content: "";
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  width: 0;
  vertical-align: middle;
  margin-left: 6px;
  margin-top: -2px;
}
.arrow-after-down:after {
  content: "";
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  width: 0;
  vertical-align: middle;
  margin-left: 6px;
  margin-top: -2px;
  border-top: 4px solid white;
}
.arrow-after-up:after {
  content: "";
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  width: 0;
  vertical-align: middle;
  margin-left: 6px;
  margin-top: -2px;
  border-bottom: 4px solid white;
}
.borderless {
  border: none;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.borderless:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
}
.dashed {
  border-style: dashed !important;
}
form {
  padding-top: 8px;
}
form input[type="checkbox"] {
  display: none;
}
form input[type="checkbox"] + i {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  font-size: 32px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
form input[type="checkbox"] + i:before {
  font-family: "icons";
  font-style: normal;
  content: "3";
  color: #abb1ba;
}
form input[type="checkbox"]:checked + i:before {
  content: "4";
  color: #5db300;
}
form label {
  display: block;
  height: 42px;
  width: 100%;
}
form label a,
form label .glyph {
  display: inline-block;
  vertical-align: middle;
}
form label .glyph {
  color: #737d8c;
}
textarea {
  padding: 8px;
  width: 100%;
  height: 92px;
  font-size: 16px;
}
textarea + label {
  margin-top: 8px;
}
.form-group {
  margin: 8px 0 16px;
  overflow: hidden;
  border-radius: 2px;
}
.form-group label {
  margin-top: 2px;
  background-color: #fff;
}
.form-group label i {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 0;
  color: #abb1ba;
  float: left;
  font-style: normal;
  width: 0;
  position: relative;
  z-index: 1;
  left: 8px;
  top: -1px;
}
.form-group label:first-of-type {
  margin-top: 0;
}
.form-group label i + input {
  padding-left: 24px;
}
.form-group .label {
  width: 38%;
  height: 100%;
  padding: 8px;
  float: left;
  text-align: right;
  font-weight: bold;
  background-color: #abb1ba;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.6;
}
.form-group input {
  width: 62%;
  height: 100%;
  padding-left: 8px;
  padding-right: 0;
  float: left;
  font-size: 16px;
  line-height: 1.6;
}
.form-group input.small {
  width: 50px;
}
.form-group input.small + i {
  left: 0;
}
.form-group .inc-up,
.form-group .inc-down {
  font-family: "icons";
  font-size: 32px;
  width: 48px;
  height: 100%;
  display: inline-block;
  text-align: center;
  float: right;
}
.form-group .inc-up.touch,
.form-group .inc-down.touch {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.icon {
  font-family: 'icons';
  font-size: 32px;
  line-height: 1;
  width: 58px;
  height: 58px;
  padding: 12px;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  top: 0;
}
/*.icon.active, .button.active {
	//text-shadow: 0 0 10px #fff, 0 0 30px #fff, 0 0 50px #fff, 0 0 60px #fff;
}*/
.icon.touch,
.button.touch {
  overflow: visible;
}
.icon.touch:before,
.button.touch:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-radius: 1px;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-box-shadow: 0 0 30px 20px #fff;
  -moz-box-shadow: 0 0 30px 20px #fff;
  box-shadow: 0 0 30px 20px #fff;
}
.glyph {
  position: relative;
  font-family: "icons";
  font-size: 24px;
  display: inline-block;
  padding: 8px;
}
.toolbar > span[data-action="prev"] {
  width: 48px;
  right: 48px;
}
.toolbar > span[data-action="next"] {
  width: 48px;
}
.toolbar > span[data-action="today"] {
  position: absolute;
  padding: 18px 12px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
/*.toolbar .icon {
	background-image: url("../img/icons.svg");
	background-repeat: no-repeat;
	background-size: auto 32px;
	text-indent: -1000px;
}

[data-action="calendar"] {
	background-position: 0 0;
}

[data-action="add"] {
	background-position: -32px 0;
}

[data-action="back"] {
	background-position: -160px 0;
}

[data-action="foward"] {
	background-position: -192px 0;
}

[data-action="prev"] {
	background-position: -224px 0;
}

[data-action="next"] {
	background-position: -256px 0;
}

[data-role="spacer"] {
	background-position: 0 1000px;
}*/
.datepicker {
  width: 100%;
  overflow: visible;
}
.calendar:after,
.days:after {
  content: ".";
  width: 100%;
  height: 0;
  clear: both;
  visibility: hidden;
}
.datepicker .nav {
  display: none;
  font-weight: bold;
  width: 100%;
  padding: 4px 0;
  background-color: #000;
  color: #777777;
  overflow: hidden;
  *zoom: 1;
}
.datepicker .nav span {
  display: block;
  float: left;
  text-align: center;
  height: 28px;
  line-height: 28px;
  position: relative;
}
.datepicker .nav .bg {
  width: 100%;
  background-color: #000;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}
.datepicker .nav .fg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.datepicker .button {
  cursor: pointer;
  padding: 0 4px;
}
.datepicker .button:hover {
  background-color: #777777;
  color: white;
}
.datepicker .months {
  float: left;
  margin-left: 4px;
}
.datepicker .months .name {
  width: 72px;
  padding: 0;
}
.datepicker .years {
  float: right;
  margin-right: 4px;
}
.datepicker .years .name {
  width: 36px;
  padding: 0;
}
.datepicker .dow {
  float: left;
  width: 14.2%;
  padding: 4px 0 8px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
}
.datepicker .days div {
  float: left;
  padding: 7% 0;
  width: 14.2%;
  line-height: 1em;
}
.datepicker .calendar {
  overflow: visible;
  padding: 6px;
}
.datepicker .days {
  clear: left;
  overflow: visible;
  line-height: 0;
}
.datepicker .days > div {
  cursor: pointer;
  background-color: rgba(57, 63, 70, 0.7);
  border: 1px solid #000;
  position: relative;
}
/*.datepicker .days > div:nth-child(7n) {
	//.box-shadow(8px 0 0 #000);
}*/
.datepicker .days > div .day {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  margin-top: -0.7em;
}
.datepicker .days .arrow {
  width: 0;
  height: 0;
  border-color: transparent;
}
.datepicker .days > div.dragover .day {
  width: 48px;
  top: -8px;
  left: 50%;
  margin-left: -24px;
  padding: 16px 0;
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: 0 0 8px #000;
  -moz-box-shadow: 0 0 8px #000;
  box-shadow: 0 0 8px #000;
  -webkit-transform: translatey(-70px);
  -moz-transform: translatey(-70px);
  -ms-transform: translatey(-70px);
  transform: translatey(-70px);
  border-radius: 2px;
}
.datepicker .days > div.dragover .day .arrow {
  position: absolute;
  bottom: -29px;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid #fff;
  left: 50%;
  margin-left: -24px;
  border-radius: 2px 0 0 2px;
}
/*.datepicker .days > div:hover {
	background-color: @green;
	color: white;
}*/
.datepicker .days > div.overlap {
  background-color: #000;
  color: #888;
}
.datepicker .days > div.today {
  background-color: #737d8c;
  color: #fff;
}
.datepicker .days > div.selected {
  background-color: #5db300;
  background-image: -moz-radial-gradient(bottom, ellipse cover, rgba(161, 206, 76, 0.8) 0%, #7eb300 100%);
  background-image: -webkit-radial-gradient(bottom, ellipse cover, rgba(161, 206, 76, 0.8) 0%, #7eb300 100%);
  background-image: -o-radial-gradient(bottom, ellipse cover, rgba(161, 206, 76, 0.8) 0%, #7eb300 100%);
  background-image: -ms-radial-gradient(bottom, ellipse cover, rgba(161, 206, 76, 0.8) 0%, #7eb300 100%);
  background-image: radial-gradient(bottom, ellipse cover, rgba(161, 206, 76, 0.8) 0%, #7eb300 100%);
  color: #fff;
}
.toolbar > span[data-action="today"] {
  position: absolute;
  padding: 18px 12px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.container > .today {
  display: none;
}
@media only screen and (min-width: 768px) and (orientation: landscape) {
  .page {
    position: relative;
    display: inline-block;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 33.3%;
    float: left;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }
  .page:first-of-type {
    border-right: 2px solid transparent;
  }
  /*.page.active {
		.transform(translatex(0));
	}

	.page.active ~ .page {
		.transform(translatex(0));
	}*/
  .toolbar .icon[data-action] {
    display: none;
  }
  .toolbar .icon[data-action][data-action="next"] {
    display: block;
  }
  .toolbar .icon[data-action][data-action="prev"] {
    display: block;
  }
  .toolbar .icon[data-action][data-action="edit"] {
    display: block;
    /*font-size: 28px;
			padding-top: 14px;*/
  }
  .toolbar.bottom > span {
    width: 50%;
  }
  .toolbar.bottom > span[data-action="move"] {
    display: none;
  }
  .toolbar input {
    right: 12px;
  }
  .datepicker .calendar {
    padding: 0;
    padding-left: 4px;
  }
  header.arrow-after-down:after,
  header.arrow-after-up:after {
    display: none;
  }
  .container > .today {
    display: block;
    text-align: center;
    font-size: 58px;
    position: absolute;
    bottom: 18%;
    width: 100%;
  }
  .container > .today:before {
    content: "TODAY";
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 0.6;
  }
  [data-view="calendar"] .container {
    min-height: 700px;
  }
}
