@charset "UTF-8";
.bg-unia-red {
  background-color: #cc0000 !important;
}

.fg-unia-red {
  color: #cc0000 !important;
}

.bg-unia-lightgray {
  background-color: #f7f7f7 !important;
}

.fg-unia-lightgray {
  color: #f7f7f7 !important;
}

.bg-unia-darkgray {
  background-color: #4a4a4a !important;
}

.fg-unia-darkgray {
  color: #4a4a4a !important;
}

.opacity-40 {
  opacity: 0.4 !important;
}

.validation-summary-valid {
  display: none;
}

span.field-validation-error {
  color: #cc0000 !important;
}

input.input-validation-error {
  border: 1px solid #cc0000 !important;
}

.invalid {
  border: 1px solid #cc0000;
}

.btn-link {
  border: none;
  color: #cc0000;
  background-color: transparent;
}

.enteredTable tr td:first-child {
  padding-left: 0px;
}

.enteredTable td {
  padding: 4px;
}

.fit-content {
  height: fit-content;
  height: -moz-fit-content;
}

.autosuggest__results-container {
  max-height: 400px;
  overflow-y: auto;
}

a,
.figure-caption a,
.modal-body a,
.branch-link {
  color: #cc0000;
  text-decoration: none;
}

a:hover {
  color: #cc0000;
  text-decoration: underline;
}

.salary-small {
  color: #ab1214;
}

.salary-big {
  color: #660000;
}

.results th {
  text-align: center !important;
  vertical-align: bottom !important;
  border: none;
}

.results td {
  border: none !important;
}

.black-border {
  border-bottom: 1px solid black !important;
}

.no-border {
  border: none !important;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: white;
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
  background-color: #dee2e6;
}

.card-header button {
  color: black !important;
}

.autosuggest__results-container {
  position: relative;
  width: 100%;
}

.autosuggest__results {
  font-weight: 300;
  margin: 0;
  width: 100%;
  border: 1px solid #e0e0e0;
  overflow-y: auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: white;
  padding: 0px;
}

.autosuggest__results ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.autosuggest__results .autosuggest__results_item {
  cursor: pointer;
  border-bottom: 1px solid lightgray;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#autosuggest ul:nth-child(1) > .autosuggest__results_title {
  border-top: none;
}

.autosuggest__results .autosuggest__results_title {
  color: gray;
  font-size: 11px;
  margin-left: 0;
  padding: 15px 13px 5px;
  border-top: 1px solid lightgray;
}

.autosuggest__results .autosuggest__results_item:active,
.autosuggest__results .autosuggest__results_item:hover,
.autosuggest__results .autosuggest__results_item:focus,
.autosuggest__results .autosuggest__results_item.autosuggest__results_item-highlighted {
  background-color: #f6f6f6;
}

[data-toggle=collapse] i:before {
  content: "\f107";
}

[aria-expanded=true] i:before {
  content: "\f107";
}

[aria-expanded=false] i:before {
  content: "\f105";
}

[data-toggle=collapse].collapsed i:before {
  content: "\f105";
}

div.link-light > a {
  color: white !important;
}

.loader-modal-content {
  border: none !important;
  background-color: transparent !important;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 1s;
}

.fade-enter {
  opacity: 0;
}

.fade-leave {
  opacity: 0;
}

#footer-contact a {
  color: white !important;
  text-decoration: underline !important;
}

@media print {
  .container-content-inner {
    display: block !important;
  }
}
.btn {
  white-space: normal !important;
  word-break: normal !important;
}

.card-header {
  background: #cc0000 !important;
}

.btn-danger {
  border: none;
  background: #cc0000 !important;
}

/* CSS für den Schaltknopf */
/* CSS für das Container-Div */
.switch-container {
  display: inline-flex;
  align-items: center;
  height: 34px;
}

/* CSS für das Label */
.switch-label {
  margin-right: 10px;
  font-size: 16px;
  line-height: 1;
}

/* CSS für den Schalter */
.switch {
  position: relative;
  display: inline-flex;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #cc0000;
}

input:focus + .slider {
  box-shadow: 0 0 1px #ccc;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Runde Schaltknöpfe */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* CSS END für den Schaltknopf */