.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: disc;
}

.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% 2% 1%;
}

.accordion-titel {
	position: relative;
	width: 96%;
    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 em:nth-child(odd) {
    position: relative;
    width: calc(100% - 50px);
    padding: 25px 40px 25px 10px;
    margin: 0;
    display: block;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    float: left;
    background: transparent;
    transition: all ease .5s;
    border-top: solid 1px #d9d9d9;
}
/*
.accordion-repeatable em:nth-last-of-type(odd) {
  border-bottom: solid 1px #d9d9d9;
}
*/
/*
.accordion-repeatable li:nth-child(odd).active {
    background: #ededed;
}
*/

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

.accordion-repeatable em:nth-child(odd):after {
    position: absolute;
    right: 0px;
    content: " ";
    top: 50%;
    transform: rotate(0deg) translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-image: url(../images/arrow-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 26px;
}


.accordion-repeatable em:nth-child(odd).active:after {
    transform: rotate(-180deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}