/*
*
* Global page {
*
*
*/

a {
	text-decoration: none;
	color: inherit;
}
a:visited {
	color: inherit;
}
html, body {
	width: 100%;
	height: 100%;
}
textarea {
	resize: none;
}
input:focus, textarea:focus, select:focus{
	outline: none;
}
.hide {
	display: none;
}
.flex-break {
	flex-basis: 100%;
	height: 0;
}
.elipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body {
	font-family: 'Lato', sans-serif;
}
div, input, textarea, main, a {
	box-sizing: border-box;
}
.margin-left-auto {
	margin-left: auto;
}
.pseudo-icon:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	position: absolute;
}
.noSelect {
	-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
			-khtml-user-select: none; /* Konqueror HTML */
				-moz-user-select: none; /* Old versions of Firefox */
				-ms-user-select: none; /* Internet Explorer/Edge */
						user-select: none; /* Non-prefixed version, currently
																	supported by Chrome, Opera and Firefox */
}
.Outline {
	max-width: 1400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	padding: 0 30px;
}
.tooltip {
	display: none;
	position: absolute;
	z-index: 10000;
	text-align: center;
	background-color: white;
	min-width: 60px;
	padding: 9px 20px;
	color: #5A5A5A;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	border-radius: 7px;
}
.tooltip:after {
	content: '';
	width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid white;
	position: absolute;
	bottom: -5px;
	left: calc(50% - 2.5px);
	z-index: 1;
}
.tooltip:before {
	content: '';
	width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #dddddd;
	position: absolute;
	bottom: -7px;
	left: calc(50% - 2.5px);
	z-index: 1;
}
#popup-msg-container {
	position: fixed;
	top: 40px;
	left: 50%;
	z-index: 9999999;
	display: flex;
	flex-direction: column;
	width: 500px;
	margin-left: -250px;
	align-items: center;
	justify-content: center;
}
#ohYesPopup_Cont {
	display: none;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0, 0, 0, 0.6);
	padding: 40px;
}
#ohYesPopup_Cont.on {
	display: flex;
	align-items: center;
	justify-content: center;
}
#ohYesPopup_Cont .preview {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1000px;
	max-height: 1500px;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 10px;
	position: relative;
}
#ohYesPopup_Cont .preview iframe {
	width: 100%;
	height: 100%;
}
#ohYesPopup_Cont .close {
	border: 4px solid #c7c7c7;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	z-index: 100;
	background-color: rgb(97, 97, 97);
	color: white;
	font-size: 1.5rem;
	text-align: center;
	line-height: 47px;
	border-radius: 50%;
	right: -15px;
	top: -15px;
	position: absolute;
	width: 55px;
	height: 55px;
}
#ohYesPopup_Cont > div img {
	width: 100%;
}
.popup-msg {
	top: -150px;
	/* display: none; */
	opacity: 0;
	position: absolute;
	
	border-radius: 20px;
	
	padding: 15px 30px;
	text-align: center;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
}
.popup-msg.blue {
	background-color: #C7E7FF;
	border: 1px solid #90D0FF;
}
.popup-msg.blue .msg-close {
	border: 2px solid #5EA7DC;
	color: #275373;
}
.popup-msg.red {
	background-color: #FFC7C9;
	border: 1px solid #FF90A2;
}
.popup-msg.red .msg-close {
	border: 2px solid #F56E72;
	background-color: #FFF4F4;
	color: #79081C;
}
.popup-msg .msg-close {
	content: 'f00d';
	
	background-color: white;
	border-radius: 50%;
	position: absolute;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	right: -10px;
	top: -10px;
	cursor: pointer;
	
}
.popup-msg .msg-title {
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.popup-msg:not(:nth-child(1)) {
	background-color: #e6e6e6;
	border: 1px solid #b9b9b9;
}
#page-error {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	color: gray;
}

main .div-table {
	display: table;
	width: 100%;
}
main .div-table > .tr {
	display: table-row;
	height: 50px;
	line-height: 50px;
}
main .div-table > .tr.th {
	background-color: #7F7F7F;
	height: 38px;
	border-radius: 5px;
	line-height: 38px;
	color: white;
	font-size: 0.8rem;
	border-bottom: 5px solid #575757;
}
main .div-table > .tr:not(.th) {
	white-space: nowrap;
	font-size: 0.9rem;
	color: #28435C;
	background-color: #F1F1F1;
	transition: 0.1s;
}
main .div-table > .tr:not(.th):hover {
	background-color: #A9D5F5;
}
main .div-table > .tr > * {
	display: table-cell;
	padding: 0 15px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 2px solid white;

}
main ._pretty-select-original {
	display: none;
}
main ._pretty-select {
	height: 100%;
	cursor: pointer;
	position: relative;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
			-moz-user-select: none; /* Old versions of Firefox */
			-ms-user-select: none; /* Internet Explorer/Edge */
					user-select: none; /* Non-prefixed version, currently
																supported by Chrome, Opera and Firefox */
}
main ._pretty-select:after {
	transition: 0.2s;
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 7px 5px 0 5px;
	border-color: #8b8b8b transparent transparent transparent;
	cursor: pointer;
}
main ._pretty-select .wrap {
	height: 100%;
}
main ._pretty-select ._ps-container {
	position: relative;
}
main ._pretty-select ._ps-inp {
	text-align: center;
	font-size: 1.3rem;
	background-color: transparent;
	cursor: pointer;
	padding: 0 20px;
	height: 38px;
}
main ._pretty-select ._ps-list {
	display: none;
	position: absolute;
	overflow-y: auto;
	max-height: 200px;
	width: 100%;
	z-index: 999;
	background-color: white;
	border-left: 1px solid #BFBFBF;
	border-right: 1px solid #BFBFBF;
	border-bottom: 1px solid #BFBFBF;
}
main ._pretty-select ._ps-list {
	text-align: center;

}
main ._pretty-select ._ps-list.on {
	display: block;
}
main ._pretty-select ._ps-list > div {
	line-height: 40px;
}
main ._pretty-select ._ps-list > div:hover {
	background-color: #edf8ff;
}
main ._pretty-select ._ps-list > div[data-selected=true] {
	background-color: #d6efff;
	font-weight: 700;
}
main ._pretty-select input {
	width: 100%;
	height: 100%;
	border: 0;
}

main {
	width: 100%;
	height: 100%;
}
main.loggedin {
	background-color: #F6F5FB;
	padding: 50px 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
main.loggedin .shape {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
main .stage .bottom > .right .right-contents-scroll {
	overflow: auto;
	max-height: calc(100vh - 320px);
}
main.loggedin .shape > div {
	position: absolute;
	z-index: 0;
}
main.loggedin .table-msg {
	text-align: center;
	line-height: 100px;
	background-color: #f0f0f0;
	color: #757575;
}
main.loggedin .shape-1, main.loggedin .shape-2, main.loggedin .shape-3, main.loggedin .shape-4 {
	border-radius: 50%;
}
main.loggedin .shape-1 {
	width: 440px;
	height: 440px;
	left: -100px;
	top: 30px;
	background-color: #C9DCF1;
}
main.loggedin .shape-2 {
	width: 38px;
	height: 38px;
	background-color: #F8DCD9;
	left: 60%;
	top: 30px;
}
main.loggedin .shape-3 {
	width: 150px;
	height: 150px;
	left: 70%;
	top: 50px;
	background-color: #ECC8E5;
}
main.loggedin .shape-4 {
	width: 665px;
	height: 665px;
	right: -100px;
	bottom: -100px;
	background-color: #F2E1CA;
}
main.loggedin .stage {
	overflow: hidden;
	max-width: 1800px;
	max-height: 1063px;
	z-index: 1;
	height: 100%;
	width: 100%;
	position: relative;
	background-color: white;
	border-radius: 25px;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
}
main.loggedin .stage .top {
	background-color: #F4F7F9;
	height: 60px;
	display: flex;
}
main.loggedin .stage .top .logo {
	display: block;
	height: 100%;
	width: 210px;
	min-width: 210px;
	background-color: white;
	padding-left: 30px;
}
main.loggedin .stage .top .search {
	max-width: 300px;
	width: 100%;
	margin-left: 50px;
	position: relative;
}
main.loggedin .stage .top .search > span:before {
	content: '\f002';
	left: -29px;
	top: 21px;
	color: #C9C9C9;
	font-size: 1.2rem;
}
main.loggedin .stage .top .search input {
	width: 100%;
	height: 100%;
	border: 0;
	font-size: 0.9rem;
	background-color: #F4F7F9;
	color: #6d6d6d;
}
main.loggedin .stage .top .search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #A6A6A6;
}
main.loggedin .stage .top .search input::-moz-placeholder { /* Firefox 19+ */
	color: #A6A6A6;
}
main.loggedin .stage .top .search input::-ms-input-placeholder { /* IE 10+ */
	color: #A6A6A6;
}
main.loggedin .stage .top .search input::-moz-placeholder { /* Firefox 18- */
	color: #A6A6A6;
}
main.loggedin .stage .top .information {
	height: 100%;
	display: flex;
	margin-left: auto;
}
main.loggedin .stage .top #notification {
	width: 50px;
	height: 100%;
	line-height: 60px;
	text-align: center;
	color: #A5A5A5;
	font-size: 1.2rem;
	position: relative;
	transition: 0.3s;
}
main.loggedin .stage .top #notification:hover {
	background-color: white;
}
main.loggedin .stage .top #notification[data-hasnotification="yes"] {
	color: #3D91DD;
	cursor: pointer;
}
main.loggedin .stage .top .notification i {
	line-height: 60px;
}
main.loggedin .stage .top .ballon {
	color: white;
	position: absolute;
	right: 6px;
	top: 10px;
	background-color: #DA4549;
	height: 16px;
	min-width: 16px;
	border-radius: 8px;
	line-height: 16px;
	font-size: 0.6rem;
	text-align: center;
	font-weight: 700;
	transition: 0.3s;
	padding: 0 3px;
}
main.loggedin .stage .top #notification #notification-pop {
	line-height: 1rem;
	display: none;
	position: absolute;
	top: 10px;
	left: -125px;
	overflow: auto;
	border-radius: 10px;
	z-index: 100;
	width: 350px;
	min-height: 50px;
	max-height: 300px;
	background-color: white;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
	position: relative;
}
main.loggedin .stage .top #notification #notification-pop > *:not(.no-notification) {
	padding: 10px 10px;
	display: flex;
	align-items: center;
	transition: 0.3s;
	position: relative;
}
main.loggedin .stage .top #notification #notification-pop > *[data-ischecked="no"]:after {
	content: '';
	position: absolute;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	top: 22px;
	right: 10px;
	background-color: #3D91DD;
}
main.loggedin .stage .top #notification #notification-pop > *:not(.no-notification):hover {
	background-color: #eeeeee;
}
main.loggedin .stage .top #notification #notification-pop .icon {
	background-color: #eeeeee;
	width: 36px;
	height: 36px;
	line-height: 26px;
	border-radius: 100%;
	padding: 5px;
	margin-right: 20px;
	font-size: 1rem;
	color: #28435C;
}
main.loggedin .stage .top #notification #notification-pop .no-notification {
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 0.9rem;
	text-align: center;
}
main.loggedin .stage .top #notification #notification-pop > div:hover .icon {
	background-color: rgb(221, 221, 221);
}
main.loggedin .stage .top #notification #notification-pop .msg {
	font-size: 0.9rem;
	color: #878787;
	width: 250px;
	text-align: left;
}
main.loggedin .stage .top #notification #notification-pop .msg span {
	color: #3D91DD;
	font-weight: 700;
}
main.loggedin .stage .top #notification #notification-pop .time {
	color:#afafaf;
	font-size: 0.8rem;
	text-align: left;
}
main.loggedin .stage .top #my-account {
	display: flex;
	position: relative;
	align-items: center;
	height: 100%;
	margin-right: 50px;
	cursor: pointer;
	padding: 0 10px;
	transition: 0.3s;
}
main.loggedin .stage .top #my-account:hover {
	background-color: rgb(255, 255, 255);
}
main.loggedin .stage .top #my-account .icon {
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 20px;
	background-color: #EAEAEA;
	color: #ADADAD;
	margin-right: 15px;
}
main.loggedin .stage .top #my-account .caret {
	color: #BABABA;
	margin-left: 15px;
}
main.loggedin .stage .top #my-account .name > div:first-child {
	color: #3D91DD;
	font-size: 0.9rem;
}
main.loggedin .stage .top #my-account .name > div:nth-child(2) {
	color: #878787;
	font-size: 0.8rem;
	font-weight: 300;
}
main.loggedin .stage .top #my-account.on {
	background-color: white;
}
main.loggedin .stage .top #my-account .popmenu {
	width: 100%;
	bottom: -60px;
	left: 0;
	position: absolute;
	background-color: white;
	height: 60px;
	z-index: 10;
	display: none;
	padding: 10px;
}
main.loggedin .stage .top #my-account.on .popmenu {
	display: block;
}
main.loggedin .stage .top #my-account.on .popmenu > * {
	position: relative;
	text-align: center;
	height: 39px;
	line-height: 36px;
	border-radius: 8px;
	color: white;
	font-weight: 700;
	transition: 0.3s;
	cursor: pointer;
	display: block;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
main.loggedin .stage .top #my-account.on .popmenu > *.red {
	background-color: rgb(236, 90, 101);
	border-bottom: 3px solid #903635;
}
main.loggedin .stage .top #my-account.on .popmenu > *.red:hover {
	background-color: rgb(236, 90, 101,0.8);
}

main.loggedin .stage .top .logo:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
main.loggedin .stage .top .logo img {
	width: 138px;
	height: 33px;
	vertical-align: middle;
}
main.loggedin .stage .bottom {
	display: flex;
	height: calc(100% - 60px);
}
main.loggedin .stage .bottom > .left {
	height: 100%;
	width: 210px;
	background-color: #F7F9FA;
	padding: 25px 20px;
}
main.loggedin .stage .bottom > .left > * {
	display: block;
}
main.loggedin .stage .bottom > .left > hr, main.loggedin .stage .bottom > .left > a.menu {
	margin-bottom: 30px;
}
main.loggedin .stage .bottom > .left > hr {
	border-top: 1px solid #E9E9E9;
}
main.loggedin .stage .bottom > .left > a.menu.style-1 {
	height: 40px;
	color: white;
	background-color: #5A94EC;
	text-align: center;
	line-height: 40px;
	font-size: 0.85rem;
	border-radius: 6px;
}
main.loggedin .stage .bottom > .left > a.menu.style-2 {
	color: #B1B1B1;
}
main.loggedin .stage .bottom > .left > a.menu.style-2.active {
	color: #28435C;
}
main.loggedin .stage .bottom > .left > a.menu.style-2 i {
	width: 35px;
	text-align: center;
}
main.loggedin .stage .bottom > .left > a.menu.style-2.active i {
	color: #3C84D3;
}
main.loggedin .stage .bottom > .right {
	position: relative;
	height: 100%;
	width: calc(100% - 210px);
	overflow: auto;
	padding: 30px;
}
main.loggedin .right > h1 {
	color: #28435C;
	font-size: 1.7rem;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
}
main.loggedin .right > h2 span {
	font-weight: 500;
	font-size: 1rem;
	color: #414141;
}
main.loggedin .right > h2 {
	margin-top: 5px;
	color: #6B6B6B;
	font-size: 0.85rem;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 40px;
}
main.loggedin .pagination {
	border-radius: 15px;
	position: absolute;
	bottom: 30px;
	background-color: #F7F7F7;
	left: 100px;
	right: 100px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
main.loggedin .pagination > * {
	display: block;
	min-width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	margin-right: 10px;
	padding: 0 10px;
	font-size: 0.8rem;
}
main.loggedin .pagination > *:last-child {
	margin-right: 0;
}
main.loggedin .pagination > *:not(.caret) {
	background-color: #E9E9E9;
	border-radius: 100%;
	color: #28435C;
}
main.loggedin .pagination > *.active {
	background-color : #7FB5F0;
	color: white;
	font-size: 0.9rem;
	font-weight: 700;
}
main.loggedin .pagination > *.caret {
	color: #797979;
	font-size: 1.3rem;
}
main.loggedin .pagination > *.caret.disabled {
	color: #C9C9C9;
}


main.loggedin .top-right-menu {
	display: flex;
	position: absolute;
	top: 30px;
	right: 30px;
}
main.loggedin .btn {
	display: inline-block;
	position: relative;
	padding: 0 30px 0 55px;
	height: 39px;
	line-height: 36px;
	border-radius: 8px;
	margin-right: 10px;
	color: white;
	font-weight: 700;
	transition: 0.3s;
	cursor: pointer;
	-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
			-khtml-user-select: none; /* Konqueror HTML */
				-moz-user-select: none; /* Old versions of Firefox */
				-ms-user-select: none; /* Internet Explorer/Edge */
						user-select: none; /* Non-prefixed version, currently
																	supported by Chrome, Opera and Firefox */
}
main.loggedin .btn i {
	position: absolute;
	font-size: 1.3rem;
	top: 9px;
	left: 15px;
	margin-right: 5px;
}
main.loggedin .btn:last-child {
	margin-right: 0;
}
main.loggedin .btn.red {
	background-color: rgb(236, 90, 101);
	border-bottom: 3px solid #903635;
}
main.loggedin .btn.red:hover {
	background-color: rgb(236, 90, 101, 0.8);
}
main.loggedin .btn.blue {
	background-color: rgb(90, 182, 236);
	border-bottom: 3px solid #5191B8;
}
main.loggedin .btn.blue:hover {
	background-color: rgb(90, 182, 236, 0.8);
}
main.loggedin .btn.green {
	background-color: rgb(116, 199, 123);
	border-bottom: 3px solid #55975B;
}
main.loggedin .btn.green:hover {
	background-color: rgb(116, 199, 123, 0.8);
}
main.loggedin .btn.yellow {
	background-color: rgb(238, 198, 68);
	border-bottom: 3px solid #c9ad53;
}
main.loggedin .btn.yellow:hover {
	background-color: rgb(238, 198, 68, 0.8);
}
main.loggedin .btn.gray {
	background-color: rgb(167, 167, 167);
	border-bottom: 3px solid #8A8A8A;
}
main.loggedin .btn.gray:hover {
	background-color: rgb(167, 167, 167, 0.8);
}
main.loggedin .tabs {
	display: flex;
	border-bottom: 13px solid #F1FAFF;
	-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
			-khtml-user-select: none; /* Konqueror HTML */
				-moz-user-select: none; /* Old versions of Firefox */
				-ms-user-select: none; /* Internet Explorer/Edge */
						user-select: none; /* Non-prefixed version, currently
																	supported by Chrome, Opera and Firefox */
}
main.loggedin .tabs .tab {
	height: 45px;
	padding: 0 40px;
	margin-right: 15px;
	line-height: 45px;
	background-color: #A7A7A7;
	color: white;
	font-size: 1.15rem;
	font-weight: 700;
	border-bottom: 6px solid #8A8A8A;
	border-radius: 10px 10px 0 0 ;
	cursor: pointer;
	transition: 0.3s;
}
main.loggedin .tabs .tab:hover {
	background-color: #949494;
}
main.loggedin .tabs .tab.active {
	border-bottom: 0;
	position: relative;
	background-color: #5AB6EC;
	font-size: 1.2rem;
}
main.loggedin .tabs .tab.active:hover {
	background-color: #48abe4;
}
main.loggedin .tabs .tab.active:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 7px;
	background-color: #3895CC;
}
main.loggedin .tab-body {
	padding: 20px 0;
	max-height: calc(100% - 155px);
	overflow: auto;
}
main.loggedin .tab-body > *:not(.active) {
	display: none;
}

/*
*
* } Global page
*
*
*/


/*
*
* Home page {
*
*
*/
main#Home {
	background-size: cover;
	background-image:url('/images/mainBG.jpg');
	display: flex;
	justify-content: center;
	align-items: center;
}
main#Home:before {
	content: '';
	display: block;
	background: rgba(58,72,82,0.90);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
main#Home .home-box {
	margin: 30px;
	width: 890px;
	height: 484px;
	display: flex;
	z-index: 1;
	border-radius: 15px;
	overflow: hidden;
}
main#Home .home-box .left {
	width: 335px;
	background-color: #F5F6FA;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 20px 40px;
}
main#Home .home-box .center {
	width: 100%;
	background-color: #F5F6FA;
}
main#Home .home-box .center .msg {
	width: 100%;
	height: 100%;
	line-height: 484px;
	text-align: center;
	display: inline-block;
}
main#Home .home-box .center .msg span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1rem;
	color: gray;
}
main#Home .home-box .left .mb15 {
	margin-bottom: 15px;
}
main#Home .home-box .left .logo-wrap {
	width: 50px;
	height: 50px;
	background-color: white;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
}
main#Home .home-box .left .txt {
	color: #4B4B4B;
	font-size: 0.95rem;
	margin-bottom: 30px;
}
main#Home .home-box .left .logo {
	width: 100%;
	height: 100%;
	background-image:url('/images/logo.svg');
	background-repeat: no-repeat;
	background-size: 39px 20px;
	background-position: center;
}
main#Home .home-box .left .fields {
	width: 100%;
}
main#Home .home-box .left .fields .row {
	width: 100%;
	margin-bottom: 15px;
}
main#Home .home-box .left .fields .field {
	border-radius: 5px;
	overflow: hidden;
	height: 36px;
}
main#Home .home-box .left .fields .name {
	margin-bottom: 10px;
	text-align: center;
	color: #7E7E7E;
	font-size: 0.85rem;
	font-weight: 300;
}
main#Home .home-box .left .fields .field input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0 15px;
	font-size: 0.95rem;
}
main#Home .home-box .left .fields .field input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-size: 0.7rem;
	color: #A8A8A8;
	font-style: italic;
}
main#Home .home-box .left .fields .field input::-moz-placeholder { /* Firefox 19+ */
	font-size: 0.7rem;
	color: #A8A8A8;
	font-style: italic;
}
main#Home .home-box .left .fields .field input::-ms-input-placeholder { /* IE 10+ */
	font-size: 0.7rem;
	color: #A8A8A8;
	font-style: italic;
}
main#Home .home-box .left .fields .field input::-moz-placeholder { /* Firefox 18- */
	font-size: 0.7rem;
	color: #A8A8A8;
	font-style: italic;
}
main#Home .home-box .left #rememberInp {
	width: 18px;
	height: 18px;
	background-color: white;
	border-radius: 2px;
	float: left;
	margin-right: 5px;
	font-size: 0.8rem;
	line-height: 18px;
	text-align: center;
	color: #3D91DD;
	cursor: pointer;
}
main#Home .home-box .left #rememberInp[data-ischecked="no"] i {
	display: none;
}

main#Home .home-box .left .remember-txt {
	font-size: 0.7rem;
	font-style: italic;
	color: #5a5a5a;
	line-height: 18px;
	cursor: pointer;
}
main#Home .home-box .right {
	width: 555px;
	height: 100%;
	background-color: #3D91DD;
	position: relative;
}
main#Home .home-box .right .system-name {
	position: absolute;
	z-index: 5;
	color: white;
	left: 45px;
	top: 167px;
}
main#Home .home-box .right h1 {
	font-size: 3.7rem;
	font-weight: 900;
}
main#Home .home-box .right h2 {
	font-size: 1.6rem;
	font-weight: 700;
}
main#Home .home-box .right h3 {
	font-size: 1rem;
	font-weight: 300;
	font-style: italic;
	color: #DFDFDF;
}
main#Home .home-box .right .shape {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
main#Home .home-box .right .shape > div {
	position: absolute;
}
main#Home .home-box .right .shape .shape-1 {
	background-image: url('/images/circle.svg');
	width: 124px;
	height: 124px;
	right: 40px;
	top: 40px;
}
main#Home .home-box .right .shape .shape-2 {
	background-image: url('/images/circle.svg');
	width: 39px;
	height: 39px;
	right: 160px;
	top: 160px;
}
main#Home .home-box .right .shape .shape-3 {
	background-image: url('/images/triangle-2.svg');
	width: 46px;
	height: 37px;
	bottom: 170px;
	right: 70px;
}
main#Home .home-box .right .shape .shape-4 {
	background-image: url('/images/circle.svg');
	width: 39px;
	height: 39px;
	left: 50px;
	bottom: 90px;
}
main#Home .home-box .right .shape .shape-5 {
	background-image: url('/images/triangle-1.svg');
	width: 93px;
	height: 83px;
	right: 40px;
	bottom: 40px;
}
main#Home #loginButton {
	background-color: #3D91DD;
	color: white;
	font-weight: 500;
	text-align: center;
	line-height: 36px;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
}
main#Home #loginButton:hover {
	background-color: #50a1ec;
}
main#Home .help {
	color: #5a5a5a;
	font-size: 0.7rem;
	text-align: center;
	width: 100%;
	font-style:italic;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
}
main#Home .help a {
	color: #3D91DD;
}
/*
*
* } Home page
*
*
*/

/*
*
* Dashboard {
*
*
*/
main#Dashboard .stage {
	background-color: #EBF3F7;
}
main#Dashboard .stage .bottom > .right {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	display: flex;
}
main#Dashboard .stage .bottom > .right .box {
	background-color: white;
	border-radius: 10px;
	margin-right: 20px;
	margin-bottom: 20px;
	position: relative;
}
main#Dashboard .stage .bottom > .right .box.end {
	margin-right: 0;
}
main#Dashboard .stage .bottom > .right .box.col-1 {
	max-width: 650px;
	min-width: 220px;
	width: 100%;
	flex: 1;
}
main#Dashboard .stage .bottom > .right .box.col-2 {
	max-width: calc(323px * 2 + 20px);
	min-width: 280px;
	width: 100%;
}
main#Dashboard .stage .bottom > .right .box.col-3 {
	max-width: 100%;
	min-width: 400px;
	height: 100%;
	max-height: 800px;
	width: 100%;
	margin-right: 0;
	margin-bottom: 0;
}
main#Dashboard .stage .bottom > .right .box.row-1 {
	height: 120px;
}
main#Dashboard .stage .bottom > .right .box.row-2 {
	height: 320px;
}
main#Dashboard .stage .bottom > .right .box.row-3 {
	min-height: 400px;
}
main#Dashboard .stage .bottom > .right .box.style-1 {
	padding: 0 20px;
	display: flex;
	justify-content: stretch;
	align-items: center;
}
main#Dashboard .stage .bottom > .right .box.style-1 .icon {
	width: 54px;
	height: 54px;
	border-radius: 27px;
	font-size: 1.5rem;
	line-height: 54px;
	text-align: center;
	margin-right: 17px;
}

main#Dashboard .stage .bottom > .right .box.style-1.blue .icon {
	background-color: #DFEEFF;
	color: #3F8CDF;
}
main#Dashboard .stage .bottom > .right .box.style-1.red .icon {
	background-color: #FFEDF0;
	color: #F296A6;
	
}
main#Dashboard .stage .bottom > .right .box.style-1.yellow .icon {
	background-color: #FFF2CB;
	color: #FCC31A;
}
main#Dashboard .stage .bottom > .right .box.style-1 .menu {
	position: absolute;
	font-size: 1rem;
	right: 5px;
	top: 0;
	color: #B7B7B7;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
main#Dashboard .stage .bottom > .right .box.style-1 .txt span {
	display: block;
}
main#Dashboard .stage .bottom > .right .box.style-1 .txt span:nth-child(1) {
	font-size: 0.8rem;
	font-weight: 700;
}
main#Dashboard .stage .bottom > .right .box.style-1 .txt span:nth-child(2) {
	font-size: 1.8rem;
	font-weight: 700;
	color: #003463;
}
main#Dashboard .stage .bottom > .right .box.style-1 .txt span:nth-child(3) {
	font-size: 0.8rem;
	color: #868686;
}
main#Dashboard .stage .bottom > .right .box.style-1.blue .txt span:nth-child(1) {
	color: #3D91DD;
}
main#Dashboard .stage .bottom > .right .box.style-1.red .txt span:nth-child(1) {
	color: #E75770;
}
main#Dashboard .stage .bottom > .right .box.style-1.yellow .txt span:nth-child(1) {
	color: #F08F00;
}
main#Dashboard .stage .bottom > .right .box.style-2 {
	padding: 20px 20px 0 20px;
	color: #28435C;
	overflow: auto;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row {
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	margin-bottom: 3px;
	height: 56px;
	line-height: 56px;
	padding: 0 15px;
	align-items: center;
	font-size: 0.9rem;
	transition: 0.3s;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row > * {
	padding: 0 10px;
	text-align: center;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Pending"] {
	background-color: #F1F1F1;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Badge Issued"] {
	background-color: #C7E7FF;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Approved"] {
	background-color: #E9FFE4;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Denied"] {
	background-color: #FFEBED;
}

main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Pending"]:hover {
	background-color: #e4e4e4;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Badge Issued"]:hover {
	background-color: #b4deff;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Approved"]:hover {
	background-color: #dfffd8;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Denied"]:hover {
	background-color: #ffe2e5;
}
main#Dashboard .tr.th {
	margin-bottom: 3px;
}
main#Dashboard .stage .bottom > .right .box.style-2 .icon > div {
	background-color: white;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 100%;
	position: relative;
	padding: 5px;
	text-align: center;
	color: #4c658a;
	font-size: 1.2rem;
	width: 36px;
	height: 36px;
	float: none;
	margin: 0 auto;
	flex-shrink: 0;
}
main#Dashboard .stage .bottom > .right .box.style-2 .date {
	max-width: 140px;
	width: 100%;
	margin-left: auto;
}
main#Dashboard .stage .bottom > .right .box.style-2 .id {
	font-weight: 700;
}
main#Dashboard .stage .bottom > .right .box.style-2 .id, main#Dashboard .tr.th > .id {
	min-width: 100px;
	
}
main#Dashboard .stage .bottom > .right .box.style-2 .icon, main#Dashboard .tr.th > .icon {
	min-width: 70px;
}
main#Dashboard .stage .bottom > .right .box.style-2 .name, main#Dashboard .tr.th > .name {
	min-width: 180px;
	max-width: 300px;
	width: 100%;
}
main#Dashboard .stage .bottom > .right .box.style-2 .dept, main#Dashboard .tr.th > .dept {
	min-width: 100px;
	max-width: 300px;
	width: 100%;
}
main#Dashboard .stage .bottom > .right .box.style-2 .date, main#Dashboard .tr.th > .date {
	max-width: 140px;
	width: 100%;
	margin-left: auto;
}
main#Dashboard .tr.th > .status {
	width: 123px;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Pending"] .status-icon {
	color: #888888;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Badge Issued"] .status-icon {
	color: #5aade0;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Approved"] .status-icon {
	color: #40BC43;
}
main#Dashboard .stage .bottom > .right .box.style-2 .row[data-status="Denied"] .status-icon {
	color: #F296A6;
}
main#Dashboard .stage .bottom > .right .box.style-2 .status-icon > div {
	content: "\f017";
}
main#Dashboard .stage .bottom > .right .box.style-2 .status-txt {
	width: 87px;
}
main#Dashboard .stage .bottom > .right .box.style-3 {
	padding: 0 20px 20px 20px;
}
main#Dashboard .stage .bottom > .right .box.style-3 .title {
	color: #002444;
	text-align: center;
	font-size: 1.1rem;
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #E9E9E9;
}
main#Dashboard .stage .bottom > .right .box.style-2.row-3 .msg {
	margin-top: 145px;
}
main#Dashboard .stage .bottom > .right .box.style-3.row-3 .msg {
	margin-top: 140px;
}
main#Dashboard .stage .bottom > .right .msg {
	text-align: center;
	color: #e4e4e4;
	margin-top: 100px;
	font-size: 1.5rem;
}

/*
*
* } Dashboard
*
*
*/

/*
*
* Visitor Request {
*
*
*/

main#VisitorRequests [data-status="Pending"] {
	background-color: #F1F1F1!important;
}
main#VisitorRequests [data-status="Badge Issued"] {
	background-color: #C7E7FF!important;
}
main#VisitorRequests [data-status="Approved"] {
	background-color: #E9FFE4!important;
}
main#VisitorRequests [data-status="Denied"] {
	background-color: #FFEBED!important;
}
main#VisitorRequests .tr[data-status="Pending"]:hover {
	background-color: #e4e4e4;
}
main#VisitorRequests .tr[data-status="Badge Issued"]:hover {
	background-color: #ffecad;
}
main#VisitorRequests .tr[data-status="Approved"]:hover {
	background-color: #cfffc6;
}
main#VisitorRequests .tr[data-status="Denied"]:hover {
	background-color: #ffdcdf;
}
main#VisitorRequests .tr:not(.th) > div:nth-child(1) > div {
	background-color: white;
	width: 36px;
	height: 36px;
	line-height: 26px;
	border-radius: 100%;
	position: relative;
	padding: 5px;
}
main#VisitorRequests .tr:not(.th) > div:nth-child(2), main#VisitorRequests .tr:not(.th) > div:nth-child(3) {
	overflow: hidden;
	text-overflow: ellipsis;
}
main#VisitorRequests .tr:not(.th) > div:nth-child(2), main#VisitorRequests .tr:not(.th) > div:nth-child(3), main#VisitorRequests .tr:not(.th) > div:nth-child(4) {
	color: #28435C;
}
main#VisitorRequests .tr:not(.th) > div:nth-child(2) {
	font-weight: 700;
}
main#VisitorRequests .tr:not(.th) > div:nth-child(2) span {
	color: gray;
}
main#VisitorRequests .tr > div:nth-child(1) {
	width: 120px;
}
main#VisitorRequests .tr > div:nth-child(2) {
	width: 80px;
}
main#VisitorRequests .tr > div:nth-child(3) {
	min-width: 300px;
}
main#VisitorRequests .tr > div:nth-child(4) {
	width: 150px;
}
main#VisitorRequests .tr > div:nth-child(5) {
	width: 180px;
}
main#VisitorRequests .tr > div:nth-child(6) {
	width: 50px;
}
main#VisitorRequests .tr > div:nth-child(7) {
	width: 100px;
}
main#VisitorRequests .tr .status-icon {
	line-height: 36px;
	background-color: white;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 100%;
	position: relative;
	font-size: 1.4rem;
}
main#VisitorRequests .tr .status-txt {
	font-weight: 700;
	margin-left: 10px;
}
main#VisitorRequests .tr[data-status="Pending"] .status-icon {
	color: #888888;
}
main#VisitorRequests .tr[data-status="Badge Issued"] .status-icon {
	color: #5aade0;
}
main#VisitorRequests .tr[data-status="Approved"] .status-icon {
	color: #40BC43;
}
main#VisitorRequests .tr[data-status="Denied"] .status-icon {
	color: #F296A6;
}
main#VisitorRequests .tr[data-status="Pending"] .status-txt {
	color: #878787;
}
main#VisitorRequests .tr[data-status="Badge Issued"] .status-txt {
	color: #416eb1;
}
main#VisitorRequests .tr[data-status="Approved"] .status-txt {
	color: #1A8E00;
}
main#VisitorRequests .tr[data-status="Denied"] .status-txt {
	color: #FF7D85;
}
main#VisitorRequests .applied {
	position: absolute;
	display: flex;
	top: 115px;
	right: 30px;
	font-size: 2rem;
	color: #505050;
}
main#VisitorRequests .applied .icon {
	margin-right: 5px;
	text-align: center;
}
main#VisitorRequests .applied .wifi {
	width: 49px;
	height: 48px;
}
main#VisitorRequests .applied .badge {
	width: 49px;
	height: 49px;
}
main#VisitorRequests .applied .safety {
	width: 48px;
	height: 48px;
}
main#VisitorRequests .row-title {
	margin-bottom: 10px;
	color: white;
	background-color: #A7A7A7;
	border-bottom: 3px solid #8A8A8A;
	padding: 10px 20px;
	max-width: 270px;
	display: inline-block;
	border-radius: 15px;
	font-weight: 700;
}
main#VisitorRequests .row-title span {
	color: rgb(255, 221, 109);
	font-weight: 900;
}
#__popupConfirm .symList {
	border-radius: 5px;
	background-color: #ececec;
	font-size: 0.9rem;
	padding: 10px;
	margin-top: 20px;
	width: calc(100% - 30px);
	font-weight: 400;
	max-height: 150px;
	overflow: auto;
}
#__popupConfirm .symList table {
	width: 100%;
}
#__popupConfirm .symList table th {
	font-weight: 900;
	padding: 5px 10px;
	border-bottom: 2px solid #b9b9b9;
}
#__popupConfirm .symList table td {
 padding: 5px 10px;
 border-bottom: 1px dotted #afafaf;
}
main .row.flex {
	display: flex;
}
main .row .details-flex-column {
	display: flex;
	flex-direction: column;
}
main .row .details-flex-column .detail {
	margin-bottom: 20px;
}
main .row .details-flex-column .title {
	margin-bottom: 10px;
}
main .row.flex.flex-column {
	flex-direction: column;
}
main .details {
	margin-bottom: 20px;
	background-color: #F5F5F5;
	border-bottom: 3px solid #E5E5E5;
	padding: 20px;
	color: #6B6B6B;
	min-width: 270px;
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
main .row.flex.space-between {
	justify-content: space-between;
}
main#VisitorRequests .details.status[data-status="Pending"] {
	background-color: #F1F1F1;
}
main#VisitorRequests .details.status[data-status="Badge Issued"] {
	background-color: #FFF0C0;
}
main#VisitorRequests .details.status[data-status="Approved"] {
	background-color: #E9FFE4;
}
main#VisitorRequests .details.status[data-status="Denied"] {
	background-color: #FFEBED;
}
main#VisitorRequests .details.details-upload {
	justify-content: space-around;
}

main .details .title {
	font-size: 0.8rem;
	margin-bottom: 5px;
}
main .details .title b {
	font-weight: 900;
}
main .details .value {
	color: #5AB6EC;
	font-size: 1.2rem;
}
main .details .detail {
	width: 250px;
}
main .details hr {
	display: block;
	border-top: 1px solid #ebebeb;
	margin: 20px 0;
	width: 100%;
}
main#VisitorRequests .details .upload {
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 10px;
}
main#VisitorRequests .details .upload .preview {
	width: 100%;
	height: 150px;
	background-color: #E2E2E2;
	padding: 10px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
main#VisitorRequests .details .upload .preview i.pdf {
	color: #ef8989;
	font-size: 5rem;
}
main#VisitorRequests .details .upload .preview span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #555555;
}
main#VisitorRequests .details .upload .zoom {
	display: none;
	border-radius: 100%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: rgb(146, 146, 146,0.6);
	left: 50%;
	top: 50%;
	position: absolute;
	margin-left: -30px;
	margin-top: -30px;
	color: white;
	text-align: center;
	font-size: 1.7rem;
	cursor: pointer;
}
main#VisitorRequests .details .upload:hover .zoom {
	display: block;
}
main#VisitorRequests .details .upload .preview img {
	width: 100%;
	height: 100%;
}
main#VisitorRequests .details .upload .menus {
	background-color: white;
	height: 50px;
}
main#VisitorRequests .details .upload .menus .menu:first-child {
	margin-right: 1px;
	
}
main#VisitorRequests .details .upload .menus .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #CCCCCC;
	height: 100%;
	border-bottom: 3px solid rgb(0, 0, 0,0.31);
	text-align: center;
	line-height: 50px;
	font-size: 1.4rem;
	color: white;
	transition: 0.3s;
	cursor: pointer;
}
main#VisitorRequests .details .upload:hover .menus .menu.blue {
	background-color: rgb(90, 182, 236);
}
main#VisitorRequests .details .upload:hover .menus .menu.red {
	background-color: rgb(224, 113, 121);
}
main#VisitorRequests .details .upload .menus .menu.blue:hover {
	background-color: rgb(90, 182, 236,0.8);
}
main#VisitorRequests .details .upload .menus .menu.red:hover {
	background-color: rgb(224, 113, 121, 0.8);
}
main#VisitorRequests .details .select ._pretty-select .wrap {
	background-color: #A7A7A7;
	border-bottom: 3px solid #8A8A8A;
	border-radius: 7px;
}

main#VisitorRequests .details .select ._pretty-select:after {
	border-color: #ffffff transparent transparent transparent;
}
main#VisitorRequests .details .select ._pretty-select ._ps-inp {
	color: white;
}
main#VisitorRequests .details .textarea {
	width: 100%;
}
main#VisitorRequests .details .detail.has-textarea {
	width: 100%;
}
main#VisitorRequests .details .textarea {
	border: 1px solid #A6A6A6;
	overflow: hidden;
	border-radius: 7px;
	height: 150px;
}
main#VisitorRequests .details .textarea textarea {
	border: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
}
main#VisitorRequests .process-menu {
	display: flex;
}
main#VisitorRequests .history {
	margin-bottom: 40px;
}
main#VisitorRequests .history .title {
	font-size: 1.5rem;
	color: #6B6B6B;
	margin-bottom: 30px;
}

main#VisitorRequests .history .head .r, main#VisitorRequests .history .body .r {
	display: flex;
	text-align: center;
	line-height: 39px;
	border-bottom: 1px solid #A7A7A7;
	padding: 10px 20px;
}
main#VisitorRequests .history .head .r {
	background-color: #A7A7A7;
	border-bottom: 3px solid #8A8A8A;
	color: white;
}
main#VisitorRequests .history .head .r, main#VisitorRequests .history .body .r.off {
	height: 59px;
}
main#VisitorRequests .history .body .r.off {
	height: auto;
}
main#VisitorRequests .history .body .r {
	flex-wrap: wrap;
}
main#VisitorRequests .history .head {
	color: #6B6B6B;
	font-size: 1rem;
	font-weight: 700;
}
main#VisitorRequests .history .body {
	color: #6B6B6B;
}
main#VisitorRequests .history .body .col {
	height: 100%;
}
main#VisitorRequests .history .head .r > div:nth-child(1), main#VisitorRequests .history .body .r > div:nth-child(1) {
	width: 200px;
}
main#VisitorRequests .history .head .r > div:nth-child(2), main#VisitorRequests .history .body .r > div:nth-child(2) {
	width: 130px;
}
main#VisitorRequests .history .head .r > div:nth-child(3), main#VisitorRequests .history .body .r > div:nth-child(3) {
	width: 280px;
}
main#VisitorRequests .history .head .r > div:nth-child(4), main#VisitorRequests .history .body .r > div:nth-child(4) {
	width: 150px;
}
main#VisitorRequests .history .head .r > div:nth-child(5), main#VisitorRequests .history .body .r > div:nth-child(5) {
	width: 200px;
}
main#VisitorRequests .history .body .r > div:nth-child(4) {
	color: #5AB6EC;
	font-weight: 700;
	cursor: pointer;
}
main#VisitorRequests .history .head .r > div:nth-child(5), main#VisitorRequests .history .body .r > div:nth-child(5) {
	width: 200px;
	margin-left: auto;
}
main#VisitorRequests .history .body .r .msg-box {
	padding: 0 15px;
	text-align: left;
	margin-top: 20px;
	width: 100%;
	height: 140px;
	overflow: hidden;
	background-color: #F5F5F5;
	border-radius: 15px;
	border: 1px solid #A7A7A7;
}
main#VisitorRequests .history .body .r.off .msg-box {
	display: none;
}
main#VisitorRequests.loggedin .stage .bottom > .right {
	overflow: hidden;
}
#__popupConfirm .badgeOption {
	width: 100%;
	height: 100%;
	font-size: 0.9rem;
	text-align: left;
	display: flex;
}
#__popupConfirm .badgeOption > div {
	width: 50%;
	padding: 10px 15px 0 15px;
}
#__popupConfirm .badgeOption > div:first-child {
	border-right: 5px dotted #bdc6d8;
}
#__popupConfirm .badgeOption > div p {
	text-align: center;
	margin-bottom: 10px;
	color: #465777;
	font-size: 1rem;
}
#__popupConfirm .badgeOption .BadgePeriod_OtherValue {
	margin-top: 6px;
	margin-left: 5px;
	height: 26px;
	padding: 5px;
}

#__popupConfirm .badgeOption hr {
	margin-top: 12px;
}
/*
*
* } Visitor Request
*
*
*/

/*
*
* Users {
*
*
*/
main#Users .tr:not(.th) > div:nth-child(1) {
	font-weight: 700;
}
main#Users .tr > div:nth-child(1) {
	width: 300px;
}
main#Users .tr > div:nth-child(2) {
	width: 150px;
}
main#Users .tr > div:nth-child(3) {
	width: 150px;
}
main#Users .tr > div:nth-child(4) {
	width: 150px;
}
main#Users .tr > div:nth-child(5) {
	width: 150px;
}
main#Users .tr > div:last-child {
	margin-left: auto;
}
main#Users .fields {
	display: flex;
	flex-wrap: wrap;
}
main#Users .fields .field {
	max-width: 320px;
	width: 100%;
	margin-right: 20px;
	margin-bottom: 30px;
	position: relative;
}
main#Users .fields .field.end {
	margin-right: 0;
}
main#Users .fields .field .name {
	color: #28435C;
	margin-bottom: 10px;
}
main#Users .fields .field .input {
	background-color: #F5F5F5;
	overflow: hidden;
	border-radius: 5px;
	height: 40px;
}
main#Users .fields .field .input.select {
	overflow: visible;
}
main#Users ._pretty-select ._ps-inp {
	height: 100%;
}
main#Users .fields .field input {
	border-radius: 5px;
	color: #28435C;
	border: 0;
	background-color: #F5F5F5;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	font-size: 0.95rem;
}
main#Users .fields .field .input.disabled, main#Users .fields .field .input.disabled input {
	background-color: #C9C9C9;
}
main#Users .fields .error-msg {
	position: absolute;
	color: white;
	padding: 3px 5px;
	border-radius: 5px;
	left: 0;
	bottom: 73px;
	background-color: #ffb4b4;
	font-size: 0.8rem;
}
main#Users .field.error input {
	background-color: #ffdfdf;
}
/*
*
* } Users
*
*
*/

/*
*
* Permission {
*
*
*/
main#Permission .title {
	font-size: 1.1rem;
	color: #3C84D3;
	font-weight: 900;
	border-bottom: 1px dotted gray;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
main#Permission .tr:not(.th) > div:nth-child(1) {
	font-weight: 700;
}
main#Permission .tr > div:nth-child(1) {
	width: 300px;
}
main#Permission .tr > div:nth-child(2) {
	width: 150px;
}
main#Permission .tr > div:nth-child(3) {
	width: 150px;
}
main#Permission .tr > div:nth-child(4) {
	width: 150px;
}
main#Permission .tr > div:nth-child(5) {
	width: 150px;
}
main#Permission .tr > div:last-child {
	margin-left: auto;
}
main#Permission .fields {
	display: flex;
	flex-wrap: wrap;
}
main#Permission .fields .field {
	max-width: 320px;
	width: 100%;
	margin-right: 20px;
	margin-bottom: 30px;
	position: relative;
}
main#Permission .fields .field.end {
	margin-right: 0;
}
main#Permission .fields .field .name {
	color: #28435C;
	margin-bottom: 10px;
}
main#Permission .fields .field .input {
	background-color: #F5F5F5;
	overflow: hidden;
	border-radius: 5px;
	height: 40px;
}
main#Permission .fields .field .input.select {
	overflow: visible;
}
main#Permission ._pretty-select ._ps-inp {
	height: 100%;
}
main#Permission .fields .field input {
	border-radius: 5px;
	color: #28435C;
	border: 0;
	background-color: #F5F5F5;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	font-size: 0.95rem;
}
main#Permission .fields .field .input.disabled, main#Permission .fields .field .input.disabled input {
	background-color: #C9C9C9;
}
main#Permission .fields .error-msg {
	position: absolute;
	color: white;
	padding: 3px 5px;
	border-radius: 5px;
	left: 0;
	bottom: 68px;
	background-color: #ffb4b4;
	font-size: 0.8rem;
}
main#Permission .field.error input {
	background-color: #ffdfdf;
}
/*
*
* } Permission
*
*
*/

/*
*
* Batch Register {
*
*
*/
main#BatchRegister .notice-1 {
	color: #313131;
	font-weight: 500;
}
main#BatchRegister .notice-2 {
	color: #CF0008;
	font-weight: 700;
}
main#BatchRegister .guidance {
	color: #6f6f6f;
	margin: 30px 0;
}
main#BatchRegister .guidance .title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #005d94cc;
}
main#BatchRegister .guidance b {
	font-weight: 700;
}
main#BatchRegister .guidance ol:first-child {
	margin-left: 0;
}
main#BatchRegister .guidance ol {
	margin-top: 15px;
	
}
main#BatchRegister .guidance li {
	margin-bottom: 5px;
}
main#BatchRegister .guidance li:before {
	content: '- ';
}
main#BatchRegister .upload-file.disabled {
	background-color: gray;
	border-bottom: 3px solid rgb(77, 77, 77);
}

/*
*
* } Batch Register
*
*
*/

/*
*
* My Account {
*
*
*/
main#MyAccount .tr:not(.th) > div:nth-child(1) {
	font-weight: 700;
}
main#MyAccount .tr > div:nth-child(1) {
	width: 300px;
}
main#MyAccount .tr > div:nth-child(2) {
	width: 150px;
}
main#MyAccount .tr > div:nth-child(3) {
	width: 150px;
}
main#MyAccount .tr > div:nth-child(4) {
	width: 150px;
	margin-left: auto;
}
main#MyAccount .fields {
	display: flex;
	flex-wrap: wrap;
}
main#MyAccount .fields .field {
	max-width: 320px;
	width: 100%;
	margin-right: 20px;
	margin-bottom: 30px;
}
main#MyAccount .fields .field.end {
	margin-right: 0;
}
main#MyAccount .fields .field .name {
	color: #28435C;
	margin-bottom: 10px;
}
main#MyAccount .fields .field .input {
	background-color: #F5F5F5;
	overflow: hidden;
	border-radius: 5px;
	height: 40px;
}
main#MyAccount .fields .field .input.select {
	overflow: visible;
}
main#MyAccount ._pretty-select ._ps-inp {
	height: 100%;
}
main#MyAccount .fields .field input {
	color: #28435C;
	border: 0;
	background-color: #F5F5F5;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	font-size: 0.95rem;
}
main#MyAccount .fields .field .input.disabled, main#MyAccount .fields .field .input.disabled input {
	background-color: #C9C9C9;
}
/*
*
* } My Account
*
*
*/

@media only screen and (max-width: 1300px) {

}


@media only screen and (max-width: 960px) {
	
	main#Home .home-box {
		max-width: 800px;
		width: 100%;
		height: auto;
		flex-direction: column-reverse;
	}
	main#Home .home-box .left {
		width: 100%;
		padding: 30px;
	}
	main#Home .home-box .right {
		width: 100%;
		height: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	main#Home .home-box .right .system-name h1 {
		display: none;
	}
	main#Home .home-box .right .system-name {
		position: static;
		text-align: center;
	}
	main#Home .home-box .right .shape {
		display: none;
	}
}

@media only screen and (max-width: 450px) {
	main#Home .home-box .right {
		height: 80px;
	}
	main#Home .home-box .right h2 {
		font-size: 1.3rem;
	}
	main#Home .home-box .left .fields .name {
		text-align: left;
	}
}

@media only screen and (max-width: 380px) {
	main#Home .home-box .right {
		height: 60px;
	}
	main#Home .home-box .right h2 {
		font-size: 1rem;
	}
	main#Home .home-box .right h3 {
		font-size: 0.9rem;
	}
	main#Home .home-box .left .fields .name {
		text-align: left;
	}
}

/* @media only screen and (max-height: 1063px) {
	main.loggedin .stage {
		margin: 50px 0;
	}
} */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 

}