@charset "utf-8";

* {
	box-sizing: border-box;
}

a {
	color: #0077be;
	text-decoration: underline;
}

a:hover {
	color: #0b4d99;
}

html, body {
	min-height: 100%;
	display: block;
	margin: 0px;
	padding: 0px;
}

body {
	font-family: 'noto_sansregular';
	font-size: 14px;
	color: #555555;
}

h1, h2, h3, h4, h5 {
	font-family: 'noto_sansbold';
	color: #464646;
}

.login-page {
	background: url("../../images/login-background.png") no-repeat center
		center;
	background-size: 100% 100%;
	background-color: #f8f8f8;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.reset-password-page {
	background-color: #f8f8f8;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.back-to-login {
	position: fixed;
	left: 35px;
	top: 40px;
}

.login-content {
	width: 660px;
	margin: 0 auto;
	padding: 60px 130px 120px 130px;
	background-color: #ffffff;
	border: solid 1px #d7eafa;
	margin-top: 100px;
	margin-bottom: 40px;
}

.form-group label {
	color: #717171;
	font-size: 12px;
	font-weight: bold;
	display: block;
	margin-bottom: 7px;
}

.form-input {
	border-radius: 2px;
	padding: 14px 12px;
	border: solid 1px #797979;
	background-color: #ffffff;
	min-width: 220px;
}

.form-input:focus {
	box-shadow: 0 0 4px 0 #f5b407;
	border: solid 1px rgba(0, 0, 0, 0.3);
}

.pull-right {
	float: right;
}

.togglePassword {
	font-size: 12px;
	color: #727272;
	font-weight: normal;
	text-decoration: none;
}

.togglePassword:hover, .togglePassword:active {
	color: #727272;
}

.footer {
	margin-top: auto;
	padding: 10px;
	font-size: 12px;
	color: #555555;
	background: #ffffff;
}

.footer p {
	margin: 0px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-danger {
	color: #b01d34;
}

.text-success {
	color: #4BB543;
}

.text-secondary {
	color: #0077be;
}

.w-100 {
	width: 100%;
}

.ml-20 {
	margin-left: 20px;
}

.ml-10 {
	margin-left: 10px;
}

.mt-0 {
	margin-top: 0px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.font-size-18 {
	font-size: 18px;
}

.font-size-10 {
	font-size: 10px;
}

.btn {
	line-height: 50px;
	border-radius: 2px;
	border: none;
	min-width: 220px;
	font-weight: bold;
	font-size: 16px;
	padding: 0px 30px;
	cursor: pointer;
}

.btn[disabled] {
	opacity: 0.5;
}

.btn:hover:not([disabled]){
	opacity: 0.9;
	box-shadow: inset -1px 1px 0 0 rgba(255, 255, 255, 0);
}

.btn:active:not([disabled]){
	opacity: 0.7;
	box-shadow: inset -1px 1px 0 0 rgba(255, 255, 255, 0);
}

.btn.btn-primary {
	background-color: #6f348d;
	color: #ffffff;
}

.btn.btn-secondary {
	background-color: #0077be;
	color: #ffffff;
}

.btn.btn-secondary.stroked-btn {
	background-color: #ffffff;
	color: #0077be;
	border: solid 1px #0077be;
}

/****** Login Page Styles ******/
.login-title {
	font-size: 24px;
	color: #464646;
	margin-top: 20px;
	margin-bottom: 10px;
}

.d-flex {
	display: flex;
}

.flex-grow-1 {
	flex-grow: 1;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-space-between {
	justify-content: space-between;
}

.align-items-center {
	align-items: center
}

.cursor-pointer {
	cursor: pointer;
}

/**** Modal ****/
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	display: none;
	opacity: 0;
	z-index: 99;
}

.popup {
	width: 460px;
	background-color: #ffffff;
	position: absolute;
	left: 50%;
	top: 100px;
	transform: translateX(-50%);
	padding: 30px;
	display: none;
	z-index: 100;
}

.popup.open {
	display: block;
}

.popup.open+.overlay {
	display: block;
	opacity: 1;
}

.modal-title {
	font-family: 'noto_sansregular';
	font-size: 24px;
	font-weight: 700;
}

.modal-close {
	color: #717171;
	text-decoration: none;
}

.modal-footer .btn {
	width: 48%;
	min-width: initial;
}

/****** Header ******/
.app-header {
	padding: 15px;
	display: block;
	margin-bottom:-13px;
}

.app-header .header-content {
	display: flex;
	align-items: flex-start;
}

.app-header .header-info {
	margin-left: auto;
}

.app-header a {
	color: #555555;
	text-decoration: none;
}

.app-header .toggle-header i {
	font-size: 14px;
}

.app-header .app-module i {
	font-size: 22px;
}

.app-header .logo {
	margin-left: 8px;
	margin-right: 20px;
	padding-right: 20px;
	border-right: 1px solid #e2e1e1;
}

.app-header .app-module {
	font-size: 12px;
	align-self: center;
}

.app-header .app-module i {
	margin-top: -5px;
}

input[type=password]::-ms-reveal, input[type=password]::-ms-clear {
	display: none;
}

.app-header .header-info {
	font-size: 10px;
	text-align: right;
	margin-right: 20px;
}

.app-header .header-info p {
	color: #999999;
	margin: 0px;
	margin-bottom: 0px;
}

.app-header .header-info ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
}

.app-header .header-info ul li {
	margin-right: 10px;
}

.app-header .header-info ul li a {
	text-decoration: underline;
}

.app-header .header-info ul li:last-child {
	margin-right: 0px;
}

.app-header .apps-menu {
	align-self: center;
}

.open-menu {
	display: block !important;
}

.hideHeader .logo, .hideHeader .app-module, .hideHeader .header-info,
	.hideHeader .apps-menu {
	display: none;
}

.hideHeader .toggle-header .chevron-up::before {
	content: '\e903';
}

@media only screen and (max-width: 600px) {
	.login-content {
		width: 90%;
		margin-top: 50px;
		padding: 20px;
	}
	.popup {
		width: 90%;
	}
	.back-to-login {
		top: 10px;
		left: 5%;
	}
	.app-header .header-content {
		flex-wrap: wrap;
	}
	.app-header .header-info, .app-header .apps-menu {
		margin-top: 20px;
	}
}

.arrow {
	border: 1px solid;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
}

.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.img-wh-10{
	width: 10px;
	height: 10px;
}

.btn-no-style{
	border: none;
	background-color: white;
}