/**** Plug-In Accordion Style.css ***/


.wp-block-accordion-heading {
	background:linear-gradient(#fff 70%, #f5f5f5);
	border: 1px solid #ddd;
	padding:0px 12px;
    font-size: 1.1em;
	cursor:pointer;
}

/* lightweight Accordion */

.lightweight-accordion {
	margin: 1.0em 0;
	border: 1px solid #ddd;
	background:#fff;
}
.lightweight-accordion .lightweight-accordion-title {
	display:list-item;
	background:linear-gradient(#fff 70%, #f5f5f5);
	padding:6px 12px 6px 18px;
	cursor:pointer
}
.lightweight-accordion-title::after {
	font-family:'fontawesome';
	content:"\f0fe";
	float: right;
	clear:both;
}
.lightweight-accordion-title:hover {
	color: #c00;
	background:linear-gradient(#f5f5f5, #fff 70%);
}
.lightweight-accordion .lightweight-accordion-body {
	padding:10px
}
.lightweight-accordion.bordered .lightweight-accordion-body {
	border:2px solid #f1f2f6;
	border-top:0
}
.lightweight-accordion details[open] summary~* {
	animation:lwopen .5s ease-in-out;
}
.lightweight-accordion .lightweight-accordion-title p,
.lightweight-accordion .lightweight-accordion-title span,
.lightweight-accordion .lightweight-accordion-title h1,
.lightweight-accordion .lightweight-accordion-title h2,
.lightweight-accordion .lightweight-accordion-title h3 {
	display:inline;
	font-weight:400
}
.lightweight-accordion .lightweight-accordion-title span {
	font-size: 1.1em
}
details[open] .lightweight-accordion-title::after {
	font-family:'fontawesome';
	content:"\f146";
}
details[open] .lightweight-accordion-title {
	background:linear-gradient(#f5f5f5, #fff 70%);
}

@keyframes lwopen {
	0%    {opacity: 0;}
	100%  {opacity: 1;}
}


/* css Accordion */
#akkordeon:not(:target) .inhalt,
#akkordeon:not(:target) .hide,
#akkordeon:target .show {display: none;}
#akkordeon:target .inhalt {display: block;}
.inhalt {
	padding: 20px 20px 1px;
	margin: 0px 0px 10px;
}
.show, .hide {
	padding:8px 12px;
	background:linear-gradient(#fff 70%, #f5f5f5);
	color:#444;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-weight:400
}
.show:hover, .hide:hover {
	background: #bbb;
	color:#fff!important;
	transition:0.2s all ease-in-out!important;
}
.show::before {
	font-family:'fontawesome';
	content:"\f054";
	padding-right: 8px;
}
.hide::before {
	font-family:'fontawesome';
	content:"\f077";
	padding-right: 8px;
}

