.ckeditor-accordion-container {
	/* background-color: #eee!important; */
	font-weight: bold;
}

.accordion {
	background-color: rgb(42, 83, 166);
	color: #fff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: 0;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.active, .accordion:hover {
	background-color: rgb(245,245,245) !important;
}

.accordion:after {
	content: '\002B';
	color: #000000;
	font-weight: bold;
	float: left;
	margin-left: -15px;
}

.active:after {
	content: "\2212";
}

.ckeditor-accordion-container > dl dt.active > a {
	display: block;
	padding: 10px 15px 10px 50px;
	background-color: rgb(230,230,230) !important;
	color: #000;
	cursor: pointer;
	-webkit-transition: background-color 300ms;
	transition: background-color 300ms;
	border-bottom: none!important;
	border-radius: 6px;
	text-decoration: none;
}

.ckeditor-accordion-container > dl dt > a:hover,.ckeditor-accordion-container > dl dt.active > a:hover {
	opacity: .8;
}

.ckeditor-accordion-container > dl dt > a, .ckeditor-accordion-container > dl dt > a:not(.button) {
	display: block;
	padding: 10px 15px 10px 50px;
	background-color: rgb(42, 83, 166) !important;
	color: #fff;
	cursor: pointer;
	border-radius: 6px 6px 0 0;
}

.ckeditor-accordion-container > dl dt {
	margin-top: 6px !important;
}

.ckeditor-accordion-container > dl {
	position: relative;
	border: none;
}

.ckeditor-accordion-container > dl dt {
margin-bottom: 0;
}

.panel {
	padding: 0 18px;
	background-color: var(--color-near-white);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	height: 1;
}