﻿.body-content {
  width: 1400px;
  padding-top: 100px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}
.navbar {
  height: 50px;
}
.navbar img {
  height: 35px;
  margin: 10px;
}
.farbverlauf-Ruthardt {
  background: linear-gradient(to left, #176fb7, #003f77);
}
.validation-result {
  color: red;
}
a {
  cursor: pointer;
}
/* Logout panel */
.login-info {
  position: relative;
  display: inline-block;
}
.login-info a {
  color: black;
  text-decoration: none;
}
.logout-dropdown {
  display: none;
  position: absolute;
  right: 0px;
  background-color: #f2f2f2;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 10px;
  border-radius: 5px;
}
.logout-dropdown a {
  width: 100%;
}
.login-info:hover .logout-dropdown {
  display: block;
}
.user-profile {
  border-radius: 50%;
}
.user-profile-container {
  border: 2px solid #d4d4d4;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 5px;
  text-align: right;
  font-size: 14px;
  color: #4a4a4a;
}
.user-profile-container .container-header {
  background-color: #e6e6e6;
  border-bottom: 1px solid #d4d4d4;
  margin: -5px -5px 5px -5px;
  padding: 5px;
  font-size: 15px;
}
/*Klasse um Elemente vertikal zu zentrieren*/
.vertical-center {
  display: flex;
  align-items: center;
}
.all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
.space-around {
  display: flex;
  justify-content: space-around;
}
.align-right {
  display: flex;
  justify-content: flex-end;
}
.navbar-top-blue {
  background-color: #2d5eb3;
}
@keyframes blur-on {
  from {
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
  to {
    filter: blur(5px);
    -webkit-filter: blur(5px);
  }
}
@keyframes blur-off {
  from {
    filter: blur(5px);
    -webkit-filter: blur(5px);
  }
  to {
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*Overlay*/
.blur-effect-on {
  /* Add the blur effect */
  filter: blur(5px);
  -webkit-filter: blur(5px);
  animation: blur-on 0.2s;
}
.blur-effect-off {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
.blur-effect-animate-off {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  animation: blur-off 0.2s;
}
.overlay {
  display: none;
  opacity: 1;
  animation: show 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  padding: 55px 5px 5px 5px;
  background-color: rgba(200, 200, 200, 0.5);
  overflow-x: hidden;
  overflow-y: scroll;
}
.overlay .overlay-panel {
  position: relative;
  background-color: white;
  padding: 0px;
  margin: 20px;
  border-radius: 5px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.overlay .overlay-panel .overlay-header {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 1300px) {
  .overlay .overlay-panel {
    margin: 20px 0px;
  }
}
/*mit eigenen Farben überschreiben*/
/*btn-primary*/
.btn-primary {
  color: #fff;
  background-color: #1d62d1;
  border-color: #1d62d1;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #184694;
  border-color: #184694;
}
.btn-primary:hover {
  color: #fff;
  background-color: #184694;
  border-color: #184694;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #184694;
  background-image: none;
  border-color: #184694;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #184694;
  border-color: #184694;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #c2c2c2;
  border-color: #c2c2c2;
}
.btn-primary .badge {
  color: #184694;
  background-color: #fff;
}
/*btn-default*/
.btn-default {
  color: #333;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #b0b0b0;
  border-color: #b0b0b0;
}
.btn-default:hover {
  color: #333;
  background-color: #b0b0b0;
  border-color: #b0b0b0;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #b0b0b0;
  background-image: none;
  border-color: #b0b0b0;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #b0b0b0;
  border-color: #b0b0b0;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #c2c2c2;
  border-color: #c2c2c2;
}
.btn-default .badge {
  color: #fff;
  background-color: #b0b0b0;
  border-color: #b0b0b0;
}
/*btn-primary-light*/
.btn-primary-light {
  color: #fff;
  background-color: #4089ff;
  border-color: #4089ff;
}
.btn-primary-light:focus,
.btn-primary-light.focus {
  color: #fff;
  background-color: #3576de;
  border-color: #3576de;
}
.btn-primary-light:hover {
  color: #fff;
  background-color: #3576de;
  border-color: #3576de;
}
.btn-primary-light:active,
.btn-primary-light.active,
.open > .dropdown-toggle.btn-primary-light {
  color: #fff;
  background-color: #3576de;
  background-image: none;
  border-color: #3576de;
}
.btn-primary-light:active:hover,
.btn-primary-light.active:hover,
.open > .dropdown-toggle.btn-primary-light:hover,
.btn-primary-light:active:focus,
.btn-primary-light.active:focus,
.open > .dropdown-toggle.btn-primary-light:focus,
.btn-primary-light:active.focus,
.btn-primary-light.active.focus,
.open > .dropdown-toggle.btn-primary-light.focus {
  color: #fff;
  background-color: #3576de;
  border-color: #3576de;
}
.btn-primary-light.disabled:hover,
.btn-primary-light[disabled]:hover,
fieldset[disabled] .btn-primary-light:hover,
.btn-primary-light.disabled:focus,
.btn-primary-light[disabled]:focus,
fieldset[disabled] .btn-primary-light:focus,
.btn-primary-light.disabled.focus,
.btn-primary-light[disabled].focus,
fieldset[disabled] .btn-primary-light.focus {
  background-color: #c2c2c2;
  border-color: #c2c2c2;
}
.btn-primary-light .badge {
  color: #3576de;
  background-color: #fff;
}
/*btn-primary-light*/
.btn-clear {
  color: #b0b0b0;
  background-color: none;
  border: none;
}
.btn-clear:focus,
.btn-clear.focus {
  color: #b0b0b0;
  background-color: none;
}
.btn-clear:hover {
  color: #b0b0b0;
  background-color: none;
  box-shadow: 0px 0px 0px 1px #b0b0b0 inset;
}
.btn-clear:active,
.btn-clear.active,
.open > .dropdown-toggle.btn-clear {
  color: #b0b0b0;
  background-color: none;
  background-image: none;
}
.btn-clear:active:hover,
.btn-clear.active:hover,
.open > .dropdown-toggle.btn-clear:hover,
.btn-clear:active:focus,
.btn-clear.active:focus,
.open > .dropdown-toggle.btn-clear:focus,
.btn-clear:active.focus,
.btn-clear.active.focus,
.open > .dropdown-toggle.btn-clear.focus {
  color: #b0b0b0;
  background-color: none;
  box-shadow: 0px 0px 0px 1px #b0b0b0 inset;
}
.btn-clear.disabled:hover,
.btn-clear[disabled]:hover,
fieldset[disabled] .btn-clear:hover,
.btn-clear.disabled:focus,
.btn-clear[disabled]:focus,
fieldset[disabled] .btn-clear:focus,
.btn-clear.disabled.focus,
.btn-clear[disabled].focus,
fieldset[disabled] .btn-clear.focus {
  background-color: none;
  box-shadow: 0px 0px 0px 1px #b0b0b0 inset;
}
.btn-clear .badge {
  background-color: none;
}
/* Tooltip */
/* Tooltip container */
.rst-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */
}
/* Tooltip text */
.rst-tooltip .rst-tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}
/* Tooltip arrow */
.rst-tooltip .rst-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.rst-tooltip:hover .rst-tooltiptext {
  visibility: visible;
  opacity: 1;
}
.data-table {
  table-layout: fixed;
  border-bottom: 1px solid #eee !important;
}
.data-table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.data-table thead tr.filter-row input,
.data-table thead tr.filter-row select {
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: #f4f4f4;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.data-table thead tr.filter-row th {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.data-table thead th {
  border-top: none !important;
}
.data-table tbody tr td {
  border-top: 1px solid #eee;
}
.data-table tbody tr:first-child td {
  border-top: none;
}
@media (max-width: 767px) {
  .mobile-hidden-column {
    display: none;
  }
}
.dataTables_paginate {
  margin-top: 1rem !important;
}
.dataTables_paginate a.paginate_button {
  background: transparent !important;
}
.dataTables_processing {
  border: 1px solid #eee;
  padding: 2rem 5rem !important;
  margin: 0 !important;
  background: white !important;
  left: 50% !important;
  width: 20rem !important;
  height: auto !important;
  transform: translateX(-50%);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}