﻿/*

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;*/
/** trick um alle elemente sichtbar zu machen und so overlfow probleme zu erkennen
     {
    outline: 1px solid red;
}*/
#testStyle .mdl-tabs__tab.is-active {
  background-color: #ffffff;
}
#testStyle .mdl-tabs__panel {
  padding-top: 8px;
}
#testStyle div.row {
  display: flex;
  flex-wrap: wrap;
}
#testStyle div.row .questionMe,
#testStyle div.row .questionMeOnly {
  width: 100%;
  margin-top: 20px;
  background-color: #f5f5f5;
}
#testStyle div.row .questionMe:hover,
#testStyle div.row .questionMeOnly:hover {
  background-color: #ebebeb;
}
#testStyle div.row .questionMeOnly {
  margin-top: 0;
}
#testStyle div.row div[class*=' col-'] {
  padding-top: 4px;
}
#testStyle .panel {
  border: 1px solid #ddd;
  box-shadow: none;
}
#testStyle .panel.panel-primary {
  /*border-color: @cc-brand-primary;*/
}
#testStyle .select2-container--default .select2-selection--multiple {
  border: 1px solid #ccc;
}
#testStyle .k-widget .k-upload.k-header {
  border: 1px solid #ccc;
}
.mdl-layout__content .mdl-button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);*/
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
  padding: 0 10px;
  line-height: 28px;
  font-size: 16px;
  height: 34px;
  font-weight: normal;
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
  transition: none;
}
.mdl-layout__content .mdl-button.large {
  font-size: 15px;
  height: 40px;
}
.mdl-layout__content .mdl-button i {
  margin-right: 8px;
}
.mdl-layout__content .mdl-button--accent.mdl-button--accent {
  color: #fff;
  /*box-shadow: inset 0 2px 0 @cc-brand-primary;*/
  background-color: #AB377A;
  border-color: #AB377A #AB377A #AB377A;
  background-image: none;
  box-shadow: none;
}
.mdl-layout__content .mdl-button--accent.mdl-button--accent:hover {
  /*box-shadow: inset 0 -1px 0 darken(@cc-brand-primary, 20%);*/
  background-color: #644F54;
  border-color: #644F54;
  border-bottom-color: #644F54;
}
.mdl-layout__content .mdl-button {
  color: #404040;
  border-color: #dedede;
  background-color: #fff;
}
.mdl-layout__content .mdl-button:hover {
  /*box-shadow: 0 1px 0 rgba(0,0,0,.1);*/
  background-color: #AB377A;
  border-color: #AB377A;
  color: white;
}
.mdl-layout__content .cc-page-header h4 {
  font-weight: 300;
  line-height: 25px;
  font-size: 18px;
}
.mdl-layout__content .cc-page-header .mdl-button {
  /*border-radius: 15px;*/
  font-size: 13px;
  height: 30px;
  /*width: 30px;*/
  min-width: 52px;
}
.mdl-layout__content .cc-page-header .mdl-button i {
  margin-right: 0;
}
.mdl-layout__header {
  color: #737373;
  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff;
  box-shadow: none;
  height: 60px;
  min-height: 60px;
}
.mdl-layout__header .mdl-layout__header-row {
  height: 60px;
}
.mdl-layout__header .mdl-layout__header-row .mdl-navigation {
  max-height: 59px;
}
.mdl-layout__header .mdl-layout__header-row .mdl-navigation .mdl-collapse.mdl-collapse--opened {
  background-color: #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.mdl-layout__header .mdl-layout__header-row .mdl-navigation .mdl-button {
  min-height: 38px;
  /*line-height: 60px;*/
}
.mdl-layout__header .mdl-layout__header-row .mdl-navigation .mdl-navigation__link:hover {
  background-color: #f0f0f0;
  color: #757575;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
  background-color: #f0f0f0;
  color: #757575;
}
/*.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover*/
.mdl-collapse .mdl-collapse__content-wrapper .mdl-navigation__link:hover {
  background-color: #e7e7e7 !important;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link.is-active {
  color: #AB377A;
  font-weight: 500;
}
.mdl-collapse.mdl-collapse--opened .mdl-collapse__button {
  color: #757575;
  background-color: #eeeeee;
}
.mdl-layout__drawer {
  box-shadow: none;
  background-color: #f5f5f5;
  border-right: none;
}
.mdl-layout__drawer .mdl-layout-title {
  background-color: white;
  height: 60px;
  border-bottom: 1px solid #e6e6e6;
  line-height: inherit;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.mdl-layout__drawer .divider {
  padding: 10px 20px 0;
  color: #b0b0b0;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}
#page-wrapper {
  color: #737373;
  background-color: #EEEEEE;
  border-left: 1px solid #e3e3e3;
}
.img_Logo_Nav {
  height: 80%;
  width: auto;
}
.mdl-collapse .mdl-collapse__content-wrapper {
  background-color: #eeeeee;
}
.mdl-collapse .mdl-collapse__content-wrapper .mdl-navigation__link {
  background-color: #eeeeee !important;
}
.mdl-collapse.mdl-collapse--opened .mdl-collapse__content {
  border-top: 1px solid #e0e0e0;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  color: #646464;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link.is-active,
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  border-left: none;
  background-color: #f5f5f5;
  flex: 0 0 auto;
}
.mdl-layout__header-row,
.mdl-layout__header .mdl-layout__header-row {
  height: 59px;
}
.cc-page-header,
.page-header,
h3 {
  border-bottom: none;
  /*display: block;
    margin-bottom: 5px;
    margin-top: 6px;
    font-weight: 300;
    letter-spacing: -1px;
    font-size: 28px;
    color: #6b6b6b;
    line-height: 36px;*/
}
.cc-page-header h3,
.page-header h3,
h3 h3 {
  display: block;
  margin-bottom: 5px;
  margin-top: 6px;
  font-weight: 300;
  letter-spacing: -1px;
  font-size: 28px;
  color: #6b6b6b;
  line-height: 36px;
}
.cc-page-header .subtitle,
.page-header .subtitle,
h3 .subtitle {
  color: #8a8a8a;
  line-height: 16px;
  background-color: transparent;
  padding: 3px 0;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 7px;
}
.k-grid {
  box-shadow: none;
}
.mdl-navigation__link {
  font-size: 13px;
}
.panel {
  background-color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
  border-width: 0;
  border-radius: 3px;
  border-top: 3px solid #AB377A;
}
.panel .panel-body {
  border-top: none;
  padding-bottom: 30px;
}
.panel .row-controls {
  padding-top: 25px;
}
.panel .row-controls-right {
  padding-top: 25px;
}
.panel .row-controls-right div[class^='col-'] {
  display: flex;
  justify-content: flex-end;
}
.panel.panel-primary {
  border-color: #AB377A;
}
.mdl-layout[cc-style="bootstrap"] .form-group label,
.cc-label-date,
.cc-label-combobox {
  font-size: 13px;
  margin-bottom: 8px;
  color: #6b6b6b;
  line-height: 1.42857143;
}
.mdl-layout[cc-style="bootstrap"] .form-group input {
  line-height: 1.42857143;
  color: #404040;
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d5d8de;
  border-radius: 2px;
  border-width: 1px;
  border-top-color: #bdc0c7;
  box-shadow: none;
  padding: 12px 12px 8px 12px;
  font-size: 15px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  margin-bottom: 20px;
}
.mdl-layout[cc-style="bootstrap"] .form-group input:focus {
  border-color: #AB377A;
  outline: 0;
  box-shadow: none;
}
.mdl-layout[cc-style="bootstrap"] .form-group.is-invalid input {
  background-color: transparent;
  border-color: #eb6357;
}
.select2-container--default .select2-selection--single {
  line-height: 1.42857143;
  color: #404040;
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d5d8de;
  border-radius: 2px;
  border-width: 1px;
  border-top-color: #bdc0c7;
  box-shadow: none;
  padding: 10px 12px;
  font-size: 15px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  line-height: 30px;
  font-size: 15px;
}
.select2-container--default .select2-selection--multiple {
  border-radius: 2px;
  border: 1px solid #d5d8de;
  border-top-color: #bdc0c7;
  box-shadow: none;
}
.panel.panel-primary > .panel-heading {
  padding: 20px 20px 10px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  font-size: 18px;
  font-weight: 300;
  margin: 0 20px;
  border-bottom-width: 0;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #d9d9d9;
  margin: 0 20px 8px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 16px;
  color: #333;
  background-color: transparent;
  border-color: #ddd;
}
.k-grid tr td,
.k-pivot-layout .k-grid tr td {
  height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.k-grid .k-alt {
  background-color: #f5f5f5;
}
.k-grid-header th.k-header {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
  background-color: white;
  height: 30px;
  line-height: 25px;
}
.k-grid-header th.k-header > .k-link {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42857143;
  color: #404040;
}
.k-widget.k-grid td .k-button.gridButtonOnlyIcon {
  color: #646464;
}
.k-pager-wrap,
.k-editor-toolbar {
  padding-top: 20px;
  padding-bottom: 15px;
}
.k-grouping-header {
  display: none;
}
.k-grid tbody td:first-child {
  border-right: none;
}
.mdl-tabs__tab-bar {
  background-color: #ffffff;
  border: none;
}
.mdl-tabs__tab-bar .mdl-tabs__tab {
  font-size: 1.1em;
}
.mdl-collapse .mdl-collapse__icon {
  margin-right: 10px;
  font-size: 20px;
  margin-top: 0;
  color: #c5c5c5;
}
.cc-navigation-right a {
  color: #696969;
}
.mdl-menu__item {
  font-size: 13px;
}
.mdl-navigation .mdl-collapse .mdl-collapse__content-wrapper .cc-menu-link {
  font-size: 13px;
}
.form-group.is-invalid .cc-text-error {
  margin-top: -10px;
  margin-bottom: 10px;
  padding: 15px 20px;
  position: relative;
  background-color: #eb6357;
  color: #fff !important;
}
.form-group.is-invalid .cc-text-error::after {
  position: absolute;
  top: -6px;
  left: 20px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  -moz-transform: scale(0.9999);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #eb6357;
}
#toast-container > div {
  border-radius: 0;
}
.mdl-checkbox__box-outline {
  border: 1px solid rgba(158, 158, 158, 0.54);
}
.mdl-layout[cc-style="bootstrap"] .mdl-checkbox__label {
  font-size: 15px;
  color: #404040;
}
.mdl-layout[cc-style="bootstrap"] .mdl-checkbox,
.mdl-layout[cc-style="bootstrap"] .mdl-switch {
  margin: 0;
}
.mdl-layout[cc-style="bootstrap"] .cc-combobox input,
.mdl-layout[cc-style="bootstrap"] cc-datepicker input {
  font-size: 15px;
  padding: 7px 0px 7px 0px;
}
.mdl-layout[cc-style="bootstrap"] .cc-combobox {
  margin-bottom: 20px;
}
.k-picker-wrap .k-icon {
  margin-top: 16px;
}
.k-widget.k-datepicker,
k-widget.k-datetimepicker {
  border-top-color: #bdc0c7;
}
.mdl-layout[cc-style="bootstrap"] .k-dropdown-wrap.k-state-default {
  background-color: white;
}
.mdl-layout__drawer .mdl-layout-title {
  padding: 10px 20px;
}
#cc-scrollToTop,
#cc-scrollToBottom {
  border-radius: 50%;
}
#cc-scrollToTop i,
#cc-scrollToBottom i {
  margin: 0;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
}
.k-button.k-upload-button {
  width: 100%;
  height: 34px;
  padding-top: 9px;
  font-size: 11px;
  color: #404040;
  border-color: #dedede;
  background-color: #fff;
  box-shadow: none;
}
.k-button.k-upload-button:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-color: #bdbdbd;
}
.mdl-layout__drawer .mdl-navigation {
  padding-top: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding-bottom: 40px;
}
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  flex: unset;
}
.searchContainer .searchContainer-searchentry-icon {
  top: 15px;
}
.k-datetimepicker .k-picker-wrap .k-icon {
  margin-top: 16px;
}
.searchContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 105px;
}
.modal-content {
  border: none;
  border-radius: 0;
}
.fade.show {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.statistics-link {
  width: 100%;
  height: auto;
  padding: 8px 14px;
  font-size: 16px;
  color: #505050;
  cursor: pointer;
}
.statistics-link:hover {
  color: #5EA290;
}
.dashboard-container {
  margin-bottom: 22px;
  font-family: 'Source Sans Pro', serif;
}
.dashboard-container--content {
  background-color: white;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
}
.dashboard-container--title {
  font-size: 22px;
  font-family: 'Source Sans Pro', serif;
  padding-bottom: 12px;
  white-space: nowrap;
}
.dashboard-container--subtitle {
  font-size: 18px;
  font-family: 'Source Sans Pro', serif;
  font-weight: 300;
  padding-left: 8px;
  line-height: 20px;
  padding-bottom: 6px;
}
/*.innerContent {
    display: flex;
    flex-wrap: wrap;
}*/
#dashboard-left {
  width: 85%;
}
#dashboard-right {
  width: 15%;
  padding: 0 0 0 18px;
}
#mapid {
  height: 550px;
}
#map2 {
  height: 350px;
}
.popupImage {
  min-width: 100px;
  max-width: 100px;
  width: 100px;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mdl-layout__drawer-button {
  display: none !important;
}
.second_headerrow {
  width: 100%;
  height: 60px;
  background-color: #5EA290;
  color: white;
  display: flex;
  align-items: center;
}
.mdl-layout__header {
  height: 120px;
}
.mdl-layout__header .mdl-layout__drawer-button {
  color: #505050;
}
.mdl-layout__header-row .cc-topmenu-button,
.mdl-layout__header-row .cc-menu-link {
  color: #505050;
}
.mdl-layout__header .mdl-layout__drawer-button {
  top: initial;
  left: initial;
  right: 0;
  bottom: initial;
}
.mdl-layout[cc-menu="top"] .mdl-layout__header-row {
  padding-right: 14px;
  padding-left: 20px;
}
.mdl-navigation .mdl-button {
  color: white;
  font-size: 18px;
  font-family: 'Source Sans Pro', serif;
  height: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sidebar-icon {
  margin-right: 6px;
}
.mdl-navigation .drop {
  color: white;
  font-size: 18px;
  font-family: 'Source Sans Pro', serif;
}
.mdl-navigation .drop ul {
  background-color: #5EA290;
}
.drop .cc-menu-link {
  font-size: 14px !important;
}
.searchContainer .select2-container--default .select2-selection--single,
.searchContainer .select2-container--default .select2-selection--multiple {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #505050;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.mdl-badge.message[data-badge]:after {
  background-color: #AB377A;
}
.mdl-badge.message {
  top: 17px;
  right: -9px;
}
.mdl-navigation {
  height: 100%;
}
.cc-topmenu-button {
  height: 100%;
}
.nav.mdl-navigation {
  padding-left: 0;
  /*display: flex;
        align-items: center;*/
}
.drop .cc-menu-link:hover {
  background-color: rgba(171, 55, 122, 0.2);
}
.mdl-button:hover {
  /*background-color: initial;
        border-bottom:  1px solid white;*/
}
.modal-dialog {
  /*margin: 80px auto !important;*/
  margin: inherit;
}
.modal {
  background-color: rgba(109, 109, 109, 0.31);
}
.codecan_credits {
  display: none;
}