/* imports */
/* colors */
/* typography */
/* font sizes desktop */
/* font sizes mobile */
/* z-index */
/* resets */
*,
*:focus {
  outline: none !important;
}
input,
textarea {
  -webkit-appearance: none;
}
button {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
/* html, body */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* grid */
.container {
  width: 100%;
  padding: 0;
}
/* typography */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #ffffff;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
}
h2 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
}
h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
h4 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
h5 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
strong {
  font-weight: 700;
}
p {
  margin: 0;
}
a {
  color: #0ed346;
  text-decoration: none;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
a:hover,
a:focus,
a:active {
  color: #21ef5c;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
* {
  word-wrap: break-word;
}
/* content styles */
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area p {
  margin-bottom: 30px;
}
.content-area h1:last-child,
.content-area h2:last-child,
.content-area h3:last-child,
.content-area h4:last-child,
.content-area h5:last-child,
.content-area p:last-child {
  margin-bottom: 0;
}
.content-area ul:not([id]):not([class]) {
  list-style-type: none;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  text-align: left;
  overflow: hidden;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.content-area ul:not([id]):not([class]):last-child {
  margin-bottom: 0;
}
.content-area ul:not([id]):not([class]) li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 5px;
}
.content-area ul:not([id]):not([class]) li:last-child {
  margin-bottom: 0;
}
.content-area ul:not([id]):not([class]) li::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.35em;
  left: 0;
  background-color: #ffffff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.content-area ul:not([id]):not([class]) li > ul {
  margin-left: 30px;
  margin-top: 10px;
}
.content-area ol:not([id]):not([class]) {
  margin: 0;
  margin-bottom: 30px;
  counter-reset: item;
  overflow: hidden;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.content-area ol:not([id]):not([class]):last-child {
  margin-bottom: 0;
}
.content-area ol:not([id]):not([class]) li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 5px;
}
.content-area ol:not([id]):not([class]) li:last-child {
  margin-bottom: 0;
}
.content-area ol:not([id]):not([class]) li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 600;
}
.content-area ol:not([id]):not([class]) li > ol {
  margin-left: 30px;
  margin-top: 10px;
}
/* forms */
.form-group {
  margin-bottom: 30px;
}
.form-group:last-child {
  margin-bottom: 0;
}
label {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #d5f4e6;
  margin-bottom: 10px;
  display: block;
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 17px;
  color: #272a39;
  padding: 12px;
  border: 1px solid #cedce0;
  background-color: #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
input[type="text"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
textarea:hover,
input[type="text"]:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="email"]:active,
input[type="search"]:active,
textarea:active,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #d5f4e6;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
input[type="text"].parsley-error,
input[type="number"].parsley-error,
input[type="password"].parsley-error,
input[type="email"].parsley-error,
input[type="search"].parsley-error,
textarea.parsley-error {
  border: 1px solid #cc0000 !important;
}
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="search"]:disabled,
textarea:disabled {
  pointer-events: none;
  opacity: 0.7;
}
textarea {
  resize: none;
  min-height: 80px;
}
.form-error {
  color: #cc0000;
  margin-bottom: 30px;
}
.error-wrapper .parsley-custom-error-message {
  color: #cc0000;
  margin-top: 10px;
}
/* checkbox */
.checkbox {
  margin: 0;
  margin-bottom: 5px;
  padding-top: 0 !important;
  position: relative;
  cursor: default;
}
.checkbox:last-child {
  margin-bottom: 0;
}
.checkbox label {
  display: inline-block;
  font-weight: 400;
  color: #ffffff;
  padding: 0;
  margin: 0;
  text-transform: none;
  cursor: pointer;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span.icon {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
input[type=checkbox] + span.icon::before {
  font-family: 'Material Design Icons';
  content: '\F131';
  font-size: 1.5em;
  color: #ffffff;
}
input[type=checkbox] + span.icon::before {
  margin-right: 5px;
}
input[type=checkbox]:checked + span.icon::before {
  content: '\F132';
}
input[type=checkbox]:disabled + span.icon {
  opacity: 0.5;
}
/* datetimepicker */
.datetimepicker-input {
  position: relative;
}
.datetimepicker-input input {
  padding-right: 40px;
}
.datetimepicker-input.date::after {
  content: '\F0ED';
}
.datetimepicker-input.time::after {
  content: '\F150';
}
.datetimepicker-input::after {
  font-family: 'Material Design Icons';
  font-size: 18px;
  line-height: 41px;
  height: 41px;
  width: 40px;
  text-align: center;
  color: #272a39;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #f0f0f0;
  pointer-events: none;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}
.bootstrap-datetimepicker-widget {
  color: #272a39;
  border: 1px solid #cedce0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th,
.bootstrap-datetimepicker-widget table td span {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 0;
  display: block;
}
.bootstrap-datetimepicker-widget a[data-action] span {
  margin: 0;
}
.bootstrap-datetimepicker-widget .btn-primary {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #21ef5c;
  color: #ffffff;
  -webkit-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #ffffff;
}
.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #21ef5c;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #21ef5c;
}
.bootstrap-datetimepicker-widget .timepicker a.btn {
  color: #272a39;
}
.bootstrap-datetimepicker-widget .glyphicon-chevron-left::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F141';
}
.bootstrap-datetimepicker-widget .glyphicon-chevron-right::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F142';
}
.bootstrap-datetimepicker-widget .glyphicon-chevron-up::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F143';
}
.bootstrap-datetimepicker-widget .glyphicon-chevron-down::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F140';
}
.bootstrap-datetimepicker-widget .glyphicon-time::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F150';
}
.bootstrap-datetimepicker-widget .glyphicon-calendar::before {
  font-family: 'Material Design Icons';
  font-size: 20px;
  content: '\F0ED';
}
/* buttons */
.button {
  display: inline-block;
  text-align: center;
  min-width: 200px;
  -webkit-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button.primary {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  padding: 13px 20px;
  opacity: 0.9;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #0ed346;
  background-image: -webkit-linear-gradient(bottom, #0ed346, #21ef5c);
  background-image: -moz-linear-gradient(bottom, #0ed346, #21ef5c);
  background-image: -o-linear-gradient(bottom, #0ed346, #21ef5c);
  background-image: -ms-linear-gradient(bottom, #0ed346, #21ef5c);
  background-image: linear-gradient(bottom, #0ed346, #21ef5c);
}
.button.primary.red {
  background-color: #cc0000;
  background-image: -webkit-linear-gradient(bottom, #cc0000, #f2333e);
  background-image: -moz-linear-gradient(bottom, #cc0000, #f2333e);
  background-image: -o-linear-gradient(bottom, #cc0000, #f2333e);
  background-image: -ms-linear-gradient(bottom, #cc0000, #f2333e);
  background-image: linear-gradient(bottom, #cc0000, #f2333e);
}
.button.primary:hover {
  opacity: 1;
}
.button.secondary {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  color: #b7b7b7;
  padding: 12px 19px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.button.secondary:hover {
  border: 1px solid #979797;
  color: #979797;
}
.button span {
  display: inline-block;
  vertical-align: middle;
}
.button span.mdi {
  font-size: 1.5em;
}
.button span.mdi:first-child {
  margin-right: 7px;
  margin-left: 0 !important;
}
.button span.mdi:last-child {
  margin-right: 0 !important;
  margin-left: 7px;
}
/* modal */
.modal-dialog {
  width: 580px;
}
.modal-dialog .container {
  width: 100%;
  padding: 0;
}
.modal-dialog .modal-content {
  color: #272a39;
  background-color: #ffffff;
  padding: 40px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.modal-dialog .modal-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.modal-dialog .modal-title-wrapper h2 {
  color: #272a39;
}
/* login */
section.login {
  display: table;
  width: 100%;
  height: 100%;
}
section.login .section-inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
section.login .section-box {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: left;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
section.login .section-box .headline-wrapper {
  margin-bottom: 30px;
}
section.login .section-box .headline-wrapper h1 {
  color: #d5f4e6;
}
section.login .section-box label {
  overflow: hidden;
}
section.login .section-box label .left {
  float: left;
}
section.login .section-box label .right {
  float: right;
}
section.login .section-box .remember-login {
  margin-top: 13px;
}
section.login .section-box .switch-language a {
  text-transform: uppercase;
}
section.login .section-box .button-wrapper {
  text-align: right;
}
section.login .logo {
  width: 150px;
  height: auto;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -75px;
}
/* calendar */
section.calendar {
  height: 100%;
  position: relative;
  /* week day slider */
  /* calendar slider */
  /* add entry button */
}
section.calendar nav {
  width: 100%;
  height: 60px;
  padding: 0 220px;
  background-color: rgba(39, 42, 57, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  overflow: hidden;
}
section.calendar nav .title {
  font-size: 15px;
  line-height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  padding-left: 30px;
}
section.calendar nav ul.rooms {
  font-size: 0;
  line-height: 0;
}
section.calendar nav ul.rooms.mobile {
  display: none;
}
section.calendar nav ul.rooms.mobile li.dropdown.open .toggle-icon .open {
  display: block;
}
section.calendar nav ul.rooms.mobile li.dropdown.open .toggle-icon .closed {
  display: none;
}
section.calendar nav ul.rooms.mobile li.dropdown .toggle {
  position: relative;
  padding-right: 30px;
}
section.calendar nav ul.rooms.mobile li.dropdown .toggle-icon {
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -12px;
}
section.calendar nav ul.rooms.mobile li.dropdown .toggle-icon .open {
  display: none;
}
section.calendar nav ul.rooms.mobile li.dropdown .toggle-icon .closed {
  display: block;
}
section.calendar nav ul.rooms.mobile li a::after {
  display: none;
}
section.calendar nav ul.rooms.mobile li .dropdown-menu {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: rgba(39, 42, 57, 0.9);
  left: -30px;
  padding-left: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
section.calendar nav ul.rooms.mobile li .dropdown-menu li {
  display: block;
  margin: 0;
}
section.calendar nav ul.rooms.mobile li .dropdown-menu li a {
  width: 100%;
  padding: 15px 0;
  line-height: 18px;
  background-color: transparent !important;
}
section.calendar nav ul.rooms li {
  display: inline-block;
  margin: 0 15px;
}
section.calendar nav ul.rooms li a {
  font-size: 15px;
  line-height: 60px;
  color: #d5f4e6;
  display: block;
  position: relative;
}
section.calendar nav ul.rooms li a::after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: #21ef5c;
  -webkit-transition: bottom 0.3s ease 0s;
  -moz-transition: bottom 0.3s ease 0s;
  -o-transition: bottom 0.3s ease 0s;
  -ms-transition: bottom 0.3s ease 0s;
  transition: bottom 0.3s ease 0s;
}
section.calendar nav ul.rooms li a.active,
section.calendar nav ul.rooms li a:hover {
  color: #21ef5c;
}
section.calendar nav ul.rooms li a.active::after,
section.calendar nav ul.rooms li a:hover::after {
  bottom: 0;
}
section.calendar nav ul.system {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  font-size: 0;
  line-height: 0;
  padding-right: 30px;
}
section.calendar nav ul.system li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
section.calendar nav ul.system li.language-switch a {
  font-size: 15px;
  text-transform: uppercase;
}
section.calendar nav ul.system li a {
  font-size: 24px;
  line-height: 60px;
  color: #d5f4e6;
  display: block;
}
section.calendar nav ul.system li a.active,
section.calendar nav ul.system li a:hover {
  color: #21ef5c;
}
section.calendar .control-wrapper {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 60px;
  left: 0;
  padding-top: 30px;
  text-align: center;
}
section.calendar .control-wrapper .controls {
  display: inline-block;
}
section.calendar .control-wrapper .controls button,
section.calendar .control-wrapper .controls .current-date {
  display: inline-block;
  vertical-align: top;
  border: 1px solid rgba(213, 244, 230, 0.25);
  height: 30px;
  line-height: 30px;
  color: #d5f4e6;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
section.calendar .control-wrapper .controls button {
  width: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
section.calendar .control-wrapper .controls button:hover {
  border: 1px solid rgba(33, 239, 92, 0.5);
  color: #21ef5c;
}
section.calendar .control-wrapper .controls button span {
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}
section.calendar .control-wrapper .controls .current-date {
  padding: 0 10px;
}
section.calendar .week-day-wrapper {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 150px;
  left: 0;
  padding: 0 0 0 170px;
}
section.calendar .week-day-wrapper .year-month-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  padding-right: 10px;
  padding-left: 30px;
  text-align: right;
}
section.calendar .week-day-wrapper .year-month-wrapper .year {
  font-size: 24px;
  line-height: 24px;
}
section.calendar .week-day-wrapper .year-month-wrapper .month {
  font-size: 17px;
  line-height: 17px;
}
section.calendar .week-day-wrapper .year-month-wrapper .month .short {
  display: none;
}
section.calendar .week-day-wrapper .slider-wrapper {
  height: 70px;
  padding-right: 30px;
}
section.calendar .calendar-content-wrapper {
  width: 100%;
  position: absolute;
  top: 220px;
  bottom: 0;
  left: 0;
}
section.calendar .calendar-content-wrapper .calendar-content {
  height: 100%;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* adds momentum scrolling on touch devices */
}
section.calendar .calendar-content-wrapper .hour-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  padding: 10px 10px 0 30px;
  text-align: right;
}
section.calendar .calendar-content-wrapper .hour-wrapper .hour-list .hour-item {
  height: 40px;
  position: relative;
}
section.calendar .calendar-content-wrapper .hour-wrapper .hour-list .hour-item:last-child {
  height: auto;
}
section.calendar .calendar-content-wrapper .hour-wrapper .hour-list .hour-item span {
  position: absolute;
  top: -10px;
  right: 0;
}
section.calendar .calendar-content-wrapper .slider-wrapper {
  padding: 0 30px 30px 170px;
}
section.calendar .week-day-slider {
  height: 70px;
  overflow: hidden;
}
section.calendar .week-day-slider .day-list {
  font-size: 0;
  line-height: 0;
}
section.calendar .week-day-slider .day-list .day-item {
  display: inline-block;
  vertical-align: top;
  width: 14.286%;
  height: 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  pointer-events: none;
}
section.calendar .week-day-slider .day-list .day-item.today .day-number {
  background-color: #21ef5c !important;
  margin-left: 0;
}
section.calendar .week-day-slider .day-list .day-item .day-text {
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  margin-bottom: 2px;
}
section.calendar .week-day-slider .day-list .day-item .day-number {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-left: 3px;
  color: #ffffff;
  background-color: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
section.calendar .calendar-slider .day-list {
  font-size: 0;
  line-height: 0;
}
section.calendar .calendar-slider .day-list .day-item {
  display: inline-block;
  vertical-align: top;
  width: 14.286%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
section.calendar .calendar-slider .day-list .day-item .hour-list .hour-item {
  display: block;
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
section.calendar .calendar-slider .day-list .day-item .hour-list .hour-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}
section.calendar .calendar-slider .day-list .day-item .hour-list .hour-item .modal-add-entry-toggle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
section.calendar .calendar-slider .day-list .day-item .hour-list .hour-item .modal-add-entry-toggle:hover {
  background-color: rgba(255, 255, 255, 0.07);
}
section.calendar .calendar-slider .entry-box {
  width: 100%;
  background-color: #d5f4e6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: hidden;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
section.calendar .calendar-slider .entry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #21ef5c;
  -webkit-transition: width 0.3s ease 0s;
  -moz-transition: width 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s;
  -ms-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
section.calendar .calendar-slider .entry-box.offset {
  top: 20px;
}
section.calendar .calendar-slider .entry-box.half-1 {
  height: 20px;
}
section.calendar .calendar-slider .entry-box.half-1 .text-wrapper {
  margin-top: -8.5px;
}
section.calendar .calendar-slider .entry-box.half-1 .text-wrapper .time {
  display: none;
}
section.calendar .calendar-slider .entry-box.half-2 {
  height: 40px;
}
section.calendar .calendar-slider .entry-box.half-3 {
  height: 60px;
}
section.calendar .calendar-slider .entry-box.half-4 {
  height: 80px;
}
section.calendar .calendar-slider .entry-box.half-5 {
  height: 100px;
}
section.calendar .calendar-slider .entry-box.half-6 {
  height: 120px;
}
section.calendar .calendar-slider .entry-box.half-7 {
  height: 140px;
}
section.calendar .calendar-slider .entry-box.half-8 {
  height: 160px;
}
section.calendar .calendar-slider .entry-box.half-9 {
  height: 180px;
}
section.calendar .calendar-slider .entry-box.half-10 {
  height: 200px;
}
section.calendar .calendar-slider .entry-box.half-11 {
  height: 220px;
}
section.calendar .calendar-slider .entry-box.half-12 {
  height: 240px;
}
section.calendar .calendar-slider .entry-box.half-13 {
  height: 260px;
}
section.calendar .calendar-slider .entry-box.half-14 {
  height: 280px;
}
section.calendar .calendar-slider .entry-box.half-15 {
  height: 300px;
}
section.calendar .calendar-slider .entry-box.half-16 {
  height: 320px;
}
section.calendar .calendar-slider .entry-box.half-17 {
  height: 340px;
}
section.calendar .calendar-slider .entry-box.half-18 {
  height: 360px;
}
section.calendar .calendar-slider .entry-box.half-19 {
  height: 380px;
}
section.calendar .calendar-slider .entry-box.half-20 {
  height: 400px;
}
section.calendar .calendar-slider .entry-box.half-21 {
  height: 420px;
}
section.calendar .calendar-slider .entry-box.half-22 {
  height: 440px;
}
section.calendar .calendar-slider .entry-box.half-23 {
  height: 460px;
}
section.calendar .calendar-slider .entry-box.half-24 {
  height: 480px;
}
section.calendar .calendar-slider .entry-box.half-25 {
  height: 500px;
}
section.calendar .calendar-slider .entry-box.half-26 {
  height: 520px;
}
section.calendar .calendar-slider .entry-box.half-27 {
  height: 540px;
}
section.calendar .calendar-slider .entry-box.half-28 {
  height: 560px;
}
section.calendar .calendar-slider .entry-box.half-29 {
  height: 580px;
}
section.calendar .calendar-slider .entry-box.half-30 {
  height: 600px;
}
section.calendar .calendar-slider .entry-box.half-31 {
  height: 620px;
}
section.calendar .calendar-slider .entry-box.half-32 {
  height: 640px;
}
section.calendar .calendar-slider .entry-box.half-33 {
  height: 660px;
}
section.calendar .calendar-slider .entry-box.half-34 {
  height: 680px;
}
section.calendar .calendar-slider .entry-box.half-35 {
  height: 700px;
}
section.calendar .calendar-slider .entry-box.half-36 {
  height: 720px;
}
section.calendar .calendar-slider .entry-box.half-37 {
  height: 740px;
}
section.calendar .calendar-slider .entry-box.half-38 {
  height: 760px;
}
section.calendar .calendar-slider .entry-box.half-39 {
  height: 780px;
}
section.calendar .calendar-slider .entry-box.half-40 {
  height: 800px;
}
section.calendar .calendar-slider .entry-box.half-41 {
  height: 820px;
}
section.calendar .calendar-slider .entry-box.half-42 {
  height: 840px;
}
section.calendar .calendar-slider .entry-box.half-43 {
  height: 860px;
}
section.calendar .calendar-slider .entry-box.half-44 {
  height: 880px;
}
section.calendar .calendar-slider .entry-box.half-45 {
  height: 900px;
}
section.calendar .calendar-slider .entry-box.half-46 {
  height: 920px;
}
section.calendar .calendar-slider .entry-box.half-47 {
  height: 940px;
}
section.calendar .calendar-slider .entry-box.half-48 {
  height: 960px;
}
section.calendar .calendar-slider .entry-box:hover::before {
  width: 100%;
}
section.calendar .calendar-slider .entry-box.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
section.calendar .calendar-slider .entry-box.disabled:hover::before {
  width: 4px;
}
section.calendar .calendar-slider .entry-box.blocked {
  opacity: 0.4;
  cursor: not-allowed;
}
section.calendar .calendar-slider .entry-box.blocked::before {
  display: none;
}
section.calendar .calendar-slider .entry-box .text-wrapper {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  color: #272a39;
  margin-top: -17px;
}
section.calendar .calendar-slider .entry-box .text-wrapper .name {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
section.calendar .calendar-slider .entry-box .text-wrapper .time {
  font-size: 12px;
  line-height: 17px;
}
section.calendar .calendar-slider .entry-box .text-wrapper .blocked {
  font-size: 24px;
  line-height: 24px;
}
section.calendar #add-entry {
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 500;
  width: 60px;
  height: 60px;
  color: #ffffff;
  background-color: #0ed346;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
section.calendar #add-entry:hover {
  background-color: #21ef5c;
}
section.calendar #add-entry span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 30px;
  margin-left: -15px;
  margin-top: -15px;
}
/* modal form styles */
.modal form {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.modal form.loading {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.modal form.loading::after {
  font-family: 'Material Design Icons';
  content: '\F771';
  font-size: 40px;
  color: #21ef5c;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -20px;
  z-index: 1000;
  -webkit-animation: rotating 1s linear infinite;
  -moz-animation: rotating 1s linear infinite;
  -ms-animation: rotating 1s linear infinite;
  -o-animation: rotating 1s linear infinite;
  animation: rotating 1s linear infinite;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.modal .row {
  margin: 0 -10px;
}
.modal .col-xs-1,
.modal .col-sm-1,
.modal .col-md-1,
.modal .col-lg-1,
.modal .col-xs-2,
.modal .col-sm-2,
.modal .col-md-2,
.modal .col-lg-2,
.modal .col-xs-3,
.modal .col-sm-3,
.modal .col-md-3,
.modal .col-lg-3,
.modal .col-xs-4,
.modal .col-sm-4,
.modal .col-md-4,
.modal .col-lg-4,
.modal .col-xs-5,
.modal .col-sm-5,
.modal .col-md-5,
.modal .col-lg-5,
.modal .col-xs-6,
.modal .col-sm-6,
.modal .col-md-6,
.modal .col-lg-6,
.modal .col-xs-7,
.modal .col-sm-7,
.modal .col-md-7,
.modal .col-lg-7,
.modal .col-xs-8,
.modal .col-sm-8,
.modal .col-md-8,
.modal .col-lg-8,
.modal .col-xs-9,
.modal .col-sm-9,
.modal .col-md-9,
.modal .col-lg-9,
.modal .col-xs-10,
.modal .col-sm-10,
.modal .col-md-10,
.modal .col-lg-10,
.modal .col-xs-11,
.modal .col-sm-11,
.modal .col-md-11,
.modal .col-lg-11,
.modal .col-xs-12,
.modal .col-sm-12,
.modal .col-md-12,
.modal .col-lg-12 {
  padding: 0 10px;
}
.modal label {
  color: #272a39;
}
.modal input[type="text"]:hover,
.modal input[type="number"]:hover,
.modal input[type="password"]:hover,
.modal input[type="email"]:hover,
.modal input[type="search"]:hover,
.modal textarea:hover,
.modal input[type="text"]:active,
.modal input[type="number"]:active,
.modal input[type="password"]:active,
.modal input[type="email"]:active,
.modal input[type="search"]:active,
.modal textarea:active,
.modal input[type="text"]:focus,
.modal input[type="number"]:focus,
.modal input[type="password"]:focus,
.modal input[type="email"]:focus,
.modal input[type="search"]:focus,
.modal textarea:focus {
  border-color: #272a39;
}
.modal #edit-pin-pin {
  text-align: center;
  font-size: 26px;
  line-height: 41px;
  height: 43px;
  padding: 0;
}
/* button list */
.button-list {
  overflow: hidden;
  margin: 0 -5px;
}
.button-list.two .button-item {
  width: 50%;
}
.button-list.three {
  display: table;
}
.button-list.three .button-item {
  display: table-cell;
  float: none;
  width: 49%;
}
.button-list.three .button-item:first-child {
  width: 2%;
}
.button-list.three .button-item:first-child .button {
  width: 43px;
  height: 43px;
  padding-left: 0;
  padding-right: 0;
}
.button-list .button-item {
  padding: 0 5px;
  float: left;
}
.button-list .button-item .button {
  width: 100%;
  min-width: 0;
}
/* notice for landscape mode */
section.landscape-notice {
  display: none;
  width: 100%;
  height: 100%;
}
section.landscape-notice .section-inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
section.landscape-notice .section-inner .icon {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
}
section.landscape-notice .section-inner .text {
  max-width: 340px;
  margin: 0 auto;
}
/* mediaqueries */
@media (max-width: 1199px) {
  /* calendar */
  section.calendar .week-day-wrapper {
    padding: 0 0 0 140px;
  }
  section.calendar .week-day-wrapper .year-month-wrapper {
    width: 140px;
  }
  section.calendar .calendar-content-wrapper .hour-wrapper {
    width: 140px;
  }
  section.calendar .calendar-content-wrapper .slider-wrapper {
    padding: 0 30px 30px 140px;
  }
}
@media (max-width: 991px) {
  /* typography */
  body {
    font-size: 14px;
    line-height: 17px;
  }
  h1 {
    font-size: 20px;
    line-height: 24px;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h3 {
    font-size: 16px;
    line-height: 20px;
  }
  h4 {
    font-size: 14px;
    line-height: 17px;
  }
  h5 {
    font-size: 14px;
    line-height: 17px;
  }
  /* forms */
  label {
    font-size: 14px;
    line-height: 17px;
  }
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="email"],
  input[type="search"],
  textarea {
    font-size: 14px;
    line-height: 17px;
  }
  .bootstrap-select > .dropdown-toggle {
    font-size: 14px;
    line-height: 17px;
  }
  .bootstrap-select .dropdown-menu {
    font-size: 14px;
    line-height: 17px;
  }
  /* buttons */
  .button.primary {
    font-size: 14px;
    line-height: 17px;
  }
  .button.secondary {
    font-size: 14px;
    line-height: 17px;
  }
  /* calendar */
  section.calendar {
    /* week day slider */
    /* calendar slider */
  }
  section.calendar nav {
    text-align: left;
    padding-left: 15px;
    overflow: visible;
  }
  section.calendar nav .title {
    display: none;
  }
  section.calendar nav ul.rooms {
    display: none;
  }
  section.calendar nav ul.rooms.mobile {
    display: block;
  }
  section.calendar nav ul.rooms li a {
    font-size: 15px;
  }
  section.calendar nav ul.system li.language-switch a {
    font-size: 15px;
  }
  section.calendar .week-day-wrapper {
    padding: 0 0 0 80px;
  }
  section.calendar .week-day-wrapper .year-month-wrapper {
    width: 80px;
    padding-left: 0;
  }
  section.calendar .week-day-wrapper .year-month-wrapper .month .full {
    display: none;
  }
  section.calendar .week-day-wrapper .year-month-wrapper .month .short {
    display: block;
  }
  section.calendar .calendar-content-wrapper .hour-wrapper {
    width: 80px;
  }
  section.calendar .calendar-content-wrapper .slider-wrapper {
    padding: 0 30px 30px 80px;
  }
  section.calendar .week-day-slider .day-list .day-item .day-text {
    font-size: 15px;
    line-height: 18px;
  }
  section.calendar .week-day-slider .day-list .day-item .day-number {
    font-size: 14px;
  }
  section.calendar .calendar-slider .entry-box.half-1 .text-wrapper {
    margin-top: -8.5px;
  }
  section.calendar .calendar-slider .entry-box .text-wrapper {
    margin-top: -17px;
  }
  section.calendar .calendar-slider .entry-box .text-wrapper .name {
    font-size: 14px;
    line-height: 17px;
  }
  section.calendar .calendar-slider .entry-box .text-wrapper .time {
    font-size: 12px;
    line-height: 17px;
  }
  /* modal form styles */
  .modal #edit-pin-pin {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  /* content styles */
  .content-area h1,
  .content-area h2,
  .content-area h3,
  .content-area h4,
  .content-area h5,
  .content-area p {
    margin-bottom: 20px;
  }
  .content-area h1:last-child,
  .content-area h2:last-child,
  .content-area h3:last-child,
  .content-area h4:last-child,
  .content-area h5:last-child,
  .content-area p:last-child {
    margin-bottom: 0;
  }
  .content-area ul:not([id]):not([class]) {
    margin-bottom: 20px;
  }
  .content-area ul:not([id]):not([class]):last-child {
    margin-bottom: 0;
  }
  .content-area ol:not([id]):not([class]) {
    margin-bottom: 20px;
  }
  .content-area ol:not([id]):not([class]):last-child {
    margin-bottom: 0;
  }
  /* forms */
  .form-group {
    margin-bottom: 20px;
  }
  /* modal */
  .modal {
    padding-right: 0 !important;
  }
  .modal-dialog {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .modal-dialog .modal-content {
    padding: 25px 15px;
  }
  /* login */
  section.login .section-box {
    padding: 25px 15px;
  }
  section.login .section-box .remember-login {
    margin-top: 0;
    margin-bottom: 20px;
  }
  section.login .section-box .button-wrapper .button {
    width: 100%;
  }
  section.login .logo {
    bottom: 30px;
  }
  /* calendar */
  section.calendar {
    /* week day slider */
    /* calendar slider */
    /* add entry button */
  }
  section.calendar nav {
    padding-left: 0;
  }
  section.calendar nav ul.rooms.mobile li .dropdown-menu {
    left: -15px;
    padding-left: 15px;
  }
  section.calendar nav ul.system {
    padding-right: 15px;
  }
  section.calendar nav ul.system li {
    margin-left: 15px;
  }
  section.calendar .control-wrapper {
    height: 60px;
    padding: 20px 15px 0 15px;
    text-align: left;
  }
  section.calendar .control-wrapper .year-month-wrapper {
    float: left;
  }
  section.calendar .control-wrapper .current-date {
    float: right;
    color: #d5f4e6;
    text-decoration: underline;
  }
  section.calendar .week-day-wrapper {
    top: 120px;
    padding: 0;
  }
  section.calendar .week-day-wrapper .slider-wrapper {
    padding: 0 15px;
  }
  section.calendar .calendar-content-wrapper {
    top: 190px;
  }
  section.calendar .calendar-content-wrapper .hour-wrapper {
    width: 70px;
    padding-left: 15px;
  }
  section.calendar .calendar-content-wrapper .slider-wrapper {
    padding-left: 70px;
    padding-right: 0;
  }
  section.calendar .week-day-slider .day-list .day-item {
    border-right: 0;
    pointer-events: auto;
  }
  section.calendar .week-day-slider .day-list .day-item.current .day-number {
    background-color: #272a39;
    margin-left: 0;
  }
  section.calendar .calendar-slider .day-list .day-item {
    width: 100%;
    margin-top: 10px;
    border-right: 0;
  }
  section.calendar .calendar-slider .day-list .day-item .hour-list .hour-item:first-child {
    margin-top: 0;
  }
  section.calendar #add-entry {
    right: 15px;
    bottom: 15px;
  }
  /* modal form styles */
  .modal .row {
    margin: 0 -5px;
  }
  .modal .col-xs-1,
  .modal .col-sm-1,
  .modal .col-md-1,
  .modal .col-lg-1,
  .modal .col-xs-2,
  .modal .col-sm-2,
  .modal .col-md-2,
  .modal .col-lg-2,
  .modal .col-xs-3,
  .modal .col-sm-3,
  .modal .col-md-3,
  .modal .col-lg-3,
  .modal .col-xs-4,
  .modal .col-sm-4,
  .modal .col-md-4,
  .modal .col-lg-4,
  .modal .col-xs-5,
  .modal .col-sm-5,
  .modal .col-md-5,
  .modal .col-lg-5,
  .modal .col-xs-6,
  .modal .col-sm-6,
  .modal .col-md-6,
  .modal .col-lg-6,
  .modal .col-xs-7,
  .modal .col-sm-7,
  .modal .col-md-7,
  .modal .col-lg-7,
  .modal .col-xs-8,
  .modal .col-sm-8,
  .modal .col-md-8,
  .modal .col-lg-8,
  .modal .col-xs-9,
  .modal .col-sm-9,
  .modal .col-md-9,
  .modal .col-lg-9,
  .modal .col-xs-10,
  .modal .col-sm-10,
  .modal .col-md-10,
  .modal .col-lg-10,
  .modal .col-xs-11,
  .modal .col-sm-11,
  .modal .col-md-11,
  .modal .col-lg-11,
  .modal .col-xs-12,
  .modal .col-sm-12,
  .modal .col-md-12,
  .modal .col-lg-12 {
    padding: 0 5px;
  }
}
@media (max-width: 374px) {
  /* datetimepicker */
  .bootstrap-datetimepicker-widget {
    width: 15em !important;
  }
  /* login */
  section.login .logo {
    display: none;
  }
  /* modal form styles */
  .modal .button {
    letter-spacing: -0.05em;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-height: 600px) {
  section.login .logo {
    display: none;
  }
}
/*
@media only screen
    and (max-height: 500px)
    and (orientation: landscape) {
    section.login {
        display: none;
    }

    section.landscape-notice {
        display: table;
    }
}
*/
(node:41537) [DEP0026] DeprecationWarning: util.print is deprecated. Use console.log instead.
