@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto/subset-Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto/subset-Roboto-Bold.woff") format("woff"),
		url("../fonts/Roboto/subset-Roboto-Bold.ttf") format("truetype"),
		url("../fonts/Roboto/subset-Roboto-Bold.svg#Roboto-Bold") format("svg");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto/subset-Roboto-Regular.woff2") format("woff2"),
		url("../fonts/Roboto/subset-Roboto-Regular.woff") format("woff"),
		url("../fonts/Roboto/subset-Roboto-Regular.ttf") format("truetype"),
		url("../fonts/Roboto/subset-Roboto-Regular.svg#Roboto-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto/subset-Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto/subset-Roboto-Light.woff") format("woff"),
		url("../fonts/Roboto/subset-Roboto-Light.ttf") format("truetype"),
		url("../fonts/Roboto/subset-Roboto-Light.svg#Roboto-Light") format("svg");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto/subset-Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto/subset-Roboto-Thin.woff") format("woff"),
		url("../fonts/Roboto/subset-Roboto-Thin.ttf") format("truetype"),
		url("../fonts/Roboto/subset-Roboto-Thin.svg#Roboto-Thin") format("svg");
	font-weight: 100;
	font-style: normal;
}

body,
html {
	position: fixed;
	height: 100%;
	width: 100%;
	overflow: auto;
	margin: 0 !important;
	padding: 0 !important;
}

html {
	background-color: #645078;
}

body {
	background: #353c46;
	/* background: linear-gradient( */
	/* 132deg, */
	/* rgb(77 90 127) 0%, */
	/* rgb(89 108 167) 15%, */
	/* rgb(119 100 162) 29%, */
	/* rgb(131 73 119) 43%, */
	/* rgb(90 64 112) 62%, */
	/* rgb(96 88 132) 82%, */
	/* rgb(78 61 112) 100% */
	/* ); */

	color: #444;
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* ---------------------- */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#appWrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	position: fixed;
	height: 100%;
	width: 100%;
	overflow: auto;
	margin: 0 !important;
	padding: 0 !important;
}

.flex-row,
.flex-column,
.flex-row-stretch,
.flex-column-stretch,
.flex-row-center,
.flex-column-center,
.flex-row-between,
.flex-column-between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.flex-column,
.flex-column-stretch,
.flex-column-center,
.flex-column-center {
	flex-direction: column !important;
}

.flex-row-stretch,
.flex-column-stretch {
	justify-content: stretch;
}

.flex-row-center,
.flex-column-center {
	justify-content: center;
	align-items: center;
}

.flex-row-between,
.flex-column-between {
	justify-content: space-between;
	align-items: center;
}

.login-page {
	margin: auto;
	max-width: 30rem;
	width: 30rem;
	transition: height 1s ease;
}

.login-page > div {
	margin: 3rem auto;
	border-radius: 5px;
	overflow: hidden;

	-webkit-box-shadow: 1px 1px 15px -8px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 15px -8px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 15px -8px rgba(0, 0, 0, 0.15);
}

.form h1 {
	text-align: left;
	margin: 0;
	padding: 0 0 0.8rem;
	font-size: 140%;
	opacity: 1;
	color: #7a7b8f;
	font-weight: normal;
}

.header {
	font-size: 1.8rem;
	line-height: 1.8rem;
	position: relative;
	padding: 0.5rem 1.4rem 1rem;
	font-weight: bold;
	width: 100%;
	vertical-align: baseline;
	z-index: 20;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column !important;
	overflow: hidden;
}

.header small {
	font-size: 50%;
	text-transform: capitalize;
	padding: 0.5rem 0;
	opacity: 0.5;
}

.footer {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6rem;
	padding: 0.2rem 2rem;
	font-weight: normal;
	color: #fff;
	width: 100%;
	background-color: #eef0f2;
	vertical-align: baseline;
	z-index: 20;
	box-sizing: border-box;

	transition: padding 0.5s ease;
	overflow: hidden;
	padding: 1rem 1.5rem;
}

.footer a,
.footer a:active {
	color: #445383;
	text-decoration: none;
	font-size: 90%;
}

.footer a + a:before {
	content: "|";
	display: inline-block;
	padding: 0 0.5rem;
	color: #a7a7a7 !important;
}

.footer a:hover {
	color: #434343;
	text-decoration: underline;
}

.form {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
	color: #555555;
	margin: 0 auto;
	padding: 1rem 0;
	text-align: center;
	/* ---------------------- */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

form > div {
	width: 100%;
}

form {
	display: block;
	padding-left: 2rem;
}

form label {
	text-align: right;
	width: 100%;
	vertical-align: middle;
	display: inline-block;
	padding-right: 0.5rem;
	box-sizing: border-box;
	margin: 0 0 1rem;
}

.fingerprint {
	width: 7rem;
	flex-shrink: 0;
	border-right: 2px solid #eef0f2;
	background: url(/files/img/fingerprint.svg) center center no-repeat;
	padding: 1.5rem;
	background-origin: content-box;
}

.form-table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.form-table tr {
	margin: 0;
	padding: 0;
}

.form-table td {
	margin: 0;
	padding: 0 0.2rem;
}

.form-table span.b-input {
	margin: 0.2rem 0;
}

.form input {
	outline: 0;
	background: transparent;
	width: 100%;
	border: 0;
	margin: 0 0 1rem;
	padding: 0.3rem 0;
	box-sizing: border-box;
	font-size: 1rem !important;
	border-bottom: 1px solid #a5a5a5;
	color: #252525;
	line-height: normal;
	font: 1rem Roboto;
	outline-style: none;
}

.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus {
	-webkit-text-fill-color: #252525;
	transition: all 50000s ease-in-out 0s;
	transition-property: background-color, color;
}

.form input:-webkit-autofill::first-line,
.form input:-webkit-autofill:hover::first-line,
.form input:-webkit-autofill:focus::first-line {
	color: #252525;
	caret-color: #252525;
}

.form input,
.form input:-moz-autofill,
.form input:-moz-autofill-preview {
	filter: none !important;
}

.form input::placeholder {
	font-size: 1rem;
	color: #aaa;
	letter-spacing: 1px;
}

.form input:active,
.form input:focus {
	border-bottom: 1px solid #6c8fc4cc;
	color: #252525;
}

.form button {
	font-size: 1rem;
	outline: 0;
	background: #6d90c4;
	border: 0;
	padding: 0.8rem 1rem;
	color: #ffffff;
	transition: all 0.3 ease;
	cursor: pointer;
	border-radius: 0.3rem;
	margin-top: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	align-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

.form button:hover,
.form button:active,
.form button:focus {
	background: #7e9ece;
}

.form button[type="cancel"] {
	background: #cf6f6f;
}

.form button[type="cancel"]:hover,
.form button[type="cancel"]:active,
.form button[type="cancel"]:focus {
	background: #c45050;
}

.form button.fa:before {
	margin-right: 0.6rem;
}

.form button.fa-spin,
.form button.fa-spinner {
	pointer-events: none;
}

.fa-price-tags:before {
	content: "\e9ac";
}

.form .message {
	margin: 15px 0 0;
	color: #b3b3b3;
	font-size: 0.9rem;
}

.form .message a {
	color: #6384b7;
	text-decoration: none;
}

.form .register-form {
	display: none;
}

.container {
	position: relative;
	z-index: 1;
	min-width: 20rem;
	margin: 0;
	flex-grow: 1;
	transition: height 0.5s ease;
}

.container:before,
.container:after {
	content: "";
	display: block;
	clear: both;
}

.container .info {
	margin: 50px auto;
	text-align: center;
}

.container .info h1 {
	margin: 0 0 15px;
	padding: 0;
	font-size: 1.4rem;
	font-weight: 300;
	opacity: 0.8;
}

.container .info span {
	color: #4d4d4d;
	font-size: 0.9rem;
}

.container .info span a {
	color: #000000;
	text-decoration: none;
}

.container .info span .fa {
	color: #ef3b3a;
}

.button-panel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: flex-end;
}

#nprogress {
	pointer-events: none;
}

#nprogress .bar {
	background: #ecc514;
	position: fixed;
	z-index: 1031;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
}

#nprogress .peg {
	display: block;
	position: absolute;
	right: 0;
	width: 100px;
	height: 100%;
	-webkit-box-shadow: 0 0 10px #ecc514, 0 0 5px #ecc514;
	-moz-box-shadow: 0 0 10px #ecc514, 0 0 5px #ecc514;
	box-shadow: 0 0 10px #ecc514, 0 0 5px #ecc514;
	opacity: 1;
	-webkit-transform: rotate(3deg) translate(0, -4px);
	-ms-transform: rotate(3deg) translate(0, -4px);
	transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner {
	display: none;
	position: fixed;
	z-index: 1031;
	top: 15px;
	right: 15px;
}

#nprogress .spinner-icon {
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: #29d;
	border-left-color: #29d;
	border-radius: 50%;
	-webkit-animation: nprogress-spinner 0.4s linear infinite;
	animation: nprogress-spinner 0.4s linear infinite;
}

.nprogress-custom-parent {
	overflow: hidden;
	position: relative;
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
	position: absolute;
}

@-webkit-keyframes nprogress-spinner {
	0% {
		-webkit-transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes nprogress-spinner {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@font-face {
	font-family: "icofont";
	src: url("../fonts/icofont/icofont.eot");
	src: url("../fonts/icofont/icofont.eot?#iefix-77lm9y") format("embedded-opentype"), url("../fonts/icofont/icofont.woff") format("woff"),
		url("../fonts/icofont/icofont.ttf") format("truetype"), url("../fonts/icofont/icofont.svg#icofont") format("svg");
	font-weight: normal;
	font-style: normal;
}

.fa:before {
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
	font-family: "icofont";
}

.fa-cart-plus:before {
	content: "\e93a";
	font-size: 70%;
	vertical-align: 5%;
	margin-right: 0.5rem;
}

.fa-cloud-download:before {
	content: "\e9c2";
	margin-right: 0.6rem;
	font-size: 1.2em;
	position: relative;
	top: 0.1em;
}

.fa-check-circle:before {
	content: "\194b1";
}

.fa-check:before {
	content: "\19713";
}

.fa-reply:before {
	content: "\e967";
}

.fa-user-plus:before {
	content: "\1928e";
}

.fa-ok:before {
	content: "\19713";
}

.fa-remove:before {
	content: "\19718";
}

.fa-fingerprint:before {
	content: "\e93b";
}

.fa-check-big:before {
	content: "\19714";
}

.fa-spinner:before,
.fa-spin:before {
	display: inline-block;
	-webkit-animation-name: spin;
	-webkit-animation-duration: 1200ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: spin;
	-moz-animation-duration: 1200ms;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: spin;
	-ms-animation-duration: 1200ms;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	animation-name: spin;
	animation-duration: 1200ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	padding: 0;
	height: 1em;
	line-height: 1em;
	vertical-align: middle;
	position: relative;

	content: "\1969b";
	padding: 0;
	height: 1em;
	line-height: 1em;
	vertical-align: middle;
	position: relative;
}

@-ms-keyframes spin {
	from {
		-ms-transform: rotate(0deg);
	}

	to {
		-ms-transform: rotate(360deg);
	}
}

@-moz-keyframes spin-moz {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.login-page.au2x .form {
	background-color: #444444;
	color: #fff;
}

.login-page.au2x .fingerprint {
	border-right-color: #555;
}

.login-page.au2x .form h1 {
	color: #87ca00;
	text-align: center;
}

.login-page.au2x .twoFactor {
	color: rgb(165, 208, 228);
	font-size: 2.3rem !important;
	text-align: center;
	white-space: nowrap;
	outline-style: none;
}

.login-page.au2x .twoFactor:active,
.login-page.au2x .twoFactor:focus {
	border-bottom: 1px solid #6da202;
	color: #a7d072;
}

[contenteditable],
.twoFactor {
	white-space: nowrap;
	width: 200px;
	overflow: hidden;
	letter-spacing: 0.3rem;
}

[contenteditable] br {
	display: none;
}

[contenteditable] * {
	display: inline;
	white-space: nowrap;
}

.login-page.au2x .footer {
	background-color: #3f3f3f;
}

.login-page.au2x .footer a {
	color: #fff;
}

/* *********************** */

.login-page.au2x .form input:-webkit-autofill,
.login-page.au2x .form input:-webkit-autofill:hover,
.login-page.au2x .form input:-webkit-autofill:focus {
	-webkit-text-fill-color: rgb(165, 208, 228);
	color: rgb(165, 208, 228);
	transition: all 50000s ease-in-out 0s;
	transition-property: background-color, color;
}

.login-page.au2x .form input:-webkit-autofill::first-line,
.login-page.au2x .form input:-webkit-autofill:hover::first-line,
.login-page.au2x .form input:-webkit-autofill:focus::first-line {
	color: rgb(165, 208, 228);
	caret-color: rgb(165, 208, 228);
}

.login-page.au2x .form input,
.login-page.au2x .form input:-moz-autofill,
.login-page.au2x .form input:-moz-autofill-preview {
	filter: none !important;
}

.login-page.au2x .form input::placeholder {
	font-size: 1rem;
	color: #777;
	letter-spacing: 1px;
}

/* *********************** */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.form-slider {
	position: relative;
	overflow: hidden;
	transition: height 0.5s ease;
}

.form-slider > * {
	width: 100%;
	padding: 0 1.6rem !important;
	left: 0;
	top: 0;
	box-sizing: border-box;
}

.logo {
	margin: 0;
	max-width: 100%;
	margin-bottom: 0.5rem;
}

.logo img {
	width: 17rem;
	max-width: 100%;
}
.logo span {
	display: inline-flex;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	flex-direction: row;
}
.logo span::before {
	font-size: 1.6rem;
	margin-right: 0.4rem;
}

.fade-enter-active,
.fade-leave-active {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-enter-to,
.fade-leave,
.fade-leave-active {
	position: static;
}

.fade-leave input,
.fade-leave-active input {
	opacity: 0.2;
}

.fade-enter,
.fade-leave-to {
	position: absolute;
	opacity: 0;
}

.fade-enter {
	transform: translateY(-10px);
}

.fade-leave-to {
	transform: translateY(10px);
}

div[id^="__lpform_"] {
	display: none !important;
	opacity: 0 !important;
	left: -10000px;
	visibility: hidden !important;
	opacity: 0;
}

.flip-list-move {
	transition: transform 1s;
}

@media (max-width: 35rem) {
	.container {
		min-width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.login-page {
		width: 20rem;
		max-width: 90% !important;
	}

	.logo {
		width: 100%;
	}

	.form-slider {
		padding: 0;
		width: 100%;
		box-sizing: border-box;
	}

	.form-slider > * {
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.form {
		flex-direction: column !important;
		flex-wrap: wrap !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 100% !important;
		padding: 1rem 0 !important;
	}

	form {
		padding: 0 !important;
	}

	form > div {
		width: 100%;
	}

	.fingerprint {
		width: 100%;
		border-right: none;
		background: url(/files/img/fingerprint.svg) center center no-repeat;
		padding-right: 0;
		background-origin: content-box;
		height: 4rem;
		padding: 1rem 0;
		background-color: #f8f8f8;
		top: -1rem;
		position: relative;
	}

	.footer {
		background-color: #f8f8f8;
	}

	.login-page.au2x .fingerprint,
	.login-page.au2x .footer {
		background-color: #3f3f3f;
	}

	h1 {
		font-size: 1.2rem !important;
	}
}

@media (max-width: 300px) {
	.header {
		font-size: 1.4rem;
	}
}

@media (max-height: 500px) {
	.login-page {
		transform: scale(0.8);
		margin: 1rem auto;
	}
}
