.bbEditor {
	display: none;
	position: relative;
}
.bbEditor.initialized {
	display: flex;
}

.bbEditor.design-1 {
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}
.bbEditor.design-1 > .buttonBox {
	order: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -5px;
}
.bbEditor.design-1 > .editorBox {
	order: 0;
	height: 200px;
	min-height: 200px;
	max-height: 200px;
	resize: none;
	margin-bottom: 20px;
	overflow-x: hidden;
	overflow-y: scroll;
	font-family: Verdana, sans-serif;
}
.bbEditor.design-1 > .previewBox {
	order: 1;
	position: relative;
	overflow: hidden;
	height: 200px;
	min-height: 200px;
	max-height: 200px;
	pointer-events: none;
}
.bbEditor.design-1 > .previewBox:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 100;
	font-size: 4em;
	content: "Vorschau";
	color: rgba(0, 0, 0, 0.2);
}
.bbEditor.design-1 > .previewBox > div {
	overflow-x: hidden;
	overflow-y: scroll;
	display: flex;
	align-items: stretch;
	height: 200px;
	min-height: 200px;
	max-height: 200px;
	background-color: rgba(0, 0, 0, 0.07);
	padding: 2px 4px;
	pointer-events: auto;
}
.bbEditor.design-1 > .previewBox > div > div {
	width: 100%;
}
.bbEditor.design-1 > .buttonBox > div {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.07);
	padding: 4px;
	margin: 5px;
}
.bbEditor.design-1 > .buttonBox > div:hover {
	background-color: rgba(0, 0, 0, 0.1);
}
.bbEditor.design-1 > .buttonBox > div:active {
	background-color: rgb(190, 121, 58);
	color: #fff;
}

.bbBox {
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	font-size: 1em;
	text-align: left;
	color: #ddd;
}
.bbBox, .bbBox * {
	border-bottom: 1px solid transparent;
	margin-bottom: -1px;
}

.bbBox .bb-b {
	font-weight: bold;
}
.bbBox .bb-i {
	font-style: italic;
}
.bbBox .bb-u {
	border-bottom-color: #ddd;
}
.bbBox .bb-x {
	text-decoration: line-through;
}
.bbBox .bb-s {
	font-size: 0.7em;
}
.bbBox .bb-l {
	font-size: 1.3em;
}
.bbBox .bb-url {
	border-bottom: 1px dotted rgb(190, 121, 58);
}
.bbBox .bb-left {
	text-align: left;
}
.bbBox .bb-justify {
	text-align: justify;
}
.bbBox .bb-center {
	text-align: center;
}
.bbBox .bb-right {
	text-align: right;
}
.bbBox .bb-highlight {
	color: rgb(190, 121, 58);
}
.bbBox .bb-img {
	max-width: 100%;
}
