@font-face {
	font-family: 'customFont1';
	src:
		url('mantinia_regular.otf')
		format('opentype');
	font-weight: normal;
	font-style: normal;
}

body {
	position: absolute;
	background-color: #000000;
	padding: 0px;
	margin: 0px;
	font-family: sans-serif;
	font-size: 11px;
	height: 100%;
	width: 100%;
}

html, div, span, select {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

div, span, select {
	box-sizing: border-box;
}

.mainContainer {
	min-height: 100%;
	width: 100%;
	padding: 0px;
	text-align: center;
	background: #000000;
	border: 0px;
	display: inline-block;
	box-sizing: border-box;
}

.mainContainer:before {
	content: '\200B';
	display: inline-block;
	vertical-align: top;
}

.headerContainer {
	width: 100%;
	height: 75px;
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	border-color: #FFFFFF;
	color: #ffffff;
	border-radius: 0px 0px 10px 0px;
	box-shadow: 8px 8px 15px 0 rgba(0.3, 0.3, 0.3, .1);
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2) /* , 0 6px 5px 0 rgba(0, 0, 0, 0.19) */
	box-sizing: border-box;
	font-family: customFont1, sans-serif;
	text-align: center;
	display: inline-flex;
	margin: auto;
}

.centerContainer {
	display: inline-block;
	vertical-align: middle;
	align: center;
	text-align: center;
	max-width: 1024px;
	width: 100%;
	padding: 0px;
	margin: 0px;
	border-color: 1px solid #FFFFFF;
	background: #000000;
	box-sizing: border-box;
}

.inputContainer, .logContainer {
	position:relative;
	float: left;
	min-height: 800px;
	max-height: 100%;
	height: 100%;
	/* min-height: calc(100% - 170px); */
	/* height: 100%; */
	border: 1px solid #FFFFFF;
	text-align: left;
	box-sizing: border-box;
	border-radius: 0px 10px 10px 0px;
	box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, .1);
	color: #FFFFFF;
	background: #444444;
}
.inputContainer {
	width:  calc(15% - 5px);
}
.logContainer {
	width:  calc(34% - 5px);
}
.inputContainer {
	padding: 10px;
}

.notesContainer {
	position:relative;
	float: left;
	min-height: 800px;
	max-height: 100%;
	height: 100%;
	width:  calc(50% - 5px);
	/* min-height: calc(100% - 170px); */
	/* height: 100%; */
	border: 1px solid #FFFFFF;
	text-align: left;
	box-sizing: border-box;
	border-radius: 0px 10px 10px 0px;
	box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, .1);
	color: #FFFFFF;
	background: #444444;
}


.horispacediv {
	width: 100%;
	height: 12px;
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.vertSpaceDiv {
	float: left;
	width: 8px;
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.hyperspan {
	position: absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
}

/* USED LATER!!! */

/* The close button */
.alertBt, .successBt{
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.alertBt:hover, .successBt:hover {
    color: black;
}

.alert {
	display: none;
	padding: 20px;
    background-color: #f47366;
    color: white;
    position:absolut;
    height:auto;
    width:100%;
    box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, .1);
    box-sizing:border-box;
}

.success {
	display: none;
	padding: 20px;
    background-color: #66F479;
    color: white;
    position:absolut;
    height:auto;
    width:100%;
    box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, .1);
    box-sizing:border-box;
}

.btCommon, .btSubmit, .btAbort {
	width: 120px;
}

.btReset {
	background-color: #660000;
}

.btSubmit {
/*	background-color: rgb(27,173,162); /* petrol */
	background-color: rgb(191,203,68); /* common green */
}

.btSearch, .btCommon, .btFilter, .btAbort, .btSubmit {

	border: 1px solid;
	border-color: #000000;
	min-height: 60px;
	max-height: 60px;
	height: 60px;
	vertical-align: middle;
	text-align:center;
	position: relative;
	box-sizing: border-box;
	font-family: customFont1, sans-serif;
	font-size: 16px;

}

.btSearch:disabled {
	border: 1px solid #AAA;
}

.btSearch:enabled {
	border: 1px solid #000;
}