/*
 * This file contains less mixins.
 *
 * ⚠️ This file must not contain any css rules. It is imported in many places,
 * and css rules in this file would result in a copy of all of the rules per import.
 */
/*
 * This file contains and imports less variables.
 * It is also used to override default styling to design custom styles.
 *
 * ⚠️ This file must not contain any css rules. It is imported in many places,
 * and css rules in this file would result in a copy of all of the rules per import.
 */
/*
 * Imports from Bootstrap
 */
/*
 * Masterportal Default Style (Override of Bootstrap)
 */
/* PRIMARY: Map Interaction
 * Used for control elements placed directly on the map.
 * Elements: Buttons and button-like elements.
 * Examples: ZoomButtons, MousePosition, ...
 */
/* SECONDARY: Navigation
 * Used for the nav bar, its children, and going back and forth within elements.
 * Elements: Navigation bars and togglers, overall content.
 * Examples: NavBar, open/close tool, layer list, change tabs, back button, next entry ...
 * NOTE Bootstrap 3 has some colours for "NavBar" and "Panels" - use instead of a secondary?
 */
/* ACCENT: Action
 * Action color for windows to trigger actions like saving or sending.
 * Elements: Buttons.
 * Examples: start search (for e.g. parcels), save something, draw something, send a message, ...
 */
/* NOTIFICATION COLOURS
 * Notification colours can and should be used directly from Bootstrap 3.
 * Keywords: success, info, warning, danger
 */
/* ICON SIZES */
/* FONT STYLES
 * TODO why is Arial Narrow an alternative to MPF Bold?
 */
/* NOTE if three sizes suffice, we could move this to bootstrap 3 variables */
/* Should something like this be supported for windows resp. buttons? TODO discuss */
/* other */
/*
 * Customer Style. In this place, all previously mentioned variables may be overwritten
 * to achieve a different look and feel from the default Masterportal design.
 *
 * Please note that the theme is currently under development and only used in some parts of the
 * application - changes will have limited effects.
 */
/* focus styling for actions like menu-entries, buttons, icons, etc */
.primary_action_focus {
  outline: 3px solid #204d74;
  outline: 3px auto  Highlight;
  outline: 3px auto -webkit-focus-ring-color;
}
/* hover styling for actions like menu-entries, buttons, icons, etc */
.primary_action_hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
}
.primary_action_hover.btn-select,
.primary_action_hover:active,
.primary_action_hover.active,
.primary_action_hover:checked,
.primary_action_hover::selection,
.primary_action_hover.open,
.primary_action_hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .head-bar,
.dashboard-table .table-footer {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  z-index: 100;
}
.dashboard-table .head-bar .filter,
.dashboard-table .table-footer .filter {
  width: 40%;
  min-width: 320px;
  float: right;
  display: flex;
  justify-content: flex-end;
}
.dashboard-table .head-bar .filter .filter-dropdown,
.dashboard-table .table-footer .filter .filter-dropdown {
  width: 100%;
}
.dashboard-table .head-bar .filter .dropdown-container,
.dashboard-table .table-footer .filter .dropdown-container {
  padding: 0;
}
.dashboard-table .head-bar .filter .dropdown-container .dropdown-toggle,
.dashboard-table .table-footer .filter .dropdown-container .dropdown-toggle {
  line-height: 14px;
}
.dashboard-table .head-bar .filter .btn-reset,
.dashboard-table .table-footer .filter .btn-reset {
  padding-top: 0px;
  display: inline-block;
  height: 26px;
}
.dashboard-table .head-bar #correlation-button,
.dashboard-table .table-footer #correlation-button {
  width: 100%;
}
.dashboard-table .head-bar .export-button,
.dashboard-table .table-footer .export-button {
  display: inline-block;
}
.dashboard-table .figure {
  overflow: auto;
}
.dashboard-table .figure button.open {
  float: right;
  padding: 12px;
  position: relative;
  background-color: transparent;
  border: 1px solid lightgrey;
  border-radius: 4px;
}
.dashboard-table .figure button.open span {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 5px;
  left: 8px;
  transform: rotate(45deg);
  pointer-events: none;
}
.dashboard-table .simple-views-container {
  padding: 8px 0px;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}
.dashboard-table .simple-views-container .btn-default:focus {
  outline: none;
}
.dashboard-table .simple-views-container table {
  width: calc(100% - 8px);
}
.dashboard-table .simple-views-container table thead tr {
  background: #fafafa;
}
.dashboard-table .simple-views-container table tbody {
  display: none;
}
.dashboard-table .simple-views-container table tbody.open {
  display: table-row-group;
}
.dashboard-table .simple-views-container table th,
.dashboard-table .simple-views-container table td {
  width: auto;
  position: relative;
  border-right: 1px solid #e5e5e5;
}
.dashboard-table .simple-views-container table th.prop,
.dashboard-table .simple-views-container table td.prop {
  font-weight: 300;
}
.dashboard-table .simple-views-container table th.years,
.dashboard-table .simple-views-container table td.years {
  font-weight: 300;
}
.dashboard-table .simple-views-container table th.district,
.dashboard-table .simple-views-container table td.district {
  cursor: pointer;
}
.dashboard-table .simple-views-container table th:hover,
.dashboard-table .simple-views-container table td:hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
}
.dashboard-table .simple-views-container table th:hover.btn-select,
.dashboard-table .simple-views-container table td:hover.btn-select,
.dashboard-table .simple-views-container table th:hover:active,
.dashboard-table .simple-views-container table td:hover:active,
.dashboard-table .simple-views-container table th:hover.active,
.dashboard-table .simple-views-container table td:hover.active,
.dashboard-table .simple-views-container table th:hover:checked,
.dashboard-table .simple-views-container table td:hover:checked,
.dashboard-table .simple-views-container table th:hover::selection,
.dashboard-table .simple-views-container table td:hover::selection,
.dashboard-table .simple-views-container table th:hover.open,
.dashboard-table .simple-views-container table td:hover.open,
.dashboard-table .simple-views-container table th:hover[aria-expanded="true"],
.dashboard-table .simple-views-container table td:hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .simple-views-container table th:hover .move,
.dashboard-table .simple-views-container table td:hover .move {
  visibility: visible;
}
.dashboard-table .simple-views-container table th.minimized,
.dashboard-table .simple-views-container table td.minimized {
  width: 8px;
}
.dashboard-table .simple-views-container table th.minimized *:not(.toggle-col),
.dashboard-table .simple-views-container table td.minimized *:not(.toggle-col) {
  display: none;
}
.dashboard-table .simple-views-container table th .move,
.dashboard-table .simple-views-container table td .move {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 5px;
}
.dashboard-table .simple-views-container table th .move span,
.dashboard-table .simple-views-container table td .move span {
  color: white;
}
.dashboard-table .simple-views-container table th .move span:hover,
.dashboard-table .simple-views-container table td .move span:hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
}
.dashboard-table .simple-views-container table th .move span:hover.btn-select,
.dashboard-table .simple-views-container table td .move span:hover.btn-select,
.dashboard-table .simple-views-container table th .move span:hover:active,
.dashboard-table .simple-views-container table td .move span:hover:active,
.dashboard-table .simple-views-container table th .move span:hover.active,
.dashboard-table .simple-views-container table td .move span:hover.active,
.dashboard-table .simple-views-container table th .move span:hover:checked,
.dashboard-table .simple-views-container table td .move span:hover:checked,
.dashboard-table .simple-views-container table th .move span:hover::selection,
.dashboard-table .simple-views-container table td .move span:hover::selection,
.dashboard-table .simple-views-container table th .move span:hover.open,
.dashboard-table .simple-views-container table td .move span:hover.open,
.dashboard-table .simple-views-container table th .move span:hover[aria-expanded="true"],
.dashboard-table .simple-views-container table td .move span:hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .simple-views-container table th .toggle-col,
.dashboard-table .simple-views-container table td .toggle-col {
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  color: white;
}
.dashboard-table .simple-views-container table th .toggle-col:hover,
.dashboard-table .simple-views-container table td .toggle-col:hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
}
.dashboard-table .simple-views-container table th .toggle-col:hover.btn-select,
.dashboard-table .simple-views-container table td .toggle-col:hover.btn-select,
.dashboard-table .simple-views-container table th .toggle-col:hover:active,
.dashboard-table .simple-views-container table td .toggle-col:hover:active,
.dashboard-table .simple-views-container table th .toggle-col:hover.active,
.dashboard-table .simple-views-container table td .toggle-col:hover.active,
.dashboard-table .simple-views-container table th .toggle-col:hover:checked,
.dashboard-table .simple-views-container table td .toggle-col:hover:checked,
.dashboard-table .simple-views-container table th .toggle-col:hover::selection,
.dashboard-table .simple-views-container table td .toggle-col:hover::selection,
.dashboard-table .simple-views-container table th .toggle-col:hover.open,
.dashboard-table .simple-views-container table td .toggle-col:hover.open,
.dashboard-table .simple-views-container table th .toggle-col:hover[aria-expanded="true"],
.dashboard-table .simple-views-container table td .toggle-col:hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .simple-views-container table th ul.list-group,
.dashboard-table .simple-views-container table td ul.list-group {
  padding: 0;
}
.dashboard-table .simple-views-container table th ul.list-group li.list-group-item.nowrap,
.dashboard-table .simple-views-container table td ul.list-group li.list-group-item.nowrap {
  background-color: transparent;
  text-align: right;
  border-bottom: 0px transparent;
  border-right: 0px transparent;
  border-left: 0px transparent;
  white-space: nowrap;
  padding: 5px 0;
}
.dashboard-table .simple-views-container table th ul.list-group li.list-group-item.nowrap:first-child,
.dashboard-table .simple-views-container table td ul.list-group li.list-group-item.nowrap:first-child {
  border-top: 0px transparent;
  display: block !important;
}
.dashboard-table .simple-views-container table th ul.list-group li.list-group-item.nowrap:not(:first-child),
.dashboard-table .simple-views-container table td ul.list-group li.list-group-item.nowrap:not(:first-child) {
  display: none;
}
.dashboard-table .simple-views-container table th ul.list-group li.list-group-item.nowrap small,
.dashboard-table .simple-views-container table td ul.list-group li.list-group-item.nowrap small {
  color: #204d74;
}
.dashboard-table .simple-views-container tr:before {
  display: none;
}
.dashboard-table .simple-views-container tr.open .timeline-table ul li {
  display: block !important;
}
.dashboard-table .simple-views-container tr.open button.open {
  color: black;
  transform: rotate(180deg);
}
.dashboard-table .simple-views-container tr.open button.open span:hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.dashboard-table .simple-views-container tr.open button.open span:hover.btn-select,
.dashboard-table .simple-views-container tr.open button.open span:hover:active,
.dashboard-table .simple-views-container tr.open button.open span:hover.active,
.dashboard-table .simple-views-container tr.open button.open span:hover:checked,
.dashboard-table .simple-views-container tr.open button.open span:hover::selection,
.dashboard-table .simple-views-container tr.open button.open span:hover.open,
.dashboard-table .simple-views-container tr.open button.open span:hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .simple-views-container tr:hover {
  background-color: #2b6a9d;
  color: #F3F3F3;
  cursor: pointer;
}
.dashboard-table .simple-views-container tr:hover button.open span {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.dashboard-table .simple-views-container tr.selected td,
.dashboard-table .simple-views-container tr.selected th {
  background: #204d74;
  color: white;
}
.dashboard-table .simple-views-container tr.selected td button.open span,
.dashboard-table .simple-views-container tr.selected th button.open span {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.dashboard-table .simple-views-container tr.selected td small,
.dashboard-table .simple-views-container tr.selected th small {
  color: #aae1fc !important;
}
.dashboard-table .simple-views-container tr.selected td:hover {
  opacity: 1;
  background-color: #3177b1;
  color: #F3F3F3;
  cursor: pointer;
}
.dashboard-table .simple-views-container tr.selected td:hover.btn-select,
.dashboard-table .simple-views-container tr.selected td:hover:active,
.dashboard-table .simple-views-container tr.selected td:hover.active,
.dashboard-table .simple-views-container tr.selected td:hover:checked,
.dashboard-table .simple-views-container tr.selected td:hover::selection,
.dashboard-table .simple-views-container tr.selected td:hover.open,
.dashboard-table .simple-views-container tr.selected td:hover[aria-expanded="true"] {
  background-color: #265c89;
}
.dashboard-table .simple-views-container tr.selected td:hover button.open span {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.dashboard-table .tool-name {
  padding-left: 15px;
  font-family: "UniversNextW04-620CondB", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
}
.dashboard-table .simple-view .btn-default {
  margin: 4px;
}
.dashboard-table .btn-select {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.dashboard-table .btn-select .name:hover {
  font-weight: normal;
}
.simple-view {
  display: inline-block;
}
.detail-view-container {
  padding: 8px 15px;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}
.detail-view-container .dashboard-graph {
  width: 100%;
  height: 40vh;
}
.detail-view-container .graphTooltip {
  position: fixed;
  pointer-events: none;
}
@media (min-width: 768px) {
  .filter .simple-views-container button {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
  }
  .filter .head-bar {
    padding: 10px;
  }
}

