@charset "UTF-8";
:root {
  --alida-blue: #053769;
  --alida-light: #edf4f9;
  --alida-dark: #041e3c;
}

/* OpenSans regular */
@font-face {
  font-family: "Open Sans Regular";
  src: url("../Fonts/open-sans-v44-latin-regular.woff2") format("woff2"), url("../Fonts/open-sans-v44-latin-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* OpenSans SemiBold */
@font-face {
  font-family: "Open Sans Semi Bold";
  src: url("../Fonts/open-sans-v44-latin-500.woff2") format("woff2"), url("../Fonts/open-sans-v44-latin-500.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* OpenSans SemiBold Italic */
@font-face {
  font-family: "Open Sans Semi Bold Italic";
  src: url("../Fonts/open-sans-v44-latin-500italic.woff2") format("woff2"), url("../Fonts/open-sans-v44-latin-500italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* OpenSans Bold */
@font-face {
  font-family: "Open Sans Bold";
  src: url("../Fonts/open-sans-v44-latin-700.woff2") format("woff2"), url("../Fonts/open-sans-v44-latin-700.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 16px;
}

:root {
  --grid-columns: 3;
  --container-max: none;
  --container-padding: 25px;
  --container-inset: 0px;
  --gutter: 25px;
  --row-gap: 25px;
}
@media (min-width: 576px) {
  :root {
    --grid-columns: 3;
    --container-max: 800px;
    --container-padding: 44px;
    --container-inset: 0px;
    --gutter: 44px;
    --row-gap: 44px;
  }
}
@media (min-width: 1120px) {
  :root {
    --grid-columns: 3;
    --container-max: 1024px;
    --container-padding: 0px;
    --container-inset: 98px;
    --gutter: 98px;
    --row-gap: 44px;
  }
}

.container-inset, .container-fluid, .container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-padding, 25px);
}

.container {
  max-width: var(--container-max, none);
}

.container-inset {
  max-width: var(--container-max, none);
  padding-inline: calc(var(--container-padding, 25px) + var(--container-inset, 0px));
}

.row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(var(--grid-columns, 3), minmax(0, 1fr));
  column-gap: var(--gutter, 25px);
  row-gap: var(--row-gap, 25px);
}

.row .row {
  --gutter: 24px;
  --row-gap: 24px;
}

.row.g-0 {
  --gutter: 0px;
  --row-gap: 0px;
}

.row.gx-0 {
  --gutter: 0px;
}

.row.gy-0 {
  --row-gap: 0px;
}

.row.row-bleed {
  grid-column: 1/-1;
}

.row + .row {
  margin-top: var(--row-gap, 25px);
}

.col {
  grid-column-end: span 3;
}

.col-1 {
  grid-column-end: span 1;
}

.col-2 {
  grid-column-end: span 2;
}

.col-3 {
  grid-column-end: span 3;
}

.offset-0 {
  grid-column-start: auto;
}

.offset-1 {
  grid-column-start: 2;
}

.offset-2 {
  grid-column-start: 3;
}

.order-first {
  order: -1;
}

.order-last {
  order: 99;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media (min-width: 576px) {
  .col-md {
    grid-column-end: span 3;
  }
  .col-md-1 {
    grid-column-end: span 1;
  }
  .col-md-2 {
    grid-column-end: span 2;
  }
  .col-md-3 {
    grid-column-end: span 3;
  }
  .offset-md-0 {
    grid-column-start: auto;
  }
  .offset-md-1 {
    grid-column-start: 2;
  }
  .offset-md-2 {
    grid-column-start: 3;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 99;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
}
@media (min-width: 1120px) {
  .col-lg {
    grid-column-end: span 3;
  }
  .col-lg-1 {
    grid-column-end: span 1;
  }
  .col-lg-2 {
    grid-column-end: span 2;
  }
  .col-lg-3 {
    grid-column-end: span 3;
  }
  .offset-lg-0 {
    grid-column-start: auto;
  }
  .offset-lg-1 {
    grid-column-start: 2;
  }
  .offset-lg-2 {
    grid-column-start: 3;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 99;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
}
@media (max-width: 773.98px) {
  .col-md-1 {
    grid-column-end: span 3;
  }
}
.frame-layout-narrow {
  --container-max: 828px;
}

.frame-layout-fullbleed {
  --container-padding: 0px;
  --container-max: none;
}

.grid-debug .row > * {
  outline: 1px dashed rgba(255, 0, 0, 0.45);
  background: rgba(255, 0, 0, 0.04);
}

:root {
  --ff-regular: "Open Sans Regular", sans-serif;
  --ff-semibold: "Open Sans Semi Bold", sans-serif;
  --ff-semibold-it: "Open Sans Semi Bold Italic", sans-serif;
  --ff-bold: "Open Sans Bold", sans-serif;
  --body-fs: 20px;
  --body-lh: 31px;
  --h1-fs: 32px;
  --h1-lh: 40px;
  --h2-fs: 26px;
  --h2-lh: 30px;
}

@media (max-width: 767px) {
  :root {
    --body-fs: 15px;
    --body-lh: 24px;
    --h1-fs: 24px;
    --h1-lh: 43px;
    --h2-fs: 19px;
    --h2-lh: 25px;
  }
}
body {
  font-family: var(--ff-regular);
  font-size: var(--body-fs);
  line-height: var(--body-lh);
}

section {
  margin-bottom: 50px;
}
@media (min-width: 991.98px) {
  section {
    margin-bottom: 70px;
  }
}
section.address-block, section.frame-space-after-ohneabstand, section.frame-ohneabstand {
  margin-bottom: 0;
}
section.frame-layout-1 {
  padding: 50px 0;
  background-color: #edf4f9;
}

.posRelative {
  position: relative;
}

.alida-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
}

.alida-logo-bar {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.alida-logo-bar .logo {
  display: inline-block;
  height: 41px;
  width: auto;
}
.alida-logo-bar .logo .logoPic svg {
  height: 41px;
  width: auto;
}
@media (min-width: 768px) {
  .alida-logo-bar .logo {
    height: 83px;
  }
  .alida-logo-bar .logo .logoPic svg {
    height: 83px;
  }
}
@media (max-width: 1120px) {
  .alida-logo-bar > .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

main {
  padding-top: 188px;
}
main > section:first-child {
  padding-top: 40px;
}

.alida-footer {
  background: var(--alida-blue);
  color: #fff;
  padding: 50px 0 30px;
}
.alida-footer .footerRow {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .alida-footer .footerRow > div {
    width: 100%;
  }
}

.alida-footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.ce-gallery img {
  display: unset;
}

.ce-intext[data-ce-columns="1"],
.ce-intext [data-ce-columns="2"],
.ce-intext [data-ce-columns="3"],
.ce-intext [data-ce-columns="4"] {
  width: 100%;
}

.ce-intext [data-ce-columns="2"] .ce-column,
.ce-center [data-ce-columns="2"] .ce-column {
  width: 48%;
  margin-right: 2%;
}

.ce-intext [data-ce-columns="3"] .ce-column,
.ce-center [data-ce-columns="3"] .ce-column {
  width: 31%;
  margin-right: 2%;
}

.ce-intext [data-ce-columns="4"] .ce-column,
.ce-center [data-ce-columns="4"] .ce-column {
  width: 23%;
  margin-right: 2%;
}

.ce-intext.ce-right .ce-gallery {
  margin-left: 0;
}

.ce-intext.ce-left .ce-gallery {
  margin-right: 0;
}

.ce-textpic,
.ce-image,
.ce-nowrap .ce-bodytext,
.ce-uploads li,
.ce-uploads div {
  overflow: visible;
}

@media screen and (min-width: 601px) {
  .ce-intext [data-ce-columns="1"],
  .ce-intext [data-ce-columns="2"],
  .ce-intext [data-ce-columns="3"],
  .ce-intext [data-ce-columns="4"] {
    width: 50%;
  }
  .ce-intext.ce-right .ce-gallery {
    margin-left: 1rem;
  }
  .ce-intext.ce-left .ce-gallery {
    margin-right: 1rem;
  }
  .ce-textpic,
  .ce-image,
  .ce-nowrap .ce-bodytext,
  .ce-uploads li,
  .ce-uploads div {
    overflow: hidden;
  }
}
.ce-gallery figure.video {
  display: block;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100% !important;
  height: 100% !important;
}

.ce-center:has(.video-embed) .ce-inner {
  position: relative;
  float: none;
  right: -50%;
}

.ce-left:has(.video-embed) .ce-gallery,
.ce-column:has(.video-embed) {
  float: none;
}

.ce-center:has(.video-embed) .ce-outer {
  position: relative;
  float: none;
  right: 50%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--alida-blue);
  color: #fff;
  font-family: "Open Sans Bold", sans-serif;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

.alida-nav-main {
  background: var(--alida-blue);
}
@media (max-width: 1120px) {
  .alida-nav-main > .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.alida-nav-main .nav {
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 1120px) {
  .alida-nav-main .nav {
    width: 100%;
    justify-content: space-between;
  }
}
.alida-nav-main .nav-link {
  color: #fff !important;
  font-family: var(--ff-bold);
  font-size: 20px;
  line-height: 30px;
  padding: 7px 20px;
}
.alida-nav-main .nav-link:hover, .alida-nav-main .nav-link.active {
  background: var(--alida-dark);
}

.alida-circle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 900;
  position: fixed;
  right: -24px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--alida-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
  font-family: var(--ff-bold);
  font-size: 22px;
  line-height: 31px;
  text-decoration: none;
  border: 0;
  padding: 0;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.alida-circle-btn:hover {
  background: var(--alida-dark);
  color: #fff;
}
.alida-circle-btn.btn1 {
  top: 210px;
}
.alida-circle-btn.btn2 {
  top: 380px;
}
.alida-circle-btn.btn3 {
  top: 550px;
  background-color: white;
  color: var(--alida-blue);
  font-size: 1.25rem;
  line-height: 1.2;
  border: 9px solid var(--alida-blue);
}
.alida-circle-btn .icon svg {
  width: 93px;
  height: 17px;
  margin-top: 2px;
}

.alida-breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
}
.alida-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.alida-breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #555;
}
.alida-breadcrumb li + li::before {
  content: " > ";
  padding: 0 8px;
  color: #888;
  white-space: pre;
}
.alida-breadcrumb a {
  color: #555;
  text-decoration: none;
}
.alida-breadcrumb a:hover {
  text-decoration: underline;
}
.alida-breadcrumb li[aria-current=page] {
  color: #222;
}

.arbeitenRow {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.arbeitenRow > a {
  display: block;
  width: 48%;
  text-align: center;
  background-color: #053769;
  color: white;
  font-family: "Open Sans Regular", sans-serif;
  border-radius: 9px;
  line-height: 45px;
}

.alida-mobile-kontakt {
  display: inline-block;
  line-height: 41px;
  border: 1px solid var(--alida-blue);
  color: var(--alida-blue);
  background: #fff;
  font-weight: 700;
  padding: 0 14px;
  border-radius: 9px;
  text-decoration: none;
}

.alida-mobile-menu-bar {
  background: var(--alida-blue);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.alida-mobile-menu-bar .menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .alida-mobile-menu-bar .menu-icon {
    gap: 3px;
  }
}

#btnMenu.is-open .menu-icon {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  gap: 0;
}

.alida-mobile-menu-bar .menu-icon span,
.alida-circle-btn .menu-icon span {
  display: block;
  width: 35px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
@media (min-width: 768px) {
  .alida-mobile-menu-bar .menu-icon span,
  .alida-circle-btn .menu-icon span {
    width: 62px;
    height: 4px;
  }
}

.alida-circle-btn .menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

#navSubLayer {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 180px;
  background: #fff;
  z-index: 1025;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
#navSubLayer.open {
  display: block;
}
@media (max-width: 767px) {
  #navSubLayer.open .closeRow {
    display: none;
  }
}
#navSubLayer.open .closeRow #closeSubmenu {
  position: absolute;
  right: 50px;
  top: 20px;
  padding-right: 40px;
  border: none;
  font-family: "Open Sans Bold", sans-serif;
  color: #053769;
  background-color: transparent;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: right 50%;
}

.subMenuRow {
  display: flex !important;
  padding: 0;
}
.subMenuRow .colMenu1 {
  display: none;
  max-width: 300px;
  color: var(--alida-blue);
}
@media (min-width: 1024px) {
  .subMenuRow .colMenu1 {
    display: block;
  }
}
.subMenuRow .colMenu2,
.subMenuRow .colMenu3 {
  padding-top: 30px;
  font-size: 24px;
}
.subMenuRow .colMenu2 li,
.subMenuRow .colMenu3 li {
  margin-bottom: 20px;
}
.subMenuRow .colMenu2 li span,
.subMenuRow .colMenu3 li span {
  line-height: 24px;
}
.subMenuRow .colMenu2 {
  width: 70%;
}
.subMenuRow .colMenu3 {
  margin-top: 30px;
  padding-top: 0;
  border-left: 1px solid #053769;
}
.subMenuRow .colMenu3 .nav-link {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .subMenuRow {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  #navSubLayer {
    top: 99px;
    max-height: calc(100vh - 160px);
  }
}
.nav-close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: var(--alida-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.nav-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1240px) {
  .nav-link-list.linksMiddle {
    display: flex;
    flex-wrap: wrap;
  }
  .nav-link-list.linksMiddle > li {
    width: 48%;
  }
}
.nav-link-list .nav-link > span {
  color: #053769;
}

li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #222;
  padding: 10px 0;
}
li a.large li a {
  font-size: 1.25rem;
  font-weight: 600;
}
li a li a:hover {
  color: var(--alida-blue);
}

.nav-active-tile {
  background: var(--alida-blue);
  color: #fff;
  padding: 16px;
}
.nav-active-tile.mobile a {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.mobile-nav-group {
  border-bottom: 1px solid #ddd;
}
.mobile-nav-group .sub li {
  border-bottom: 1px solid #eee;
}

.mobile-fixed-links {
  border-top: 2px solid var(--alida-blue);
}
.mobile-fixed-links li {
  border-bottom: 2px solid var(--alida-blue);
}

.alida-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: block;
  padding: 8px 0;
}
.alida-footer a span::after {
  content: "  >";
}
.alida-footer .menuLeft {
  width: 70%;
}
.alida-footer .menuLeft ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alida-footer .menuLeft ul li {
  list-style: none;
}
.alida-footer .menuRight {
  width: 30%;
}
.alida-footer .menuRight a::after {
  content: "  >";
}

.alida-footer a:hover {
  color: #cfe0ff;
}

.search_button {
  order: 2;
  margin-right: 1rem;
}

.search_button:hover {
  cursor: pointer;
}

.search_button {
  margin-right: 0;
  margin-left: 1rem;
}

.searchlightbox {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sichtbarer Zustand der Lightbox */
.searchlightbox.visible {
  visibility: visible;
  opacity: 1;
}

/* Inhalt der Lightbox */
.searchlightbox .lightbox-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  min-width: 315px;
  width: 800px;
  max-width: 75vw;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Schließbutton */
.searchlightbox .close {
  color: #aaa;
  position: absolute;
  top: -10px;
  right: 5px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.searchlightbox .close:hover,
.searchlightbox .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.tx-indexedsearch-searchbox-sword.form-control {
  width: 70%;
  display: inline;
}

.lightbox-content .tx-indexedsearch-info-sword,
.lightbox-content .tx-indexedsearch-info-sword-word,
.lightbox-content .tx-indexedsearch-browsebox,
.lightbox-content .tx-indexedsearch-res {
  display: none;
}

.lightbox-content section {
  padding: 10px 0;
}

.tx-indexedsearch-info-sword {
  margin: 1rem 0 1rem 0;
}

span.tx-indexedsearch-info-sword-word {
  font-weight: bold;
}

.tx-indexedsearch-title {
  font-size: 120%;
}

.tx-indexedsearch-res {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

ul.tx-indexedsearch-browsebox {
  margin: 1em 0;
  padding: 0;
  list-style-type: none;
}
ul.tx-indexedsearch-browsebox li {
  display: inline-block;
  margin-right: 1em;
}
ul.tx-indexedsearch-browsebox li a {
  display: block;
  padding: 8px;
  border: 1px solid #ccc;
}

#contentSlider .content-slider {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

#contentSlider .slide-image {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}

#contentSlider .slide-overlay {
  background-color: rgba(13, 71, 161, 0.85);
  color: #fff;
  padding: 1.5rem 2rem;
}

#contentSlider .slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

#contentSlider .slide-title {
  font-size: 1.5rem;
  font-weight: 700;
}

#contentSlider .slide-quote {
  font-style: italic;
  font-weight: 700;
}

#contentSlider .carousel-control-prev,
#contentSlider .carousel-control-next {
  width: 5%;
  z-index: 5;
}

#contentSlider .carousel-control-prev,
#contentSlider .carousel-control-next {
  top: 0;
  bottom: auto;
  height: 56.25vw;
  max-height: none;
}

#contentSlider .carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

#contentSlider .carousel-indicators-custom button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background-color: rgba(13, 71, 161, 0.4);
  transition: background-color 0.2s;
}

#contentSlider .carousel-indicators-custom button.active {
  background-color: rgb(13, 71, 161);
}

.teaser-layout-servicewohnen .portal-tile {
  max-width: 230px;
  margin: 0 auto;
}
.teaser-layout-servicewohnen .portal-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.teaser-layout-servicewohnen .portal-circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.teaser-layout-servicewohnen .portal-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
}
.teaser-layout-servicewohnen .icnAmbulant {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
}

.teaserSingleTitle {
  font-family: "Open Sans Bold", sans-serif;
  color: #053769;
}

#portalKacheln3 .portal-tile {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
#portalKacheln3 .portal-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e8eef7;
  display: flex;
  align-items: center;
  justify-content: center;
}
#portalKacheln3 .portal-circle img,
#portalKacheln3 .portal-circle svg {
  display: block;
  width: 55%;
  height: 55%;
  object-fit: contain;
  border-radius: 0;
}
#portalKacheln3 .portal-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
}
#portalKacheln3 .icon-circle {
  aspect-ratio: 1/1;
  width: 100%;
  background-color: #d6e6f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
#portalKacheln3 .icon-circle svg {
  width: 45%;
  height: 45%;
  fill: #0d47a1;
  margin-top: -15%;
}
#portalKacheln3 .icon-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33%;
  background-color: #0d47a1;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  z-index: 2;
}
#portalKacheln3 a:hover .icon-circle {
  background-color: #c2d8ee;
}

.alida-accordion .accordion-item {
  background-color: transparent;
}
.alida-accordion .accordion-button {
  border-radius: 6px !important;
  color: #003b7a;
  font-weight: 700;
  box-shadow: none;
  padding: 1rem 1.25rem;
}
.alida-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 59, 122, 0.15);
}

.alida-accordion-blue .accordion-button {
  background-color: #e6f0fa;
}
.alida-accordion-blue .accordion-button:not(.collapsed) {
  background-color: #e6f0fa;
  color: #003b7a;
}

.alida-accordion-white .accordion-button {
  background-color: #ffffff;
  border: 1px solid #e6f0fa;
}
.alida-accordion-white .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #003b7a;
}
.alida-accordion-white .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003b7a'%3E%3Cpath d='M3.204 5h9.592L8 10.481 3.204 5zm-.753.659l4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z'/%3E%3C/svg%3E");
  transition: transform 0.2s ease-in-out;
}

.alida-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.alida-accordion .accordion-body {
  border: 0;
}
.alida-accordion .accordion-body a {
  color: #003b7a;
  text-decoration: none;
}
.alida-accordion .accordion-body a:hover {
  text-decoration: underline;
}

/* Beispiel Checklisten-Icon */
ul.list-check {
  padding-left: 0;
  list-style-type: none;
}
ul.list-check li:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 900 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f272";
  margin-right: 5px;
  color: #0f5132;
}

/*# sourceMappingURL=custom.min.css.map */
