.texteditor-template-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.texteditor-col {
    width: 33%;
    padding: 30px;
    padding-top: 0 !important;
}

.texteditor-col.wide {
    width: 66%;
}



.contenteditable-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.texteditor-template {
    width: 100%;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    min-height: 100px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.texteditor-template[contenteditable="true"] {
    outline: none;
}

.texteditor-copy-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.texteditor-copy-confirmation {
    margin-top: 10px;
    color: green;
}




.download_liste ul, .texteditor-template-list {
	list-style-type: none;
	padding-left: 0 !important;
	margin: 0px !important;
}

.texteditor-template-list li {
	color: var(--color-content-link);
	cursor: pointer;
}

.texteditor-template-list li i {
	font-family: "fontawesome";
}

.texteditor-global-inputs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.texteditor-global-inputs .form-col {
	width: 48%;
}

.texteditor-global-inputs .form-col input {
	background: #fff !important;
	border: 1px solid #ccc !important;
}

.texteditor-template-list li i::after {
	content: "\f054" !important;
	font-size: 14px !important;
	margin-left: 5px;
	font-weight: 900;
	opacity: 0;
	transition: .3s;
}

.texteditor-template-list li.active i::after,
.texteditor-template-list li:hover i::after {
	opacity: 1;
	margin-left: 10px;
}

.download_liste .text-small {
	font-size: .75rem !important;
	color: #333 !important;
	opacity: .8rem !important;
	margin-left: 8px;
}

.input-row {
	position: relative;
}

.input-row .prefix {
	   position: absolute;
    bottom: 48px;
    left: 10px;
}

.input-row input {
	padding-left: 45px;
}


.contenteditable-wrapper {
	position: relative !important;
	border-radius: 4px !important;
}

.contenteditable {
	border-radius: 8px;
	padding: 50px 30px;
	height: auto !important;
}

.texteditor-editor {
	margin-bottom: 50px;
}

.texteditor-button {
	background: #856FAB;
	border-radius: 4px;
}

.texteditor-copy-confirmation {
	color:  #856FAB;
	margin: 15px;
	display:inline-block;
}

.texteditor-col {
	padding-left: 0 !important;
}

.texteditor-editor {
	max-width: 1400px
}