﻿/*

To get this list of colors inject jQuery at http://www.google.com/design/spec/style/color.html#color-color-palette

Then, run this script to get the list.


(function() {
  var colors = {}, main = {};
  $(".color-group").each(function() {
    var color = $(this).find(".name").text().trim().toLowerCase().replace(" ", "-");
    colors[color] = {};

    $(this).find(".color").not(".main-color").each(function() {
      var shade = $(this).find(".shade").text().trim(),
          hex   = $(this).find(".hex").text().trim();

      colors[color][shade] = hex;
    });
    main[color] = color + "-" + $(this).find(".main-color .shade").text().trim();

  });
  var LESS = "";
  $.each(colors, function(name, shades) {
    LESS += "\n\n";
    $.each(shades, function(shade, hex) {
      LESS += "@" + name + "-" + shade + ": " + hex + ";\n";
    });
    if (main[name]) {
      LESS += "@" + name + ": " + main[name] + ";\n";
    }
  });
  console.log(LESS);
})();


*/
/* ANIMATION */
/* SHADOWS */
/* Shadows (from mdl http://www.getmdl.io/) */
/*.ifrebaseBasic() when (@farb-schema = rebaseBasic) {*/
/*@cc-brand-primary: #0099AE;*/
/*@color-header-bg: @brand-primary;*/
/*@color-navbar-header-bg: #fff;*/
/*}
.ifrebaseBasic;*/
.button-success {
  background-color: #2bb15d;
  color: white;
}
.button-success:hover {
  background-color: #30c668;
}
.button-warning {
  background-color: #e8910d !important;
  color: white !important;
}
.button-danger {
  background-color: #ed5650 !important;
  color: white !important;
}
.panel {
  background-color: #fff;
  /*border: 1px solid transparent;*/
  border: none;
  border-radius: 1px;
  width: 100%;
  margin-bottom: 8px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.panel .panel-heading {
  padding: 10px 15px;
  font-size: 1.4rem;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  color: #081C80;
}
.panel .panel-heading.collapseable {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel .panel-heading.collapseable i {
  transition: all 0.2s;
  font-size: 1rem;
}
.panel .panel-heading.collapseable .innerSection {
  margin-right: 12px;
  /*padding: 0 12px;*/
  flex: 1 1 auto;
  font-size: 1.1rem;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  border-right: 1px solid #081C80;
}
.panel .panel-heading.collapseable .innerSection span {
  padding: 0 12px;
  border-radius: 2px;
}
.panel .panel-heading.collapseable .innerSection span i {
  margin-right: 3px;
  font-size: 0.8em;
}
.panel .panel-heading.collapseable .innerSection span:hover {
  background-color: #ffffff;
}
.panel .panel-body {
  border-top: 1px solid #ddd;
  font-size: 1.1rem;
  padding: 15px 15px 15px 15px;
}
.panel.panel-default {
  border-color: #ddd;
}
.panel.panel-default > .panel-heading {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel.panel-primary {
  border-color: #ddd;
}
.panel.panel-primary > .panel-heading {
  background-color: #081C80;
  border-color: #ddd;
  color: #ffffff;
}
.panel-primary > .panel-heading,
.panel-default > .panel-heading {
  font-family: 'Roboto Condensed', 'Helvetica', 'Arial', sans-serif, 'Helvetica', 'Arial', sans-serif;
  font-size: 1.4em;
  background-color: #ebebeb;
  /*color: @brand-primary;*/
  border-bottom-width: 0;
}
/* Custom Colored Panels */
.panel-primary {
  border: none;
  border-radius: 1px;
}
.panel-primary .panel-body {
  /*padding-bottom: 0;*/
}
.panel-green {
  border-color: #337ab7;
}
.panel-green .panel-heading {
  border-color: #337ab7;
  color: #fff;
  background-color: #337ab7;
}
.panel-green a {
  color: #5cb85c;
}
.panel-green a:hover {
  color: #3d8b3d;
}
.panel-red {
  border-color: #d9534f;
}
.panel-red .panel-heading {
  border-color: #d9534f;
  color: #fff;
  background-color: #d9534f;
}
.panel-red a {
  color: #d9534f;
}
.panel-red a:hover {
  color: #b52b27;
}
.panel-yellow {
  border-color: #f0ad4e;
}
.panel-yellow .panel-heading {
  border-color: #f0ad4e;
  color: #fff;
  background-color: #f0ad4e;
}
.panel-yellow a {
  color: #f0ad4e;
}
.panel-yellow a:hover {
  color: #df8a13;
}
.k-grid {
  border: 0;
  margin-bottom: 8px;
  overflow-x: auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.k-grid .k-grid-content {
  overflow-y: auto;
  min-height: 80px;
  -moz-transition: all ease-in 0.5s;
  -o-transition: all ease-in 0.5s;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}
.k-grid .k-filtercell .k-widget input {
  min-width: 30px;
}
.k-grid .mdl-chip {
  height: 20px;
  line-height: 21px;
}
.k-grid .mdl-chip .mdl-chip__contact {
  height: 20px;
  width: 20px;
}
.k-grid .k-grid-norecords-template {
  border: none;
}
.k-button.k-upload-button {
  width: 100%;
  height: 36px;
  padding-top: 11px;
}
.cc-grid-fixColumnWidth col {
  min-width: 140px;
  width: 140px;
}
.cc-combobox.is-invalid .cc-label-combobox {
  color: #d50000;
}
.cc-combobox.is-invalid .k-input.cc-ismandatory-ddl {
  background-color: #fde6e6;
}
.k-widget,
.k-grid {
  /*overflow-x: auto;*/
  /*margin-top:10px;*/
}
/*.k-widget {
    width:100%;
}*/
.k-popup .k-widget {
  /*overflow-x: visible;*/
}
.k-datepicker,
.k-input,
.k-numerictextbox,
.k-timepicker {
  /*padding: 0 0 !important;*/
  width: 100%;
}
.k-datepicker .k-input,
.k-timepicker .k-input {
  background-color: #fff;
}
.k-picker-wrap .k-input {
  /*height: 28px;
    padding: 2px 6px;
    font-size: 14px;
    line-height: 1.42857143;*/
}
.k-picker-wrap .k-icon {
  /*margin-top: 6px;*/
}
.k-state-selected,
.k-state-selected:link,
.k-state-selected:visited,
.k-list > .k-state-selected,
.k-list > .k-state-highlight,
.k-panel > .k-state-selected,
.k-ghost-splitbar-vertical,
.k-ghost-splitbar-horizontal,
.k-draghandle.k-state-selected:hover,
.k-scheduler .k-scheduler-toolbar .k-state-selected,
.k-scheduler .k-today.k-state-selected,
.k-marquee-color {
  color: #ffffff;
  background-color: #081C80;
  border-color: #081C80;
}
.k-grid tbody .k-button,
.k-ie8 .k-grid tbody button.k-button,
.k-primary {
  min-width: 64px;
  /*color:white;*/
  background-color: #081C80;
  border-color: #9e9e9e;
}
.k-grid tbody .k-button:hover,
.k-ie8 .k-grid tbody button.k-button:hover,
.k-primary:hover {
  min-width: 64px;
  /*color:white;*/
  /*background-color: lighten(@brand-primary, 5%);*/
  border-color: #081C80;
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}
.k-filter-row > th:first-child,
.k-grid tbody td:first-child,
.k-grid tfoot td:first-child,
.k-grid-header th.k-header:first-child {
  padding-left: 6px;
  padding-right: 6px;
}
.k-grid tbody td:first-child {
  /*display: flex;*/
  /*justify-content: space-around;*/
  text-align: center;
  border-right-width: 1px;
}
.k-grid tbody .gridActionContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}
.k-widget.k-grid td .k-button {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: none;
  font-size: 1em;
  color: white;
}
.k-widget.k-grid td .k-button .fa {
  padding-right: 5px;
}
.k-widget.k-grid td .k-button.gridButtonOnlyIcon {
  background-color: transparent;
  min-width: 0;
  border: none;
  border-radius: 10%;
  /*box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);*/
  box-shadow: none;
  color: #081C80;
  width: 32px;
  /*width:100%;*/
  height: 32px;
  padding: 5px;
  /*display: flex;*/
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}
.k-widget.k-grid td .k-button.gridButtonOnlyIcon .fa {
  padding: 0;
  font-size: 20px;
  /*line-height: 23px;*/
}
.k-widget.k-grid td .k-button.gridButtonOnlyIcon:hover {
  /*.shadow-z-1-hover();*/
  /*box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);*/
  background-color: #081C80;
  color: #ffffff;
}
.k-pager-numbers .k-state-selected {
  border-color: #081C80 transparent transparent;
  border-radius: 0;
  box-shadow: none;
  color: #081C80;
}
.k-widget.k-grid td .k-button.k-grid-delete span.k-icon,
.k-widget.k-grid td .k-button.k-grid-edit span.k-icon,
.k-widget.k-grid td .k-button.k-grid-cancel span.k-icon,
.k-widget.k-grid td .k-button.k-grid-update span.k-icon {
  color: white;
}
.k-widget.k-grid td .k-button.k-grid-delete span.k-icon.k-edit,
.k-widget.k-grid td .k-button.k-grid-edit span.k-icon.k-edit,
.k-widget.k-grid td .k-button.k-grid-cancel span.k-icon.k-edit,
.k-widget.k-grid td .k-button.k-grid-update span.k-icon.k-edit {
  display: none;
}
.k-widget.k-grid td .k-button.k-grid-delete span.k-icon.k-cancel,
.k-widget.k-grid td .k-button.k-grid-edit span.k-icon.k-cancel,
.k-widget.k-grid td .k-button.k-grid-cancel span.k-icon.k-cancel,
.k-widget.k-grid td .k-button.k-grid-update span.k-icon.k-cancel {
  display: none;
}
.k-widget.k-grid td .k-button.k-grid-delete span.k-icon.k-update,
.k-widget.k-grid td .k-button.k-grid-edit span.k-icon.k-update,
.k-widget.k-grid td .k-button.k-grid-cancel span.k-icon.k-update,
.k-widget.k-grid td .k-button.k-grid-update span.k-icon.k-update {
  display: none;
}
.k-grid .gridButtonOnlyIcon .k-icon {
  display: none;
}
.k-autocomplete {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
.k-dropzone {
  padding: 0;
}
.k-dropzone em {
  display: none;
}
.k-upload-button span {
  font-size: 1.2em;
  text-transform: none;
  font-weight: 400;
  color: #000000;
}
html .k-upload {
  background-color: transparent;
  border-top-width: 0px;
}
.k-upload-status {
  top: initial;
}
.k-upload-status.k-upload-status-total {
  right: 20px;
}
.k-textbox {
  border: 1px solid #ddd;
}
.k-filter-menu .k-primary {
  color: #081C80;
}
.k-grid .k-header .k-button {
  background-color: #dcdcdc;
  color: #000000;
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.k-grid .k-header .k-button:hover {
  background-color: white;
}
.k-upload .k-upload-selected {
  color: #081C80;
}
.k-upload .k-upload-selected:hover {
  color: #000000;
}
.k-widget.k-datepicker {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.form {
  /*margin-bottom: 12px;*/
  width: 100%;
  /*& > .mdl-grid, .mdl-grid {*/
}
.form > .mdl-grid {
  padding: 0;
}
.form > .mdl-grid > .mdl-cell,
.form > .mdl-grid .mdl-cell {
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  margin-top: 3px;
  margin-bottom: 3px;
  /*flex-wrap: wrap;*/
}
.form > .mdl-grid > .mdl-cell > .mdl-grid,
.form > .mdl-grid .mdl-cell > .mdl-grid {
  align-self: flex-start;
}
.mdl-layout__header-row {
  padding-right: 0px;
}
.mdl-layout__content .mdl-button {
  /*margin-bottom: 16px;*/
  font-weight: 400;
  text-transform: none;
}
.mdl-button,
.mdl-layout__content .mdl-button,
.mdl-tabs__tab-bar,
.mdl-layout__header-row {
  font-family: 'Roboto Condensed', 'Helvetica', 'Arial', sans-serif, 'Helvetica', 'Arial', sans-serif;
}
.mdl-tabs__tab-bar {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}
.mdl-navigation .mdl-button {
  /*font-size: 1.3em;*/
  font-weight: 400;
  text-transform: none;
  padding: 0 10px;
}
.mdl-layout__content,
.mdl-layout__drawer,
.mdl-layout__header {
  transition: all 0.2s ease;
}
.mdl-tabs .mdl-tabs__tab {
  /*text-transform: none;*/
}
.mdl-tabs .mdl-tabs .mdl-tabs__tab {
  text-transform: none;
}
.mdl-menu {
  padding: 0;
  color: #000000;
}
.mdl-layout__header-row .cc-topmenu-button,
.mdl-layout__header-row .cc-menu-link {
  flex-direction: row-reverse;
  height: 100%;
  color: #081C80;
}
.mdl-layout__header-row .cc-topmenu-button i,
.mdl-layout__header-row .cc-menu-link i {
  padding-right: 0;
  padding-left: 0;
  margin: 0;
  /*padding-left: 12px;*/
  font-size: 1.3em;
  margin-right: 5px;
}
.mdl-tabs__tab + .mdl-badge {
  margin-right: 0;
  left: -25px;
}
.mdl-tabs__tab + .mdl-badge:after {
  background-color: #d9534f;
}
.mdl-chip.mdl-chip__small {
  height: 20px;
  line-height: 21px;
}
.mdl-chip.mdl-chip__small .mdl-chip__contact {
  height: 20px;
  width: 20px;
}
button.mdl-chip {
  color: white;
}
.documents.mdl-card {
  width: 100%;
  height: 80px;
  min-height: 80px;
}
.mdl-layout__header {
  background-color: #081C80;
}
.mdl-tabs__panel {
  margin-top: 10px;
}
.qq-upload-button {
  width: 100%;
  background-color: #081C80;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: 0;
}
#profilImage {
  width: 100%;
  margin-bottom: 10px;
}
.dashboard h5,
.dashboard h6 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 6px;
  margin-top: 12px;
  border-bottom: 1px solid #081C80;
}
.dashboard h5 {
  font-size: 16px;
}
.dashboard .newsentry {
  position: relative;
  padding: 4px 12px;
}
.dashboard .newsentry p {
  text-align: left;
  padding-right: 70px;
}
.dashboard .newsentry .subtitle {
  position: absolute;
  bottom: 0;
  right: 12px;
  color: grey;
  padding: 0;
  font-size: 11px;
}
.dashboard .border-right {
  border-right: 1px solid #081C80;
}
a:hover,
a:active,
a:visited {
  text-decoration: none;
}
hr {
  margin: 12px 0 4px 0;
  width: 100%;
  border-top: 1px solid #081C80;
}
#nprogress .bar {
  background: #081C80;
}
#nprogress .peg {
  box-shadow: 0 0 10px #081C80, 0 0 5px #081C80;
}
.modal-backdrop {
  z-index: -1;
}
.superspacigerborder {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.splitter,
.mdl-cell.splitter {
  margin: 12px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.cc-disabled {
  background-color: #eee !important;
}
.cc-ismandatory {
  /*border-color: @cc-brand-primary;*/
  border-color: #fa1e08 !important;
}
.cc-ismandatory + .select2 .select2-selection {
  /*border-color: @cc-brand-primary;*/
  border-color: #fa1e08;
}
.select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border: 1px solid #ccc;
  border-radius: 3px;
}
.form-group.is-invalid .select2-selection {
  background-color: #fde6e6;
}
.form-group.isPicker input {
  padding-top: 0 !important;
}
.cc-page-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  border-bottom: 1px solid #081C80;
  /*& h4:not(:first-child) {
    }*/
}
.cc-page-header h1,
.cc-page-header h2,
.cc-page-header h3,
.cc-page-header h4,
.cc-page-header h5,
.cc-page-header h6 {
  margin-bottom: 6px;
  margin-top: 12px;
}
.cc-page-header h1:not(:first-child),
.cc-page-header h2:not(:first-child),
.cc-page-header h4:not(:first-child),
.cc-page-header h5:not(:first-child),
.cc-page-header h6:not(:first-child) {
  padding-left: 8px;
}
.cc-page-header button {
  margin-left: 6px;
  margin-bottom: 10px !important;
}
.cc-page-header .cc-spacer {
  flex: 1 1 auto;
}
.cc-nopadding {
  padding: 4px 0 0 0;
}
.cc-nopadding > div:first-child {
  margin-left: 0px;
}
.cc-nopadding > div:last-child {
  margin-right: 0px;
}
.cc-nomargin {
  margin: 0;
}
.padding-0 {
  padding: 0;
}
.cc-nopadding-top {
  padding-top: 0;
}
.cc-noradius {
  border-radius: 0;
}
.cc-fill {
  flex: 1 1 auto;
}
.cc-text-info {
  flex: 1 1 auto;
  padding-left: 8px;
  padding-top: 2px;
  font-size: 0.8em;
  /*font-family: @cc-font-primary;*/
  color: #666666;
  font-style: italic;
}
.cc-label-fixed {
  /*color: rgb(255,152,0);*/
  font-size: 12px;
  top: 4px;
  visibility: visible;
}
.cc-combobox {
  padding-top: 6px;
  font-size: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.cc-topmenu-button,
.cc-menu-link {
  color: inherit;
  font-weight: 500;
  margin: 0;
  text-align: left;
  display: flex !important;
  align-items: center;
}
.cc-topmenu-button > i,
.cc-menu-link > i {
  margin-right: 24px;
  font-size: 1.3em;
  min-width: 24px;
  display: flex;
  justify-content: center;
}
.cc-topmenu-button > i {
  margin-right: 2px;
}
/*.cc-sidebar-header1 {
    font-size: 1.3rem;
    color: @brand-primary;
    font-weight: 500;
}*/
.cc-header-body,
.cc-sidebar-header1 {
  margin: 0 0 6px 0;
  color: #081C80;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}
.cc-header-body small,
.cc-sidebar-header1 small {
  opacity: 0.8;
  font-size: 0.8em;
  padding-left: 4px;
}
.cc-header-size6 {
  margin-bottom: -10px;
  margin-left: 15px;
}
.cc-container-fixed-top {
  z-index: 999;
  position: fixed;
  height: auto;
  top: 70px;
  background-color: white;
}
.cc-container-fixed-top h5 {
  margin-bottom: 0px;
  margin-top: 6px;
}
.cc-label-body {
  color: #081C80;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding-bottom: 6px;
  margin: 0;
}
.cc-input-icon {
  position: absolute;
  top: 7px;
  right: 10px;
  color: #ebebeb;
  font-size: 16px;
}
.cc-relative {
  position: relative;
}
.cc-container {
  width: 100%;
  padding: 6px;
}
.cc-color-error,
.cc-text-error {
  color: #d50000 !important;
}
.cc-text-error {
  font-size: 1rem;
  display: none;
}
.cc-topmenu-button {
  text-transform: lowercase;
  padding-right: 0;
  font-weight: 400;
}
.cc-label-date,
.cc-label-combobox {
  margin-bottom: 0px;
  color: #081C80;
}
.cc-label-combobox {
  padding-left: 2px;
}
/*.is-focused .cc-description {*/
.cc-description {
  position: absolute;
  right: 0;
  top: 38%;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.25);
  display: block;
}
.cc-fixed-container {
  width: initial;
  pointer-events: none;
  height: 100%;
  -moz-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
.cc-fixed-container button,
.cc-fixed-container .k-widget,
.cc-fixed-container a,
.cc-fixed-container input {
  pointer-events: auto;
}
.cc-fixed-now {
  position: fixed;
  top: 80px;
  width: initial;
  height: 90%;
  margin-right: 37px;
}
.cc-fixer-sideheader {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  flex: 1 1 100%;
  font-size: 1.4em;
  color: #000000;
}
.cc-fixer-sideheader-show {
  visibility: visible;
  height: auto;
  width: auto;
  opacity: 1;
  margin-bottom: 6px;
}
.cc-margintop-0 {
  margin-top: 0;
}
.cc-grid-clean {
  box-shadow: none;
  border-radius: 3px;
  margin-bottom: 0;
}
.cc-grid-clean .k-grid-header th.k-header {
  border-top: none;
  border-left: none;
  border-right: none;
  color: #081C80;
}
.cc-grid-clean .k-grid-header th.k-header a {
  color: #081C80;
}
.cc-grid-clean thead {
  background-color: transparent;
}
.cc-grid-clean tr:last-child td {
  border: none;
}
.cc-direct-left {
  border-top-left-radius: 0;
  border-left: 0;
  border-bottom-left-radius: 0;
}
.cc-direct-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cc-search-result {
  position: absolute;
  top: 53px;
  left: 0;
  /*width:300px;
        min-height:50px;*/
  /*border-radius: 3px;*/
  /*border: 1px solid grey;*/
  background-color: #ffffff;
  padding: 0px 0px;
  flex-direction: column;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.cc-search-entry {
  cursor: pointer;
  color: black;
  display: flex;
}
.cc-search-entry a {
  color: black;
  padding: 6px 14px;
  white-space: nowrap;
  flex: 1 1 auto;
}
.cc-search-entry:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.cc-quicksearchbar {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 30px;
}
.cc-quicksearchbar input {
  text-indent: 26px !important;
  cursor: text;
}
.cc-quicksearchbar .k-widget {
  width: 0px;
  opacity: 0;
  font-size: 14px;
  border: none !important;
  transition: all ease-in 0.3s;
}
.cc-quicksearchbar .k-widget.k-state-hover {
  width: 280px;
  opacity: 1;
}
.cc-quicksearchbar .k-widget.k-state-hover ~ i {
  color: black;
  right: 255px;
  font-size: 17px;
}
.cc-quicksearchbar .k-widget.k-state-focused {
  width: 280px;
  opacity: 1;
}
.cc-quicksearchbar .k-widget.k-state-focused ~ i {
  color: black;
  right: 255px;
  font-size: 17px;
}
.cc-quicksearchbar i {
  transition: all ease-in 0.3s;
  color: white;
  font-size: 24px;
  position: absolute;
  /*top: 0px;*/
  right: 8px;
  width: 18px;
}
.cc-quicksearchbar:hover .k-widget {
  width: 280px;
  opacity: 1;
}
.cc-quicksearchbar:hover i {
  color: black;
  right: 255px;
  font-size: 17px;
}
.cc-quicksearchbar .isFocusedBox.k-widget {
  width: 280px;
  opacity: 1;
}
.cc-quicksearchbar .isFocusedBox ~ i {
  color: black;
  right: 255px;
  font-size: 17px;
}
.cc-quicksearchbar input::-webkit-input-placeholder {
  color: #000000;
  font-size: 1em;
}
.cc-quicksearchbar input::-moz-placeholder {
  color: #000000;
  font-size: 1em;
}
.cc-quicksearchbar input::-ms-input-placeholder {
  color: #000000;
  font-size: 1em;
}
.select2-rendered__match {
  color: #081C80;
  font-weight: bold;
}
.searchContainer {
  display: flex;
  align-items: center;
  color: #081C80;
  position: relative;
}
.searchContainer .searchContainer-searchentry {
  display: none;
}
.searchContainer .searchContainer-searchentry.searchContainer-searchentry__activ {
  display: block;
}
.searchContainer .searchContainer-searchentry-icon {
  color: #ebebeb;
  position: absolute;
  z-index: 10;
  font-size: 16px;
  cursor: pointer;
  padding-right: 5px;
  top: 7px;
}
.searchContainer .searchContainer-searchentry-icon.searchContainer-searchentry-icon__active {
  color: #081C80;
  cursor: default;
}
.searchContainer .select2-container--default .select2-selection--single,
.searchContainer .select2-container--default .select2-selection--multiple {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 4px;
  border: 1px solid #081C80;
}
.searchContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 36px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: aliceblue;
}
video,
canvas {
  width: 100%;
  height: auto;
  max-height: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.row.row-controls {
  margin-top: 4px;
}
.img_Logo_Nav {
  height: auto;
  width: 100%;
  padding: 0 0;
}
.mdl-layout__drawer .codecan_credits {
  position: fixed;
  bottom: 0;
  left: 0;
  /*width: calc(100% - 17px);*/
  background-color: #f5f5f5;
}
.mdl-layout__drawer .codecan_credits .codecan_credits__content {
  padding-left: 6px;
  padding-bottom: 6px;
}
.mdl-layout__drawer .codecan_credits .codecan_credits__content img {
  width: 130px;
  filter: grayscale(100%);
}
.permissionTable_MainHeader {
  padding: 0 12px;
}
.permissionTable_container {
  padding: 0 12px;
  float: left;
}
.permissionTable_container .permissionTable {
  border-color: lightgray;
  border-style: solid;
  border-width: thin;
}
.permissionTable_container .permissionTable td {
  padding: 0 6px;
}
.mdl-layout[cc-style="bootstrap"] .form-group,
.mdl-layout[cc-style="bootstrap"] .input-group {
  width: 100%;
}
.mdl-layout[cc-style="bootstrap"] .mdl-grid {
  align-items: flex-end;
}
.mdl-layout[cc-style="bootstrap"] .form-group {
  margin-bottom: 0px;
}
.mdl-layout[cc-style="bootstrap"] .form-group label {
  padding-left: 2px;
  margin-bottom: 0;
  font-size: 12px;
  color: #081C80;
}
.mdl-layout[cc-style="bootstrap"] .form-group input {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  padding-top: 9px;
  border-radius: 3px;
}
.mdl-layout[cc-style="bootstrap"] .form-group .cc-direct-left {
  border-top-left-radius: 0;
  border-left: 0;
  border-bottom-left-radius: 0;
}
.mdl-layout[cc-style="bootstrap"] .form-group .cc-direct-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mdl-layout[cc-style="bootstrap"] .form-group input:invalid {
  /*color: red;
            border-color: red;*/
  /*& ~ .cc-text-error {
                display: block;
            }*/
}
.mdl-layout[cc-style="bootstrap"] .form-group.is-invalid {
  color: #d50000;
  border-color: #d50000;
}
.mdl-layout[cc-style="bootstrap"] .form-group.is-invalid label {
  color: #d50000;
}
.mdl-layout[cc-style="bootstrap"] .form-group.is-invalid input {
  background-color: #fde6e6;
}
.mdl-layout[cc-style="bootstrap"] .form-group.is-invalid .cc-text-error {
  display: block;
}
.mdl-layout[cc-style="bootstrap"] .form-group .input-group input:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.mdl-layout[cc-style="bootstrap"] .form-group .input-group input:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.mdl-layout[cc-style="bootstrap"] .form-group .input-group input:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.mdl-layout[cc-style="bootstrap"] .cc-combobox,
.mdl-layout[cc-style="bootstrap"] cc-datepicker {
  margin-bottom: 0px;
  padding-top: 0px;
}
.mdl-layout[cc-style="bootstrap"] .cc-combobox input,
.mdl-layout[cc-style="bootstrap"] cc-datepicker input {
  font-size: 13px;
}
.mdl-layout[cc-style="bootstrap"] .k-autocomplete.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-picker-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-numeric-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-focused.k-state-active.k-state-border-down,
.mdl-layout[cc-style="bootstrap"] .k-button.k-button-icon,
.mdl-layout[cc-style="bootstrap"] .k-multiselect {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: none;
  padding-bottom: 0;
}
.mdl-layout[cc-style="bootstrap"] .k-autocomplete.k-state-default.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-picker-wrap.k-state-default.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-numeric-wrap.k-state-default.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-focused.k-state-active.k-state-border-down.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-button.k-button-icon.k-state-hover,
.mdl-layout[cc-style="bootstrap"] .k-multiselect.k-state-hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.mdl-layout[cc-style="bootstrap"] .k-autocomplete.k-state-default.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-picker-wrap.k-state-default.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-numeric-wrap.k-state-default.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-focused.k-state-active.k-state-border-down.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-button.k-button-icon.k-state-focused,
.mdl-layout[cc-style="bootstrap"] .k-multiselect.k-state-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.mdl-layout[cc-style="bootstrap"] .k-button.k-button-icon {
  padding: 0.64em;
}
.mdl-layout[cc-style="bootstrap"] .mdl-cell {
  margin-bottom: 0;
  margin-top: 0;
  align-items: flex-start;
}
.mdl-layout[cc-style="bootstrap"] .mdl-checkbox,
.mdl-layout[cc-style="bootstrap"] .mdl-switch {
  align-self: center;
  margin-top: 18px;
}
.mdl-layout[cc-style="bootstrap"] .mdl-switch {
  width: auto;
  margin: 0 auto;
}
.mdl-layout[cc-style="bootstrap"] .mdl-checkbox__label {
  font-size: 14px;
}
.mdl-layout[cc-style="bootstrap"] .MicrosoftMap .as_container_search {
  margin-top: -8px;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-size: 0.8em;
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-size: 0.8em;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-size: 0.8em;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-size: 0.8em;
}
.full {
  width: 100%;
}
.margin-0,
.no-margin {
  margin: 0;
}
.confirmation-modal .modal-header {
  display: block;
}
.confirmation-modal .modal-header .modal-title {
  margin: 0;
}
.cc-order-1 {
  order: 1;
}
.cc-order-2 {
  order: 2;
}
.cc-order-3 {
  order: 3;
}
.cc-order-4 {
  order: 4;
}
.cc-order-5 {
  order: 5;
}
.cc-order-6 {
  order: 6;
}
.cc-order-7 {
  order: 7;
}
.cc-order-8 {
  order: 8;
}
.cc-order-9 {
  order: 9;
}
.cc-order-10 {
  order: 10;
}
.cc-order-11 {
  order: 11;
}
.cc-order-12 {
  order: 12;
}
.cc-order-13 {
  order: 13;
}
.cc-order-14 {
  order: 14;
}
.cc-order-15 {
  order: 15;
}
.cc-order-16 {
  order: 16;
}
.cc-order-17 {
  order: 17;
}
.cc-order-18 {
  order: 18;
}
.cc-order-19 {
  order: 19;
}
.cc-order-20 {
  order: 20;
}
.cc-order-21 {
  order: 21;
}
.cc-order-22 {
  order: 22;
}
.cc-order-23 {
  order: 23;
}
.cc-order-24 {
  order: 24;
}
.cc-order-25 {
  order: 25;
}
.cc-order-26 {
  order: 26;
}
.cc-order-27 {
  order: 27;
}
.cc-order-28 {
  order: 28;
}
.cc-order-29 {
  order: 29;
}
.cc-order-30 {
  order: 30;
}
.cc-order-31 {
  order: 31;
}
.cc-order-32 {
  order: 32;
}
.cc-order-33 {
  order: 33;
}
.cc-order-34 {
  order: 34;
}
.cc-order-35 {
  order: 35;
}
.cc-order-36 {
  order: 36;
}
.cc-order-37 {
  order: 37;
}
.cc-order-38 {
  order: 38;
}
.cc-order-39 {
  order: 39;
}
.cc-order-40 {
  order: 40;
}
.cc-order-41 {
  order: 41;
}
.cc-order-42 {
  order: 42;
}
.cc-order-43 {
  order: 43;
}
.cc-order-44 {
  order: 44;
}
.cc-order-45 {
  order: 45;
}
.cc-order-46 {
  order: 46;
}
.cc-order-47 {
  order: 47;
}
.cc-order-48 {
  order: 48;
}
.cc-order-49 {
  order: 49;
}
.cc-order-50 {
  order: 50;
}
.cc-order-51 {
  order: 51;
}
.cc-order-52 {
  order: 52;
}
.cc-order-53 {
  order: 53;
}
.cc-order-54 {
  order: 54;
}
.cc-order-55 {
  order: 55;
}
.cc-order-56 {
  order: 56;
}
.cc-order-57 {
  order: 57;
}
.cc-order-58 {
  order: 58;
}
.cc-order-59 {
  order: 59;
}
.cc-order-60 {
  order: 60;
}
.cc-order-61 {
  order: 61;
}
.cc-order-62 {
  order: 62;
}
.cc-order-63 {
  order: 63;
}
.cc-order-64 {
  order: 64;
}
.cc-order-65 {
  order: 65;
}
.cc-order-66 {
  order: 66;
}
.cc-order-67 {
  order: 67;
}
.cc-order-68 {
  order: 68;
}
.cc-order-69 {
  order: 69;
}
.cc-order-70 {
  order: 70;
}
.cc-order-71 {
  order: 71;
}
.cc-order-72 {
  order: 72;
}
.cc-order-73 {
  order: 73;
}
.cc-order-74 {
  order: 74;
}
.cc-order-75 {
  order: 75;
}
.cc-order-76 {
  order: 76;
}
.cc-order-77 {
  order: 77;
}
.cc-order-78 {
  order: 78;
}
.cc-order-79 {
  order: 79;
}
.cc-order-80 {
  order: 80;
}
.cc-order-81 {
  order: 81;
}
.cc-order-82 {
  order: 82;
}
.cc-order-83 {
  order: 83;
}
.cc-order-84 {
  order: 84;
}
.cc-order-85 {
  order: 85;
}
.cc-order-86 {
  order: 86;
}
.cc-order-87 {
  order: 87;
}
.cc-order-88 {
  order: 88;
}
.cc-order-89 {
  order: 89;
}
.cc-order-90 {
  order: 90;
}
.cc-order-91 {
  order: 91;
}
.cc-order-92 {
  order: 92;
}
.cc-order-93 {
  order: 93;
}
.cc-order-94 {
  order: 94;
}
.cc-order-95 {
  order: 95;
}
.cc-order-96 {
  order: 96;
}
.cc-order-97 {
  order: 97;
}
.cc-order-98 {
  order: 98;
}
.cc-order-99 {
  order: 99;
}
.cc-order-100 {
  order: 100;
}
.cc-order-101 {
  order: 101;
}
.cc-order-102 {
  order: 102;
}
.cc-order-103 {
  order: 103;
}
.cc-order-104 {
  order: 104;
}
.cc-order-105 {
  order: 105;
}
.cc-order-106 {
  order: 106;
}
.cc-order-107 {
  order: 107;
}
.cc-order-108 {
  order: 108;
}
.cc-order-109 {
  order: 109;
}
.cc-order-110 {
  order: 110;
}
.cc-order-111 {
  order: 111;
}
.cc-order-112 {
  order: 112;
}
.cc-order-113 {
  order: 113;
}
.cc-order-114 {
  order: 114;
}
.cc-order-115 {
  order: 115;
}
.cc-order-116 {
  order: 116;
}
.cc-order-117 {
  order: 117;
}
.cc-order-118 {
  order: 118;
}
.cc-order-119 {
  order: 119;
}
.cc-order-120 {
  order: 120;
}
.cc-order-121 {
  order: 121;
}
.cc-order-122 {
  order: 122;
}
.cc-order-123 {
  order: 123;
}
.cc-order-124 {
  order: 124;
}
.cc-order-125 {
  order: 125;
}
.cc-order-126 {
  order: 126;
}
.cc-order-127 {
  order: 127;
}
.cc-order-128 {
  order: 128;
}
.cc-order-129 {
  order: 129;
}
.cc-order-130 {
  order: 130;
}
.cc-order-131 {
  order: 131;
}
.cc-order-132 {
  order: 132;
}
.cc-order-133 {
  order: 133;
}
.cc-order-134 {
  order: 134;
}
.cc-order-135 {
  order: 135;
}
.cc-order-136 {
  order: 136;
}
.cc-order-137 {
  order: 137;
}
.cc-order-138 {
  order: 138;
}
.cc-order-139 {
  order: 139;
}
.cc-order-140 {
  order: 140;
}
.cc-order-141 {
  order: 141;
}
.cc-order-142 {
  order: 142;
}
.cc-order-143 {
  order: 143;
}
.cc-order-144 {
  order: 144;
}
.cc-order-145 {
  order: 145;
}
.cc-order-146 {
  order: 146;
}
.cc-order-147 {
  order: 147;
}
.cc-order-148 {
  order: 148;
}
.cc-order-149 {
  order: 149;
}
.cc-order-150 {
  order: 150;
}
.cc-order-151 {
  order: 151;
}
.cc-order-152 {
  order: 152;
}
.cc-order-153 {
  order: 153;
}
.cc-order-154 {
  order: 154;
}
.cc-order-155 {
  order: 155;
}
.cc-order-156 {
  order: 156;
}
.cc-order-157 {
  order: 157;
}
.cc-order-158 {
  order: 158;
}
.cc-order-159 {
  order: 159;
}
.cc-order-160 {
  order: 160;
}
.cc-order-161 {
  order: 161;
}
.cc-order-162 {
  order: 162;
}
.cc-order-163 {
  order: 163;
}
.cc-order-164 {
  order: 164;
}
.cc-order-165 {
  order: 165;
}
.cc-order-166 {
  order: 166;
}
.cc-order-167 {
  order: 167;
}
.cc-order-168 {
  order: 168;
}
.cc-order-169 {
  order: 169;
}
.cc-order-170 {
  order: 170;
}
.cc-order-171 {
  order: 171;
}
.cc-order-172 {
  order: 172;
}
.cc-order-173 {
  order: 173;
}
.cc-order-174 {
  order: 174;
}
.cc-order-175 {
  order: 175;
}
.cc-order-176 {
  order: 176;
}
.cc-order-177 {
  order: 177;
}
.cc-order-178 {
  order: 178;
}
.cc-order-179 {
  order: 179;
}
.cc-order-180 {
  order: 180;
}
.cc-order-181 {
  order: 181;
}
.cc-order-182 {
  order: 182;
}
.cc-order-183 {
  order: 183;
}
.cc-order-184 {
  order: 184;
}
.cc-order-185 {
  order: 185;
}
.cc-order-186 {
  order: 186;
}
.cc-order-187 {
  order: 187;
}
.cc-order-188 {
  order: 188;
}
.cc-order-189 {
  order: 189;
}
.cc-order-190 {
  order: 190;
}
.cc-order-191 {
  order: 191;
}
.cc-order-192 {
  order: 192;
}
.cc-order-193 {
  order: 193;
}
.cc-order-194 {
  order: 194;
}
.cc-order-195 {
  order: 195;
}
.cc-order-196 {
  order: 196;
}
.cc-order-197 {
  order: 197;
}
.cc-order-198 {
  order: 198;
}
.cc-order-199 {
  order: 199;
}
.cc-order-200 {
  order: 200;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  }
  select {
    font-family: SourceSansPro, serif;
  }
}
html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  font-size: 1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', 'Helvetica', 'Arial', sans-serif, 'Helvetica', 'Arial', sans-serif;
}
#wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 1 100%;
  overflow-x: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fullwidth {
  width: 100%;
}
.navbar-inverse,
.navbar {
  flex: 0 0 75px;
  background-color: #081C80;
}
#page-wrapper {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  padding-left: 0;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
  width: 100%;
  padding: 0;
  background-color: #ebebeb;
}
footer {
  flex: 0 0 auto;
}
#top {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}
.mainContent {
  position: absolute;
  width: calc(100% - 40px);
  z-index: 0;
}
.container-fix {
  position: relative;
  height: auto;
}
.flex-container {
  display: flex;
  /*padding-bottom: 5px;*/
  flex-wrap: wrap;
}
.flex-container-column {
  display: flex;
  flex-direction: column;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-20 {
  flex: 1 1 20%;
}
.flex-20-label {
  flex: 0 1 20%;
  align-items: center;
  justify-content: flex-end;
  display: flex;
  padding: 0 7px 0 0px;
}
.flex-justify-wrap,
.flex-justify-align-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-justify-align-wrap,
.flex-align-center {
  align-items: center;
}
.placeholder {
  margin-top: 0;
}
.inherit {
  float: inherit;
}
.container-fluid {
  background-color: inherit;
  padding: 15px 20px;
}
.huge {
  line-height: normal;
  font-size: 40px;
}
/*#region Layout Admin*/
.admin-box {
  cursor: pointer;
  background: #081C80;
  z-index: 100;
  color: #ffffff;
}
.adminfooter {
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 3px solid #ebebeb;
  background: #081C80;
  z-index: 100;
}
.help-block .field-validation-error {
  color: red;
}
.slide {
  /*left: 225px;*/
  /*margin-left: 34px;
    margin-right: 18px;*/
  width: 100%;
  right: 0;
  bottom: 0;
  display: none;
  position: absolute;
  background: #081C80;
  z-index: 100;
  border-top: 3px solid #081C80;
  color: #bdbdbd;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .admin-box {
    width: calc(100% - 62px);
  }
}
@media (min-width: 768px) {
  #wrapper {
    padding-left: 225px;
  }
  #page-wrapper {
    padding-top: 0;
  }
  .flex-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
/*#endregion*/
/*#region Top Navigation*/
.navbar {
  margin-bottom: 0;
  border: 0;
}
.navbar-inverse .navbar-brand,
.navbar .navbar-brand {
  width: 225px;
  padding: 5px;
  color: #ebebeb;
  background-color: #ebebeb;
  border-left: 3px solid #081C80;
  align-items: center;
  justify-content: center;
}
.navbar-inverse .navbar-brand img,
.navbar .navbar-brand img {
  height: auto;
  width: 95%;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus,
.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
  background-color: #ebebeb;
}
@media (max-width: 991px) and (min-width: 768px) {
  .navbar-inverse .navbar-brand {
    overflow-x: hidden;
    width: 62px;
  }
}
@media (max-width: 768px) {
  .navbar-inverse,
  .navbar {
    flex: 0 0 auto;
  }
  .navbar-nav {
    margin: 0 -15px;
  }
  .navbar-header {
    width: auto;
    background-color: #081C80;
  }
  .navbar-form {
    /*border-top: 0;*/
    margin: 0 0;
  }
  .navbar-inverse .navbar-brand {
    color: #0a229d;
    width: auto;
    background-color: #081C80;
  }
  .navbar-inverse .navbar-brand:hover,
  .navbar-inverse .navbar-brand:focus {
    color: #0a229d;
    background-color: #081C80;
  }
  .navbar-inverse .navbar-toggle:hover,
  .navbar-inverse .navbar-toggle:focus {
    background-color: #ebebeb;
  }
  .navbar-inverse .navbar-toggle {
    border-color: #ebebeb;
  }
  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #0a229d;
  }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #ebebeb;
  }
  .navbar-inverse .navbar-nav > li > a {
    color: #bdbdbd;
    background-color: #081C80;
    border-left: 3px solid #081C80;
  }
  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus,
  .navbar-inverse .navbar-nav > .active > a,
  .navbar-inverse .navbar-nav > li > ul > li > a:hover,
  .navbar-inverse .navbar-nav > li > ul > li > a:focus,
  .navbar-inverse .navbar-nav > li > ul > .active > a {
    color: #fff;
    background-color: #ebebeb;
    border-left: 3px solid #081C80;
  }
  .navbar .navbar-form {
    border: none;
    margin-top: 0;
  }
  .dropdown-toggle {
    padding: 15px 15px !important;
  }
}
.top-nav {
  padding: 0 0 0 15px;
  margin-right: 0;
}
.top-nav > li {
  display: inline-block;
  float: left;
}
.top-nav > li > a {
  padding-top: 22px;
  padding-bottom: 22px;
  line-height: 31px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.top-nav > li > a:hover,
.top-nav > li > a:focus,
.top-nav > .open > a,
.top-nav > .open > a:hover,
.top-nav > .open > a:focus {
  color: #fff;
  background-color: #0a229d;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.top-nav > .open > .dropdown-menu {
  float: left;
  position: absolute;
  margin-top: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.top-nav > .open > .dropdown-menu > li > a {
  white-space: normal;
}
ul.message-dropdown {
  padding: 0;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}
li.message-preview {
  width: 275px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
li.message-preview > a {
  padding-top: 15px;
  padding-bottom: 15px;
}
li.message-footer {
  margin: 5px 0;
}
ul.alert-dropdown {
  width: 200px;
}
/*#endregion*/
/*#region Side Navigation*/
.side-nav .navbar-brand a {
  color: #ebebeb;
  text-decoration: none;
}
.side-nav .navbar-brand i {
  cursor: pointer;
}
.side-nav-bottom {
  width: 225px;
  height: 25px;
  background-color: #081C80;
  color: #bdbdbd;
  z-index: 100;
  bottom: 0;
  left: 0;
  position: fixed;
  padding-left: 15px;
  padding-bottom: 45px;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.side-nav-bottom i {
  margin-left: 10px;
}
.side-nav > li > ul {
  padding: 0;
}
.side-nav > li > ul > li > a,
.side-nav > li > ul > li > ul > li > a {
  display: block;
  background-color: #081C80;
  padding: 10px 13px 10px 35px;
  text-decoration: none;
  color: #bdbdbd;
  border-left: 3px solid #081C80;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.side-nav > li > ul > li > a:hover {
  color: #ebebeb;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.side-nav > li > ul > li > ul {
  background-color: #081C80;
  list-style-type: none;
  padding-left: 0;
}
.side-nav > li > ul > li > ul > li > a {
  background-color: #081C80;
  padding-left: 60px;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.side-nav .rotate {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.side-nav {
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
  height: 100%;
  overflow-y: auto;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
@media (min-width: 991px) {
  .removePaddingRight {
    margin-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .side-nav {
    position: fixed;
    left: 225px;
    width: 225px;
    margin-top: -75px;
    margin-left: -225px;
    border: none;
    border-radius: 0;
    /*overflow-y: auto;*/
    background-color: #081C80;
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  .side-nav > li > ul > li > ul > li > a {
    background-color: #081C80;
    /*padding-left: 17px;*/
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  .side-nav > li > a {
    width: 225px;
    border-left: 3px solid #081C80;
    color: #bdbdbd !important;
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  .side-nav li a:hover,
  .side-nav li a:focus,
  .side-nav li .active a,
  .side-nav .active a {
    outline: none;
    color: #081C80 !important;
    background-color: #ebebeb !important;
    border-left: 3px solid #081C80;
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  .side-nav .active i {
    color: #081C80;
  }
  .side-nav i {
    font-size: 16px;
    /*float: left;*/
  }
  .side-nav .left {
    float: none;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .side-nav {
    left: 62px;
    width: 62px;
    /*top: 51px;*/
    margin-left: -62px;
    font-size: 24px;
  }
  .side-nav i {
    font-size: 21px;
    /*float: left;*/
  }
  .side-nav > li > a {
    width: 62px;
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  #wrapper {
    padding-left: 62px;
  }
  .side-nav > li > ul > li > a {
    display: block;
    background-color: #081C80;
    padding: 10px 13px 10px 15px;
    text-decoration: none;
    color: #bdbdbd;
    -webkit-transition: all 0.3s;
    /* For Safari 3.1 to 6.0 */
    transition: all 0.3s;
  }
  .side-nav > li > ul > li > .side-nav i {
    font-size: 22px;
    float: none;
  }
  .side-nav .navbar-brand {
    cursor: pointer;
    font-size: 22px;
    padding: 0 0;
    overflow: hidden;
    padding: 0.7em 1em 0.7em 1em;
  }
}
.menutext {
  padding-left: 8px;
}
.side-nav-toggle {
  padding-left: 0 !important;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
.side-nav-toggle-sidebar {
  margin-left: -450px;
  -webkit-transition: all 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.3s;
}
#toggleSidebar {
  cursor: pointer;
}
/*#endregion*/
/* Flot Chart Containers */
.page-header {
  padding-bottom: 9px;
  margin: 10px 0 20px;
  margin-bottom: 0px;
  border-bottom: 1px solid #081C80;
}
.flot-chart {
  display: block;
  height: 400px;
}
.flot-chart-content {
  width: 100%;
  height: 100%;
}
/*Allgemeines*/
.right {
  float: right;
}
.fa-caret-right {
  -webkit-transition: transform 250ms ease;
  -moz-transition: transform 250ms ease;
  -o-transition: transform 250ms ease;
  transition: transform 250ms ease;
}
#adminSection {
  font-size: 1em;
}
.marginrightfix {
  margin-right: 8px;
}
.buttonbar {
  margin-top: 15px;
}
.buttonbar > .btn-xs {
  height: 25px;
  width: 25px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.alert {
  margin-top: 15px;
  margin-bottom: 0;
}
.info,
.success,
.warning,
.error,
.validation-summary-errors {
  padding: 5px 0 5px 0;
  border: 1px solid transparent;
  border-radius: 2px;
  margin-top: 15px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.info ul,
.success ul,
.warning ul,
.error ul,
.validation-summary-errors ul {
  margin-bottom: 0;
}
.error,
.validation-summary-errors {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 10px 20px;
}
label {
  font-weight: normal;
}
fieldset > legend {
  font-size: 1em;
  font-weight: bold;
}
.input-validation-error {
  border-color: #FFBABA;
}
input[type='checkbox'] {
  width: 18px;
  border: none;
  box-shadow: none;
  margin: 0;
}
#toggleSidebarLeft {
  color: #081C80;
}
.mdl-layout[cc-menu="top"] .mdl-layout__header-row {
  padding-left: 64px;
}
.mdl-layout[cc-menu="top"] .mdl-layout__header-row #toggleSidebarLeft {
  display: none;
}
.mdl-layout[cc-menu="side"] .mdl-layout__header-row {
  padding-left: 0;
}
.mdl-layout[cc-menu="side"] .mdl-layout__header-row #toggleSidebarLeft {
  display: flex;
}
.mdl-layout[cc-menu="side"] .mdl-layout__header-row .mdl-layout-title,
.mdl-layout[cc-menu="side"] .mdl-layout__header-row .nav.mdl-navigation:first-of-type {
  display: none;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  padding-left: 20px;
  border-left: 4px solid transparent;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link.is-active {
  border-left: 4px solid #081C80;
  color: black;
}
.mdl-checkbox {
  height: auto;
}
.mdl-checkbox__label {
  word-break: break-word;
}
.mdl-layout__drawer > .mdl-layout__title,
.mdl-layout__drawer > .mdl-layout-title {
  padding-left: 30px;
}
.is-small-screen[cc-menu="side"] .mdl-layout__drawer {
  transform: none;
  display: flex;
  width: 100%;
  /*height:0;*/
  position: relative;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  max-height: 0;
  overflow: hidden;
}
.is-small-screen[cc-menu="side"] .mdl-layout__drawer.show-sidenav-mini {
  height: auto;
  max-height: 70vh;
  /*height:auto;*/
  /*max-height: 500px;*/
}
.is-small-screen[cc-menu="side"] .mdl-layout__drawer .mdl-layout-title {
  display: none;
}
.is-small-screen[cc-menu="side"] .mdl-layout__drawer .mdl-navigation {
  padding-top: 0;
}
.mdl-navigation .mdl-collapse .mdl-collapse__content-wrapper .cc-menu-link {
  padding-left: 35px;
}
.mdl-navigation .mdl-button {
  /*text-transform: none;*/
}
.mdl-layout__drawer .mdl-navigation {
  padding-top: 0;
}
.mdl-tabs__tab {
  font-size: 1.3em;
}
.mdl-switch .cc-switch-label {
  position: relative;
  top: 3px;
  font-weight: 700;
  font-size: 18px;
  z-index: 99;
  color: #081C80;
  left: -24px;
  transition: left 0.2s ease-in-out, color 0.3s linear;
}
.mdl-switch.is-checked .cc-switch-label {
  left: -8px;
  color: white;
}
.form-control {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 15px;
}
.k-grid-header .k-header {
  /*white-space: pre-line;*/
}
.k-grid tr:hover {
  background-color: rgba(245, 245, 245, 0.55);
}
.k-grid tr td,
.k-pivot-layout .k-grid tr td {
  border-width: 0 0 0 0;
  border-bottom-width: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.mdl-layout.mdl-js-layout.mdl-layout--fixed-header.has-drawer.is-upgraded .mdl-layout__drawer-button {
  display: none;
}
.centerVert {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.3em;
  background-color: transparent;
}
.bold {
  font-weight: 700;
}
.progress-bar {
  background-color: #454e59;
}
.form-control:focus {
  border-color: rgba(8, 28, 128, 0.7);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #081C80;
}
.k-input:focus,
input.k-textbox:focus,
textarea.k-textbox:focus,
input.k-textbox:hover,
textarea.k-textbox:hover,
.k-textbox > input:focus,
.k-multiselect-wrap:focus {
  border-color: rgba(8, 28, 128, 0.7);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #081C80;
}
.label-floating > .date {
  margin-top: 5px;
}
.highcharts-button rect {
  fill: transparent;
}
.highcharts-button rect:hover {
  /*fill: fade(@brand-primary, 70%);*/
}
.highcharts-button path {
  stroke: #081C80;
  stroke-width: 2px;
}
.dashboardWidget {
  background-color: white;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.dashboardMarginTop {
  margin-top: 15px;
}
.leaflet-control-layers-list span {
  font-size: 14px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
.form-group.is-focused .help-block {
  margin-top: -4px;
}
.customer-photo {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: 35px 35px;
  background-position: center center;
  vertical-align: middle;
  line-height: 35px;
  box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0, 0, 0, 0.2);
  margin-right: 5px;
}
.customer-name {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  padding-left: 3px;
}
.spinner {
  width: 60px;
  height: 60px;
  margin: 60px;
  margin: 0 auto;
  margin-top: 250px;
  animation: rotate 1.4s infinite ease-in-out, background 1.4s infinite ease-in-out alternate;
  z-index: 1;
}
@-moz-keyframes rotate {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes rotate {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes background {
  0% {
    background-color: #081C80;
  }
  50% {
    background-color: #5f78f5;
  }
  100% {
    background-color: #E9763D;
  }
}
.loader {
  position: relative;
  padding-top: 100px;
  width: 40px;
  margin: auto;
}
.loader .loader-circle {
  position: absolute;
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: rotate(225deg);
  animation-iteration-count: infinite;
  animation-name: orbit;
  animation-duration: 5.5s;
}
.loader .loader-circle:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #fff;
  /* Pick a color */
}
.loader .loader-circle:nth-child(2) {
  animation-delay: 240ms;
}
.loader .loader-circle:nth-child(3) {
  animation-delay: 480ms;
}
.loader .loader-circle:nth-child(4) {
  animation-delay: 720ms;
}
.loader .loader-circle:nth-child(5) {
  animation-delay: 960ms;
}
@keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear;
  }
  30% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(945deg);
    animation-timing-function: ease-out;
  }
  76% {
    transform: rotate(945deg);
    opacity: 0;
  }
  100% {
    transform: rotate(945deg);
    opacity: 0;
  }
}
.Cube {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 50px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.5s 0.1s;
  transition: transform 0.5s 0.1s;
  perspective: 9999px;
  color: #333;
  margin: -40px 0 0 -40px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  margin-left: -37px;
  top: 65px;
  opacity: 1;
  border-radius: 4px;
}
.Cube.panelLoad {
  z-index: 11;
  top: 50%;
  margin-top: -60px;
  -webkit-animation: panel 2.2s infinite forwards;
  animation: panel 2.2s infinite forwards;
}
.Cube.panelLoad .cube-face {
  color: black;
  box-shadow: inset 0 0 0 1px #111, 0 0 1px 1px #111;
}
.Cube .cube-face {
  width: inherit;
  height: inherit;
  position: absolute;
  background: white;
  box-shadow: inset 0 0 0 1px #333, 0 0 1px 1px #333;
  opacity: 1;
}
.Cube .cube-face-front {
  -webkit-transform: translate3d(0, 0, 40px);
  transform: translate3d(0, 0, 40px);
  font-size: 57px;
}
.Cube .cube-face-back {
  -webkit-transform: rotateY(180deg) translate3d(0, 0, 40px);
  transform: rotateY(180deg) translate3d(0, 0, 40px);
}
.Cube .cube-face-left {
  -webkit-transform: rotateY(-90deg) translate3d(0, 0, 40px);
  transform: rotateY(-90deg) translate3d(0, 0, 40px);
}
.Cube .cube-face-right {
  -webkit-transform: rotateY(90deg) translate3d(0, 0, 40px);
  transform: rotateY(90deg) translate3d(0, 0, 40px);
}
.Cube .cube-face-top {
  -webkit-transform: rotateX(90deg) translate3d(0, 0, 40px);
  transform: rotateX(90deg) translate3d(0, 0, 40px);
}
.Cube .cube-face-bottom {
  -webkit-transform: rotateX(-90deg) translate3d(0, 0, 40px);
  transform: rotateX(-90deg) translate3d(0, 0, 40px);
}
@-webkit-keyframes panel {
  0% {
    -webkit-transform: rotateY(0deg) rotateZ(0deg);
    transform: rotateY(0deg) rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateY(90deg) rotateZ(0deg);
    transform: rotateY(90deg) rotateZ(0deg);
  }
  40% {
    -webkit-transform: rotateX(45deg) rotateZ(45deg);
    transform: rotateX(45deg) rotateZ(45deg);
  }
  60% {
    -webkit-transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
    transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
  }
  80% {
    -webkit-transform: rotateX(310deg) rotateZ(230deg);
    transform: rotateX(310deg) rotateZ(230deg);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateZ(360deg);
    transform: rotateX(360deg) rotateZ(360deg);
  }
}
@keyframes panel {
  0% {
    -webkit-transform: rotateY(0deg) rotateZ(0deg);
    transform: rotateY(0deg) rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateY(90deg) rotateZ(0deg);
    transform: rotateY(90deg) rotateZ(0deg);
  }
  40% {
    -webkit-transform: rotateX(45deg) rotateZ(45deg);
    transform: rotateX(45deg) rotateZ(45deg);
  }
  60% {
    -webkit-transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
    transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
  }
  80% {
    -webkit-transform: rotateX(310deg) rotateZ(230deg);
    transform: rotateX(310deg) rotateZ(230deg);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateZ(360deg);
    transform: rotateX(360deg) rotateZ(360deg);
  }
}
.k-grid-toolbar {
  background-color: #081C80;
}
.customer-photo {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: 32px 35px;
  background-position: center center;
  vertical-align: middle;
  line-height: 32px;
  box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0, 0, 0, 0.2);
  margin-left: 5px;
}
.customer-name {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  padding-left: 3px;
}
.row-controls-right {
  display: flex;
  justify-content: flex-end;
}
.k-grouping-header .k-group-indicator,
.k-pivot-toolbar .k-button {
  background-color: #DCDCDC;
  border-color: #DCDCDC;
  box-shadow: none;
}
.k-grouping-header .k-link,
.k-grouping-header .k-link:link {
  color: #444 !important;
}
.k-icon k-i-sarrow-n {
  color: #444 !important;
}
.mdl-layout[cc-style="bootstrap"] .k-autocomplete.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-picker-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-numeric-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default,
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default.k-state-focused.k-state-active.k-state-border-down,
.mdl-layout[cc-style="bootstrap"] .k-button.k-button-icon,
.mdl-layout[cc-style="bootstrap"] .k-multiselect {
  border: none !important;
}
.k-grouping-header {
  background-color: #081C80;
}
.mdl-navigation__link {
  opacity: 1;
}
.nav.mdl-navigation {
  padding-left: 16px;
  /*font-size: 1.3em;*/
  font-weight: 700;
  text-transform: uppercase;
}
a,
li {
  text-decoration: none;
}
.nav > li > a {
  padding: 0;
  color: white;
  /*font-weight:500;*/
}
.nav {
  height: 100%;
}
.nav > li {
  display: inline-block;
  padding: 1em 12px;
  cursor: pointer;
  height: 100%;
  font-size: 13px;
  color: #081C80;
  padding-top: 18px;
  font-weight: 400;
}
.drop {
  position: relative;
  color: #081C80;
  /*padding-top: 20px !important;*/
  text-transform: none;
  /*font-weight:500;*/
  transition: all 0.2s ease;
}
.drop > i {
  transition: all 0.2s ease;
}
.drop .cc-menu-link {
  flex-direction: row;
  padding: 0 12px;
  color: #081C80;
  font-size: 12px;
  /*text-transform: uppercase;*/
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 35px;
}
.drop .cc-menu-link i {
  padding: 0;
}
.drop:hover {
  /*color: background-color: lighten(@cc-brand-primary, 8%);*/
}
.drop:hover > i:last-of-type {
  transform: rotate(180deg);
}
.drop a {
  color: white;
}
.drop ul {
  position: absolute;
  padding-left: 0;
  left: 0;
  top: 4.2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  color: #081C80;
  background-color: white;
  border-radius: 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.drop ul li {
  display: block;
  width: 100%;
}
.drop ul li a {
  width: 100%;
  padding: 5px;
  display: inline-block;
  white-space: pre;
  box-sizing: border-box;
  color: #081C80;
}
.drop ul li a:hover {
  background-color: #0a24a6;
}
.drop:hover ul {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.drop .cc-menu-link:hover {
  /*lighten(@brand-primary, 5%);*/
  background-color: #0a24a6;
}
.mdl-layout__header .mdl-layout-title {
  max-height: 100%;
  height: 100%;
}
.mdl-layout__header .mdl-layout-title .brandImg {
  height: 100%;
  width: auto;
  padding: 16px 0;
}
.mdl-layout__header .mdl-layout__drawer-button {
  margin: 8px 18px;
  width: auto;
}
.mdl-navigation .mdl-menu__item i {
  margin-right: 8px;
}
.cc-navigation-right {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
.cc-navigation-right .cc-menu-text {
  color: #000000;
  padding: 12px 24px;
  padding-right: 48px;
  font-size: 1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  /*text-align:center;*/
}
.cc-navigation-right .cc-menu-text i {
  font-size: 0.9em;
}
.cc-navigation-right a {
  color: #000000;
}
.cc-navigation-right a:hover {
  color: #000000;
}
.cc-navigation-right .mdl-menu__item {
  padding: 0 64px 0 24px;
}
.cc-navigation-right .mdl-menu__outline {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.cc-navigation-right .cc-topmenu-button {
  justify-content: center;
}
#cc-headerbar-left .mdl-button,
#cc-headerbar-center .mdl-button {
  color: white;
  min-width: 20px;
  font-size: 20px;
  padding: 0 10px;
}
#cc-headerbar-left .mdl-button:hover,
#cc-headerbar-center .mdl-button:hover {
  background-color: rgba(255, 255, 255, 0.17);
}
.mdl-layout__drawer .mdl-layout-title {
  height: initial;
  padding-left: 0;
}
.mdl-layout__drawer .mdl-layout-title .brandImg {
  width: 100%;
  height: auto;
  padding: 12px 12px;
}
.mdl-collapse.mdl-collapse--opened {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-top: -1px;
}
.mdl-collapse.mdl-collapse--opened + .mdl-collapse.mdl-collapse--opened {
  border-top: none;
  margin-top: 0;
}
.mdl-collapse .mdl-collapse__content-wrapper {
  overflow: hidden;
}
.mdl-collapse .mdl-collapse__content {
  transition-property: margin-top;
  transition-duration: 0.2s;
}
.mdl-collapse .mdl-collapse__icon {
  transition-property: transform;
  transition-duration: 0.2s;
  color: rgba(0, 0, 0, 0.3);
  /* MDL should provide some facility for positioning icons inside list items so I don't have to do this */
  position: absolute;
  right: 6px;
  margin-top: -3px;
}
.mdl-collapse.mdl-collapse--opened .mdl-collapse__icon {
  transform: rotate(-180deg);
}
.mdl-collapse.mdl-collapse--opened .mdl-collapse__button {
  color: #081C80;
}
.mdl-collapse.mdl-collapse--opened .mdl-collapse__content {
  margin-top: 0 !important;
}
#cc-scrollToTop,
#cc-saveButton,
#cc-scrollToBottom {
  display: none;
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 99;
}
#cc-scrollToLeft,
#cc-saveButton,
#cc-scrollToRight {
  display: none;
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 99;
}
#cc-saveButton {
  right: 55px;
}
#cc-scrollToTop {
  bottom: 55px;
}
.searchContainer {
  display: flex;
  align-items: center;
  color: #081C80;
  position: relative;
}
.searchContainer .searchContainer-searchentry {
  display: none;
}
.searchContainer .searchContainer-searchentry.searchContainer-searchentry__activ {
  display: block;
}
.searchContainer .searchContainer-searchentry-icon {
  color: #ebebeb;
  position: absolute;
  z-index: 10;
  font-size: 22px;
  cursor: pointer;
  border-right: 1px solid #081C80;
  padding-right: 5px;
  top: 7px;
}
.searchContainer .searchContainer-searchentry-icon.searchContainer-searchentry-icon__active {
  color: #081C80;
  cursor: default;
}
.searchContainer .select2-container--default .select2-selection--single,
.searchContainer .select2-container--default .select2-selection--multiple {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 2px;
  border: 1px solid #ddd;
}
.searchContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 76px;
}
.select2-container--default .select2-selection--single {
  height: 35px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-radius: 3px;
  border: 1px solid #ccc;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px;
  font-size: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
  height: 35px;
}
.select2-results__option {
  padding: 4px 6px;
}
.select2-rendered__match {
  color: #081C80;
  font-weight: bold;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(0, 0, 0, 0.25);
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  cursor: not-allowed;
}
.cc-navigation-right .mdl-menu__container.is-visible {
  margin-top: 10px;
}
.cc-navigation-right .mdl-menu__outline::after {
  bottom: 100%;
  right: 17px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 15px;
  margin-left: -15px;
}
.cc-navigation-right .mdl-menu__outline::before {
  bottom: 100%;
  right: 16px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #d6dae0;
  border-width: 16px;
  margin-left: -16px;
}
.cc-navigation-right .mdl-menu__outline {
  position: relative;
  overflow: visible;
}
.cc-navigation-right .cc-menu-text {
  color: #28518c;
  padding: 12px 12px;
  font-size: 1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.cc-navigation-right .mdl-menu__item {
  padding: 0 16px 0 12px;
  height: 40px;
  line-height: 40px;
}
.logoutbutton {
  width: calc(100% - 48px);
  margin: 16px 24px;
}
.mdl-badge.message {
  position: absolute;
  top: 15px;
  right: -5px;
}
.mdl-badge.message[data-badge]:after {
  background: #18af17;
}
.sidebar-right {
  height: calc(100vh - 60px);
  position: absolute;
  top: 59px;
  border-left: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  pointer-events: auto;
  -webkit-box-shadow: -30px 0px 30px -30px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 1010;
  transition: all ease-in 0.2s;
  display: flex;
  left: 100vw;
  width: 340px;
}
.sidebar-right.show {
  left: calc(100vw - 340px);
}
.sidebar-right .sidebar-right-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.sidebar-right .sidebar-right-content .sidebar-right__close {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 22px;
}
.sidebar-right .user-container {
  flex: 1 1 auto;
}
.sidebar-right .user-container .userlist {
  overflow: hidden;
  list-style-type: none;
  flex: 1 1 auto;
  overflow-y: auto;
}
.sidebar-right .user-container .userlist .useritem {
  list-style: none;
  cursor: pointer;
}
.sidebar-right .user-container .userlist .useritem .activeUser {
  color: #081C80;
  font-weight: 500;
}
.sidebar-right .user-container .userlist .useritem .col-2 {
  display: flex;
  justify-content: center;
}
.sidebar-right .user-container .userlist .useritem .col-10 {
  display: flex;
  align-items: center;
}
.sidebar-right .user-container .userlist .useritem label {
  margin: 0;
}
.sidebar-right .user-container .userlist .useritem:hover {
  background-color: #f5f5f5;
}
.sidebar-right .user-container .userlist .useritem img {
  width: 34px;
  height: 34px;
  padding: 2px;
}
.sidebar-right h4,
.sidebar-right h5 {
  padding: 10px 0 0;
  margin: 0;
  color: #b0b0b0;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}
.sidebar-right .sendMsgBox {
  height: 150px;
  display: flex;
  flex-direction: column;
}
.sidebar-right .sendMsgBox h5 {
  padding: 0;
}
.sidebar-right .sendMsgBox .sendMsgBox_Message {
  flex: 1 1 auto;
  margin-bottom: 12px;
}
.sidebar-right-Favorites {
  height: calc(100vh - 60px);
  position: absolute;
  top: 59px;
  border-left: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  pointer-events: auto;
  -webkit-box-shadow: -30px 0px 30px -30px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 1010;
  transition: all ease-in 0.2s;
  display: flex;
  left: 100vw;
  width: 340px;
}
.sidebar-right-Favorites.show {
  left: calc(100vw - 340px);
}
.sidebar-right-Favorites .sidebar-right-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.sidebar-right-Favorites .sidebar-right-content .sidebar-right__close {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 22px;
}
.sidebar-right-Favorites .user-container {
  flex: 1 1 auto;
}
.sidebar-right-Favorites .user-container .userlist {
  overflow: hidden;
  list-style-type: none;
  flex: 1 1 auto;
  overflow-y: auto;
}
.sidebar-right-Favorites .user-container .userlist .useritem {
  list-style: none;
  cursor: pointer;
}
.sidebar-right-Favorites .user-container .userlist .useritem .activeUser {
  color: #081C80;
  font-weight: 500;
}
.sidebar-right-Favorites .user-container .userlist .useritem .col-2 {
  display: flex;
  justify-content: center;
}
.sidebar-right-Favorites .user-container .userlist .useritem .col-10 {
  display: flex;
  align-items: center;
}
.sidebar-right-Favorites .user-container .userlist .useritem label {
  margin: 0;
}
.sidebar-right-Favorites .user-container .userlist .useritem:hover {
  background-color: #f5f5f5;
}
.sidebar-right-Favorites .user-container .userlist .useritem img {
  width: 34px;
  height: 34px;
  padding: 2px;
}
.sidebar-right-Favorites h4,
.sidebar-right-Favorites h5 {
  padding: 10px 0 0;
  margin: 0;
  color: #b0b0b0;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}
.sidebar-right-Favorites .sendMsgBox {
  height: 150px;
  display: flex;
  flex-direction: column;
}
.sidebar-right-Favorites .sendMsgBox h5 {
  padding: 0;
}
.sidebar-right-Favorites .sendMsgBox .sendMsgBox_Message {
  flex: 1 1 auto;
  margin-bottom: 12px;
}