:root {
	--dark-text: #212121;
}

* {
    font-size: 1.7vmin;
    font-weight: normal;
    box-sizing: border-box;
}

body, html {
	font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
	font-size: 10pt;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
	height: 100%;
	width: 100%;
}

.pointer {
	cursor: pointer;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.flex_row_spacer {
	flex: 0 0 0.5vh;
}

.flex_column_spacer {
	flex: 0 0 0.5vw;
}

.blue_button {
	background-color: var(--def-color);
	height: 8vh;
	max-height: 50px;
	min-height: 30px;
	margin: 0;
	padding: 0 1vw;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.blue_button_hover_bck {
	display: none;
	visibility: hidden;
	background-color: #fff;
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	z-index: 1;
}

.blue_button_text_cont {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.blue_button_icon {
	fill: #fff;
	height: 3vh;
	margin: 0 0.5vw 0 0;
}

.blue_button_text {
	color: #fff;
	padding: 0.1vw 0 0 0;
	text-align: center;
	flex: 1 100%;
	z-index: 2;
	font-weight: bold;
}

.blue_button:hover .blue_button_text {
	color: var(--def-color);
}

.blue_button:hover .blue_button_icon {
	fill: var(--def-color);
	z-index: 2;
}

.blue_button:hover .blue_button_hover_bck {
	display: block;
	visibility: visible;
	z-index: 1;
}

.colorized_icon {
	fill: var(--def-color);
}

.white_icon {
	fill: #fff;
}

.foxModalTitlebar {
	background-color: #fff;
	justify-content: flex-end;
}

.foxModalTitle {
	display: none;
	visibility: hidden;
}

.foxModalClose {
	background-image: url("../images/foxModal_close_icon.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 1vh 1vh 0 0;
}

.foxModalIconColumn {
	display: none;
	visibility: hidden;
}

.foxModalStyleText {
	font-size: 2vmin;
	margin: 1vh 0;	
}

.foxModalFormDesc {
	font-size: 1.8vmin;
	margin: 1vh 0;	
}

.foxModalText {
	font-size: 1.7vmin;
	margin: 2vh 0;	
}

.foxModalButtCont {
	padding: 0;
}

.foxModalButt {
	background-color: var(--def-color);
	margin: 0;
	flex: 1 100%;
}

.foxModalButt:hover {
	background-color: #f2f7fa;
	color: #212121;
}

.foxModalButt p {
	font-weight: bold;
	font-size: 1.7vmin;	
}

.foxModalNoButt, .foxModalButt_cancel {
	background-color: #c14c00;
}

.gradient_box {
	background-image: linear-gradient(135deg, var(--index-gradient_from), var(--index-gradient_to));
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page_title {
    flex: 1 100%;
	font-size: 1.7vh;
    font-weight: bold;
    color: #212121;
}

.standard_table {
	border-collapse: collapse;
	border: solid 1px #c5d0da;
}

.standard_table td,.standard_table tr,.standard_table th {
	border-collapse: collapse;
	border: solid 1px #c5d0da;
	font-size: 1.7vh;
	padding: 0.5vh 0.5vw;
}

.standard_table th {
	background-color: var(--def-color);
	color: #fff;
}

.checkbox_cell {
	text-align: center;
}

.clickable_cell, .checkbox {
	cursor: pointer;
}

.not_saved_cell {
	background-color: #f2c0c0 !important;
}

.clickable_cell:hover {
	background-color: var(--def-color-light);
}

.disabled_cell {
	background-color: #555;
	color: #fff;
}

.warning_button {
	height: 8vh;
	max-height: 50px;
	min-height: 30px;
	padding: 0 1vw;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #800000;
    color: #fff;
    font-size: 1.5vh;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
}
