/**
 * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
 * This file is licensed under the terms of the MIT License (see LICENSE.md).
 */

:root {
	--ck-sample-base-spacing: 1em;
	--ck-sample-color-white: #fff;
	--ck-sample-color-green: #279863;
	--ck-sample-color-blue: #1a9aef;
	--ck-sample-container-width: 1285px;
	--ck-sample-sidebar-width: 350px;
	--ck-sample-editor-min-height: 400px;
	--ck-sample-editor-z-index: 10;
}



/* --------- DOCUMENT OUTLINE FEATURE ------------------------------------------------------------------------------ */


.centered {
	/* Hide overlapping comments. */
	overflow: hidden;
	max-width: var(--ck-sample-container-width);
	margin: 0 auto;
	padding: 0 var(--ck-sample-base-spacing);
	min-height:10em;  
	padding-bottom:.5em;
}

.row {
	display: flex;
	position: relative;
	min-height:9em; 

}

.editor-container{

	width:100%;
	height:100%;
	min-height:9em; 
}

.editor{
	
	width:100%;
	margin-left:0%;
	height:100%;
	min-height:9em; 
	
}

.ck-editor__editable {
    min-height: 10em;
	border:solid 1px black;
}




