.rounded {
	border-radius: 0.5rem;
}

.bg-gray {
	background-color: rgba(248, 248, 248, 1.0);
}

.bg-light_orange {
	background-color: rgba(248, 241, 233, 1.000);
}

.bg-orange {
	background-color: rgba(243, 153, 017, 1.000);
}

.bg-white {
	background-color: rgba(255, 255, 255, 1.000);
}

.fc-blue {
	color: rgba(076, 156, 207, 1.000);
}

.fc-light_gray {
	color: rgba(192, 192, 192, 1.000);
}

.fc-gray {
	color: rgba(128, 128, 128, 1.000);
}

.fc-dark_gray {
	color: rgba(096, 096, 096, 1.000);
}

.fc-orange {
	color: rgba(252, 153, 047, 1.000);
}

.fc-white {
	color: rgba(255, 255, 255, 1.000);
}

.border-top-blue {
	border-top: 0.5rem solid rgba(076, 156, 207, 1.000);
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1 {
	font-weight: 500;
}

h2 {
	font-weight: 500;
}

h3 {
	font-weight: 500;
}

body {
	color: rgba(0, 0, 0, 0.75);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	min-height: 100%;
	height: 100%;
}

html {
	height: 100%;
}

.window {
	overflow:hidden;
	animation:opacity 0.3s;
}

.window > * {
	max-height:800px;
	animation: Popup-window 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.500, 0.250, 0.500, 0.750);
	-moz-transition-timing-function: cubic-bezier(0.500, 0.250, 0.500, 0.750);
	-o-transition-timing-function: cubic-bezier(0.500, 0.250, 0.500, 0.750);
	transition-timing-function: cubic-bezier(0.500, 0.250, 0.500, 0.750);
}

@media(max-width:799px) {
	.window > * {
		max-height:640px;
	}
}

@media(max-width:479px) {
	.window > * {
		max-height:480px;
		max-width:360px;
	}
}

#OverlayAdvert {
	background-color: rgba(46, 46, 46, 0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

#OverlayAdvert .Close {
	display: block;
	width: 100%;
	color: rgba(255, 255, 255, 1.0);
	text-align: center;
	position: absolute;
	left: 0rem;
	top: 0.5rem;
}

#OverlayAdvert .Image {
	padding: 2rem 1rem 1rem 1rem;
	text-align: center;
	width: 100%;
	height: 75%;
}

#OverlayAdvert img {
	max-width: 100%;
	max-height: 100%;
}

#MaintenancePage {
	position:relative;
	display: flex;
	flex-direction:column;
	flex-wrap:nowrap;
	justify-content:space-around;
	align-items:center;
	width:100%;
	height:100%;
	background-color:rgba(255, 255, 255, 1.0);
	color:rgba(36, 36, 36, 1.0);
	overflow:hidden;
}

#MaintenancePage::after {
	position:absolute;
	left:2.5rem;
	top:40%;
	content:"\f0ad";
	transform:rotate(270deg);
	font-size:50rem;
	font-weight:900;
	font-family:"FontAwesome", "Font Awesome 5 Free";
	font-style:normal;
	font-variant:normal;
	text-rendering:auto;
	line-height:1;
	opacity:0.5;
	z-index:0;
	color:rgba(85, 161, 209, 1.0);
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

#MaintenancePage::before {
	position:absolute;
	right:2rem;
	top:-35%;
	content:"\f0ad";
	transform:rotate(90deg);
	font-size:50rem;
	font-weight:900;
	font-family:"FontAwesome", "Font Awesome 5 Free";
	font-style:normal;
	font-variant:normal;
	text-rendering:auto;
	line-height:1;
	opacity:0.5;
	z-index:0;
	color:rgba(252, 153, 37, 1.0);
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

#MaintenancePage .Container {
	z-index:1;
	margin-bottom:10%;
}

#MaintenancePage .Container h3 {
	font-size:1.5rem;
	font-weight:400;
}

#MaintenancePage .Container a {
	height:100%;
	color:rgba(120, 120, 120, 1.0);
}

#MaintenancePage .Container .Logotype {
	height:40px;
	width:auto;
}

#MaintenancePage .Container .Phone {
	position:relative;
	padding-left:1.5rem;
}

#MaintenancePage .Container .Phone::before {
	position:absolute;
	left:0;
	top:0;
	content:"\f095";
	font-weight:900;
	font-family:"FontAwesome", "Font Awesome 5 Free";
	font-style:normal;
	font-variant:normal;
	text-rendering:auto;
	line-height:1;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

#MaintenancePage .Container .Envelope {
	position:relative;
	padding-left:1.5rem;
}

#MaintenancePage .Container .Envelope::before {
	position:absolute;
	left:0;
	top:0;
	content:"\f0e0";
	font-weight:900;
	font-family:"FontAwesome", "Font Awesome 5 Free";
	font-style:normal;
	font-variant:normal;
	text-rendering:auto;
	line-height:1;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

@media(max-width:1023px) {
	#MaintenancePage::before {
		display:none;
	}
}

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

@keyframes Popup-window {
	0% {
		transform:translateY(50%);
		opacity:0;
	}
	70% {
		transform:translateY(0%);
	}
	100% {
		opacity:1;
	}
}