/* Contains the common CSS styles for the application and the widgets.
   Only import this file when necessary to prevent having the duplicated styles. */

/* Contains the common CSS constants for the whole application. */
/*#region Common colors*/
/*#endregion Common colors*/
/*#region Shadow colors*/
/*#endregion Shadow colors*/
/*#region Text*/
/* Dark color for text in the application */
/*#endregion Text*/
/*#region Content constants*/
/*#endregion*/
/*#region Z-indexes*/
/* Has to be higher than map canvas. */
/* Has to be higher than expanded map place holder. */
/* Has to be higher than expand map button. */
/* The layouts z indexes are for internal purposes only.
                                They are not for styling. */
/*#endregion Z-indexes*/
/*#region Global time picker constants*/
/*#endregion Global time picker constants*/
/* Contains mixins for the application. Mixins are methods that simplify the reuse of a block of CSS
   code with parameters. */
/* The cursor is shown as a pointer over the element */
.k-popup {
  box-shadow: 0px 1px 4px 1px #e0deda !important;
}
span.k-widget span.k-dropdown-wrap {
  background-color: white !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 38px;
}
.k-dropdown-wrap.k-state-border-down {
  border-bottom-width: 1px !important;
}
span.k-widget span.k-dropdown-wrap.k-state-hover,
span.k-widget span.k-dropdown-wrap.k-state-active {
  background-color: #f9f7f0;
}
span.k-widget span.k-dropdown-wrap.k-state-focused {
  border-color: #cfccc5;
  box-shadow: 0 0 0 1px #548ee7;
}
span.k-widget span.k-dropdown-wrap span.k-input {
  padding-top: 7px;
  font-size: 13px;
  font-weight: bold;
}
span.k-widget span.k-dropdown-wrap span.k-select span.k-icon {
  margin-top: 12px;
  background-image: url("Images/ArrowDown.png");
  background-position: 0px 0px;
  -moz-background-size: 16px 16px;
  -o-background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  background-size: 16px 16px;
}
div.k-animation-container div.k-list-container.k-popup.k-group.k-reset ul.k-list.k-reset {
  overflow: auto;
  /*Safari bug: Some dropdown items are displayed outside the container. */
  -webkit-overflow-scrolling: touch;
}
div.k-animation-container div.k-list-container.k-popup.k-group.k-reset ul.k-list.k-reset li.k-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.k-animation-container div.k-list-container.k-popup.k-group.k-reset ul.k-list.k-reset li.k-item.k-state-selected.k-state-focused {
  background-color: #2972e1;
}
div.k-animation-container div.k-list-container.k-popup.k-group.k-reset ul.k-list.k-reset li.k-item.k-state-hover {
  background-color: #f9f7f0;
}
/* Display unavailable dates in grey and remove pointer cursor. */

.k-content .gh-disabledDay {
  color: #bfb8ac;
  cursor: default;
  display: block;
  line-height: 1.8333em;
  min-height: 1.8333em;
  opacity: 0.5;
  overflow: hidden;
  padding: 0px 0.45em 0px 0.1em;
}
/* Display unavailable dates in grey and remove pointer cursor. */

.k-calendar td.gh-disabledDayGridCell {
  background-color: whitesmoke;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}
/* Used for the widget, since dropdown and calendar popup are appended at the end of the body. */

.k-calendar,
.k-popup .k-item {
  font-size: 12px;
}
