	.CodeMirror .valueChanged {		/*			this is a marker for selenium. It will appear as red dot in the top left corner of the CodeMirror.			it indicates that the value was changed and that the events were fired. 			Once visible, a selenium command that is already waiting for this element will proceed		*/		    position: absolute;		    top: 0;		    left: 0;		    width: 10px;		    height: 10px;		    background: red;		    display: block;		    z-index: 10000;	}	.ScriptEditorErrorMessage.error {		background-color: rgba(255,0,0,0.2);		color: FireBrick ;	}	.ScriptEditorErrorMessage.warning {		background-color: rgba(255,255,0,0.3);		color: SaddleBrown  ;	}	.ScriptEditorErrorMessage .icon {		display: inline-block;		margin-right: 1em;		margin-left: 1em;	}	.ScriptEditorErrorMessage.error .icon::after {		content: "⚠";	}	.ScriptEditorErrorMessage.warning .icon::after {		content: "☛";	}	.ScriptEditorErrorMessage .text {		display: inline-block;	}	.ScriptEditorErrorMessage .textNewLine {		display: block;	}