.pad {
	padding-top : 10px;
	padding-bottom : 35px;
	padding-left : 15px;
	padding-right: 15px;
}


.console {
	
	font-size : 13px;
	height : 100%;
	background-color : #e9e9e9 ;
	outline : 1px solid #bfbfbf;
	overflow-y : scroll;
	padding-left : 0.35em;
	color : black;
}

body {
	/*
		solves issue where document is slightly bigger than the window, causing scrolbars
		to be onscreen constantly
	*/
	font-family: "Open Sans",Arial,sans-serif !important;
	overflow-x : hidden;
}


:root {
	/*
	add css variables here
	*/
}


/*
	Fix issue where goldenlayout's tab dropdown is below codemirror line
	text overlap and making the tab dropdown unfocusable
*/

.CodeMirror pre.CodeMirror-line, .CodeMirror {
	z-index : 0;
}
/*
	Codemirror uses z-index to put text above the opaque selection block, above fix causes it to cover everything
	workaround by giving it 30% opacity
*/

.CodeMirror-selected {
	opacity : 0.3;
}
.modal-dialog {
	pointer-events : auto; /*Required to get actual mouse events*/
	background-color : white;
	border-radius : 5px;
}

.emx-background {
	background-image : url(https://www.emmtrix.com/wp-content/uploads/2020/03/RZ_Headbild_nurProcessor_780x750-pixel_2020-03-30.png);
	background-image : url(../imgs/Footer-1.png);
	background-repeat : no-repeat;
	background-size : cover;
	background-position : center;
	color: white;
}

.emx-text {
	
	background-color:#F4F4F4; 
	color: black; 
	font-family:Rajdhani !important;
}

.pad-top {
	padding-top : 75px;
}

.block {
	display:block;
}
a.link {
	transition : opacity 300ms ease;
	color : white;
	text-decoration:none;
}
a.link:hover {
	opacity : 0.7;
}

.blend-diff {
	mix-blend-mode : difference;
}

.bold-light {
	font-weight : 600;
}
.bold {
	font-weight : bold;
}

/*
	Hack to display <a> tag in lm_popout
	curently unused
*/
/*
.lm_header .lm_controls>a {
	cursor: pointer;
    float: left;
    width: 18px;
    height: 18px;
    text-align: center;
	
}

.lm_controls>a {
	display : list-item;
	position: relative;
	background-position: center center;
    background-repeat: no-repeat;
    opacity: .4;
    transition: opacity 300ms ease;
}
*/
