/*
******************************************************************
(c) sinntun.codes
******************************************************************
*/

/*****************************************************************
**** Commons (PageElement-übergreifend)
******************************************************************/

.contentbox,
.contentbox-main,
.contentbox-info {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

/*
.contentbox.highlighted {
  overflow: visible;
}

.contentbox.highlighted + .contentbox.highlighted {
  margin-top: -55px;
  padding-top: 55px;
}
*/

/*** .contentbox
allgemeines Content Element
******************************************************************/

.contentbox {
  width: 100%;
}

/*** .contentbox-main
allgemeines Content Element in der Main-Spalte
******************************************************************/

.contentbox-main {
  margin-bottom: 55px;
}

/*** .contentbox-info
allgemeines Element in der Infospalte
******************************************************************/

.contentbox-info {
  clear: both;
  margin-bottom: 55px;
}

/*** Highlighting
******************************************************************/

.contentbox.highlighted {
  background-color: #fff;
  overflow: visible;
  padding-bottom: 35px;
}

.contentbox.highlighted:has(+ .contentbox.highlighted){
  margin-bottom: -100px;
  padding-bottom: 155px;
}


.contentbox .background_highlight {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc( -1 * (100vw - 1400px) / 2);
  right: calc( -1 * (100vw - 1400px) / 2);
  background: #fff;
  z-index: -1;
}

.contentbox:not(.highlighted) + .contentbox.highlighted,
#main-elements-container .contentbox.highlighted:first-child {
  padding-top: 15px;
  margin-top: 100px;
}

.contentbox:not(.highlighted) + .contentbox.highlighted:before,
#main-elements-container .contentbox.highlighted:first-child:before {
  content: '';
  position: absolute;
  top: -60px;
  bottom: 100%;
  left: calc(-1*(100vw - 1400px)/2);
  right: calc(-1*(100vw - 1400px)/2);
  background: url('/_images/element-wave.png') no-repeat;
  background-size: 100% 100%;
  transform: translateY(3px);
  z-index: -10;
}

.contentbox.highlighted:has(+ .contentbox:not(.highlighted)),
#main-elements-container .contentbox.highlighted:last-child{
  padding-bottom: 45px;
  margin-bottom: 100px;
}

.contentbox.highlighted:has(+ .contentbox:not(.highlighted)):after,
#main-elements-container .contentbox.highlighted:last-child:after {
  content: '';
  position: absolute;
  top: 100%;
  bottom: -60px;
  left: calc(-1*(100vw - 1400px)/2);
  right: calc(-1*(100vw - 1400px)/2);
  background: url('/_images/element-wave.png') no-repeat;
  background-size: 100% 100%;
  transform: translateY(-3px) rotate(180deg);
  z-index: -10;
}

@media only screen and (min-width: 1920px){
  .contentbox .background_highlight {
    left: -260px;
    right: -260px;
  }

  .contentbox:not(.highlighted) + .contentbox.highlighted:before,
  #main-elements-container .contentbox.highlighted:first-child:before {
    left: -260px;
    right: -260px;
  }

  .contentbox.highlighted:has(+ .contentbox:not(.highlighted)):after,
  #main-elements-container .contentbox.highlighted:last-child:after {
    left: -260px;
    right: -260px;
  }
}

@media only screen and (max-width: 1500px){
  .contentbox .background_highlight {
    left: calc(-1*(100vw - 1300px) / 2);
    right: calc(-1*(100vw - 1300px) / 2);
  }

  .contentbox:not(.highlighted) + .contentbox.highlighted:before,
  #main-elements-container .contentbox.highlighted:first-child:before {
    left: calc(-1*(100vw - 1300px) / 2);
    right: calc(-1*(100vw - 1300px) / 2);
  }

  .contentbox.highlighted:has(+ .contentbox:not(.highlighted)):after,
  #main-elements-container .contentbox.highlighted:last-child:after {
    left: calc(-1*(100vw - 1300px) / 2);
    right: calc(-1*(100vw - 1300px) / 2);
  }
}

@media only screen and (max-width: 1400px){
  .contentbox .background_highlight {
    left: -50px;
    right: -50px;
  }

  .contentbox:not(.highlighted) + .contentbox.highlighted:before,
  #main-elements-container .contentbox.highlighted:first-child:before {
    left: -50px;
    right: -50px;
  }

  .contentbox.highlighted:has(+ .contentbox:not(.highlighted)):after,
  #main-elements-container .contentbox.highlighted:last-child:after {
    left: -50px;
    right: -50px;
  }
}

@media only screen and (max-width: 520px){
  .contentbox:not(.highlighted) + .contentbox.highlighted:before,
  #main-elements-container .contentbox.highlighted:first-child:before,
  .contentbox.highlighted:has(+ .contentbox:not(.highlighted)):after,
  #main-elements-container .contentbox.highlighted:last-child:after {
    background: url('/_images/element-wave-mobile.png') no-repeat;
    top: -20px;
    bottom: -20px;
    background-size: 100% 20px;
  }

  .contentbox:not(.highlighted) + .contentbox.highlighted,
  #main-elements-container .contentbox.highlighted:first-child {
    margin-top: 70px;
  }

  .contentbox.highlighted:has(+ .contentbox:not(.highlighted)),
  #main-elements-container .contentbox.highlighted:last-child {
    margin-bottom: 70px;
  }
}

/*** .text-image
zweispaltiges Text Bild Element
******************************************************************/

.pageelement-text-image .container {
  display: flex;
  gap: 35px;
  font-size: 18px;
}

.pageelement-text-image .container .left,
.pageelement-text-image .container .right {
  display: flex;
  gap: 35px;
  flex-flow: column;
  width: 50%;
}

.pageelement-text-image .container .image {
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 520px){
  .pageelement-text-image .container {
    flex-flow: column;
  }

  .pageelement-text-image .container .left,
  .pageelement-text-image .container .right {
    width: 100%;
  }
}

/*** .text-image-wide
zweispaltiges Text Bild Element
******************************************************************/

.pageelement-text-image-wide .container {
  display: flex;
  flex-flow: column;
  gap: 20px;
  font-size: 18px;
}

.pageelement-text-image-wide .container .image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.pageelement-text-image-wide .container .text {
  max-width: calc(50% - 17.5px);
}

@media only screen and (max-width: 1024px){
  .pageelement-text-image-wide .container .text {
    max-width: 1000px;
  }
}


/*** .text
zweispaltiges Text Bild Element
******************************************************************/

.pageelement-text .content {
  display: flex;
  gap: 35px;
  font-size: 18px;
}

.pageelement-text .headline {
  margin-bottom: 20px;
}

.pageelement-text .container .left,
.pageelement-text .container .right {
  display: flex;
  gap: 35px;
  flex-flow: column;
  width: 50%;
}

.pageelement-text .container .image {
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 520px){
  .pageelement-text .content {
    flex-flow: column;
  }

  .pageelement-text .container .left,
  .pageelement-text .container .right {
    width: 100%;
  }
}

/*** .text-image-wide
zweispaltiges Text Bild Element
******************************************************************/

.pageelement-images .container {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  font-size: 18px;
}

.pageelement-images .container .image {
  max-width: 340px;
  border-radius: 10px;
  overflow: hidden;
  width: calc(25% - 10px);
}

@media only screen and (max-width: 1024px){
  .pageelement-images .container .image {
    width: calc(33.33% - 9px);
  }
}

@media only screen and (max-width: 520px){
  .pageelement-images .container .image {
    width: calc(50% - 7px);
  }
}

/*** .downloads-main
zweispaltiges Text Bild Element
******************************************************************/
.pageelement-downloads-main.no-margin {
  margin-bottom: 10px;
}

.pageelement-downloads-main .headline {
  margin-bottom: 25px;
}

.pageelement-downloads-main .download-list {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.pageelement-downloads-main .download-link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 24px;
  padding: 20px;
  background: #fff;
  border: #ff8b00 solid 2px;
  border-radius: 10px;
  font-family: 'Open Sans Bold';
  display: flex;
  align-items: center;
}

.pageelement-downloads-main .download-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 100;
  content: "\f56d";
  width: 25px;
  display: inline-block;
  color: #ff8b00;
  font-size: 30px;
  margin-right: 35px;
}

@media only screen and (max-width: 520px) {
  .pageelement-downloads-main .download-link {
    font-size: 20px;
    padding: 10px;
  }

  .pageelement-downloads-main .download-link::before {
    width: 5px;
  }
}

/*testimonial*/

.pageelement-testimonial .headline {
  text-align: center;
  margin-bottom: 20px;
}

.pageelement-testimonial .container {
  position: relative;
  overflow: hidden;

  text-align: center;
  font-size: 26px;
  font-family: 'Open Sans Italic';
  margin-bottom: 13px;
  background: #ff8b0025;
  border-radius: 10px;
}

.pageelement-testimonial .content {
  display: flex;
  transition: transform 0.5s ease;
}

.pageelement-testimonial .testimonial-item {
  flex: 0 0 100%;
  padding: 40px 300px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-flow: column;
  gap: 13px;
  margin: auto;
}

.pageelement-testimonial .testimonial-item .quote {
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
}

.pageelement-testimonial .testimonial-item .source {
  font-size: 20px;
  font-style: italic;
  font-weight: normal;
  color: #FF8B00;
}

.pageelement-testimonial .control-left,
.pageelement-testimonial .control-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  height: 100%;
  width: 70px;
  transition: opacity 0.5s ease;
}

.control-left.hidden,
.control-right.hidden {
  opacity: 0;
}

.pageelement-testimonial .control-left:before,
.pageelement-testimonial .control-right:before {
  content: '\f054';
  font-family: 'Font Awesome 6 Pro';
  color: #ff8b00;
  font-size: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
}

.pageelement-testimonial .control-left:before{
  content:'\f053';
}

.pageelement-testimonial .control-left {
  left: 0;
}

.pageelement-testimonial .control-right {
  right: 0;
}

.pageelement-testimonial .nav-dots {
  display: flex;
  gap: 10px;
  margin: auto;
  max-width: 250px;
  width: fit-content;
}


.pageelement-testimonial .nav-dot {
  background: #707070;
  height: 15px;
  width: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.pageelement-testimonial .nav-dot:first-child:last-child {
  display: none;
}

.pageelement-testimonial .nav-dot.active {
  background: #ff8b00;
}

@media only screen and (max-width: 1450px){
  .pageelement-testimonial .testimonial-item {
    padding: 40px 200px;
  }
}

@media only screen and (max-width: 1024px){
  .pageelement-testimonial .testimonial-item {
    padding: 40px 90px;
  }
}

@media only screen and (max-width: 520px){
  .pageelement-testimonial .testimonial-item {
    padding: 40px 20px;
  }

  .pageelement-testimonial .control-left::before,
  .pageelement-testimonial .control-right::before {
    display: none;
  }
}

/*** .teaserboxes
******************************************************************/

.pageelement-teaserboxes .headline {
  margin-bottom: 20px;
}

.pageelement-teaserboxes .content {
  display: flex;
  gap: 25px;
  justify-content: stretch;
}

.pageelement-teaserboxes .container .teaserbox {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 25px;
  padding: 35px;
  box-sizing: border-box;
  height: 100%;
}



.pageelement-teaserboxes .container .teaserbox .headline {
  font-size: 22px;
  margin-bottom: 0px;
}

.pageelement-teaserboxes .container .teaserbox .text {
  font-size: 20px;
  color: #000;
}

.pageelement-teaserboxes .container .teaserbox .image {
  max-width: 428px;
}

.pageelement-teaserboxes .container .teaserbox .link {
  font-size: 18px;
  color: #fff;
  margin-right: auto;
  padding: 8px 20px;
  border-radius: 5px;
}

.pageelement-teaserboxes .container .teaserbox-container {
  width: 100%;
  display: flex;
  flex-flow: column;
}

.pageelement-teaserboxes .container .teaserbox-container .border-top,
.pageelement-teaserboxes .container .teaserbox-container .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.pageelement-teaserboxes .container .teaserbox-container .border-top {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.pageelement-teaserboxes .container .teaserbox-container .border-bottom {
  margin-top: -1px;
}

@media only screen and (max-width: 1024px) {
  .pageelement-teaserboxes .content {
    flex-wrap: wrap;
  }

  .pageelement-teaserboxes .container .teaserbox-container .border-top,
  .pageelement-teaserboxes .container .teaserbox-container .border-bottom {
    height: 30px;
  }
}

@media only screen and (max-width: 520px){
  .pageelement-teaserboxes .container .teaserbox-container .border-top,
  .pageelement-teaserboxes .container .teaserbox-container .border-bottom {
    height: unset;
    min-height: 23px;
  }
}


/*** .teaserbox-wide
******************************************************************/

.pageelement-teaserbox-wide .headline {
  margin-bottom: 20px;
}

.pageelement-teaserbox-wide .content {
  display: flex;
  gap: 25px;
  justify-content: stretch;
}

.pageelement-teaserbox-wide .container .teaserbox {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 25px;
  padding: 35px;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
}

.pageelement-teaserbox-wide .container .teaserbox.has-image {
  padding: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.pageelement-teaserbox-wide .container .teaserbox .headline {
  font-size: 22px;
  margin-bottom: 0px;
  max-width: 1000px;
  font-family: 'Open Sans Bold';
}

.pageelement-teaserbox-wide .container .teaserbox .text {
  font-size: 18px;
  color: #000;
  max-width: 1000px;
}

.pageelement-teaserbox-wide .container .teaserbox .image {
  order: 1;
  width: 630px;
  min-width: 630px;
  margin: 40px 35px 40px 0px;
}

.pageelement-teaserbox-wide .container .teaserbox .image img {
  border-radius: 10px;
}

.pageelement-teaserbox-wide .container .teaserbox.has-image .text-content {
  padding: 35px 0 35px 35px;
  display: flex;
  flex-flow: column;
  gap: 25px;
}

.pageelement-teaserbox-wide .container .teaserbox .link {
  font-size: 18px;
  margin-right: auto;
  padding: 8px 20px;
  border-radius: 5px;
}

.pageelement-teaserbox-wide .container .teaserbox-container {
  width: 100%;
  display: flex;
  flex-flow: column;
}

.pageelement-teaserbox-wide .container .teaserbox-container .border-top,
.pageelement-teaserbox-wide .container .teaserbox-container .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.pageelement-teaserbox-wide .container .teaserbox-container .border-top {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.pageelement-teaserbox-wide .container .teaserbox-container .border-bottom {
  margin-top: -1px;
}

@media only screen and (max-width: 1400px){
  .pageelement-teaserbox-wide .container .teaserbox .image {
    order: 1;
    width: 500px;
    min-width: 500px;
  }
}

@media only screen and (max-width: 1024px) {
  .pageelement-teaserbox-wide .content {
    flex-wrap: wrap;
  }

  .pageelement-teaserbox-wide .container .teaserbox .image {
    min-width: unset;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
  }

  .pageelement-teaserbox-wide .container .teaserbox .image img {
    margin-right: unset;
  }

  .pageelement-teaserbox-wide .container .teaserbox.has-image {
    flex-flow: column;
  }

  .pageelement-teaserbox-wide .container .teaserbox.has-image .text-content {
    padding: 35px 35px 0px 35px;
  }

}

/*** .contactperson
******************************************************************/
.pageelement-contactperson .headline {
  margin-bottom: 20px;
}

.pageelement-contactperson .content-container {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ff8c00;
}

.pageelement-contactperson .content-container .left,
.pageelement-contactperson .content-container .right {
  width: 50%;
}

.pageelement-contactperson .content-container .left .image {
  height: 100%;
}

.pageelement-contactperson .content-container .left .image img {
  height: 100%;
  object-fit: cover;
}

.pageelement-contactperson .content-container .right {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.pageelement-contactperson .content-container .right .name {
  font-family: 'Open Sans Bold';
}

.pageelement-contactperson .content-container .right .contact {
  margin-top: 45px;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.pageelement-contactperson .content-container .right .contact .telephone,
.pageelement-contactperson .content-container .right .contact .email,
.pageelement-contactperson .content-container .right .contact .availability {
  display: flex;
  gap: 6px;
}

.pageelement-contactperson .content-container .right .contact .telephone:before {
  content: '\f095';
  font-family: 'Font Awesome 6 Pro';
}

.pageelement-contactperson .content-container .right .contact .email:before {
  content: '\f0e0';
  font-family: 'Font Awesome 6 Pro';
}

.pageelement-contactperson .content-container .right .contact .availability:before {
  content: '\f073';
  font-family: 'Font Awesome 6 Pro';
}

.pageelement-contactperson .container .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  margin-top: -1px;
  min-height: 23px;
}

@media only screen and (max-width: 1024px){
  .pageelement-contactperson .content-container .left {
    width: 60%;
  }

  .pageelement-contactperson .content-container .right {
    width: 40%;
  }
}

@media only screen and (max-width: 800px){
  .pageelement-contactperson .content-container {
    flex-flow: column;
    gap: 30px;
  }

  .pageelement-contactperson .content-container .left,
  .pageelement-contactperson .content-container .right {
    width: 100%
  }

  .pageelement-contactperson .content-container .right {
    margin: 0px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }
}

/*** .overviewpages-main
******************************************************************/

.overviewpages-main .overview-item-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.overviewpages-main .overview-item-container .overview-item {
  width: calc(33.33% - 17px);
  display: flex;
  flex-flow: column;
}

.overviewpages-main .overview-item-container.width-2 .overview-item {
  width: calc(50% - 13px);
}

.overviewpages-main .overview-item-container.width-1 .overview-item {
  width: 100%;
}

.overviewpages-main .overview-item-container .overview-item .border-top,
.overviewpages-main .overview-item-container .overview-item .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  min-height: 23px;
  max-height: 30px;
}

.overviewpages-main .overview-item-container .overview-item .border-top {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.overviewpages-main .overview-item-container .overview-item .border-bottom {
  margin-top: -1px;
}

.overviewpages-main .overview-item-container .overview-item .container {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 25px;
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 20px;
  overflow: hidden;
}

.overviewpages-main .overview-item-container .overview-item.no-image .container {
  padding-top: 20px;
}

.overviewpages-main .overview-item-container.width-1 .overview-item .container {
  flex-flow: row;
  padding-bottom: 0;
}

.overviewpages-main .overview-item-container .overview-item .container .text-container {
  display: flex;
  flex-flow: column;
  gap: 15px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.overviewpages-main .overview-item-container.width-1 .overview-item .container .text-container {
  padding: 30px 30px 30px 5px;
  align-items: flex-start;
  width: calc(100% - 475px);
}

.overviewpages-main .overview-item-container .overview-item .container .text-container h2 {
  margin-bottom: 0px;
  font-size: 22px;
}
.overviewpages-main .overview-item-container.width-2 .overview-item .container .text-container h2,
.overviewpages-main .overview-item-container.width-3 .overview-item .container .text-container h2 {
  text-align: center;
}

.overviewpages-main .overview-item-container .overview-item .container .text-container .link {
  padding: 5px 50px;
  border-radius: 5px;
  max-width: 90%;
  box-sizing: border-box;
  text-align: center;
}

.overviewpages-main .overview-item-container .overview-item .container .text-container .text {
  color: #000;
  max-width: 90%;
  padding: 0px 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
}

.overviewpages-main .overview-item-container.width-1 .overview-item .container .text-container .text {
  padding: 0;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .overviewpages-main .overview-item-container .overview-item .container .text-container .link {
    width: 500px;
  }

  .overviewpages-main .overview-item-container .overview-item,
  .overviewpages-main .overview-item-container.width-2 .overview-item {
    width: 100%;
  }

  .overviewpages-main .overview-item-container.width-1 .overview-item .container {
    flex-flow: column;
    padding-bottom: 20px;
  }

  .overviewpages-main .overview-item-container.width-1 .overview-item .container .text-container {
    padding: 0;
    align-items: center;
    width: unset;
  }

  .overviewpages-main .overview-item-container.width-1 .overview-item .container .text-container h2,
  .overviewpages-main .overview-item-container.width-1 .overview-item .container .text-container .text {
    padding: 0 20px;
    text-align: center;
  }

}

@media only screen and (max-width: 520px){
  .overviewpages-main .overview-item-container .overview-item .container .text-container .link {
    padding: 8px 35px;
    width: unset;
  }
}

/*** .coursesystem-list
******************************************************************/

.coursesystem-list .filter .filter-select-wrapper {
  display: flex;
  gap: 13px;
  width: 100%;
  flex-wrap: wrap;
}

.coursesystem-list .filter .filter-select-wrapper .form-select {
  width:calc(20% - 10.5px);
}

.coursesystem-list .filter .filter-select-wrapper .form-select.category {
  width: 100%;
}

.coursesystem-list .filter .form-select {
  width: 100%;
}

.coursesystem-list .filter .filter-select-wrapper select {
  background: #fff;
  font-size: 20px;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.coursesystem-list .container {
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.coursesystem-list #courses-list-container  {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.coursesystem-list #courses-list-container .spinner {
  width: 100px;
  height: 100px;
  border: 10px solid rgb(225, 230, 236);
  border-top: 10px solid #449cdb;
  border-radius: 50%;
  animation: loading-material-list 1s linear infinite;
  margin-left: calc(50% - 75px);
}

@keyframes loading-material-list {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.coursesystem-list #courses-list-container .courselist-item {
  background: #fff;
  border-radius: 10px;
  display: flex;
  padding: 25px 50px;
  justify-content: space-between;
}

.coursesystem-list .courselist-item {
  border: solid 2px #449CDB;
}

.coursesystem-list #courses-list-container .courselist-item .info {
  display: flex;
  flex-flow: column;
  gap: 8px;
  font-size: 18px;
  max-width: 1000px;
  width: 100%;
}

.coursesystem-list #courses-list-container .courselist-item .info .title {
  font-size: 22px;
  font-family: 'Open Sans Bold';
}

.coursesystem-list .title {
  color: #449CDB;
}

.coursesystem-list .number {
  color: #449CDB;
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist {
  display: flex;
  flex-flow: column;
  margin-top: 10px;
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item {
  display: flex;
  gap: 70px;
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .location,
.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .date,
.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .price {
  display: flex;
  gap: 12px;
  flex: 1;
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .date {
  flex: 2;
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .location:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f3c5';
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .date:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f073';
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .price:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\e5ce';
}

.coursesystem-list #courses-list-container .courselist-item .info .subcourselist .subcourse-item .no-icon:before {
  content: '';
}

.coursesystem-list #courses-list-container .courselist-item .link {
  margin-top: 60px;
}

.coursesystem-list #courses-list-container .courselist-item .link .button {
  color: #fff;
  padding: 8px 80px;
  border-radius: 5px;
}

.coursesystem-list .button {
  background: #449CDB;
}

.coursesystem-list .ajax-list-load-more {
  margin-top: 25px;
  font-size: 18px;
  cursor: pointer;
}

.coursesystem-list .ajax-list-load-more:before {
  content: '\f078';
  font-family: 'Font Awesome 6 Pro';
  margin-right: 10px;
}

.coursesystem-list .ajax-list-load-more.hidden {
  display: none;
}

/*** .coursesystem-detail
******************************************************************/

.coursesystem-detail > .headline {
  color: #449CDB;
  font-size: 34px;
  font-family: 'Open Sans Bold';
  margin-bottom: 20px;
}

.coursesystem-detail .overview {
  display: flex;
  gap: 95px;
  margin-bottom: 50px;
}

.coursesystem-detail .overview .text{
  font-size: 18px;
}

.coursesystem-detail .overview .text,
.coursesystem-detail .overview .info {
  width: 50%;
  height: fit-content;
}

.coursesystem-detail .overview .info .advantages,
.coursesystem-detail .overview .info .targetgroup,
.coursesystem-detail .overview .info .funding {
  margin-bottom: 18px;
}

.coursesystem-detail .overview .info .texteditor .headline {
  margin-bottom: 5px;
}

.coursesystem-detail .overview .info .texteditor .headline + ol {
  margin-top: 0px;
}

.coursesystem-detail .overview .text h3 {
  font-size: 18px;
  color: #449CDB;
  font-family: 'Open Sans Bold';
}

.coursesystem-detail .overview .info {
  background: #fff;
  border: solid 2px #449CDB;
  border-radius: 10px;
  padding: 32px 70px;
  font-size: 18px;
  position: relative;
}

.coursesystem-detail .overview .info .headline {
  font-size: 18px;
  color: #449CDB;
  font-family: 'Open Sans Bold';
}

.coursesystem-detail .overview .info .advantages .headline:before,
.coursesystem-detail .overview .info .targetgroup .headline:before,
.coursesystem-detail .overview .info .funding .headline:before {
  content: '\f0fe';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  left: 26px;
}

.coursesystem-detail .overview .info .targetgroup .headline:before {
  content: '\f0c0';
}

.coursesystem-detail .overview .info .funding .headline:before {
  content: '\e5ce';
}

.coursesystem-detail .overview .info .links {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.coursesystem-detail .overview .info .links a {
  background: #449CDB;
  color: #fff;
  padding: 8px 40px;
  width: fit-content;
  border-radius: 5px;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.coursesystem-detail .overview .info .links .download:before {
  content: '\f56d';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 100;
  font-size: 24px;
}

.coursesystem-detail .booking-dates {
  margin-bottom: 45px;
}

.coursesystem-detail .booking-dates .headline {
  font-size: 26px;
  font-family: 'Open Sans Bold';
  color: #449CDB;
  margin-bottom: 20px;
}

.coursesystem-detail .booking-dates .list {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.coursesystem-detail .booking-dates .list-item {
  background: #fff;
}

.coursesystem-detail .booking-dates .highlighted {
  color: #449CDB;
}

.coursesystem-detail .booking-dates .list-item .head {
  display: flex;
  padding: 20px;
}

.coursesystem-detail .booking-dates .list-item .head > * {
  flex: 1;
}

.coursesystem-detail .booking-dates .list-item .head .location,
.coursesystem-detail .booking-dates .list-item .head .date,
.coursesystem-detail .booking-dates .list-item .head .time,
.coursesystem-detail .booking-dates .list-item .head .price {
  display: flex;
  gap: 7px;
  align-items: center;
}

.coursesystem-detail .booking-dates .list-item .head .toggle {
  display: flex;
  justify-content: flex-end;
  height: 26px;
  flex: 0.25;
  min-width: 40px;
}

.coursesystem-detail .booking-dates .list-item .head > div:before {
  font-size: 22px;
  font-family: 'Font Awesome 6 Pro';
}

.coursesystem-detail .booking-dates .list-item .head .location:before {
  content: '\f3c5';
  color: #449CDB;
}

.coursesystem-detail .booking-dates .list-item .head .date:before {
  content: '\f073';
}

.coursesystem-detail .booking-dates .list-item .head .time:before {
  content: '\f017';
}

.coursesystem-detail .booking-dates .list-item .head .price:before {
  content: '\e5ce';
}

.coursesystem-detail .booking-dates .list-item .head .price:before {
  content: '\e5ce';
}

.coursesystem-detail .booking-dates .list-item .head .no-icon:before {
  content: '';
}

.coursesystem-detail .booking-dates .list-item .head .toggle .trigger {
  transition: all .5s ease-in-out;
}

.coursesystem-detail .booking-dates .list-item .head.open .toggle .trigger {
  transform: rotate(180deg);
}

.coursesystem-detail .booking-dates .list-item .head .toggle .trigger:before {
  content: '\f078';
  font-family: 'Font Awesome 6 Pro';
  color: #449cdb;
  font-size: 40px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  transform: translateY(-14px);
}

.coursesystem-detail .booking-dates .list-item .panel {
  display: flex;
  padding: 0px 20px 30px;
}

.coursesystem-detail .booking-dates .list-item .panel .highlighted {
  display: flex;
}

.coursesystem-detail .booking-dates .list-item .panel .address {
  flex: 1;
}

.coursesystem-detail .booking-dates .list-item .panel .contact {
  flex: 1;
}

.coursesystem-detail .booking-dates .list-item .panel .various {
  flex: 3;
}

.coursesystem-detail .booking-dates .list-item .panel .padding {
  flex: .25;
  min-width: 40px;
}

.coursesystem-detail .booking-dates .list-item .panel .address > * {
  margin-left: 23.5px;
}

.coursesystem-detail .booking-dates .list-item .panel .various .booking-button {
  background: #449cdb;
  color: #fff;
  padding: 9px 20px;
  min-width: 340px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.coursesystem-detail .infotext {
  max-width: 1000px;
  margin-bottom: 60px;
}

.coursesystem-detail .overview-button {
  color: #449cdb;
  padding: 9px 20px;
  width: fit-content;
  min-width: 270px;
  border: 2px #449cdb solid;
  border-radius: 5px;display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.coursesystem-detail .overview-button:before {
  content: '\f053';
  font-family: 'Font Awesome 6 Pro';
}

@media only screen and (max-width: 520px){
  .coursesystem-detail .overview-button {
    width: 100%;
    box-sizing: border-box;
  }
}

/*** .coursesystem-booking
******************************************************************/

.coursesystem-booking {
  font-size: 18px;
}

.coursesystem-booking h2{
  color: #449cdb;
}

.coursesystem-booking .link-back {
  color: #449cdb;
  padding: 9px 20px;
  width: fit-content;
  min-width: 270px;
  border: 2px #449cdb solid;
  border-radius: 5px;
  display: inline-block;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.coursesystem-booking .link-back:before {
  content: '\f053';
  font-family: 'Font Awesome 6 Pro';
}

.coursesystem-booking .text {
  padding: 8px 0 8px 0;
}

.coursesystem-booking .smalltext {
  font-size: 12px;
}

.coursesystem-booking .lastschrift-fields {
  display: none;
  float: left;
}

.coursesystem-booking .billing_adress {
  display: none;
  float: left;
  margin-bottom: 10px;
}

.coursesystem-booking .radio-wrapper {
  float: left;
  padding: 8px 0 8px 0;
}

.coursesystem-booking .radio-canvas .radio-wrapper {
  float: left;
  padding: 0;
}

.course-detail label[for="check_billingadresse"] {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.course-detail .termin-list {
  display: table;
  width: 100%;
  line-height: 18px;
}

.coursesystem-booking .termin-list.headline {
  margin: 10px 0 0 0;
  color: #449cdb;
  border-bottom: 1px solid #D9DADB;
  padding-bottom: 5px;
  font-weight: 700;
  font-family: 'Open Sans Bold';
}

.coursesystem-booking .terminbox {
  display: table-cell;
}

.coursesystem-booking .terminbox.radio {
  width: 5%;
}

.coursesystem-booking .terminbox.number {
  width: 20%;
}

.coursesystem-booking .terminbox.date {
  width: 35%;
}

.coursesystem-booking .terminbox.dozent {
  width: 30%;
}

.coursesystem-booking .terminbox.price {
  width: 10%;
}

.coursesystem-booking .termin-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #D9DADB;
}

.coursesystem-booking .termin-list-item:last-child {
  padding: 10px 0 0 0;
  border-bottom: 0;
}

.coursesystem-booking .button-submit {
  margin-top: 20px;
}

.coursesystem-booking .link-back {
  margin-bottom: 20px;
}

.coursesystem-booking .datenschutz-text,
.coursesystem-booking .datenschutz-text {
  margin-top: 50px;
  font-size: 12px;
}

.coursesystem-booking .form-row {
  display: flex;
  flex-flow: column;
}

.coursesystem-booking .form-row input.textbox {
  height: 55px;
  width: 100%;
  font-size: 20px;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  box-sizing: border-box;
}

.coursesystem-booking .form-row .radio-canvas {
  display: flex;
  gap: 40px;
}

.coursesystem-booking .radio-canvas .radio-wrapper {
  display: flex;
  align-items: center;
}

.coursesystem-booking .form-row .radio-wrapper label {
  width: fit-content;
}

.coursesystem-booking .form-row .selectbox,
.coursesystem-booking .form-row textarea {
  height: 55px;
  width: 100%;
  font-size: 20px;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.coursesystem-booking .form-row textarea {
  min-height: 150px;
}



.coursesystem-booking .course-detail .booking-canvas .box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.coursesystem-booking .course-detail .booking-canvas .box.flex {
  display: flex;
  flex-flow: column;
}


.coursesystem-booking .course-detail .booking-canvas .button-submit {
  background: #449cdb;
  color: #fff;
  padding: 12px 80px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


/*** .coursesystem-booking
******************************************************************/

.coursesystem-booking {
  font-size: 18px;
}

.coursesystem-inforequest h2 {
  color: #449cdb;
}

.coursesystem-inforequest .link-back {
  color: #449cdb;
  padding: 9px 20px;
  width: fit-content;
  min-width: 270px;
  border: 2px #449cdb solid;
  border-radius: 5px;
  display: inline-block;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.coursesystem-inforequest .link-back:before {
  content: '\f053';
  font-family: 'Font Awesome 6 Pro';
}

.coursesystem-inforequest .text {
  float: left;
  padding: 8px 0 8px 0;
}

.coursesystem-inforequest .smalltext {
  font-size: 12px;
}

.coursesystem-inforequest .lastschrift-fields {
  display: none;
  float: left;
}

.coursesystem-inforequest .billing_adress {
  display: none;
  float: left;
  margin-bottom: 10px;
}

.coursesystem-inforequest .radio-wrapper {
  float: left;
  padding: 8px 0 8px 0;
}

.coursesystem-inforequest .radio-canvas .radio-wrapper {
  float: left;
  padding: 0;
}

.course-detail label[for="check_billingadresse"] {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.course-detail .termin-list {
  display: table;
  width: 100%;
  line-height: 18px;
}

.coursesystem-inforequest .termin-list.headline {
  margin: 10px 0 0 0;
  color: #449cdb;
  border-bottom: 1px solid #D9DADB;
  padding-bottom: 5px;
  font-weight: 700;
  font-family: 'Open Sans Bold';
}

.coursesystem-inforequest .terminbox {
  display: table-cell;
}

.coursesystem-inforequest .terminbox.radio {
  width: 5%;
}

.coursesystem-inforequest .terminbox.number {
  width: 20%;
}

.coursesystem-inforequest .terminbox.date {
  width: 35%;
}

.coursesystem-inforequest .terminbox.dozent {
  width: 30%;
}

.coursesystem-inforequest .terminbox.price {
  width: 10%;
}

.coursesystem-inforequest .termin-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #D9DADB;
}

.coursesystem-inforequest .termin-list-item:last-child {
  padding: 10px 0 0 0;
  border-bottom: 0;
}

.coursesystem-inforequest .button-submit {
  margin-top: 20px;
}

.coursesystem-inforequest .link-back {
  margin-bottom: 20px;
}

.coursesystem-inforequest .datenschutz-text,
.coursesystem-inforequest .datenschutz-text {
  margin-top: 50px;
  font-size: 12px;
}

.coursesystem-inforequest .form-row {
  display: flex;
  flex-flow: column;
}

.coursesystem-inforequest .form-row input.textbox {
  height: 55px;
  width: 100%;
  font-size: 20px;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  box-sizing: border-box;
}

.coursesystem-inforequest .form-row .radio-canvas {
  display: flex;
  gap: 40px;
}

.coursesystem-inforequest .radio-canvas .radio-wrapper {
  display: flex;
  align-items: center;
}

.coursesystem-inforequest .form-row .radio-wrapper label {
  width: fit-content;
}

.coursesystem-inforequest .form-row .selectbox,
.coursesystem-inforequest .form-row textarea {
  height: 55px;
  width: 100%;
  font-size: 20px;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.coursesystem-inforequest .form-row textarea {
  min-height: 150px;
}



.coursesystem-inforequest .course-detail .booking-canvas .box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.coursesystem-inforequest .course-detail .booking-canvas .box.flex {
  display: flex;
  flex-flow: column;
}


.coursesystem-inforequest .course-detail .booking-canvas .button-submit {
  background: #449cdb;
  color: #fff;
  padding: 12px 80px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* info-accordion */

.info-accordion .container .border-top {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.info-accordion .container .border-bottom {
  margin-top: -1px;
}

.info-accordion .container .border-top,
.info-accordion .container .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  min-height: 23px;
}

.info-accordion .accordion {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.info-accordion .accordion .top {
  display: flex;
}

.info-accordion .accordion .top .image{
  width: 450px;
  min-width: 450px;
}

.info-accordion .accordion .top .content {
  display: flex;
  flex-flow: column;
  padding: 30px;
  gap: 20px;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 60px;
  width: calc(100% - 450px);
  transition: margin-bottom .5s ease-in-out;
}

.info-accordion .accordion .top .content.no-trigger-margin {
  margin-bottom: 0;
}


.info-accordion .accordion .top .content .headline {
  font-size: 22px;
  font-family: 'Open Sans Bold';
  padding-right: 50px;
}

.info-accordion .accordion .text {
  max-width: 1000px;
  font-size: 18px;
}

.info-accordion .accordion .text{
  font-size: 18px;
  color: #000;
}

.info-accordion .accordion .top .text h3,
.info-accordion .accordion .bottom .text h3{
  font-size: 18px;
  font-family: 'Open Sans Bold';
  color: inherit;
}

.info-accordion .accordion .top .content .accordion-trigger {
  cursor: pointer;

}

.info-accordion .accordion .accordion-trigger:before {
  content: '\f078';
  font-family: 'Font Awesome 6 Pro';
  transition: all .5s ease-in-out;
}

.info-accordion .accordion.open .accordion-trigger:before {
  transform: rotate(180deg);
}

.info-accordion .accordion .accordion-trigger.flex {
  display: flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin: -60px auto 30px 480px;
  transition: all .5s ease-in-out;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.info-accordion .accordion .accordion-trigger.flex:before {
  font-size: 28px;
}

.info-accordion .accordion.open .accordion-trigger.flex {
  margin-left: 50px;
}

.info-accordion .accordion .top .content .accordion-trigger.absolute {
  position: absolute;
  top: 15px;
  right: 29px;
  z-index: 5;
}

.info-accordion .accordion .top .content .accordion-trigger.absolute:before {
  font-size: 40px;
  display: inline-block;
}

.info-accordion .accordion .bottom {
  display: none;
  padding: 25px 50px 25px;
  margin-bottom: 60px;
}

.info-accordion .accordion.icons .bottom {
  padding: 0px 30px 25px;
  margin-bottom: 0;
}

.info-accordion .accordion.icons .top .content {
  margin-bottom: 0px;
  padding: 30px 30px 20px 30px;
}

.info-accordion .accordion.icons .accordion-trigger.flex {
  margin: 0px auto 0px 30px;
}

.info-accordion .accordion .bottom .infobox {
  background: #EEEEEE;
  border-radius: 10px;
  padding: 20px 35px;
  display: flex;
  flex-flow: column;
  gap: 15px;
  margin-top: 45px;
  width: fit-content;
}

.info-accordion .accordion .bottom .infobox .headline {
  font-size: 20px;
}

.info-accordion .accordion .bottom .infobox .text,
.info-accordion .accordion .bottom .infobox .left,
.info-accordion .accordion .bottom .infobox .right {
  color: #000;
}

.info-accordion .accordion .bottom .infobox .infos {
  display: flex;
  gap: 50px;
}

.info-accordion .accordion .bottom .infobox .infos .left {
  display: flex;
  flex-flow: column;
  gap: 10px;
  font-family: 'Open Sans Bold';
}

.info-accordion .accordion .bottom .infobox .infos .left .telephone,
.info-accordion .accordion .bottom .infobox .infos .left .telefax,
.info-accordion .accordion .bottom .infobox .infos .left .mail,
.info-accordion .accordion .bottom .infobox .infos .right .availability-head {
  display: flex;
  gap: 8px;
  width: fit-content;
}

.info-accordion .accordion .bottom .infobox .infos .left .telephone:before,
.info-accordion .accordion .bottom .infobox .infos .left .telefax:before,
.info-accordion .accordion .bottom .infobox .infos .left .mail:before,
.info-accordion .accordion .bottom .infobox .infos .right .availability-head:before {
  font-family: 'Font Awesome 6 Pro';
}

.info-accordion .accordion .bottom .infobox .infos .left .telephone:before {
  content: '\f095';
}
.info-accordion .accordion .bottom .infobox .infos .left .telefax:before{
  content: '\f1ac';
}
.info-accordion .accordion .bottom .infobox .infos .left .mail:before {
  content: '\f0e0';
}

.info-accordion .accordion .bottom .infobox .infos .right .availability-head:before {
  content: '\f073';
}

.info-accordion .accordion .bottom .infobox .infos .right .availability-head {
  font-family: 'Open Sans Bold';
}

.info-accordion .accordion .bottom .infobox .infos .right .availability-text {
  margin-left: 22px;
}

.info-accordion .accordion.icons {
  padding: 20px 50px;
}

.info-accordion .accordion.icons .content{
  width: 100%;
}

.info-accordion .accordion.icons .content .icons {
  display: flex;
  width: 100%;
  color: #000;
  gap: 20px;
}

.info-accordion .accordion.icons .content .icons .section {
  display: flex;
  width: 25%;
}

.info-accordion .accordion.icons .content .icons .section {
  display: flex;
  gap: 20px;
  align-items: center;
}

.info-accordion .accordion.icons .content .icons .section .text {
  font-family: 'Open Sans Bold';
  line-height: 24px;
}

.info-accordion .accordion.icons .content .icons .section .icon-1:before{
  content: '\f017';
  font-family: 'Font Awesome 6 Pro';
  font-size: 35px;
}

.info-accordion .accordion.icons .content .icons .section .icon-2:before{
  content: '\f3c5';
  font-family: 'Font Awesome 6 Pro';
  font-size: 35px;
}

.info-accordion .accordion.icons .content .icons .section .icon-3:before{
  content: '\f5f3';
  font-family: 'Font Awesome 6 Pro';
  font-size: 35px;
}

 .info-accordion .accordion.icons .content .icons .section .icon-4:before{
   content: '\f02d';
   font-family: 'Font Awesome 6 Pro';
   font-size: 35px;
 }

.pageelement-info-accordion .downloads {
  margin-top: 40px;
}

.pageelement-info-accordion .downloads .download-headline {
  font-family: 'Open Sans Bold';
  color: #000;
  margin-bottom: 15px;
}

.pageelement-info-accordion .downloads .download-item {
  width: fit-content;
}

.pageelement-info-accordion .downloads .download-link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000;
}

.pageelement-info-accordion .downloads .download-link::before {
  content: '\f56d';
  font-weight: 100;
  font-size: 30px;
  color: #ff8c00;
}

.pageelement-info-accordion .links {
  margin-top: 40px;
}

.pageelement-info-accordion .links .links-headline {
  font-family: 'Open Sans Bold';
  color: #000;
  margin-bottom: 15px;
}

.pageelement-info-accordion .links .link {
  width: fit-content;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000;
  margin-bottom: 10px;
}

.pageelement-info-accordion .links .link:before {
  font-weight: 100;
  color: #ff8c00;
  font-family: 'Font Awesome 6 Pro';
  width: 18px;
}

.pageelement-info-accordion .links .link.intern:before {
  content: '\f054';
}

.pageelement-info-accordion .links .link.extern:before {
  content: '\f08e';
}

.pageelement-info-accordion .persons {
  margin-top: 40px;
}

.pageelement-info-accordion .persons .persons-headline {
  font-family: 'Open Sans Bold';
  color: #000;
  margin-bottom: 15px;
}

.pageelement-info-accordion .persons .persons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  row-gap: 50px;
  row-gap: 10px;
}

.pageelement-info-accordion .persons .person {
  width: calc(50% - 25px);
  background: #EEE;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 25px;
  align-items: center;
}

.pageelement-info-accordion .persons .person .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageelement-info-accordion .persons .person .icon:before {
  content: '\f007';
  font-family: 'Font Awesome 6 Pro';
  color: #fff;
  font-weight: 700;
  font-size: 45px;
}

.pageelement-info-accordion .persons .person .info {
  color: #000;
  font-size: 24px;
}

@media only screen and (max-width: 1024px){
  .info-accordion .accordion.icons .content .icons .section {
    width: 100%;
  }

  .info-accordion .accordion:not(.icons) .top{
    flex-flow: column
  }

  .info-accordion .accordion:not(.icons) .top .content {
    width: 100%;
  }

  .info-accordion .accordion:not(.icons) .top .image {
    margin: 20px auto auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .info-accordion .accordion .bottom {
    padding: 0px 30px 25px;
  }

  .info-accordion .accordion:not(.icons) .accordion-trigger.flex {
    margin: -60px auto 30px 30px !important;
  }

  .info-accordion .accordion.icons .content .icons {
    flex-flow: column;
  }

  .info-accordion .accordion.icons .content .icons .section .text {
    max-width: 400px;
    width: 100%;
  }

  .pageelement-info-accordion .persons .person {
    width: 100%;
  }

  .pageelement-info-accordion .persons .person .info{
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px){
  .info-accordion .accordion.icons {
    padding: 5px 0px 20px;
  }

  .info-accordion .accordion .top .content {
    padding: 30px 20px 20px;
  }

  .info-accordion .accordion.image .bottom {
    padding: 0 20px 25px;
    margin-top: -50px;
  }

  .info-accordion .accordion .bottom .infobox .infos {
    display: flex;
    gap: 10px;
    flex-flow: column;
  }

  .info-accordion .accordion .bottom .infobox {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }

}

@media only screen and (max-width: 550px){
  .info-accordion .accordion:not(.icons) .top .image {
    min-width: unset;
    width: 100%;
    margin: auto;
  }
}

@media only screen and (max-width: 520px){
  .info-accordion .accordion .top .content .headline {
    padding-right: 0;
  }

  .info-accordion .accordion .top .content .accordion-trigger.absolute {
    display: none;
  }

  .info-accordion .accordion.icons .content .icons .section .icon-1:before,
  .info-accordion .accordion.icons .content .icons .section .icon-2:before,
  .info-accordion .accordion.icons .content .icons .section .icon-3:before {
    font-size: 25px;
  }

  .pageelement-info-accordion .persons .person .icon {
    height: 50px;
    width: 50px;
  }

  .pageelement-info-accordion .persons .person .icon:before {
    font-size: 36px;
  }
}


/* contactform */

.pageElement-contactform .box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.pageElement-contactform .form-row {
  display: flex;
  flex-flow: column;
}

.pageElement-contactform .form-row .selectbox,
.pageElement-contactform .form-row textarea {
  height: 55px;
  width: 100%;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  font-size: 18px;
}

.pageElement-contactform .form-row textarea {
  min-height: 150px;
  font-family: 'Open Sans';
}

.pageElement-contactform .form-row input.textbox {
  height: 55px;
  width: 100%;
  border: solid 2px #e0e0e0;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  box-sizing: border-box;
  font-size: 18px;
}

.pageElement-contactform .form-row .selectbox {
  background: url('/_images/select.svg') no-repeat #fff;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: auto;
  background-size: 22px;
  background-position: calc(100% - 10px);
  appearance: none;
}

.pageElement-contactform .link {
  color: #ff8c00;
  padding: 9px 20px;
  width: fit-content;
  min-width: 270px;
  border: 2px #ff8c00 solid;
  border-radius: 5px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #fff;
}

.pageElement-contactform .link::before {
  content: '\f053';
  font-family: 'Font Awesome 6 Pro';
}

.pageElement-contactform .checkbox-wrapper {
  display: flex;
  gap: 8px;
}


/* link-box */

.link-box .container > .content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.link-box .container .outer-box {
  width: calc(100% - 25px);
  max-width: 675px;
  display: flex;
  flex-flow: column;
  justify-content: center;

}

.link-box .container .outer-box .inner-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 100%;
}

.link-box .container .outer-box .border-top,
.link-box .container .outer-box .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  height: 30px;
  min-height: 23px;
}

.link-box .container .outer-box .border-top {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.link-box .container .outer-box .border-bottom {
  margin-top: -1px;
}

.link-box .container .outer-box .inner-box .content {
  padding: 30px;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-flow: column;
}

.link-box .container .outer-box .inner-box .content .headline {
  font-size: 22px;
  font-family: 'Open Sans Bold';
  margin-bottom: 10px;
  color: #000;
}

.link-box .container .outer-box .inner-box .content .subheadline {
  font-size: 20px;
  margin-bottom: 20px;
}

.link-box .container .outer-box .inner-box .content .text {
  color: #000;
  margin-bottom: 20px;
}

.link-box .container .outer-box .inner-box .content .address,
.link-box .container .outer-box .inner-box .content .contact {
  color: #000;
  margin-bottom: 5px;
}

.link-box .container .outer-box .inner-box .content .contact {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.link-box .container .outer-box .inner-box .content .contact .phone,
.link-box .container .outer-box .inner-box .content .contact .email {
  display: flex;
  gap: 5px
}

.link-box .container .outer-box .inner-box .content .contact .phone:before {
  content: '\f095';
  font-family: 'Font Awesome 6 Pro';
}

.link-box .container .outer-box .inner-box .content .contact .email:before {
  content: '\f0e0';
  font-family: 'Font Awesome 6 Pro';
}

.link-box .container .outer-box .inner-box .content .link {
  margin-top: auto;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.link-box .container .outer-box .inner-box .content .link.intern {
  font-size: 18px;
  margin: auto;
  padding: 8px 20px;
  border-radius: 5px;
  min-width: 300px;
  max-width: 100%;
}
/*
.link-box .container .outer-box .inner-box .content .link.intern:before {
  content: '\f324';
  font-family: 'Font Awesome 6 Pro';
}
*/
.link-box .container .outer-box .inner-box .content .link.extern:before {
  content: '\f08e';
  font-family: 'Font Awesome 6 Pro';
}

@media only screen and (max-width: 800px){
  .link-box .container .outer-box .inner-box .content {
    padding: 20px;
  }

  .link-box .container .outer-box {
    width: 100%;
    max-width: unset;
  }
}

@media only screen and (max-width: 680px){
  .link-box .container .outer-box .inner-box .content .contact{
    gap: 3px;
    flex-flow: column;
    align-items: center;
  }
}

@media only screen and (max-width: 520px){
  .link-box .container .outer-box .border-top,
  .link-box .container .outer-box .border-bottom {
    height: unset;
  }

  .link-box .container .outer-box .inner-box .content .link.intern {
    min-width: unset;
  }

  .link-box .container .outer-box .inner-box .content .link,
  .link-box .container .outer-box .inner-box .content .contact .phone,
  .link-box .container .outer-box .inner-box .content .contact .email {
    display: inline-block;
  }

  .link-box .container .outer-box .inner-box .content .link:before,
  .link-box .container .outer-box .inner-box .content .contact .phone:before,
  .link-box .container .outer-box .inner-box .content .contact .email:before {
    margin-right: 8px;
  }
}

/* pageelement-headline */

.pageelement-headline {
  font-size: 30px;
  font-family: 'Open Sans Bold';
}

.pageelement-headline.no_margin_bottom {
  margin-bottom: 25px;
}

/* pageelement-button-main */

.pageelement-button-main .button {
  color: #fff;
  font-size: 24px;
  margin-right: auto;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}

@media only screen and (max-width: 520px){
  .pageelement-button-main .button {
    width: 100%;
    font-size: 20px;
    min-width: unset;
  }
}

/* pageelement-text-simple */

.pageelement-text-simple .container {
  font-size: 18px;
  max-width: 1000px;
}

.pageelement-text-simple .headline {
  margin-bottom: 20px;
}

.pageelement-text-simple .texteditor a {
  color: #ff8c00;
}

/*** job-list, .locations-main
******************************************************************/

.pageelement-job-list .content-container .items {
  border: 2px solid #ff8c00;
  border-radius: 10px;
  background: #fff;
}

.pageelement-job-list .content-container .item {
  padding: 25px 50px 25px 20px;
  border-bottom: 1px solid #707070;
}

.pageelement-job-list .content-container .item:last-child {
  border-bottom: none;
}

.pageelement-job-list .content-container .item .item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.pageelement-job-list .content-container .item .text-container {
  max-width: 1000px;
}

.pageelement-job-list .content-container .item .button,
.pageelement-job-list .content-container .listpage-button {
  width: 240px;
  min-width: 240px;
  border: 2px solid #ff8c00;
  background: #fff;
  color: #ff8c00;
  text-align: center;
  padding: 8px 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

.pageelement-job-list .content-container .listpage-button {
  display: inline-block;
  margin-top: 25px;
}

.pageelement-job-list .content-container .item .organisation:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f3c5';
}

.pageelement-job-list .content-container .item .organisation {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.pageelement-job-list .content-container .item .title {
  font-size: 20px;
  font-family: 'Open Sans Bold';
}

.pageelement-job-list .content-container .item .text {
  font-size: 18px;
}

.pageelement-job-list .more {
  margin-top: 30px;
}

.pageelement-job-list .more a i {
  margin-right: 5px;
  font-style: normal;
}

.pageelement-job-list .more a i.icon-more::before {
  font-family: 'Font Awesome 6 Pro';
  content: "\f32b";
}

@media only screen and (max-width: 800px){
  .pageelement-job-list .content-container .item .item-link {
    flex-flow: column;
    align-items: start;
  }
}

@media only screen and (max-width: 520px){
  .pageelement-job-list .content-container .item .button,
  .pageelement-job-list .content-container .listpage-button {
    min-width: unset;
    max-width: 100%;

  }

  .pageelement-job-list .content-container .listpage-button {

    width: 100%;
  }
}

/* place-list */

.place-list {
  height: auto;
  overflow: hidden;
}

.place-list .container .content {
  display: flex;
  gap: 45px;
}

.place-list .container .headline {
  margin-bottom: 20px;
}



.place-list .container #infobox-maps,
.place-list .container .map-search-container {
  width: 50%;
}

.place-list #openstreetmap-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.place-list .map-search-container {
  width: 50%;
  height: fit-content;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  gap: 20px;
  justify-content: center;

}

.place-list .map-search-container .house-search-input {
  height: 71px;
  width: 100%;
  padding-left: 20px;
  font-size: 24px;
  line-height: 33px;
}

.pageelement-place-list .map-search-container .caption {
  background: #EEEEEE;
  border-radius: 10px;
  display: flex;
  gap: 40px;
  justify-content: space-around;
  padding: 5px 10px;
}

.pageelement-place-list .map-search-container .caption .icon{
  display: flex;
  gap: 8px;
}

.pageelement-place-list .map-search-container .educationcenter:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f19d';
}

.pageelement-place-list .map-search-container .secondhand:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f07a';
}

.pageelement-place-list .map-search-container .lunch:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f2e7';
}

.pageelement-place-list .map-search-container .places-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
  width: 100%;
}

.pageelement-place-list .map-search-container .places-list .place-item {
  width: calc(50% - 10px);
  border: #ff8c00 solid 1px;
  border-radius: 10px;
  padding: 14px 20px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 5;
}

.pageelement-place-list .map-search-container .places-list .place-item *:nth-child(2) {
  margin-left: auto;
}

@media only screen and (max-width: 1200px){
  .place-list .container .content {
    flex-flow: column;
  }

  .place-list .container #infobox-maps,
  .place-list .container .map-search-container {
    width: 100%;
  }
}

@media only screen and (max-width: 580px){
  .pageelement-place-list .map-search-container .caption {
    flex-flow: column;
    align-items: center;
    gap: 10px;
  }

  .pageelement-place-list .map-search-container .places-list .place-item {
    width: 100%;
  }
}

/*** pageelement pageelement_news-teaser
******************************************************************/

.pageelement-news-socialmedia {

}

.pageelement-news-socialmedia .content-container {

}

.pageelement-news-socialmedia h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Open Sans Bold';
}

.pageelement-news-socialmedia .news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 30px;
}

.pageelement-news-socialmedia .news .post {
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ff8c00;
}

.pageelement-news-socialmedia .news .post-instagram:before {
  content: "\f16d";
  font: var(--fa-font-brands);
  font-size: 45px;
}

.pageelement-news-socialmedia .news .post-instagram img {
  aspect-ratio: 1;
  object-fit: cover;
}

.pageelement-news-socialmedia .news .post .text {
  padding: 15px 25px 20px;
}

.pageelement-news-socialmedia .news .post .text .title {
  font-size: 20px;
  font-family: 'Open Sans Bold';
}

.pageelement-news-socialmedia .news .post .text .description {
  font-size: 18px;
}

.pageelement-news-socialmedia .news .post .text .more {
  color: #ff8c00;
  display: flex;
  gap: 8px;
}

.pageelement-news-socialmedia .news .post .text .more:before {
  content: '\f054';
  font-family: 'Font Awesome 6 Pro';
}

.pageelement-news-socialmedia .links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.pageelement-news-socialmedia .links a {
  color: #000;
  font-size: 18px;
}

.pageelement-news-socialmedia .links a i {
  margin-right: 5px;
  font-style: normal;
}

.pageelement-news-socialmedia .links a i.icon-more:before {
  font-family: 'Font Awesome 6 Pro';
  content: "\f32b";
}

.pageelement-news-socialmedia .links a i.icon-facebook:before {
  font-family: 'Font Awesome 6 Brands Regular';
  content: '\f09a';
}

.pageelement-news-socialmedia .reference-date {
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  .pageelement-news-socialmedia h2 {
    font-size: 24px;
  }

  .pageelement-news-socialmedia .links a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 780px) {
  .pageelement-news-socialmedia .news > a:nth-child(n+3) {
    display: none;
  }
}

@media only screen and (max-width: 520px){
  .pageelement-news-socialmedia .news {
    grid-template-columns: repeat(auto-fill,minmax(100%,1fr));
  }
}

/*** pageelement person-double
******************************************************************/

.pageelement-person-double {

}

.pageelement-person-double .headline {
  color: #FF8C00;
  margin-bottom: 20px;
}

.pageelement-person-double .wrapper {
  display: flex;
  gap: 50px;
}

.pageelement-person-double .person-container {
  background: #fff;
  width: calc(50% - 25px);
  display: flex;
  border: #ff8c00 solid 2px;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.pageelement-person-double .person-container .image {
  width: 218px;
  min-width: 218px;
}

.pageelement-person-double .person-container .image img {
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0px;
  object-fit: cover;
}

.pageelement-person-double .person-container .content {
  padding: 38px 33px;
  width: 60%;
  box-sizing: border-box;
}

.pageelement-person-double .person-container .content .name {
  font-size: 24px;
  font-family: 'Open Sans Bold';
  margin-bottom: 10px;
  color: #ff8c00;
}

.pageelement-person-double .person-container .content .function {
  font-size: 18px;
  margin-bottom: 15px;
}

.pageelement-person-double .person-container .content .text {
  margin-bottom: 10px;
}

.pageelement-person-double .person-container .contact-wrapper {
  display: flex;
  flex-flow: column;
  font-size: 18px;
}

.pageelement-person-double .person-container .content a {
  line-height: 28px;
  width: fit-content;
}

.pageelement-person-double .person-container .content a.email .full {
  display: none;
}

.pageelement-person-double .person-container .street::before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f3c5';
  margin-right: 11px;
}

.pageelement-person-double .person-container .postcode::before {
  content: '';
  margin-right: 23px;
}

.pageelement-person-double .person-container .content a:before {
  font-family: 'Font Awesome 6 Pro';
  margin-right: 6px;
}

.pageelement-person-double .person-container .content a.telephone:before {
  content: '\f095';
}

.pageelement-person-double .person-container .content a.email:before {
  content: '\f0e0';
}

.pageelement-person-double .person-container .content a.telefax:before {
  content: '\f1ac';
}

@media only screen and (max-width: 1400px) {
  .pageelement-person-double .wrapper {
    gap: 55px;
    flex-wrap: wrap;
  }

  .pageelement-person-double .person-container {
    width: 100%;
  }
}

@media only screen and (max-width: 650px){
  .pageelement-person-double .person-container {
    flex-flow: column;
  }

  .pageelement-person-double .person-container .content {
    width: 100%;
  }

  .pageelement-person-double .person-container .image {
    align-self: center;
    padding-top: 20px;
  }

  .pageelement-person-double .person-container .image img {
    border-radius: 10px;
  }

}

@media only screen and (max-width: 520px){
  .pageelement-person-double .person-container .content a.email .abbreviation {
    display: inline;
  }

  .pageelement-person-double .person-container .content a.email .full {
    display: none;
  }
}


/*** pageelement job-maplist
******************************************************************/

.pageelement-job-maplist {

}

.pageelement-job-maplist .content-container {

}

.pageelement-job-maplist .text {
  display: grid;
  grid-template: repeat(3, auto) / repeat(2, 1fr);
  gap: 20px 40px;
}

.pageelement-job-maplist .search {
  max-width: 100%;
  width: 100%;
  border: 1px solid #9a9a9a;
  display: flex;
  align-items: center;
  grid-column: 1 / 3;
  padding: 10px 25px;
  gap: 25px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #fff;
}

.pageelement-job-maplist .search i {
  font-size: 25px;
  color: #4c4c4c;
}

.pageelement-job-maplist input {
  color: #9a9a9a;
  border: none;
  font-size: 20px;
  width: 0;
  flex: 1;
}

.pageelement-job-maplist select {
  padding: 10px 25px;
  color: #9a9a9a;
  border: 1px solid #9a9a9a;
  font-size: 20px;
  appearance: none;

  background: url("/_images/select.svg") #fff;
  background-size: 20px;
  background-position: center right 25px;
  background-repeat: no-repeat;

  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  grid-column: 1/3;
  gap: 25px;
  border-radius: 10px;
  box-sizing: border-box;
}

.pageelement-job-maplist .list {
  grid-column: 1/3;

}

.pageelement-job-maplist input::placeholder {
  opacity: 1;
}

.pageelement-job-maplist .job {
  max-width: calc(100vw - 70px);
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid black;
  display: flex;
  align-items: center;
}

.pageelement-job-maplist .list a:first-child .job {
  margin-top: 0px;
}

.pageelement-jobapplication-form .job {
  max-width: calc(100vw - 70px);
  padding: 10px;
  background: #fff;
  flex-flow: column;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  border: #ff8c00 1px solid;
}

.pageelement-job-maplist .job .organisation {
  display: flex;
  gap: 10px;
}

.pageelement-job-maplist .job .organisation:before {
  color: #ff8c00;
  font-family: 'Font Awesome 6 Pro';
  content: '\f3c5';
}

.pageelement-job-maplist .job p,
.pageelement-jobapplication-form .job p {
  padding-top: 10px;
}

.pageelement-job-maplist .job .title,
.pageelement-jobapplication-form .job .title {
  color: #ff8c00;
  font-size: 20px;
  line-height: initial;
  font-weight: 700;
  font-family: 'Open Sans Bold';
}

.pageelement-job-maplist .job > div {
  flex: 1;
}

.pageelement-job-maplist .job > i {
  color: #ff8c00;
  font-size: 30px;
  margin: 5px 10px;
}

.pageelement-job-maplist #map {
  margin-top: 10px;
  max-height: 750px;
  border-radius: 10px;
  overflow: hidden;
}

#map .leaflet-control-zoom span {
  line-height: inherit;
}

#map a {
  font-size: inherit;
  font-weight: initial;
}

@media (max-width: 1024px) {
  .pageelement-job-maplist .text {
    grid-template-columns: 1fr;
  }

  .pageelement-job-maplist .search {
    grid-column: 1 / 3;
  }

  .pageelement-job-maplist .text > div {
    grid-column: 1 / 3;
  }
}

/*** pageelement job-detail, jobapplication-form
******************************************************************/

.pageelement-job-detail-main {

}

.pageelement-job-detail-main .content-container {

}

.pageelement-job-detail-main .wrapper,
.pageelement-jobapplication-form .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.pageelement-job-detail-main .text h1,
.pageelement-jobapplication-form .text h1 {
  color: #ff8c00;
  margin: 15px auto 30px;
}

.pageelement-job-detail-main .text h2,
.pageelement-job-detail-main .job-content h6 {
  color: #ff8c00;
  margin: 35px auto 20px;
  font-size: 23px;
  font-family: 'Open Sans Bold';
}

.pageelement-job-detail-main .text > :first-child,
.pageelement-jobapplication-form .text > :first-child {
  margin-top: initial;
}

.pageelement-job-detail-main .info {
  font-size: 18px;
}

.pageelement-job-detail-main .info a button,
.pageelement-jobapplication-form .info a button,
.pageelement-job-detail-main .info-right a button {
  display: block;
  background: none;
  margin: 25px 0;
  padding: 10px 40px;
  border: 2px solid #ff8c00;
  border-radius: 10px;
  font-size: initial;
  font-weight: 700;
  font-family: 'Open Sans';
  background: #fff;
}

.pageelement-job-detail-main .info-right a button {
  display: none;
}

.pageelement-job-detail-main .info a button,
.pageelement-job-detail-main .info a button *,
.pageelement-jobapplication-form .info a button,
.pageelement-jobapplication-form .info a button *,
.pageelement-job-detail-main .info-right a button,
.pageelement-job-detail-main .info-right a button * {
  color: #ff8c00;
  pointer-events: initial;
}

.pageelement-job-detail-main .info a button i,
.pageelement-jobapplication-form .info a button i {
  position: relative;
  right: 25px;
  transform: scale(1.35);
}

.pageelement-job-detail-main .info a:first-child button {
  margin-top: initial;
}

.pageelement-job-detail-main .info a:last-child button {
  margin-bottom: initial;
}

.pageelement-job-detail-main .info a:hover button,
.pageelement-jobapplication-form .info a:hover button,
.pageelement-job-detail-main .info-right a:hover button{
  cursor: pointer;
  background: #ff8c00;
}

.pageelement-job-detail-main .info a:hover button,
.pageelement-job-detail-main .info a:hover button *,
.pageelement-jobapplication-form .info a:hover button,
.pageelement-jobapplication-form .info a:hover button *,
.pageelement-job-detail-main .info-right a:hover button,
.pageelement-job-detail-main .info-right a:hover button * {
  color: #fff;
}

.pageelement-job-detail-main .info p,
.pageelement-job-detail-main .info ul {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pageelement-job-detail-main .info ul {
  padding: 0 20px;
}

/*
.pageelement-job-detail-main .info-right {
    position: sticky;
    top: 20px;
}
*/

.pageelement-job-detail-main .group-container .border-top,
.pageelement-job-detail-main .group-container .border-bottom,
.pageelement-jobapplication-form .group-container .border-top,
.pageelement-jobapplication-form .group-container .border-bottom {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  max-height: 30px;
  min-height: 23px;

}

.pageelement-job-detail-main .group-container .border-top,
.pageelement-jobapplication-form .group-container .border-top {
  transform: rotate(180deg);
}

.pageelement-job-detail-main .group,
.pageelement-jobapplication-form .group {
  border: #ff8c00 solid 2px;
  border-radius: 10px;
  overflow: hidden;
}

.pageelement-job-detail-main .group .box,
.pageelement-jobapplication-form .group .box {
  margin-bottom: 0;
  border-bottom: #ff8c00 solid 2px;
}

.pageelement-job-detail-main .group .box:last-child,
.pageelement-jobapplication-form .group .box:last-child {
  border-bottom: none;
}

.pageelement-job-detail-main .box,
.pageelement-jobapplication-form .box {
  background: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.pageelement-job-detail-main .box .black,
.pageelement-job-detail-main .box .black *,
.pageelement-jobapplication-form .box .black,
.pageelement-jobapplication-form .box .black * {
  color: #000;
}

.pageelement-job-detail-main .box .orange,
.pageelement-job-detail-main .box .orange *,
.pageelement-jobapplication-form .box .orange,
.pageelement-jobapplication-form .box .orange * {
  color: #ff8c00;
}

.pageelement-job-detail-main .box .regular,
.pageelement-job-detail-main .box .regular *,
.pageelement-jobapplication-form .box .regular,
.pageelement-jobapplication-form .box .regular * {
  font-weight: normal;
}

.pageelement-job-detail-main .box .bold,
.pageelement-job-detail-main .box .bold *,
.pageelement-jobapplication-form .box .bold,
.pageelement-jobapplication-form .box .bold * {
  font-weight: 700;
  font-family: 'Open Sans Bold';
}

.pageelement-job-detail-main .box .top,
.pageelement-jobapplication-form .box .top {
  margin-top: 10px;
}

.pageelement-job-detail-main .box .bottom,
.pageelement-jobapplication-form .box .bottom {
  margin-bottom: 10px;
}

.pageelement-job-detail-main .box i,
.pageelement-jobapplication-form .box i {
  margin-right: 10px;
}

.pageelement-job-detail-main .box img,
.pageelement-jobapplication-form .box img {
  width: 200px;
  object-fit: cover;
}

.pageelement-job-detail-main .box-flex,
.pageelement-jobapplication-form .box-flex {
  display: flex;
}

.pageelement-job-detail-main .box-outer,
.pageelement-jobapplication-form .box-outer {
  padding: initial;
}

.pageelement-job-detail-main .box-outer .box-inner,
.pageelement-jobapplication-form .box-outer .box-inner {
  padding: 20px 25px;
}

.pageelement-job-detail-main .box-orange {
  background: #ff8c00;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.pageelement-job-detail-main .box-orange,
.pageelement-job-detail-main .box-orange * {
  color: #fff;
}

.pageelement-job-detail-main .box-orange:hover,
.pageelement-job-detail-main .box-orange:hover * {
  color: #000;
}

.pageelement-job-detail-main .box-orange .fa-square-up-right,
.pageelement-job-detail-main .box-orange .fa-chevron-right {
  position: absolute;
  right: 25px;
  transform: scale(2);
}

.pageelement-job-detail-main .box-large,
.pageelement-jobapplication-form .box-large {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Open Sans Bold';
}

.pageelement-job-detail-main .box-small,
.pageelement-jobapplication-form .box-small {
  padding: 10px 20px;
}

.pageelement-job-detail-main #map,
.pageelement-jobapplication-form #map {
  height: 265px;
}

.pageelement-job-detail-main .job-content .entry-header,
.pageelement-job-detail-main .job-content .job-heading,
.pageelement-job-detail-main .job-content #sidebar-outer,
.pageelement-job-detail-main .job-content hr {
  display: none;
}

@media (max-width: 1024px) {
  .pageelement-job-detail-main .wrapper,
  .pageelement-jobapplication-form .wrapper {
    grid-template-columns: initial;
    gap: 25px !important;
  }

  .pageelement-job-detail-main .info-right a button {
    display: block;
  }

  .pageelement-job-detail-main .info a:last-child {
    display: none;
  }
}

@media only screen and (max-width: 520px){
  .pageelement-job-detail-main .info a button,
  .pageelement-job-detail-main .info-right a button {
    width: 100%;
  }
}

@media (max-width: 512px) {
  .pageelement-job-detail-main .box img,
  .pageelement-jobapplication-form .box img {
    width: 100%;
  }

  .pageelement-job-detail-main .box-flex,
  .pageelement-jobapplication-form .box-flex {
    flex-direction: column;
  }
}

/*** .events-teaserlist
******************************************************************************* */

.events-teaserlist .list {
  list-style-type: none;
  padding: 0;
  display: block;
  margin-bottom: 30px;
}

.events-teaserlist .list li {
  margin-bottom: 10px;
  border: 2px solid #ff8c00;
  border-left: 8px solid #ff8c00;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.events-teaserlist .list li .nolink {
  padding: 15px 20px;
  background: #fff;
}

.events-teaserlist .list li .label {
  margin-bottom: 5px;
  font-size: 20px;
}

.events-teaserlist .list li .label,
.events-teaserlist .list li .introtext {
  max-width: 1000px;
}

.events-teaserlist .list li .info {
  margin-top: 18px;
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.events-teaserlist .list li .info .location:before,
.events-teaserlist .list li .info .date:before,
.events-teaserlist .list li .info .time:before {
  font-family: 'Font Awesome 6 Pro';
  margin-right: 8px;
  color: #ff8c00;
}

.events-teaserlist .list li .info .location:before {
 content: '\f3c5';
}

.events-teaserlist .list li .info .date:before {
  content: '\f073';
}

.events-teaserlist .list li .info .time:before {
  content: '\f017';
}

.events-teaserlist .list li a {
  padding: 15px 120px 15px 20px;
  display: block;
  background-color: #fff;
  background-image: url("/_images/event-detail.svg");
  background-repeat: no-repeat;
  background-position: right 50px top 15px;
  background-size: 50px 50px;
}

.events-teaserlist .list li:last-child {
  margin-bottom: 0;
}


.events-teaserlist .list .text,
.events-teaserlist .list a .text {
  color: #000000;
  line-height: 24px;
}

.events-teaserlist .list .topline {
  margin-bottom: 5px;
  color: #1E4231;
  display: inline-block;
  font-size: 14px;
}

.events-teaserlist .list li {
  position: relative;
}

.events-teaserlist .list .localtag {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 10px 20px 10px 20px;
  background-color: #FEF7E5;
  text-align: center;
}

.events-teaserlist .list a:hover .localtag {
  background-color: #74B841;
  color: #FFFFFF;
}

.events-teaserlist .list h3 {
  clear: both;
}

.events-teaserlist .list li.local a,
.events-teaserlist .list li.local div.nolink {
  /*background-color: #FFFFF5;*/
  /*color: #576471;*/
}

.events-teaserlist .list li.local a h3,
.events-teaserlist .list li.local div.nolink h3,
.events-teaserlist .list li.local a .text,
.events-teaserlist .list li.local div.nolink .text {
  /*color: #576471;*/
}

.events-teaserlist .grouplist li.local a:hover {
  /*color: #74B841;*/
  /*background-color: #FEF7E5;*/
}

.events-teaserlist .list li.local a:hover h3,
.events-teaserlist .list li.local a:hover .text {
  /*color: #74B841 !important;*/
}

.events-teaserlist .more-events {
  cursor: pointer;
  display: inline-block;
  font-family: 'Signika', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1e4231;
}

.events-teaserlist .more-events::before {
  font-family: "Font Awesome 5 Pro", sans-serif;
  content: '\f101';
  margin-right: 10px;
  font-weight: 900;
}

.events-teaserlist .more a i {
  margin-right: 5px;
  font-style: normal;
}

.events-teaserlist .more a i.icon-more::before {
  font-family: 'Font Awesome 6 Pro';
  content: "\f32b";
}

/*** .events-calendarlist
******************************************************************************* */
.events-calendarlist {
  margin-bottom: 25px;
}

.events-calendarlist .filter {
  display: none;
}

.events-calendarlist .search {
  margin-bottom: 15px;
  width: 100%;
  position: relative;
  display: inline-block;

}

.events-calendarlist .search .filter-search {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  font-size: 24px;
  color: #2D2D2D;
  padding-left: 30px;
  padding-right: 60px;
  border: solid 1px #ff8c00;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
}

.events-calendarlist .search .filter-search:focus {
  outline: none;
}

.events-calendarlist .searchicon:before {
  content: "\f109";
}

.events-calendarlist .search .searchicon:before {
  color: #2d2d2d;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 23px;
  padding-top: 2px;
  content: '\f002';
}

.events-calendarlist .search .innericon {
  position: absolute;
  top: 11px;
  right: 2%;
  z-index: 2;
  display: block;
  text-align: center;
  pointer-events: none;
}

.events-calendarlist h2 {


}

.events-calendarlist .filter-select-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 25px;
}

.events-calendarlist .filter-select-wrapper .form-select {
  width: 30%;
}

.events-calendarlist .filter-select-wrapper .form-select select {
  display: unset;
  padding: unset;
  box-sizing: unset;
  margin-bottom: unset;

  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: #ff8c00 solid 1px;
  border-radius: 10px;
  background-size: auto;
  background-position-x: 95%;
  background-position-y: 8px;
  background-size: 1rem;
  width: 100%;
  padding-left: 15px;
  color: #707070;
  font-size: 18px;
  height: 40px;
  cursor: pointer;
}

.events-calendarlist .filter-item-wrapper {
  padding-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
}

.events-calendarlist .filter-item-wrapper .title {
  margin: 10px 35px 10px 0;
}

.events-calendarlist .filter-item-wrapper .filter-item-topic {
  border: #74B841 solid 1px;
  border-radius: 10px;
  height: 40px;
  padding: 0 17px;
  margin-right: 10px;
  line-height: 40px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 10px;
}

.events-calendarlist .filter-item-wrapper .filter-item-topic.selected {
  color: #fff;
  background: #74B841;
}


#event-list-container .spinner {
  width: 100px;
  height: 100px;
  border: 10px solid rgb(230, 230, 230);
  border-top: 10px solid #ff8c00;
  border-radius: 50%;
  animation: loading-offer-list 1s linear infinite;
  margin-left: calc(50% - 75px);
}

#event-list-container .noresults {
  padding-bottom: 30px;
}

@keyframes loading-offer-list {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.events-calendarlist .calenderlist-groupheadline {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.events-calendarlist .grouplist {
  list-style-type: none;
  padding: 0;
  display: block;
  margin-bottom: 30px;
}

.events-calendarlist .grouplist li {
  margin-bottom: 10px;
  border: 2px solid #ff8c00;
  border-left: 8px solid #ff8c00;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.events-calendarlist .grouplist li .nolink {
  background-color: #fff;
  padding: 15px 20px;
}


.events-calendarlist .grouplist li .label {
  margin-bottom: 5px;
  font-size: 20px;
}

.events-calendarlist .grouplist li .label,
.events-calendarlist .grouplist li .introtext {
  max-width: 1000px;
}

.events-calendarlist .grouplist li .info {
  margin-top: 18px;
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.events-calendarlist .grouplist li .info .location:before,
.events-calendarlist .grouplist li .info .date:before,
.events-calendarlist .grouplist li .info .time:before {
  font-family: 'Font Awesome 6 Pro';
  margin-right: 8px;
  color: #ff8c00;
}

.events-calendarlist .grouplist li .info .location:before {
  content: '\f3c5';
}

.events-calendarlist .grouplist li .info .date:before {
  content: '\f073';
}

.events-calendarlist .grouplist li .info .time:before {
  content: '\f017';
}

.events-calendarlist .grouplist li a {
  padding: 15px 120px 15px 20px;
  display: block;
  background-color: #fff;
  background-image: url("/_images/event-detail.svg");
  background-repeat: no-repeat;
  background-position: right 50px top 15px;
  background-size: 50px 50px;
}

.events-calendarlist .grouplist li:last-child {
  margin-bottom: 0;
}

.events-calendarlist .grouplist h3,
.events-calendarlist .grouplist a h3 {
  font-size: 20px;
  font-family: 'Signika', sans-serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.events-calendarlist .grouplist .text,
.events-calendarlist .grouplist a .text {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
}

.events-calendarlist .ajax-list-load-more {
  border: solid 2px #ff8c00;
  margin-top: 10px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 10px;
  color: #ff8c00;
  box-sizing: border-box;
  background: #fff;
  cursor: pointer;
}

.events-calendarlist .ajax-list-load-more.hidden {
  display: none;
}

.events-calendarlist .no-results {
  margin-bottom: 25px;
}

/* *** local events *** */

.events-calendarlist .grouplist .topline {
  margin-bottom: 5px;
  color: #1E4231;
  display: inline-block;
  font-size: 14px;
}

.events-calendarlist .grouplist li {
  position: relative;
}

.events-calendarlist .grouplist .localtag {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 10px 20px 10px 20px;
  background-color: #FEF7E5;
  text-align: center;
}

.events-calendarlist .grouplist a:hover .localtag {
  background-color: #74B841;
  color: #FFFFFF;
}

.events-calendarlist .grouplist h3 {
  clear: both;
}

.events-calendarlist .grouplist li.local a,
.events-calendarlist .grouplist li.local div.nolink {
  /*background-color: #FFFFF5;*/
  /*color: #576471;*/
}

.events-calendarlist .grouplist li.local a h3,
.events-calendarlist .grouplist li.local div.nolink h3,
.events-calendarlist .grouplist li.local a .text,
.events-calendarlist .grouplist li.local div.nolink .text {
  /*color: #576471;*/
}

.events-calendarlist .grouplist li.local a:hover {
  /*color: #74B841;*/
  /*background-color: #FEF7E5;*/
}

.events-calendarlist .grouplist li.local a:hover h3,
.events-calendarlist .grouplist li.local a:hover .text {
  /*color: #74B841 !important;*/
}

.events-calendarlist .more-events {
  cursor: pointer;
  display: inline-block;
  font-family: 'Signika', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1e4231;
}

.events-calendarlist .more-events::before {
  font-family: "Font Awesome 5 Pro", sans-serif;
  content: '\f101';
  margin-right: 10px;
  font-weight: 900;
}

/*** .events-calendarlist RESPONSIVE
******************************************************************************* */

@media only screen and (max-width: 480px) {
  .events-calendarlist .grouplist li a {
    padding-right: 60px;
    background-position: right 0px top 15px;
  }

}

/*** .pageelement-events-detail-main
******************************************************************************* */
.pageelement-events-detail-main {

}

.pageelement-events-detail-main > .container {
  background: #fff;
  padding: 50px 30px;
  border: 2px solid #ff8c00;
  border-radius: 10px;
  display: flex;
  gap: 100px;
}

.pageelement-events-detail-main .events-detail-info-container {
  width: 430px;
  min-width: 430px;
}

.pageelement-events-detail-main .events-detail-info-container .image {
  border-radius: 10px;
  overflow: hidden;
}

.pageelement-events-detail-main .events-detail-main-container .text {
  margin-bottom: 20px;
}

.pageelement-events-detail-main .events-detail-main-container .text h3,
.pageelement-events-detail-main .events-detail-info-container h3 {
  font-size: 20px;
  font-family: 'Open Sans Bold';
  color: #ff8c00;
}

.pageelement-events-detail-main .events-detail-info-container .downloads-info.infobox,
.pageelement-events-detail-main .events-detail-info-container .textbox.infobox,
.pageelement-events-detail-main .events-detail-info-container .text-image-info {
  margin-top: 25px;
}

.pageelement-events-detail-main .events-detail-info-container > :first-child {
  margin-top: 0px;
}

 .pageelement-events-detail-main .events-detail-info-container .downloads-info.infobox .download-link::before {
   font-weight: 100;
   content: "\f56d";
   color: #ff8c00;
 }

.pageelement-events-detail-main .events-detail-main-container .text a {
  color: #ff8c00;
}

.pageelement-events-detail-main .info-box {
  background: #E4E4E4;
  padding: 30px 20px;
  border-radius: 10px;
}

.pageelement-events-detail-main .events-detail-main-container .info-box .section {
  margin-bottom: 20px;
}

.pageelement-events-detail-main .events-detail-main-container .info-box .section:last-child {
  margin-bottom: 0px;
}

.pageelement-events-detail-main .events-detail-main-container .info-box .title {
  margin-bottom: 10px;
  font-family: 'Open Sans Bold';
}

.pageelement-events-detail-main .events-detail-info-container .mail,
.pageelement-events-detail-main .events-detail-info-container .phone,
.pageelement-events-detail-main .events-detail-info-container .text {
  margin-bottom:10px;
  display: block;
  display: flex;
  gap: 8px;
}

.pageelement-events-detail-main .events-detail-info-container .mail:before {
  color: #ff8c00;
  content: '\f0e0';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
}

.pageelement-events-detail-main .events-detail-info-container .phone:before {
  color: #ff8c00;
  content: '\f095';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
}

.pageelement-events-detail-main .events-detail-info-container > :last-child {
  margin-bottom: 0px;
}

.pageelement-events-detail-main .events-detail-main-container .info-box .link {
  color: #ff8c00;
}

.pageelement-events-detail-main .events-detail-info-container .infobox.text-image-info {
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.pageelement-events-detail-main .events-detail-info-container .infobox.text-image-info img {
  border-radius: 10px;
}

.pageelement-events-detail-main .button.button-back.link-back {
  border: solid 2px #ff8c00;
  margin-top: 40px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 10px;
  color: #ff8c00;
  box-sizing: border-box;
  background: #fff;
}

.pageelement-events-detail-main .button.button-back.link-back:before {
  content: '\f053';
  font-family: 'Font Awesome 6 Pro';
  margin-right: 10px;
  display: inline-block;
}

/* accordion-small */
.pageelement-accordion-small.no-margin {
  margin-bottom: 10px;
}

.pageelement-accordion-small .container {
  background: #ff8c00;
  color: #fff;
  font-family: 'Open Sans Bold';
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.pageelement-accordion-small .container:last-child {
  margin-bottom: 0px;
}

.pageelement-accordion-small .container .head {
  background: #ff8c00;
  border-radius: 10px 10px 0px 0px;
  cursor: pointer;
}

.pageelement-accordion-small .container .head .text {
  display: flex;
  max-width: 1000px;
  padding: 17px 20px;
  box-sizing: border-box;
}

.pageelement-accordion-small .container .head .text:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f054';
  margin-right: 20px;
  transition: .5s transform ease-in-out;
  transform: rotate(0deg);
}

.pageelement-accordion-small .container .head .text.open:before {
  font-family: 'Font Awesome 6 Pro';
  content: '\f054';
  margin-right: 20px;
  transition: .5s transform ease-in-out;
  transform: rotate(-90deg);
}

.pageelement-accordion-small .accordion {
  display: none;
  background: #fff;
  border: 2px solid #ff8c00;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  color: #000;
  font-family: 'Open Sans';
}

.pageelement-accordion-small .accordion .content {
  max-width: 1000px;
  padding: 10px 50px 30px;
  box-sizing: border-box;
}

.pageelement-accordion-small .accordion .content a{
  color: #ff8c00;
}

@media only screen and (max-width: 1024px){
  .pageelement-events-detail-main > .container {
    flex-flow: column;
    gap: 50px;
  }
}

@media only screen and (max-width: 800px){
  .pageelement-events-detail-main .events-detail-info-container {
    width: unset;
    max-width: 100%;
    min-width: unset;
  }
}

/*****************************************************************
**** Module Search
******************************************************************/

/* ********** search-main ********** */
.search-main {
  width: 100%
}

.search-main .searchresult-header {
  margin-bottom: 30px;
  font-size: 18px;
}

.search-main .searchresult-header .keyword {
  font-weight: 700
}

.search-main .searchresult-group {
  margin-bottom: 30px;
  width: 100%
}

.search-main .searchresult-group .searchresult-header:before {
  font-family: 'Font Awesome 6 Pro', sans-serif;
  font-weight: 900;
  content: '\f107';
  display: inline-block;
  margin-right: 10px;
  font-size: 22px;
  -webkit-transition: ease-in-out .3s;
  -o-transition: ease-in-out .3s;
  transition: ease-in-out .3s;
}

.search-main .searchresult-group .searchresult-header.active:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.search-main .searchresult-group .searchresult-header {
  font-size: 21px;
  color: #ff8c00;
  display: block;
  border-bottom: 1px solid #1e4230;
  margin-bottom: 15px;
  padding: 0 0 10px 17px;
  cursor: pointer;
}

.search-main .searchresult-group .searchresult-header.active {
  background-position: left -47px
}

.search-main .searchresult-list {
  display: none
}

.search-main .searchresult-list ul {
  display: inline
}

.search-main .searchresult-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #706F6F;
  display: block;
  width: 100%;
  float: none;
}

.search-main .searchresult-link {
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  color: #ff8c00;

}

.search-main .searchresult-item .fontsize-small {
  font-size: 14px;
}
.search-main .searchresult-item .keyword {
  font-weight: 700
}

.search-main .searchresult-item .date {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px
}

.search-main .searchresult-group .header::before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  color: #ff8c00;
}

.pageelement-search-main form {
  position: relative;
}

.pageelement-search-main .search-input {
  width: 500px;
  height: 35px;
  margin-top: 18px;
  font-size: 22px;
  padding: 5px 10px;
  box-sizing: border-box;
  max-width: 100%;
}

.search-main input {
  margin-top: 10px;
  height: 35px;
  width: 500px;
  max-width: 100%;
  font-size: 18px;
  padding: 5px 10px;
  box-sizing: border-box;
}

/* Farben / Colors */

.border-colored.blue {
  border: 2px solid #285DA7;
}

.text-colored.blue {
  color: #285DA7;
}

.background-colored.blue {
  background: #285DA7;
}

.info-accordion .accordion.text-colored.blue .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.blue .text a,
.teaserbox-wide .teaserbox.text-colored.blue .text-content .text a {
  color: #285DA7;
}

 {
  color: #285DA7;
}

.border-colored.light-blue {
  border: #449CDB 2px solid;
}

.text-colored.light-blue {
  color: #449CDB;
}

.background-colored.light-blue {
  background: #449CDB;
}

.info-accordion .accordion.text-colored.light-blue .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.light-blue .text a,
.teaserbox-wide .teaserbox.text-colored.light-blue .text-content a {
  color: #449CDB;
}

.teaserbox-wide .teaserbox.text-colored.light-blue .text-content .text a {
  color: #449CDB;
}

.border-colored.orange {
  border: #FF8B00 2px solid;
}

.text-colored.orange {
  color: #FF8B00;
}

.background-colored.orange {
  background: #FF8B00;
}

.info-accordion .accordion.text-colored.orange .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.orange .text a,
.teaserbox-wide .teaserbox.text-colored.orange .text-content .text a {
  color: #FF8B00;
}

.border-colored.violet {
  border: #9B0687 2px solid;
}

.text-colored.violet {
  color: #9B0687;
}

.background-colored.violet {
  background: #9B0687;
}

.info-accordion .accordion.text-colored.violet .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.violet .text a,
.teaserbox-wide .teaserbox.text-colored.violet .text-content .text a {
  color: #9B0687;
}

.border-colored.green {
  border: #B3CE36 2px solid;
}

.text-colored.green {
  color: #B3CE36;
}

.background-colored.green {
  background: #B3CE36;
}

.info-accordion .accordion.text-colored.green .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.green .text a,
.teaserbox-wide .teaserbox.text-colored.green .text-content .text a {
  color: #B3CE36;
}

.border-colored.yellow {
  border: #E8C425 2px solid;
}

.text-colored.yellow {
  color: #E8C425;
}

.background-colored.yellow {
  background: #E8C425;
}

.info-accordion .accordion.text-colored.yellow .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.yellow .text a,
.teaserbox-wide .teaserbox.text-colored.yellow .text-content .text a {
  color: #E8C425;
}

.border-colored.emerald {
  border: #1D738A 2px solid;
}

.text-colored.emerald {
  color: #1D738A;
}

.background-colored.emerald {
  background: #1D738A;
}

.info-accordion .accordion.text-colored.emerald .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.emerald .text a,
.teaserbox-wide .teaserbox.text-colored.emerald .text-content .text a {
  color: #1D738A;
}

.border-colored.teal {
  border: #429FA1 2px solid;
}

.text-colored.teal {
  color: #429FA1;
}

.background-colored.teal {
  background: #429FA1;
}

.info-accordion .accordion.text-colored.teal .text a,
.pageelement-teaserbox-wide .container .teaserbox.text-colored.teal .text a,
.teaserbox-wide .teaserbox.text-colored.teal .text-content .text a {
  color: #429FA1;
}
