/* COMMON */
html {
	height: 100%;
}
body {
	font-family: "OpenSansRegular";
	height: 100%;
}
#main,
#main_home,
#account_main,
#redirect_main {
	position: relative;
	min-height: 100%;
	overflow: hidden;
}
#main,
#main_home {
	background: #fff;
}
#account_main {
	background: #fff url(../img/bg/account-main-bg.jpg) center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#redirect_main {
	position: relative;
}
@media screen and (min-width: 992px) {
	#redirect_main::after {
		background: #f9fdff url(../img/bg/redirect-main-bg.png) center top no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
		position: absolute;
		content: "";
		bottom: 540px;
		right: 0;
		left: 0;
		top: 0;
	}
}
.container {
	position: relative;
	z-index: 2;
}
.centered {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
.centered_box {
	display: table;
}
.centered_content {
	display: table-cell;
}
.centered_box,
.centered_content {
	vertical-align: middle;
	height: 100%;
	width: 100%;
}
.block {
	display: block;
}
m,e {
	display:none;
}
/* ------------------------------ text */
.content {
	position: relative;
	padding: 60px 0;
	z-index: 3;
}
.content_bg {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	padding: 30px 15px 60px;
	background-color: #fff;
	margin: 45px auto 0;
	position: relative;
}
h1.page_title,
h2.page_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	text-align: center;
	padding: 39px 0;
	font-size: 34px;
	line-height: 1;
	margin: 0 auto;
	color: #333945;
}
h1.page_small_title,
h2.page_small_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	text-align: center;
	line-height: 30px;
	padding: 20px 0;
	font-size: 24px;
	margin: 0 auto;
	color: #333945;
}
p.gen_text,
ul.gen_text {
	font-family: "OpenSansRegular";
	margin-bottom: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #2c2b2b;
}
p.gen_small_text,
ul.gen_small_text {
	font-family: "OpenSansRegular";
	margin-bottom: 24px;
	line-height: 20px;
	font-size: 12px;
	color: #2c2b2b;
}
.list_block p {
	margin-bottom: 0;
}
ul.marker_list li {
	background: url(../img/ul-marker.png) 35px 7px no-repeat;
	-webkit-background-size: 10px;
	background-size: 10px;
	text-indent: 70px;
}
a.dark_link {
	color: #2c2b2b;
}
a.dark_link:hover {
	text-decoration: underline;
	cursor: pointer;
	opacity: 0.8;
}
.text-underline {
	text-decoration: underline;
}

@media (min-width: 992px) and (max-width: 1199px) {
	h1.page_title,
	h2.page_title {
		padding: 34px 0;
		font-size: 32px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	h1.page_title,
	h2.page_title {
		padding: 30px 0;
		font-size: 30px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	h1.page_title,
	h2.page_title {
		padding: 26px 0;
		font-size: 28px;
	}
	h1.page_small_title,
	h2.page_small_title {
		font-size: 22px;
	}
}
@media screen and (max-width: 519px) {
	h1.page_title,
	h2.page_title {
		line-height: 1.2;
		padding: 22px 0;
		font-size: 24px;
	}
	h1.page_small_title,
	h2.page_small_title {
		font-size: 20px;
	}
}
/* COMMON END */

/* CALCULATE PAGE */
#calculate_block {
	position: absolute;
	z-index: 9;
	right: 5px;
}
#calculate_block.affix {
	position: fixed;
	top: 10px!important;
}
#calculate_block.open {
	z-index: 9999;
}

/* -------------------- */
#calculate_btn {
	-webkit-box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	-moz-box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	font-family: "OpenSansBold";
	text-transform: uppercase;
	background-color: #fff;
	border-radius: 5px;
	position: relative;
	text-align: center;
	cursor: pointer;
	line-height: 1;
}
#calculate_btn.active,
#calculate_btn:hover {
	background-color: #89cd40;
	color: #fff;
}
#calculate_btn > span {
	position: relative;
	display: block;
	z-index: 3;
}
#calculate_btn > .calculate_icon {
	background: url(../img/calculate-icon-hover.png) center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin: 0 auto 15px;
	position: relative;
	max-width: 42px;
	z-index: 3;
}
#calculate_btn > .calculate_icon > img {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
#calculate_btn:hover > .calculate_icon > img,
#calculate_btn.active > .calculate_icon > img {
	opacity: 0;
}
/* -------------------- */
#calculate {
	-webkit-box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	-moz-box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	box-shadow: 0px 7px 11.7px 3.3px rgba(0, 0, 0, 0.61);
	background-color: #fff;
	margin-right: 15px;
	border-radius: 5px;
	position: absolute;
	overflow: hidden;
	height: 230px;
	right: 100%;
	opacity: 0;
	width: 0;
	top: 0;
}
#calculate.open {
	width: 510px;
	opacity: 1;
}
/* -------------------- */
.close_btn {
	border: 1px solid #85cb3a;
	border-radius: 50%;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	z-index: 100;
	height: 16px;
	width: 16px;
	right: 5px;
	top: 5px;
}
.close_btn > span {
	display: block;
	width: 100%;
	height: 1px;
}
.close_btn > span:first-child {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-o-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	background-color: #85cb3a;
	position: absolute;
	left: 50%;
	top: 50%;
}
.close_btn > span:last-child {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-moz-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	-o-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	background-color: #85cb3a;
	position: absolute;
	left: 50%;
	top: 50%;
}
/* -------------------- */
#calculate_content {
	position: absolute;
	overflow: hidden;
	bottom: 15px;
	right: 15px;
	left: 15px;
	top: 15px;
}
#calculate_content .calculate_form {
	position: relative;
	min-height: 200px;
	width: 480px;
}
.calculate_form label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
	line-height: 1.25;
	margin-bottom: 0;
	font-size: 14px;
	display: block;
	height: 35px;
}
.calculate_form .form-control,
.calculate_form select.form-control {
	background-color: #fff;
	border-color: #89cd40;
	padding: 6.5px 5px;
	text-align: center;
	line-height: 20px;
	border-radius: 0;
}
.calculate_form select.form-control {
	padding: 6.5px 30px 6.5px 5px;
	-webkit-appearance: none;
	background-image: url("../img/calc-select-arrow.png");
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	/* for FF */
	-moz-appearance: none;
	text-indent: 0.01px; 
	text-overflow: '';
	/* for IE */
	-ms-appearance: none;
	appearance: none!important;
}
.calc_inputs_list li:nth-child(1) .form-control {
	border-color: rgba(255,179,1,1);
}
/* -------------------- */
.calc_plan {
	margin-bottom: 20px;
	padding-right: 180px;
	margin-left: -10px;
	position: relative;
	text-align: center;
	height: 35px;
	width: 300px;
}
.calc_long_input {
	position: absolute;
	height: 35px;
	width: 180px;
	right: 0;
	top: 0;
}
.calc_inputs_list {
	max-width: 460px;
	margin: 0 auto;
}
.calc_inputs_list li {
	padding: 0 90px 0 23px;
	margin-bottom: 20px;
	position: relative;
	height: 35px;
}
.calc_inputs_list li:nth-child(odd) {
	width: 190px;
	float: left;
}
.calc_inputs_list li:nth-child(even) {
	width: 230px;
	float: right;
}
.calc_number {
	font-family: "OpenSansBold";
	border: 1px solid #89cd40;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	line-height: 21px;
	font-size: 10px;
	height: 23px;
	width: 23px;
	top: 6px;
	left: 0;
}
.calc_input {
	position: absolute;
	height: 35px;
	width: 90px;
	right: 0;
	top: 0;
}
.calc_total {
	position: relative;
	padding-right: 90px;
	text-align: center;
	margin: 0 auto;
	height: 35px;
	width: 220px;
}

#side_calc_return_wrap, .calc_return_field_wrap {
	width:280px;
}

#side_calc_return, .calc_return_field {
	width:124px;
}

@media screen and (min-width: 992px) {
	#calculate_btn {
		padding: 15px 8px;
		font-size: 14px;
		height: 230px;
		width: 60px;
	}
}
@media screen and (max-width: 991px) {
	#calculate_btn {
		padding: 10px 8px;
		font-size: 12px;
		height: 170px;
		width: 40px;
	}
}
@media screen and (min-width: 1200px) {
	#calculate_block {
		top: 230px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#calculate_block {
		top: 170px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#calculate_block {
		top: 105px;
	}
}
@media (min-width: 620px) and (max-width: 767px) {
	#calculate_block {
		top: 140px;
	}
}
@media (min-width: 530px) and (max-width: 619px) {
	#calculate_block {
		top: 145px;
	}
}
@media screen and (max-width: 619px) {
	.calc_plan {
		margin-bottom: 10px;
		margin-left: 0;
	}
	.calc_inputs_list {
		max-width: 100%;
	}
	.calc_inputs_list li:nth-child(odd),
	.calc_inputs_list li:nth-child(even) {
		margin: 0 0 10px auto;
		float: none;
	}
	#calculate_btn {
		height: 45px;
	}
	#calculate_btn > span {
		display: none;
	}
	.calc_total {
		margin: 0 0 0 auto;
	}
}
@media (min-width: 430px) and (max-width: 619px) {
	#calculate.open {
		width: 340px;
	}
	#calculate_content {
		overflow-x: hidden;
		overflow-y: auto;
	}
	#calculate_content .calculate_form {
		width: 300px;
	}
}
@media screen and (max-width: 529px) {
	#calculate_block {
		top: 176px;
	}
}
@media screen and (max-width: 429px) {
	#calculate.open {
		width: 240px;
	}
	#calculate_content {
		overflow-x: hidden;
		overflow-y: auto;
	}
	#calculate_content .calculate_form {
		width: 200px;
	}
	.calc_plan {
		text-align: left;
		margin-bottom: 0;
		padding-right: 0;
		margin-left: 0;
		height: auto;
		width: 200px;
	}
	.calc_long_input {
		position: relative;
		width: 200px;
	}
	.calc_inputs_list li:nth-child(odd),
	.calc_inputs_list li:nth-child(even) {
		margin: 0 0 5px auto;
		padding: 0 0 0 33px;
		height: auto;
		width: 100%;
	}
	.calculate_form label {
		text-align: left;
	}
	.calc_input {
		position: relative;
		margin-left: -33px;
		width: 200px;
	}
	.calc_total {
		padding-right: 0;
		text-align: left;
		height: auto;
		width: 200px;
	}
	.calc_total > .calc_input {
		margin-left: 0;
	}
	
	#side_calc_return_wrap, .calc_return_field_wrap {
		width:264px !important;
	}
	
	#side_calc_return_wrap label, .calc_return_field_wrap label {
		width:151px !important;
	}

	.calc_return_field {
		width:100%;
	}
	
	#side_calc_return {
		width:200px;
	}
}
@media (max-width: 619px) and (min-height: 490px) {
	#calculate_block #calculate.open {
		height: 295px;
	}
	#calculate_content {
		overflow-x: hidden;
		overflow-y: auto;
	}
}
@media screen and (max-height: 415px) {
	#calculate_block #calculate.open {
		height: 200px;
	}
	#calculate_block.affix #calculate.open {
		height: 290px;
	}
	#calculate_content {
		overflow-x: hidden;
		overflow-y: auto;
	}
}
@media screen and (max-height: 389px) {
	#calculate_block #calculate.open {
		height: 170px;
	}
}
@media screen and (max-height: 359px) {
	#calculate_block #calculate.open {
		height: 140px;
	}
}
@media screen and (max-height: 329px) {
	#calculate_block #calculate.open {
		height: 120px;
	}
}
a#calculate_block {
	text-decoration:none;
}
a#calculate_block span {
	color:#333;
	text-decoration:none;
	transition:0.5s;
}
a#calculate_block:hover span {
	color:#fff;
}
/* CALCULATE PAGE END */


/* MODALS */
.info_window {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.27);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.27); 
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.27); 
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #f0f0f0;
	border-radius: 5px;
	max-height: 90%;
	position: fixed;
	overflow: auto;
	z-index: 99999;
	display: none;
	left: 50%;
	top: 50%;
}
.info_content_window {
	padding: 30px 30px 40px;
	text-align: center;
}
.window_icon {
	margin: 0 auto 25px;
	width: 32px;
}
.info_content_window p.gen_text {
	margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
	.info_content_window {
		width: 640px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.info_content_window {
		width: 540px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.info_content_window {
		width: 400px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	.info_content_window {
		width: 450px;
	}
}
@media screen and (max-width: 519px) {
	.info_content_window {
		padding: 20px 20px 30px;
		min-width: 260px;
	}
}
/* MODALS END */

/* BUTTONS */
a, .btn, .anim, ::after, ::before {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
a:focus,
button:focus {
	outline: none!important;
}
/* -------------------- */
.btn {
	-webkit-text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.36);
	-moz-text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.36);
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.36);
	font-family: "OpenSansBold";
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: 0;
}
.btn.disabled {
	cursor: default;
	opacity: 1;
}
.btn::after,
.btn::before {
	border-radius: 8px;
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.btn:hover,
.btn:focus {
	color: #fff;
}
.btn:hover::after,
.btn:focus::after {
	opacity: 0;
}
span.btn_content {
	position: relative;
	padding: 9px 15px;
	line-height: 20px;
	overflow: hidden;
	font-size: 16px;
	display: block;
	z-index: 4;
}
span.btn_content.with_icon {
	padding: 9px 65px 9px 15px;
	position: relative;
}
span.btn_content.with_icon > .btn_icon {
	position: absolute;
	height: 100%;
	width: 50px;
	right: 0;
	top: 0;
}
span.btn_content.with_icon > .btn_icon > img {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
span.btn_content.btn_big {
	position: relative;
	padding: 13px 20px;
	line-height: 30px;
	font-size: 27px;
	display: block;
	z-index: 4;
}
/* ------------------------------ green button */
.btn.btn-green {
	background: rgba(177,222,13,1);
	background: -moz-linear-gradient(45deg, rgba(177,222,13,1) 0%, rgba(76,132,31,1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(177,222,13,1)), color-stop(100%, rgba(76,132,31,1)));
	background: -webkit-linear-gradient(45deg, rgba(177,222,13,1) 0%, rgba(76,132,31,1) 100%);
	background: -o-linear-gradient(45deg, rgba(177,222,13,1) 0%, rgba(76,132,31,1) 100%);
	background: -ms-linear-gradient(45deg, rgba(177,222,13,1) 0%, rgba(76,132,31,1) 100%);
	background: linear-gradient(45deg, rgba(177,222,13,1) 0%, rgba(76,132,31,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b1de0d', endColorstr='#4c841f', GradientType=1 );
	border: 2px solid transparent;
	border-radius: 10px;
}
.btn.btn-green::before {
	background: rgba(184,235,15,1);
	background: -moz-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(184,235,15,1) 75%, rgba(105,147,14,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(184,235,15,1)), color-stop(75%, rgba(184,235,15,1)), color-stop(100%, rgba(105,147,14,1)));
	background: -webkit-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(184,235,15,1) 75%, rgba(105,147,14,1) 100%);
	background: -o-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(184,235,15,1) 75%, rgba(105,147,14,1) 100%);
	background: -ms-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(184,235,15,1) 75%, rgba(105,147,14,1) 100%);
	background: linear-gradient(to bottom, rgba(184,235,15,1) 0%, rgba(184,235,15,1) 75%, rgba(105,147,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8eb0f', endColorstr='#69930e', GradientType=0 );
	z-index: 1;
}
.btn.btn-green::after {
	background: rgba(184,235,15,1);
	background: -moz-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(165,204,11,1) 50%, rgba(165,204,11,1) 58%, rgba(124,172,13,1) 75%, rgba(101,142,14,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(184,235,15,1)), color-stop(50%, rgba(165,204,11,1)), color-stop(58%, rgba(165,204,11,1)), color-stop(75%, rgba(124,172,13,1)), color-stop(100%, rgba(101,142,14,1)));
	background: -webkit-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(165,204,11,1) 50%, rgba(165,204,11,1) 58%, rgba(124,172,13,1) 75%, rgba(101,142,14,1) 100%);
	background: -o-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(165,204,11,1) 50%, rgba(165,204,11,1) 58%, rgba(124,172,13,1) 75%, rgba(101,142,14,1) 100%);
	background: -ms-linear-gradient(top, rgba(184,235,15,1) 0%, rgba(165,204,11,1) 50%, rgba(165,204,11,1) 58%, rgba(124,172,13,1) 75%, rgba(101,142,14,1) 100%);
	background: linear-gradient(to bottom, rgba(184,235,15,1) 0%, rgba(165,204,11,1) 50%, rgba(165,204,11,1) 58%, rgba(124,172,13,1) 75%, rgba(101,142,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8eb0f', endColorstr='#658e0e', GradientType=0 );
	z-index: 3;
}
.btn.btn-green span.btn_content.with_icon > .btn_icon::after,
.btn.btn-green span.btn_content.with_icon > .btn_icon::before {
	position: absolute;
	height: 100%;
	opacity: 0.8;
	content: "";
	width: 1px;
	top: 0;
}
.btn.btn-green span.btn_content.with_icon > .btn_icon::after {
	background: rgba(178,226,6,1);
	background: -moz-linear-gradient(top, rgba(178,226,6,1) 0%, rgba(79,113,12,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(178,226,6,1)), color-stop(100%, rgba(79,113,12,1)));
	background: -webkit-linear-gradient(top, rgba(178,226,6,1) 0%, rgba(79,113,12,1) 100%);
	background: -o-linear-gradient(top, rgba(178,226,6,1) 0%, rgba(79,113,12,1) 100%);
	background: -ms-linear-gradient(top, rgba(178,226,6,1) 0%, rgba(79,113,12,1) 100%);
	background: linear-gradient(to bottom, rgba(178,226,6,1) 0%, rgba(79,113,12,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b2e206', endColorstr='#4f710c', GradientType=0 );
	left: 0;
}
.btn.btn-green span.btn_content.with_icon > .btn_icon::before {
	background: rgba(189,235,23,1);
	background: -moz-linear-gradient(top, rgba(189,235,23,1) 0%, rgba(131,176,9,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(189,235,23,1)), color-stop(100%, rgba(131,176,9,1)));
	background: -webkit-linear-gradient(top, rgba(189,235,23,1) 0%, rgba(131,176,9,1) 100%);
	background: -o-linear-gradient(top, rgba(189,235,23,1) 0%, rgba(131,176,9,1) 100%);
	background: -ms-linear-gradient(top, rgba(189,235,23,1) 0%, rgba(131,176,9,1) 100%);
	background: linear-gradient(to bottom, rgba(189,235,23,1) 0%, rgba(131,176,9,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdeb17', endColorstr='#83b009', GradientType=0 );
	left: 2px;
}
/* ------------------------------ orange button */
.btn.btn-orange {
	background: rgba(255,179,1,1);
	background: -moz-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,179,1,1)), color-stop(75%, rgba(255,179,1,1)), color-stop(100%, rgba(255,128,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb301', endColorstr='#ff8000', GradientType=0 );
	border: 2px solid transparent;
	border-bottom-color: #c18b78;
	border-right-color: #e7b89f;
	border-left-color: #e7b89f;
	border-top-color: #d6b09a;
	border-radius: 10px;
}
.btn.btn-orange::after {
	background: rgba(255,179,1,1);
	background: -moz-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,179,1,1)), color-stop(100%, rgba(255,128,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb301', endColorstr='#ff8000', GradientType=0 );
}
.btn.btn-orange span.btn_content.with_icon > .btn_icon::after,
.btn.btn-orange span.btn_content.with_icon > .btn_icon::before {
	position: absolute;
	height: 100%;
	content: "";
	width: 1px;
	top: 0;
}
.btn.btn-orange span.btn_content.with_icon > .btn_icon::after {
	background: rgba(255,175,1,1);
	background: -moz-linear-gradient(top, rgba(255,175,1,1) 0%, rgba(255,115,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,175,1,1)), color-stop(100%, rgba(255,115,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,175,1,1) 0%, rgba(255,115,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,175,1,1) 0%, rgba(255,115,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,175,1,1) 0%, rgba(255,115,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,175,1,1) 0%, rgba(255,115,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffaf01', endColorstr='#ff7300', GradientType=0 );
	left: 0;
}
.btn.btn-orange span.btn_content.with_icon > .btn_icon::before {
	background: rgba(255,187,1,1);
	background: -moz-linear-gradient(top, rgba(255,187,1,1) 0%, rgba(255,136,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,187,1,1)), color-stop(100%, rgba(255,136,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,187,1,1) 0%, rgba(255,136,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,187,1,1) 0%, rgba(255,136,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,187,1,1) 0%, rgba(255,136,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,187,1,1) 0%, rgba(255,136,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffbb01', endColorstr='#ff8800', GradientType=0 );
	left: 2px;
}
/* ------------------------------ marsh button */
.btn.btn-marsh {
	background: rgba(175,222,94,1);
	background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(110,145,40,1) 75%, rgba(110,145,40,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(75%, rgba(110,145,40,1)), color-stop(100%, rgba(110,145,40,1)));
	background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(110,145,40,1) 75%, rgba(110,145,40,1) 100%);
	background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(110,145,40,1) 75%, rgba(110,145,40,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(110,145,40,1) 75%, rgba(110,145,40,1) 100%);
	background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(110,145,40,1) 75%, rgba(110,145,40,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#6e9128', GradientType=0 );
	border-radius: 4px;
	color: #f0f0f0;
	border: 0;
}
.btn.btn-marsh::after {
	background: rgba(175,222,94,1);
	background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(100%, rgba(133,174,56,1)));
	background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#85ae38', GradientType=0 );
	border-radius: 4px;
}
.btn.btn-marsh span.btn_content {
	padding: 7px 15px;
	font-size: 14px;
}
.btn.btn-marsh span.btn_content.btn_big {
	position: relative;
	padding: 14px 20px;
	line-height: 30px;
	font-size: 27px;
	display: block;
	width: 100%;
	z-index: 4;
}
.btn.btn-marsh span.btn_content.with_icon > .btn_icon::after,
.btn.btn-marsh span.btn_content.with_icon > .btn_icon::before {
	position: absolute;
	height: 100%;
	opacity: 0.8;
	content: "";
	width: 1px;
	top: 0;
}
.btn.btn-marsh span.btn_content.with_icon > .btn_icon::after {
	background: rgba(168,219,86,1);
	background: -moz-linear-gradient(top, rgba(168,219,86,1) 0%, rgba(121,168,51,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(168,219,86,1)), color-stop(100%, rgba(121,168,51,1)));
	background: -webkit-linear-gradient(top, rgba(168,219,86,1) 0%, rgba(121,168,51,1) 100%);
	background: -o-linear-gradient(top, rgba(168,219,86,1) 0%, rgba(121,168,51,1) 100%);
	background: -ms-linear-gradient(top, rgba(168,219,86,1) 0%, rgba(121,168,51,1) 100%);
	background: linear-gradient(to bottom, rgba(168,219,86,1) 0%, rgba(121,168,51,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a8db56', endColorstr='#79a833', GradientType=0 );
	left: 0;
}
.btn.btn-marsh span.btn_content.with_icon > .btn_icon::before {
	background: rgba(182,225,102,1);
	background: -moz-linear-gradient(top, rgba(182,225,102,1) 0%, rgba(144,182,61,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(182,225,102,1)), color-stop(100%, rgba(144,182,61,1)));
	background: -webkit-linear-gradient(top, rgba(182,225,102,1) 0%, rgba(144,182,61,1) 100%);
	background: -o-linear-gradient(top, rgba(182,225,102,1) 0%, rgba(144,182,61,1) 100%);
	background: -ms-linear-gradient(top, rgba(182,225,102,1) 0%, rgba(144,182,61,1) 100%);
	background: linear-gradient(to bottom, rgba(182,225,102,1) 0%, rgba(144,182,61,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6e166', endColorstr='#90b63d', GradientType=0 );
	left: 2px;
}
.btn-marsh.disabled,
.btn-marsh.disabled::after {
	background: rgba(234,232,232,1);
	background: -moz-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(234,232,232,1)), color-stop(100%, rgba(150,150,150,1)));
	background: -webkit-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -o-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -ms-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: linear-gradient(to bottom, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae8e8', endColorstr='#969696', GradientType=0 );
	color: #fff;
}

/* ------------------------------ orange smaller button */
.btn.btn-orange-smaller {
	background: rgba(255,179,1,1);
	background: -moz-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,179,1,1)), color-stop(75%, rgba(255,179,1,1)), color-stop(100%, rgba(255,128,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,179,1,1) 0%, rgba(255,179,1,1) 75%, rgba(255,128,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb301', endColorstr='#ff8000', GradientType=0 );
	border-radius: 4px;
	color: #f0f0f0;
	border: 0;
}
.btn.btn-orange-smaller::after {
	background: rgba(255,179,1,1);
	background: -moz-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,179,1,1)), color-stop(100%, rgba(255,128,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,179,1,1) 0%, rgba(255,128,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb301', endColorstr='#ff8000', GradientType=0 );
	border-radius: 4px;
	border: 0;
}
.btn.btn-orange-smaller span.btn_content {
	padding: 7px 15px;
	font-size: 14px;
}
.btn.btn-orange-smaller span.btn_content.btn_big {
	position: relative;
	padding: 14px 20px;
	line-height: 30px;
	font-size: 27px;
	display: block;
	width: 100%;
	z-index: 4;
}
/* ------------------------------ silver button */
.btn.btn-silver {
	background: rgba(234,232,232,1);
	background: -moz-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 50%, rgba(150,150,150,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(234,232,232,1)), color-stop(50%, rgba(150,150,150,1)), color-stop(100%, rgba(150,150,150,1)));
	background: -webkit-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 50%, rgba(150,150,150,1) 100%);
	background: -o-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 50%, rgba(150,150,150,1) 100%);
	background: -ms-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 50%, rgba(150,150,150,1) 100%);
	background: linear-gradient(to bottom, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 50%, rgba(150,150,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae8e8', endColorstr='#969696', GradientType=0 );
	border-radius: 4px;
	color: #fff;
	border: 0;
}
.btn.btn-silver::after {
	background: rgba(234,232,232,1);
	background: -moz-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(234,232,232,1)), color-stop(100%, rgba(150,150,150,1)));
	background: -webkit-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -o-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -ms-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: linear-gradient(to bottom, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae8e8', endColorstr='#969696', GradientType=0 );
	border-radius: 4px;
	color: #fff;
}
.btn.btn-silver span.btn_content {
	font-size: 14px;
	padding: 10px;
}
/* BUTTONS END */

/* FORMS */
.form-group {
	margin-bottom: 25px;
	position: relative;
}
.form-control {
	background-color: #f0f0f0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-color: #f0f0f0;
	padding: 6.5px 15px;
	line-height: 20px;
	border-radius: 0;
	height: 35px;
}
.form-control:focus {
  border-color: #f0f0f0;
  outline: 0;
  -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
textarea.form-control {
	resize: none;
	height: 92px;
}
/* -------------------- */
.form-control::-moz-placeholder {
	color: #747474;
}
.form-control:-ms-input-placeholder {
	color: #747474;
}
.form-control::-webkit-input-placeholder {
	color: #747474;
}
/* -------------------- */
.radio {
	position: relative;
	display: block;
	z-index: 5;
	margin: 0;
}
.radio+.radio {
  margin-top: 0;
}
.radio > input[type="radio"] {
	position: absolute;
	cursor: pointer;
	height: 100%;
	width: 100%;
	z-index: 50;
	opacity: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.radio > input[type="radio"] + label {
	background: url(../img/radio.png) left center no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
	padding-left: 20px;
	line-height: 18px;
	min-height: 15px;
	text-align: left;
	font-size: 14px;
}
.radio.disabled > input[type="radio"] + label {
	background: url(../img/radio_disabled.png) left center no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
	padding-left: 20px;
	line-height: 18px;
	min-height: 15px;
	text-align: left;
	font-size: 14px;
}
.radio > input[type="radio"]:checked + label {
	background: url(../img/radio-checked.png) left center no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
}
/* FORMS END */





/* HEADER */
#header {
	background-color: #333945;
	position: relative;
	padding: 6px 0;
	z-index: 12;
	color: #fff;
}
/* -------------------- */
.lang {
	padding: 3px 0;
	float: left;
}
.lang_label {
	text-transform: uppercase;
	padding: 0 5px 0 0;
	line-height: 22px;
	font-size: 14px;
	height: 22px;
	float: left;
}
.lang_select {
	position: relative;
	float: right;
}
.lang_arrow {
	border-left: 1px solid #4d5563;
	position: absolute;
	padding: 6px 4px;
	height: 20px;
	width: 21px;
	right: 1px;
	top: 1px;
}
.lang_select .btn {
	background-color: transparent;
	border: 1px solid #4d5563;
	padding: 0 21px 0 28px;
	border-radius: 5px;
	position: relative;
	width: 83px;
	z-index: 5;
}
.flag_icon {
	position: absolute;
	height: 100%;
	width: 24px;
	left: 4px;
	top: 0;
}
.flag_icon img {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
}
.lang_select .lang_name {
	text-transform: uppercase;
	line-height: 20px;
	font-size: 12px;
}
.lang_select .dropdown-menu {
	-webkit-box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	-moz-box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	background-color: #333945;
	border-radius: 10px;
	padding: 8px 0 3px;
	overflow: hidden;
	min-width: 83px;
	border: 0;
	margin: 0;
}
.lang_select .dropdown-menu > li {
	position: relative;
	margin-bottom: 5px;
	z-index: 3;
}
.lang_select .dropdown-menu > li > a {
	color: #fff;
	padding: 0;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
	background-color: #4d5563;
	color: #fff;
}
.lang_select .flip {
	text-transform: uppercase;
	padding: 0 21px 0 28px;
	position: relative;
	text-align: center;
	max-width: 83px;
	display: block;
	z-index: 5;
}
/* -------------------- */
.head_contacts {
	margin-right: -15px;
	margin-bottom: -5px;
	float: right;
}
.head_contacts li {
	display: inline-block;
	position:relative;
}
.head_contacts #soc_tg_dd_wrap {
	position:absolute;
	left:50%;
	top:0;
	padding-top:30px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index:999;
	display:none;
}

@media (max-width: 797px) {
	.head_contacts #soc_tg_dd_wrap {
		right:0;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0);
		left:auto;
	}
	
	.head_contacts #soc_tg_dd_wrap a.dd_item {
		font-size:13px;
	}
}

@media (max-width: 539px) {
	.head_contacts #soc_tg_dd_wrap {
		right:0;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0);
		left:auto;
		top:30px;
		padding-top:0;
	}
	
	.head_contacts #soc_tg_dd_wrap a.dd_item {
		font-size:12px;
	}
}

.head_contacts #soc_tg_dd {
	display:block;
	position:relative;
	padding:10px 0;
	width:auto;
	min-width:100px;
	left:0;
	bottom:0;
	background-color:#333945;
}
.soc_dd_item:hover #soc_tg_dd_wrap {
	display:block;
}
.head_contacts li a.round_icon {
	border-radius: 50%;
	margin-right: 5px;
	overflow: hidden;
	display: block;
	height: 28px;
	width: 28px;
	float: left;
}
.head_contacts li a.dd_item {
	display:block;
	white-space:nowrap;
	padding:3px 10px;
	color:#fff;
	text-transform:uppercase;
}
.head_contacts li:last-child a.round_icon {
	margin-right: 0;
}
.head_contacts li:hover a.round_icon {
	background-color: #f77620;
}
/* -------------------- */
.head_info_list {
	margin: 0 -15px -5px 0;
	float: right;
}
.head_info_list li {
	display: inline-block;
	margin-right: 10px;
	position: relative;
	line-height: 14px;
	text-align: left;
	font-size: 12px;
	height: 28px;
}
.head_info_list li:last-child {
	margin-right: 0;
}
.head_info_list li .head_icon {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
}
.head_info_list li:nth-child(1),
.head_info_list li:nth-child(3) {
	padding-left: 28px;
}
.head_info_list li:nth-child(2),
.head_info_list li:nth-child(4) {
	padding-left: 31px;
}
.head_info_list li:nth-child(1) .head_icon,
.head_info_list li:nth-child(3) .head_icon {
	width: 23px;
}
.head_info_list li:nth-child(2) .head_icon,
.head_info_list li:nth-child(4) .head_icon {
	width: 26px;
}
.head_info_list li .head_icon img {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: relative;
	top: 50%;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.head_label {
		display: block;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.head_contacts {
		margin-right: 0;
	}
	.head_info_list {
		margin: 0 -15px;
		float: right;
	}
	.head_info_list li {
		font-size: 10px;
	}
	.head_label {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	#header {
		text-align: center;
	}
	.head_contacts {
		margin-bottom: 5px;
		margin-right: 0;
	}
	.head_info_list {
		margin: 0 auto -5px;
	}
	.head_label {
		display: block;
	}
}
@media screen and (max-width: 539px) {
	.head_info_list {
		display: inline-block;
		float: none;
	}
}
@media screen and (max-width: 390px) {
	.lang_label > span:first-child {
		display: none;
	}
	.head_info_list li {
		margin-right: 0;
		min-width: 135px;
	}
}
/* HEADER END */





/* NAVBAR */
.navbar-default {
	background-color: transparent;
	margin-bottom: -60px;
	position: relative;
	border-radius: 0px;
	min-height: 50px;
	border: 0px;
	z-index: 10;
}
/* -------------------- */
#home_navigation {
	padding: 9px 250px 9px 0;
	position: relative;
}
#home_navigation.nav_open {
	background-color: #fff;
}
/* -------------------- */
#menu_btn {
	position: absolute;
	z-index: 5;
	top: 9px;
	right: 0;
}
#login_window {
	min-height: 350px;
	display: none;
	width: 350px;
	top: 51px;
	right: 0;
}
/* -------------------- */
.home_window {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	padding: 25px 10px 20px;
	background-color: #fff;
	position: absolute;
	border-radius: 5px;
}
.home_window_name {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 0 auto 20px;
	text-align: center;
	line-height: 20px;
	font-size: 18px;
	color: #333945;
}
/* -------------------- */
.home_window .form-group {
	margin: 0 auto 10px;
	position: relative;
	max-width: 265px;
}
.home_window .form-group .input_icon {
	position: absolute;
	height: 100%;
	width: 30px;
	z-index: 3;
	left: 0;
	top: 0;
}
.home_window .form-group .input_icon img {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	height: 14px;
	width: auto;
	left: 50%;
	top: 50%;
}
#login_window.home_window .form-group .form-control {
	padding: 7px 15px 7px 35px;
}
.password_restore {
	margin: 0 auto 30px;
	position: relative;
	text-align: right;
	line-height: 14px;
	max-width: 265px;
	padding: 0 20px;
}
.password_restore a {
	line-height: 14px;
	font-size: 12px;
	color: #747474;
}
.password_restore a:hover {
	text-decoration: underline;
	color: #f06a11;
}
.password_restore img {
	position: absolute;
	height: 14px;
	width: 14px;
	right: 0;
	top: 0;
}
/* -------------------- */
.small_capcha {
	margin: 0 auto 20px;
	max-width: 265px;
}
.small_capcha .capcha_img,
.small_capcha .form-control {
	font-family: "OpenSansBold";
	border: 1px solid #95d254;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-color: #fff;
	text-align: center;
	border-radius: 2px;
	line-height: 17px;
	font-size: 10px;
	padding: 3px 0;
	color: #747474;
	height: 25px;
	width: 58px;
	float: left;
}
.small_capcha label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 5px 5px 5px 0;
	line-height: 15px;
	margin-bottom: 0;
	font-size: 10px;
	float: left;
}
.small_capcha .capcha_box {
	float: left;
}
.small_capcha .capcha_enter_box {
	float: right;
}
/* -------------------- */
.big_capcha {
	margin: 0 auto 20px;
	max-width: 370px;
}
.big_capcha .capcha_img,
.big_capcha .form-control {
	font-family: "OpenSansBold";
	border: 1px solid #95d254;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-color: #fff;
	text-align: center;
	border-radius: 2px;
	line-height: 17px;
	font-size: 14px;
	padding: 8px 0;
	color: #747474;
	height: 35px;
	width: 75px;
	float: left;
}
.big_capcha label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 10px 5px 10px 0;
	line-height: 15px;
	font-size: 14px;
	float: left;
}
.big_capcha .capcha_box {
	float: left;
}
.big_capcha .capcha_enter_box {
	float: right;
}
/* -------------------- */
.login_window_btn {
	max-width: 210px;
	margin: 0 auto;
}
.login_window_btn .btn {
	width: 100%;
}
.btn_label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #747474;
}
/* -------------------- */
.navbar-default .nav-pills {
	text-align: center;
}
.nav > li > a:focus, 
.nav > li > a:hover {
	background-color: transparent;
}
.navbar-collapse {
	padding: 0;
}
.navbar-default .nav-pills > li > .dropdown {
	display: inline-block;
}
.navbar-default .nav-pills > li > .dropdown:hover .dropdown-menu {
	display: block;
}
.navbar > .container .navbar-brand {
	background: url(../img/nav-logo.svg) center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin: 6px 15px 0;
	width: 122px;
	height: 36px;
	padding: 0;
}
#main_home .navbar > .container .navbar-brand {
	display: none;
}
/* -------------------- */
a.btn.nav_link,
button.btn.nav_link {
	background-color: transparent;
	text-transform: uppercase;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	display: inline-block;
	position: relative;
	padding: 11px 15px;
	line-height: 20px;
	font-size: 15px;
	color: #333945;
	border: 0;
}
a.btn.nav_link:hover,
button.btn.nav_link:hover {
	background-color: transparent;
}
a.btn.nav_link::after,
button.btn.nav_link::after {
	background-color: #333945;
	position: absolute;
	margin-top: -7px;
	height: 4px;
	content: "";
	right: 15px;
	left: 15px;
	top: 100%;
}
a.btn.nav_link:hover::after,
button.btn.nav_link:hover::after {
	background-color: #9ccb4b;
	opacity: 1;
}
a.btn.nav_link:focus::after,
button.btn.nav_link:focus::after {
	opacity: 1;
}
/* -------------------- */
#nav_gen .dropdown-menu {
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(115,112,112,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(115,112,112,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(115,112,112,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(115,112,112,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(115,112,112,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(115,112,112,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#737070', GradientType=0 );
	-webkit-box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	-moz-box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	box-shadow: 0px 2px 3.76px 0.24px rgba(0, 0, 0, 0.44);
	padding: 8px 1px 3px;
	border-radius: 10px;
	overflow: hidden;
	min-width: 215px;
	border: 0;
	margin: 0;
}
#nav_gen .dropdown-menu::after {
	background-color: #dadada;
	border-radius: 9px;
	position: absolute;
	content: "";
	bottom: 1px;
	right: 1px;
	left: 1px;
	top: 1px;
}
#nav_gen .dropdown-menu > li {
	position: relative;
	margin-bottom: 5px;
	z-index: 3;
}
#nav_gen .dropdown-menu > li > a {
	-webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0);
	-moz-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0);
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0);
	position: relative;
	line-height: 20px;
	padding: 5px 15px;
	font-size: 15px;
	color: #3b3b3b;
}
#nav_gen .dropdown-menu > li > a > span {
	position: relative;
	z-index: 5;
}
#nav_gen .dropdown-menu > li > a:hover {
	font-family: "OpenSansSemiBold";
	color: #f06a11;
}
#nav_gen .dropdown-menu > li > a::after {
	background: rgba(241,241,241,1);
	background: -moz-linear-gradient(top, rgba(241,241,241,1) 0%, rgba(176,176,176,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(241,241,241,1)), color-stop(100%, rgba(176,176,176,1)));
	background: -webkit-linear-gradient(top, rgba(241,241,241,1) 0%, rgba(176,176,176,1) 100%);
	background: -o-linear-gradient(top, rgba(241,241,241,1) 0%, rgba(176,176,176,1) 100%);
	background: -ms-linear-gradient(top, rgba(241,241,241,1) 0%, rgba(176,176,176,1) 100%);
	background: linear-gradient(to bottom, rgba(241,241,241,1) 0%, rgba(176,176,176,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#b0b0b0', GradientType=0 );
	-webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.4);
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
}
#nav_gen .dropdown-menu > li > a:hover::after {
	opacity: 1;
}
/* -------------------- */
.navbar-toggle {
	border: 2px solid transparent;
	padding: 12px;
	margin-right: 15px;
	margin-bottom: 0;
	margin-top: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
	#home_navigation {
		padding: 9px 220px 9px 0;
	}
	a.btn.nav_link, 
	button.btn.nav_link {
		padding: 11px 10px;
		font-size: 13px;
	}
	a.btn.nav_link::after,
	button.btn.nav_link::after {
		right: 10px;
		left: 10px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#home_navigation {
		padding: 9px 180px 9px 0;
	}
	.navbar > .container .navbar-brand {
		width: 100px;
	}
	a.btn.nav_link, 
	button.btn.nav_link {
		padding: 11px 5px;
		font-size: 11px;
	}
	a.btn.nav_link::after,
	button.btn.nav_link::after {
		height: 3px;
		right: 5px;
		left: 5px;
	}
	#menu_btn .btn span.btn_content {
		font-size: 14px;
	}
	#menu_btn .btn span.btn_content.with_icon {
		padding: 9px 60px 9px 10px;
	}
}
@media screen and (max-width: 767px) {
	#home_navigation {
		padding: 9px 0;
	}
	#menu_btn {
		right: 80px;
	}
	.navbar-default .nav-pills {
		text-align: right;
	}
	.navbar-collapse {
		background-color: #fff;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		position: absolute;
		overflow: hidden;
		border-top: 0;
		width: 100%;
	}
	#nav_gen {
		padding: 15px 0;
	}
	#nav_gen .dropdown .dropdown-menu {
		position: relative;
		margin-right: 15px;
		float: none;
	}
}
@media screen and (max-width: 450px) {
	.navbar > .container .navbar-brand {
		width: 110px;
	}
	#menu_btn .btn span.btn_content {
		font-size: 14px;
	}
	#menu_btn .btn span.btn_content.with_icon {
		padding: 9px 60px 9px 10px;
	}
	#login_window {
		width: 300px;
	}
}
@media screen and (max-width: 390px) {
	.navbar-brand {
		display: none;
	}
	#menu_btn {
		right: auto;
		left: 15px;
	}
	#login_window {
		width: 280px;
		right: auto;
		left: 0;
	}
}
/* NAVBAR END */





/* FOOTER */
@media screen and (min-width: 1200px) {
	#footer {
		position: absolute;
		height: 540px;
		width: 100%;
		bottom: 0;
		left: 0;
	}
	#footer_box {
		position: relative;
		height: 540px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#footer {
		position: absolute;
		height: 540px;
		width: 100%;
		bottom: 0;
		left: 0;
	}
	#footer_box {
		position: relative;
		height: 540px;
	}
}
/* ------------------------------ footer top */
#footer_top {
	background: url(../img/bg/footer-top-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 35px 0;
}
#footer_top::after {
	background-color: #eff0f0;
	position: absolute;
	opacity: 0.87;
	content: "";
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.security_logos {
	background-color: #fff;
	padding: 15px 0 10px;
	margin-bottom: 35px;
	text-align: center;
}
.security_logos li {
	display: inline-block;
	padding: 7px 10px;
	vertical-align:middle;
}
.security_logos li img {
	float: left;
}
/* -------------------- */
.payments_logos {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.payments_logos li {
	display: inline-block;
	padding: 0 20px 15px;
}
.payments_logos li img {
	float: left;
}
/* ------------------------------ footer bottom */
#footer_bottom {
	background: url(../img/bg/footer-bottom-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	text-align: center;
	position: relative;
	padding: 25px 0;
	color: #fff;
}
#footer_bottom::after {
	background-color: #333945;
	position: absolute;
	opacity: 0.78;
	content: "";
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.footer_content {
	display: inline-block;
}
/* -------------------- */
.footer_logo {
	display: inline-block;
	padding: 5px 55px 5px 0;
}
.footer_logo > .logo {
	width: 106px;
	float: left;
}
/* -------------------- */
.footer_box {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 35px;
}
.footer_box::after {
	background: rgba(248,80,50,0);
	background: -moz-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(205,216,238,1) 50%, rgba(231,56,39,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,80,50,0)), color-stop(50%, rgba(205,216,238,1)), color-stop(100%, rgba(231,56,39,0)));
	background: -webkit-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(205,216,238,1) 50%, rgba(231,56,39,0) 100%);
	background: -o-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(205,216,238,1) 50%, rgba(231,56,39,0) 100%);
	background: -ms-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(205,216,238,1) 50%, rgba(231,56,39,0) 100%);
	background: linear-gradient(to bottom, rgba(248,80,50,0) 0%, rgba(205,216,238,1) 50%, rgba(231,56,39,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#e73827', GradientType=0 );
	position: absolute;
	height: 78px;
	content: "";
	z-index: 1;
	width: 1px;
	top: 35px;
	left: 0;
}
.footer_box > ul {
	margin-bottom: 0;
	text-align: left;
	float: left;
}
.footer_box > ul > li:first-child {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding-bottom: 10px;
	font-size: 17px;
	line-height: 1;
}
.footer_box > ul > li {
	line-height: 1;
}
/* -------------------- */
.footer_info_box {
	padding: 5px 0 5px 35px;
	margin-bottom: 10px;
	position: relative;
	line-height: 13px;
	max-width: 180px;
	font-size: 11px;
}
.footer_info_box > .footer_icon {
	position: absolute;
	top: 5px;
	left: 0;
}
.footer_box > ul > li:last-child .footer_info_box {
	margin-bottom: 0;
}
/* -------------------- */
.footer_box > ul > li a {
	line-height: 17px;
	font-size: 14px;
	color: #fff;
}
.footer_box > ul > li a:hover {
	text-decoration: none;
	color: #8db54d;
}
/* -------------------- */
p.footer_benefits_text {
	line-height: 17px;
	margin-bottom: 0;
	font-size: 14px;
}
.footer_benefits_box {
	position: relative;
}
.footer_benefits_box > span.pretext {
	text-transform: uppercase;
	display: inline-block;
	max-width: 20px;
	font-size: 11px;
	line-height: 1;
	color: #fff;
}
.footer_benefits_box > span.percents {
	font-family: 'aa_bebas_neueregular';
	font-size: 60px;
	line-height: 1;
	color: #9ccb4b;
}
/* ------------------------------ copyright */
#copyright {
	background-color: #333945;
	text-align: center;
	padding: 17px 15px;
	color: #ebebeb;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.footer_logo {
		padding: 5px 40px 5px 0;
	}
	.footer_box {
		padding: 0 25px;
	}
}
@media screen and (max-width: 991px) {
	.footer_logo {
		margin-bottom: 25px;
		display: block;
		padding: 0;
	}
	.footer_logo > .logo {
		display: inline-block;
		float: none;
	}
	p.footer_benefits_text,
	.footer_box > ul > li a {
		font-size: 12px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.footer_box {
		padding: 0 20px;
	}
	.footer_box:nth-child(2)::after {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.footer_box::after {
		display: none;
	}
}
@media (min-width: 600px) and (max-width: 767px) {
	.footer_box {
		padding: 0 0 0 25px;
	}
	.footer_box:nth-child(2) {
		padding: 0;
	}
}
@media screen and (max-width: 599px) {
	.footer_box {
		margin-bottom: 20px;
		display: block;
	}
	.footer_box:nth-child(5) {
		margin-bottom: 0;
	}
	.footer_box > ul {
		text-align: center;
		float: none;
	}
	.footer_box > ul > li:first-child {
		font-family: "OpenSansBold";
		text-transform: uppercase;
		padding-bottom: 5px;
		font-size: 17px;
		line-height: 1;
	}
	#copyright {
		font-size: 12px;
	}
}
/* FOOTER END */





/* HOME PAGE */
#promo {
	background: url(../img/bg/promo-bg.png) center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 60px;
	z-index: 5;
}
/* ------------------------------ promo bg */
#promo_bg {
	position: absolute;
	overflow: hidden;
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
#shell {
	margin-left: -585px;
	position: absolute;
	width: 1170px;
	z-index: 4;
	bottom: 0;
	left: 50%;
	top: 0;
}
#shell2 {
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.shell_box {
	position: absolute;
	height: 110%;
	width: 100%;
	z-index: 1;
}
.shell_box > img {
	position: absolute;
}
/* -------------------- */
#plax-sphere-1 {
	margin-left: -690px;
	width: 1380px;
	z-index: 30;
	bottom: 20px;
	left: 50%;
}
#plax-sphere-2 {
	bottom: 55px;
	width: 110%;
	z-index: 20;
	left: -20px;
}
#plax-sphere-9 {
	left: -30px;
	top: -80px;
	z-index: 1;
}
#plax-sphere-3 {
	margin-left: 330px;
	width: 330px;
	top: 40px;
	left: 50%;
}
#plax-sphere-4 {
	margin-left: 105px;
	width: 255px;
	top: 65px;
	left: 50%;
}
#plax-sphere-5 {
	margin-right: 405px;
	width: 255px;
	right: 50%;
	top: 75px;
}
#plax-sphere-6 {
	margin-right: 150px;
	width: 255px;
	right: 50%;
	top: 45px;
}
#plax-sphere-7 {
	margin-right: 255px;
	width: 285px;
	bottom: -20px;
	right: 50%;
}
#plax-sphere-8 {
	margin-left: 135px;
	width: 490px;
	bottom: -20px;
	left: 50%;
}

@media screen and (min-width: 1600px) {
	#plax-sphere-9 {
		min-height: 110%;
		width: 110%;
	}
}
@media screen and (max-width: 1599px) {
	#plax-sphere-9 {
		height: 110%;
		min-width: 110%;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#shell {
		margin-left: -480px;
		width: 960px;
		left: 50%;
	}
	#plax-sphere-1 {
		margin-left: 0;
		width: 100%;
		left: 0;
	}
	#plax-sphere-2 {
		bottom: 55px;
		width: 100%;
		left: 0;
	}
	#plax-sphere-3 {
		margin-left: 300px;
		width: 250px;
		top: 40px;
	}
	#plax-sphere-4 {
		margin-left: 75px;
		width: 205px;
		top: 65px;
	}
	#plax-sphere-5 {
		margin-right: 375px;
		width: 205px;
		top: 75px;
	}
	#plax-sphere-6 {
		margin-right: 120px;
		width: 205px;
		top: 45px;
	}
	#plax-sphere-7 {
		margin-right: 255px;
		width: 240px;
	}
	#plax-sphere-8 {
		margin-left: 135px;
		width: 430px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#shell {
		margin-left: -375px;
		width: 750px;
		left: 50%;
	}
	#plax-sphere-1 {
		margin-left: 0;
		width: 100%;
		left: 0;
	}
	#plax-sphere-2 {
		bottom: 55px;
		width: 100%;
		left: 0;
	}
	#plax-sphere-3 {
		margin-left: 260px;
		width: 220px;
		top: 40px;
	}
	#plax-sphere-4 {
		margin-left: 75px;
		width: 175px;
		top: 65px;
	}
	#plax-sphere-5 {
		margin-right: 245px;
		width: 175px;
		top: 75px;
	}
	#plax-sphere-6 {
		margin-right: 100px;
		width: 175px;
		top: 45px;
	}
	#plax-sphere-7 {
		margin-right: 180px;
		width: 225px;
	}
	#plax-sphere-8 {
		margin-left: 120px;
		width: 370px;
	}
}
@media screen and (max-width: 767px) {
	#promo_bg {
		display: none;
	}
}
/* ------------------------------ promo content */
#promo_content {
	position: relative;
	z-index: 6;
}
.promo_text {
	padding: 35px 0 100px;
	position: relative;
	text-align: center;
}
.promo_logo {
	margin: 0 auto 25px;
	max-width: 193px;
}
#promo_sld {
	margin: 0 auto 30px;
	max-width: 450px;
}
#promo_sld h1,
#promo_sld h2 {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	line-height: 55px;
	font-size: 46px;
	margin: 0 auto;
}
/* -------------------- */
#reg_window {
/*	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);*/
	min-height: 540px;
	display: none;
	width: 670px;
	z-index: 10;
	left: 0;
	right:0;
	top: 0;
	z-index:999;
}
.reg_category {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 10px auto 40px;
	position: relative;
	padding-left: 55px;
	line-height: 20px;
	text-align: left;
	max-width: 265px;
	font-size: 17px;
	color: #333945;
	height: 40px;
}
.reg_category img {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	height: 33px;
	width: auto;
	top: 50%;
	left: 0;
}
.reg_checkbox {
	display: inline-block;
	margin: 5px auto 15px;
	position: relative;
	line-height: 18px;
}
.reg_checkbox input[type="checkbox"] {
	position: absolute;
	min-height: 18px;
	cursor: pointer;
	height: 100%;
	width: 100%;
	z-index: 50;
	opacity: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.reg_checkbox input[type="checkbox"] + label {
	background: url(../img/checkbox.png) left center no-repeat;
	padding: 0 0 0 26px;
	line-height: 18px;
	text-align: left;
	font-size: 13px;
	display: block;
	color: #333945;
	width: 100%;
}
.reg_checkbox input[type="checkbox"]:checked + label {
	background: url(../img/checkbox-checked.png) left center no-repeat;
}

@media (min-width: 768px) and (max-width: 991px) {
	.promo_text {
		padding: 35px 0 70px;
	}
	.promo_logo {
		max-width: 160px;
	}
	#promo_sld h1,
	#promo_sld h2 {
		line-height: 40px;
		font-size: 34px;
	}
}
@media screen and (max-width: 767px) {
	.promo_text {
		padding: 35px 0 70px;
	}
	#reg_window {
		width: 370px;
	}
	#right_inputs {
		margin-top: 30px;
	}
	.reg_category {
		margin: 10px auto 20px;
	}
	#reg_window .big_capcha {
		max-width: 265px;
	}
	#reg_window .big_capcha .capcha_box {
		float: right;
	}
}
@media screen and (max-width: 519px) {
	.promo_text {
		padding: 25px 0 50px;
	}
	.promo_logo {
		margin-bottom: 15px;
		max-width: 120px;
	}
	#promo_sld {
		margin-bottom: 20px;
	}
	#promo_sld h1,
	#promo_sld h2 {
		line-height: 30px;
		font-size: 26px;
	}
}
@media screen and (max-width: 450px) {
	#reg_window {
		width: 300px;
	}
}
@media screen and (max-width: 390px) {
	#reg_window {
		width: 280px;
	}
}
/* ------------------------------ home plans */
#home_plans {
	background: url(../img/bg/home-plans-bg.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	text-align: center;
	color: #fff;
}
#home_plans::after {
	background-color: #333945;
	position: absolute;
	opacity: 0.76;
	content: "";
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
/* -------------------- */
#home_plans h2 {
	background-color: rgba(220, 229, 231, 0.27);
	font-family: "OpenSansBold";
	text-transform: uppercase;
	position: relative;
	padding: 45px 15px;
	font-size: 33px;
	line-height: 1;
	margin: 0 auto;
	z-index: 4;
}
/* -------------------- */
.arrow-prev,
.arrow-next {
	position: absolute;
	height: 40px;
	width: 40px;
	z-index: 55;
	border: 0;
}
.arrow-prev {
	background: url(../img/arrow-prev.png) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.arrow-next {
	background: url(../img/arrow-next.png) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.plans_item {
	padding: 55px 25px 50px;
	position: relative;
	max-width: 390px;
	margin: 0 auto;
}
/* -------------------- */
.plans_name {
	position: absolute;
	z-index: 3;
	right: 5px;
	left: 5px;
	top: 15px;
}
.plans_name_icon {
	position: relative;
	padding-top: 18px;
	overflow: hidden;
	margin: 0 auto;
	height: 91px;
	width: 210px;
}
.plans_name_icon > img {
	position: relative;
	z-index: 3;
}
.plans_name_icon::after {
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 30%, rgba(228,228,228,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(30%, rgba(228,228,228,1)), color-stop(100%, rgba(228,228,228,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 30%, rgba(228,228,228,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 30%, rgba(228,228,228,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 30%, rgba(228,228,228,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(228,228,228,1) 30%, rgba(228,228,228,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e4e4e4', GradientType=0 );
	-webkit-box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	border-radius: 100px;
	position: absolute;
	height: 258px;
	content: "";
	z-index: 1;
	right: 5px;
	left: 5px;
	top: 5px;
}
.plans_name h3 {
	background: rgba(228,228,228,1);
	background: -moz-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(199,199,199,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(228,228,228,1)), color-stop(100%, rgba(199,199,199,1)));
	background: -webkit-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(199,199,199,1) 100%);
	background: -o-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(199,199,199,1) 100%);
	background: -ms-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(199,199,199,1) 100%);
	background: linear-gradient(to bottom, rgba(228,228,228,1) 0%, rgba(199,199,199,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#c7c7c7', GradientType=0 );
	-webkit-box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.35);
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 28px 15px 15px;
	font-size: 28px;
	line-height: 1;
	margin: 0 auto;
	color: #333945;
}
/* -------------------- */
.plans_content {
	border: 10px solid #fff;
	background-color: #fff;
	border-radius: 5px;
	padding-top: 60px;
}
.plans_about {
	background: rgba(141,145,152,1);
	background: -moz-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(141,145,152,1)), color-stop(100%, rgba(51,57,69,1)));
	background: -webkit-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -o-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -ms-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: linear-gradient(to bottom, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d9198', endColorstr='#333945', GradientType=0 );
	padding: 65px 10px 40px;
	border-radius: 5px;
	min-height: 350px;
}
.percent {
	font-family: "OpenSansSemiBold";
	margin: 0 auto 15px;
	line-height: 24px;
	font-size: 18px;
	color: #9ccb4b;
}
.percent > span.block {
	-webkit-text-shadow: 0px 2px 2.85px rgba(0, 0, 0, 0.6); 
	-moz-text-shadow: 0px 2px 2.85px rgba(0, 0, 0, 0.6); 
	text-shadow: 0px 2px 2.85px rgba(0, 0, 0, 0.6); 
	font-family: "OpenSansBold";
	margin: 0 auto 12px;
	position: relative;
	line-height: 70px;
	max-width: 190px;
	font-size: 60px;
}
.percent > span.block::after {
	background: rgba(141,145,152,1);
	background: -moz-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(141,145,152,1)), color-stop(100%, rgba(51,57,69,1)));
	background: -webkit-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -o-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: -ms-linear-gradient(top, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	background: linear-gradient(to bottom, rgba(141,145,152,1) 0%, rgba(51,57,69,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d9198', endColorstr='#333945', GradientType=0 );
	-webkit-box-shadow: 0px 4px 6.79px 0.21px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 4px 6.79px 0.21px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 4px 6.79px 0.21px rgba(0, 0, 0, 0.5);
	position: absolute;
	height: 3px;
	content: "";
	z-index: 1;
	top: 100%;
	right: 0;
	left: 0;
}
.percent > span.block > span {
	font-size: 40px;
}
.plans_about ul {
	display: inline-block;
	margin-bottom: 10px;
	text-align: left;
}
.plans_about ul li > span.plans_list_item {
	padding: 0 10px 0 24px;
	display: inline-block;
	position: relative;
	line-height: 24px;
	font-size: 16px;
}
.plans_about ul li > span.plans_list_item::after {
	background-color: #fff;
	position: absolute;
	border-radius: 50%;
	content: "";
	height: 9px;
	width: 9px;
	top: 5.5px;
	left: 0;
}

@media screen and (min-width: 1300px) {
	.arrow-prev {
		margin: -20px 0 0 -30px;
		top: 50%;
		left: 0;
	}
	.arrow-next {
		margin: -20px -30px 0 0;
		top: 50%;
		right: 0;
	}
}
@media screen and (max-width: 1299px) {
	#plans_sld {
		padding-bottom: 30px;
	}
	.arrow-prev {
		margin: -60px 0 0 -50px;
		top: 100%;
		left: 50%;
	}
	.arrow-next {
		margin: -60px -50px 0 0;
		top: 100%;
		right: 50%;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.plans_name h3 {
		font-size: 24px;
	}
	.percent > span.block {
		font-size: 50px;
	}
	.plans_about ul li > span.plans_list_item {
		padding: 0 10px 0 19px;
		font-size: 14px;
	}
}
@media (min-width: 660px) and (max-width: 767px) {
	.plans_name h3 {
		font-size: 24px;
	}
	.percent > span.block {
		font-size: 50px;
	}
	.plans_about ul li > span.plans_list_item {
		padding: 0 10px 0 19px;
		font-size: 14px;
	}
}
@media (min-width: 600px) and (max-width: 659px) {
	#home_plans h2 {
		padding: 35px 15px;
		font-size: 30px;
	}
	.plans_name h3 {
		font-size: 20px;
	}
	.percent > span.block {
		font-size: 40px;
	}
	.plans_about ul li > span.plans_list_item {
		padding: 0 10px 0 19px;
		font-size: 12px;
	}
	.plans_about ul li > span.plans_list_item::after {
		height: 5px;
		width: 5px;
		top: 9.5px;
	}
}
@media screen and (max-width: 370px) {
	#home_plans h2 {
		padding: 35px 15px;
		font-size: 26px;
	}
	.plans_name h3 {
		font-size: 20px;
	}
	.percent > span.block {
		font-size: 40px;
	}
	.plans_about ul li > span.plans_list_item {
		padding: 0 10px 0 19px;
		font-size: 12px;
	}
	.plans_about ul li > span.plans_list_item::after {
		height: 5px;
		width: 5px;
		top: 9.5px;
	}
}
/* ------------------------------ home about */
#home_about {
	background: url(../img/bg/home-about-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 65px 0 15px;
	position: relative;
	text-align: center;
	color: #2c2b2b;
}
/* -------------------- */
.h_about_box {
	-webkit-box-shadow: 0px 0px 20px 0px rgba(23, 34, 50, 0.3);
	-moz-box-shadow: 0px 0px 20px 0px rgba(23, 34, 50, 0.3);
	box-shadow: 0px 0px 20px 0px rgba(23, 34, 50, 0.3);
	background-color: rgba(255, 255, 255, 0.85);
	padding: 40px 45px 50px;
	margin: 0 auto 50px;
	max-width: 515px;
	height: 505px;
}
.h_about_box h2 {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 0 auto 15px;
	font-size: 27px;
	line-height: 1;
}
/* -------------------- */
.h_about_text {
	margin-bottom: 20px;
	max-height: 312px;
	text-align: left;
	overflow: hidden;
}
.h_about_text p {
	text-align: justify;
	line-height: 1.7143;
	margin-bottom: 0;
	font-size: 14px;
}
.h_about_btn {
	text-align: right;
}
/* -------------------- */
.news_preview {
	margin-bottom: 35px;
	line-height: 24px;
	text-align: left;
}
.list_news li:last-child .news_preview {
	margin-bottom: 0;
}
.news_preview h3 {
	margin: 0 auto 5px;
	line-height: 24px;
	font-size: 18px;
}
.news_preview h3 a {
	font-family: "OpenSansSemiBold";
	text-decoration: underline;
	text-transform: uppercase;
	color: #9ccb4b;
}
.news_preview h3 a:hover {
	text-decoration: none;
}
.news_preview_date {
	font-size: 12px;
}
.news_preview p {
	text-align: justify;
	margin-bottom: 0;
	overflow: hidden;
	height: 48px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.h_about_box {
		padding: 40px 35px 50px;
	}
	.news_preview h3 {
		font-size: 16px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.h_about_box {
		max-width: 595px;
	}
}
@media screen and (max-width: 767px) {
	.h_about_box {
		padding: 40px 40px 50px;
		max-width: 595px;
		height: auto;
	}
}
@media screen and (max-width: 519px) {
	.h_about_box h2 {
		font-size: 24px;
	}
	.h_about_box {
		padding: 25px 25px 30px;
		max-width: 450px;
	}
	.news_preview h3 {
		font-size: 16px;
	}
}
/* ------------------------------ home video */
#home_video {
	background: url(../img/bg/home-video-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 55px 0 10px;
	position: relative;
	text-align: center;
	color: #fff;
}
#home_video::after {
	background-color: #9ccb4b;
	position: absolute;
	opacity: 0.62;
	content: "";
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
/* -------------------- */
#home_video h2 {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	letter-spacing: -0.04em;
	margin: 0 auto 25px;
	font-size: 33px;
	line-height: 1;
}
/* -------------------- */
.general_video_box {
	margin: 0 auto 50px;
	position: relative;
	overflow: hidden;
}
.small_videos_box {
	margin: 0 auto;
}
.small_video {
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
}

@media screen and (min-width: 505px) {
	.small_video.left_video {
		float: left;
	}
	.small_video.right_video {
		float: right;
	}
}
@media screen and (min-width: 1200px) {
	.general_video_box {
		height: 295px;
		width: 525px;
	}
	.small_videos_box {
		width: 515px;
	}
	.small_video {
		height: 137.5px;
		width: 245px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#home_video h2 {
		font-size: 30px;
	}
	.general_video_box {
		height: 255px;
		width: 455px;
	}
	.small_videos_box {
		width: 455px;
	}
	.small_video {
		height: 117.5px;
		width: 215px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.general_video_box {
		width: 595px;
	}
	.small_videos_box {
		width: 595px;
	}
	.small_video {
		height: 160.5px;
		width: 285px;
	}
}
@media (min-width: 575px) and (max-width: 767px) {
	.general_video_box {
		height: 295px;
		width: 525px;
	}
	.small_videos_box {
		width: 515px;
	}
	.small_video {
		height: 137.5px;
		width: 245px;
	}
}
@media (min-width: 505px) and (max-width: 574px) {
	#home_video h2 {
		font-size: 30px;
	}
	.general_video_box {
		height: 255px;
		width: 455px;
	}
	.small_videos_box {
		width: 455px;
	}
	.small_video {
		height: 117.5px;
		width: 215px;
	}
}
@media screen and (max-width: 504px) {
	#home_video h2 {
		font-size: 26px;
	}
}
/* HOME PAGE END */





/* VIDEO PAGE */
#video_page {
	max-width: 1400px;
	margin: 0 auto;
}
.videos_text {
	padding: 0 25px 15px;
}
.video_box {
	padding: 0 25px 30px;
	margin: 0 auto;
}

@media screen and (min-width: 1200px) {
	#video_page {
		background: #fff url(../img/bg/video-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#video_page h1.page_title {
		margin-bottom: 155px;
	}
	.video_box+.video_box {
		margin-top: 60px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#video_page {
		background: #fff url(../img/bg/video-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#video_page h1.page_title {
		margin-bottom: 145px;
	}
	.videos_text {
		padding: 0 0 15px;
	}
	.video_box {
		padding: 0 0 30px;
	}
	.video_box+.video_box {
		margin-top: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#video_page {
		background: #fff url(../img/bg/video-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#video_page h1.page_title {
		margin-bottom: 135px;
	}
	.video_box {
		padding: 0 25px 45px;
	}
}
@media screen and (max-width: 767px) {
	.videos_text {
		padding: 0 0 15px;
	}
	.video_box {
		padding: 0 0 30px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#video_page {
		background: #fff url(../img/bg/video-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#video_page h1.page_title {
		margin-bottom: 125px;
	}
}
@media screen and (max-width: 519px) {
	#video_page {
		background: #fff url(../img/bg/video-bg.png) center 15px no-repeat;
		-webkit-background-size: 1000px;
		background-size: 1000px;
	}
	#video_page h1.page_title {
		margin-bottom: 115px;
	}
}
/* VIDEO PAGE END */





/* ABOUT COMPANY PAGE */
.company_text {
	position: relative;
}
.company_text > p {
	position: relative;
	z-index: 3;
}
.company_text.left > p > span.block,
.company_text.right > p > span.block {
	text-indent: 35px;
}

@media screen and (min-width: 992px) {
	.company_text.left {
		padding-left: 32%;
	}
	.company_text.left .company_img {
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		position: absolute;
		width: 50%;
		top: 50%;
		left: 0;
	}
	.company_text.right {
		padding-right: 31.5%;
	}
	.company_text.right .company_img {
		position: absolute;
		width: 40%;
		top: 50px;
		right: 0;
	}
}
/* ABOUT COMPANY PAGE END */





/* FAQ PAGE */
#faq_page {
	max-width: 1400px;
	margin: 0 auto;
}
.panel-group {
	position: relative;
	max-width: 1020px;
	margin: 0 auto 60px;
	z-index: 5;
}
.panel {
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-align: left;
	border: 0;
}
.panel-group .panel+.panel {
	margin-top: 25px;
}
.panel-group .panel {
	border-radius: 0;
}
.panel-heading {
	background-color: transparent;
	font-family: "OpenSansBold";
	text-transform: uppercase;
	position: relative;
	line-height: 25px;
	font-size: 18px;
	padding: 0;
}
.panel-heading a {
	padding: 2.5px 30px 2.5px 65px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	color: #333945;
}
.panel-heading a > .faq_check {
	position: absolute;
	height: 30px;
	width: 30px;
	left: 0;
	top: 0;
}
.panel-heading a > .faq_arrow {
	position: absolute;
	height: 16px;
	width: 16px;
	right: 0;
	top: 7px;
}
.panel-heading a > .faq_arrow img {
	-webkit-transform: translate(-50%, -50%) rotate(-180deg);
	-moz-transform: translate(-50%, -50%) rotate(-180deg);
	-ms-transform: translate(-50%, -50%) rotate(-180deg);
	-o-transform: translate(-50%, -50%) rotate(-180deg);
	transform: translate(-50%, -50%) rotate(-180deg);
	position: absolute;
	width: 16px;
	left: 50%;
	top: 50%;
}
.panel-heading a.collapsed > .faq_arrow img {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
.panel-group .panel-heading+.panel-collapse>.panel-body, 
.panel-group .panel-heading+.panel-collapse>.list-group {
	border: 0;
}
.panel-body {
	padding: 25px 0 8px;
}
.panel-body p.gen_text:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
	#faq_page {
		background: #fff url(../img/bg/faq-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#faq_page h1.page_title {
		margin-bottom: 180px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#faq_page {
		background: #fff url(../img/bg/faq-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#faq_page h1.page_title {
		margin-bottom: 170px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#faq_page {
		background: #fff url(../img/bg/faq-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#faq_page h1.page_title {
		margin-bottom: 160px;
	}
	.panel-heading {
		font-size: 16px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#faq_page {
		background: #fff url(../img/bg/faq-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#faq_page h1.page_title {
		margin-bottom: 150px;
	}
	.panel-heading {
		font-size: 15px;
	}
	.panel-heading a {
		padding: 2.5px 30px 2.5px 50px;
	}
}
@media screen and (max-width: 519px) {
	#faq_page {
		background: #fff url(../img/bg/faq-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#faq_page h1.page_title {
		margin-bottom: 140px;
	}
	.panel-heading {
		line-height: 20px;
		font-size: 14px;
	}
	.panel-heading a {
		padding: 5px 30px 5px 35px;
	}
	.panel-heading a > .faq_check {
		height: 20px;
		width: 20px;
		top: 5px;
	}
}
/* FAQ PAGE END */





/* EXCHANGERS PAGE */
#exchangers_page {
	max-width: 1400px;
	margin: 0 auto;
}
.exchangers_text {
	max-width: 1040px;
	margin: 0 auto;
}

@media screen and (min-width: 1200px) {
	#exchangers_page {
		background: #fff url(../img/bg/exchangers-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#exchangers_page h1.page_title {
		margin-bottom: 210px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#exchangers_page {
		background: #fff url(../img/bg/exchangers-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#exchangers_page h1.page_title {
		margin-bottom: 190px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#exchangers_page {
		background: #fff url(../img/bg/exchangers-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#exchangers_page h1.page_title {
		margin-bottom: 170px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#exchangers_page {
		background: #fff url(../img/bg/exchangers-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#exchangers_page h1.page_title {
		margin-bottom: 150px;
	}
}
@media screen and (max-width: 519px) {
	#exchangers_page {
		background: #fff url(../img/bg/exchangers-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#exchangers_page h1.page_title {
		margin-bottom: 130px;
	}
}
/* EXCHANGERS PAGE END */





/* EDUCATION PAGE */
#education_page {
	max-width: 1400px;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	#education_page {
		background: #fff url(../img/bg/education-bg.png) center top no-repeat;
		-webkit-background-size: 100%;
		background-size: 100%;
	}
	#education_page h1.page_title {
		margin-bottom: 235px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#education_page {
		background: #fff url(../img/bg/education-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#education_page h1.page_title {
		margin-bottom: 210px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#education_page {
		background: #fff url(../img/bg/education-bg.png) center top no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#education_page h1.page_title {
		margin-bottom: 180px;
	}
}
@media screen and (max-width: 519px) {
	#education_page {
		background: #fff url(../img/bg/education-bg.png) center top no-repeat;
		-webkit-background-size: 700px;
		background-size: 700px;
	}
	#education_page h1.page_title {
		margin-bottom: 150px;
	}
}

.edu_video {
	position:relative;
	display:inline-block;
	width:100%;
	max-width:450px;
}
/* EDUCATION PAGE END */





/* AGREEMENT PAGE */
#agreement_page {
	max-width: 1400px;
	margin: 0 auto;
}
.agreement_text {
	max-width: 1080px;
	margin: 0 auto;
}
.agreement_text p.gen_text,
.agreement_text ul.gen_text {
	font-size: 12px;
}

@media screen and (min-width: 1200px) {
	#agreement_page {
		background: #fff url(../img/bg/agreement-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#agreement_page h1.page_title {
		margin-bottom: 285px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#agreement_page {
		background: #fff url(../img/bg/agreement-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#agreement_page h1.page_title {
		margin-bottom: 265px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#agreement_page {
		background: #fff url(../img/bg/agreement-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#agreement_page h1.page_title {
		margin-bottom: 245px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#agreement_page {
		background: #fff url(../img/bg/agreement-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#agreement_page h1.page_title {
		margin-bottom: 225px;
	}
}
@media screen and (max-width: 519px) {
	#agreement_page {
		background: #fff url(../img/bg/agreement-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#agreement_page h1.page_title {
		margin-bottom: 205px;
	}
}
/* AGREEMENT PAGE END */





/* PRIVACY POLICY PAGE */
#policy_page {
	max-width: 1400px;
	margin: 0 auto;
}
.policy_text {
	max-width: 1080px;
	margin: 0 auto;
}
.policy_text p.gen_text,
.policy_text ul.gen_text {
	font-size: 13px;
}

@media screen and (min-width: 1200px) {
	#policy_page {
		background: #fff url(../img/bg/policy-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#policy_page h1.page_title {
		margin-bottom: 315px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#policy_page {
		background: #fff url(../img/bg/policy-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#policy_page h1.page_title {
		margin-bottom: 295px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#policy_page {
		background: #fff url(../img/bg/policy-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#policy_page h1.page_title {
		margin-bottom: 275px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#policy_page {
		background: #fff url(../img/bg/policy-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#policy_page h1.page_title {
		margin-bottom: 255px;
	}
}
@media screen and (max-width: 519px) {
	#policy_page {
		background: #fff url(../img/bg/policy-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#policy_page h1.page_title {
		margin-bottom: 235px;
	}
}
/* PRIVACY POLICY PAGE END */





/* PROMOS BONUSES PAGE */
.promos_text {
	padding-bottom: 25px;
}
.steps {
	padding-bottom: 10px;
}
.steps_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 0 0 15px;
	font-size: 14px;
	line-height: 1;
}
.steps_list {
	margin-bottom: 0;
}
.steps_list li {
	margin-bottom: 15px;
	padding-right: 20px;
	line-height: 16px;
	font-size: 12px;
	float: left;
	width: 25%;
}
.contacts_form {
	padding: 35px 0 60px;
	position: relative;
	text-align: center;
	max-width: 870px;
	margin: 0 auto;
}
.contacts_form::after {
	background-color: #d1d6db;
	position: absolute;
	content: "";
	height: 1px;
	right: 0;
	left: 0;
	top: 0;
}
.contacts_form .btn {
	vertical-align: top;
}
.contacts_form .btn.btn-marsh span.btn_content {
	display: inline-block;
	padding: 7.5px 35px;
}

@media screen and (min-width: 1200px) {
	.steps_list {
		max-width: 600px;
	}
}
@media screen and (max-width: 599px) {
	.steps_list li {
		float: none;
		width: 100%;
	}
	.promos_form {
		padding: 35px 0;
	}
}
/* PROMOS BONUSES PAGE END */





/* CONTACTS PAGE */
.contacts_list {
	padding-bottom: 25px;
	text-align: center;
	margin: 0 auto;
}
.contacts_list ul {
	margin-bottom: 0;
}
.contacts_list ul li {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-left: 45px;
	line-height: 17px;
	text-align: left;
	margin-top: 40px;
	min-height: 34px;
	font-size: 14px;
}
.contacts_list ul li strong,
.contacts_list ul li:first-child {
	text-transform: uppercase;
}
.contacts_list ul li+li {
	margin-left: 60px;
}
.contacts_list ul li > .icon {
	position: absolute;
	height: 30px;
	width: 22px;
	left: 0;
	top: 0;
}

@media screen and (min-width: 1200px) {
	#contacts_page {
		background: #fff url(../img/bg/contacts-long-bg.png) center top no-repeat;
		-webkit-background-size: 2800px;
		background-size: 2800px;
	}
	#contacts_page h1.page_title {
		margin-bottom: 225px;
	}
}
@media screen and (min-width: 768px) {
	.contacts_form .big_capcha {
		display: inline-block;
		margin-right: 40px;
		margin-bottom: 0;
		width: 100%;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#contacts_page {
		background: #fff url(../img/bg/contacts-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#contacts_page h1.page_title {
		margin-bottom: 200px;
	}
	.contacts_list ul li+li {
		margin-left: 50px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#contacts_page {
		background: #fff url(../img/bg/contacts-bg.png) center 15px no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#contacts_page h1.page_title {
		margin-bottom: 175px;
	}
}
@media (min-width: 600px) and (max-width: 991px) {
	.contacts_list {
		max-width: 870px;
	}
	.contacts_list ul li {
		display: block;
		float: left;
		width: 50%;
	}
	.contacts_list ul li:nth-child(odd) {
		clear: left;
	}
	.contacts_list ul li+li {
		margin-left: 0;
	}
}
@media screen and (max-width: 599px) {
	.contacts_list ul {
		display: inline-block;
	}
	.contacts_list ul li {
		display: block;
	}
	.contacts_list ul li+li {
		margin-left: 0;
	}
}
@media screen and (max-width: 399px) {
	.contacts_form .big_capcha {
		max-width: 200px;
	}
	.contacts_form .big_capcha .capcha_box {
		float: right;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#contacts_page {
		background: #fff url(../img/bg/contacts-bg.png) center top no-repeat;
		-webkit-background-size: 1000px;
		background-size: 1000px;
	}
	#contacts_page h1.page_title {
		margin-bottom: 150px;
	}
}
@media screen and (max-width: 519px) {
	#contacts_page {
		background: #fff url(../img/bg/contacts-bg.png) center 20px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#contacts_page h1.page_title {
		margin-bottom: 125px;
	}
}
/* CONTACTS PAGE END */





/* PINCODE PAGE */
.pincode_content {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	background-color: rgba(255, 255, 255, 0.3);
	padding: 260px 30px 90px;
}
.pincode_box {
	margin: 0 auto 50px;
	text-align: center;
	position: relative;
	max-width: 405px;
}
.pincode_box > p.gen_text {
	margin-bottom: 7px;
}
label.pincode_label {
	font-family: "OpenSansRegular";
	padding: 10px 10px 10px 0;
	white-space: nowrap;
	font-weight: normal;
	position: absolute;
	font-size: 14px;
	line-height: 1;
	display: block;
	right: 100%;
	top: 0;
}

@media screen and (min-width: 768px) {
	.pincode_box .form-control {
		background-color: #fff;
		border-color: #fff;
	}
}
@media screen and (min-width: 1230px) {
	.pincode_content {
		margin: 0 -15px;
	}
}
@media screen and (min-width: 1200px) {
	#pincode_page {
		background: #fff url(../img/bg/pincode-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#pincode_page {
		background: #fff url(../img/bg/pincode-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#pincode_page {
		background: #fff url(../img/bg/pincode-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	.pincode_content {
		padding: 210px 20px 70px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#pincode_page {
		background: #fff url(../img/bg/pincode-bg.png) center 20px no-repeat;
		-webkit-background-size: 1000px;
		background-size: 1000px;
	}
	.pincode_content {
		padding: 180px 20px 50px;
	}
	label.pincode_label {
		display: none;
	}
}
@media screen and (max-width: 519px) {
	#pincode_page {
		background: #fff url(../img/bg/pincode-bg.png) center 50px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	.pincode_content {
		padding: 150px 15px 40px;
	}
	label.pincode_label {
		display: none;
	}
}
/* PINCODE PAGE END */





/* OUR REPRESENTATIVES PAGE */
#our_reprs_page p.gen_text {
	margin: 0 auto 24px;
	text-align: center;
	max-width: 830px;
}
.repres_list {
	margin: 10px auto 20px;
	max-width: 830px;
}
.repres_list li:nth-child(odd) .about_repres,
.repres_list li:nth-child(odd) a.repres_title {
	background-color: #eeeeee;
}
.repres_list li:nth-child(even) .about_repres,
.repres_list li:nth-child(even) a.repres_title {
	background-color: #fff;
}
a.repres_title {
	padding: 4px 30px 4px 105px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	font-size: 15px;
	display: block;
	color: #2c2b2b;
	height: 56px;
}
a.repres_title .flag_icon {
	position: absolute;
	height: 48px;
	width: 48px;
	left: 30px;
	top: 4px;
}
a.repres_title .flag_icon > img {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
}
.about_repres {
	padding: 10px 30px 10px 55px;
	position:relative;
	border-bottom:1px solid #aaa;
}
.about_repres:after {
	content:'';
	display:block;
	position:absolute;
	width:100%;
	height:1px;
	bottom:0;
	left:55px;
	right:30px;
}
.about_repres:last-child {
	border-bottom:none;
}
.about_repres ul {
	margin-bottom: 0;
}
.repres_info {
	display:block;
	float:left;
}
.repres_image {
	float:right;
}
.repres_image.no_image {
	background:#aaa;
	color:#777;
	text-transform:uppercase;
	text-align:center;
	line-height:90px;
	font-family:'OpenSansBold';
	width:70px;
	height:90px;
}
.about_repres ul+ul {
	margin-top: 35px;
}
.about_repres ul li {
	line-height: 1.42857;
	font-size: 14px;
	color: #2c2b2b;
}

@media screen and (min-width: 1200px) {
	#our_reprs_page {
		background: #fff url(../img/bg/representatives-bg.png) center -40px no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#our_reprs_page h1.page_title {
		margin-bottom: 275px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#our_reprs_page {
		background: #fff url(../img/bg/representatives-bg.png) center -30px no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#our_reprs_page h1.page_title {
		margin-bottom: 255px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#our_reprs_page {
		background: #fff url(../img/bg/representatives-bg.png) center -30px no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#our_reprs_page h1.page_title {
		margin-bottom: 235px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#our_reprs_page {
		background: #fff url(../img/bg/representatives-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#our_reprs_page h1.page_title {
		margin-bottom: 215px;
	}
}
@media screen and (max-width: 519px) {
	#our_reprs_page {
		background: #fff url(../img/bg/representatives-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#our_reprs_page h1.page_title {
		margin-bottom: 195px;
	}
}
@media screen and (max-width: 439px) {
	a.repres_title {
		padding: 4px 10px 4px 70px;
		font-size: 14px;
	}
	a.repres_title .flag_icon {
		left: 10px;
	}
	a.repres_title .about_repres {
		padding: 5px 10px 15px 30px;
	}
}
/* OUR REPRESENTATIVES PAGE END */





/* BECOME REPRESENTATIVES PAGE */
.become_images_block {
	padding-bottom: 10px;
	max-width: 885px;
	margin: 0 auto;
}
.become_images_block ul {
	margin-bottom: 0;
}
.become_images_block ul li {
	padding: 0 15px;
	width: 33.33%;
	float: left;
}
.become_img {
	border: 3px solid #333945;
	padding: 32px 20px 20px;
	margin: 0 auto 15px;
	text-align: center;
	border-radius: 5px;
	max-width: 181px;
}
.become_img h2 {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 25px -20px 0;
	font-size: 18px;
	line-height: 1;
}
.become_form p.gen_text {
	margin-bottom: 34px;
	text-align: center;
}
.become_form .form-group {
	padding-left: 170px;
	max-width: 515px;
}
.become_form label {
	font-weight: normal;
	position: absolute;
	line-height: 1.25;
	height: 35px;
	width: 160px;
	left: 0;
	top: 0;
}
.become_form label.intolerable_label {
	white-space: nowrap;
	right: 355px;
	width: auto;
	left: auto;
}
.become_form .btn {
	margin: 5px auto 0;
	max-width: 115px;
	width: 100%;
}

@media screen and (min-width: 1200px) {
	#become_page {
		background: #fff url(../img/bg/become-bg.png) center top no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#become_page h1.page_title {
		margin-bottom: 235px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#become_page {
		background: #fff url(../img/bg/become-bg.png) center top no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#become_page h1.page_title {
		margin-bottom: 205px;
	}
	.become_form label.intolerable_label {
		right: 295px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#become_page {
		background: #fff url(../img/bg/become-bg.png) center top no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#become_page h1.page_title {
		margin-bottom: 185px;
	}
	.become_form .form-group {
		padding-left: 255px;
		margin: 0 auto 20px;
		max-width: 100%;
	}
	.become_form label {
		width: 245px;
	}
	.become_form label.intolerable_label {
		white-space: normal;
		width: 245px;
		right: auto;
		left: 0;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#become_page {
		background: #fff url(../img/bg/become-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#become_page h1.page_title {
		margin-bottom: 135px;
	}
	.become_images_block ul li {
		padding: 0 5px;
	}
	.become_img {
		padding: 27px 15px 20px;
	}
	.become_img h2 {
		margin: 25px -15px 0;
		font-size: 16px;
	}
}
@media screen and (max-width: 767px) {
	.become_form .form-group {
		margin: 0 auto 25px;
		padding-left: 0;
	}
	.become_form label,
	.become_form label.intolerable_label {
		white-space: normal;
		position: relative;
		margin-bottom: 5px;
		height: auto;
		width: 100%;
		right: auto;
	}
}
@media screen and (max-width: 519px) {
	#become_page {
		background: #fff url(../img/bg/become-bg.png) center 30px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#become_page h1.page_title {
		margin-bottom: 115px;
	}
	.become_images_block ul li {
		padding: 0 5px;
		width: 50%;
	}
	.become_images_block ul li:last-child {
		margin-left: 25%;
	}
	.become_img {
		padding: 27px 15px 20px;
	}
	.become_img h2 {
		margin: 25px -15px 0;
		font-size: 14px;
	}
}
/* BECOME REPRESENTATIVES PAGE END */





/* AFFILIATE PAGE */
#affiliate_page {
	padding-bottom: 100px;
}
.affil_list {
	position: relative;
}
.affil_step {
	padding: 15px 20px 15px 15px;
	border: 3px solid #333945;
	background-color: #e6e7e8;
	border-radius: 15px;
	line-height: 24px;
	text-align: left;
	font-size: 14px;
}
.affil_arrow {
	background: url(../img/affiliate-arrow.png) center 2px no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	position: absolute;
	min-height: 90px;
	width: 97%;
	left: 50%;
	top: 100%;
}
.affil_step:nth-child(1) .affil_arrow {
	margin-left: -10px;
}
.affil_step:nth-child(5) .affil_arrow {
	display: none;
}

@media screen and (min-width: 992px) {
	.affil_list {
		margin-bottom: 90px;
		position: relative;
	}
	.affil_step {
		position: absolute;
		margin-left: -10px;
		height: 100%;
		top: 0;
	}
	.affil_step:nth-child(1) {
		position: relative;
		left:0;
	}
	.affil_step:nth-child(2) {
		left: 20%;
	}
	.affil_step:nth-child(3) {
		left: 40%;
	}
	.affil_step:nth-child(4) {
		left: 60%;
	}
	.affil_step:nth-child(5) {
		left: 80%;
	}
}
@media screen and (min-width: 1200px) {
	#affiliate_page {
		background: #fff url(../img/bg/representatives-bg.png) center -40px no-repeat;
		-webkit-background-size: 1400px;
		background-size: 1400px;
	}
	#affiliate_page h1.page_title {
		margin-bottom: 275px;
	}
	.affil_step {
		width: 235px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#affiliate_page {
		background: #fff url(../img/bg/representatives-bg.png) center -30px no-repeat;
		-webkit-background-size: 1300px;
		background-size: 1300px;
	}
	#affiliate_page h1.page_title {
		margin-bottom: 255px;
	}
	.affil_step {
		width: 196px;
	}
}
@media screen and (max-width: 991px) {
	.affil_arrow {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#affiliate_page {
		background: #fff url(../img/bg/representatives-bg.png) center -30px no-repeat;
		-webkit-background-size: 1200px;
		background-size: 1200px;
	}
	#affiliate_page h1.page_title {
		margin-bottom: 235px;
	}
	.affil_step {
		position: relative;
		min-height: 290px;
		width: 246px;
		float: left;
	}
	.affil_step:nth-child(2) {
		margin-left: -10px;
	}
	.affil_step:nth-child(3) {
		margin-left: -10px;
	}
	.affil_step:nth-child(4) {
		margin-left: 16.67%;
		margin-top: -10px;
	}
	.affil_step:nth-child(5) {
		margin-left: -10px;
		margin-top: -10px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#affiliate_page {
		background: #fff url(../img/bg/representatives-bg.png) center top no-repeat;
		-webkit-background-size: 1100px;
		background-size: 1100px;
	}
	#affiliate_page h1.page_title {
		margin-bottom: 215px;
	}
	.affil_step {
		position: relative;
		margin-top: -10px;
		min-height: 280px;
		float: left;
		width: 50%;
	}
	.affil_step:nth-child(odd) {
		margin-left: 5px;
	}
	.affil_step:nth-child(even) {
		margin-left: -10px;
	}
	.affil_step:nth-child(1),
	.affil_step:nth-child(2) {
		margin-top: 0;
	}
	.affil_step:nth-child(5) {
		margin-right: 0px;
		margin-left: 25%;
	}
}
@media screen and (max-width: 519px) {
	#affiliate_page {
		background: #fff url(../img/bg/representatives-bg.png) center 20px no-repeat;
		-webkit-background-size: 900px;
		background-size: 900px;
	}
	#affiliate_page h1.page_title {
		margin-bottom: 195px;
	}
	.affil_step {
		margin: -10px auto 0;
		position: relative;
		min-height: 170px;
		max-width: 350px;
	}
}
/* AFFILIATE PAGE END */





/* INVESTMENTS PAGE */
#inv_offers_page {
	background: #fff url(../img/bg/investments-offers-bg.png) left 285px no-repeat;
	-webkit-background-size: 700px;
	background-size: 700px;
}
.inv_offer_content {
	padding: 55px 50px 50px;
	position: relative;
	margin: 30px auto;
}
.inv_offer_content::after {
	background: rgba(255,255,255,0.6);
	background: -moz-linear-gradient(left, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.6)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.inv_offer_content p.gen_text {
	margin: 0 auto 24px;
	position: relative;
	max-width: 945px;
	z-index: 5;
}
.inv_offer_content p.gen_text:last-child {
	margin-bottom: 50px;
}
.inv_offer_content .btn.inv_btn {
	position: relative;
	min-width: 190px;
	z-index: 4;
}
.inv_offer_content .btn.btn-orange-smaller span.btn_content {
	padding: 10px 15px;
	font-size: 15px;
}

@media screen and (max-width: 519px) {
	.inv_offer_content {
		padding: 35px 20px 30px;
		margin: 0 auto;
	}
}
/* INVESTMENTS PAGE END */





/* REGISTRATION PAGE */
#reg_page {
	text-align: center;
}
#reg_page .content_bg {
	padding: 15px 15px 40px;
	max-width: 1020px;
}
.reg_box {
	padding-bottom: 15px;
	max-width: 280px;
	margin: 0 auto;
}
.reg_box h2 {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 0 auto 20px;
	position: relative;
	padding-left: 60px;
	line-height: 20px;
	text-align: left;
	font-size: 17px;
	height: 80px;
}
.reg_box h2 .icon {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 0;
}
.reg_box h2 .icon.data_icon {
	width: 28px;
}
.reg_box h2 .icon.info_icon {
	width: 30px;
}
.reg_box h2 .icon.payment_icon {
	width: 40px;
}
.reg_box .form-group {
	margin-bottom: 10px;
}
#reg_page .btn.btn-marsh {
	max-width: 320px;
	margin: 0 auto;
	display: block;
	width: 100%;
}
/* ---------------------- */
.more_balloon {
	display: none;
}
.balloon_content p {
	margin-bottom: 0;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #d4f19e; 
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #d4f19e; 
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #d4f19e; 
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #d4f19e; 
}
.tooltipster-sidetip .tooltipster-box {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27); 
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27); 
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27);
  background-color: #d4f19e; 
  border-radius: 5px;
  padding: 0;
  border: 0;
}
.tooltipster-sidetip .tooltipster-content {
  background-color: #d4f19e;
  position: relative;
  border-radius: 5px;
  line-height: 14px;
  padding: 6px 14px;
  font-size: 12px;
  color: #333945;
}

@media screen and (max-width: 991px) {
	#reg_page {
		background: #f9fdff url(../img/bg/redirect-main-bg.png) center bottom no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.reg_box h2 {
		padding-left: 55px;
		font-size: 14px;
	}
}
@media screen and (max-width: 519px) {
	.reg_box h2 {
		margin-bottom: 0;
	}
}
/* REGISTRATION PAGE END */





/* REDIRECT PAGE */
#reg_page {
	text-align: center;
}
.redirect_content {
	position: relative;
}
.redirect_window {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	padding: 50px 35px 63px;
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	max-width: 480px;
	margin: 0 auto;
}
.redirect_logo {
	background-color: #eaeaea;
	margin: 0 auto 25px;
	border-radius: 50%;
	padding: 15px 8px;
	height: 75px;
	width: 75px;
}

@media screen and (min-width: 1200px) {
	.redirect_content {
		padding: 135px 15px 355px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.redirect_content {
		padding: 135px 15px 200px;
	}
}
@media screen and (max-width: 991px) {
	#redirect_page {
		background: #f9fdff url(../img/bg/redirect-main-bg.png) center bottom no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.redirect_content {
		padding: 135px 15px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	.redirect_content {
		padding: 100px 15px;
	}
}
@media screen and (max-width: 519px) {
	.redirect_content {
		padding: 60px 15px;
	}
	.redirect_window {
		padding: 40px 25px 21px;
	}
}
/* REDIRECT PAGE END */





/* SECURITY PAGE */
.security_box {
	border-bottom: 1px solid #cad0d6;
	padding: 70px 0 46px;
	position: relative;
	max-width: 840px;
	margin: 0 auto;
}
.security_box:last-child {
	border-bottom: 0;
}

@media screen and (min-width: 768px) {
	.security_left p.gen_text {
		margin: 0 0 24px auto;
		max-width: 62%;
	}
	.security_right p.gen_text {
		margin: 0 auto 24px 0;
		max-width: 62%;
	}
	.security_img {
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		position: absolute;
		max-width: 35%;
		width: 100%;
		top: 50%;
	}
	.security_left .security_img {
		left: 0;
	}
	.security_right .security_img {
		right: 0;
	}
}
@media screen and (max-width: 767px) {
	.security_box {
		text-align: center;
	}
	.security_img {
		margin: 0 auto 35px;
		min-width: 240px;
		width: 70%;
	}
}
/* SECURITY PAGE END */





/* JOBS PAGE */
.jobs_content {
	max-width: 840px;
	margin: 0 auto;
}
.jobs_box {
	border-bottom: 1px solid #cad0d6;
	padding: 18px 0 12px;
	margin: 0 auto 30px;
	position: relative;
}

@media screen and (min-width: 768px) {
	.jobs_text {
		margin: 0 0 0 auto;
		max-width: 62%;
	}
	.jobs_img {
		position: absolute;
		max-width: 31%;
		width: 100%;
		top: 10px;
		left: 0;
	}
}
@media screen and (max-width: 767px) {
	.jobs_content {
		text-align: center;
	}
	.jobs_img {
		min-width: 240px;
		margin: 0 auto;
		width: 60%;
	}
}
/* JOBS PAGE END */





/* LOGIN PAGE */
#login_page .home_window {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 0 10px 20px;
	position: relative;
}
#login_page .home_window .form-group .form-control {
	padding: 7px 15px 7px 35px;
}
#login_page .home_window .btn.btn-marsh span.btn_content {
	font-size: 16px;
}

#login_page .home_window .btn.btn-marsh.marsh_to_orange span.btn_content {
	font-size: 16px;
}

@media screen and (max-width: 519px) {
	#login_page .content_bg {
		padding-right: 0;
		padding-left: 0;
	}
}
/* LOGIN PAGE END */





/* NEWS PAGE */
.new_box {
	margin: 0 auto 45px;
	position: relative;
	padding-top: 11px;
	max-width: 870px;
}
.new_date {
	font-family: "OpenSansBold";
	margin-bottom: 25px;
	position: relative;
	padding-left: 50px;
	line-height: 13px;
	font-size: 11px;
	height: 30px;
}
.new_date > img {
	position: absolute;
	width: 35px;
	left: 0;
	top: 0;
}
.new_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin: 0 auto 15px;
	line-height: 20px;
	font-size: 16px;
}
.new_text {
	padding-bottom: 10px;
	position: relative;
}
.new_text::after {
	background-color: #cad0d6;
	position: absolute;
	margin-top: -10px;
	content: "";
	height: 1px;
	width: 83%;
	left: 5px;
	top: 100%;
}
.new_text p.gen_text {
	margin-bottom: 10px;
}
.new_footnote {
	line-height: 14px;
	font-size: 12px;
}

@media screen and (min-width: 992px) {
	.new_content {
		margin: 0 0 0 auto;
		max-width: 75%;
	}
	.new_img {
		position: absolute;
		max-width: 22%;
		width: 100%;
		left: 0;
		top: 0;
	}
}
@media screen and (max-width: 991px) {
	.new_box {
		padding: 11px 50px 0;
	}
	.new_img {
		min-width: 240px;
		margin: 0 0 25px;
		width: 60%;
	}
}
@media screen and (max-width: 519px) {
	.new_box {
		padding: 11px 25px 0;
	}
}
@media screen and (max-width: 379px) {
	.new_box {
		padding: 11px 10px 0;
	}
}
/* NEWS PAGE END */





/* PASSWORD RESTORE PAGE */
#reset_pas_page {
	text-align: center;
}
.password_form {
	padding: 20px 0;
}
.password_form p.gen_text {
	margin-bottom: 10px;
	min-height: 48px;
}
.password_form .form-group {
	margin: 0 auto 20px;
	max-width: 405px;
}
.password_form .btn.btn-marsh span.btn_content {
	padding: 7.5px 25px;
}
.reset_info {
	border-bottom: 1px solid #ccd2d7;
	margin: 0 auto 20px;
	min-height: 137px;
	max-width: 840px;
	padding: 20px 0;
}
.reset_info:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}
.reset_info p.gen_text {
	margin: 0 auto 24px;
	max-width: 750px;
}
/* -------------------- */
#step_one,
#step_two,
#step_three,
#step_four {
	display: none;
}
#step_one.active,
#step_two.active,
#step_three.active,
#step_four.active {
	display: block;
}
/* PASSWORD RESTORE PAGE END */





/*  PAGE */
.legal_content {
	padding-bottom: 55px;
	padding-left: 35px;
	overflow: hidden;
}
.gen_text.with_icon {
	position: relative;
	padding-left: 75px;
}
.gen_text.with_icon .gen_text_icon {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 35px;
	left: 30px;
	top: 50%;
}
.legal_list {
	margin-bottom: 0;
	margin-top: -8px;
}
.legal_list li {
	margin-bottom: 17px;
}
.legal_list li:last-child {
	margin-bottom: 24px;
}
.legal_list li a {
	display: inline-block;
	position: relative;
	padding-left: 75px;
	line-height: 24px;
	font-size: 14px;
}
.legal_list li a > .icon {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 32px;
	left: 30px;
	top: 50%;
}
.leg_info_box {
	margin: 0 auto 25px;
	position: relative;
	max-width: 1100px;
	padding: 15px 0;
}
.legal_docs {
	margin: 0 auto;
	max-width: 800px;
}
.docs_box {
	margin: 50px auto 0;
	text-align: center;
}
a.doc_link {
	max-width: 116px;
	cursor: pointer;
	display: block;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	.leg_info_text {
		padding-left: 30px;
		margin: 0 0 0 32%;
		max-width: 66%;
	}
	.leg_info_img {
		position: absolute;
		max-width: 32%;
		width: 100%;
		top: 20px;
		left: 0;
	}
}
@media screen and (min-width: 1200px) {
	.leg_info_text {
		padding-left: 50px;
		max-width: 64%;
	}
	.leg_info_img {
		top: -10px;
	}
}
@media screen and (max-width: 991px) {
	.leg_info_img {
		margin: 0 auto 15px;
		min-width: 240px;
		width: 80%;
	}
}
@media (min-width: 600px) and (max-width: 991px) {
	.legal_content,
	.leg_info_box {
		padding-right: 35px;
		padding-left: 35px;
	}
}
@media (min-width: 499px) and (max-width: 599px) {
	.legal_content,
	.leg_info_box {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media screen and (max-width: 498px) {
	.legal_content,
	.leg_info_box {
		padding-right: 0;
		padding-left: 0;
	}
	.legal_list li a > .icon,
	.gen_text.with_icon .gen_text_icon  {
		left: 0;
	}
	.legal_list li a,
	.gen_text.with_icon {
		padding-left: 45px;
	}
}
/*  PAGE END */





/* ACCOUNT PAGE */
.acc_content {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.13); 
	background-color: #fff;
	margin: 45px auto 0;
	position: relative;
	min-height: 740px;
}
/* -------------------- */
.acc_right {
	position: relative;
	z-index: 5;
}
/* -------------------- */
#acc_nav_box {
	background-color: #f0f0f0;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	padding: 15px;
}
.acc_nav_btn {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	pointer-events: none;
	text-align: center;
	line-height: 20px;
	padding: 15px 0;
	font-size: 18px;
}
.acc_navbar {
	margin-bottom: 0;
}
.acc_navbar > li > a {
	font-family: "OpenSansBold";
	padding: 14.5px 7px 14.5px 37px;
	border-radius: 5px;
	position: relative;
	display: block;
	color: #333945;
}
.acc_navbar > li > a:hover,
.acc_navbar > li > a:focus,
.acc_navbar > li > a.active {
	text-decoration: none;
	color: #fff;
}
.acc_navbar > li > a::after {
	background: rgba(175,222,94,1);
	background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(100%, rgba(133,174,56,1)));
	background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#85ae38', GradientType=0 );
	border-radius: 5px;
	position: absolute;
	height: 100%;
	content: "";
	opacity: 0;
	z-index: 2;
	width: 0;
	left: 0;
	top: 0;
}
.acc_navbar > li > a:hover::after,
.acc_navbar > li > a:focus::after,
.acc_navbar > li > a.active::after {
	opacity: 1;
	width: 100%;
}
.acc_navbar > li > a::before {
	background-color: #cdd2d8;
	position: absolute;
	content: "";
	height: 1px;
	opacity: 1;
	z-index: 1;
	right: 5px;
	left: 5px;
	top: 100%;
}
.acc_navbar > li > a:hover::before,
.acc_navbar > li > a:focus::before,
.acc_navbar > li > a.active::before {
	opacity: 0;
}
.acc_navbar > li:last-child > a::before {
	display: none;
}
.acc_navbar > li > a > .nav_title {
	text-transform: uppercase;
	position: relative;
	line-height: 16px;
	font-size: 12px;
	display: block;
	z-index: 5;
}
.acc_navbar > li > a > .nav_icon {
	position: absolute;
	height: 16px;
	width: 16px;
	z-index: 5;
	left: 7px;
	top: 14px;
}
.acc_navbar > li > a > .nav_icon::after {
	background-color: #b8b9bd;
	position: absolute;
	margin-left: 6px;
	height: 14px;
	content: "";
	width: 1px;
	left: 100%;
	opacity: 1;
	top: 1px;
}
.acc_navbar > li > a:hover > .nav_icon::after,
.acc_navbar > li > a:focus > .nav_icon::after,
.acc_navbar > li > a.active > .nav_icon::after {
	opacity: 0;
}
.acc_navbar > li > a > .nav_icon > img {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 100%;
	top: 50%;
}
.acc_navbar > li > a > .nav_icon > img.nav_icon {
	opacity: 1;
	z-index: 3
}
.acc_navbar > li > a:hover > .nav_icon > img.nav_icon,
.acc_navbar > li > a:focus > .nav_icon > img.nav_icon,
.acc_navbar > li > a.active > .nav_icon > img.nav_icon {
	opacity: 0;
}
.acc_navbar > li > a > .nav_icon > img.nav_icon_hover {
	opacity: 0;
	z-index: 1;
}
.acc_navbar > li > a:hover > .nav_icon > img.nav_icon_hover,
.acc_navbar > li > a:focus > .nav_icon > img.nav_icon_hover,
.acc_navbar > li > a.active > .nav_icon > img.nav_icon_hover {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.acc_left {
		position: absolute;
		left: 15px;
		top: 15px;
	}
	#acc_nav_close {
		display: none;
	}
}
@media screen and (min-width: 1200px) {
	.acc_content { 
		padding: 30px 15px 15px 290px;
	}
	.acc_left {
		width: 260px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.acc_content { 
		padding: 30px 15px 15px 270px;
	}
	.acc_left {
		width: 240px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.acc_content { 
		padding: 30px 15px 15px 255px;
	}
	.acc_left {
		width: 225px;
	}
}
@media screen and (max-width: 767px) {
	.acc_content { 
		padding: 15px;
		min-height: 100px;
	}
	.acc_left {
		margin-bottom: 15px;
		position: relative;
		width: 100%;
	}
	.acc_nav_btn {
		background: rgba(175,222,94,1);
		background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(100%, rgba(133,174,56,1)));
		background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
		background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
		background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
		background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#85ae38', GradientType=0 );
		pointer-events: inherit;
		border-radius: 5px;
		position: relative;
		cursor: pointer;
		color: #fff;
		width: 100%;
		z-index: 5;
	}
	#acc_nav_close.close_btn {
		height: 30px;
		width: 30px;
		right: 15px;
		z-index: 1;
		top: 25px;
	}
	.acc_navbar {
		margin-top: 10px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	#acc_nav_box {
		height: 80px;
	}
	#acc_nav_box.open {
		height: 405px;
	}
	.acc_nav_btn.active {
		width: 220px;
	}
	.acc_navbar > li {
		float: left;
		width: 50%;
	}
	.acc_navbar > li:nth-last-child(2) > a::before {
		display: none;
	}
}
@media screen and (max-width: 519px) {
	#acc_nav_box {
		height: 70px;
	}
	#acc_nav_box.open {
		height: 710px;
	}
	#acc_nav_close.close_btn {
		top: 20px;
	}
	.acc_nav_btn {
		padding: 10px 0;
		font-size: 14px;
	}
	.acc_nav_btn.active {
		width: 180px;
	}
}
/* -------------------- */
@media (min-width: 768px) and (max-width: 991px) {
	.acc_content {
		margin-top: 30px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	.acc_content {
		margin-top: 20px;
	}
}
@media screen and (max-width: 519px) {
	.acc_content {
		margin-top: 15px;
	}
}
/* ACCOUNT PAGE END */





/* CHANGE RATE PAGE */
.change_rate_img {
	margin: 15px auto 35px;
	max-width: 414px;
	width: 90%;
}
/* -------------------- */
.change_rate_content {
	padding: 0 20px 50px;
	text-align: center;
}
.change_rate_content p.gen_text {
	margin-bottom: 15px;
}
/* -------------------- */
.change_rate_content .form-group {
	display: inline-block;
}
.change_rate_content label {
	text-transform: uppercase;
	padding: 7.5px 15px;
	margin-bottom: 0;
	font-size: 14px;
	float: left;
}
.change_rate_content .grey_input {
	float: right;
	width: 100px;
}
.grey_input select.form-control {
	padding: 6.5px 40px 6.5px 15px;
	-webkit-appearance: none;
	background-image: url("../img/grey-select-arrow.png");
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	/* for FF */
	-moz-appearance: none;
	/* for IE */
	-ms-appearance: none;
	appearance: none!important;
	cursor: pointer;
}
/* -------------------- */
.change_rate_content .btn_two_box {
	padding-top: 5px;
	max-width: 310px;
	margin: 0 auto;
}
.change_rate_content .btn_two_box .btn {
	min-width: 125px;
	font-size: 15px;
}

@media screen and (max-width: 479px) {
	.change_rate_content {
		padding: 0 0 50px;
	}
	.change_rate_content .btn_two_box {
		padding-top: 0;
	}
	.change_rate_content .btn_two_box .btn {
		min-width: 115px;
	}
}
/* CHANGE RATE PAGE END */





/* ACCOUNT SECURITY SETTINGS PAGE */
.acc_security_content {
	max-width: 840px;
	padding: 0 20px;
}
.acc_security_box {
	position: relative;
	padding: 20px 0 0;
}
.acc_security_content p.gen_text {
	line-height: 1.2143;
	margin-bottom: 17px;
}
/* -------------------- */
.security_set {
	display: inline-block;
	margin: 0 50px 30px 0;
	text-align: center;
}
.security_set p.gen_text {
	margin-bottom: 0;
}
.security_set_radio {
	display: inline-block;
	position: relative;
	padding: 0 5px;
}
.security_set_radio::after {
	background: rgba(175,222,94,1);
	background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(100%, rgba(133,174,56,1)));
	background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#85ae38', GradientType=0 );
	position: absolute;
	border-radius: 2px;
	content: "";
	height: 4px;
	bottom: 5px;
	z-index: 1;
	right: 0;
	left: 0;
}
.security_set_radio > .radio {
	position: relative;
	display: block;
	float: left;
	z-index: 5;
	margin: 0;
}
.security_set_radio > .radio > input[type="radio"] {
	position: absolute;
	cursor: pointer;
	height: 100%;
	width: 100%;
	z-index: 50;
	opacity: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.security_set_radio > .radio > input[type="radio"] + label {
	background: url(../img/radio.png) center bottom no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
	padding: 0 10px 15px;
	text-align: center;
	line-height: 25px;
	font-size: 14px;
}
.security_set_radio > .radio > input[type="radio"]:checked + label {
	background: url(../img/radio-checked.png) center bottom no-repeat;
	-webkit-background-size: 14px;
	background-size: 14px;
}
/* -------------------- */
.acc_security_content .btn {
	min-width: 150px;
}

@media screen and (min-width: 992px) {
	.acc_security_text {
		margin: 0 0 0 auto;
		max-width: 62.75%;
	}
	.acc_security_img {
		position: absolute;
		max-width: 32.75%;
		width: 100%;
		left: 0;
		top: 0;
	}
}
@media screen and (max-width: 991px) {
	.acc_security_box {
		padding-top: 0;
	}
	.acc_security_img {
		margin: 0 auto 20px;
		min-width: 240px;
		width: 60%;
	}
}
@media screen and (max-width: 519px) {
	.acc_security_content {
		padding: 0;
	}
	.acc_security_form {
		text-align: center;
	}
	.security_set {
		margin: 0 auto 30px;
	}
}
/* ACCOUNT SECURITY SETTINGS PAGE END */





/* HISTORY PAGE */
.history_img {
	margin: -40px auto 35px;
	max-width: 386px;
	width: 90%;
}
/* -------------------- */
.filter_type .grey_input select.form-control {
	padding: 6.5px 40px 6.5px 8px;
	text-transform: uppercase;
}
.filter_period .grey_input select.form-control {
	padding: 6.5px 40px 6.5px 8px;
}
.filter_label {
	text-transform: uppercase;
	font-weight: normal;
	text-align: right;
	line-height: 25px;
	padding: 5px 10px;
	font-size: 14px;
	height: 35px;
}
.filter_input {
	margin-bottom: 10px;
}
.filter_btn .btn {
	min-width: 125px;
}
/* -------------------- */
.table_box {
	background-color: #f0f0f0;
	padding: 0 15px 20px;
}
.table_box .table,
.table_box .table-responsive {
	margin-bottom: 0;
}
.table_box .table>tbody>tr>th, 
.table_box .table>tfoot>tr>th, 
.table_box .table>thead>tr>th,
.table_box .table>tbody>tr>td, 
.table_box .table>tfoot>tr>td, 
.table_box .table>thead>tr>td {
	vertical-align: middle;
	text-align: center;
	border: 0;
}
.table_box .table>tbody>tr>th, 
.table_box .table>tfoot>tr>th, 
.table_box .table>thead>tr>th {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	font-weight: normal;
	padding: 10px 15px;
	line-height: 20px;
}
.table_box .table>tbody>tr>td, 
.table_box .table>tfoot>tr>td, 
.table_box .table>thead>tr>td {
	padding: 8px 15px;
	line-height: 17px;
}
.table_box .table>tbody>tr:nth-child(odd)>td, 
.table_box .table>tfoot>tr:nth-child(odd)>td, 
.table_box .table>thead>tr:nth-child(odd)>td {
	background-color: #fff;
}
/* -------------------- */
#history_table {
	margin: 0 auto 10px;
	max-width: 720px;
}
#history_table .table>tbody>tr>td:first-child, 
#history_table .table>tfoot>tr>td:first-child, 
#history_table .table>thead>tr>td:first-child {
	text-align: left;
}
#history_table .table>tbody>tr>td:last-child, 
#history_table .table>tfoot>tr>td:last-child, 
#history_table .table>thead>tr>td:last-child {
	text-align: right;
}
.payment {
	text-transform: uppercase;
	background-color: #333945;
	display: inline-block;
	border-radius: 4px;
	text-align: center;
	line-height: 17px;
	min-width: 30px;
	padding: 0 5px;
	font-size: 9px;
	color: #fff;
}

@media screen and (min-width: 992px) {
	.payment_numb {
		float: left;
	}
	.payment {
		float: right;
	}
}
/* -------------------- */
.history_total {
	text-align: right;
	max-width: 580px;
	margin: 0 auto;
}
.history_total .table_total {
	display: inline-block;
}
.table_total .table>tbody>tr>td, 
.table_total .table>tfoot>tr>td, 
.table_total .table>thead>tr>td {
	text-transform: uppercase;
	line-height: 20px;
	font-size: 16px;
	padding: 10px;
}
.table_total .table>tbody>tr>td:first-child, 
.table_total .table>tfoot>tr>td:first-child, 
.table_total .table>thead>tr>td:first-child {
	font-family: "OpenSansBold";
	text-align: left;
}
.table_total .table>tbody>tr:first-child>td, 
.table_total .table>tfoot>tr:first-child>td, 
.table_total .table>thead>tr:first-child>td {
	border-top: 0;
}

@media screen and (min-width: 540px) {
	.history_filter {
		margin: 0 auto 70px;
		max-width: 630px;
	}
	.filter,
	.filter_input,
	.filter_period {
		float: left;
	} 
	.filter_type {
		width: 175px;
	}
	.filter_label {
		width: 60px;
		float: left;
	}
	.filter_date {
		width: 70px;
	}
	.filter_month {
		width: 80px;
	}
	.filter_year {
		width: 90px;
	}
	.filter_btn {
		margin-left: 10px;
		padding: 20px 0;
		float: right;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.history_filter {
		max-width: 445px;
	}
	.history_filter .grey_input select.form-control {
		font-size: 12px;
	}
	.filter,
	.filter_btn {
		float: none;
	}
	.filter_btn {
		text-align: right;
	}
	.filter_type {
		width: 160px;
	}
	.filter_date {
		width: 65px;
	}
	.filter_month {
		width: 75px;
	}
	.filter_year {
		width: 85px;
	}
	.table_box .table>tbody>tr>th, 
	.table_box .table>tfoot>tr>th, 
	.table_box .table>thead>tr>th,
	.table_box .table>tbody>tr>td, 
	.table_box .table>tfoot>tr>td, 
	.table_box .table>thead>tr>td {
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_box {
		background-color: #f0f0f0;
		padding: 0;
	}
	.table>tbody>tr>th, 
	.table>tfoot>tr>th, 
	.table>thead>tr>th,
	.table>tbody>tr>td, 
	.table>tfoot>tr>td, 
	.table>thead>tr>td {
		font-size: 12px;
	}
}
@media (min-width: 540px) and (max-width: 679px) {
	.history_filter {
		max-width: 475px;
	}
}
@media screen and (max-width: 539px) {
	.filter_row {
		margin-bottom: 30px;
	}
	.filter_btn {
		padding-bottom: 40px;
		text-align: center;
		margin-top: -20px;
	}
}
@media screen and (max-width: 519px) {
	.table_total .table>tbody>tr>td, 
	.table_total .table>tfoot>tr>td, 
	.table_total .table>thead>tr>td {
		font-size: 12px;
		padding: 10px;
	}
}
/* HISTORY PAGE END */





/* MY REFFERALS PAGE */
.my_refferals_img {
	margin: 0 auto 10px;
	max-width: 298px;
	width: 90%;
}
/* -------------------- */
.ref_upline {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	line-height: 1.42857;
	margin: 0 auto 25px;
	text-align: center;
	font-size: 14px;
}
.ref_upline > span.color {
	color: #84b233;
}
/* -------------------- */
#ref_commission_table {
	margin: 0 auto 35px;
	max-width: 830px;
}
.waiting {
	color: #959595;
}
.activated {
	font-family: "OpenSansBold";
	color: #84b233; 
}
/* -------------------- */
#commission_total {
	text-align: center;
}
#ref_total {
	max-width: 650px;
	margin: 0 auto;
}
.total_list {
	padding-bottom: 30px;
	margin: 0 auto;
}
.total_list li {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	display: inline-block;
	padding: 0 30px 10px;
	line-height: 1.25;
	font-size: 16px;
}
/* -------------------- */
.refferals_filter {
	max-width: 475px;
	margin: 0 auto;
}
/* -------------------- */
h2.acc_subtitle {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 25px 0 20px;
	text-align: center;
	line-height: 1.25;
	font-size: 16px;
	margin: 0 auto;
}
/* -------------------- */
#transitions_table {
	max-width: 690px;
	margin: 0 auto;
}
#transitions_table.table_box {
	padding: 0 15px;
}
/* -------------------- */
#refferals_table {
	margin: 0 auto 25px;
	max-width: 690px;
}
#refferals_table.table_box {
	padding: 0 15px;
}
.ref_login {
	display: inline-block;
	text-align: left;
	min-width: 85px;
}
.table_mail {
	display: inline-block;
	position: relative;
}
.table_mail .blind {
	position: relative;
	cursor: pointer;
	z-index: 5;
	opacity: 1;
}
.table_mail.open .blind {
	opacity: 0;
}
.table_mail .mail_box {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	color: #2c2b2b;
	opacity: 0;
	z-index: 0;
	left: 50%;
	top: 50%;
}
.table_mail .mail_box a {
	color: #2c2b2b;
}
.table_mail.open .mail_box {
	opacity: 1;
	z-index: 5;
}

@media (min-width: 768px) and (max-width: 991px) {
	.refferals_filter .filter {
		float: left;
	}
	.refferals_filter .filter_btn {
		float: right;
	}
	h2.acc_subtitle {
		font-size: 14px;
	}
	.total_list li {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.refferals_filter .filter_btn {
		padding: 0;
	}
	#transitions_table.table_box,
	#refferals_table.table_box {
		padding: 0;
	}
}
@media screen and (max-width: 519px) {
	h2.acc_subtitle {
		font-size: 14px;
	}
	.total_list li {
		padding: 0 5px 10px;
		font-size: 14px;
	}
}
/* MY REFFERALS PAGE END */





/* PROMOTION TOOLS PAGE */
.banner_ta {
	display:block;
	width:100%;
	height:100%;
	background:none;
	border:none;
	text-align:center;
	resize:none;
	outline:none;
}
.promotionals_img {
	margin: 10px auto 30px;
	max-width: 342px;
	width: 90%;
}
/* -------------------- */
.promotionals_content {
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	z-index: 5;
}
/* -------------------- */
.reff_link_block {
	padding-right: 145px;
	margin-bottom: 40px;
	position: relative;
	max-width: 750px;
}
.reff_link_block .input-group-addon {
	padding: 7.5px 15px 7.5px 0;
	font-family: "OpenSansBold";
	text-transform: uppercase;
	background-color: #fff;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
	border-radius: 0;
	font-size: 14px;
	color: #333945;
	border: 0;
}
.ref_link_btn > .btn {
	width: 125px;
}
/* -------------------- */
.promotionals_content p.gen_text {
	line-height: 1.2143;
	margin-bottom: 17px;
}
/* -------------------- */
.banners_block {
	padding: 35px 15px 30px;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.banner_content {
	position: relative;
	padding: 35px 0 0;
	margin-top:20px;
}
.banner_content > .banner_size {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	font-family: "OpenSansBold";
	text-transform: uppercase;
	white-space: nowrap;
	position: absolute;
	line-height: 25px;
	font-size: 17px;
	padding: 5px 0;
	left: 50%;
	top: 0;
}
.banner_content .banner_box_wrap {
	position:relative;
	margin:0 auto;
}

.banner_content .banner_box_wrap > .banner_box {
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.23);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.23);
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.23);
	background-color: #f0f0f0;
	word-break: break-all;
	overflow-y: hidden;
	margin: 0 auto 5px;
	line-height: 15px;
	overflow-x: auto;
	font-size: 13px;
	padding: 5px;
	width:100%;
	height:100%;
}
.banner_link {
	max-width:90%;
	margin:0 auto;
}

.banner_btn button {
	max-width:100px;
}

.banner_btn .btn_content {
	padding:7px 0;
}

/* -------------------- */
#login_window_tools {
	min-height: 350px;
	display: none;
	width: 350px;
	top: 51px;
	right: 0;
}
#login_window_tools.home_window .form-group .form-control {
	padding: 7px 15px 7px 35px;
}

@media screen and (min-width: 520px) {
	.ref_link_btn {
		position: absolute;
		right: 0;
		top: 0;
	}
	.banner_content {
		padding: 35px 0;
	}
	.banner_content > .banner_btn {
		position: absolute;
		z-index: 5;
		bottom: 0;
		right: 0;
	}
}
@media screen and (max-width: 991px) {
	.reff_link_block .input-group-addon {
		display: block;
		width: auto;
	}
	.reff_link_block .input-group,
	.reff_link_block .input-group .form-control {
		display: block;
		width: 100%;
		float: none;
	}
	.ref_link_btn {
		top: 35px;
	}
}
@media screen and (max-width: 519px) {
	.reff_link_block,
	.reff_link_block .input-group-addon  {
		text-align: center;
		padding-right: 0;
	}
	.ref_link_btn {
		position: relative;
		top: 0;
	}
	.ref_link_btn .btn {
		margin-top: 15px;
	}
	#banner468 .banner_content {
		margin: 0 auto 20px;
	}
	#banner125 .banner_content {
		margin: 0 auto 20px;
		max-width: 100%;
	}
	#login_window_tools {
		margin-right: -175px;
		right: 50%;
		top: 65px;
	}
}
@media screen and (max-width: 389px) {
	#login_window_tools {
		margin-right: -140px;
		width: 280px;
		right: 50%;
		top: 65px;
	}
}
/* PROMOTION TOOLS PAGE END */





/* ACCOUNT PAGE */
.last_news_box {
	background-color: #f0f0f0;
	padding: 0 15px 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	text-align: center;
	min-height: 220px;
}
.last_new_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	padding: 17px 35px;
	line-height: 20px;
	min-height: 54px;
	font-size: 18px;
}
.last_new_title > .icon {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 25px;
	color: #fff;
	left: 0;
	top: 50%;
}
/* 20.03.2019 */
.last_new_title.updated_news .last_new_number {
	-webkit-animation: pulse 2.5s infinite;
  -moz-animation:    pulse 2.5s infinite;
  -o-animation:      pulse 2.5s infinite;
  animation:         pulse 2.5s infinite;
	display: block;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		box-shadow: 0 0 0 10px rgba(130,195,13, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0);
	}
}
@-moz-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		box-shadow: 0 0 0 10px rgba(130,195,13, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0);
	}
}
@-o-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		box-shadow: 0 0 0 10px rgba(130,195,13, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0);
	}
}
@keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 10px rgba(130,195,13, 0);
		box-shadow: 0 0 0 10px rgba(130,195,13, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		-moz-box-shadow: 0 0 0 0 rgba(130,195,13, 0);
		box-shadow: 0 0 0 0 rgba(130,195,13, 0);
	}
}
/* 20.03.2019 */
.last_new_number {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "OpenSansBold";
	background-color: #aad85a;
	position: absolute;
	border-radius: 50%;
	text-align: center;
	line-height: 22px;
	font-size: 14px;
	display: none;
	height: 22px;
	width: 22px;
	color: #fff;
	right: 5px;
	top: 50%;
}
/* -------------------- */
.last_new {
	text-align: left;
}
.last_new > .last_title {
	font-family: "OpenSansBold";
	line-height: 16px;
	font-size: 14px;
	padding: 5px 0;
}
.last_new > p {
	max-height: 56px;
	line-height: 14px;
	overflow: hidden;
	margin-bottom: 0;
	font-size: 12px;
}
.last_new > .last_date {
	margin-bottom: 5px;
	line-height: 20px;
	font-style: italic;
	font-size: 10px;
	display: block;
}
.last_news_box > .btn.btn-orange-smaller span.btn_content {
	padding: 10px 15px;
	min-width: 190px;
	font-size: 14px;
}
/* -------------------- */
.account_content {
	position: relative;
	min-height: 900px;
}
.account_content strong.block {
	font-family: "OpenSansBold";
	font-weight: normal;
}
.account_content .btn.btn-orange,
.user_info_box .btn.btn-orange {
	border-radius: 5px;
	color: #f0f0f0;
	border: 0;
}
.account_content span.btn_content.with_icon,
.user_info_box span.btn_content.with_icon {
	padding: 10px 35px 10px 0;
	position: relative;
	font-size: 14px;
	width: 194px;
}
.account_content span.btn_content.with_icon > .btn_icon,
.user_info_box span.btn_content.with_icon > .btn_icon {
	position: absolute;
	height: 100%;
	width: 34px;
	right: 0;
	top: 0;
}
.account_content span.btn_content.with_icon > .btn_icon > img,
.user_info_box span.btn_content.with_icon > .btn_icon > img {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	width: 17px;
	left: 50%;
	top: 50%;
}
.user_info_box span.btn_content.with_icon > .btn_icon > img {
	width: 14px;
}
/* -------------------- */
.user_info_box {
	background-color: #f0f0f0;
	padding-bottom: 15px;
	text-align: center;
}
.user_about {
	background-color: #f0f0f0;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.user_about::after,
.user_about::before {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	position: absolute;
	height: 280px;
	width: 280px;
	content: "";
	bottom: 0;
	left: 50%;
}
.user_about::after {
	background: url(../img/bg/user-bg.jpg) center bottom no-repeat;
	-webkit-background-size: 220px;
	background-size: 220px;
	opacity: 0.7;
	z-index: 2;
}
.user_about::before {
	background-color: rgba(157, 157, 157, 0.6);
	z-index: 3;
}
/* -------------------- */
.user_content {
	padding: 0 5px 35px;
	position: relative;
	text-align: center;
	min-height: 175px;
	color: #fff;
	z-index: 5;
}
.user_content::after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	border: 3px solid #f0f0f0;
	border-radius: 50%;
	position: absolute;
	height: 280px;
	width: 280px;
	content: "";
	bottom: 5px;
	left: 50%;
}
/* -------------------- */
.user_name { 
	height: 65px;
}
.user_name img {
	height: 31px;
	width: 31px;
}
.user {
	-webkit-text-shadow: 0px 1px 0.86px rgba(0, 0, 0, 0.47); 
	-moz-text-shadow: 0px 1px 0.86px rgba(0, 0, 0, 0.47); 
	text-shadow: 0px 1px 0.86px rgba(0, 0, 0, 0.47);
	font-family: "OpenSansBold";
	display: inline-block;
	line-height: 31px;
	font-size: 18px;
	padding: 0 5px;
}
.user_amount {
	border-bottom: 1px solid #bebebe;
	border-top: 1px solid #bebebe;
	margin: 0 auto 15px;
	line-height: 28px;
	font-size: 18px;
	max-width: 210px;
	color: #f0f0f0;
	height: 30px;
}
.user_type {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	display: inline-block;
	border-radius: 2.5px;
	padding: 5px 10px;
	line-height: 20px;
	font-size: 12px;
}
#basic-user .user_type {
	background: rgba(234,232,232,1);
	background: -moz-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(234,232,232,1)), color-stop(100%, rgba(150,150,150,1)));
	background: -webkit-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -o-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: -ms-linear-gradient(top, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	background: linear-gradient(to bottom, rgba(234,232,232,1) 0%, rgba(150,150,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae8e8', endColorstr='#969696', GradientType=0 );
	color: #fff;
}
#representative-user .user_type {
	background: rgba(175,222,94,1);
	background: -moz-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(175,222,94,1)), color-stop(100%, rgba(133,174,56,1)));
	background: -webkit-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -o-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: -ms-linear-gradient(top, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	background: linear-gradient(to bottom, rgba(175,222,94,1) 0%, rgba(133,174,56,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#afde5e', endColorstr='#85ae38', GradientType=0 );
	color: #f0f0f0;
}
/* -------------------- */
#basic-user #acc_update_btn {
/*	display: inline-block;*/
	opacity:1;
}
#representative-user #acc_update_btn {
/*	display: none;*/
	opacity:0;
}
/* -------------------- */
.user_btn {
	padding: 32px 0 30px;
}
.user_btn > span {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	line-height: 20px;
	padding: 10px 0;
}
.user_btn .btn {
	margin: 0 5px;
}
/* -------------------- */
.user_info_list {
	display: inline-block;
	margin: 0 auto;
}
.user_info_list li {
	text-transform: uppercase;
	margin-bottom: 24px;
	padding-left: 45px;
	position: relative;
	line-height: 18px;
	text-align: left;
	font-size: 14px;
}
.user_info_list li:last-child {
	margin-bottom: 0;
}
.user_info_list .icon {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	border-radius: 3px;
	height: 36px;
	width: 36px;
	left: 0;
	top: 50%;
}
/* -------------------- */
.acc_details_img {
	max-width: 430px;
	margin: 0 auto;
	width: 80%;
}
/* -------------------- */
.acc_details_btn {
	padding: 35px 0 20px;
	text-align: center;
}
.acc_details_btn .btn {
	margin: 0 15px 15px;
}
/* -------------------- */
.account_more {
	background: #f0f0f0 url(../img/acc-more-bg.png) center bottom no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin: 0 auto 10px;
	border-radius: 5px;
	min-height: 350px;
	max-width: 515px;
	padding: 0 15px;
}
.acc_top_info {
	padding: 30px 0 25px;
	text-align: center;
	margin: 0 auto;
}
.line {
	background-color: #d9dde0;
	max-width: 465px;
	margin: 0 auto;
	height: 1px;
}
.acc_balance {
	vertical-align:top;
	display: inline-block;
	margin: 0 20px 0 0;
	max-width: 220px;
	width: 100%;
}
.acc_balance ul li {
	line-height: 14px;
	text-align: left;
	font-size: 12px;
	float: left;
	width: 50%;
}
.account_more_title {
	text-transform: uppercase;
	margin-bottom: 12px;
	position: relative;
	padding-left: 38px;
	line-height: 17px;
	text-align: left;
	height: 34px;
}
.account_more_title .icon {
	position: absolute;
	height: 32px;
	width: 32px;
	top: 2px;
	left: 0;
}
.account_more_title strong {
	font-family: "OpenSansBold";
	font-weight: normal;
	font-size: 14px;
}
.account_more_title span {
	font-size: 12px;
}
/* -------------------- */
.acc_balance_total {
	vertical-align:top;
	display: inline-block;
	padding-top:8px;
}
/* -------------------- */
.acc_bottom_info {
	padding: 25px 0 10px;
	max-width: 395px;
	margin: 0 auto;
}
.acc_bottom_info li {
	margin-right: 10px;
	float: left;
}
.acc_bottom_info li .account_more_title {
	height: auto;
}
.date_info > span {
	text-transform: none;
	line-height: 12px;
	font-size: 10px;
}
/* -------------------- */
.account_more_upline {
	background-color: #f0f0f0;
	padding: 10px 20px;
	border-radius: 5px;
	line-height: 18px;
	text-align: left;
	min-height: 50px;
	max-width: 515px;
	font-size: 14px;
	margin: 0 auto;
}
.acc_up_line {
	text-transform: uppercase;
	padding: 7px 5px 7px 0;
	overflow: hidden;
}
.acc_ref_link {
	padding: 7px 5px 7px 0;
	overflow: hidden;
}
.acc_ref_link strong {
	text-transform: uppercase;
}
.acc_up_line_btn {
	text-align: right;
	padding: 10px 0;
}
.acc_up_line_btn .btn.btn-silver span.btn_content {
	padding: 5px 7px;
}

@media screen and (min-width: 992px) {
	.account_content {
		padding-left: 235px;
	}
	.user_info_box {
		position: absolute;
		width: 220px;
		top: 75px;
		left: 0;
	}
}
@media screen and (min-width: 1200px) {
	.account_more_upline {
		padding: 0 0 0 30px;
	}
	.acc_up_line {
		padding: 7px 5px 7px 0;
		float: left;
		width: 29%;
	}
	.acc_ref_link {
		padding: 7px 5px 7px 0;
		float: left;
		width: 49%;
	}
	.acc_up_line_btn {
		padding: 10px 0;
		float: left;
	}
	.acc_up_line_btn .btn.btn-silver span.btn_content {
		padding: 5px 7px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.acc_balance {
		margin-right: 0;
	}
}
@media screen and (max-width: 991px) {
	.user_info_box {
		margin: 0 auto 50px;
		max-width: 270px;
	}
	.user_about::after {
		-webkit-background-size: 270px;
		background-size: 270px;
	}
}
@media screen and (max-width: 519px) {
	.acc_balance,
	.acc_balance_total {
		max-width: 395px;
		margin: 0 auto;
		display: block;
	}
	.acc_balance {
		margin-bottom: 20px;
	}
}
/* ACCOUNT PAGE END */





/* ACCOUNT SETTINGS PAGE */
.acc_settings_content {
	padding-bottom: 50px;
	max-width: 780px;
	margin: 0 auto;
}
.acc_settings_content p.gen_text {
	margin-bottom: 17px;
	line-height: 1.2143;
}
/* -------------------- */
.acc_settings_img {
	margin: 0 auto 70px;
	max-width: 331px;
	width: 90%;
}
/* -------------------- */
.sett_code_block {
	position: relative;
	margin-top: 40px;
}
.sett_code_block .input-group-addon {
	padding: 7.5px 15px 7.5px 0;
	font-family: "OpenSansBold";
	background-color: #fff;
	font-weight: normal;
	line-height: 20px;
	text-align: left;
	border-radius: 0;
	font-size: 14px;
	color: #333945;
	border: 0;
}
.sett_code_block .input-group .form-control {
	background-color: #fff;
	border-color: #8dce47;
}
.sett_code_btn > .btn {
	width: 115px;
}

@media screen and (min-width: 450px) {
	.sett_code_block {
		padding-right: 155px;
		max-width: 410px;
	}
	.sett_code_btn {
		position: absolute;
		right: 0;
		top: 0;
	}
}
@media (min-width: 450px) and (max-width: 480px) {
	.sett_code_block {
		padding-right: 135px;	
	}
}
@media screen and (max-width: 449px) {
	.sett_code_block {
		text-align: center;
	}
	.sett_code_block .input-group-addon {
		text-align: center;
		padding-right: 0;
		display: block;
		width: auto;
	}
	.sett_code_block .input-group,
	.sett_code_block .input-group .form-control {
		display: block;
		width: 100%;
		float: none;
	}
	.sett_code_btn {
		padding-top: 15px;
	}
}
/* ACCOUNT SETTINGS PAGE END */





/* ACCOUNT SETTINGS MAIN PAGE */
.acc_settings_main_content .acc_settings_img {
	margin-bottom: 45px;
}
/* -------------------- */
.main_settings {
	position: relative;
}
/* -------------------- */
.main_set_main {
	padding-bottom: 10px;
	text-align: center;
}
.main_set_main .reg_box h2 {
	margin-bottom: 20px;
	height: 40px;
}
.main_set_main .reg_box .form-group {
	margin: 0 auto 10px;
	max-width: 270px;
}
.main_set_main .big_capcha {
	display: inline-block;
	padding-right: 5px;
	max-width: 100%;
}

@media screen and (min-width: 1200px) {
	.main_set_main {
		text-align: right;
	}
	.main_set_main .big_capcha .capcha_box {
		margin-right: 20px;
		float: left;
	}
	.main_set_main .big_capcha .capcha_enter_box {
		margin-right: 25px;
		float: left;
	}
	.main_set_main .big_capcha .btn {
		width: 200px;
		float: left;
	}
}
@media screen and (min-width: 992px) {
	.main_settings {
		padding-left: 235px;
	}
	.main_settings .user_info_box {
		top: 0;
	}
}
@media screen and (max-width: 1199px) {
	.main_set_main .big_capcha .btn {
		margin: 10px auto 0;
		width: 200px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.main_set_main .reg_box h2 {
		padding-left: 50px;
		line-height: 18px;
		font-size: 15px;
	}
}
@media screen and (max-width: 767px) {
	.main_set_main .big_capcha {
		text-align: right;
		max-width: 200px;
	}
	.main_set_main .big_capcha .capcha_box,
	.main_set_main .big_capcha .capcha_enter_box {
		display: inline-block;
		min-height: 40px;
		float: none;
	}
}
/* ACCOUNT SETTINGS MAIN PAGE END */





/* WITHDRAW PAGE */
.withdraw_img {
	margin: 0 auto 10px;
	max-width: 324px;
	width: 90%;
}
/* -------------------- */
.withdraw_more {
	background: #f0f0f0 url(../img/withdraw-more-bg.png) center bottom no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	min-height: 455px;
	padding: 0 15px;
}
/* -------------------- */
#withdraw_info {
	display: none;
}
#withdraw_info.active {
	display: block;
}
.withdraw_top {
	border-bottom: 1px solid #cdd2d8;
	padding: 30px 0 25px;
}
.withdraw_balance {
	padding: 50px 0 20px;
}
.withdraw_balance ul {
	margin-bottom: 0;
}
.withdraw_balance li {
	margin-bottom: 20px;
	line-height: 24px;
	min-height: 24px;
	font-size: 17px;
	clear: both;
}
.withdraw_balance li > div {
	overflow: hidden;
	min-height: 24px;
	float: left;
}
.withdraw_balance li > div.withdraw_label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-right: 25px;
	text-align: right;
	width: 220px;
}
.withdraw_balance li > div.withdraw_amount {
	text-align: left;
	width: 95px;
}
/* -------------------- */
.withdraw_payments ul {
	margin-bottom: 0;
}
.withdraw_payments li {
	line-height: 24px;
	font-size: 15px;
	clear: both;
}
.withdraw_payments li > div {
	overflow: hidden;
	min-height: 24px;
	float: left;
} 
.withdraw_payments li > div.withdraw_label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	margin-right: 25px;
	text-align: right;
	width: 130px;
}
.withdraw_payments li > div.withdraw_acc {
	display:block;
	position:relative;
	margin-right: 10px;
	text-align: left;
	width: 100px;
}
.withdraw_payments li.ps_address > div.withdraw_acc {
	display:inline-block;
	position:absolute;
	width:auto;
}
.withdraw_payments li > div.withdraw_amount {
	display:block;
	text-align: left;
	width: 90px;
}
.withdraw_payments li.ps_address > div.withdraw_amount {
	display:none;
	text-align: left;
	width: 90px;
}
/* -------------------- */
.withdraw_bottom {
	max-width: 640px;
	padding: 10px 0;
	margin: 0 auto;
}
.withdraw_box {
	margin: 0 auto 30px;
	text-align: center;
	line-height: 18px;
	font-size: 15px;
	max-width: 150px;
}
.witdraw_icon {
	margin: 0 auto;
	height: 106px;
	width: 106px;
}
.withdraw_input .form-control {
	margin: 4px auto 0;
	max-width: 90px;
}
.withdraw_input select.form-control {
	margin: 4px auto 0;
	max-width: 135px;
}
.withdraw_input .form-control,
.withdraw_input select.form-control {
	background-color: #fff;
	border-color: #89cd40;
	padding: 6.5px 5px;
	text-align: center;
	line-height: 20px;
	border-radius: 0;
}
.withdraw_input select.form-control {
	padding: 6.5px 30px 6.5px 5px;
	-webkit-appearance: none;
	background-image: url("../img/calc-select-arrow.png");
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	/* for FF */
	-moz-appearance: none;
	text-indent: 0.01px; 
	text-overflow: '';
	/* for IE */
	-ms-appearance: none;
	appearance: none!important;
}
.withdraw_box .btn {
	margin-top: 10px;
	width: 100%;
}
.withdraw_box .btn.btn-marsh span.btn_content {
	padding: 22.5px 15px;
}
/* -------------------- */
#withdraw_confirm {
	text-align: center;
	padding: 135px 0;
	display: none;
}
#withdraw_confirm.active {
	display: block;
}
.withdraw_conf_sheme {
	display: inline-block;
	margin: 0 auto;
}
.w_confirm_step {
	overflow: hidden;
	padding: 0 15px;
	float: left;
}
.w_confirm_step ul {
	margin: 0 auto;
}
.w_confirm_step ul li {
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 16px;
	text-align: left;
	font-size: 14px;
}
.w_confirm_step ul li strong.block {
	font-family: "OpenSansBold";
	font-weight: normal;
}
#step3.w_confirm_step ul li span.block {
	text-transform: none;
}
#step3.w_confirm_step ul li .btn {
	max-width: 150px;
	width: 100%;
}

.red {
	color:red;
	font-weight:bold;
}

@media screen and (min-width: 520px) {
	.step_icon {
		max-width: 140px;
		margin: 0 auto;
	}
	.step_icon > .icon {
		margin: 0 auto 10px;
		position: relative;
		height: 30px;
		width: 34px;
	}
	.step_icon > .icon::after,
	.step_icon > .icon::before {
		background-color: #a1ce51;
		position: absolute;
		margin-top: -1.5px;
		width: 1000%;
		content: "";
		height: 3px;
		top: 50%;
	}
	.step_icon > .icon::after {
		left: 100%;
	}
	.step_icon > .icon::before {
		right: 100%;
	}
	#step1 .step_icon > .icon {
		padding-left: 2px;
	}
	#step1 .step_icon > .icon::before {
		display: none;
	}
	#step3 .step_icon > .icon {
		padding-right: 2px;
	}
	#step3 .step_icon > .icon::after {
		display: none;
	}
	#step3 .step_icon {
		margin: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.withdraw_balance li > div {
		float: none;
	}
	.withdraw_balance li > div.withdraw_label,
	.withdraw_balance li > div.withdraw_amount {
		text-align: left;
		width: 100%;
	}
	.withdraw_payments li > div.withdraw_label {
		text-align: left;
		margin-right: 0;
		float: none;
		width: 100%;
	}
}
@media (min-width: 450px) and (max-width: 991px) {
	.withdraw_top {
		text-align: center;
		padding-top: 0;
	}
	.withdraw_balance,
	.withdraw_payments {
		display: inline-block;
	}
}
@media (min-width: 520px) and (max-width: 991px) {
	.w_confirm_step {
		padding: 0 10px;
	}
	.w_confirm_step ul li {
		font-size: 12px;
	}
	#step3.w_confirm_step ul li {
		max-width: 150px;
	}
}
@media screen and (max-width: 519px) {
	.w_confirm_step {
		position: relative;
		padding-left: 45px;
		float: none;
	}
	.w_confirm_step ul {
		margin: 0 auto 30px;
	}
	.w_confirm_step ul li {
		margin-bottom: 10px;
	}
	.step_icon {
		position: absolute;
		left: 0;
		top: 0;
	}
	.step_icon > .icon {
		position: relative;
		height: 30px;
		width: 34px;
	}
	.step_icon > .icon > img {
		opacity: 0;
	}
	.step_icon > .icon::after {
		background-color: #a1ce51;
		position: absolute;
		margin-left: -1.5px;
		height: 1000%;
		content: "";
		left: 50%;
		width: 3px;
		top: 100%;
	}
	#step1 .step_icon > .icon,
	#step2 .step_icon > .icon {
		background: url(../img/step-mobile-icon.png) center no-repeat;
		-webkit-background-size: contain;
		background-size: contain;
	}
	#step3 .step_icon > .icon {
		background: url(../img/step3-mobile-icon.png) center no-repeat;
		-webkit-background-size: contain;
		background-size: contain;
	}
	#step3 .step_icon > .icon::after {
		display: none;
	}
}
@media screen and (max-width: 449px) {
	.withdraw_top {
		max-width: 240px;
		margin: 0 auto;
	}
	.withdraw_balance {
		padding-top: 0;
	}
	.withdraw_balance li > div {
		float: none;
	}
	.withdraw_balance li > div.withdraw_label,
	.withdraw_balance li > div.withdraw_amount {
		text-align: left;
		width: 100%;
	}
	.withdraw_payments li > div.withdraw_label {
		text-align: left;
		margin-right: 0;
		float: none;
		width: 100%;
	}
}
/* WITHDRAW PAGE END */





/* DEPOSIT CONFIRMATION PAGE */
#coin_payment_image, .qr_code img{
	width:120px;
	height:120px;
}
.clock_number {
	float:left;
	letter-spacing:2px;
}
.deposit_confirm_img {
	margin: 10px auto 20px;
	max-width: 338px;
	width: 90%;
}
/* -------------------- */
.process_crypt {
	background: #f0f0f0 url(../img/process-crypt-bg.png) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 30px 25px 40px;
	margin: 0 auto 60px;
	position: relative;
	border-radius: 4px;
	max-width: 530px;
}
.deposit_crypt_top {
	border-bottom: 1px solid #cfd5da;
	padding-bottom: 10px;
	position: relative;
}
.dep_info_list {
	max-width: 360px;
	margin: 0 auto;
}
.dep_info_list li {
	line-height: 18px;
	min-height: 25px;
	font-size: 14px;
}
.dep_info_list li .dep_proc_label,
.dep_info_list li .dep_proc_amount {
	padding-bottom: 7px;
	float: left;
	width: 50%;
}
.dep_info_list li .dep_proc_label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
}
.dep_info_list li .dep_proc_amount {
	clear: right;
}
.deposit_crypt_bottom {
	position: relative;
	text-align: center;
	padding-top: 15px;
}
.deposit_crypt_icon {
	margin: -37px 0 0 -37px;
	position: absolute;
	height: 74px;
	width: 74px;
	left: 50%;
	top: 100%;
}
/* -------------------- */
#deposit-crypt-process {
	display: none;
}
#deposit-crypt-process.active {
	display: block;
}
#deposit-crypt-process .deposit_crypt_top {
	padding-right: 120px;
}
.qr_box {
	position: absolute;
	text-align: center;
	width: 120px;
	right: 0;
	top: 0;
}
.qr_timer {
	font-family: "OpenSansBold";
	padding: 6px 0 6px 22px;
	display: inline-block;
	position: relative;
	line-height: 20px;
	font-size: 18px;
}
.qr_timer > img {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 17px;
	top: 50%;
	left: 0;
}
.deposit_crypt_numb {
	text-transform: uppercase;
	line-height: 22px;
}
.deposit_crypt_numb > span.block {
	font-family: "OpenSansBold";
	font-size: 12px;
}
.crypt_numb {
	display: block;
}
.crypt_numb > span {
	font-family: "OpenSansBold";
	text-decoration: underline;
	font-size: 16px;
}
.crypt_numb > span.crypt_cyrrent {
	font-family: "OpenSansRegular";
	text-decoration: none;
	font-size: 14px;
	padding: 0 5px;
}
.deposit_crypt_wallet {
	text-decoration: underline;
	padding: 8px 0 16px;
	font-size: 14px;
	line-height: 1;
}
.deposit_crypt_massege {
	font-family: "OpenSansBold";
	line-height: 18px;
	font-size: 12px;
}
/* -------------------- */
#deposit-crypt-confirm {
	display: none;
}
#deposit-crypt-confirm.active {
	display: block;
}
.crypt_status_icon {
	margin: 0 auto 10px;
	max-width: 65px;
}
.crypt_status {
	font-family: "OpenSansBold";
	overflow: auto;
	line-height: 17px;
	font-size: 10px;
}
.crypt_status > .status_massege {
	font-size: 12px;
}
/* -------------------- */
#deposit-pay-process {
	display: none;
}
#deposit-pay-process.active {
	display: block;
}
.process_crypt_small {
	background: #f0f0f0 url(../img/process-crypt-small-bg.png) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 35px 25px 40px;
	margin: 40px auto 80px;
	position: relative;
	border-radius: 4px;
	max-width: 430px;
}
.process_crypt_small .deposit_crypt_top {
	padding-bottom: 5px;
	border-bottom: 0;
}
.depos_pay_btn {
	text-align: center;
}
.depos_pay_btn .btn {
	margin: 0 15px 15px;
	min-width: 130px;
}
/* -------------------- */
#deposit-pay-confirm {
	display: none;
}
#deposit-pay-confirm.active {
	display: block;
}
.depos_pay_conf_icon {
	margin: -22px auto 0;
	max-width: 85px;
}
.depos_pay_conf_massege {
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	padding: 20px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
	.dep_info_list li {
		font-size: 12px;
	}
}
@media (min-width: 520px) and (max-width: 767px) {
	.process_crypt {
		padding: 20px 15px 30px;
	}
}
@media screen and (max-width: 519px) {
	#deposit-crypt-process .deposit_crypt_top {
		padding-right: 0;
	}
	.qr_box {
		position: relative;
		margin: 20px auto 0;
		right: auto;
	}
}
@media screen and (max-width: 469px) {
	.dep_info_list li {
		margin-bottom: 10px;
	}
	.dep_info_list li .dep_proc_label,
	.dep_info_list li .dep_proc_amount {
		padding-bottom: 2px;
		float: none;
		width: 100%;
	}
}
/* DEPOSIT CONFIRMATION PAGE END */





/* MY DEPOSITS PAGE */
.deposits_content {
	padding: 20px 0 40px;
	max-width: 750px;
	margin: 0 auto;
}
/* -------------------- */
.deposit_gen_block {
	margin-bottom: -3px;
}
.deposit_about {
	border: 3px solid #797777;
	background-color: #fff;
	position: relative;
	border-radius: 8px;
	padding: 5px;
	z-index: 3;
}
.deposit {
	border-radius: 3px;
	text-align: right;
	min-height: 58px;
	padding: 0 15px;
}
/* -------------------- */
#deposit-position-1 {
	position: relative;
	z-index: 19;
}
#deposit-position-2 {
	position: relative;
	z-index: 18;
}
#deposit-position-3 {
	position: relative;
	z-index: 17;
}
#deposit-position-4 {
	position: relative;
	z-index: 16;
}
#deposit-position-5 {
	position: relative;
	z-index: 15;
}
#deposit-position-6 {
	position: relative;
	z-index: 14;
}
#deposit-position-7 {
	position: relative;
	z-index: 13;
}
#deposit-position-8 {
	position: relative;
	z-index: 12;
}
#deposit-position-9 {
	position: relative;
	z-index: 11;
}
#deposit-position-10 {
	position: relative;
	z-index: 10;
}
#deposit-position-11 {
	position: relative;
	z-index: 9;
}
#deposit-position-12 {
	position: relative;
	z-index: 8;
}
#deposit-position-13 {
	position: relative;
	z-index: 7;
}
#deposit-position-14 {
	position: relative;
	z-index: 6;
}
#deposit-position-15 {
	position: relative;
	z-index: 5;
}
#deposit-position-16 {
	position: relative;
	z-index: 4;
}
#deposit-position-17 {
	position: relative;
	z-index: 3;
}
#deposit-position-18 {
	position: relative;
	z-index: 2;
}
#deposit-position-19 {
	position: relative;
	z-index: 1;
}
#deposit-position-1 .deposit {
	background: url(../img/plans-bg/deposit-position-1.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-2 .deposit {
	background: url(../img/plans-bg/deposit-position-2.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-3 .deposit {
	background: url(../img/plans-bg/deposit-position-3.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-4 .deposit {
	background: url(../img/plans-bg/deposit-position-4.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-5 .deposit {
	background: url(../img/plans-bg/deposit-position-5.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-6 .deposit {
	background: url(../img/plans-bg/deposit-position-6.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-7 .deposit {
	background: url(../img/plans-bg/deposit-position-7.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-8 .deposit {
	background: url(../img/plans-bg/deposit-position-8.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-9 .deposit {
	background: url(../img/plans-bg/deposit-position-9.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-10 .deposit {
	background: url(../img/plans-bg/deposit-position-10.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-11 .deposit {
	background: url(../img/plans-bg/deposit-position-11.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-12 .deposit {
	background: url(../img/plans-bg/deposit-position-12.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-13 .deposit {
	background: url(../img/plans-bg/deposit-position-13.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-14 .deposit {
	background: url(../img/plans-bg/deposit-position-14.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-15 .deposit {
	background: url(../img/plans-bg/deposit-position-15.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-16 .deposit {
	background: url(../img/plans-bg/deposit-position-16.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-17 .deposit {
	background: url(../img/plans-bg/deposit-position-17.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-18 .deposit {
	background: url(../img/plans-bg/deposit-position-18.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
#deposit-position-19 .deposit {
	background: url(../img/plans-bg/deposit-position-19.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
/* -------------------- */
.deposit_left {
	padding: 6px 0;
	width: 400px;
}
.deposit_name {
	background: url(../img/deposit-monogram-top.png) center top no-repeat, url(../img/deposit-monogram-bottom.png) center bottom no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	font-family: "OpenSansBold";
	text-transform: uppercase;
	text-align: center;
	position: relative;
	margin-right: 25px;
	font-size: 22px;
	padding: 12px 0;	
	line-height: 1;
	height: 46px;
	width: 145px;
	float: left;
}
.deposit_profit {
	line-height: 14px;
	overflow: hidden;
	text-align: left;
	font-size: 12px;
	padding: 6px 0;
	float: left;
}
.deposit_profit span.block {
	line-height: 20px;
	font-size: 18px;
	font-family: "OpenSansSemiBold";
}
/* -------------------- */
.deposit_right {
	padding: 9px 0;
	width: 300px;
}
.deposit_right .btn {
	width: 100%;
}
.depos_plan {
	position: relative;
	width: 120px;
	z-index: 5;
}
.depos_details {
	position: relative;
	width: 165px;
}
.depos_details > .btn.btn-marsh span.btn_content {
	padding: 10px 15px;
}
/* -------------------- */
.plan_window {
	-webkit-box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	background-color: #fff;
	padding: 0 15px 15px;
	border-radius: 5px;
	position: absolute;
	margin-top: 10px;
	font-size: 14px;
	overflow: auto;
	height: 460px;
	width: 510px;
	top: 100%;
	left: 0;
}
.plan_window_title {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	padding: 15px 0;
}
.plan_window_subtitle {
	font-family: "OpenSansBold";
	text-align: center;
	line-height: 20px;
}
.plan_window_list {
	margin-bottom: 0;
}
.plan_window_list li {
	padding-left: 15px;
	position: relative;
	text-align: left;
}
.plan_window_list li::after {
	background-color: #a0cc50;
	border-radius: 50%;
	position: absolute;
	content: "";
	height: 7px;
	width: 7px;
	top: 7px;
	left: 0;
}
.plan_window_list li strong {
	font-family: "OpenSansBold";
	font-weight: normal;
	line-height: 21px;
}

@media screen and (max-height: 560px) {
	.plan_window {
		height: 400px;
	}
}
@media screen and (max-height: 490px) {
	.plan_window {
		height: 340px;
	}
}
@media screen and (max-height: 430px) {
	.plan_window {
		height: 280px;
	}
}
@media screen and (max-height: 370px) {
	.plan_window {
		height: 280px;
	}
}
@media screen and (max-height: 320px) {
	.plan_window {
		height: 240px;
	}
}
/* -------------------- */
.details_window {
	-webkit-box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	box-shadow: 0px 9px 11.7px 3.3px rgba(0, 0, 0, 0.6);
	background-color: #fff;
	padding: 20px 15px;
	border-radius: 5px;
	position: absolute;
	margin-top: 10px;
	overflow: auto;
	width: 390px;
	top: 100%;
	right: 0;
}
.details_window .table_box span.block {
	font-family: "OpenSansBold";
	font-size: 15px;
}

@media screen and (max-height: 420px) {
	.details_window {
		height: 360px;
	}
}
@media screen and (max-height: 380px) {
	.details_window {
		height: 320px;
	}
}
@media screen and (max-height: 320px) {
	.details_window {
		height: 240px;
	}
}
/* -------------------- */
.window_table.table_box {
	padding: 10px 10px 20px;
	margin-bottom: 20px;
}
.table_box_wrap {
	 max-height:280px;
	 overflow-y:auto;
}
.window_table.table_box .table>tbody>tr>td, 
.window_table.table_box .table>tfoot>tr>td, 
.window_table.table_box .table>thead>tr>td {
	line-height: 20px;
	padding: 5px 8px;
	text-align: left;
}
.window_table.table_box .table>tbody>tr:first-child>td:last-child, 
.window_table.table_box .table>tfoot>tr:first-child>td:last-child, 
.window_table.table_box .table>thead>tr:first-child>td:last-child {
	font-size: 12px;
}
.window_total_table.table_box {
	background-color: #fff;
	margin: 0 0 0 auto;
	margin-bottom: 0;
	max-width: 300px;
	padding: 10px 0;
}
.window_total_table.table_box .table>tbody>tr, 
.window_total_table.table_box .table>tfoot>tr, 
.window_total_table.table_box .table>thead>tr {
	background-color: #fff;
}
.window_total_table.table_box .table>tbody>tr>td, 
.window_total_table.table_box .table>tfoot>tr>td, 
.window_total_table.table_box .table>thead>tr>td {
	padding: 0 15px 0 0;
	line-height: 20px;
	text-align: left;
}

@media screen and (min-width: 1200px) {
	.plan_window {
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		right: auto;
		left: 50%;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.deposit_left {
    width: 365px;
	}
	.deposit_name {
		margin-right: 15px;
		width: 135px;
	}
	.deposit_profit {
		font-size: 12px;
	}
	.deposit_profit span.block {
		font-size: 16px;
	}
	.deposit_right {
		width: 240px;
	}
	.depos_details {
		width: 105px;
	}
	.plan_window {
		left: auto;
		right: 0;
	}
}
@media screen and (max-width: 991px) and (min-width: 430px) {
	.plan_window,
	.details_window {
		width: 390px;
	}
	.plan_window .calculate_form {
		margin: 0 auto;
		width: 230px;
	}
	.plan_window .calc_total,
	.plan_window .calc_inputs_list li:nth-child(odd),
	.plan_window .calc_inputs_list li:nth-child(even) {
		margin-bottom: 10px;
		width: 230px;
		float: none;
	}

	#side_calc_return_wrap, .calc_return_field_wrap {
		width:264px !important;
	}
	
	#side_calc_return_wrap label, .calc_return_field_wrap label {
		width:151px !important;
	}

	#.calc_return_field {
		width:124px;
	}
	
	#side_calc_return {
		width:124px;
	}
}
@media screen and (max-width: 991px) {
	.deposit_left,
	.deposit_right {
    width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.window_total_table.table_box {
		padding: 0;
	}
	.window_total_table.table_box .table-responsive {
		border: 0;
	}
}
@media screen and (max-width: 519px) {
	.deposit {
		text-align: center;
	}
	.deposit_name {
		margin: 0 auto 5px;
		float: none;
	}
	.deposit_profit {
		text-align: center;
		float: none;
	}
	.deposit_right {
		padding: 0;
	}
	.deposit_right .btn {
		width: 165px;
	}
	.depos_plan,
	.depos_details {
		margin: 0 0 10px;
		padding: 0 10px;
		width: 100%;
	}
	.plan_window,
	.details_window {
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		right: auto;
		left: 50%;
	}
	.details_window .table_box span.block {
		font-size: 12px;
	}
	.window_table.table_box {
		margin-bottom: 20px;
		padding: 0;
	}
}
@media screen and (max-width: 429px) {
	.plan_window,
	.details_window {
		width: 280px;
	}
	.plan_window .calc_input {
    width: 230px;
	}
}
/* MY DEPOSITS PAGE END */





/* MAKE DEPOSIT PAGE */
.choose_plan {
	background: #f0f0f0 url(../img/acc-more-bg.png) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 0 30px 5px;
	position: relative;
	margin: 0 5px 3px;
	max-width: 730px;
	z-index: 1;
}
.choose_plan_list {
	margin-bottom: 0;
	float: left;
}
.choose_plan_list li {
	margin-bottom: 1px;
	position: relative;
	padding: 9px 0;
	float: left;
	width: 50%;
}
.choose_plan_list li::after {
	background-color: #d0e2b0;
	position: absolute;
	width: 125px;
	height: 1px;
	content: "";
	top: 100%;
	left: 0;
}
.choose_plan_list li:last-child::after {
	display: none;
}
/* -------------------- */
.choose_plan_form {
	padding: 20px 0 20px 23px;
	float: left;
}
.choose_plan_row {
	position: relative;
}
.chhoose_plan_icon {
	position: absolute;
	margin-right: 6px;
	height: 13px;
	width: 13px;
	right: 100%;
	top: 11px;
}
.choose_plan_row label {
	font-family: "OpenSansBold";
	text-transform: uppercase;
	padding: 0 0 0 15px;
	font-weight: normal;
	text-align: center;
	line-height: 1.25;
	font-size: 14px;
	height: 35px;
}
.plan_input {
	float: left;
	width: 100px;
}
.plan_input .form-control,
.plan_input select.form-control {
	background-color: #fff;
	border-color: #89cd40;
	padding: 6.5px 5px;
	text-align: center;
	line-height: 20px;
	border-radius: 0;
}
.plan_input select.form-control {
	padding: 6.5px 30px 6.5px 5px;
	background-image: url("../img/calc-select-arrow.png");
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none!important;
}
.choose_plan_row .btn {
	min-width: 150px;
}

@media screen and (min-width: 1200px) {
	.choose_plan {
		margin: 0 auto 3px;
	}
	.choose_plan_list {
		max-width: 63%;
	}
	.choose_plan_list li {
		max-width: 210px;
		width: 50%;	
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.choose_plan_list {
		max-width: 70%;
	}
	.choose_plan_form {
		max-width: 175px;
	}
	.choose_plan_row label {
		padding: 0;
	}
	.plan_input {
		width: 100%;
	}
}
@media (min-width: 610px) and (max-width: 767px) {
	.choose_plan {
		padding: 0 15px 5px 25px;
	}
	.choose_plan_list {
		max-width: 65%;
	}
	.choose_plan_form {
		max-width: 175px;
	}
	.choose_plan_row label {
		padding: 0;
	}
	.plan_input {
		width: 100%;
	}
}
@media (min-width: 420px) and (max-width: 659px)  {
	.choose_plan {
		padding: 0 15px 5px;
	}
	.radio > input[type="radio"] + label {
		font-size: 12px;
	}
}
@media screen and (max-width: 419px) {
	.choose_plan_list {
		max-width: 175px;
		margin: 0 auto;
		float: none;
	}
	.choose_plan_list li {
		width: 100%;
		float: none;
	}
	.choose_plan_form {
		max-width: 175px;
		margin: 0 auto;
		float: none;
	}
	.choose_plan_row label {
		padding: 0;
	}
	.plan_input {
		width: 100%;
	}
}
/* MAKE DEPOSIT PAGE END */

/*CORRECTIONS*/

.radio.disabled, .radio.disabled input {
	cursor:default;
	color:#aaa;
}

.signup_upline_header {
	text-transform:uppercase;
	color:#9ccb4b;
	font-family:OpenSansBold;
	font-size:17px;
	margin-top:27px;
	text-align:left;
}
/*END CORRECTIONS*/

.create_account_button_on_login_page {
	border:0 !important;
	border-radius:3px !important;
}

.create_account_button_on_login_page .btn_content {
	padding:7px 0 !important;
}