.accordion, .accordion-repeatable {
  margin: 0 auto 0;
  border-top: 0px solid #d9e5e8;
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
.accordion li, .accordion-repeatable li {
border-bottom: 0px solid #d9e5e8;
position: relative;
list-style: none;
}

.accordion p {
font-size: 16px;
line-height: 1.5;
}


/* ACCORDION NEWSFLASH OVERRIDE */

.accordion .detail-text {
  position: relative;
  float: left;
  width: 98%;
  display: none;
  padding: 2% 1% 2% 1%;
}

.accordion .accordion-area {
position: relative;
width: 96%;
  padding: 10px;
  display: block;
  cursor: pointer;
  user-select: none;
  float: left;
  background: transparent;
  border-bottom: solid 1px #444444;
}

.accordion .accordion-area:after {
width: 8px;
height: 8px;
border-right: 1px solid #444444;
  border-bottom: 1px solid #444444;
position: absolute;
right: 10px;
content: " ";
top: 17px;
transform: rotate(-45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

.accordion-area.active:after {
transform: rotate(45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}







/* ACCORDION MODULE OVERRIDE */

/* Damit das Akkordion für ein Modul Override (modules.php) funktioniert, muss das Newsflash in die index.php-Position "accordion" eingefügt werden */


.accordion-text {
  position: relative;
  float: left;
  width: 98%;
  display: none;
  padding: 2% 1% 7% 1%;
}

.accordion-titel {
  position: relative;
  width: calc(100% - 20px);
  padding: 10px;
  display: block;
  cursor: pointer;
  user-select: none;
  float: left;
  background: transparent;
  border-bottom: solid 1px #444444;
}

.accordion-titel:after {
width: 8px;
height: 8px;
  border-right: 1px solid #444444;
  border-bottom: 1px solid #444444;
position: absolute;
right: 10px;
content: " ";
top: 17px;
transform: rotate(-45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

.accordion-titel.active:after {
transform: rotate(45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}




/* ACCORDION REPEATABLE FIELD */

.accordion-repeatable li:nth-child(odd) {
  position: relative;
  width: calc(100% - 50px);
  padding: 10px 10px 10px 40px;
  margin: 0;
  display: block;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  float: left;
  background: transparent;
  transition: all ease .5s;
}

/*
.accordion-repeatable li:nth-child(odd).active {
  background: #ededed;
}
*/

.accordion-repeatable li:nth-child(even) {
  position: relative;
  float: left;
  width: calc(100% - 60px);
  display: none;
  padding: 2% 40px 2% 20px;
  margin: 0;
}


.accordion-repeatable li:nth-child(odd) {
  position: relative;
    width: calc(100% - 20px);
    padding: 10px;
    display: block;
    cursor: pointer;
    user-select: none;
    float: left;
    background: transparent;
    border-bottom: solid 1px #444444;
}

.accordion-repeatable li:nth-child(odd):after {
  width: 8px;
  height: 8px;
    border-right: 1px solid #444444;
    border-bottom: 1px solid #444444;
  position: absolute;
  right: 10px;
  content: " ";
  top: 17px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}


.accordion-repeatable li:nth-child(odd).active:after {
  top: 21px;
  transform: rotate(-135deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}





.kurzbeschrieb-readmore {
  position: absolute;
  top: 50%;
  right: 10%;
  border: solid 2px #323e47;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #323e47;
  background-image: url(../images/information-button.svg);
  background-size: contain;
  cursor: pointer;
  transform: translate(0, -50%);
  font-weight: normal;
}

.kurzbeschrieb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-image: url(../images/information-close.svg);
  background-size: contain;
  cursor: pointer;
}

.kurzbeschrieb {
  display: none;
  padding: 10px 40px 10px 20px;
  position: absolute;
  z-index: 2;
  background-color: #323e47;
  color: #fff;
  border-radius: 10px;
  width: 400px;
  top: 50%;
  right: 110px;
  transform: translate(0, -50%);
  -webkit-box-shadow: 6px 6px 5px -4px rgba(0,0,0,0.4);
-moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,0.4);
box-shadow: 6px 6px 5px -4px rgba(0,0,0,0.4);
}

.kurzbeschrieb:before {
  position: absolute;
  content: "";
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #323e47;
}

.kurzbeschrieb.aktiv {
  display: block;
}

.kurzbeschrieb p {
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}