@charset "utf-8";
/* CSS Document */

/* ---------- */
/*   inputs   */
/* ---------- */

input[type=submit] {
	cursor: pointer;
	color: #333;
	/*background-color:#CCC;*/
}

input[readonly] {
	background-color: #eee;
}

.regular-checkbox {
	-webkit-appearance: none;
	appearance: none;
	background-color: #FFF;
	border: 1px solid #CCC;
	padding: 8px;
	margin: 0 0 2px 0;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	width: 26px;
	height: 27px;
}

/*
.regular-checkbox:active, .regular-checkbox:checked:active {
}
*/

.regular-checkbox:checked {
	border: 1px solid #CCC;
	color: #99a1a7;
}

.regular-checkbox:checked:after {
	content: '\2714';
	font-size: 16px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: #99a1a7;
}

label {
	font-size: 14px;
	text-decoration: none;
	text-transform: none;
	font-weight: bold;
	color: #333333;
}

/* ---------- */
/* containers */
/* ---------- */

.form_container {
	max-width: 100%;
}

.fields_section_container {
	padding: 0px 0px 0px 0px;
	flex: 1 1 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
}


.field_outer_container {
	padding: 0px 0px 2px 0px;
}


.field_inner_container {
	padding: 0px 1px 0px 1px;
	text-decoration: none;
	color: #333;
}

/*
.field_label_container {
}
*/


.checkbox_container {
	display: flex;
	align-items: flex-start;
	flex-flow: column nowrap;
	justify-content: flex-start;
}


.form_title_container {
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row nowrap;
}

.form_title {
	font-weight: 600;
	/*text-transform: uppercase;*/
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-flow: row nowrap;
}

.form_body_container {
	width: 100%;
	min-width: 50%;
	overflow: auto;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	padding: 15px;
	border: 1px #eee solid;
	margin-bottom: 5px;
}


.login_form {
	border: 1px solid #eee;
	padding: 10px;
	background-color: #fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.check_message {
	font-size: 80%;
	color: red;
	padding: 3px;
	display: none;
}

.file-list {
	font-size: 12px;
}

.drop-zone {
	font-size: 14px;
	width: 100%;
	height: 100px;
	background-color: #eee;
	display: flex;
	justify-content: center;
	align-items: center;
}