/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    /*-webkit-tap-highlight-color: rgba(0,0,0,0); !* make transparent link selection, adjust last value opacity 0 to 1.0 *!*/
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#E4E4E4;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:12px;
    height:100%;
    margin:0px;
    padding:0px;
    width:100%;
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}

.flex-container {

  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.leftHeaderColumn {
  flex: 10;
}

.headerCenter {
  text-align: right;
  flex: 5;
}

.rightHeaderColumn {
  text-align: right;
  flex: 10;
}

.main_menu_btn {
    width: 60%;
    padding: 10px 10px !important;
    padding-right: 5px !important;
}

@media (max-width: 768px) {
    .main_menu_btn {
        width: 70%;
        padding: 10px 10px !important;
        padding-right: 5px !important;
    }
}

@media (max-width: 480px) {
    .main_menu_btn {
        width: 90%;
        padding: 10px 10px !important;
        padding-right: 5px !important;
    }
}


.main_menu_btn {
    display: flex;
}

.main_menu_btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu_btn .left {
    text-align: left;
    width: 17%;
}

.main_menu_btn .middle {
    width: 66%;
}

.main_menu_btn .right {
    width: 17%;
}html,
body {
  padding: 0;
  margin: 0;
}

.fixed-top {
  padding-top: env(safe-area-inset-top) !important;
  height: calc(your_header_height + env(safe-area-inset-top)) !important;
}/* fries.min.css (v2.0.4) 15-07-2014 */

.action-bar {
  right: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #151515;
  background-color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25)
}

.action-bar .title, .action-bar .subtitle, .action-bar .app-icon {
  float: left;
  display: inline-block
}

.action-bar .title {
  margin-left: 1px;
  font-weight: 400;
  color: #fff
}

.action-bar h1.title {
  font-size: 16px;
}

.action-bar h2.title {
  font-size: 14px;
  line-height: 18px;
  padding: 8px 0 4px
}

.action-bar .subtitle {
  color: #ccc;
  font-size: 12px;
  font-weight: 200
}

.action-bar .app-icon {
  position: relative;
  padding: 8px 0;
  margin-left: 10px;
  font-size: 24px;
  line-height: 24px;
  text-align: center
}

.action-bar .app-icon img {
  float: right
}

.action-bar .app-icon.up {
  margin-left: 0
}

.action-bar.fixed-top {
  top: 0
}

.action-bar.fixed-bottom {
  bottom: 0
}

ul.actions, ul.actions li {
  display: inline-block
}

ul.actions {
  list-style: none
}

ul.actions li .action {
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

ul.actions.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal
}

ul.actions.flex > li {
  float: none;
  display: block;
  width: 100%;
  text-align: center
}

ul.actions.flex > li.action-overflow {
  display: initial;
  width: 48px
}

.action {
  display: inline-block;
  padding: 8px
}

.action [class*=icon-], .action .action-title {
  float: left;
  display: inline-block
}

.action [class*=icon-] {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  color: #999;
  text-align: center
}

.action .icon-up-button {
  width: 10px;
  font-size: 48px
}

.action .action-title {
  margin: 0 25px 0 5px;
  height: 32px;
  color: #999;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px
}

.action:active {
  background-color: rgba(51, 181, 229, .6);
  z-index: 1
}

.action.page-action {
  position: relative
}

.action.page-action:after {
  position: absolute;
  content: '';
  right: -1px;
  top: 12px;
  width: 1px;
  height: 24px;
  background-color: #3c3c3c
}

.action-overflow {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.action-overflow-hidden {
  display: none !important
}

.action-overflow-icon {
  cursor: pointer;
  padding: 21px 22px 20px 21px
}

.action-overflow-icon i, .action-overflow-icon i:before, .action-overflow-icon i:after {
  display: block;
  width: 5px;
  height: 5px;
  background: #999
}

.action-overflow-icon i {
  position: relative;
  z-index: 0
}

.action-overflow-icon i:before, .action-overflow-icon i:after {
  position: absolute;
  content: '';
  left: 0
}

.action-overflow-icon i:before {
  top: -8px
}

.action-overflow-icon i:after {
  top: 8px
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  padding-bottom: 1px
}

body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.67em;
}

a {
  color: #33b5e5;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.selectable:active {
  background-color: rgba(51, 181, 229, .6)
}

.pull-right {
  float: right !important
}

a[class*=btn] {
  padding: 9px 36px 8px
}

[class*=btn] {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 11px 36px;
  border: 0;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 14px;
  vertical-align: middle;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5);
  color: black;
}

[class*=btn]:hover, [class*=btn].hover, [class*=btn]:focus, [class*=btn].focused {
  outline: 0;
  background: #1f5366;
  -webkit-box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5)
}

[class*=btn]:active, [class*=btn].active {
  padding: 11px 36px 10px;
  background: rgba(0, 153, 204, .8);
  border: 0;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6)
}

[class*=btn]:disabled, [class*=btn].disabled {
  opacity: .3
}

.btn[disabled], .btn-small[disabled] {
  opacity: .3
}

[class*=btn] + [class*=btn] {
  margin-left: 3px
}

.btn-small {
  font-size: 12px
}

.btn-block {
  width: 100%
}

.btn-block + .btn-block {
  margin-left: 0
}

.page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.content {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  overflow-wrap: break-word;
  text-wrap: normal
}

.action-bar + .tab-fixed + .content, .action-bar + .tab-fixed + .action-bar + .content {
  top: 96px
}

.action-bar ~ .content, .tab-fixed ~ .content {
}

.action-bar.fixed-bottom ~ .content {
  bottom: 48px
}

.inset {
  padding: 15px
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  width: 100%
}

.flex > * {
  -webkit-box-flex: 1;
  box-flex: 1
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

.dialogs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 999;
  -webkit-transition: opacity .1s ease-out;
  -moz-transition: opacity .1s ease-out;
  transition: opacity .1s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.dialogs.fade-in {
  opacity: 1
}

.dialogs.on {
  visibility: visible
}

.dialog {
  position: absolute;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: #222;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  width: 85%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: scale3d(0.7, .7, 1);
  -moz-transform: scale3d(0.7, .7, 1);
  transform: scale3d(0.7, .7, 1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.dialog .dialog-title-region {
  height: 56px;
  border-bottom: solid 2px #33b5e5;
  padding: 0 15px
}

.dialog .dialog-title-region .title {
  font-size: 18px;
  font-weight: 400;
  color: #33b5e5;
  line-height: 56px
}

.dialog .dialog-content {
  color: #fff
}

.dialog .dialog-content ul.list li {
  padding: 5px 15px
}

.dialog ul.dialog-actions {
  list-style: none;
  border-top: 1px solid #424242;
  height: 48px
}

.dialog ul.dialog-actions li {
  float: left;
  display: inline-block;
  width: 50%;
  border-right: 1px solid #424242
}

.dialog ul.dialog-actions li a {
  display: block;
  color: #fff;
  font-size: 12px;
  height: 47px;
  text-align: center;
  line-height: 48px
}

.dialog ul.dialog-actions li a:active {
  background-color: rgba(51, 181, 229, .6)
}

.dialog ul.dialog-actions li:first-child a {
  border-bottom-left-radius: 2px
}

.dialog ul.dialog-actions li:last-child {
  border: 0
}

.dialog ul.dialog-actions li:last-child a {
  border-bottom-right-radius: 2px
}

.dialog.push {
  -webkit-animation: push .2s;
  -moz-animation: push .2;
  animation: push .2s
}

.dialog.pop {
  -webkit-animation: pop .2s;
  -moz-animation: pop .2s;
  animation: pop .2s
}

.dialog.on {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1)
}

form {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

form.form-flex .flex-group {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  margin: 0
}

form.form-flex .flex-group .flex1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1
}

form.form-flex .flex-group .flex2 {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2
}

form.form-flex .flex-group .flex3 {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  box-flex: 3
}

form.form-flex .flex-group > :nth-child(n) {
  margin-left: 10px
}

form.form-flex .flex-group > :first-child {
  margin-left: 0
}

[class*=flex].input-text + [class*=flex].input-text {
  margin-left: 10px
}

.input-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  outline: 0;
  border: 0;
  padding: 10px 10px 0;
  width: 100%;
  height: 48px;
  background: transparent;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: border ease-out .2s;
  -moz-transition: border ease-out .2s;
  transition: border ease-out .2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400
}

.input-text:focus {
  border-bottom: 1px solid #09c
}

.input-text[type=password] {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace
}

legend.form-legend, label.block-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 5px 5px 3px;
  margin-top: 10px;
  width: 100%;
  border-bottom: 2px solid #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

label.inline-label {
  display: block
}

.form-actions {
  margin-top: 20px
}

.input-pretty {
  position: relative;
  display: block;
  margin-bottom: 8px
}

.input-pretty:before, .input-pretty:after {
  position: absolute;
  content: '';
  bottom: 0;
  height: 5px;
  width: 1px;
  background: #333;
  -webkit-transition: background ease-out .2s;
  -moz-transition: background ease-out .2s;
  transition: background ease-out .2s
}

.input-pretty:before {
  left: 0
}

.input-pretty:after {
  right: 0
}

.input-pretty.focus:before, .input-pretty.focus:after {
  background: #09c
}

.input-switch-wrapper {
  position: relative;
  display: inline-block;
  width: 96px;
  padding: 12px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-switch-wrapper .input-switch {
  display: none
}

.input-switch-wrapper .input-switch:checked + .input-switch-outer .input-switch-button {
  background-color: rgba(0, 153, 204, .8);
  -webkit-transform: translateX(100%);
  transform: translateX(100%)
}

.input-switch-wrapper .input-switch:checked + .input-switch-outer .input-switch-button:before {
  content: 'On'
}

.input-switch-wrapper .input-switch-outer {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 0 solid #999;
  border-radius: 0
}

.input-switch-wrapper .input-switch-outer .input-switch-inner {
  background: #333
}

.input-switch-wrapper .input-switch-outer .input-switch-inner .input-switch-button {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  width: 48px;
  height: 24px;
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  line-height: 24px;
  background-color: #424242;
  color: #fff;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), inset 0 2px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

.input-switch-wrapper .input-switch-outer .input-switch-inner .input-switch-button:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: 'Off';
  width: 100%;
  height: 100%
}

.input-radio-wrapper {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-radio-wrapper .input-radio {
  position: absolute;
  left: -9999px
}

.input-radio-wrapper .input-radio:checked[disabled] + .input-radio-inner .input-radio-button {
  background: rgba(51, 51, 51, .8);
  -webkit-box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  -moz-box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5)
}

.input-radio-wrapper .input-radio:checked + .input-radio-inner .input-radio-button {
  background: #33b5e5;
  -webkit-box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  -moz-box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5)
}

.input-radio-wrapper .input-radio:active + .input-radio-inner {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-radio-wrapper .input-radio[disabled] + .input-radio-inner {
  border-color: rgba(51, 51, 51, .8)
}

.input-radio-wrapper .input-radio:focus[disabled] + .input-radio-inner:before {
  border-color: rgba(0, 153, 204, .6)
}

.input-radio-wrapper .input-radio:focus + .input-radio-inner:before {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  display: block;
  content: '';
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 1px solid #09c
}

.input-radio-wrapper .input-radio-inner {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #424242;
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out
}

.input-radio-wrapper .input-radio-inner:active {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-radio-wrapper .input-radio-inner:focus {
  outline: 0
}

.input-radio-wrapper .input-radio-inner .input-radio-button {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  width: 8px;
  height: 8px;
  margin: 3px;
  background: transparent
}

.input-checkbox-wrapper {
  display: block;
  width: 32px;
  height: 32px;
  padding: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-checkbox-wrapper .input-checkbox {
  position: absolute;
  left: -9999px
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button {
  background: transparent
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button:before {
  border-color: rgba(51, 51, 51, .8)
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button:after {
  border-color: transparent
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button {
  border-color: transparent
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button:before {
  border-color: #fff
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button:after {
  border-color: rgba(255, 255, 255, .5)
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button {
  position: absolute;
  top: -9px;
  width: 10px;
  right: -4px;
  height: 18px;
  border: solid #222;
  border-width: 0 6px 6px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg)
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:before, .input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:after {
  position: absolute;
  content: '';
  width: 5px
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:before {
  top: 2px;
  right: -5px;
  height: 12px;
  border: solid #33b5e5;
  border-width: 0 3px 3px 0;
  height: 12px
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:after {
  top: 1px;
  right: -4px;
  height: 15px;
  border: solid rgba(51, 181, 229, .5);
  border-width: 0 2px 2px 0;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  filter: blur(2px)
}

.input-checkbox-wrapper .input-checkbox:active + .input-checkbox-outer {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-checkbox-wrapper .input-checkbox[disabled] + .input-checkbox-outer {
  border-color: rgba(51, 51, 51, .8)
}

.input-checkbox-wrapper .input-checkbox:focus[disabled] + .input-checkbox-outer:before {
  border-color: rgba(0, 153, 204, .6)
}

.input-checkbox-wrapper .input-checkbox:focus + .input-checkbox-outer:before {
  position: absolute;
  display: block;
  content: '';
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 1px solid #09c
}

.input-checkbox-wrapper .input-checkbox-outer {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #424242;
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out
}

.input-checkbox-wrapper .input-checkbox-outer:active {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-checkbox-wrapper .input-checkbox-outer:focus {
  outline: 0
}

.input-checkbox-wrapper .input-checkbox-outer .input-checkbox-button {
  width: 8px;
  height: 8px;
  margin: 3px;
  background: transparent
}

@font-face {
  font-family: icomoon;
  src: url(/assets/icomoon.a7b2c3ac.eot);
  src: url(/assets/icomoon.a7b2c3ac.eot?#iefix) format("embedded-opentype"), url(/assets/icomoon.47d1530f.woff) format("woff"), url(/assets/icomoon.315715ae.ttf) format("truetype"), url(/assets/icomoon.47ba7d6a.svg#icomoon) format("svg");
  font-weight: 400;
  font-style: normal
}

[data-icon]:before {
  font-family: icomoon;
  content: attr(data-icon);
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased
}

.icon-back, .icon-accept, .icon-cancel, .icon-chevron-up, .icon-chevron-down, .icon-forward, .icon-chevron-right, .icon-chevron-left, .icon-refresh, .icon-information, .icon-help, .icon-search, .icon-settings, .icon-vote-down, .icon-heart, .icon-star-half, .icon-vote-up, .icon-star-full, .icon-star-empty, .icon-cloud, .icon-folder, .icon-calendar, .icon-tags, .icon-add-tag, .icon-sort-by-size, .icon-grid, .icon-view-as-list, .icon-attachment, .icon-new-image, .icon-new-event, .icon-new-attachment, .icon-new-message, .icon-new, .icon-merge, .icon-import-export, .icon-calendar-event, .icon-mail, .icon-edit, .icon-trash, .icon-cut, .icon-copy, .icon-backspace, .icon-clipboard, .icon-image, .icon-read, .icon-remove, .icon-save, .icon-select-all, .icon-split, .icon-undo, .icon-unread, .icon-add-group, .icon-add-person, .icon-cc-bcc, .icon-chat, .icon-forward-2, .icon-slideshow, .icon-rotate-right, .icon-rotate-left, .icon-globe, .icon-crop, .icon-location-marker, .icon-map, .icon-direction, .icon-share, .icon-send, .icon-reply-all, .icon-reply, .icon-person, .icon-group, .icon-add-to-queue, .icon-download, .icon-fast-forward, .icon-full-screen, .icon-pin, .icon-next, .icon-pause, .icon-pause-2, .icon-play, .icon-play-2, .icon-previous, .icon-repeat, .icon-replay, .icon-return-from-full-screen, .icon-brightness-high, .icon-brightness-auto, .icon-bluetooth-searching, .icon-bluetooth-connected, .icon-bluetooth, .icon-brightness, .icon-battery, .icon-add-alarm, .icon-alarm, .icon-key, .icon-upload, .icon-stop, .icon-shuffle, .icon-rewind, .icon-brightness-medium, .icon-call, .icon-camera, .icon-dashboard, .icon-dial, .icon-hang-up, .icon-power-auto, .icon-power-none, .icon-power, .icon-location-target, .icon-location-off, .icon-location-searching, .icon-microphone, .icon-microphone-off, .icon-clock, .icon-camera-video-rotate, .icon-camera-rotate, .icon-storage, .icon-locked, .icon-storage-sd, .icon-screen-lock-portrait, .icon-screen-rotate, .icon-screen-lock-landscape, .icon-call-volume, .icon-unlocked, .icon-new-account, .icon-signal, .icon-signal-2, .icon-usb, .icon-mouse, .icon-smartphone, .icon-fries, .icon-video, .icon-volume-off, .icon-volume-adjust, .icon-airplane, .icon-airplane-2, .icon-alert, .icon-alert-2, .icon-laptop, .icon-desktop, .icon-joystick, .icon-headphones, .icon-headphones-mic, .icon-keyboard, .icon-up-button {
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased
}

.icon-back:before {
  content: "\e001"
}

.icon-accept:before {
  content: "\e002"
}

.icon-cancel:before {
  content: "\e003"
}

.icon-chevron-up:before {
  content: "\e004"
}

.icon-chevron-down:before {
  content: "\e005"
}

.icon-forward:before {
  content: "\e006"
}

.icon-chevron-right:before {
  content: "\e007"
}

.icon-chevron-left:before {
  content: "\e008"
}

.icon-refresh:before {
  content: "\e009"
}

.icon-information:before {
  content: "\e010"
}

.icon-help:before {
  content: "\e011"
}

.icon-search:before {
  content: "\e012"
}

.icon-settings:before {
  content: "\e013"
}

.icon-vote-down:before {
  content: "\e020"
}

.icon-heart:before {
  content: "\e021"
}

.icon-star-half:before {
  content: "\e023"
}

.icon-vote-up:before {
  content: "\e022"
}

.icon-star-full:before {
  content: "\e024"
}

.icon-star-empty:before {
  content: "\e025"
}

.icon-cloud:before {
  content: "\e030"
}

.icon-folder:before {
  content: "\e031"
}

.icon-calendar:before {
  content: "\e032"
}

.icon-tags:before {
  content: "\e033"
}

.icon-add-tag:before {
  content: "\e034"
}

.icon-sort-by-size:before {
  content: "\e035"
}

.icon-grid:before {
  content: "\e036"
}

.icon-view-as-list:before {
  content: "\e037"
}

.icon-attachment:before {
  content: "\e040"
}

.icon-new-image:before {
  content: "\e04e"
}

.icon-new-event:before {
  content: "\e04d"
}

.icon-new-attachment:before {
  content: "\e04b"
}

.icon-new-message:before {
  content: "\e04c"
}

.icon-new:before {
  content: "\e04a"
}

.icon-merge:before {
  content: "\e049"
}

.icon-import-export:before {
  content: "\e048"
}

.icon-calendar-event:before {
  content: "\e047"
}

.icon-mail:before {
  content: "\e046"
}

.icon-edit:before {
  content: "\e045"
}

.icon-trash:before {
  content: "\e044"
}

.icon-cut:before {
  content: "\e043"
}

.icon-copy:before {
  content: "\e042"
}

.icon-backspace:before {
  content: "\e041"
}

.icon-clipboard:before {
  content: "\e04f"
}

.icon-image:before {
  content: "\e050"
}

.icon-read:before {
  content: "\e051"
}

.icon-remove:before {
  content: "\e052"
}

.icon-save:before {
  content: "\e053"
}

.icon-select-all:before {
  content: "\e054"
}

.icon-split:before {
  content: "\e055"
}

.icon-undo:before {
  content: "\e056"
}

.icon-unread:before {
  content: "\e057"
}

.icon-add-group:before {
  content: "\e060"
}

.icon-add-person:before {
  content: "\e061"
}

.icon-cc-bcc:before {
  content: "\e062"
}

.icon-chat:before {
  content: "\e063"
}

.icon-forward-2:before {
  content: "\e064"
}

.icon-slideshow:before {
  content: "\e083"
}

.icon-rotate-right:before {
  content: "\e082"
}

.icon-rotate-left:before {
  content: "\e081"
}

.icon-globe:before {
  content: "\e073"
}

.icon-crop:before {
  content: "\e080"
}

.icon-location-marker:before {
  content: "\e072"
}

.icon-map:before {
  content: "\e071"
}

.icon-direction:before {
  content: "\e070"
}

.icon-share:before {
  content: "\e06a"
}

.icon-send:before {
  content: "\e069"
}

.icon-reply-all:before {
  content: "\e068"
}

.icon-reply:before {
  content: "\e067"
}

.icon-person:before {
  content: "\e066"
}

.icon-group:before {
  content: "\e065"
}

.icon-add-to-queue:before {
  content: "\e090"
}

.icon-download:before {
  content: "\e091"
}

.icon-fast-forward:before {
  content: "\e092"
}

.icon-full-screen:before {
  content: "\e093"
}

.icon-pin:before {
  content: "\e094"
}

.icon-next:before {
  content: "\e095"
}

.icon-pause:before {
  content: "\e096"
}

.icon-pause-2:before {
  content: "\e097"
}

.icon-play:before {
  content: "\e098"
}

.icon-play-2:before {
  content: "\e099"
}

.icon-previous:before {
  content: "\e09a"
}

.icon-repeat:before {
  content: "\e09b"
}

.icon-replay:before {
  content: "\e09c"
}

.icon-return-from-full-screen:before {
  content: "\e09d"
}

.icon-brightness-high:before {
  content: "\e0b9"
}

.icon-brightness-auto:before {
  content: "\e0b8"
}

.icon-bluetooth-searching:before {
  content: "\e0b7"
}

.icon-bluetooth-connected:before {
  content: "\e0b6"
}

.icon-bluetooth:before {
  content: "\e0b5"
}

.icon-brightness:before {
  content: "\e0b4"
}

.icon-battery:before {
  content: "\e0b3"
}

.icon-add-alarm:before {
  content: "\e0b1"
}

.icon-alarm:before {
  content: "\e0b2"
}

.icon-key:before {
  content: "\e0b0"
}

.icon-upload:before {
  content: "\e0a1"
}

.icon-stop:before {
  content: "\e0a0"
}

.icon-shuffle:before {
  content: "\e09f"
}

.icon-rewind:before {
  content: "\e09e"
}

.icon-brightness-medium:before {
  content: "\e0ba"
}

.icon-call:before {
  content: "\e0bb"
}

.icon-camera:before {
  content: "\e0bc"
}

.icon-dashboard:before {
  content: "\e0bd"
}

.icon-dial:before {
  content: "\e0be"
}

.icon-hang-up:before {
  content: "\e0bf"
}

.icon-power-auto:before {
  content: "\e0c0"
}

.icon-power-none:before {
  content: "\e0c1"
}

.icon-power:before {
  content: "\e0c2"
}

.icon-location-target:before {
  content: "\e0c3"
}

.icon-location-off:before {
  content: "\e0c4"
}

.icon-location-searching:before {
  content: "\e0c5"
}

.icon-microphone:before {
  content: "\e0c6"
}

.icon-microphone-off:before {
  content: "\e0c7"
}

.icon-clock:before {
  content: "\e0d5"
}

.icon-camera-video-rotate:before {
  content: "\e0d4"
}

.icon-camera-rotate:before {
  content: "\e0d3"
}

.icon-storage:before {
  content: "\e0d2"
}

.icon-locked:before {
  content: "\e0d1"
}

.icon-storage-sd:before {
  content: "\e0d0"
}

.icon-screen-lock-portrait:before {
  content: "\e0ce"
}

.icon-screen-rotate:before {
  content: "\e0cf"
}

.icon-screen-lock-landscape:before {
  content: "\e0cd"
}

.icon-call-volume:before {
  content: "\e0cc"
}

.icon-unlocked:before {
  content: "\e0cb"
}

.icon-new-account:before {
  content: "\e0ca"
}

.icon-signal:before {
  content: "\e0c9"
}

.icon-signal-2:before {
  content: "\e0c8"
}

.icon-usb:before {
  content: "\e0d6"
}

.icon-mouse:before {
  content: "\e0f6"
}

.icon-smartphone:before {
  content: "\e0f7"
}

.icon-fries:before {
  content: "\e000"
}

.icon-video:before {
  content: "\e0d7"
}

.icon-volume-off:before {
  content: "\e0d8"
}

.icon-volume-adjust:before {
  content: "\e0d9"
}

.icon-airplane:before {
  content: "\e0e0"
}

.icon-airplane-2:before {
  content: "\e0e1"
}

.icon-alert:before {
  content: "\e0e2"
}

.icon-alert-2:before {
  content: "\e0e3"
}

.icon-laptop:before {
  content: "\e0f0"
}

.icon-desktop:before {
  content: "\e0f1"
}

.icon-joystick:before {
  content: "\e0f2"
}

.icon-headphones:before {
  content: "\e0f3"
}

.icon-headphones-mic:before {
  content: "\e0f4"
}

.icon-keyboard:before {
  content: "\e0f5"
}

.icon-up-button:before {
  content: "\e00a"
}

.list {
  display: block;
  list-style: none
}

.list > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  border-top: 1px solid #424242;
  line-height: 38px;
}

.list > li.list-divider {
  border-top: 0;
  border-bottom: 2px solid #595959;
  line-height: 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 5px 3px;
  margin-top: 5px;
}

.list > li.list-divider + li {
  border-top: 0
}

.list > li > a {
  display: block;
  color: inherit
}

.list > li.list-item-single-line, .list > li.list-item-two-lines h3, .list > li.list-item-two-lines p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.list > li.list-item-single-line {
  height: 48px;
  font-size: 14px
}

.list > li.list-item-two-lines {
  height: 64px
}

.list > li.list-item-multi-line p {
  margin-bottom: 15px
}

.list > li.list-item-two-lines h3, .list > li.list-item-multi-line h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 32px;
  color: #fff
}

.list > li.list-item-two-lines p, .list > li.list-item-multi-line p {
  font-size: 12px;
  line-height: 12px;
  text-overflow: ellipsis;
}

.slider {
  width: 100%
}

.slider > ul {
  list-style: none
}

.slider > li {
  width: 100%
}

.spinner {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  display: none;
  z-index: 0;
  padding: 0;
  list-style: none;
  line-height: 1.1em;
  background-color: #222;
  background-clip: border-box;
  opacity: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  -webkit-transition: all ease-out .1s;
  -moz-transition: all ease-out .1s;
  transition: all ease-out .1s;
  -webkit-transform: scale(0.8, .8) translateY(-20px);
  -moz-transform: scale(0.8, .8) translateY(-20px);
  transform: scale(0.8, .8) translateY(-20px)
}

.spinner li {
  float: left;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #313131;
  text-align: left
}

.spinner li a {
  float: left;
  display: block;
  padding: 17px 15px 16px;
  white-space: nowrap;
  width: 200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-weight: 400
}

.spinner li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px
}

.spinner li:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

.spinner li:hover, .spinner li:active {
  background-color: rgba(51, 181, 229, .6)
}

.spinner.active {
  opacity: 1;
  z-index: 99;
  -webkit-transform: scale(1, 1) translateY(0);
  -moz-transform: scale(1, 1) translateY(0);
  transform: scale(1, 1) translateY(0)
}

.action-bar .spinner {
  -webkit-transform-origin-x: 50%;
  -moz-transform-origin-x: 50%;
  transform-origin-x: 50%
}

.action-bar.fixed-top .spinner {
  -webkit-transform-origin-y: 0;
  -moz-transform-origin-y: 0;
  transform-origin-y: 0
}

.action-bar.fixed-top .spinner, .action-bar.fixed-top .spinner.active {
  top: 48px
}

.action-bar.fixed-bottom .spinner {
  -webkit-transform-origin-y: 100%;
  -moz-transform-origin-y: 100%;
  transform-origin-y: 100%
}

.action-bar.fixed-bottom .spinner, .action-bar.fixed-bottom .spinner.active {
  bottom: 48px
}

.action-overflow .spinner {
  right: 10px
}

.form-spinner {
  position: relative;
  margin-left: 10px;
  min-width: 100px
}

.form-spinner .toggle-spinner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 14px 20px 6px 40px;
  height: 48px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  border-bottom: 1px solid #3c3c3c;
  vertical-align: middle;
  outline: 0
}

.form-spinner .toggle-spinner:after {
  position: absolute;
  content: '';
  top: 36px;
  right: 0;
  margin-left: -4px;
  width: 0;
  height: 0;
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-top: 12px solid #595959;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg)
}

.form-spinner .spinner {
  right: 0
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

.page.fade {
  z-index: 0
}

.page.push {
  -webkit-animation: push .3s;
  -moz-animation: push .3s;
  animation: push .3s;
  z-index: 1
}

.page.pop {
  -webkit-animation: pop .3s;
  -moz-animation: pop .3s;
  animation: pop .3s
}

.page.hidden {
  display: none
}

.action-bar ~ [class*=tab-] {
  top: 48px
}

.tab-fixed {
  position: absolute;
  top: initial;
  right: 0;
  bottom: initial;
  left: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  display: block;
  z-index: 1;
  height: 48px;
  background: #333;
  -webkit-backface-visibility: hidden
}

.tab-fixed ul.tab-inner {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  width: 100%;
  list-style: none
}

.tab-fixed ul.tab-inner li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  whitespace: nowrap;
  overflow: hidden;
  text-align: center
}

.tab-fixed ul.tab-inner li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  height: 48px;
  color: #fff;
  overflow: hidden;
  text-transform: uppercase;
  text-overflow: ellipsis;
  font-size: 11px;
  font-weight: 700;
  line-height: 52px
}

.tab-fixed ul.tab-inner li a:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 24px;
  top: 13px;
  right: 0;
  background-color: #4d4d4d
}

.tab-fixed ul.tab-inner li:last-child a {
  border-right-width: 0
}

.tab-fixed ul.tab-inner li:active {
  background-color: rgba(51, 181, 229, .6)
}

.tab-fixed ul.tab-inner li.active a {
  border-bottom: 5px solid #33b5e5
}

.tab-fixed ul.tab-inner li:last-child a:after, .tab-fixed ul.tab-inner li:active a:after {
  background-color: transparent
}

[class|=tab] ul.tab-inner li a [class*=icon-], [class|=" tab"] ul.tab-inner li a [class*=icon-] {
  font-size: 28px;
  line-height: 48px
}

.tab-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.tab-slider .tab-item {
  position: absolute;
  display: none;
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform .1s ease-out;
  transition: transform .1s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.tab-slider .tab-item.active, .tab-slider .tab-item.in-transition {
  display: inline-block
}

.toast {
  position: fixed;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity .25s ease-in;
  -moz-transition: opacity .25s ease-in;
  transition: opacity .25s ease-in
}

.toast.on {
  visibility: visible
}

.toast.fade-in {
  opacity: 1
}

.toast .toast-message {
  display: inline-block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 3px 16px 5px;
  margin: 0 auto;
  max-width: 80%;
  height: 36px;
  line-height: 32px;
  background-color: rgba(44, 44, 44, .9);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 13px;
  text-align: center
}

body {
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

h1.intro {
  font-weight: 200;
  margin: 0.2em 0;
}

p {
  color: #999;
  margin-bottom: 1em;
}

.center-me {
  text-align: center;
}

.list i[class*="icon-"] {
  float: left;
  font-size: 36px;
  color: #999;
}

.i-class {
  float: left;
  line-height: 36px;
  margin-left: 8px;
}

.footnote {
  display: block;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  color: #222;
  font-size: 11px;
}

#loading_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  filter: alpha(opacity=0.9);
  z-index: 10000;
}

#loading_overlay img {
  display: block;
  margin-top: 40%;
  margin-left: auto;
  margin-right: auto;
  filter: alpha(opacity=0.9);
}

div.block-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 5px 5px 3px;
  margin-top: 10px;
  width: 100%;
  border-bottom: 2px solid #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: #ccc
}

.multi-select {
  width: 70%;
  height: 35px;
  float: right;
  border: 1px solid #595959;
  margin-top: 5px;
  margin-bottom: 10px;
}

.dark_green {
  background-color: #00ff42;
}

.light_green {
  background-color: #73d94f;
}

.amber {
  background-color: #ffc200;
}

.red {
  background-color: #ff0000;
}
.input_no_jump {
  display: block;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #333;
  padding: 10px 10px 0;
  width: 100%;
  height: 48px;
  background: transparent;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: border ease-out .2s;
  -moz-transition: border ease-out .2s;
  transition: border ease-out .2s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 400;
}

.rnd_btn {
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: bold;
}

.rnd_btn svg {
  width: 20px;
  height: 20px;
  float : left;
}/* fries.min.css (v2.0.4) 15-07-2014 */

.action-bar {
  right: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #151515;
  background-color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25)
}

.action-bar .title, .action-bar .subtitle, .action-bar .app-icon {
  float: left;
  display: inline-block
}

.action-bar .title {
  margin-left: 1px;
  font-weight: 400;
  color: #fff
}

.action-bar h1.title {
  font-size: 16px;
}

.action-bar h2.title {
  font-size: 14px;
  line-height: 18px;
  padding: 8px 0 4px
}

.action-bar .subtitle {
  color: #ccc;
  font-size: 12px;
  font-weight: 200
}

.action-bar .app-icon {
  position: relative;
  padding: 8px 0;
  margin-left: 10px;
  font-size: 24px;
  line-height: 24px;
  text-align: center
}

.action-bar .app-icon img {
  float: right
}

.action-bar .app-icon.up {
  margin-left: 0
}

.action-bar.fixed-top {
  top: 0
}

.action-bar.fixed-bottom {
  bottom: 0
}

ul.actions, ul.actions li {
  display: inline-block
}

ul.actions {
  list-style: none
}

ul.actions li .action {
  width: 48px;
  height: 48px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

ul.actions.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal
}

ul.actions.flex > li {
  float: none;
  display: block;
  width: 100%;
  text-align: center
}

ul.actions.flex > li.action-overflow {
  display: initial;
  width: 48px
}

.action {
  display: inline-block;
  padding: 8px
}

.action [class*=icon-], .action .action-title {
  float: left;
  display: inline-block
}

.action [class*=icon-] {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  color: #999;
  text-align: center
}

.action .icon-up-button {
  width: 10px;
  font-size: 48px
}

.action .action-title {
  margin: 0 25px 0 5px;
  height: 32px;
  color: #999;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px
}

.action:active {
  background-color: rgba(51, 181, 229, .6);
  z-index: 1
}

.action.page-action {
  position: relative
}

.action.page-action:after {
  position: absolute;
  content: '';
  right: -1px;
  top: 12px;
  width: 1px;
  height: 24px;
  background-color: #3c3c3c
}

.action-overflow {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.action-overflow-hidden {
  display: none !important
}

.action-overflow-icon {
  cursor: pointer;
  padding: 21px 22px 20px 21px
}

.action-overflow-icon i, .action-overflow-icon i:before, .action-overflow-icon i:after {
  display: block;
  width: 5px;
  height: 5px;
  background: #999
}

.action-overflow-icon i {
  position: relative;
  z-index: 0
}

.action-overflow-icon i:before, .action-overflow-icon i:after {
  position: absolute;
  content: '';
  left: 0
}

.action-overflow-icon i:before {
  top: -8px
}

.action-overflow-icon i:after {
  top: 8px
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  padding-bottom: 1px
}

body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.67em;
}

a {
  color: #33b5e5;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.selectable:active {
  background-color: rgba(51, 181, 229, .6)
}

.pull-right {
  float: right !important
}

a[class*=btn] {
  padding: 9px 36px 8px
}

[class*=btn] {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 11px 36px;
  border: 0;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 14px;
  vertical-align: middle;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5)
}

[class*=btn]:hover, [class*=btn].hover, [class*=btn]:focus, [class*=btn].focused {
  outline: 0;
  background: #1f5366;
  -webkit-box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 1px 2pt #037ea7, 0 2px 3px rgba(0, 0, 0, .5)
}

[class*=btn]:active, [class*=btn].active {
  padding: 11px 36px 10px;
  background: rgba(0, 153, 204, .8);
  border: 0;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 2px 3px rgba(0, 0, 0, .5), 0 0 2px 2pt rgba(51, 181, 229, .6)
}

[class*=btn]:disabled, [class*=btn].disabled {
  opacity: .3
}

.btn[disabled], .btn-small[disabled] {
  opacity: .3
}

[class*=btn] + [class*=btn] {
  margin-left: 3px
}

.btn-small {
  font-size: 12px
}

.btn-block {
  width: 100%
}

.btn-block + .btn-block {
  margin-left: 0
}

.page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.content {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  overflow-wrap: break-word;
  text-wrap: normal
}

.action-bar + .tab-fixed + .content, .action-bar + .tab-fixed + .action-bar + .content {
  top: 96px
}

.action-bar ~ .content, .tab-fixed ~ .content {
}

.action-bar.fixed-bottom ~ .content {
  bottom: 48px
}

.inset {
  padding: 15px
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  width: 100%
}

.flex > * {
  -webkit-box-flex: 1;
  box-flex: 1
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

.dialogs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 999;
  -webkit-transition: opacity .1s ease-out;
  -moz-transition: opacity .1s ease-out;
  transition: opacity .1s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.dialogs.fade-in {
  opacity: 1
}

.dialogs.on {
  visibility: visible
}

.dialog {
  position: absolute;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: #222;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  width: 85%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: scale3d(0.7, .7, 1);
  -moz-transform: scale3d(0.7, .7, 1);
  transform: scale3d(0.7, .7, 1);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.dialog .dialog-title-region {
  height: 56px;
  border-bottom: solid 2px #33b5e5;
  padding: 0 15px
}

.dialog .dialog-title-region .title {
  font-size: 18px;
  font-weight: 400;
  color: #33b5e5;
  line-height: 56px
}

.dialog .dialog-content {
  color: #fff
}

.dialog .dialog-content ul.list li {
  padding: 5px 15px
}

.dialog ul.dialog-actions {
  list-style: none;
  border-top: 1px solid #424242;
  height: 48px
}

.dialog ul.dialog-actions li {
  float: left;
  display: inline-block;
  width: 50%;
  border-right: 1px solid #424242
}

.dialog ul.dialog-actions li a {
  display: block;
  color: #fff;
  font-size: 12px;
  height: 47px;
  text-align: center;
  line-height: 48px
}

.dialog ul.dialog-actions li a:active {
  background-color: rgba(51, 181, 229, .6)
}

.dialog ul.dialog-actions li:first-child a {
  border-bottom-left-radius: 2px
}

.dialog ul.dialog-actions li:last-child {
  border: 0
}

.dialog ul.dialog-actions li:last-child a {
  border-bottom-right-radius: 2px
}

.dialog.push {
  -webkit-animation: push .2s;
  -moz-animation: push .2;
  animation: push .2s
}

.dialog.pop {
  -webkit-animation: pop .2s;
  -moz-animation: pop .2s;
  animation: pop .2s
}

.dialog.on {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1)
}

form {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

form.form-flex .flex-group {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  margin: 0
}

form.form-flex .flex-group .flex1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1
}

form.form-flex .flex-group .flex2 {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  box-flex: 2
}

form.form-flex .flex-group .flex3 {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  box-flex: 3
}

form.form-flex .flex-group > :nth-child(n) {
  margin-left: 10px
}

form.form-flex .flex-group > :first-child {
  margin-left: 0
}

[class*=flex].input-text + [class*=flex].input-text {
  margin-left: 10px
}

.input-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  outline: 0;
  border: 0;
  padding: 10px 10px 0;
  width: 100%;
  height: 48px;
  background: transparent;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: border ease-out .2s;
  -moz-transition: border ease-out .2s;
  transition: border ease-out .2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400
}

.input-text:focus {
  border-bottom: 1px solid #09c
}

.input-text[type=password] {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace
}

legend.form-legend, label.block-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 5px 5px 3px;
  margin-top: 10px;
  width: 100%;
  border-bottom: 2px solid #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

label.inline-label {
  display: block
}

.form-actions {
  margin-top: 20px
}

.input-pretty {
  position: relative;
  display: block;
  margin-bottom: 8px
}

.input-pretty:before, .input-pretty:after {
  position: absolute;
  content: '';
  bottom: 0;
  height: 5px;
  width: 1px;
  background: #333;
  -webkit-transition: background ease-out .2s;
  -moz-transition: background ease-out .2s;
  transition: background ease-out .2s
}

.input-pretty:before {
  left: 0
}

.input-pretty:after {
  right: 0
}

.input-pretty.focus:before, .input-pretty.focus:after {
  background: #09c
}

.input-switch-wrapper {
  position: relative;
  display: inline-block;
  width: 96px;
  padding: 12px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-switch-wrapper .input-switch {
  display: none
}

.input-switch-wrapper .input-switch:checked + .input-switch-outer .input-switch-button {
  background-color: rgba(0, 153, 204, .8);
  -webkit-transform: translateX(100%);
  transform: translateX(100%)
}

.input-switch-wrapper .input-switch:checked + .input-switch-outer .input-switch-button:before {
  content: 'On'
}

.input-switch-wrapper .input-switch-outer {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 0 solid #999;
  border-radius: 0
}

.input-switch-wrapper .input-switch-outer .input-switch-inner {
  background: #333
}

.input-switch-wrapper .input-switch-outer .input-switch-inner .input-switch-button {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  width: 48px;
  height: 24px;
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  line-height: 24px;
  background-color: #424242;
  color: #fff;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), inset 0 2px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .5);
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

.input-switch-wrapper .input-switch-outer .input-switch-inner .input-switch-button:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: 'Off';
  width: 100%;
  height: 100%
}

.input-radio-wrapper {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-radio-wrapper .input-radio {
  position: absolute;
  left: -9999px
}

.input-radio-wrapper .input-radio:checked[disabled] + .input-radio-inner .input-radio-button {
  background: rgba(51, 51, 51, .8);
  -webkit-box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  -moz-box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  box-shadow: 0 0 4px rgba(51, 51, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .5)
}

.input-radio-wrapper .input-radio:checked + .input-radio-inner .input-radio-button {
  background: #33b5e5;
  -webkit-box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  -moz-box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  box-shadow: 0 0 4px rgba(51, 181, 229, .8), inset 0 1px 0 rgba(255, 255, 255, .5)
}

.input-radio-wrapper .input-radio:active + .input-radio-inner {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-radio-wrapper .input-radio[disabled] + .input-radio-inner {
  border-color: rgba(51, 51, 51, .8)
}

.input-radio-wrapper .input-radio:focus[disabled] + .input-radio-inner:before {
  border-color: rgba(0, 153, 204, .6)
}

.input-radio-wrapper .input-radio:focus + .input-radio-inner:before {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  display: block;
  content: '';
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 1px solid #09c
}

.input-radio-wrapper .input-radio-inner {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #424242;
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out
}

.input-radio-wrapper .input-radio-inner:active {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-radio-wrapper .input-radio-inner:focus {
  outline: 0
}

.input-radio-wrapper .input-radio-inner .input-radio-button {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  width: 8px;
  height: 8px;
  margin: 3px;
  background: transparent
}

.input-checkbox-wrapper {
  display: block;
  width: 32px;
  height: 32px;
  padding: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.input-checkbox-wrapper .input-checkbox {
  position: absolute;
  left: -9999px
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button {
  background: transparent
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button:before {
  border-color: rgba(51, 51, 51, .8)
}

.input-checkbox-wrapper .input-checkbox:checked[disabled] + .input-checkbox-outer .input-checkbox-button:after {
  border-color: transparent
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button {
  border-color: transparent
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button:before {
  border-color: #fff
}

.input-checkbox-wrapper .input-checkbox:checked:active:not([disabled]) + .input-checkbox-outer .input-checkbox-button:after {
  border-color: rgba(255, 255, 255, .5)
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button {
  position: absolute;
  top: -9px;
  width: 10px;
  right: -4px;
  height: 18px;
  border: solid #222;
  border-width: 0 6px 6px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg)
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:before, .input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:after {
  position: absolute;
  content: '';
  width: 5px
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:before {
  top: 2px;
  right: -5px;
  height: 12px;
  border: solid #33b5e5;
  border-width: 0 3px 3px 0;
  height: 12px
}

.input-checkbox-wrapper .input-checkbox:checked + .input-checkbox-outer .input-checkbox-button:after {
  top: 1px;
  right: -4px;
  height: 15px;
  border: solid rgba(51, 181, 229, .5);
  border-width: 0 2px 2px 0;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  filter: blur(2px)
}

.input-checkbox-wrapper .input-checkbox:active + .input-checkbox-outer {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-checkbox-wrapper .input-checkbox[disabled] + .input-checkbox-outer {
  border-color: rgba(51, 51, 51, .8)
}

.input-checkbox-wrapper .input-checkbox:focus[disabled] + .input-checkbox-outer:before {
  border-color: rgba(0, 153, 204, .6)
}

.input-checkbox-wrapper .input-checkbox:focus + .input-checkbox-outer:before {
  position: absolute;
  display: block;
  content: '';
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 1px solid #09c
}

.input-checkbox-wrapper .input-checkbox-outer {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #424242;
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out
}

.input-checkbox-wrapper .input-checkbox-outer:active {
  background: rgba(51, 181, 229, .5);
  border-color: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  -moz-box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5);
  box-shadow: 0 0 2px 7px rgba(51, 181, 229, .5)
}

.input-checkbox-wrapper .input-checkbox-outer:focus {
  outline: 0
}

.input-checkbox-wrapper .input-checkbox-outer .input-checkbox-button {
  width: 8px;
  height: 8px;
  margin: 3px;
  background: transparent
}

@font-face {
  font-family: icomoon;
  src: url(/assets/icomoon.a7b2c3ac.eot);
  src: url(/assets/icomoon.a7b2c3ac.eot?#iefix) format("embedded-opentype"), url(/assets/icomoon.47d1530f.woff) format("woff"), url(/assets/icomoon.315715ae.ttf) format("truetype"), url(/assets/icomoon.47ba7d6a.svg#icomoon) format("svg");
  font-weight: 400;
  font-style: normal
}

[data-icon]:before {
  font-family: icomoon;
  content: attr(data-icon);
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased
}

.icon-back, .icon-accept, .icon-cancel, .icon-chevron-up, .icon-chevron-down, .icon-forward, .icon-chevron-right, .icon-chevron-left, .icon-refresh, .icon-information, .icon-help, .icon-search, .icon-settings, .icon-vote-down, .icon-heart, .icon-star-half, .icon-vote-up, .icon-star-full, .icon-star-empty, .icon-cloud, .icon-folder, .icon-calendar, .icon-tags, .icon-add-tag, .icon-sort-by-size, .icon-grid, .icon-view-as-list, .icon-attachment, .icon-new-image, .icon-new-event, .icon-new-attachment, .icon-new-message, .icon-new, .icon-merge, .icon-import-export, .icon-calendar-event, .icon-mail, .icon-edit, .icon-trash, .icon-cut, .icon-copy, .icon-backspace, .icon-clipboard, .icon-image, .icon-read, .icon-remove, .icon-save, .icon-select-all, .icon-split, .icon-undo, .icon-unread, .icon-add-group, .icon-add-person, .icon-cc-bcc, .icon-chat, .icon-forward-2, .icon-slideshow, .icon-rotate-right, .icon-rotate-left, .icon-globe, .icon-crop, .icon-location-marker, .icon-map, .icon-direction, .icon-share, .icon-send, .icon-reply-all, .icon-reply, .icon-person, .icon-group, .icon-add-to-queue, .icon-download, .icon-fast-forward, .icon-full-screen, .icon-pin, .icon-next, .icon-pause, .icon-pause-2, .icon-play, .icon-play-2, .icon-previous, .icon-repeat, .icon-replay, .icon-return-from-full-screen, .icon-brightness-high, .icon-brightness-auto, .icon-bluetooth-searching, .icon-bluetooth-connected, .icon-bluetooth, .icon-brightness, .icon-battery, .icon-add-alarm, .icon-alarm, .icon-key, .icon-upload, .icon-stop, .icon-shuffle, .icon-rewind, .icon-brightness-medium, .icon-call, .icon-camera, .icon-dashboard, .icon-dial, .icon-hang-up, .icon-power-auto, .icon-power-none, .icon-power, .icon-location-target, .icon-location-off, .icon-location-searching, .icon-microphone, .icon-microphone-off, .icon-clock, .icon-camera-video-rotate, .icon-camera-rotate, .icon-storage, .icon-locked, .icon-storage-sd, .icon-screen-lock-portrait, .icon-screen-rotate, .icon-screen-lock-landscape, .icon-call-volume, .icon-unlocked, .icon-new-account, .icon-signal, .icon-signal-2, .icon-usb, .icon-mouse, .icon-smartphone, .icon-fries, .icon-video, .icon-volume-off, .icon-volume-adjust, .icon-airplane, .icon-airplane-2, .icon-alert, .icon-alert-2, .icon-laptop, .icon-desktop, .icon-joystick, .icon-headphones, .icon-headphones-mic, .icon-keyboard, .icon-up-button {
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased
}

.icon-back:before {
  content: "\e001"
}

.icon-accept:before {
  content: "\e002"
}

.icon-cancel:before {
  content: "\e003"
}

.icon-chevron-up:before {
  content: "\e004"
}

.icon-chevron-down:before {
  content: "\e005"
}

.icon-forward:before {
  content: "\e006"
}

.icon-chevron-right:before {
  content: "\e007"
}

.icon-chevron-left:before {
  content: "\e008"
}

.icon-refresh:before {
  content: "\e009"
}

.icon-information:before {
  content: "\e010"
}

.icon-help:before {
  content: "\e011"
}

.icon-search:before {
  content: "\e012"
}

.icon-settings:before {
  content: "\e013"
}

.icon-vote-down:before {
  content: "\e020"
}

.icon-heart:before {
  content: "\e021"
}

.icon-star-half:before {
  content: "\e023"
}

.icon-vote-up:before {
  content: "\e022"
}

.icon-star-full:before {
  content: "\e024"
}

.icon-star-empty:before {
  content: "\e025"
}

.icon-cloud:before {
  content: "\e030"
}

.icon-folder:before {
  content: "\e031"
}

.icon-calendar:before {
  content: "\e032"
}

.icon-tags:before {
  content: "\e033"
}

.icon-add-tag:before {
  content: "\e034"
}

.icon-sort-by-size:before {
  content: "\e035"
}

.icon-grid:before {
  content: "\e036"
}

.icon-view-as-list:before {
  content: "\e037"
}

.icon-attachment:before {
  content: "\e040"
}

.icon-new-image:before {
  content: "\e04e"
}

.icon-new-event:before {
  content: "\e04d"
}

.icon-new-attachment:before {
  content: "\e04b"
}

.icon-new-message:before {
  content: "\e04c"
}

.icon-new:before {
  content: "\e04a"
}

.icon-merge:before {
  content: "\e049"
}

.icon-import-export:before {
  content: "\e048"
}

.icon-calendar-event:before {
  content: "\e047"
}

.icon-mail:before {
  content: "\e046"
}

.icon-edit:before {
  content: "\e045"
}

.icon-trash:before {
  content: "\e044"
}

.icon-cut:before {
  content: "\e043"
}

.icon-copy:before {
  content: "\e042"
}

.icon-backspace:before {
  content: "\e041"
}

.icon-clipboard:before {
  content: "\e04f"
}

.icon-image:before {
  content: "\e050"
}

.icon-read:before {
  content: "\e051"
}

.icon-remove:before {
  content: "\e052"
}

.icon-save:before {
  content: "\e053"
}

.icon-select-all:before {
  content: "\e054"
}

.icon-split:before {
  content: "\e055"
}

.icon-undo:before {
  content: "\e056"
}

.icon-unread:before {
  content: "\e057"
}

.icon-add-group:before {
  content: "\e060"
}

.icon-add-person:before {
  content: "\e061"
}

.icon-cc-bcc:before {
  content: "\e062"
}

.icon-chat:before {
  content: "\e063"
}

.icon-forward-2:before {
  content: "\e064"
}

.icon-slideshow:before {
  content: "\e083"
}

.icon-rotate-right:before {
  content: "\e082"
}

.icon-rotate-left:before {
  content: "\e081"
}

.icon-globe:before {
  content: "\e073"
}

.icon-crop:before {
  content: "\e080"
}

.icon-location-marker:before {
  content: "\e072"
}

.icon-map:before {
  content: "\e071"
}

.icon-direction:before {
  content: "\e070"
}

.icon-share:before {
  content: "\e06a"
}

.icon-send:before {
  content: "\e069"
}

.icon-reply-all:before {
  content: "\e068"
}

.icon-reply:before {
  content: "\e067"
}

.icon-person:before {
  content: "\e066"
}

.icon-group:before {
  content: "\e065"
}

.icon-add-to-queue:before {
  content: "\e090"
}

.icon-download:before {
  content: "\e091"
}

.icon-fast-forward:before {
  content: "\e092"
}

.icon-full-screen:before {
  content: "\e093"
}

.icon-pin:before {
  content: "\e094"
}

.icon-next:before {
  content: "\e095"
}

.icon-pause:before {
  content: "\e096"
}

.icon-pause-2:before {
  content: "\e097"
}

.icon-play:before {
  content: "\e098"
}

.icon-play-2:before {
  content: "\e099"
}

.icon-previous:before {
  content: "\e09a"
}

.icon-repeat:before {
  content: "\e09b"
}

.icon-replay:before {
  content: "\e09c"
}

.icon-return-from-full-screen:before {
  content: "\e09d"
}

.icon-brightness-high:before {
  content: "\e0b9"
}

.icon-brightness-auto:before {
  content: "\e0b8"
}

.icon-bluetooth-searching:before {
  content: "\e0b7"
}

.icon-bluetooth-connected:before {
  content: "\e0b6"
}

.icon-bluetooth:before {
  content: "\e0b5"
}

.icon-brightness:before {
  content: "\e0b4"
}

.icon-battery:before {
  content: "\e0b3"
}

.icon-add-alarm:before {
  content: "\e0b1"
}

.icon-alarm:before {
  content: "\e0b2"
}

.icon-key:before {
  content: "\e0b0"
}

.icon-upload:before {
  content: "\e0a1"
}

.icon-stop:before {
  content: "\e0a0"
}

.icon-shuffle:before {
  content: "\e09f"
}

.icon-rewind:before {
  content: "\e09e"
}

.icon-brightness-medium:before {
  content: "\e0ba"
}

.icon-call:before {
  content: "\e0bb"
}

.icon-camera:before {
  content: "\e0bc"
}

.icon-dashboard:before {
  content: "\e0bd"
}

.icon-dial:before {
  content: "\e0be"
}

.icon-hang-up:before {
  content: "\e0bf"
}

.icon-power-auto:before {
  content: "\e0c0"
}

.icon-power-none:before {
  content: "\e0c1"
}

.icon-power:before {
  content: "\e0c2"
}

.icon-location-target:before {
  content: "\e0c3"
}

.icon-location-off:before {
  content: "\e0c4"
}

.icon-location-searching:before {
  content: "\e0c5"
}

.icon-microphone:before {
  content: "\e0c6"
}

.icon-microphone-off:before {
  content: "\e0c7"
}

.icon-clock:before {
  content: "\e0d5"
}

.icon-camera-video-rotate:before {
  content: "\e0d4"
}

.icon-camera-rotate:before {
  content: "\e0d3"
}

.icon-storage:before {
  content: "\e0d2"
}

.icon-locked:before {
  content: "\e0d1"
}

.icon-storage-sd:before {
  content: "\e0d0"
}

.icon-screen-lock-portrait:before {
  content: "\e0ce"
}

.icon-screen-rotate:before {
  content: "\e0cf"
}

.icon-screen-lock-landscape:before {
  content: "\e0cd"
}

.icon-call-volume:before {
  content: "\e0cc"
}

.icon-unlocked:before {
  content: "\e0cb"
}

.icon-new-account:before {
  content: "\e0ca"
}

.icon-signal:before {
  content: "\e0c9"
}

.icon-signal-2:before {
  content: "\e0c8"
}

.icon-usb:before {
  content: "\e0d6"
}

.icon-mouse:before {
  content: "\e0f6"
}

.icon-smartphone:before {
  content: "\e0f7"
}

.icon-fries:before {
  content: "\e000"
}

.icon-video:before {
  content: "\e0d7"
}

.icon-volume-off:before {
  content: "\e0d8"
}

.icon-volume-adjust:before {
  content: "\e0d9"
}

.icon-airplane:before {
  content: "\e0e0"
}

.icon-airplane-2:before {
  content: "\e0e1"
}

.icon-alert:before {
  content: "\e0e2"
}

.icon-alert-2:before {
  content: "\e0e3"
}

.icon-laptop:before {
  content: "\e0f0"
}

.icon-desktop:before {
  content: "\e0f1"
}

.icon-joystick:before {
  content: "\e0f2"
}

.icon-headphones:before {
  content: "\e0f3"
}

.icon-headphones-mic:before {
  content: "\e0f4"
}

.icon-keyboard:before {
  content: "\e0f5"
}

.icon-up-button:before {
  content: "\e00a"
}

.list {
  display: block;
  list-style: none
}

.list > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  border-top: 1px solid #424242;
  line-height: 38px;
}

.list > li.list-divider {
  border-top: 0;
  border-bottom: 2px solid #595959;
  line-height: 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 5px 3px;
  margin-top: 5px;
}

.list > li.list-divider + li {
  border-top: 0
}

.list > li > a {
  display: block;
  color: inherit
}

.list > li.list-item-single-line, .list > li.list-item-two-lines h3, .list > li.list-item-two-lines p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.list > li.list-item-single-line {
  height: 48px;
  font-size: 14px
}

.list > li.list-item-two-lines {
  height: 64px
}

.list > li.list-item-multi-line p {
  margin-bottom: 15px
}

.list > li.list-item-two-lines h3, .list > li.list-item-multi-line h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 32px;
  color: #fff
}

.list > li.list-item-two-lines p, .list > li.list-item-multi-line p {
  font-size: 12px;
  line-height: 12px;
  text-overflow: ellipsis;
}

.slider {
  width: 100%
}

.slider > ul {
  list-style: none
}

.slider > li {
  width: 100%
}

.spinner {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  display: none;
  z-index: 0;
  padding: 0;
  list-style: none;
  line-height: 1.1em;
  background-color: #222;
  background-clip: border-box;
  opacity: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  -webkit-transition: all ease-out .1s;
  -moz-transition: all ease-out .1s;
  transition: all ease-out .1s;
  -webkit-transform: scale(0.8, .8) translateY(-20px);
  -moz-transform: scale(0.8, .8) translateY(-20px);
  transform: scale(0.8, .8) translateY(-20px)
}

.spinner li {
  float: left;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #313131;
  text-align: left
}

.spinner li a {
  float: left;
  display: block;
  padding: 17px 15px 16px;
  white-space: nowrap;
  width: 200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-weight: 400
}

.spinner li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px
}

.spinner li:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

.spinner li:hover, .spinner li:active {
  background-color: rgba(51, 181, 229, .6)
}

.spinner.active {
  opacity: 1;
  z-index: 99;
  -webkit-transform: scale(1, 1) translateY(0);
  -moz-transform: scale(1, 1) translateY(0);
  transform: scale(1, 1) translateY(0)
}

.action-bar .spinner {
  -webkit-transform-origin-x: 50%;
  -moz-transform-origin-x: 50%;
  transform-origin-x: 50%
}

.action-bar.fixed-top .spinner {
  -webkit-transform-origin-y: 0;
  -moz-transform-origin-y: 0;
  transform-origin-y: 0
}

.action-bar.fixed-top .spinner, .action-bar.fixed-top .spinner.active {
  top: 48px
}

.action-bar.fixed-bottom .spinner {
  -webkit-transform-origin-y: 100%;
  -moz-transform-origin-y: 100%;
  transform-origin-y: 100%
}

.action-bar.fixed-bottom .spinner, .action-bar.fixed-bottom .spinner.active {
  bottom: 48px
}

.action-overflow .spinner {
  right: 10px
}

.form-spinner {
  position: relative;
  margin-left: 10px;
  min-width: 100px
}

.form-spinner .toggle-spinner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 14px 20px 6px 40px;
  height: 48px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  border-bottom: 1px solid #3c3c3c;
  vertical-align: middle;
  outline: 0
}

.form-spinner .toggle-spinner:after {
  position: absolute;
  content: '';
  top: 36px;
  right: 0;
  margin-left: -4px;
  width: 0;
  height: 0;
  border-right: 12px solid rgba(0, 0, 0, 0);
  border-top: 12px solid #595959;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg)
}

.form-spinner .spinner {
  right: 0
}

@-webkit-keyframes push {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
}

@-moz-keyframes push {
  from {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
}

@keyframes push {
  from {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
}

@-webkit-keyframes pop {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.7, .7, 1)
  }
}

@-moz-keyframes pop {
  from {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    -moz-transform: scale3d(0.7, .7, 1)
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1)
  }
  to {
    opacity: 0;
    transform: scale3d(0.7, .7, 1)
  }
}

.page.fade {
  z-index: 0
}

.page.push {
  -webkit-animation: push .3s;
  -moz-animation: push .3s;
  animation: push .3s;
  z-index: 1
}

.page.pop {
  -webkit-animation: pop .3s;
  -moz-animation: pop .3s;
  animation: pop .3s
}

.page.hidden {
  display: none
}

.action-bar ~ [class*=tab-] {
  top: 48px
}

.tab-fixed {
  position: absolute;
  top: initial;
  right: 0;
  bottom: initial;
  left: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  display: block;
  z-index: 1;
  height: 48px;
  background: #333;
  -webkit-backface-visibility: hidden
}

.tab-fixed ul.tab-inner {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  width: 100%;
  list-style: none
}

.tab-fixed ul.tab-inner li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  whitespace: nowrap;
  overflow: hidden;
  text-align: center
}

.tab-fixed ul.tab-inner li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  height: 48px;
  color: #fff;
  overflow: hidden;
  text-transform: uppercase;
  text-overflow: ellipsis;
  font-size: 11px;
  font-weight: 700;
  line-height: 52px
}

.tab-fixed ul.tab-inner li a:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 24px;
  top: 13px;
  right: 0;
  background-color: #4d4d4d
}

.tab-fixed ul.tab-inner li:last-child a {
  border-right-width: 0
}

.tab-fixed ul.tab-inner li:active {
  background-color: rgba(51, 181, 229, .6)
}

.tab-fixed ul.tab-inner li.active a {
  border-bottom: 5px solid #33b5e5
}

.tab-fixed ul.tab-inner li:last-child a:after, .tab-fixed ul.tab-inner li:active a:after {
  background-color: transparent
}

[class|=tab] ul.tab-inner li a [class*=icon-], [class|=" tab"] ul.tab-inner li a [class*=icon-] {
  font-size: 28px;
  line-height: 48px
}

.tab-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.tab-slider .tab-item {
  position: absolute;
  display: none;
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform .1s ease-out;
  transition: transform .1s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0, 0)
}

.tab-slider .tab-item.active, .tab-slider .tab-item.in-transition {
  display: inline-block
}

.toast {
  position: fixed;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity .25s ease-in;
  -moz-transition: opacity .25s ease-in;
  transition: opacity .25s ease-in
}

.toast.on {
  visibility: visible
}

.toast.fade-in {
  opacity: 1
}

.toast .toast-message {
  display: inline-block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 3px 16px 5px;
  margin: 0 auto;
  max-width: 80%;
  height: 36px;
  line-height: 32px;
  background-color: rgba(44, 44, 44, .9);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 0 10px rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 13px;
  text-align: center
}

body {
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

h1.intro {
  font-weight: 200;
  margin: 0.2em 0;
}

p {
  color: #999;
  margin-bottom: 1em;
}

.center-me {
  text-align: center;
}

.list i[class*="icon-"] {
  float: left;
  font-size: 36px;
  color: #999;
}

.i-class {
  float: left;
  line-height: 36px;
  margin-left: 8px;
}

.footnote {
  display: block;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  color: #222;
  font-size: 11px;
}

#loading_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  filter: alpha(opacity=0.9);
  z-index: 10000;
}

#loading_overlay img {
  display: block;
  margin-top: 40%;
  margin-left: auto;
  margin-right: auto;
  filter: alpha(opacity=0.9);
}

div.block-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 5px 5px 3px;
  margin-top: 10px;
  width: 100%;
  border-bottom: 2px solid #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: #ccc
}

.multi-select {
  width: 70%;
  height: 35px;
  float: right;
  border: 1px solid #595959;
  margin-top: 5px;
  margin-bottom: 10px;
}

.dark_green {
  background-color: #00ff42;
}

.light_green {
  background-color: #73d94f;
}

.amber {
  background-color: #ffc200;
}

.red {
  background-color: #ff0000;
}
.input_no_jump {
  display: block;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #333;
  padding: 10px 10px 0;
  width: 100%;
  height: 48px;
  background: transparent;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: border ease-out .2s;
  -moz-transition: border ease-out .2s;
  transition: border ease-out .2s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 400;
}.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: inline-block;
    position: relative;
    width : 83%;
}

.awesomplete > input {
    display: block;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
    z-index: 1;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	border-radius: .3em;
	margin: .2em 0 0;
	background: hsla(0,0%,100%,.9);
	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid rgba(0,0,0,.3);
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		transition: .0s cubic-bezier(.4,.2,.5,1.4);
		transform-origin: 1.43em -.43em;
	}
	.awesomplete > ul[hidden],
	.awesomplete > ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		transition-timing-function: ease;
	}
}

	/* Pointer */
	.awesomplete > ul:before {
		content: "";
		position: absolute;
		top: -.43em;
		left: 1em;
		width: 0; height: 0;
		padding: .4em;
		background: white;
		border: inherit;
		border-right: 0;
		border-bottom: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
        color: black;
        font-size : 16px;
	}
	
	.awesomplete > ul > li:hover {
		background: hsl(200, 40%, 80%);
		color: black;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: hsl(205, 40%, 40%);
		color: red;
	}

    .awesomplete mark {
        background: hsl(65, 100%, 50%);
    }
		
		.awesomplete li:hover mark {
			background: hsl(68, 100%, 41%);
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: hsl(86, 100%, 21%);
			color: inherit;
		}
.timer_done {
  color : green;
}
/*# sourceMappingURL=awesomplete.css.map */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background: #3f4458;
  -webkit-box-shadow: 1px 0 0 #20222c, -1px 0 0 #20222c, 0 1px 0 #20222c, 0 -1px 0 #20222c, 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 1px 0 0 #20222c, -1px 0 0 #20222c, 0 1px 0 #20222c, 0 -1px 0 #20222c, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #20222c;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #20222c;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #3f4458;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #20222c;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #3f4458;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: #3f4458;
  color: #fff;
  fill: #fff;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #fff;
  fill: #fff;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #eee;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(192,187,167,0.1);
}
.numInputWrapper span:active {
  background: rgba(192,187,167,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(255,255,255,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(255,255,255,0.5);
}
.numInputWrapper:hover {
  background: rgba(192,187,167,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(192,187,167,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(255,255,255,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: #3f4458;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(192,187,167,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #3f4458;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #3f4458;
  color: #fff;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #20222c;
          box-shadow: -1px 0 0 #20222c;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
      -ms-flex-preferred-size: 14.2857143%;
          flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #646c8c;
  border-color: #646c8c;
}
.flatpickr-day.today {
  border-color: #eee;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #eee;
  background: #eee;
  color: #3f4458;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #80cbc4;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: #80cbc4;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #80cbc4;
          box-shadow: -10px 0 0 #80cbc4;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #646c8c, 5px 0 0 #646c8c;
          box-shadow: -5px 0 0 #646c8c, 5px 0 0 #646c8c;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(255,255,255,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(255,255,255,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #80cbc4, 5px 0 0 #80cbc4;
          box-shadow: -5px 0 0 #80cbc4, 5px 0 0 #80cbc4;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #20222c;
          box-shadow: 1px 0 0 #20222c;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(255,255,255,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(255,255,255,0.95);
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(255,255,255,0.95);
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: rgba(255,255,255,0.95);
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #6a7395;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.textLayer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.2;
  line-height: 1;
}

.textLayer > span {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  transform-origin: 0% 0%;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: rgba(180, 0, 170, 1);
  border-radius: 4px;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: rgba(0, 100, 0, 1);
}

.textLayer ::-moz-selection {
  background: rgba(0, 0, 255, 1);
}

.textLayer ::selection {
  background: rgba(0, 0, 255, 1);
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.textLayer .endOfContent.active {
  top: 0;
}


.annotationLayer section {
  position: absolute;
  text-align: initial;
}

.annotationLayer .linkAnnotation > a,
.annotationLayer .buttonWidgetAnnotation.pushButton > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer .linkAnnotation > a:hover,
.annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
}

.annotationLayer .textWidgetAnnotation input,
.annotationLayer .textWidgetAnnotation textarea,
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  background-color: rgba(0, 54, 255, 0.13);
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: 9px;
  height: 100%;
  margin: 0;
  padding: 0 3px;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  font: message-box;
  font-size: 9px;
  resize: none;
}

.annotationLayer .textWidgetAnnotation input[disabled],
.annotationLayer .textWidgetAnnotation textarea[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
  background: none;
  border: 1px solid transparent;
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation input:hover,
.annotationLayer .textWidgetAnnotation textarea:hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
.annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
  border: 1px solid rgba(0, 0, 0, 1);
}

.annotationLayer .textWidgetAnnotation input:focus,
.annotationLayer .textWidgetAnnotation textarea:focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 1px solid transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  background-color: rgba(0, 0, 0, 1);
  content: "";
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 115%;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input,
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.annotationLayer .popupWrapper {
  position: absolute;
  width: 20em;
}

.annotationLayer .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 2px 5px rgba(136, 136, 136, 1);
  border-radius: 2px;
  padding: 6px;
  margin-left: 5px;
  cursor: pointer;
  font: message-box;
  font-size: 9px;
  white-space: normal;
  word-wrap: break-word;
}

.annotationLayer .popup > * {
  font-size: 9px;
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popup span {
  display: inline-block;
  margin-left: 5px;
}

.annotationLayer .popup p {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: 2px;
  padding-top: 2px;
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.pdfViewer .canvasWrapper {
  overflow: hidden;
}

.pdfViewer .page {
  direction: ltr;
  width: 816px;
  height: 1056px;
  margin: 1px auto -8px;
  position: relative;
  overflow: visible;
  border: 9px solid transparent;
  background-clip: content-box;
  -o-border-image: url(images/shadow.png) 9 9 repeat;
  border-image: url(images/shadow.png) 9 9 repeat;
  background-color: rgba(255, 255, 255, 1);
}

.pdfViewer.removePageBorders .page {
  margin: 0 auto 10px;
  border: none;
}

.pdfViewer.singlePageView {
  display: inline-block;
}

.pdfViewer.singlePageView .page {
  margin: 0;
  border: none;
}

.pdfViewer.scrollHorizontal,
.pdfViewer.scrollWrapped,
.spread {
  margin-left: 3.5px;
  margin-right: 3.5px;
  text-align: center;
}

.pdfViewer.scrollHorizontal,
.spread {
  white-space: nowrap;
}

.pdfViewer.removePageBorders,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  margin-left: 0;
  margin-right: 0;
}

.spread .page,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page,
.pdfViewer.scrollHorizontal .spread,
.pdfViewer.scrollWrapped .spread {
  display: inline-block;
  vertical-align: middle;
}

.spread .page,
.pdfViewer.scrollHorizontal .page,
.pdfViewer.scrollWrapped .page {
  margin-left: -3.5px;
  margin-right: -3.5px;
}

.pdfViewer.removePageBorders .spread .page,
.pdfViewer.removePageBorders.scrollHorizontal .page,
.pdfViewer.removePageBorders.scrollWrapped .page {
  margin-left: 5px;
  margin-right: 5px;
}

.pdfViewer .page canvas {
  margin: 0;
  display: block;
}

.pdfViewer .page canvas[hidden] {
  display: none;
}

.pdfViewer .page .loadingIcon {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("images/loading-icon.gif") center no-repeat;
}

.pdfPresentationMode .pdfViewer {
  margin-left: 0;
  margin-right: 0;
}

.pdfPresentationMode .pdfViewer .page,
.pdfPresentationMode .pdfViewer .spread {
  display: block;
}

.pdfPresentationMode .pdfViewer .page,
.pdfPresentationMode .pdfViewer.removePageBorders .page {
  margin-left: auto;
  margin-right: auto;
}

.pdfPresentationMode:-webkit-full-screen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

.pdfPresentationMode:-moz-full-screen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}

.pdfPresentationMode:fullscreen .pdfViewer .page {
  margin-bottom: 100%;
  border: 0;
}



/*Custom CSS*/

.toolbarButton {
  display: block;
  padding: 5px 5px;
  margin: 0;
  border-width: 0;
  background-position: center center;
  background-repeat: no-repeat;
}

#pageNumber {
  -moz-appearance: textfield; /* hides the spinner in moz */
  text-align: center;
  border: 0;
  background-color: white;
  font-size: 1.2rem;
}

.toolbarButton[disabled] {
  opacity: 0.3;
}

.hidden {
  display: none;
}
[hidden] {
  display: none !important;
}

#viewerContainer {
  position: absolute;
  overflow: auto;
}

.pdfViewer .loadingIcon {
  width: 2.9rem;
  height: 2.9rem;
  background: url("../../img/pdf/spinner.png") no-repeat left top / 38rem;
  border: medium none;
  animation: 1s steps(10, end) 0s normal none infinite moveDefault;
  display: block;
  position: absolute;
  top: calc((100% - 2.9rem) / 2);
  left: calc((100% - 2.9rem) / 2);
}

@keyframes moveDefault {
  from {
    background-position: 0 top;
  }

  to {
    background-position: -39rem top;
  }
}

#loadingBar {
  position: relative;
  height: 0.6rem;
  background-color: rgba(51, 51, 51, 1);
  border-bottom: 1px solid rgba(51, 51, 51, 1);
  margin-top: 5rem;
}

#loadingBar .progress {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(221, 221, 221, 1);
  overflow: hidden;
  transition: width 200ms;
}

@keyframes progressIndeterminate {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

#loadingBar .progress.indeterminate {
  background-color: rgba(153, 153, 153, 1);
  transition: none;
}

#loadingBar .indeterminate .glimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5rem;
  background-image: linear-gradient(
      to right,
      rgba(153, 153, 153, 1) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(153, 153, 153, 1) 100%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: progressIndeterminate 2s linear infinite;
}

#errorWrapper {
  background: none repeat scroll 0 0 rgba(255, 85, 85, 1);
  color: rgba(255, 255, 255, 1);
  left: 0;
  position: absolute;
  right: 0;
  top: 3.2rem;
  z-index: 1000;
  padding: 0.3rem;
  font-size: 0.8em;
}

#errorMessageLeft {
  float: left;
}

#errorMessageRight {
  float: right;
}

#errorMoreInfo {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  padding: 0.3rem;
  margin: 0.3rem;
  width: 98%;
}
