﻿button.accordion {
font-family:'BuenosAiresWeb',sans-serif; /* dazu 30 09 24 */
font-weight:600; /* dazu 30 09 24 */
background-color:rgb(231,12,101); 
color:rgb(255,255,255); 
cursor:pointer; 
padding:0.9em 1.1em; 
margin-bottom:0.5em; 
width:100%; 
border:none; 
text-align:left; 
outline:none; 
font-size:1.0em; 
transition: 0.4s;}
button.accordion.active, button.accordion:hover {
background-color:rgb(231,12,101);
}
 /* '\002B' = Geometric Shapes PLUS, 25BC = Pfeil nach unten */
button.accordion:after {
content:'\002B'; 
color:rgb(255,255,255); 
font-weight:bolder; 
float:right; 
margin-left:5px;
}
/* \2212 = Geometric Shapes MINUS, 25B2 = Pfeil nach oben */
button.accordion.active:after {
content:"\2212";
}
div.panel {
padding:0 0; 
max-height:0; 
/* margin-bottom:1.0em; */
overflow:hidden; 
transition:max-height 0.4s ease-out;
}