html, body {
	margin:0;
	padding:0;
	font-family: "Open Sans";
	}
body {
	background: url(../_img/bg.jpg) no-repeat;
	background-size: cover;
	}
header {
	border-bottom: rgb(66, 106, 175) 2px solid;
	height:110px;
	width:100%;
	padding:10px 0;
	}
header > div {
	width:1170px;
	margin:0 auto;
	}
header .logo {
	height:100px;
	width:16%;
	float:left;
	}
header .logo img {
	height:95%;
	}
header .mininav, header .nav {
	float:left;
	width:84%;
	text-align:right;
	list-style: none;
	margin-top:5px;
	}
header .mininav {
	font-size:75%;
	color:rgb(74, 74, 74);
	}
header .mininav li, header .nav li {
	display: inline-block;
	margin-left: 20px;
	}
header .mininav li::after, header .nav li::after {
	content: ' ';
	position: absolute;
	right: 1px;
	top: 10px;
	bottom: 10px;
	border-right: 1px solid #e8e8e8;
	}
header .mininav li a, header .mininav li a:visited {
	color: #4a4a4a;
	text-decoration:none;
	padding:6px;
	}
header .mininav li a:hover, header .nav li a:hover {
	background-color: #eee;
	}
header .nav li a, header .nav li a:visited {
	color: #426aaf;
	text-decoration:none;
	padding:10px;
	text-transform: uppercase;
	}

section.main {
	width:1170px;
	margin:0 auto;
	padding-top:20px;
	}
	
a.btn {
	background-color: rgb(246, 140, 62);
	border-color: rgb(246, 140, 62);
	border-radius: 8px;
	border-style: solid;
	border-width: 1px;
	color: rgb(255, 255, 255);
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	padding: 10px;
	text-decoration-line: none;
	transition-duration: 0.3s;
	transition-property: background-color;
	user-select: none;
	vertical-align: middle;
	white-space: nowrap;
	}
a.btn:hover {
	background-color: rgb(246, 168, 62);
	}
a.btn:not(.noblock) {
	display: block;
	}
a.btn.expired {
	cursor:text;
	background-color:#d3d3d3;
	border-color:#d3d3d3;
	}

.clearfix::before,
.clearfix::after {
	content: " ";
	display: table;
	} 
.clearfix::after {
	clear: both;
	}


@media only screen and (max-width: 600px) {
	section.main, header > div { width:100%; }
	}


#js_info {
	position:fixed;
	top:0;
	left:0;
	right:0;
	background:#ffe8e8;
	border:#ff0000 2px solid;
	padding:20px 0;
	text-align:center;
	}

.registerForm {
	font-size:13px;
	}
.wrapper {
	min-height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	}
.inner {
	padding: 20px;
	background: #fff;
	max-width: 850px;
	margin: auto;
	display: flex;
	box-shadow: #000 0px 0px 10px;
	}
.inner .image-holder {
	width:30%;
	}
.inner .form-holder {
	width:40vw;
	}
.inner h3 {
	text-transform: uppercase;
	font-size: 25px;
	text-align: center;
	margin-bottom: 28px;
	}
.form-group {
	display: flex;
	}
.form-wrapper {
	position: relative;
	}
.form-group.hidden, .form-wrapper.hidden { display:none; }
.form-group input {
	width: 50%;
	}
.form-group input:first-child {
	margin-right: 25px;
	}
.form-control {
	border: 1px solid #333;
	border-top: none;
	border-right: none;
	border-left: none;
	display: block;
	width: 100%;
	height: 30px;
	padding: 0;
	margin-bottom: 25px;
	}
.radio-group label {
	display:block;
	margin-bottom:10px;
	}
.radio-group input {
	margin-left:0;
	}
button {
	border: none;
	width: 164px;
	height: 51px;
	margin: auto;
	margin-top:20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: #333;
	font-size: 15px;
	color: #fff;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	}
:focus {
	outline: none;
	}
#errContainer {
	color:#ff0000;
	margin-bottom:20px;
	}
#cap {
	display: block;
	margin-top:10px;
	}
.widget__container { height:initial !important; }