.ace_editor {
    margin: 0;
    box-sizing: border-box;
	border: 1px solid rgba(127, 127, 127, 0.5);
	transition: background-color 0.25s ease-out;
	margin-bottom: 10px;
/*	position: relative !important;
	min-height: 200px;
*/	}

/*
.ace_editor.container{
	line-height: 3em;
	}
*/
.ace_editor.fullScreen {
    position: fixed !important;
    height: auto !important;
    width: auto !important;
    border: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
	}

.ace_editor.changed {
	background-color: #ffebbf;
	}

.ace_marker-layer .ace_active-line {
	background-color: rgba(127, 127, 127, 0.15) !important;
	}

/*  --  AUTO SAVE OVERLAY  --  */
.ace-overlay{
	z-index: 20000;
    top: 0;
    right: 0;
    position: absolute;
    border-width: 0 0 1px 1px;
    border-style: solid;
    border-color: rgba(127, 127, 127, 0.5);
    background-color: rgba(191, 191, 191, 0.5);
    padding: 2px 4px;
	display: none;
	opacity: 0.85;
	}
.ace-overlay.positive{
    background-color: lightgreen;
	}
.ace-overlay.negative{
    background-color: red;
	color: white;
	font-weight: bold;
	}
