div.cEditor .cke_source {white-space: pre-wrap;}
.cke_editable img {display: inline-block;}

/* Spaltenbreiten */
.editorColWidthSpacer { width: 20px; }
.editorColWidth1 { width: 205px; }
.editorColWidth2 { width: 430px; }
.editorColWidth3 { width: 655px; }

/* Content Table */
.editorTableList h1,
.editorTableList h2,
.editorTableList h3,
.editorTableList h4 {
	margin: 0;
}

.editorTableList thead th, .editorTableList thead td {
	border-bottom: 1px solid #9a9a9a;
	padding: 5px 0;
}

.editorTableList tbody tr.last td {
	border-bottom: none;
	padding: 5px 0;
}

.editorTableList thead th h2 {
	color: #707070;
}

.editorTableList tbody tr:hover {
	background-color: #ededed;
}

.editorTableList tbody td {
	border-bottom: 1px solid #9a9a9a;
	padding: 4px 2px 0;
}

@media all and (min-width: 800px) {
	.EditorList2C {
		column-count: 2;
	}
}
/* Fliessbilder */

.editorImageLeft,
.editorImageLeftBorder {
	float: left;
	margin-right: 10px;
	margin-bottom: 2px;
}

.editorImageRight,
.editorImageRightBorder {
	float: right;
	margin-left: 10px;
	margin-bottom: 2px;
}

.editorImageLeftBorder,
.editorImageRightBorder,
.editorImageBorder {
	border: 1px solid #707070;
	box-sizing: border-box;
}


/* Farben */
.editorTheWhite { color: #fff; }
.editorTheBlack { color: #08090a; }
.editorTheRed { color: #ed1c24; }
.editorTheGreen { color: #0fd02f; }
.editorTheBlue { color: #0f60bf; }
.editorTheYellow { color: #ffe02f; }
.editorThePink { color: #ff206f; }

.EditorBoxScarlett,
.EditorBoxKyle,
.EditorBoxDexter {
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
}
.EditorBoxScarlett h3,
.EditorBoxKyle h3,
.EditorBoxDexter h3,
.EditorBoxScarlett h2,
.EditorBoxKyle h2,
.EditorBoxDexter h2,
.EditorBoxScarlett h1,
.EditorBoxKyle h1,
.EditorBoxDexter h1 {
	color: #fff;
}


.EditorBoxScarlett {
	background-color: var(--Scarlett-Color);
}
.EditorBoxKyle {
	background-color: var(--Kyle-Color);
}
.EditorBoxDexter {
	background-color: var(--Dexter-Color);
}
.EditorBoxHighlight {
	background: var(--Scarlett-Color);
	border: 3px dashed  var(--Scarlett-Color);
	position: relative;
	padding: 2rem;
	padding-left: 12rem;
	border-radius: 10px;
	margin-bottom: 12px;
	font-size: 110%;
	background: none;
	color: var(--Scarlett-Color);
}
.EditorBoxHighlight:before {
	content: '';
	width: 10rem;
	height: 100%;
	position: absolute;
	left: -3px;
	top: -3px;
	background-color: var(--Scarlett-Color);
	background-image: url(../images/content/light-bulb-white.png);
	background-repeat: no-repeat;
	background-position: 45% 45%;
	border: 3px solid var(--Scarlett-Color);
	border-radius: 10px 0 0 10px;
}
.EditorCssButton {
	background: var(--Scarlett-Color);
	overflow: hidden;
	display: inline-block;
	color: #fff;
	padding: 6px 15px;
	position: relative;
	transition: all 250ms;
	border-radius: 5px;
	cursor: pointer;
}

.EditorCssButton:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	width: 300px;
	height: 300px;
	background-color: var(--Dexter-Color);
	z-index: 1;
	transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.EditorCssButton:hover:after {
	transform: translate(-50%, -50%) scale(1);
}
.EditorCssButton a {
	z-index: 10;
	position: relative;
	color: #fff;
}
.EditorCssButton a:hover {
	text-decoration: none;
}
/* Frage und Antwort */
.editorFrage {
	background-image: url("../images/layout/faq-question.png");
	background-position: 0 6px;
	background-repeat: no-repeat;
	text-indent: 25px;
	font-weight: bold;
	margin-bottom: 1px;
}

.editorAntwort {
	background-image: url("../images/layout/faq-answer.png");
	background-position: 0 6px;
	background-repeat: no-repeat;
	text-indent: 25px;
}

.EditorUppercase {
	text-transform: uppercase;
}
.EditorCapitalize {
	font-variant-caps: small-caps;
}

@media screen and (min-width: 1110px) {
	.editorColumnsTwo {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 3%;
		-webkit-column-gap: 3%;
		column-gap: 3%;
	}

	.editorColumnsThree {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
		
		-moz-column-gap: 3.33%;
		-webkit-column-gap: 3.33%;
		column-gap: 3.33%;
	}
}