body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-family: "proxima-nova-soft", sans-serif;
	-webkit-user-select: none;
	overflow: hidden;
}

body .vertical-centered-box {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

body .vertical-centered-box:after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

body .vertical-centered-box .content {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	height: 100%;
	width: 100%;
}

body .vertical-centered-box .content .row {
	/*height: 100%;*/
	width: 100%;
	margin: 0;
}

* {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.loader-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
	margin-left: -60px;
	margin-top: -60px;
}

.loader-line-mask {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 120px;
	margin-left: -60px;
	margin-top: -60px;
	overflow: hidden;
	-webkit-transform-origin: 60px 60px;
	-moz-transform-origin: 60px 60px;
	-ms-transform-origin: 60px 60px;
	-o-transform-origin: 60px 60px;
	transform-origin: 60px 60px;
	-webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
	-webkit-animation: rotate 0.8s infinite linear;
	-moz-animation: rotate 0.8s infinite linear;
	-o-animation: rotate 0.8s infinite linear;
	animation: rotate 0.8s infinite linear;
}

.loader-line-mask .loader-line {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.5);
}

#particles-background,
#particles-foreground {
	left: -51%;
	top: -51%;
	width: 202%;
	height: 202%;
	-webkit-transform: scale3d(0.5, 0.5, 1);
	-moz-transform: scale3d(0.5, 0.5, 1);
	-ms-transform: scale3d(0.5, 0.5, 1);
	-o-transform: scale3d(0.5, 0.5, 1);
	transform: scale3d(0.5, 0.5, 1);
}

#particles-background { background-image: linear-gradient(45deg, #c2d5a0 -80%, #002025 100%); }

#particles-background.errorResult {
	background-image: linear-gradient(45deg, #d89292 -80%, #250000 100%);
}

#particles-background.warningResult {
	background-image: linear-gradient(45deg, #fffc9e -80%, #101000 100%);
}

#particles-background.errorResult::after, #particles-background.warningResult::after {
	background-image: linear-gradient(45deg, #c2d5a0 -80%, #002025 100%);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	-webkit-animation-name: blinkErrorResultAfter;
	-webkit-animation-duration: 1500ms;
	animation-name: blinkErrorResultAfter;
	animation-duration: 1500ms;
}
@-webkit-keyframes blinkErrorResultAfter {
	 0% {opacity: 1}
	 100% {opacity: 0}
}

lesshat-selector { -lh-property: 0; }

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

@-moz-keyframes rotate{
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); }
}

@-o-keyframes rotate{
	0% { -o-transform: rotate(0deg); }
	100% { -o-transform: rotate(360deg); }
}

@keyframes rotate{
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

[not-existing] { zoom: 1; }

lesshat-selector { -lh-property: 0; }

@-webkit-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-moz-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-o-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}

[not-existing] { zoom: 1; }

lesshat-selector { -lh-property: 0; }

@-webkit-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-moz-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-o-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}

[not-existing] { zoom: 1; }

path {
	fill: #ffffff;
	fill-opacity: 0.3;
}

@keyframes dot {
	0% { opacity: 0; }
	50% { opacity: 1; }
	100% { opacity: 0; }
}

.loadingText {
	font-style: italic;
	margin-top: 80px;
	color: #ffffff;
	position: absolute;
	width: 100%;
	font-size: 130%;
	text-align: center;
	left: 0;
	top: 50%;
	opacity: 1;
	animation-duration: 3s;
	animation-delay: 1.8s;
	animation-iteration-count: infinite;
	letter-spacing: -1px;
}

.loadingText .dot {
	opacity: 0;
	animation-name: dot;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	letter-spacing: -2px;
}

.loadingText .dot:nth-last-of-type(1) { animation-delay: 750ms; }
.loadingText .dot:nth-last-of-type(2) { animation-delay: 500ms; }
.loadingText .dot:nth-last-of-type(3) { animation-delay: 250ms; }

.logo {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	padding: 30px 70px;
	z-index: 99999999;
}

.logo img {
	max-width: 100%;
}

.dt-normal {
	font-weight: normal;
}

.dt-bold {
	font-weight: bold;
}

.text-bold {
	font-weight: 800;
}