/*
 * This file contains and imports less variables, mixins, and functions.
 * 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.
 */
#reisezeiten-container h5[data-v-18042962] {
  background-color: #337AB7;
  color: #FFFFFF;
  font-weight: bold;
  font-style: italic;
  margin: 0;
  padding: 12px 15px 12px 15px;
}
#reisezeiten-container #table-container[data-v-18042962] {
  display: table;
  border-collapse: collapse;
  font-size: 13px;
}
#reisezeiten-container #table-container .table-row[data-v-18042962] {
  border-top: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  cursor: pointer;
  display: table-row;
  transition: background-color 0.2s;
}
#reisezeiten-container #table-container .table-row.selected[data-v-18042962] {
  background-color: #DDDDDD;
}
#reisezeiten-container #table-container .table-row[data-v-18042962]:first-child {
  border-top: none;
}
#reisezeiten-container #table-container .table-row[data-v-18042962]:hover {
  background-color: #EEEEEE;
}
#reisezeiten-container #table-container .table-row .table-cell[data-v-18042962] {
  display: table-cell;
}
#reisezeiten-container #table-container .table-row .table-left-col[data-v-18042962] {
  padding-left: 15px;
}
#reisezeiten-container #table-container .table-row .badge[data-v-18042962] {
  width: 100%;
  background-color: #5bc0de;
  color: #FFFFFF;
  font-size: 10px;
  padding: 3px;
}
#reisezeiten-container #table-container .table-row .table-middle-col[data-v-18042962] {
  padding: 5px 0 5px 12px;
}
#reisezeiten-container #table-container .table-row .table-middle-col div[data-v-18042962] {
  border-radius: 4px 0 0 4px;
  text-align: right;
}
#reisezeiten-container #table-container .table-row .table-right-col[data-v-18042962] {
  padding: 5px 15px 5px 0;
}
#reisezeiten-container #table-container .table-row .table-right-col div[data-v-18042962] {
  border-radius: 0 4px 4px 0;
  text-align: right;
}
#reisezeiten-container #loading-animation-container[data-v-18042962] {
  width: 327px;
  padding-top: 15px;
  text-align: center;
}
#reisezeiten-container .loading-animation[data-v-18042962] {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#reisezeiten-container .loading-animation div[data-v-18042962] {
  position: absolute;
  border: 4px solid #CCCCCC;
  opacity: 1;
  border-radius: 50%;
  animation: loading-animation-data-v-18042962 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#reisezeiten-container .loading-animation div[data-v-18042962]:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loading-animation-data-v-18042962 {
0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
}
}

