:root {
	--main-color: #618EAD;
  --hover-color: #356f96;
  --select-color: #f3b839;
  --select-color-dark: #e8ae31;
  --red: #f33939;
  --green: #3A3;
  --menu-color: #D3D8DC;
}

* {
	color: #444;
	font-size: 16px;
	font-family: Arial;
}

html, body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

#authBox {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

#auth {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 350px;
	height: 300px;
	border-radius: 10px;
	box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

#auth input {
	padding: 5px;
	height: 45px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #999;
}

#auth button {
	margin: 0 auto;
	width: 150px;
	height: 50px;
	background-color: #444;
	color: #FFF;
	border: none;
	border-radius: 5px;
	transition: all .2s ease;
	cursor: pointer;
}

#auth button:hover {
	background-color: #666;
}

.aLab {
	margin-top: 15px;
	margin-bottom: 5px;
}

#aAlert {
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: var(--red);
}

#menu {
	padding: 0 10px;
	height: 50px;
	display: flex;
	align-items: center;
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.mSep {
	margin-right: 10px;
	width: 30px;
	height: 50px;
	box-sizing: border-box;
	background-color: var(--menu-color);
	border: 10px solid #FFF;
	border-bottom-color: var(--menu-color);
	border-top-color: var(--menu-color);
}

.mItem {
	margin-right: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	border: 5px solid transparent;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
	box-sizing: border-box;
	background-color: transparent;
	cursor: pointer;
}

.mItem svg {
	width: auto;
	height: 60%;
	min-height: 60%;
	fill: var(--main-color);
	transition: all .2s ease;
}

.mib svg {
	width: 25px;
	min-width: 25px;
	height: 25px;
	min-height: 25px;
}

.miSel {
	border-bottom-color: var(--menu-color);
}

.mItem:hover {
	border-bottom-color: var(--select-color);
}

.mItem:hover svg, .miSel svg {
	fill: var(--select-color);
}

.findForm {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	height: 50px;
}

.findForm input {
	padding: 5px;
	box-sizing: border-box;
	height: 40px;
	border: 1px solid var(--main-color);
	border-radius: 5px;
}

.findForm .mItem:hover {
	border-bottom-color: transparent;
}

.mobFind {
	flex-direction: column;
	padding: 10px;
	box-sizing: border-box;
	height: auto;
	display: none;
}

.mobFind input {
	margin: 0 5px;
	width: 0;
	flex-grow: 1;
}

.fndDUO {
	display: flex;
	align-items: center;
	justify-content: start;
	width: 100%;
}

.fdate {
	margin-right: 5px;
	width: 100px;
	text-align: center;
}

#tbox {
	padding: 0 20px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

td, th {
	padding: 10px;
	border: 1px solid var(--main-color);
	text-align: center;
}

th {
	background-color: var(--main-color);
	color: #FFF;
}

.nodata {
	padding: 20px;
	color: #888;
	text-align: center;
}

.mCapt {
	padding: 20px;
	color: var(--select-color);
	font-size: 24px;
}

.download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px solid transparent;
	padding: 5px;
	width: 40px;
	min-width: 40px;
	height: 40px;
	min-height: 40px;
	cursor: pointer;
	transition: all .2s ease;
}

.download svg {
	height: 100%;
	min-height: 100%;
}

.download:hover {
	border-color: var(--select-color);
}

.menuFind {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: right;
}

.uok,
.uno {
	width: 25px;
	height: 25px;
	fill: var(--green);
}
.uno {fill: var(--red);}

#content {
	width: 100%;
	display: flex;
	justify-content: center;
}

.form {
	padding-top: 20px;
	width: 800px;
}

.duo {
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fLab {
	height: inherit;
	padding-right: 20px;
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: right;
	color: var(--main-color);
}

.inp {
	display: flex;
	align-items: center;
	width: 0;
	flex-grow: 1;
}

.form input, .form select {
	padding: 5px;
	box-sizing: border-box;
	height: 40px;
	min-height: 40px;
	border-radius: 5px;
	border: 1px solid var(--main-color);
}

.form input[type='checkbox'],
.form input[type='radio'] {
	box-sizing: border-box;
	margin-right: 10px;
	width: 40px;
	min-width: 40px;
}

.form button {
	margin: 20px auto;
	width: 150px;
	height: 40px;
	border-radius: 5px;
	border: none;
	background-color: var(--main-color);
	color: #FFF;
	transition: all .2s ease;
	cursor: pointer;
}

.form button:hover {
	background-color: var(--select-color);
}

.selRow {
	transition: all .2s ease;
}

.selRow:hover {
	background-color: #f2e7cec4;
}

.click {
	cursor: pointer;
}

#logout {
	cursor: pointer;
}

.panel {
	display: flex;
	justify-content: center;
}

.mpn {
	padding: 0 10px;
	width: 500px;
}

.userBox {
	width: 100%;
}

.stForm {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.stForm input {
	height: 40px;
	border: 1px solid var(--main-color);
	border-radius: 5px;
	padding: 5px;
	box-sizing: border-box;
	margin: 0 0 10px 0;
}

.stForm button {
	margin: 0 0 0 auto;
	width: 150px;
	height: 40px;
	border-radius: 5px;
	border: none;
	background-color: var(--main-color);
	color: #FFF;
	transition: all .2s ease;
	cursor: pointer;
}

.stForm button:hover {
	background-color: var(--select-color);
}

.mpCapt {
	padding: 15px 0;
	width: 100%;
	color: var(--select-color);
	font-size: 20px;
}

.userBox {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.orgsave, .save, .key {
	margin-left: 10px;
}

.userBox input {
	width: 0;
	flex-grow: 1;
	height: 40px;
	border: 1px solid var(--main-color);
	border-radius: 5px;
	padding: 5px;
	box-sizing: border-box;
}

.icon {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.icon svg {
	fill: var(--main-color);
	transition: all .2s ease;
}

.icon:hover svg {
	fill: var(--select-color);
}

.delUser, .delOrg {
	margin-right: 5px;
}

.delUser svg, .delOrg svg {
	fill: var(--red);
}

#delPage {
	width: 150px;
	height: 40px;
	line-height: 40px;
	margin: 10px auto;
	text-align: center;
	border-radius: 5px;
	background-color: var(--red);
	color: #FFF;
	cursor: pointer;
	transition: all .2s ease;
}

#delPage:hover {
	background-color: #E44;
}

input[name='num'] {
	text-transform: uppercase;
}

.ftxt {
	padding: 3px;
	background-color: #f4f8ac;
}

#saveExcel {
	padding: 8px;
	box-sizing: border-box;
	border-radius: 50%;
	display: block;
	float: right;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: all .2s ease;
}

#saveExcel svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	min-height: 24px;
}

#saveExcel:hover {
	background-color: var(--select-color);
}

/*------------------------------------------------------------------*/
/*------------------------------------------------------------------*/
/*------------------------------------------------------------------*/
/*------------------------------------------------------------------*/

@media all and (max-width: 800px) {

	.panel {
		width: 100%;
		display: block;
	}

	.mpn {
		margin: 0;
		width: auto;
	}

	.uok,
	.uno {
		width: 20px;
		height: 20px;
	}

	.findForm {display: none;}
	.mobFind {display: flex;}

	form {
		padding: 0 10px;
	}

	.duo {
		flex-direction: column;
		align-items: start;
	}

	.fLab {
		padding-bottom: 5px;
		justify-content: start;
	}

	.inp {
		width: 100%;
	}

	.mCapt {
		padding-right: 5px;
		padding-left: 5px;
	}

	#tbox {
		padding: 0 5px;
		width: 100%;
		box-sizing: border-box;
		overflow-x: auto;
	}

	td, th {
		text-align: center;
		font-size: 13px;
		padding: 2px;
	}

}

@media all and (max-width: 440px) {

	#auth {
		box-shadow: none;
	}

}