.modal fieldset label.editor code span{
	margin-right: 0
}
.modal fieldset label.editor{
	display:  block;
	position:  relative;
}	
/*.editor{
	position:  fixed!important;
}*/
.editor code{
	position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	padding-left:  0;
	padding-right: 0;
	counter-reset: css-counter 0;
	transform: translate(0);
	overflow: hidden;
	contain: strict
}
.editor code div{
	padding-left: 50px;
	padding-right: 0;
	counter-increment: css-counter 1;
	position:  relative;
	transition: all .3s;
	min-height: 1.25em;
	transform-origin: 40px;
}

.editor code div:before{
	content: counter(css-counter);
	position:  absolute;
	left:  0;
	top:  0;
	bottom:  0;
	width:  35px;
	padding-right: 4px;
	text-align: right;
	color: inherit;
	border-right:  1px solid currentColor;
	opacity: .3;
}

.editor{
/*	margin:  5px 0px 10px;*/
	height: 100%;
	width:  min-content;
/*	border:  1px solid #000000;*/
	width:  100%;
	box-sizing:  border-box;
	position: relative;

}
.editor code, .editor textarea{
	display: block;
	padding: 0 0;
	color: #222; 
	line-height: 1.25em; 
	font-family: Monaco, courier; 
	font-size: 12px;
	letter-spacing: .5px;
	box-sizing: border-box; 
	white-space: pre-wrap;  
	border:  none;
	-webkit-overflow-scrolling: touch; padding-bottom:  200px;
	overflow-wrap: normal;
	tab-size: 4;
	width:  100%;
	outline: none;
	min-width: 300px;
	min-height: 270px;
	height: 100%;
}

.editor.smooth{
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
.editor.sharp{
	-webkit-font-smoothing: none;
	font-smoothing: none;
}

/*.editor textarea{
	height: 100vh;
	overflow:  scroll;
}*/
.editor textarea{
	position: relative;
	padding-left:  50px!important;
	background: none;
	color: transparent;
	caret-color: #555;
}
.editor textarea::selection{
	background-color: #2656D3;
	color: #fff!important;
}
#code_debugger{
	background: #eee;
	margin: 1rem;
	padding: 1rem;
	font-family: monospace;
	font-size: 11px
}
#debugger_results{
	color: #ccc;
	background:  #333;
	height: 200px;
	margin: 0;
	padding: 0.25rem .5rem;
	font-family: monospace;
	overflow: scroll;
	font-size: 11px;
}
.debugger{
	/*position:  relative;*/
}
#result{
	 border: 2px solid green; background: #fff; margin: 1rem; padding: 1rem; font-family: monospace;
}


#IDE{
	position: fixed;
	bottom: 0;
	right: 0;
}

