@charset "UTF-8";
/*
 * Swiper 2.7.0
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2014, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: August 30, 2014
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px, 0, 0);
  transition-timing-function: ease;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  float: left;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}
/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
  /* Specify Swiper's Size: */
  /*width:200px;
	height: 100px;*/
}
.swiper-slide {
  /* Specify Slides's Size: */
  /*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
  /* Specific active slide styling: */
}
.swiper-slide-visible {
  /* Specific visible slide styling: */
}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
  /* Stylize pagination button: */
}
.swiper-active-switch {
  /* Specific active button style: */
}
.swiper-visible-switch {
  /* Specific visible button style: */
}
/* required styles */
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
  max-width: none !important;
}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-tile-pane {
  z-index: 2;
}
.leaflet-objects-pane {
  z-index: 3;
}
.leaflet-overlay-pane {
  z-index: 4;
}
.leaflet-shadow-pane {
  z-index: 5;
}
.leaflet-marker-pane {
  z-index: 6;
}
.leaflet-popup-pane {
  z-index: 7;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 7;
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
/* cursors */
.leaflet-clickable {
  cursor: pointer;
}
.leaflet-container {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #0078A8;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}
.leaflet-control-zoom-out {
  font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
  font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 24px;
}
/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  margin: 0 auto;
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}
.ui-timepicker-div dl {
  text-align: left;
}
.ui-timepicker-div dl dt {
  float: left;
  clear: left;
  padding: 0 0 0 5px;
}
.ui-timepicker-div dl dd {
  margin: 0 10px 10px 40%;
}
.ui-timepicker-div td {
  font-size: 90%;
}
.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
.ui-timepicker-rtl {
  direction: rtl;
}
.ui-timepicker-rtl dl {
  text-align: right;
  padding: 0 5px 0 0;
}
.ui-timepicker-rtl dl dt {
  float: right;
  clear: right;
}
.ui-timepicker-rtl dl dd {
  margin: 0 40% 10px 10px;
}
.button {
  padding: 5px;
}
.button.icon {
  padding-left: 25px;
}
.button.icon .icon {
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 5px;
  height: 18px;
  width: 18px;
  background: #999 url(../css/themes/images/icons-18-white-pack.png);
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  box-shadow: 0 1px 0 #ffffff;
}
/* first row */
.ui-icon-plus {
  background-position: 0 0;
}
.ui-icon-minus {
  background-position: -36px 0;
}
.ui-icon-delete {
  background-position: -72px 0;
}
.ui-icon-arrow-r {
  background-position: -108px 0;
}
.ui-icon-arrow-l {
  background-position: -144px 0;
}
.ui-icon-arrow-u {
  background-position: -180px 0;
}
.ui-icon-arrow-d {
  background-position: -216px 0;
}
.ui-icon-check {
  background-position: -252px 0;
}
.ui-icon-gear {
  background-position: -288px 0;
}
.ui-icon-refresh {
  background-position: -324px 0;
}
.ui-icon-forward {
  background-position: -360px 0;
}
.ui-icon-back {
  background-position: -396px 0;
}
.ui-icon-grid {
  background-position: -432px 0;
}
.ui-icon-star {
  background-position: -468px 0;
}
.ui-icon-alert {
  background-position: -504px 0;
}
.ui-icon-info {
  background-position: -540px 0;
}
.ui-icon-home {
  background-position: -576px 0;
}
.ui-icon-search,
.ui-icon-searchfield:after {
  background-position: -612px 0;
}
.ui-icon-checkbox-off {
  background-position: -684px 0;
}
.ui-icon-checkbox-on {
  background-position: -648px 0;
}
.ui-icon-radio-off {
  background-position: -756px 0;
}
.ui-icon-radio-on {
  background-position: -718px 0;
}
/* begin icon pack definitions */
/* second row */
.ui-icon-email {
  background-position: 0 -18px;
}
.ui-icon-page {
  background-position: -36px -18px;
}
.ui-icon-question {
  background-position: -72px -18px;
}
.ui-icon-foursquare {
  background-position: -108px -18px;
}
.ui-icon-twitter {
  background-position: -144px -18px;
}
.ui-icon-facebook {
  background-position: -180px -18px;
}
.ui-icon-dollar {
  background-position: -216px -18px;
}
.ui-icon-euro {
  background-position: -252px -18px;
}
.ui-icon-pound {
  background-position: -288px -18px;
}
.ui-icon-apple {
  background-position: -324px -18px;
}
.ui-icon-chat {
  background-position: -360px -18px;
}
.ui-icon-trash {
  background-position: -396px -18px;
}
.ui-icon-bell {
  background-position: -432px -18px;
}
.ui-icon-mappin {
  background-position: -468px -18px;
}
.ui-icon-direction {
  background-position: -504px -18px;
}
.ui-icon-heart {
  background-position: -540px -18px;
}
.ui-icon-wrench {
  background-position: -576px -18px;
}
.ui-icon-play {
  background-position: -612px -18px;
}
.ui-icon-pause {
  background-position: -648px -18px;
}
.ui-icon-stop {
  background-position: -684px -18px;
}
.ui-icon-person {
  background-position: -720px -18px;
}
.ui-icon-music {
  background-position: -756px -18px;
}
/* third row */
.ui-icon-rss {
  background-position: 0 -36px;
}
.ui-icon-wifi {
  background-position: -36px -36px;
}
.ui-icon-phone {
  background-position: -72px -36px;
}
.ui-icon-power {
  background-position: -108px -36px;
}
.ui-icon-lock {
  background-position: -144px -36px;
}
.ui-icon-flag {
  background-position: -180px -36px;
}
.ui-icon-calendar {
  background-position: -216px -36px;
}
.ui-icon-lightning {
  background-position: -252px -36px;
}
.ui-icon-drink {
  background-position: -288px -36px;
}
.ui-icon-android {
  background-position: -324px -36px;
}
.ui-icon-edit {
  background-position: -360px -36px;
}
#sidebar {
  position: absolute;
  top: 45px;
  left: 0px;
  bottom: 0px;
  width: 350px;
  background: #fcc;
  background: #fff;
  box-shadow: inset -1px -1px 3px rgba(102, 102, 102, 0.5), inset 0px 1px 3px rgba(102, 102, 102, 0.5);
  background: #eaefef;
  /* Old browsers */
  background: -moz-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #eaefef), color-stop(50%, #ffffff), color-stop(100%, #eaefef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* IE10+ */
  background: linear-gradient(to right, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eaefef', endColorstr='#eaefef', GradientType=1);
  /* IE6-9 */
  text-align: left;
}
#sidebar .search label {
  display: none;
}
#sideBar .search {
  color: #ccc;
  height: 32px;
  border-top: 1px solid #68686a;
  border-bottom: 1px solid #131315;
  border-bottom: 1px solid #ccc;
  padding: 5px;
  box-shadow: inset 0px -1px 2px #ffffff, 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.search input {
  margin-top: 4px;
  font-size: 18px;
  background: #f9f9f9;
  border: 1px solid #fff;
  box-shadow: 0px 0px 3px #ccc;
  height: 25px;
  width: 200px;
  position: relative;
}
.search input .icon {
  display: inline-block;
  position: absolute;
  right: 100px;
  top: 8px;
  height: 18px;
  width: 18px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  background: #999 url(../css/themes/images/icons-18-white-pack.png);
  box-shadow: 0 1px 0 #ffffff;
  border: 1px solid #f00;
}
.operations .button,
.form .button {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0px 1px 0px #fff, inset 0px 1px 0px 0px #fff, inset 0px -1px 0px 0px #ddd;
  color: #555;
  text-shadow: -1px -1px 5px #ffffff;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.operations .button.active {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 3px 1px #ddd, inset -1px -1px 3px 0px #ddd;
  color: #000;
  text-shadow: -1px -1px 5px #ffffff;
}
.button.disabled {
  color: eee;
  text-shadow: none;
  background-color: #ccc;
}
.operations .addButton {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 7px;
}
#sidebar .form {
  box-shadow: inset -1px -1px 3px rgba(102, 102, 102, 0.5), inset 0px 1px 3px rgba(102, 102, 102, 0.5);
  background: #eaefef;
  /* Old browsers */
  background: -moz-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #eaefef), color-stop(50%, #ffffff), color-stop(100%, #eaefef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* IE10+ */
  background: linear-gradient(to right, #eaefef 0%, #ffffff 50%, #eaefef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eaefef', endColorstr='#eaefef', GradientType=1);
  /* IE6-9 */
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 10;
  display: none;
}
.form fieldset {
  border: 1px solid #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 5px;
}
.form fieldset legend {
  margin-left: 5px;
  padding: 0px 3px;
  color: #0b77b7;
}
.form input,
.form textarea {
  margin-top: 4px;
  font-size: 18px;
  background: #f9f9f9;
  border: 1px solid #fff;
  box-shadow: 0px 0px 3px #ccc;
  height: 25px;
  width: 315px;
  margin: 5px 10px;
  position: relative;
  display: inline-block;
}
.form input:active,
.form textarea:active,
.form input:focus,
.form textarea:focus {
  background: #fff;
  box-shadow: 0px 0px 5px #0b77b7;
  border: #0b77b7;
}
.form fieldset > div {
  position: relative;
}
.locationButtons {
  display: inline-block;
  position: relative;
  width: 150px;
  margin: 5px;
}
#pickupDate {
  width: 140px;
}
#pickupTime {
  width: 65px;
}
#noticeMins {
  width: 75px;
}
#addJobPane .todayButton {
  width: 60px;
}
#addJobPane .nowButton {
  width: 40px;
}
/* default datepicker has way too much spacing */
#ui-datepicker-div {
  font-size: 11px;
}
/* Today and Now buttons do not work as expected - hide them! */
.ui-datepicker-current {
  display: none;
}
#pickupAddress {
  width: 320px;
  height: 100px;
}
.form .button {
  display: inline-block;
  position: relative;
}
#addJobPane .todayButton .icon,
#addJobPane .nowButton .icon {
  background-position: -144px 0;
}
#addJobPane .confirmButton {
  clear: both;
  display: block;
  margin: 0px 5px;
}
#addJobPane .confirmButton .icon {
  background-position: -252px 0;
}
.buttonBar {
  text-align: center;
  padding: 5px 0px;
}
#topmenubar .buttonBar {
  position: absolute;
  right: 5px;
  top: 0px;
}
#topmenubar .buttonBar .button {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #000;
  box-shadow: 0px 1px 0px #68686a, inset 0px 1px 0px 0px #68686a, inset 0px -1px 0px 0px #000;
  position: relative;
  color: #ccc;
}
#topmenubar .button:hover {
  color: #fff;
}
#topmenubar .buttonBar .button .icon {
  background-color: #333;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}
#logout.button .icon {
  background-position: -108px -36px;
}
#options.button .icon {
  background-position: -288px 0;
}
#jobs.button .icon,
#drivers.button .icon,
#customers.button .icon {
  background-position: -216px 0;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
ul.tagit {
  padding: 1px 5px;
  overflow: auto;
  margin-left: inherit;
  /* usually we don't want the regular ul margins. */
  margin-right: inherit;
}
ul.tagit li {
  display: block;
  float: left;
  margin: 2px 5px 2px 0;
}
ul.tagit li.tagit-choice {
  position: relative;
  line-height: inherit;
}
input.tagit-hidden-field {
  display: none;
}
ul.tagit li.tagit-choice-read-only {
  padding: .2em .5em .2em .5em;
}
ul.tagit li.tagit-choice-editable {
  padding: .2em 18px .2em .5em;
}
ul.tagit li.tagit-new {
  padding: .25em 4px .25em 0;
}
ul.tagit li.tagit-choice a.tagit-label {
  cursor: pointer;
  text-decoration: none;
}
ul.tagit li.tagit-choice .tagit-close {
  cursor: pointer;
  position: absolute;
  right: .1em;
  top: 50%;
  margin-top: -8px;
  line-height: 17px;
}
/* used for some custom themes that don't need image icons */
ul.tagit li.tagit-choice .tagit-close .text-icon {
  display: none;
}
ul.tagit li.tagit-choice input {
  display: block;
  float: left;
  margin: 2px 5px 2px 0;
}
ul.tagit input[type="text"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  background-color: inherit;
  outline: none;
}
.mui-textfield .tagit-hidden-field,
.tagit-hidden-field {
  display: none;
}
#notifications {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  width: auto;
  height: 100%;
  right: 0px;
  padding-top: 55px;
  box-sizing: border-box;
  z-index: 20;
}
.notification,
.notification button {
  font-size: calc(1.7vmin);
}
.notification {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.156863) 0px 2px 2px 0px, rgba(0, 0, 0, 0.117647) 0px 0px 2px 0px;
  margin: 2px;
  padding: 1px 3px;
}
.notification button {
  background-color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  border: rgba(0, 0, 0, 0.870588);
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.117647) 0px 0px 2px 0px, rgba(0, 0, 0, 0.2) 0px 2px 2px 0px;
  padding: 1% 2%;
  padding: 0.1vmin 0.2vmin;
  margin: 1%;
  white-space: nowrap;
}
.sendMessage button {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
  background-color: #FFF;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  height: 36px;
  padding: 0 26px;
  margin-top: 6px;
  margin-bottom: 6px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
}
.notification button.primary,
.sendMessage button.primary {
  color: #FFF;
  background-color: #2196F3;
}
.incomingCall .header {
  display: none;
  width: 100%;
  padding: 2px;
}
.incomingCall.hasHeader .header {
  display: inline-block;
  background: #2196F3;
  color: #fff;
}
.genericMessage .header {
  display: none;
  width: 100%;
  padding: 2px;
}
.genericMessage.hasHeader .header {
  display: inline-block;
  background: #2196F3;
  color: #fff;
}
.incomingCall .title {
  color: rgba(0, 0, 0, 0.54);
  font-size: 90%;
}
.incomingCall .number {
  color: rgba(0, 0, 0, 0.54);
}
.sendMessage {
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 400px;
}
.sendMessage .message {
  display: block;
  padding-top: 15px;
  margin-bottom: 20px;
  position: relative;
}
.buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.messageDialog .sentText {
  border: 2px solid #999900;
  border-radius: 5px;
  padding: 3px;
  background: #ff0;
  margin-bottom: 5px;
}
.messageDialog .responses {
  display: flex;
  flex-direction: column;
}
.messageDialog .responses .response {
  margin-bottom: 3px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.messageDialog .response .responseText,
.driverMessage .message {
  border: 2px solid #00877e;
  border-radius: 5px;
  padding: 3px;
  background: #00baae;
  color: #00211f;
  margin-right: 3px;
}
.messageDialog .response .from,
.driverMessage .message .from {
  color: #666;
  font-size: 12px;
}
.driverMessage .message .from {
  color: #666;
  font-size: 16px;
}
#sendMessage {
  display: none;
}
#sendMessage.enabled {
  color: #f00;
  position: absolute;
  top: 45px;
  cursor: pointer;
  left: 350px;
  background: #3a3a3d url(../css/themes/images/icons-36-white-pack.png);
  background-position: -718px -38px;
  content: " ";
  display: inline-block;
  height: 36px;
  width: 38px;
  border-radius: 0px 0px 8px 0px;
  border-bottom: 2px solid #131315;
  border-right: 2px solid #131315;
}
/**
 * MUI Container module
 */
.mui-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.mui-container:before,
.mui-container:after {
  content: " ";
  display: table;
}
.mui-container:after {
  clear: both;
}
@media (min-width: 544px) {
  .mui-container {
    max-width: 570px;
  }
}
@media (min-width: 768px) {
  .mui-container {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  .mui-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .mui-container {
    max-width: 1170px;
  }
}
.mui-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.mui-container-fluid:before,
.mui-container-fluid:after {
  content: " ";
  display: table;
}
.mui-container-fluid:after {
  clear: both;
}
/**
 * MUI Grid module
 */
.mui-row {
  margin-left: -15px;
  margin-right: -15px;
}
.mui-row:before,
.mui-row:after {
  content: " ";
  display: table;
}
.mui-row:after {
  clear: both;
}
.mui-col-xs-1,
.mui-col-sm-1,
.mui-col-md-1,
.mui-col-lg-1,
.mui-col-xs-2,
.mui-col-sm-2,
.mui-col-md-2,
.mui-col-lg-2,
.mui-col-xs-3,
.mui-col-sm-3,
.mui-col-md-3,
.mui-col-lg-3,
.mui-col-xs-4,
.mui-col-sm-4,
.mui-col-md-4,
.mui-col-lg-4,
.mui-col-xs-5,
.mui-col-sm-5,
.mui-col-md-5,
.mui-col-lg-5,
.mui-col-xs-6,
.mui-col-sm-6,
.mui-col-md-6,
.mui-col-lg-6,
.mui-col-xs-7,
.mui-col-sm-7,
.mui-col-md-7,
.mui-col-lg-7,
.mui-col-xs-8,
.mui-col-sm-8,
.mui-col-md-8,
.mui-col-lg-8,
.mui-col-xs-9,
.mui-col-sm-9,
.mui-col-md-9,
.mui-col-lg-9,
.mui-col-xs-10,
.mui-col-sm-10,
.mui-col-md-10,
.mui-col-lg-10,
.mui-col-xs-11,
.mui-col-sm-11,
.mui-col-md-11,
.mui-col-lg-11,
.mui-col-xs-12,
.mui-col-sm-12,
.mui-col-md-12,
.mui-col-lg-12 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.mui-col-xs-1,
.mui-col-xs-2,
.mui-col-xs-3,
.mui-col-xs-4,
.mui-col-xs-5,
.mui-col-xs-6,
.mui-col-xs-7,
.mui-col-xs-8,
.mui-col-xs-9,
.mui-col-xs-10,
.mui-col-xs-11,
.mui-col-xs-12 {
  float: left;
}
.mui-col-xs-1 {
  width: 8.33333%;
}
.mui-col-xs-2 {
  width: 16.66667%;
}
.mui-col-xs-3 {
  width: 25%;
}
.mui-col-xs-4 {
  width: 33.33333%;
}
.mui-col-xs-5 {
  width: 41.66667%;
}
.mui-col-xs-6 {
  width: 50%;
}
.mui-col-xs-7 {
  width: 58.33333%;
}
.mui-col-xs-8 {
  width: 66.66667%;
}
.mui-col-xs-9 {
  width: 75%;
}
.mui-col-xs-10 {
  width: 83.33333%;
}
.mui-col-xs-11 {
  width: 91.66667%;
}
.mui-col-xs-12 {
  width: 100%;
}
.mui-col-xs-offset-0 {
  margin-left: 0%;
}
.mui-col-xs-offset-1 {
  margin-left: 8.33333%;
}
.mui-col-xs-offset-2 {
  margin-left: 16.66667%;
}
.mui-col-xs-offset-3 {
  margin-left: 25%;
}
.mui-col-xs-offset-4 {
  margin-left: 33.33333%;
}
.mui-col-xs-offset-5 {
  margin-left: 41.66667%;
}
.mui-col-xs-offset-6 {
  margin-left: 50%;
}
.mui-col-xs-offset-7 {
  margin-left: 58.33333%;
}
.mui-col-xs-offset-8 {
  margin-left: 66.66667%;
}
.mui-col-xs-offset-9 {
  margin-left: 75%;
}
.mui-col-xs-offset-10 {
  margin-left: 83.33333%;
}
.mui-col-xs-offset-11 {
  margin-left: 91.66667%;
}
.mui-col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 544px) {
  .mui-col-sm-1,
  .mui-col-sm-2,
  .mui-col-sm-3,
  .mui-col-sm-4,
  .mui-col-sm-5,
  .mui-col-sm-6,
  .mui-col-sm-7,
  .mui-col-sm-8,
  .mui-col-sm-9,
  .mui-col-sm-10,
  .mui-col-sm-11,
  .mui-col-sm-12 {
    float: left;
  }
  .mui-col-sm-1 {
    width: 8.33333%;
  }
  .mui-col-sm-2 {
    width: 16.66667%;
  }
  .mui-col-sm-3 {
    width: 25%;
  }
  .mui-col-sm-4 {
    width: 33.33333%;
  }
  .mui-col-sm-5 {
    width: 41.66667%;
  }
  .mui-col-sm-6 {
    width: 50%;
  }
  .mui-col-sm-7 {
    width: 58.33333%;
  }
  .mui-col-sm-8 {
    width: 66.66667%;
  }
  .mui-col-sm-9 {
    width: 75%;
  }
  .mui-col-sm-10 {
    width: 83.33333%;
  }
  .mui-col-sm-11 {
    width: 91.66667%;
  }
  .mui-col-sm-12 {
    width: 100%;
  }
  .mui-col-sm-offset-0 {
    margin-left: 0%;
  }
  .mui-col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .mui-col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .mui-col-sm-offset-3 {
    margin-left: 25%;
  }
  .mui-col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .mui-col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .mui-col-sm-offset-6 {
    margin-left: 50%;
  }
  .mui-col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .mui-col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .mui-col-sm-offset-9 {
    margin-left: 75%;
  }
  .mui-col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .mui-col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .mui-col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .mui-col-md-1,
  .mui-col-md-2,
  .mui-col-md-3,
  .mui-col-md-4,
  .mui-col-md-5,
  .mui-col-md-6,
  .mui-col-md-7,
  .mui-col-md-8,
  .mui-col-md-9,
  .mui-col-md-10,
  .mui-col-md-11,
  .mui-col-md-12 {
    float: left;
  }
  .mui-col-md-1 {
    width: 8.33333%;
  }
  .mui-col-md-2 {
    width: 16.66667%;
  }
  .mui-col-md-3 {
    width: 25%;
  }
  .mui-col-md-4 {
    width: 33.33333%;
  }
  .mui-col-md-5 {
    width: 41.66667%;
  }
  .mui-col-md-6 {
    width: 50%;
  }
  .mui-col-md-7 {
    width: 58.33333%;
  }
  .mui-col-md-8 {
    width: 66.66667%;
  }
  .mui-col-md-9 {
    width: 75%;
  }
  .mui-col-md-10 {
    width: 83.33333%;
  }
  .mui-col-md-11 {
    width: 91.66667%;
  }
  .mui-col-md-12 {
    width: 100%;
  }
  .mui-col-md-offset-0 {
    margin-left: 0%;
  }
  .mui-col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .mui-col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .mui-col-md-offset-3 {
    margin-left: 25%;
  }
  .mui-col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .mui-col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .mui-col-md-offset-6 {
    margin-left: 50%;
  }
  .mui-col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .mui-col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .mui-col-md-offset-9 {
    margin-left: 75%;
  }
  .mui-col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .mui-col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .mui-col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .mui-col-lg-1,
  .mui-col-lg-2,
  .mui-col-lg-3,
  .mui-col-lg-4,
  .mui-col-lg-5,
  .mui-col-lg-6,
  .mui-col-lg-7,
  .mui-col-lg-8,
  .mui-col-lg-9,
  .mui-col-lg-10,
  .mui-col-lg-11,
  .mui-col-lg-12 {
    float: left;
  }
  .mui-col-lg-1 {
    width: 8.33333%;
  }
  .mui-col-lg-2 {
    width: 16.66667%;
  }
  .mui-col-lg-3 {
    width: 25%;
  }
  .mui-col-lg-4 {
    width: 33.33333%;
  }
  .mui-col-lg-5 {
    width: 41.66667%;
  }
  .mui-col-lg-6 {
    width: 50%;
  }
  .mui-col-lg-7 {
    width: 58.33333%;
  }
  .mui-col-lg-8 {
    width: 66.66667%;
  }
  .mui-col-lg-9 {
    width: 75%;
  }
  .mui-col-lg-10 {
    width: 83.33333%;
  }
  .mui-col-lg-11 {
    width: 91.66667%;
  }
  .mui-col-lg-12 {
    width: 100%;
  }
  .mui-col-lg-offset-0 {
    margin-left: 0%;
  }
  .mui-col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .mui-col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .mui-col-lg-offset-3 {
    margin-left: 25%;
  }
  .mui-col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .mui-col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .mui-col-lg-offset-6 {
    margin-left: 50%;
  }
  .mui-col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .mui-col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .mui-col-lg-offset-9 {
    margin-left: 75%;
  }
  .mui-col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .mui-col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .mui-col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .mui-col-xl-1,
  .mui-col-xl-2,
  .mui-col-xl-3,
  .mui-col-xl-4,
  .mui-col-xl-5,
  .mui-col-xl-6,
  .mui-col-xl-7,
  .mui-col-xl-8,
  .mui-col-xl-9,
  .mui-col-xl-10,
  .mui-col-xl-11,
  .mui-col-xl-12 {
    float: left;
  }
  .mui-col-xl-1 {
    width: 8.33333%;
  }
  .mui-col-xl-2 {
    width: 16.66667%;
  }
  .mui-col-xl-3 {
    width: 25%;
  }
  .mui-col-xl-4 {
    width: 33.33333%;
  }
  .mui-col-xl-5 {
    width: 41.66667%;
  }
  .mui-col-xl-6 {
    width: 50%;
  }
  .mui-col-xl-7 {
    width: 58.33333%;
  }
  .mui-col-xl-8 {
    width: 66.66667%;
  }
  .mui-col-xl-9 {
    width: 75%;
  }
  .mui-col-xl-10 {
    width: 83.33333%;
  }
  .mui-col-xl-11 {
    width: 91.66667%;
  }
  .mui-col-xl-12 {
    width: 100%;
  }
  .mui-col-xl-offset-0 {
    margin-left: 0%;
  }
  .mui-col-xl-offset-1 {
    margin-left: 8.33333%;
  }
  .mui-col-xl-offset-2 {
    margin-left: 16.66667%;
  }
  .mui-col-xl-offset-3 {
    margin-left: 25%;
  }
  .mui-col-xl-offset-4 {
    margin-left: 33.33333%;
  }
  .mui-col-xl-offset-5 {
    margin-left: 41.66667%;
  }
  .mui-col-xl-offset-6 {
    margin-left: 50%;
  }
  .mui-col-xl-offset-7 {
    margin-left: 58.33333%;
  }
  .mui-col-xl-offset-8 {
    margin-left: 66.66667%;
  }
  .mui-col-xl-offset-9 {
    margin-left: 75%;
  }
  .mui-col-xl-offset-10 {
    margin-left: 83.33333%;
  }
  .mui-col-xl-offset-11 {
    margin-left: 91.66667%;
  }
  .mui-col-xl-offset-12 {
    margin-left: 100%;
  }
}
/**
 * MUI Typography module
 */
.mui--text-display4 {
  font-weight: 300;
  font-size: 112px;
  line-height: 112px;
}
.mui--text-display3 {
  font-weight: 400;
  font-size: 56px;
  line-height: 56px;
}
.mui--text-display2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 48px;
}
.mui--text-display1,
h1 {
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;
}
.mui--text-headline,
h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
.mui--text-title,
h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.mui--text-subhead,
h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.mui--text-body2,
h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.mui--text-body1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.mui--text-caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.mui--text-menu {
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
}
.mui--text-button {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}
/**
 * MUI Panel module
 */
.mui-panel {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0;
  background-color: #FFF;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
}
.mui-panel:before,
.mui-panel:after {
  content: " ";
  display: table;
}
.mui-panel:after {
  clear: both;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-panel {
    box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.12), -1px 0px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
  }
}
/**
 * MUI Buttons
 */
.mui-btn {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
  background-color: #FFF;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  height: 36px;
  padding: 0 26px;
  margin-top: 6px;
  margin-bottom: 6px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}
.mui-btn:hover,
.mui-btn:focus,
.mui-btn:active {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.mui-btn[disabled]:hover,
.mui-btn[disabled]:focus,
.mui-btn[disabled]:active {
  color: rgba(0, 0, 0, 0.87);
  background-color: #FFF;
}
.mui-btn.mui-btn--flat {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
}
.mui-btn.mui-btn--flat:hover,
.mui-btn.mui-btn--flat:focus,
.mui-btn.mui-btn--flat:active {
  color: rgba(0, 0, 0, 0.87);
  background-color: #f2f2f2;
}
.mui-btn.mui-btn--flat[disabled]:hover,
.mui-btn.mui-btn--flat[disabled]:focus,
.mui-btn.mui-btn--flat[disabled]:active {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
}
.mui-btn:hover,
.mui-btn:focus,
.mui-btn:active {
  outline: 0;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
}
.mui-btn:hover,
.mui-btn:focus {
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-btn:hover,
  .mui-btn:focus {
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}
.mui-btn:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-btn:active {
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
}
.mui-btn:disabled,
.mui-btn.mui--is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.60;
  box-shadow: none;
}
.mui-btn + .mui-btn {
  margin-left: 8px;
}
.mui-btn--flat {
  background-color: transparent;
}
.mui-btn--flat:hover,
.mui-btn--flat:focus,
.mui-btn--flat:active {
  box-shadow: none;
  background-color: #f2f2f2;
}
.mui-btn--raised,
.mui-btn--fab {
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-btn--raised,
  .mui-btn--fab {
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}
.mui-btn--raised:active,
.mui-btn--fab:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-btn--raised:active,
  .mui-btn--fab:active {
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
}
.mui-btn--fab {
  position: relative;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  z-index: 1;
}
.mui-btn--primary {
  color: #FFF;
  background-color: #2196F3;
}
.mui-btn--primary:hover,
.mui-btn--primary:focus,
.mui-btn--primary:active {
  color: #FFF;
  background-color: #39a1f4;
}
.mui-btn--primary[disabled]:hover,
.mui-btn--primary[disabled]:focus,
.mui-btn--primary[disabled]:active {
  color: #FFF;
  background-color: #2196F3;
}
.mui-btn--primary.mui-btn--flat {
  color: #2196F3;
  background-color: transparent;
}
.mui-btn--primary.mui-btn--flat:hover,
.mui-btn--primary.mui-btn--flat:focus,
.mui-btn--primary.mui-btn--flat:active {
  color: #2196F3;
  background-color: #f2f2f2;
}
.mui-btn--primary.mui-btn--flat[disabled]:hover,
.mui-btn--primary.mui-btn--flat[disabled]:focus,
.mui-btn--primary.mui-btn--flat[disabled]:active {
  color: #2196F3;
  background-color: transparent;
}
.mui-btn--dark {
  color: #FFF;
  background-color: #424242;
}
.mui-btn--dark:hover,
.mui-btn--dark:focus,
.mui-btn--dark:active {
  color: #FFF;
  background-color: #4f4f4f;
}
.mui-btn--dark[disabled]:hover,
.mui-btn--dark[disabled]:focus,
.mui-btn--dark[disabled]:active {
  color: #FFF;
  background-color: #424242;
}
.mui-btn--dark.mui-btn--flat {
  color: #424242;
  background-color: transparent;
}
.mui-btn--dark.mui-btn--flat:hover,
.mui-btn--dark.mui-btn--flat:focus,
.mui-btn--dark.mui-btn--flat:active {
  color: #424242;
  background-color: #f2f2f2;
}
.mui-btn--dark.mui-btn--flat[disabled]:hover,
.mui-btn--dark.mui-btn--flat[disabled]:focus,
.mui-btn--dark.mui-btn--flat[disabled]:active {
  color: #424242;
  background-color: transparent;
}
.mui-btn--danger {
  color: #FFF;
  background-color: #F44336;
}
.mui-btn--danger:hover,
.mui-btn--danger:focus,
.mui-btn--danger:active {
  color: #FFF;
  background-color: #f55a4e;
}
.mui-btn--danger[disabled]:hover,
.mui-btn--danger[disabled]:focus,
.mui-btn--danger[disabled]:active {
  color: #FFF;
  background-color: #F44336;
}
.mui-btn--danger.mui-btn--flat {
  color: #F44336;
  background-color: transparent;
}
.mui-btn--danger.mui-btn--flat:hover,
.mui-btn--danger.mui-btn--flat:focus,
.mui-btn--danger.mui-btn--flat:active {
  color: #F44336;
  background-color: #f2f2f2;
}
.mui-btn--danger.mui-btn--flat[disabled]:hover,
.mui-btn--danger.mui-btn--flat[disabled]:focus,
.mui-btn--danger.mui-btn--flat[disabled]:active {
  color: #F44336;
  background-color: transparent;
}
.mui-btn--accent {
  color: #FFF;
  background-color: #FF4081;
}
.mui-btn--accent:hover,
.mui-btn--accent:focus,
.mui-btn--accent:active {
  color: #FFF;
  background-color: #ff5a92;
}
.mui-btn--accent[disabled]:hover,
.mui-btn--accent[disabled]:focus,
.mui-btn--accent[disabled]:active {
  color: #FFF;
  background-color: #FF4081;
}
.mui-btn--accent.mui-btn--flat {
  color: #FF4081;
  background-color: transparent;
}
.mui-btn--accent.mui-btn--flat:hover,
.mui-btn--accent.mui-btn--flat:focus,
.mui-btn--accent.mui-btn--flat:active {
  color: #FF4081;
  background-color: #f2f2f2;
}
.mui-btn--accent.mui-btn--flat[disabled]:hover,
.mui-btn--accent.mui-btn--flat[disabled]:focus,
.mui-btn--accent.mui-btn--flat[disabled]:active {
  color: #FF4081;
  background-color: transparent;
}
.mui-btn--small {
  height: 30.6px;
  line-height: 30.6px;
  padding: 0 16px;
  font-size: 13px;
}
.mui-btn--large {
  height: 54px;
  line-height: 54px;
  padding: 0 26px;
  font-size: 14px;
}
.mui-btn--fab.mui-btn--small {
  width: 44px;
  height: 44px;
  line-height: 44px;
}
.mui-btn--fab.mui-btn--large {
  width: 75px;
  height: 75px;
  line-height: 75px;
}
/**
 * MUI Ripple module
 */
.mui-ripple-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: mui-ripple-animation 2s;
  animation: mui-ripple-animation 2s;
}
@-webkit-keyframes mui-ripple-animation {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
    transform: scale(100);
    opacity: 0;
  }
}
@keyframes mui-ripple-animation {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
    transform: scale(100);
    opacity: 0;
  }
}
.mui-btn > .mui-ripple-effect {
  background-color: #a6a6a6;
}
.mui-btn--primary > .mui-ripple-effect {
  background-color: #FFF;
}
.mui-btn--dark > .mui-ripple-effect {
  background-color: #FFF;
}
.mui-btn--danger > .mui-ripple-effect {
  background-color: #FFF;
}
.mui-btn--accent > .mui-ripple-effect {
  background-color: #FFF;
}
.mui-btn--flat > .mui-ripple-effect {
  background-color: #a6a6a6;
}
/**
 * MUI Appbar
 */
.mui--appbar-height {
  height: 56px;
}
.mui--appbar-min-height,
.mui-appbar {
  min-height: 56px;
}
.mui--appbar-line-height {
  line-height: 56px;
}
.mui--appbar-top {
  top: 56px;
}
@media (orientation: landscape) and (max-height: 480px) {
  .mui--appbar-height {
    height: 48px;
  }
  .mui--appbar-min-height,
  .mui-appbar {
    min-height: 48px;
  }
  .mui--appbar-line-height {
    line-height: 48px;
  }
  .mui--appbar-top {
    top: 48px;
  }
}
@media (min-width: 480px) {
  .mui--appbar-height {
    height: 64px;
  }
  .mui--appbar-min-height,
  .mui-appbar {
    min-height: 64px;
  }
  .mui--appbar-line-height {
    line-height: 64px;
  }
  .mui--appbar-top {
    top: 64px;
  }
}
.mui-appbar {
  background-color: #2196F3;
  color: #FFF;
}
/**
 * MUI Dividers module
 */
.mui-divider {
  display: block;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
}
.mui--divider-top {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.mui--divider-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.mui--divider-left {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.mui--divider-right {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.mui-textfield {
  display: block;
  padding-top: 15px;
  margin-bottom: 20px;
  position: relative;
}
.mui-textfield > label {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mui-textfield > textarea {
  padding-top: 5px;
}
.mui-textfield > input,
.mui-textfield > textarea {
  display: block;
}
.mui-textfield > input:focus ~ label,
.mui-textfield > textarea:focus ~ label {
  color: #2196F3;
}
.mui-textfield--float-label > label {
  position: absolute;
  -webkit-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  font-size: 16px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.26);
  text-overflow: clip;
  cursor: text;
  pointer-events: none;
}
.mui-textfield--float-label > input:focus ~ label,
.mui-textfield--float-label > textarea:focus ~ label {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  font-size: 12px;
  line-height: 15px;
  text-overflow: ellipsis;
}
.mui-textfield--float-label > input:not(:focus).mui--is-not-empty ~ label,
.mui-textfield--float-label > input:not(:focus)[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield--float-label > input:not(:focus):not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield--float-label > textarea:not(:focus).mui--is-not-empty ~ label,
.mui-textfield--float-label > textarea:not(:focus)[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield--float-label > textarea:not(:focus):not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label {
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  line-height: 15px;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  text-overflow: ellipsis;
}
.mui-textfield--wrap-label {
  display: table;
  width: 100%;
  padding-top: 0px;
}
.mui-textfield--wrap-label:not(.mui-textfield--float-label) > label {
  display: table-header-group;
  position: static;
  white-space: normal;
  overflow-x: visible;
}
.mui-textfield > input,
.mui-textfield > textarea {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
  display: block;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.87);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  outline: none;
  width: 100%;
  font-size: 16px;
  padding: 0;
  box-shadow: none;
  border-radius: 0px;
  background-image: none;
}
.mui-textfield > input:focus,
.mui-textfield > textarea:focus {
  border-color: #2196F3;
  border-width: 2px;
}
.mui-textfield > input:disabled,
.mui-textfield > input:-moz-read-only,
.mui-textfield > textarea:disabled,
.mui-textfield > textarea:-moz-read-only {
  cursor: not-allowed;
  background-color: transparent;
  opacity: 1;
}
.mui-textfield > input:disabled,
.mui-textfield > input:read-only,
.mui-textfield > textarea:disabled,
.mui-textfield > textarea:read-only {
  cursor: not-allowed;
  background-color: transparent;
  opacity: 1;
}
.mui-textfield > input::-webkit-input-placeholder,
.mui-textfield > textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.26);
  opacity: 1;
}
.mui-textfield > input::-moz-placeholder,
.mui-textfield > textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.26);
  opacity: 1;
}
.mui-textfield > input:-ms-input-placeholder,
.mui-textfield > textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.26);
  opacity: 1;
}
.mui-textfield > input::placeholder,
.mui-textfield > textarea::placeholder {
  color: rgba(0, 0, 0, 0.26);
  opacity: 1;
}
.mui-textfield > input {
  height: 32px;
}
.mui-textfield > input:focus {
  height: 33px;
  margin-bottom: -1px;
}
.mui-textfield > textarea {
  min-height: 64px;
}
.mui-textfield > textarea[rows]:not([rows="2"]):focus {
  margin-bottom: -1px;
}
.mui-textfield > input:focus {
  height: 33px;
  margin-bottom: -1px;
}
.mui-radio,
.mui-checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mui-radio > label,
.mui-checkbox > label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.mui-radio > label > input[type="radio"],
.mui-radio--inline > label > input[type="radio"],
.mui-checkbox > label > input[type="checkbox"],
.mui-checkbox--inline > label > input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px;
}
.mui-radio + .mui-radio,
.mui-checkbox + .mui-checkbox {
  margin-top: -5px;
}
.mui-radio--inline,
.mui-checkbox--inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.mui-radio--inline > input[type="radio"],
.mui-radio--inline > input[type="checkbox"],
.mui-radio--inline > label > input[type="radio"],
.mui-radio--inline > label > input[type="checkbox"],
.mui-checkbox--inline > input[type="radio"],
.mui-checkbox--inline > input[type="checkbox"],
.mui-checkbox--inline > label > input[type="radio"],
.mui-checkbox--inline > label > input[type="checkbox"] {
  margin: 4px 0 0;
  line-height: normal;
}
.mui-radio--inline + .mui-radio--inline,
.mui-checkbox--inline + .mui-checkbox--inline {
  margin-top: 0;
  margin-left: 10px;
}
.mui-select {
  display: block;
  padding-top: 15px;
  margin-bottom: 20px;
  position: relative;
}
.mui-select:focus {
  outline: 0;
}
.mui-select:focus > select {
  height: 33px;
  margin-bottom: -1px;
  border-color: #2196F3;
  border-width: 2px;
}
.mui-select > select {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
  display: block;
  height: 32px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNiIgd2lkdGg9IjEwIj48cG9seWdvbiBwb2ludHM9IjAsMCAxMCwwIDUsNiIgc3R5bGU9ImZpbGw6cmdiYSgwLDAsMCwuMjQpOyIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  padding: 0 25px 0 0;
}
.mui-select > select::-ms-expand {
  display: none;
}
.mui-select > select:focus {
  outline: 0;
  height: 33px;
  margin-bottom: -1px;
  border-color: #2196F3;
  border-width: 2px;
}
.mui-select > select:disabled {
  color: rgba(0, 0, 0, 0.38);
  cursor: not-allowed;
  background-color: transparent;
  opacity: 1;
}
.mui-select__menu {
  position: absolute;
  z-index: 1;
  min-width: 100%;
  overflow-y: auto;
  padding: 8px 0;
  background-color: #FFF;
  font-size: 16px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mui-select__menu {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }
}
.mui-select__menu > div {
  padding: 0 22px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  white-space: nowrap;
}
.mui-select__menu > div:hover {
  background-color: #E0E0E0;
}
.mui-select__menu > div.mui--is-selected {
  background-color: #EEEEEE;
}
@media (min-width: 544px) {
  .mui-form--inline > .mui-textfield {
    display: inline-block;
    margin-bottom: 0;
  }
  .mui-form--inline > .mui-radio,
  .mui-form--inline > .mui-checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .mui-form--inline > .mui-radio > label,
  .mui-form--inline > .mui-checkbox > label {
    padding-left: 0;
  }
  .mui-form--inline > .mui-radio > label > input[type="radio"],
  .mui-form--inline > .mui-checkbox > label > input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .mui-form--inline > .mui-select {
    display: inline-block;
  }
  .mui-form--inline > .mui-btn {
    margin-bottom: 0;
    margin-top: 0;
    vertical-align: bottom;
  }
}
.mui-textfield > input:invalid:not(:focus):not(:required),
.mui-textfield > input:invalid:not(:focus):required.mui--is-not-empty,
.mui-textfield > input:invalid:not(:focus):required.mui--is-empty.mui--is-dirty,
.mui-textfield > input:invalid:not(:focus):required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:invalid:not(:focus):required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > textarea:invalid:not(:focus):not(:required),
.mui-textfield > textarea:invalid:not(:focus):required.mui--is-not-empty,
.mui-textfield > textarea:invalid:not(:focus):required.mui--is-empty.mui--is-dirty,
.mui-textfield > textarea:invalid:not(:focus):required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > textarea:invalid:not(:focus):required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:not(:focus).mui--is-invalid:not(:required),
.mui-textfield > input:not(:focus).mui--is-invalid:required.mui--is-not-empty,
.mui-textfield > input:not(:focus).mui--is-invalid:required.mui--is-empty.mui--is-dirty,
.mui-textfield > input:not(:focus).mui--is-invalid:required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:not(:focus).mui--is-invalid:required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > textarea:not(:focus).mui--is-invalid:not(:required),
.mui-textfield > textarea:not(:focus).mui--is-invalid:required.mui--is-not-empty,
.mui-textfield > textarea:not(:focus).mui--is-invalid:required.mui--is-empty.mui--is-dirty,
.mui-textfield > textarea:not(:focus).mui--is-invalid:required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > textarea:not(:focus).mui--is-invalid:required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) {
  border-color: #F44336;
  border-width: 2px;
}
.mui-textfield > input:invalid:not(:focus):not(:required),
.mui-textfield > input:invalid:not(:focus):required.mui--is-not-empty,
.mui-textfield > input:invalid:not(:focus):required.mui--is-empty.mui--is-dirty,
.mui-textfield > input:invalid:not(:focus):required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:invalid:not(:focus):required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:not(:focus).mui--is-invalid:not(:required),
.mui-textfield > input:not(:focus).mui--is-invalid:required.mui--is-not-empty,
.mui-textfield > input:not(:focus).mui--is-invalid:required.mui--is-empty.mui--is-dirty,
.mui-textfield > input:not(:focus).mui--is-invalid:required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty),
.mui-textfield > input:not(:focus).mui--is-invalid:required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) {
  height: 33px;
  margin-bottom: -1px;
}
.mui-textfield > input:invalid:not(:focus):not(:required) ~ label,
.mui-textfield > input:invalid:not(:focus):required.mui--is-not-empty ~ label,
.mui-textfield > input:invalid:not(:focus):required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > input:invalid:not(:focus):required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > textarea:invalid:not(:focus):not(:required) ~ label,
.mui-textfield > textarea:invalid:not(:focus):required.mui--is-not-empty ~ label,
.mui-textfield > textarea:invalid:not(:focus):required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > textarea:invalid:not(:focus):required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > input:not(:focus).mui--is-invalid:not(:required) ~ label,
.mui-textfield > input:not(:focus).mui--is-invalid:required.mui--is-not-empty ~ label,
.mui-textfield > input:not(:focus).mui--is-invalid:required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > input:not(:focus).mui--is-invalid:required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > textarea:not(:focus).mui--is-invalid:not(:required) ~ label,
.mui-textfield > textarea:not(:focus).mui--is-invalid:required.mui--is-not-empty ~ label,
.mui-textfield > textarea:not(:focus).mui--is-invalid:required[value]:not([value=""]):not(.mui--is-empty):not(.mui--is-not-empty) ~ label,
.mui-textfield > textarea:not(:focus).mui--is-invalid:required:not(:empty):not(.mui--is-empty):not(.mui--is-not-empty) ~ label {
  color: #F44336;
}
.mui-textfield:not(.mui-textfield--float-label) > input:invalid:not(:focus):required.mui--is-empty.mui--is-dirty ~ label,
.mui-textfield:not(.mui-textfield--float-label) > textarea:invalid:not(:focus):required.mui--is-empty.mui--is-dirty ~ label,
.mui-textfield:not(.mui-textfield--float-label) > input:not(:focus).mui--is-invalid:required.mui--is-empty.mui--is-dirty ~ label,
.mui-textfield:not(.mui-textfield--float-label) > textarea:not(:focus).mui--is-invalid:required.mui--is-empty.mui--is-dirty ~ label {
  color: #F44336;
}
/**
 * MUI Tables module
 */
.mui-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.mui-table > thead > tr > th,
.mui-table > thead > tr > td,
.mui-table > tbody > tr > th,
.mui-table > tbody > tr > td,
.mui-table > tfoot > tr > th,
.mui-table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.429;
}
.mui-table > thead > tr > th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  font-weight: 700;
}
.mui-table > tbody + tbody {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}
.mui-table.mui-table--bordered > tbody > tr > td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
/**
 * MUI Dropdown module
 */
.mui-dropdown {
  display: inline-block;
  position: relative;
}
[data-mui-toggle="dropdown"] {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
  outline: 0;
}
.mui-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #FFF;
  border-radius: 2px;
  z-index: 1;
  background-clip: padding-box;
}
.mui-dropdown__menu.mui--is-open {
  display: block;
}
.mui-dropdown__menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.429;
  color: rgba(0, 0, 0, 0.87);
  white-space: nowrap;
}
.mui-dropdown__menu > li > a:hover,
.mui-dropdown__menu > li > a:focus {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  background-color: #EEEEEE;
}
.mui-dropdown__menu > .mui--is-disabled > a,
.mui-dropdown__menu > .mui--is-disabled > a:hover,
.mui-dropdown__menu > .mui--is-disabled > a:focus {
  color: #EEEEEE;
}
.mui-dropdown__menu > .mui--is-disabled > a:hover,
.mui-dropdown__menu > .mui--is-disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed;
}
.mui-dropdown__menu--right {
  left: auto;
  right: 0;
}
/**
 * MUI Tabs module
 */
.mui-tabs__bar {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  background-color: transparent;
  white-space: nowrap;
  overflow-x: auto;
}
.mui-tabs__bar > li {
  display: inline-block;
}
.mui-tabs__bar > li > a {
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  cursor: default;
  height: 48px;
  line-height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mui-tabs__bar > li > a:hover {
  text-decoration: none;
}
.mui-tabs__bar > li.mui--is-active {
  border-bottom: 2px solid #2196F3;
}
.mui-tabs__bar > li.mui--is-active > a {
  color: #2196F3;
}
.mui-tabs__bar.mui-tabs__bar--justified {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.mui-tabs__bar.mui-tabs__bar--justified > li {
  display: table-cell;
}
.mui-tabs__bar.mui-tabs__bar--justified > li > a {
  text-align: center;
  padding-left: 0px;
  padding-right: 0px;
}
.mui-tabs__pane {
  display: none;
}
.mui-tabs__pane.mui--is-active {
  display: block;
}
[data-mui-toggle="tab"] {
  -webkit-animation-duration: 0.0001s;
  animation-duration: 0.0001s;
  -webkit-animation-name: mui-node-inserted;
  animation-name: mui-node-inserted;
}
/**
 * MUI Overlay module
 */
#mui-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.2);
  overflow: auto;
}
/**
 * MUI Helpers module
 */
@-webkit-keyframes mui-node-inserted {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}
@keyframes mui-node-inserted {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}
.mui--no-transition {
  transition: none !important;
}
.mui--no-user-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mui-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.mui--text-left {
  text-align: left !important;
}
.mui--text-right {
  text-align: right !important;
}
.mui--text-center {
  text-align: center !important;
}
.mui--text-justify {
  text-align: justify !important;
}
.mui--text-nowrap {
  white-space: nowrap !important;
}
.mui--align-baseline {
  vertical-align: baseline !important;
}
.mui--align-top {
  vertical-align: top !important;
}
.mui--align-middle {
  vertical-align: middle !important;
}
.mui--align-bottom {
  vertical-align: bottom !important;
}
.mui--text-dark {
  color: rgba(0, 0, 0, 0.87);
}
.mui--text-dark-secondary {
  color: rgba(0, 0, 0, 0.54);
}
.mui--text-dark-hint {
  color: rgba(0, 0, 0, 0.38);
}
.mui--text-light {
  color: #FFF;
}
.mui--text-light-secondary {
  color: rgba(255, 255, 255, 0.7);
}
.mui--text-light-hint {
  color: rgba(255, 255, 255, 0.3);
}
.mui--text-accent {
  color: rgba(255, 64, 129, 0.87);
}
.mui--text-accent-secondary {
  color: rgba(255, 64, 129, 0.54);
}
.mui--text-accent-hint {
  color: rgba(255, 64, 129, 0.38);
}
.mui--text-black {
  color: #000;
}
.mui--text-white {
  color: #FFF;
}
.mui--text-danger {
  color: #F44336;
}
.mui-list--unstyled {
  padding-left: 0;
  list-style: none;
}
.mui-list--inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.mui-list--inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.mui--z1,
.mui-select__menu,
.mui-dropdown__menu {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.mui--z2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.mui--z3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.mui--z4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.mui--z5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.mui--clearfix:before,
.mui--clearfix:after {
  content: " ";
  display: table;
}
.mui--clearfix:after {
  clear: both;
}
.mui--pull-right {
  float: right !important;
}
.mui--pull-left {
  float: left !important;
}
.mui--hide {
  display: none !important;
}
.mui--show {
  display: block !important;
}
.mui--invisible {
  visibility: hidden;
}
.mui--overflow-hidden {
  overflow: hidden !important;
}
.mui--overflow-hidden-x {
  overflow-x: hidden !important;
}
.mui--overflow-hidden-y {
  overflow-y: hidden !important;
}
.mui--visible-xs-block,
.mui--visible-xs-inline,
.mui--visible-xs-inline-block,
.mui--visible-sm-block,
.mui--visible-sm-inline,
.mui--visible-sm-inline-block,
.mui--visible-md-block,
.mui--visible-md-inline,
.mui--visible-md-inline-block,
.mui--visible-lg-block,
.mui--visible-lg-inline,
.mui--visible-lg-inline-block,
.mui--visible-xl-block,
.mui--visible-xl-inline,
.mui--visible-xl-inline-block {
  display: none !important;
}
@media (max-width: 543px) {
  .mui-visible-xs {
    display: block !important;
  }
  table.mui-visible-xs {
    display: table;
  }
  tr.mui-visible-xs {
    display: table-row !important;
  }
  th.mui-visible-xs,
  td.mui-visible-xs {
    display: table-cell !important;
  }
  .mui--visible-xs-block {
    display: block !important;
  }
  .mui--visible-xs-inline {
    display: inline !important;
  }
  .mui--visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 544px) and (max-width: 767px) {
  .mui-visible-sm {
    display: block !important;
  }
  table.mui-visible-sm {
    display: table;
  }
  tr.mui-visible-sm {
    display: table-row !important;
  }
  th.mui-visible-sm,
  td.mui-visible-sm {
    display: table-cell !important;
  }
  .mui--visible-sm-block {
    display: block !important;
  }
  .mui--visible-sm-inline {
    display: inline !important;
  }
  .mui--visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mui-visible-md {
    display: block !important;
  }
  table.mui-visible-md {
    display: table;
  }
  tr.mui-visible-md {
    display: table-row !important;
  }
  th.mui-visible-md,
  td.mui-visible-md {
    display: table-cell !important;
  }
  .mui--visible-md-block {
    display: block !important;
  }
  .mui--visible-md-inline {
    display: inline !important;
  }
  .mui--visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mui-visible-lg {
    display: block !important;
  }
  table.mui-visible-lg {
    display: table;
  }
  tr.mui-visible-lg {
    display: table-row !important;
  }
  th.mui-visible-lg,
  td.mui-visible-lg {
    display: table-cell !important;
  }
  .mui--visible-lg-block {
    display: block !important;
  }
  .mui--visible-lg-inline {
    display: inline !important;
  }
  .mui--visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .mui-visible-xl {
    display: block !important;
  }
  table.mui-visible-xl {
    display: table;
  }
  tr.mui-visible-xl {
    display: table-row !important;
  }
  th.mui-visible-xl,
  td.mui-visible-xl {
    display: table-cell !important;
  }
  .mui--visible-xl-block {
    display: block !important;
  }
  .mui--visible-xl-inline {
    display: inline !important;
  }
  .mui--visible-xl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 543px) {
  .mui--hidden-xs {
    display: none !important;
  }
}
@media (min-width: 544px) and (max-width: 767px) {
  .mui--hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mui--hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mui--hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .mui--hidden-xl {
    display: none !important;
  }
}
body.mui-body--scroll-lock {
  overflow: hidden !important;
}
/* ================================================================== */
/* Toolbars
/* ================================================================== */
.leaflet-draw-section {
  position: relative;
}
.leaflet-draw-toolbar {
  margin-top: 12px;
}
.leaflet-draw-toolbar-top {
  margin-top: 0;
}
.leaflet-draw-toolbar-notop a:first-child {
  border-top-right-radius: 0;
}
.leaflet-draw-toolbar-nobottom a:last-child {
  border-bottom-right-radius: 0;
}
.leaflet-draw-toolbar a {
  background-image: url('images/spritesheet.png');
  background-repeat: no-repeat;
}
.leaflet-retina .leaflet-draw-toolbar a {
  background-image: url('images/spritesheet-2x.png');
  background-size: 270px 30px;
}
.leaflet-draw a {
  display: block;
  text-align: center;
  text-decoration: none;
}
/* ================================================================== */
/* Toolbar actions menu
/* ================================================================== */
.leaflet-draw-actions {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 26px;
  /* leaflet-draw-toolbar.left + leaflet-draw-toolbar.width */
  top: 0;
  white-space: nowrap;
}
.leaflet-right .leaflet-draw-actions {
  right: 26px;
  left: auto;
}
.leaflet-draw-actions li {
  display: inline-block;
}
.leaflet-draw-actions li:first-child a {
  border-left: none;
}
.leaflet-draw-actions li:last-child a {
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.leaflet-right .leaflet-draw-actions li:last-child a {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.leaflet-right .leaflet-draw-actions li:first-child a {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.leaflet-draw-actions a {
  background-color: #919187;
  border-left: 1px solid #AAA;
  color: #FFF;
  font: 11px/19px "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 28px;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 28px;
}
.leaflet-draw-actions-bottom {
  margin-top: 0;
}
.leaflet-draw-actions-top {
  margin-top: 1px;
}
.leaflet-draw-actions-top a,
.leaflet-draw-actions-bottom a {
  height: 27px;
  line-height: 27px;
}
.leaflet-draw-actions a:hover {
  background-color: #A0A098;
}
.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
  height: 26px;
  line-height: 26px;
}
/* ================================================================== */
/* Draw toolbar
/* ================================================================== */
.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  background-position: -2px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -31px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
  background-position: -62px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-draw-circle {
  background-position: -92px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-draw-marker {
  background-position: -122px -2px;
}
/* ================================================================== */
/* Edit toolbar
/* ================================================================== */
.leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background-position: -152px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background-position: -182px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
  background-position: -212px -2px;
}
.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
  background-position: -242px -2px;
}
/* ================================================================== */
/* Drawing styles
/* ================================================================== */
.leaflet-mouse-marker {
  background-color: #fff;
  cursor: crosshair;
}
.leaflet-draw-tooltip {
  background: #363636;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin-left: 20px;
  margin-top: -21px;
  padding: 4px 8px;
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  z-index: 6;
}
.leaflet-draw-tooltip:before {
  border-right: 6px solid black;
  border-right-color: rgba(0, 0, 0, 0.5);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
}
.leaflet-error-draw-tooltip {
  background-color: #F2DEDE;
  border: 1px solid #E6B6BD;
  color: #B94A48;
}
.leaflet-error-draw-tooltip:before {
  border-right-color: #E6B6BD;
}
.leaflet-draw-tooltip-single {
  margin-top: -12px;
}
.leaflet-draw-tooltip-subtext {
  color: #f8d5e4;
}
.leaflet-draw-guide-dash {
  font-size: 1%;
  opacity: 0.6;
  position: absolute;
  width: 5px;
  height: 5px;
}
/* ================================================================== */
/* Edit styles
/* ================================================================== */
.leaflet-edit-marker-selected {
  background: rgba(254, 87, 161, 0.1);
  border: 4px dashed rgba(254, 87, 161, 0.6);
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.leaflet-edit-move {
  cursor: move;
}
.leaflet-edit-resize {
  cursor: pointer;
}
/* ================================================================== */
/* Old IE styles
/* ================================================================== */
.leaflet-oldie .leaflet-draw-toolbar {
  border: 3px solid #999;
}
.leaflet-oldie .leaflet-draw-toolbar a {
  background-color: #eee;
}
.leaflet-oldie .leaflet-draw-toolbar a:hover {
  background-color: #fff;
}
.leaflet-oldie .leaflet-draw-actions {
  left: 32px;
  margin-top: 3px;
}
.leaflet-oldie .leaflet-draw-actions li {
  display: inline;
  zoom: 1;
}
.leaflet-oldie .leaflet-edit-marker-selected {
  border: 4px dashed #fe93c2;
}
.leaflet-oldie .leaflet-draw-actions a {
  background-color: #999;
}
.leaflet-oldie .leaflet-draw-actions a:hover {
  background-color: #a5a5a5;
}
.leaflet-oldie .leaflet-draw-actions-top a {
  margin-top: 1px;
}
.leaflet-oldie .leaflet-draw-actions-bottom a {
  height: 28px;
  line-height: 28px;
}
.leaflet-oldie .leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
  height: 27px;
  line-height: 27px;
}
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}
.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}
.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}
.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}
/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
  opacity: 1;
}
/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}
/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}
.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}
/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}
.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}
/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}
/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}
/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}
/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}
/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}
/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
  top: 0;
  width: 10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}
/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}
/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0px;
  top: 3px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0px;
  top: -3px;
}
/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}
/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}
/*
*, *:before, *:after {
  -webkit-box-sizing: content-box; 
  -moz-box-sizing: content-box; 
  box-sizing: content-box;
}
*/
body {
  font-family: sans-serif;
  text-transform: capitalize;
}
.ui-theme-dark {
  color: #fff;
  text-shadow: 1px 1px 5px #000000;
}
.ui-theme-dark.ui-toolbar,
.ui-theme-dark .ui-toolbar {
  background: #3a3a3d;
  /* Old browsers */
  background: -moz-linear-gradient(top, #3a3a3d 5%, 141416 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #3a3a3d), color-stop(100%, 141416));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3a3a3d 5%, 141416 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #3a3a3d 5%, 141416 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #3a3a3d 5%, 141416 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #3a3a3d 5%, 141416 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@top-color', endColorstr='@bottom-color', GradientType=0);
  /* IE6-9 */
  border-top: 1px solid #68686a;
  border-bottom: 1px solid #131315;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  height: 35px;
  padding-top: 10px;
}
.ui-theme-dark .ui-button-group li,
.ui-theme-dark .button {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #000;
  box-shadow: 0px 1px 0px #68686a, inset 0px 1px 0px 0px #68686a, inset 0px -1px 0px 0px #000;
}
.ui-button-group .button {
  box-shadow: inset 1px 0px 0px 0px #68686a, inset -1px 0px 0px 0px #000;
}
#topmenubar {
  position: absolute;
  top: 0px;
  width: 100%;
}
#download {
  position: absolute;
  left: 320px;
  top: 14px;
  text-decoration: underline;
  font-size: 12px;
  color: #fff;
}
#log_issue {
  position: absolute;
  left: 400px;
  top: 14px;
  text-decoration: underline;
  font-size: 12px;
  color: #fff;
}
.operations {
  position: relative;
}
.dropdown li {
  padding-top: 4px;
}
.dropdown li:hover {
  background-color: #616163;
}
.report {
  height: 25px;
  border-top: 1px solid #eee;
  -webkit-box-shadow: -1px 10px 25px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 10px 25px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 10px 25px 0px rgba(0, 0, 0, 0.75);
}
.ui-theme-dark .ui-dropDownMenu li,
.ui-theme-dark ui-dropDownSubMenu {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.ui-button-group ui-dropDownSubMenu {
  box-shadow: inset 1px 0px 0px 0px #68686a, inset -1px 0px 0px 0px #000;
}
ul.ui-dropDownMenu {
  display: block;
  position: relative;
  list-style: none;
  color: #ccc;
  width: 100px;
  text-align: centre;
  margin-left: -20px;
}
ul.ui-dropDownAccountsMenu {
  display: block;
  position: relative;
  list-style: none;
  color: #ccc;
  width: 200px;
  text-align: centre;
  margin-left: -20px;
}
li > ul.ui-dropDownSubMenu {
  display: none;
}
ul.ui-dropDownSubMenu > li {
  background-color: #4c4c4c;
  color: #ccc;
  width: 100px;
  margin-top: 17px;
  text-align: centre;
}
li:hover ul.ui-dropDownSubMenu {
  display: block;
  position: absolute;
}
li > ul.ui-dropDownAccountsSubMenu {
  display: none;
}
ul.ui-dropDownAccountsSubMenu > li {
  background-color: #4c4c4c;
  color: #ccc;
  width: 200px;
  margin-top: 17px;
  text-align: centre;
}
li:hover ul.ui-dropDownAccountsSubMenu {
  display: block;
  position: absolute;
}
.dispatchGroups li.selected {
  color: #0f0;
}
.telephoneExtensions li.selected {
  color: #0f0;
}
.activeQueues li.selected {
  color: #0f0;
}
#split_pane_container {
  position: absolute;
  left: 350px;
  bottom: 2px;
  height: 100%;
  right: 0px;
  pointer-events: none;
}
#split_pane_container * {
  pointer-events: all;
}
#map {
  position: absolute;
  left: 350px;
  bottom: 2px;
  height: 100%;
  right: 0px;
}
.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}
.gutter.gutter-horizontal {
  background-image: url(../images/vertical.png);
  cursor: ew-resize;
}
.gutter.gutter-vertical {
  background-image: url(../images/horizontal.png);
  cursor: ns-resize;
}
.split.split-horizontal,
.gutter.gutter-horizontal {
  height: 100%;
  float: left;
}
#split_pane_container div#map_overlay {
  pointer-events: none;
}
#split_pane_container div#map {
  height: 50%;
}
#split_pane_container div#queues_container {
  z-index: 101;
}
#split_pane_container div#live_jobs {
  z-index: 101;
  overflow-y: scroll;
  background: #eaefef;
}
#split_pane_container div#live_jobs div#live_jobs_table_container {
  margin-top: 0px;
}
#split_pane_container div#live_jobs div#live_jobs_table_container table#live_jobs_table {
  width: 100%;
}
#queues {
  height: 100%;
  z-index: 10;
  overflow: hidden;
  background: #C0C0C0;
}
#queues.transparent {
  background: rgba(125, 125, 125, 0.5);
}
.ui-queue {
  font-size: 0.8em;
  font-family: sans-serif;
  height: 95%;
  width: 95%;
  text-align: center;
  float: left;
  margin: 0 auto;
}
.ui-queue-halfBox {
  height: 100% !important;
  width: 85px;
  margin: 10px;
  float: left;
  border: solid 2px black;
  text-align: center;
}
.ui-queue-fullBox {
  height: 100% !important;
  width: 80px;
  margin: 10px;
  float: left;
  border: solid 2px black;
  text-align: center;
}
.ui-queue .ui-widget-header {
  border: none;
  background: grey;
  font-size: 15px;
}
.ui-queue-halfList {
  height: 93% !important;
  width: 100%;
  position: relative;
  /* --*/
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: auto;
  font-size: 20px;
  text-align: center;
  float: left;
}
.ui-queue-fullList {
  height: 96.5%!important;
  width: 78%
    position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: auto;
  width: 100%;
  font-size: 1.2em;
  text-align: center;
  float: left;
}
.ui-queue-list {
  height: 96.5%!important;
  width: 78%
    position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: auto;
  width: 100%;
  font-size: 1.2em;
  text-align: center;
  float: left;
}
#queues li.unavailable {
  color: rgba(0, 0, 0, 0.3);
}
#queues li.notCommunicating {
  color: rgba(255, 0, 0, 0.6);
}
#queues li.hidden {
  display: none;
}
#map {
  background: #ccf;
  background: #EBE9CC;
}
#windowMap {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 10px;
  top: 20px;
  border: 3px solid #fff;
  /*z-index: 9999999;*/
}
#sidebarControl {
  position: absolute;
  top: 6px;
  left: 10px;
  text-align: center;
  list-style-type: none;
  font-size: 0px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #000;
  box-shadow: 0px 1px 0px #68686a, inset 0px 1px 0px 0px #68686a, inset 0px -1px 0px 0px #000;
}
.ui-button-group li {
  font-size: 16px;
  display: inline-block;
  padding: 5px;
  width: 60px;
  margin: 0px;
  box-shadow: inset 1px 0px 0px 0px #68686a, inset -1px 0px 0px 0px #000;
  color: #ccc;
}
.ui-button-group li.first {
  box-shadow: inset -1px 0px 0px 0px #000;
  border-left: none;
}
.ui-button-group li.last {
  box-shadow: inset 1px 0px 0px 0px #68686a;
}
.ui-button-group li.active,
#topmenubar .button.active {
  text-shadow: 0px 0px 7px #ffffff;
  color: #fff;
  box-shadow: inset 1px 1px 3px 1px #000, inset -1px -1px 3px 0px #000;
}
#sidebar .content {
  width: 350px;
  height: 100%;
}
#sidebar .content .job {
  height: 150px;
  width: 348px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 2px;
  position: relative;
}
.job[timing=urgent] {
  background-color: #fdd;
}
.job[timing=normal] {
  background-color: #dfd;
}
.job[status=assigned],
.job[status=pob],
.job[status=complete] {
  background-color: #ddf;
}
.job[status=pob],
.job[status=complete],
.job[status=cancelled] {
  display: none;
}
.job[account=true] {
  background-color: #ff0;
}
.job:after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: attr(status);
  z-index: 1;
  font-size: 12px;
  color: #999;
}
.job[status=complete] .time {
  text-decoration: line-through;
}
.job .phone {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: #ccc;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  border-radius: 19px;
  background: #ccc url(../css/themes/images/icons-36-white-pack.png);
  background-position: -143px -72px;
  display: none;
}
.job .noshow {
  display: none;
  color: red;
  height: 30px;
  float: right;
  margin-top: 4px;
  font-size: 24px;
}
.job .other {
  display: none;
  color: red;
  height: 30px;
  float: right;
  margin-top: 4px;
  font-size: 24px;
}
.job .accountflag .bookedflag .localJobflag {
  display: none;
  height: 30px;
  float: right;
  margin-top: 8px;
  margin-left: 5px;
  font-size: 24px;
}
.iconPosition {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 6px 0px 0px 8px;
}
.job .vehicleType .passengerCount {
  color: #000000;
  font-size: 12px;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.51);
  position: relative;
  left: 30px;
}
.wheelchairImg {
  display: inline-block;
  float: right;
  background: #ccc url(../images/wheelchair40.png);
}
.minibus {
  background: #ccc url(../images/minibus.png);
}
.account {
  font-size: 0.8em;
}
.job .phone,
.job .time,
.job .name {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.job .time {
  display: block;
  font-size: 26px;
  letter-spacing: -2px;
  position: relative;
  top: 2px;
  margin-bottom: 3px;
}
.job .fareInfo {
  position: absolute;
  bottom: 15px;
  left: 0px;
  width: 100%;
  display: flex;
  font-size: 12px;
  margin: 0px;
  padding: 0px;
}
.job .fareInfo .fare {
  flex-grow: 1;
}
.job .fareInfo .paymentType {
  flex-grow: 1;
  text-align: right;
  padding-right: 5px;
}
.job .fareInfo .fare:before {
  content: "Fare:";
  color: #999;
}
.job .fareInfo .paymentType:before {
  content: "Payment:";
  color: #999;
}
.job .jid:before {
  content: "Job id:";
  color: #999;
}
.job .jid {
  font-size: 12px;
  position: absolute;
  bottom: 0px;
  right: 5px;
  display: block;
  color: #000;
}
.job .driver {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  width: 100px;
  height: 68px;
}
.job .driver .id {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  height: 40px;
  width: 38px;
  height: auto;
  border: 2px solid #fff;
  box-shadow: 2px 2px 3px #ccc;
  right: 5px;
  top: 2px;
  display: none;
}
.job[status=complete] .id,
.job[status=assigned] .id,
.job[status=pob] .id,
.job[status=offered] .id {
  display: inline-block;
}
.job.complete .driver .menu {
  display: none;
}
.job .driver.assigned .menu {
  display: none;
}
.job .driver .menu {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  width: 260px;
  height: auto;
}
.job .driver .menu .item {
  font-size: 10px;
  display: inline-block;
  height: 30px;
  width: 34px;
  text-align: center;
  margin: 0px;
  position: relative;
  float: right;
  background: transparent;
}
.job .driver .menu .item:before {
  position: absolute;
  width: 24px;
  height: 20px;
  bottom: 0px;
  left: 5px;
  content: "";
  background: transparent url(../css/themes/images/icons-24-black-pack.png) no-repeat;
  background-repeat: none;
  background-position: -144px 0px;
}
.job .driver .menu .item.disabled {
  opacity: 0.3;
}
.job .driver .menu .dispatch:before {
  background-position: -144px 0px;
}
.job .driver .menu .dispatch.pending:before {
  background-position: -96px -24px;
}
.job .driver .menu .delete:before {
  background-position: -96px 0px;
}
.job .driver .menu .recall:before {
  background-position: -96px 0px;
}
.job .driver .menu .auto:before {
  background-position: -432px 0px;
}
.job .driver .menu .edit:before {
  background-position: -575px 0px;
}
.job .driver .menu .manual:before {
  background-position: -959px -24px;
}
.job .driver .menu .anyDriver:before {
  background-position: -959px -24px;
}
.job .driver .menu .call:before {
  background-position: -96px -48px;
}
.job .driver .menu .bid:before {
  background-position: -240px 0px;
}
.job .driver .menu .bid {
  display: none;
}
.feature-bid .job .driver .bid {
  display: inline-block;
}
.job .name {
  margin-right: 100px;
}
.job .name,
.job .address,
.job .dropoff {
  color: #666;
  font-size: 16px;
  letter-spacing: -1px;
}
#selectCarType {
  width: 120px;
  height: 20px;
  margin: 10px 0px 10px 10px;
  float: left;
}
#selectCarQuantity {
  width: 30px;
  height: 20px;
  margin-left: 50px;
  margin-top: 10px;
  float: left;
}
.driverChooser {
  background: transparent;
}
.driverChooser div {
  display: inline-block;
  border: 3px solid #ccc;
  background: #fff;
  overflow: hidden;
}
.driverChooser div img {
  width: 38px;
  height: auto;
  border: 2px solid #fff;
}
.driverChooser .distance {
  display: list-item;
  width: 46px;
  height: 30px;
  position: absolute;
  bottom: -30px;
  text-align: center;
  background: transparent;
  border: none;
  letter-spacing: -1px;
  font-size: 14px;
  text-shadow: 0px 0px 5px #ffffff;
}
.customers.ui-button,
#customerPane {
  display: none;
}
/* css for timepicker */
.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}
.ui-timepicker-div dl {
  text-align: left;
}
.ui-timepicker-div dl dt {
  height: 25px;
  margin-bottom: -25px;
}
.ui-timepicker-div dl dd {
  margin: 0 10px 10px 65px;
}
.ui-timepicker-div td {
  font-size: 90%;
}
.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
.ui-timepicker-rtl {
  direction: rtl;
}
.ui-timepicker-rtl dl {
  text-align: right;
}
.ui-timepicker-rtl dl dd {
  margin: 0 65px 10px 10px;
}
#driverPane .driver {
  position: relative;
  height: 125px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
#driverPane .driver .name {
  font-size: 28px;
  letter-spacing: -2px;
  color: #000;
}
#driverPane .driver .menu {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 120px;
}
#driverPane .driver .menu .find {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 40px;
  width: 40px;
  background: transparent url(../css/themes/images/icons-36-black-pack.png);
  background-position: -1222px 2px;
}
#driverPane .driver .menu .message {
  position: absolute;
  top: 40px;
  right: 0px;
  height: 40px;
  width: 40px;
  background: transparent url(../css/themes/images/icons-36-black-pack.png);
  background-position: -718px -34px;
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  -webkit-opacity: 0.25;
  opacity: 0.25;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  filter: alpha(opacity=25);
}
#driverPane .driver .menu .edit {
  position: absolute;
  top: 80px;
  right: 0px;
  height: 40px;
  width: 40px;
  background: transparent url(../css/themes/images/icons-36-black-pack.png);
  background-position: -574px 2px;
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  -webkit-opacity: 0.25;
  opacity: 0.25;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  filter: alpha(opacity=25);
}
#driverPane .driver .image {
  position: absolute;
  right: 50px;
  top: 5px;
  border: 3px solid #fff;
  box-shadow: 2px 2px 3px #ccc;
}
#driverPane .driver .image img {
  width: 38px;
  height: auto;
}
#driverPane .driver div {
  color: #aaa;
}
.login {
  border: 1px solid #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
}
.login .loginButton {
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0px 1px 0px #fff, inset 0px 1px 0px 0px #fff, inset 0px -1px 0px 0px #ddd;
  color: #555;
  text-shadow: -1px -1px 5px #ffffff;
  margin-top: 5px;
}
.login .loginButton.active {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 3px 1px #ddd, inset -1px -1px 3px 0px #ddd;
  color: #000;
  text-shadow: -1px -1px 5px #ffffff;
}
.error input,
input.error,
textarea.error {
  background-color: #fcc;
}
.initialLoading {
  color: #fff;
}
input.loading {
  background: #d0d5de url(../images/ajax-loader-small-ball.gif) center right no-repeat;
  background-image: url(../images/ajax-loader-small-ball.gif);
  background-position: center right;
  background-repeat: no-repeat;
}
#avoidMotorwaysCheckbox {
  width: 13px;
}
.loggedInUser {
  text-transform: none;
}
.activation_code {
  text-transform: none;
}
#locationOptions > div,
#viaLocations > div {
  margin: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #0b77b7;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#viaLocationsDiv ul.tagit {
  width: 300px;
  margin: 5px;
}
#viaLocationsDiv ul.tagit input.ui-autocomplete-input {
  width: 290px;
}
#locationOptions > div:hover,
#locationOptions > div.active,
#locationOptions > div.selected,
#viaLocations > div:hover,
#viaLocations > div.active,
#viaLocations > div.selected {
  background-color: #fff;
  color: #0b77ff;
}
#topmenubar #jobs,
#topmenubar #drivers,
#topmenubar #options,
#topmenubar #customers {
  display: none;
}
#addJobPane {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#addJobPane input {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -o-user-select: text;
  user-select: text;
}
/********************************************
    JOE- Ticket No 13: Location List
*********************************************/
#previous_addresses {
  margin: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #0b77b7;
  height: 20px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}
#previous_addresses:hover {
  background-color: #fff;
  color: #0b77ff;
}
#previous_addresses #scrollable_area {
  max-height: 500px;
  /* <--CHANGE THIS TO ALTER THE SIZE OF THE SCROLLABLE AREA*/
  overflow: hidden;
  -ms-overflow-x: auto;
  /* IE8 */
  overflow-y: auto;
  overflow-x: none;
  overflow: scroll;
}
#previous_addresses ul {
  padding: 0;
  margin: 0;
}
#previous_addresses ul li a {
  padding: 5px 10px 5px 10px;
}
#previous_addresses a {
  display: block;
}
#previous_addresses li {
  display: block;
  float: left;
}
#previous_addresses li ul {
  display: none;
  position: absolute;
  z-index: 1;
}
#previous_addresses li ul li {
  float: none;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-left: -1px;
}
#previous_addresses li:hover {
  background-color: #fff;
}
#previous_addresses li:hover ul {
  display: block;
}
/********************************************
    JOE- Russels whimisical management button
*********************************************/
.management_modal_wrapper {
  width: 1800px;
  height: 895px;
  background-color: #fff;
  margin: auto;
  overflow: scroll;
}
.management_modal_wrapper #management_modal_menu {
  width: 100%;
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.management_modal_wrapper #management_modal_menu_bottom {
  width: 100%;
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.management_modal_wrapper li {
  margin-left: 10px;
}
.management_modal_wrapper .data_content {
  width: 100%;
  height: 100%;
  position: relative;
}
.management_modal_wrapper #filter,
.management_modal_wrapper #filterButton {
  cursor: pointer;
  position: relative;
  margin-right: 0px;
  margin-left: 10px;
}
.management_modal_wrapper #dataTableOptionsContainer {
  margin-top: 75px;
  margin-bottom: 0px;
}
/*#simplemodal-data{
    width:800px;
    height:600px;
}*/
/*#simplemodal-container{
    width:700px !important;
    height:600px;
}*/
/********************************************
    JOE- IDLE DRIVER
*********************************************/
.idle_driver_search {
  width: 200px;
}
#log_issue_modal {
  width: 500px;
  height: 310px;
  background-color: #ccc;
  border-top: 1px solid #fff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  color: #444;
}
#log_issue_modal p {
  font-weight: bold;
  margin: 30px;
}
#log_issue_modal textarea {
  width: 400px;
  height: 130px;
  margin-top: 10px;
  margin-bottom: 30px;
  display: block;
  margin: auto;
}
#log_issue_modal #issue_submit_button {
  margin: 30px 10px 0px 30px;
  cursor: pointer;
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
  background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
  background-color: #f9f9f9;
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-left-radius: 8px;
  text-indent: 0;
  border: 1px solid #aaa;
  display: inline-block;
  color: #666666;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  height: 39px;
  line-height: 39px;
  width: 120px;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0px #ffffff;
  outline: none;
}
/********************************************
    JOE- JOB CONFIRMATION
*********************************************/
.job_confirmation_modal {
  color: #333;
  width: 650px;
  height: 760px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border-top: 1px solid #fff;
  background-color: #ccc;
}
.job_confirmation_modal h1 {
  text-align: center;
  margin: 10px 0px 25px 0px;
}
.job_confirmation_modal .label {
  width: 160px;
}
.job_confirmation_modal #job_confirmation_table_wrapper {
  margin-top: 10px;
  border-collapse: collapse;
  margin-left: 135px;
  width: 500px;
}
.job_confirmation_modal #job_confirmation_table_wrapper tr {
  display: block;
  padding-bottom: 14px;
}
.job_confirmation_modal #job_confirmation_table_wrapper td {
  border-style: single;
  margin-left: 20px;
}
.job_confirmation_modal #job_confirmation_table_wrapper .last {
  display: block;
  width: 200px;
  height: 50x;
  padding-bottom: 50px;
}
.job_confirmation_modal #job_confirmation_table_wrapper .btnDiv {
  margin-left: 70px;
}
.job_confirmation_modal #job_confirmation_table_wrapper .btnDiv td {
  width: 180px;
  height: 40px;
}
.job_confirmation_modal #job_confirmation_table_wrapper .rtnBtnDiv {
  margin-left: 160px;
}
.job_confirmation_modal #job_confirmation_table_wrapper .rtnBtnDiv td {
  width: 140px;
  height: 40px;
}
.job_confirmation_modal #job_confirmation_table_wrapper button {
  width: 110px;
}
.job_confirmation_modal #job_confirmation_buttons_table_wrapper {
  width: 450px;
  margin: auto;
}
.jobConfirmation {
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
  background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
  background-color: #f9f9f9;
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-left-radius: 8px;
  text-indent: 0;
  border: 1px solid #aaa;
  display: inline-block;
  color: #666666;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  height: 39px;
  line-height: 39px;
  width: 120px;
  text-decoration: none;
  text-align: center;
  text-shadow: 1px 1px 0px #ffffff;
  outline: none;
}
.jobConfirmation:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
  background: -moz-linear-gradient(center top, #e9e9e9 5%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
  background-color: #e9e9e9;
}
/******************************************
    MICHAEL - NOTIFICATION
*******************************************/
.notifyjs-notification-base {
  width: 250px;
  height: 125px;
  background-color: #eee;
  border: 1px solid #aaa;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  opacity: 0.8;
}
.notifyjs-notification-call_details .call {
  margin: 8px 10px 8px 15px;
  font-size: 17px;
  font-weight: bold;
}
.notifyjs-notification-call_details span {
  font-size: 12px;
  font-weight: normal;
}
.notifyjs-notification-call_details .buttons {
  margin-top: 10px;
}
.notifyjs-notification-call_details .add_job {
  float: left;
  margin: 0px 30px 0px 15px;
}
.notifyjs-notification-call_details .add_job,
.notifyjs-notification-call_details .ignore {
  width: 85px;
  height: 35px;
}
.notifyjs-notification-call_details .clear {
  clear: both;
}
/*** temporary fix ****/
#pickupAddress,
#dropoff {
  height: 45px;
  width: 268px;
}
#noOfPassengersDiv {
  clear: both;
  width: 230px;
  height: 20px;
  margin: 5px 0px 5px 15px;
}
#noOfPassengersDiv p {
  font-size: 0.8em;
  color: #444;
  width: 165px;
  height: 20px;
  float: left;
}
.manualDriverChooser .error input {
  background-color: #fcc;
}
.manualDriverChooser .ok input {
  background-color: #cfc;
}
.manualDriverChooser .callSign input {
  font-size: 20px;
}
.anyDriverChooser .error input {
  background-color: #fcc;
}
.anyDriverChooser .ok input {
  background-color: #cfc;
}
.anyDriverChooser .callSign input {
  font-size: 20px;
}
#autodispatch.button.enabled .icon {
  background-position: -250px 0px;
}
#autodispatch.button .icon {
  background-position: -72px 0px;
}
#topmenubar #autodispatch.button.enabled {
  color: #0f0;
}
#topmenubar #autodispatch.button {
  color: #f00;
}
#topmenubar #showQueues.enabled {
  color: #0f0;
}
#topmenubar #showJobs.enabled {
  color: #0f0;
}
#topmenubar #showQueues {
  color: #f00;
}
#topmenubar #showJobs {
  color: #f00;
}
#popupMap {
  border: 4px solid #fff;
  position: absolute;
  width: 400px;
  height: 400px;
  top: 218px;
  background: rgba(255, 255, 255, 0.8);
  left: 345px;
  z-index: 11;
  box-shadow: 3px 3px 3px #ccc;
  display: none;
}
#popupMap #headerText {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 30px;
  z-index: 999;
  font-size: 18px;
  background-color: white;
}
#optionsPicker {
  border: 4px solid #fff;
  position: absolute;
  width: 400px;
  height: 400px;
  top: 218px;
  background: #ffffff;
  left: 290px;
  z-index: 11;
  box-shadow: 3px 3px 3px #ccc;
}
#optionsPicker .swiper-slide {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  padding: 5px;
  background: #eeeeee;
  color: #666;
}
#optionsPicker .swiper-slide.selected {
  background: #86d2ef;
}
#optionsPicker .swiper-slide:hover {
  background: #fff;
  color: #000;
}
#cannedNotesPicker {
  border: 4px solid #fff;
  position: absolute;
  width: 400px;
  height: 200px;
  top: 638px;
  background: #ffffff;
  left: 290px;
  z-index: 11;
  box-shadow: 3px 3px 3px #ccc;
  display: none;
}
#cannedNotesPicker .swiper-slide {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  padding: 5px;
  background: #eeeeee;
  color: #666;
}
#cannedNotesPicker .swiper-slide:hover {
  background: #fff;
  color: #000;
}
#addJobPane .confirmButton {
  display: none;
}
.deleleJobConfirmation,
.logoutConfirmation,
.dateTimeConfirmation {
  width: 400px;
  height: 200px;
  background-color: #333;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border-top: 1px solid #fff;
  background-color: #ccc;
}
.confirmationMsg {
  margin: 45px 0px 50px 35px;
}
#btnDeleteJob,
#btnCancelDelete,
#btnLogout,
#btnCancelLogout,
#btnBeforePresent,
#btnCancelPresent,
#btnInvalidDateFormat {
  float: left;
  margin-left: 45px;
}
#btnDeleteJob.selected,
#btnCancelDelete.selected {
  background: #86d2ef;
  color: black;
}
.icon {
  cursor: pointer;
}
/******* number/name autocomplete ******/
.autoName,
.autoNumber,
.autoAccount,
.autoDriver,
.autoZone {
  font-size: 14px;
}
.ui-widget-content.ui-autocomplete {
  width: 300px;
}
/************ options picker ***********/
.btnDeleteAddress {
  float: right;
  margin-right: 20px;
}
/***** override datatables.js ******/
.dataTables_scrollBody {
  height: 620px !important;
}
.zonesModal {
  position: relative;
  width: 90%;
  height: 800px;
  margin: auto;
  background-color: white;
}
#zonesMap {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.btnCloseZonesModal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2000;
}
.saveZone {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 499px;
  right: 0px;
  background-color: #eee;
  z-index: 2500;
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  display: none;
  -webkit-box-shadow: -2px -2px 6px 0px rgba(50, 50, 50, 0.58);
  -moz-box-shadow: -2px -2px 6px 0px rgba(50, 50, 50, 0.58);
  box-shadow: -2px -2px 6px 0px rgba(50, 50, 50, 0.58);
}
.saveZone h3 {
  color: #444;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.zoneName {
  width: 200px;
  height: 40px;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1em;
  margin-left: 50px;
}
.errorMessage {
  text-align: center;
  color: #444;
  font-size: 0.8em;
  margin-top: 10px;
}
.btnCreateZone {
  margin: 60px 0px 0px 90px;
}
.errorMessage {
  display: none;
  color: #FF3300;
  height: 25px;
}
.bold {
  font-weight: bold;
}
#changeId {
  width: 30px;
}
/******** fix for autocomplete job management screen *******/
.ui-autocomplete {
  z-index: 20000 !important;
}
/*** MJA 230715 ***/
.pos_job_count {
  position: absolute;
  width: 220px;
  height: 45px;
  left: 200px;
  top: 25px;
}
#num_of_jobs {
  font-size: 26px !important;
  font-weight: bold !important;
}
/*** END MJA 230715 ***/
#reload {
  position: absolute;
  display: inline-block;
  height: auto;
  width: auto;
  border: 5px solid #f00;
  top: 5px;
  left: 50%;
  z-index: 10;
  border-radius: 30px;
  background: rgba(255, 0, 0, 0.6);
  font-weight: bold;
  font-size: 20px;
  padding: 5px 40px 5px 5px;
  display: none;
}
#reload button {
  background-color: #008CBA;
  /* Green */
  border: none;
  color: white;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
  border-radius: 3px;
}
.numberDriversOn {
  position: relative;
  font-size: 20px;
  color: red;
}
/*** EM Add BASE Button - Start     ***/
.job_type_section {
  display: inline-block;
  width: 90px;
}
.shout_time_section {
  display: inline-block;
  width: 90px;
}
.shout_time_section_inner {
  display: inline-block;
  width: 80px;
}
.btn_job_type {
  border-bottom: 0px solid #fff !important;
  border: 0px solid #bbb !important;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  color: red !important;
}
.btn_via_location {
  cursor: pointer;
  color: red !important;
}
/*** EM Add BASE Button - reduce Contact number to facilitate the  ***/
#addJobPane .contactNumber {
  width: 200px;
}
#addJobPane .passenger {
  width: 200px;
}
#addJobPane .noticeMins {
  display: inline-block;
  width: 80px;
}
#addJobPane .avoidMotorwaysCheckbox .fixedFareCheckbox {
  display: inline-block;
  width: 25px;
}
/*** EM Add BASE Button - End       ***/
ul.ui-autocomplete .passenger,
ul.ui-autocomplete .phone,
ul.ui-autocomplete .address,
ul.ui-autocomplete .ts,
ul.ui-autocomplete .driver,
ul.ui-autocomplete .note {
  position: relative;
  font-size: 12px;
  color: #666;
  text-transform: none;
}
ul.ui-autocomplete .passenger {
  color: #00f;
}
ul.ui-autocomplete .note {
  border-bottom: 1px solid #ddd;
}
ul.ui-autocomplete .phone {
  color: #000;
}
ul.ui-autocomplete .numRows {
  color: #999;
  font-size: 12px;
}
fieldset.fare {
  display: none;
}
.enable-fares fieldset.fare {
  display: block;
}
#addJobPane fieldset.fare {
  width: 340px;
}
#addJobPane fieldset.fare input {
  flex-grow: 20;
  width: 20px;
}
#addJobPane fieldset.fare input.enabled {
  flex-grow: 1;
}
#addJobPane fieldset.fare > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.currency-euro .currencyInput {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='20px' width='85px'><text x='2' y='17' fill='gray' font-size='16' font-family='arial'>€</text></svg>");
  padding-left: 12px;
}
.currency-pound .currencyInput {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='20px' width='85px'><text x='2' y='17' fill='gray' font-size='16' font-family='arial'>£</text></svg>");
  padding-left: 12px;
}
.leaflet-marker-icon .driverIconWrapper {
  width: 0px;
  height: 0px;
  display: inline-block;
}
.driverIcon {
  width: 30px;
  height: 15px;
  background: #0d0;
  border: 1px solid #0d0;
  border-radius: 0px 0px 6px 6px;
  box-shadow: 5px -3px 5px #888;
  position: relative;
  margin-left: -15px;
  margin-top: -15.5px;
}
.driverIcon.offered {
  background: #C0C0C0;
  border: 1px solid #C0C0C0;
}
.driverIcon.offered .passengers {
  background: #C0C0C0;
}
.driverIcon.offered .callSign:after {
  border-top: 4px solid #C0C0C0;
}
.driverIcon.en_route {
  background: #EE82EE;
  border: 1px solid #EE82EE;
}
.driverIcon.en_route .passengers {
  background: #EE82EE;
}
.driverIcon.en_route .callSign:after {
  border-top: 4px solid #EE82EE;
}
.driverIcon.arrived {
  background: #4497FB;
  border: 1px solid #4497FB;
}
.driverIcon.arrived .passengers {
  background: #4497FB;
}
.driverIcon.arrived .callSign:after {
  border-top: 4px solid #4497FB;
}
.driverIcon.pob {
  background: #d00;
  border: 1px solid #d00;
}
.driverIcon.pob .passengers {
  background: #d00;
}
.driverIcon.pob .callSign:after {
  border-top: 4px solid #d00;
}
.driverIcon.soon_to_clear {
  background: #FFA500;
  border: 1px solid #FFA500;
}
.driverIcon.soon_to_clear .passengers {
  background: #FFA500;
}
.driverIcon.soon_to_clear .callSign:after {
  border-top: 4px solid #FFA500;
}
.driverIcon.unavailable {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.driverIcon.unavailable .passengers {
  background: #FFFFFF;
}
.driverIcon .passengers {
  position: absolute;
  color: #000;
  top: -16px;
  height: 16px;
  background: #0d0;
  padding: 0px 2px;
  right: -1px;
  font-size: 13px;
  border-radius: 6px 6px 0px 0px;
  box-shadow: 5px -3px 5px #888;
}
.driverIcon .wheelchair {
  position: absolute;
  top: -16px;
  height: 16px;
  width: 14px;
  background: transparent url(../images/wheelchair-tiny.png) no-repeat;
  box-shadow: 5px -3px 5px #888;
  border-radius: 6px 6px 0px 0px;
  right: 8px;
  display: none;
}
.driverIcon.wheelchair .wheelchair {
  display: inline-block;
}
.driverIcon .expiredAlert {
  position: absolute;
  top: -16px;
  height: 16px;
  width: 8px;
  font-weight: bold;
  background: #d00;
  border-radius: 6px 6px 0px 0px;
}
.driverIcon .callSign {
  position: relative;
  text-align: center;
  text-shadow: 0px 0px 3px #999;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -1px;
  bottom: 2px;
}
.driverIcon .callSign:after {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 4px solid #0d0;
  bottom: -1px;
  left: 12.5px;
  z-index: -1;
  content: "";
}
.driverIcon.unavailable .callSign:after {
  border-top: 4px solid #FFFFFF;
}
#queues li[status=available] {
  color: #0d0;
}
#queues li[status=unavailable] {
  color: rgba(0, 0, 0, 0.3);
}
#queues li[status=offered] {
  color: #C0C0C0;
}
#queues li[status=assigned] {
  color: #4497FB;
}
#queues li[status=pob] {
  color: #d00;
}
#queues li[status=soonToClear] {
  color: #FFA500;
}
#live_jobs_table_container {
  margin-top: 50px;
}
#live_jobs_table_container html,
#live_jobs_table_container body,
#live_jobs_table_container div,
#live_jobs_table_container span,
#live_jobs_table_container applet,
#live_jobs_table_container object,
#live_jobs_table_container iframe,
#live_jobs_table_container h1,
#live_jobs_table_container h2,
#live_jobs_table_container h3,
#live_jobs_table_container h4,
#live_jobs_table_container h5,
#live_jobs_table_container h6,
#live_jobs_table_container p,
#live_jobs_table_container blockquote,
#live_jobs_table_container pre,
#live_jobs_table_container a,
#live_jobs_table_container abbr,
#live_jobs_table_container acronym,
#live_jobs_table_container address,
#live_jobs_table_container big,
#live_jobs_table_container cite,
#live_jobs_table_container code,
#live_jobs_table_container del,
#live_jobs_table_container dfn,
#live_jobs_table_container em,
#live_jobs_table_container font,
#live_jobs_table_container img,
#live_jobs_table_container ins,
#live_jobs_table_container kbd,
#live_jobs_table_container q,
#live_jobs_table_container s,
#live_jobs_table_container samp,
#live_jobs_table_container small,
#live_jobs_table_container strike,
#live_jobs_table_container strong,
#live_jobs_table_container sub,
#live_jobs_table_container sup,
#live_jobs_table_container tt,
#live_jobs_table_container var,
#live_jobs_table_container dl,
#live_jobs_table_container dt,
#live_jobs_table_container dd,
#live_jobs_table_container ol,
#live_jobs_table_container ul,
#live_jobs_table_container li,
#live_jobs_table_container fieldset,
#live_jobs_table_container form,
#live_jobs_table_container label,
#live_jobs_table_container legend,
#live_jobs_table_container table,
#live_jobs_table_container caption,
#live_jobs_table_container tbody,
#live_jobs_table_container tfoot,
#live_jobs_table_container thead,
#live_jobs_table_container tr,
#live_jobs_table_container th,
#live_jobs_table_container td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
#live_jobs_table_container :focus {
  outline: 0;
}
#live_jobs_table_container body {
  line-height: 1;
  color: black;
  background: white;
}
#live_jobs_table_container ol,
#live_jobs_table_container ul {
  list-style: none;
}
#live_jobs_table_container table {
  border-collapse: separate;
  border-spacing: 0;
}
#live_jobs_table_container caption,
#live_jobs_table_container th,
#live_jobs_table_container td {
  text-align: left;
  font-weight: normal;
}
#live_jobs_table_container blockquote:before,
#live_jobs_table_container blockquote:after,
#live_jobs_table_container q:before,
#live_jobs_table_container q:after {
  content: "";
}
#live_jobs_table_container blockquote,
#live_jobs_table_container q {
  quotes: "" "";
}
#live_jobs_table_container table.dataTable {
  margin: 0 auto;
  clear: both;
  width: 100%;
}
#live_jobs_table_container table.dataTable thead th {
  padding: 3px 18px 3px 10px;
  border-bottom: 1px solid black;
  font-weight: bold;
  cursor: pointer;
  *cursor: hand;
}
#live_jobs_table_container table.dataTable tfoot th {
  padding: 3px 18px 3px 10px;
  border-top: 1px solid black;
  font-weight: bold;
}
#live_jobs_table_container table.dataTable td {
  padding: 3px 10px;
}
#live_jobs_table_container table.dataTable td.center,
#live_jobs_table_container table.dataTable td.dataTables_empty {
  text-align: center;
}
#live_jobs_table_container .dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
}
#live_jobs_table_container .dataTables_length {
  float: left;
}
#live_jobs_table_container .dataTables_info {
  clear: both;
  float: left;
}
#live_jobs_table_container .dataTables_paginate {
  float: right;
  text-align: right;
}
#live_jobs_table_container .paginate_disabled_previous,
#live_jobs_table_container .paginate_enabled_previous,
#live_jobs_table_container .paginate_disabled_next,
#live_jobs_table_container .paginate_enabled_next {
  height: 19px;
  float: left;
  cursor: pointer;
  *cursor: hand;
  color: #111 !important;
}
#live_jobs_table_container .paginate_disabled_previous:hover,
#live_jobs_table_container .paginate_enabled_previous:hover,
#live_jobs_table_container .paginate_disabled_next:hover,
#live_jobs_table_container .paginate_enabled_next:hover {
  text-decoration: none !important;
}
#live_jobs_table_container .paginate_disabled_previous:active,
#live_jobs_table_container .paginate_enabled_previous:active,
#live_jobs_table_container .paginate_disabled_next:active,
#live_jobs_table_container .paginate_enabled_next:active {
  outline: none;
}
#live_jobs_table_container .paginate_disabled_previous,
#live_jobs_table_container .paginate_disabled_next {
  color: #666 !important;
}
#live_jobs_table_container .paginate_disabled_previous,
#live_jobs_table_container .paginate_enabled_previous {
  padding-left: 23px;
}
#live_jobs_table_container .paginate_disabled_next,
#live_jobs_table_container .paginate_enabled_next {
  padding-right: 23px;
  margin-left: 10px;
}
#live_jobs_table_container .paginate_enabled_previous {
  background: url('../images/back_enabled.png') no-repeat top left;
}
#live_jobs_table_container .paginate_enabled_previous:hover {
  background: url('../images/back_enabled_hover.png') no-repeat top left;
}
#live_jobs_table_container .paginate_disabled_previous {
  background: url('../images/back_disabled.png') no-repeat top left;
}
#live_jobs_table_container .paginate_enabled_next {
  background: url('../images/forward_enabled.png') no-repeat top right;
}
#live_jobs_table_container .paginate_enabled_next:hover {
  background: url('../images/forward_enabled_hover.png') no-repeat top right;
}
#live_jobs_table_container .paginate_disabled_next {
  background: url('../images/forward_disabled.png') no-repeat top right;
}
#live_jobs_table_container .paging_full_numbers {
  height: 22px;
  line-height: 22px;
}
#live_jobs_table_container .paging_full_numbers a:active {
  outline: none;
}
#live_jobs_table_container .paging_full_numbers a:hover {
  text-decoration: none;
}
#live_jobs_table_container .paging_full_numbers a.paginate_button,
#live_jobs_table_container .paging_full_numbers a.paginate_active {
  border: 1px solid #aaa;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 2px 5px;
  margin: 0 3px;
  cursor: pointer;
  *cursor: hand;
  color: #333 !important;
}
#live_jobs_table_container .paging_full_numbers a.paginate_button {
  background-color: #ddd;
}
#live_jobs_table_container .paging_full_numbers a.paginate_button:hover {
  background-color: #ccc;
  text-decoration: none !important;
}
#live_jobs_table_container .paging_full_numbers a.paginate_active {
  background-color: #99B3FF;
}
#live_jobs_table_container .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 30px;
  margin-left: -125px;
  margin-top: -15px;
  padding: 14px 0 2px 0;
  border: 1px solid #ddd;
  text-align: center;
  color: #999;
  font-size: 14px;
  background-color: white;
}
#live_jobs_table_container .sorting {
  background: url('../images/sort_both.png') no-repeat center right;
}
#live_jobs_table_container .sorting_asc {
  background: url('../images/sort_asc.png') no-repeat center right;
}
#live_jobs_table_container .sorting_desc {
  background: url('../images/sort_desc.png') no-repeat center right;
}
#live_jobs_table_container .sorting_asc_disabled {
  background: url('../images/sort_asc_disabled.png') no-repeat center right;
}
#live_jobs_table_container .sorting_desc_disabled {
  background: url('../images/sort_desc_disabled.png') no-repeat center right;
}
#live_jobs_table_container table.dataTable thead th:active,
#live_jobs_table_container table.dataTable thead td:active {
  outline: none;
}
#live_jobs_table_container .dataTables_scroll {
  clear: both;
}
#live_jobs_table_container .dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}
#live_jobs_table_container html,
#live_jobs_table_container body,
#live_jobs_table_container * {
  font-family: arial;
}
#live_jobs_table_container .modal_table {
  width: 100%;
}
#live_jobs_table_container #htmlTemplates {
  display: none;
}
#live_jobs_table_container tr th {
  font-weight: bold;
}
#live_jobs_table_container td img {
  height: 30px;
  width: auto;
}
#live_jobs_table_container tr th,
#live_jobs_table_container tr td {
  padding: 2px 8px 2px 3px;
  margin-right: 6px;
  white-space: nowrap;
}
#live_jobs_table_container td.error,
#live_jobs_table_container input.error {
  background-color: #fdd;
}
#live_jobs_table_container .DTTT_container {
  /*display: none;*/
  height: 55px;
}
#live_jobs_table_container div.DTTT_container {
  position: relative;
  margin: 10px;
  float: left;
}
#live_jobs_table_container button.DTTT_button,
#live_jobs_table_container div.DTTT_button,
#live_jobs_table_container a.DTTT_button {
  position: relative;
  float: left;
  margin-right: 20px;
  padding: 10px 20px;
  border: 1px solid #999;
  cursor: pointer;
  *cursor: hand;
  font-size: 0.88em;
  color: black !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px #ccc;
  -moz-box-shadow: 1px 1px 3px #ccc;
  -ms-box-shadow: 1px 1px 3px #ccc;
  -o-box-shadow: 1px 1px 3px #ccc;
  box-shadow: 1px 1px 3px #ccc;
  /* Generated by http://www.colorzilla.com/gradient-editor/ */
  background: #ffffff;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* Opera 11.10+ */
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9', GradientType=0);
  /* IE6-9 */
}
#live_jobs_table_container button.DTTT_button {
  height: 30px;
  padding: 3px 8px;
}
#live_jobs_table_container .DTTT_button embed {
  outline: none;
}
#live_jobs_table_container button.DTTT_button:hover,
#live_jobs_table_container div.DTTT_button:hover,
#live_jobs_table_container a.DTTT_button:hover {
  border: 1px solid #666;
  text-decoration: none !important;
  -webkit-box-shadow: 1px 1px 3px #999;
  -moz-box-shadow: 1px 1px 3px #999;
  -ms-box-shadow: 1px 1px 3px #999;
  -o-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
  background: #f3f3f3;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);
  /* Opera 11.10+ */
  background: linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#f4f4f4', GradientType=0);
  /* IE6-9 */
}
#live_jobs_table_container button.DTTT_disabled,
#live_jobs_table_container div.DTTT_disabled,
#live_jobs_table_container a.DTTT_disabled {
  color: #999;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 89%, #fafafa 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 89%, #fafafa 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 89%, #fafafa 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 89%, #fafafa 100%);
  /* Opera 11.10+ */
  background: linear-gradient(top, #ffffff 0%, #f9f9f9 89%, #fafafa 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fafafa', GradientType=0);
  /* IE6-9 */
}
#live_jobs_table_container button.DTTT_button_collection span {
  padding-right: 17px;
  background: url(../images/collection.png) no-repeat center right;
}
#live_jobs_table_container button.DTTT_button_collection:hover span {
  padding-right: 17px;
  background: #f0f0f0 url(../images/collection_hover.png) no-repeat center right;
}
#live_jobs_table_container table.DTTT_selectable tbody tr {
  cursor: pointer;
  *cursor: hand;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.odd {
  background-color: #9FAFD1;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.odd td.sorting_1 {
  background-color: #9FAFD1;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.odd td.sorting_2 {
  background-color: #9FAFD1;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.odd td.sorting_3 {
  background-color: #9FAFD1;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.even {
  background-color: #B0BED9;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.even td.sorting_1 {
  background-color: #B0BED9;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.even td.sorting_2 {
  background-color: #B0BED9;
}
#live_jobs_table_container table.dataTable tr.DTTT_selected.even td.sorting_3 {
  background-color: #B0BED9;
}
#live_jobs_table_container div.DTTT_collection {
  width: 150px;
  padding: 8px 8px 4px 8px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: #f3f3f3;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 2002;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
#live_jobs_table_container div.DTTT_collection_background {
  background: transparent url(../images/background.png) repeat top left;
  z-index: 2001;
}
#live_jobs_table_container div.DTTT_collection button.DTTT_button,
#live_jobs_table_container div.DTTT_collection div.DTTT_button,
#live_jobs_table_container div.DTTT_collection a.DTTT_button {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  float: none;
  margin-bottom: 4px;
  -webkit-box-shadow: 1px 1px 3px #999;
  -moz-box-shadow: 1px 1px 3px #999;
  -ms-box-shadow: 1px 1px 3px #999;
  -o-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
#live_jobs_table_container .DTTT_print_info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 150px;
  margin-left: -200px;
  margin-top: -75px;
  text-align: center;
  color: #333;
  padding: 10px 30px;
  background: #ffffff;
  /* Old browsers */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* Opera 11.10+ */
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9', GradientType=0);
  /* IE6-9 */
  opacity: 0.95;
  border: 1px solid black;
  border: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}
#live_jobs_table_container .DTTT_print_info h6 {
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 1em;
}
#live_jobs_table_container .DTTT_print_info p {
  font-size: 14px;
  line-height: 20px;
}
#live_jobs_table_container tr td:nth-child(4),
#live_jobs_table_container tr th:nth-child(4) {
  display: none;
}
#live_jobs_table_container td.offered {
  background: #C0C0C0;
}
#live_jobs_table_container td.pob {
  background: #d00;
}
#live_jobs_table_container td.available {
  background: #0d0;
}
#live_jobs_table_container td.unavailable {
  background: #FFFFFF;
}
#live_jobs_table_container td.arrived {
  background: #4497FB;
}
#live_jobs_table_container td.en_route {
  background: #EE82EE;
}
#live_jobs_table_container td.soon_to_clear {
  background: #FFA500;
}
#live_jobs_table_container {
  position: relative;
}
#live_jobs_table_container #live_jobs_table_filter {
  text-align: left;
  padding: 6px;
  font-weight: bold;
  margin-bottom: 5px;
}
#live_jobs_table_container #live_jobs_table_filter input {
  margin-left: 15px;
  width: 200px;
  height: 25px;
  font-size: 16px;
}
#live_jobs_table_container #live_jobs_table_checkbox_filters {
  position: absolute;
  top: 10px;
  left: 300px;
  z-index: 100;
}
#live_jobs_table_container #live_jobs_table_checkbox_filters input {
  position: relative;
}
#driver_search_input_container {
  position: absolute;
  top: 47px;
  left: 391px;
}
#driver_search_input_container input {
  width: 200px;
  height: 30px;
  font-size: 18px;
}
.popup,
.popup * {
  box-sizing: border-box;
}
.popup {
  position: absolute;
  top: 50px;
  left: 50px;
  border: 1px solid #f00;
  display: inline-block;
  z-index: 10000;
  background: #fff;
  padding: 0px;
  display: none;
  height: auto;
  border: 1px solid #bebebe;
  border-radius: .2em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.popup ul {
  list-style-type: none;
}
.popup ul li {
  width: 100%;
  padding: 5px 10px;
  text-align: left;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.popup ul li.header {
  color: #666;
  background-color: #ccc;
}
.popup ul li.item:hover {
  background-color: #2980b9;
  color: #fff;
}
.repPopupCancel {
  background-color: #d00;
  border: none;
  color: white;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
  border-radius: 3px;
}
.repPopupSave {
  background-color: #0d0;
  border: none;
  color: white;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
  border-radius: 3px;
}
#upload_cv_modal_container {
  width: 400px;
  height: 200px;
  padding: 30px;
}
#upload_cv_modal_container iframe {
  width: 400px;
  height: 200px;
}
#price_all_jobs_button {
  width: 150px;
}
