@font-face {
	font-family: 'OpenSans';
	src: url('../../assets_lib/fonts/opensans/Regular/OpenSans-Regular.woff2') format('woff2'),
		url('../../assets_lib/fonts/opensans/Regular/OpenSans-Regular.woff') format('woff'),
		url('../../assets_lib/fonts/opensans/Regular/OpenSans-Regular.ttf')  format('truetype'),
		url('../../assets_lib/fonts/opensans/Regular/OpenSans-Regular.svg#svgFontName') format('svg');
	font-weight: 400;
}
@font-face {
	font-family: 'OpenSans-Semibold';
	src: url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.woff2') format('woff2'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.woff') format('woff'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.ttf')  format('truetype'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.svg#svgFontName') format('svg');
	font-weight: 600;
}
@font-face {
	font-family: 'OpenSans';
	src: url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.woff2') format('woff2'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.woff') format('woff'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.ttf')  format('truetype'),
		url('../../assets_lib/fonts/opensans/Semibold/OpenSans-Semibold.svg#svgFontName') format('svg');
	font-weight: 600;
}
@font-face {
	font-family: 'OpenSans-Bold';
	src: url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.woff2') format('woff2'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.woff') format('woff'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.ttf')  format('truetype'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.svg#svgFontName') format('svg');
	font-weight: 700;
}
@font-face {
	font-family: 'OpenSans';
	src: url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.woff2') format('woff2'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.woff') format('woff'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.ttf')  format('truetype'),
		url('../../assets_lib/fonts/opensans/Bold/OpenSans-Bold.svg#svgFontName') format('svg');
	font-weight: 700;
}

@font-face {
	font-family: "csp-icons-11";
	src: url("../../assets_lib/fonts/csp-icons-12/csp-icons-12.woff") format("woff"),
	url("../../assets_lib/fonts/csp-icons-12/csp-icons-12.ttf") format("truetype"),
	url("../../assets_lib/fonts/csp-icons-12/csp-icons-12.svg#csp-icons-12") format("svg");
	font-weight: normal;
	font-style: normal;
}

* {
	font-family: 'OpenSans', sans-serif;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

a {
	cursor: pointer;
	outline-style: none;
	text-decoration: none;
}

html {
	/*min-width: 1020px;*/
	overflow-x: hidden;
	position: relative;
	width: 100%;
}

body {
	/*background-color: #f6f5f0;*/
	/*min-width: 1020px;*/
}
.ie body.overflow-hidden
{
	margin-right: 15px;
}
.page-overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top:0;
	background-color: rgba(0,0,0,.8);
	z-index: 9;
	pointer-events:none;
	transition: opacity 200ms linear;
	opacity: 0;
}
.ie9 .page-overlay,
.ie10 .page-overlay
{
	display:none;
}

.page-overlay.visible {
	opacity: 1;
	pointer-events:all;
}
.ie9 .page-overlay.visible,
.ie10 .page-overlay.visible
{
	display:block;
}

.hidden {
	display: none;
}

.clear {
	clear:both;
}

.overflow-hidden{
	overflow: hidden;
}

.wrap {
	margin: 0 auto;
	/*width: 940px;*/
}

.loginbar
{
	height: 134px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 99;
}

.loginbar .wrap
{
	width: 785px;
}

.loginbar p {
	color: #4c4c4c;
	font-size: 16px;
	font-weight: normal;
	line-height: 16px;
	padding: 10px 0 30px;
}
header
{
	height: 67px;
	width: 100%;
	position: fixed;
	z-index: 22;
	pointer-events:none;
}

header .background
{
	opacity: 0;
	position: absolute;top:0;left:0;bottom:0;right:0;
	transition:transform 200ms linear;
}
header .background.slideup
{
	transform:translateY(-67px);
}

header .background:before{
	content: "";
	display: block;
	position: absolute;top:0;left:0;bottom:0;right:0;
	background-image: linear-gradient(132deg, #FA785B 0%, #FA5C85 42%, #6D49A5 100%);
}

header .background:after{
	content: "";
	display: block;
	position: absolute;
	top:0;left:0;bottom:0;
	right:0;
	background: rgba(255,255,255,0.20);
}
header .background .shadow {
	position: absolute;
	top:0;left:0;bottom:0;
	right:0;
	box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.10);
}

/*header:hover, header.opened {
	height: 134px;
}*/

/*header .loginbar {
	-webkit-transform: translate3d(0, -24px, 0);
	-moz-transform: translate3d(0, -24px, 0);
	-o-transform: translate3d(0, -24px, 0);
	-ms-transform: translate3d(0, -24px, 0);
	transform: translate3d(0, -24px, 0);

	-webkit-transition: 200ms linear;
	-moz-transition: 200ms linear;
	-o-transition: 200ms linear;
	-ms-transition: 200ms linear;
	transition: 200ms linear;
	
	opacity:0;
}*/
/*header:hover .loginbar, header.opened .loginbar
{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity:1;
}*/

header .logo
{
	width: 225px;
	height: 35px;
	margin: 16px;
	background-color: #cba;
	pointer-events: all;
	position: relative;
	z-index:99;
	opacity: 0;
	background: transparent url('../images/login/header-logo.svg') center center no-repeat;
}

header .wrap {
	position: relative!important;
}

.remember_me {
	color: #8c8c8c;
	cursor: pointer;
	float: left;
	font-size: 12px;
	left: 100%;
	line-height: 35px;
	white-space: nowrap;
	user-select:none;
}

.remember_me .tick {
	float: left;
	height: 20px;
	width: 20px;
	border-radius: 10px;
	margin-right: 8px;
	margin-top: 8px;
	color: #fff;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	border: 2px solid #CBCBCB;
	box-sizing: border-box;
}
.remember_me .tick.on {
	background-color: #4470E4;
	border-color: #4470E4;
}

.fb_button {
	background-color: #46629F;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	width: 240px;
	height: 35px;
	margin-bottom: 16px;
}

.fb_button:hover {
	background-color: #355288;
}

.fb_button_left {
	font-size: 22px;
	color:#fff;
	float: left;
	margin-left: 8px;
	margin-right: 14px;
	width: 22px;
}
.fb_button_left:before {
	line-height: 35px;
}

.fb_button_right {
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	height: 35px;
	line-height: 35px;
}

.login_input {
	height: 34px;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	border: 1px solid #dcdcdc;
	background-color: #fff;
	border-radius: 2px;
	float: left;
	width: 240px;
	overflow: hidden;
	margin-bottom: 16px;
	position: relative;
}

.login_input.error {
	border-color: #EF4D59;
}

.login_input.error input::-webkit-input-placeholder {
   color: #EF4D59;
}

.login_input.error input:-moz-placeholder { /* Firefox 18- */
   color: #EF4D59;
}

.login_input.error input::-moz-placeholder {  /* Firefox 19+ */
   color: #EF4D59; 
}

.login_input.error input:-ms-input-placeholder {  
    color: #EF4D59;
}

.login_input input {
	border: none;
	width: 207px;
	/*color: #8c8c8c;*/
	color: #4A4A4A;
	float: right;
	font-size: 14px;
	font-weight: 400;
	height: 34px;
	line-height: 34px;
	outline: none;
	box-sizing:border-box;
	padding: 0 10px 0 5px;
}

.user_email_input .icon,
.user_pass_input .icon {
	float: left;
	font-size:22px;
	color:#9B9BAA;
	line-height: 32px;
	margin-left: 8px;
}

.user_email_input.error .icon,
.user_pass_input.error .icon{
	color: #EF4D59;
}

.login_btn {
	border: none;
	float: right;
	height: 35px;
	width: 99px;
	box-sizing:border-box;
}

.login_btn span {
	font-size: 15px;
	font-weight: 600;
	line-height: 33px;
}

.forgotten_pass {
	color: #7c9aec;
	color: rgba(68,112,228,.7);
	font-size: 12px;
	line-height: 35px;
	margin-right: 25px;
	white-space: nowrap;
	float: left;
}
.forgotten_pass:hover {
	color: #4470E4;
	color: rgba(68,112,228,1);
}

.top_section {
	min-height: 735px;
	position: relative;
	z-index:5;
	overflow: auto;
	/*background: url('../images/login/top_section_bg.jpg') top center no-repeat;*/
}
.top_section:after
{
	content: "";
	display: block;
	background: url('../images/login/top_section_bg.jpg') top center no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	opacity: 0;
	transition: opacity 200ms ease-in;
	background-size: cover;
}
.top_section.loaded:after{
	opacity:1;
}

.top_section:before
{
	content:"";
	display: block;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: #FA785B;
	background: linear-gradient(135deg, #FA785B 0%, #FA5C85 42%, #6D49A5 100%);
	/*background: -ms-linear-gradient(#FA785B, #6D49A5);*/
	/*filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr="#ff0000", endColorStr="#0000ff");*/
	/*filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FA785B', endColorstr='#6D49A5');*/
	opacity:.9;
	z-index: 2;
}

.jazu .top_section {
	background-image: url('../images/login/jazu_top_section_bg.jpg');
}

.top_section .logo-textless
{
	display: block;
	text-decoration: none;
	width: 80px;
	height: 80px;
	margin: 17px auto 5px auto;
	background-image: url('../images/login/logo.svg');
}


header .login-button
{
	height: 0;
	position: relative;
	z-index: 999;
	width:241px;
	height: 35px;
	box-sizing: border-box;
	border-radius: 4px;
	border:1px solid #fff;
	background-color: transparent;
	font-size: 15px;
	line-height: 33px;
	text-align: center;
	color: #fff;
	position: absolute;
	right:16px;
	top:16px;
	cursor: pointer;
	outline: none;
	pointer-events:all;
}
.firefox header .login-button{
	line-height: 32px;
}

.ie .overflow-hidden header .login-button{
	right: 31px;
}

header .login-button.on,
header.opened .login-button,
header .login-button:hover,
header .login-button:active{
	background-color: #fff;
	color: #4C4C4C;
}

header .login-overlay
{
	/*position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top:0;
	background-color: #000;
	background-color: rgba(0,0,0,.8);
	z-index: 90;*/

	transform: translateY(-30px);
	transition: all 200ms linear;
	opacity: 0;
	z-index: 99;
}

header.opened .login-overlay
{
	transform: translateY(0);
	opacity: 1;
}

.login-box{
	width: 400px;
	height: 260px;
	background-color: #fff;
	float: right;
	margin: 68px 16px;
	border-radius: 4px;
	padding: 24px;
	box-sizing:border-box;
	pointer-events:all;
}

.ie .overflow-hidden .login-box{
	margin-right: 31px;
}

.login_header .login-box{
	display: none;
}

.login_header.opened .login-box
{
	display: block;
}


/*header:hover, .header.opened
{
	background-color: rgba(255, 255, 255, 0.8);
}*/
.login-box hr{
	display: block;
	border:none;
	border-top: 1px solid #dcdcdc;
	height: 0;
	margin-bottom: 16px;
}

.login-box .label{
	float:left;
	line-height: 34px;
	width:110px;
	font-size: 14px;
	color: #8c8c8c;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding-right: 8px;
	box-sizing: border-box;
}

header .wrap .logo_wrapper
{
	-webkit-transition: 150ms linear;
	-moz-transition: 150ms linear;
	-o-transition: 150ms linear;
	-ms-transition: 150ms linear;
	transition: 150ms linear;
}
header .wrap .login_hover_btn
{
	-webkit-transition: 150ms linear;
	-moz-transition: 150ms linear;
	-o-transition: 150ms linear;
	-ms-transition: 150ms linear;
	transition: 150ms linear;
}

/*header:hover .wrap .logo_wrapper, header.opened .wrap .logo_wrapper
{
	-webkit-transform: translate3d(-100px, 0, 0);
	-moz-transform: translate3d(-100px, 0, 0);
	-o-transform: translate3d(-100px, 0, 0);
	-ms-transform: translate3d(-100px, 0, 0);
	transform: translate3d(-100px, 0, 0);
	opacity:0;
}*/
/*header:hover .wrap .login_hover_btn, header.opened .wrap .login_hover_btn
{
	-webkit-transform: translate3d(100px, 0, 0);
	-moz-transform: translate3d(100px, 0, 0);
	-o-transform: translate3d(100px, 0, 0);
	-ms-transform: translate3d(100px, 0, 0);
	transform: translate3d(100px, 0, 0);
	opacity:0;
}
*/
/*header:hover #loginbar, header.opened #loginbar
{
	top: 0!important;
}*/


.logo {
	/*background: transparent url('../images/login/login_pic_holder.png') 0px 0px no-repeat;*/
	float: left;
	height: 43px;
	margin-top: 6px;
	width: 193px;
}

.jazu .logo {
	background: transparent url('../images/jazu/jazu_pic_holder.png') -155px 0px no-repeat;
	height: 40px;
	margin-top: 7px;
	width: 112px;
}

.login_hover_btn {
	color: #0f68b9;
	cursor: pointer;
	float: right;
	font-size: 20px;
	height: 54px;
	line-height: 54px;
	margin-right: 20px;
}

.login_hover_btn div {
	/*background: transparent url('../images/login/login_pic_holder.png') -200px 0px no-repeat;*/
	float: right;
	height: 20px;
	margin: 15px 0 0 8px;
	width: 13px;
}

.top_section .wrap {
	position: relative;
	z-index: 4;
}


.mobile-downloads .app-download
{
	float: left;
	width: 175px;
	height: 51px;
	margin-right: 16px;
	border-radius: 5px;
	background: #000000;
	color: #FFFFFF;
	font-size: 12px;

	line-height: 18px;
}
.mobile-downloads .app-download:nth-child(3){
	margin-right: 0;
}


.mobile-downloads .ios_app_download .icon {
	float: left;
	margin: -11px 12px 0 16px;
	height: 37px;
	width: 142px;

	background-image: url( ../images/store-logo/app-store.svg );
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 142px 37px;
}
.ie .mobile-downloads .ios_app_download .icon {
	
	background-size: 142px 31px;
}

.mobile-downloads .ios_app_download .text {
	display: block;
	text-align: center;
	padding-top: 2px;
	padding-left: 4px;
}

.mobile-downloads .android_app_download .icon {
	float: left;
	background: transparent url('../images/login/google_play_logo_login.png') 0 0 no-repeat;
	margin: -11px 12px 0 14px;
	width: 149px;
	height: 38px;
}

.mobile-downloads .android_app_download .text {
	display: block;
	text-align: center;
	padding-top: 2px;
}

.mobile-downloads .wphone_app_download .icon {
	float: left;
	margin: -12px 12px 0 11px;
	height: 37px;
	width: 154px;

	background-image: url( ../images/store-logo/windows-store.svg );
	background-repeat: no-repeat;
	background-size: 154px 37px;
}
.ie .mobile-downloads .wphone_app_download .icon {
	background-size: 154px 33px;
}

.mobile-downloads .wphone_app_download .text {
	display: block;
	text-align: center;
	padding-top: 2px;
}

.top_section h1 {
	color: #fff;
	font-size: 48px;
	line-height: 65px;
	font-weight: 400;
	margin-bottom: 8px;
	text-align: center;
}

.top_section h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 33px;
	text-align: center;
	margin-bottom: 32px;
}

.top_section h3 span {
	background-color: #ee2a6a;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	line-height: 50px;
	padding: 5px 7px;
	text-shadow: 0px 1px rgba(47, 17, 88, 0.3);
}


.small_reg_wrapper {
	margin: 0 auto 48px auto;
	width: 344px;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;

	padding: 24px 52px 40px 52px;
	box-sizing:border-box;
	background-color: #fff;

	box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.30);
}

/*.small_reg_wrapper.on {
	-webkit-transform: translate3d(0, -50px, 0);
	-moz-transform: translate3d(0, -50px, 0);
	-o-transform: translate3d(0, -50px, 0);
	-ms-transform: translate3d(0, -50px, 0);
	transform: translate3d(0, -50px, 0);
}*/

.small_reg_wrapper h3 {
	color: #fff69b;
	font-size: 20px;
	font-weight: normal;
	line-height: 20px;
	padding: 22px 0 14px; 
	text-align: center;
	text-shadow: 0px 1px #4a47ac;
}

.fb_button_wrapper {
	/*background-color: #fff;*/
	/*padding: 24px 0;*/
	margin-bottom: 40px;
}

.fb_button_wrapper .fb_button {
	float: none;
	height: 48px;
	margin: 0 auto;
	position: relative;
}

.fb_button_wrapper .fb_button_left {
	font-size: 22px;
	color: #fff;
	line-height: 48px;
	width: 22px;
	margin-left: 8px;
}

.fb_button_wrapper .fb_button_right {
	border-left: 1px solid transparent!important;
	color: #fff;
	float: none;
	font-size: 15px;
	font-weight: 600;
	margin: 0 auto;
	line-height: 20px;
	text-align: center;
	width: 145px;
	padding-top: 3px;
}

.small_reg form {
	/*background-color: #fff;*/
	display: block;
	/*padding: 20px 30px 40px;*/
}

.small_reg .form_element,
.small_reg .city_name_input {
	background-color: #fff;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	border: 1px solid #dcdcdc;
	border-radius: 2px;
	height: 38px;
	position: relative;
	margin-bottom: 16px;
}
.small_reg .form_element.warn{
	border-color: #FDCD51;
}

.small_reg .form_element.autocorrect{
	border:none;
	margin-top: -8px;
}

.small_reg input {
	outline: none;
}

.small_reg .form_element.location {
	background-color: transparent;
	border: none;
	height: 40px;
	padding: 0;
	position: relative;
	width: auto;
}

.small_reg .form_element .form_element {
	background: transparent;
	border: none;
	box-shadow: none;
	/*margin: 0;*/
	/*padding: 0;*/
}

.small_reg .birthday_inputs {
	background-color: transparent;
	border: none;
	box-shadow: none;
	height: 40px;
	padding: 0;
	width: 240px;
}

.small_reg .cityautocomplete_over {
	color: #4c4c4c;
	font-size: 14px;
	left: 10px;
	line-height: 40px;
	pointer-events: none;
	position: absolute;
	top: 0;
}

.cityautocomplete_over span{
	color:transparent;
}
.cityautocomplete_over span.firstcompletion{
	color: #908d8d;
}

.small_reg .alert_okay {
	/*background: transparent url('../images/login/login_pic_holder.png') -250px 0px no-repeat;*/
	height: 24px;
	position: absolute;
	right: 6px;
	top: 8px;
	width: 24px;
}

.small_reg input {
	border: none;
	color: #4A4A4A;
	font-size: 14px;
	line-height: 38px;
	width: 100%;
	padding: 0 8px;
	box-sizing: border-box;
}
.ie .small_reg input {
	height: 100%;
}

.small_reg .city_name_input {
	/*padding: 10px 7px 8px 35px!important;*/
}

.small_reg input::-webkit-input-placeholder {
   color: #a3a3a3;
}

.small_reg input:-moz-placeholder { /* Firefox 18- */
   color: #a3a3a3;
}

.small_reg input::-moz-placeholder {  /* Firefox 19+ */
   color: #a3a3a3; 
}

.small_reg input:-ms-input-placeholder {  
    color: #a3a3a3;
}

.small_reg .edit_input {
	background-color: #fff;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	border: 1px solid #dcdcdc;
	border-radius: 2px;
	cursor: pointer;
	height: 38px;
	margin-bottom: 16px;
	padding-left: 7px;
	padding-right: 23px;
	position: relative;
}

.small_reg .birthday_inputs .edit_input{
	height: 40px;
}

.small_reg .edit_input .text {
	width: 100%;
	font-size: 15px;
	font-weight: normal;
	color: #a3a3a3;
	height: 38px;
	line-height: 38px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-shadow: none;
	padding: 0;
	text-align: left;
}

.small_reg .edit_input.choose .text {
	font-size: 14px;
	font-weight: normal;
	color: #a3a3a3;
}

.small_reg .edit_input.on .text,
.small_reg .edit_input.set .text {
	color: #4c4c4c;
}

.small_reg .day {
	width: 59px;
	float: left;
	box-sizing:border-box;
}
.small_reg .month {
	width: 59px;
	float: left;
	box-sizing:border-box;
}
.small_reg .year {
	width: 74px;
	float: left;
	box-sizing:border-box;
}

.small_reg .field0,
.small_reg .field1 {
	margin-right: 24px;
}

.small_reg .field2 {
	margin-right: 0;
}

.small_reg .edit_input .arrow {
	height: 8px;
	position: absolute;
	right: 6px;
	top: 16px;
	width: 14px;
	font-size:10px;
	color:#4c4c4c;
}

.small_reg .options {
	background-color: #fff;
	border: 1px solid #b4b4b4;
	border: 1px solid rgba(151,151,151,.5);
	border-radius: 2px;
	left: -1px;
	list-style: none;
	max-height: 224px;
	overflow-y: auto;
	position: absolute;
	top: -50%;
	z-index: 8!important;
	box-shadow: 0px 4px 8px rgba(0,0,0,.3);
	width: 100%;
}

ul.ui-autocomplete {
	background-color: #fefefe;
	border: 1px solid #b4b4b4;
	border-top: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	list-style: none;
	margin-left: -50px!important;
	max-height: 224px;
	overflow-y: auto;
	width: 198px;
	z-index: 8!important;
}

.small_reg .option,
ul.ui-autocomplete a {
	color: #4A4A4A;
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 15px;
	min-width: 50px;
	padding: 8px;
	text-align: left;
	text-transform: none;
	white-space: nowrap;
}

ul.ui-autocomplete a b {
	color: #4c4c4c;
	font-weight: bold;
}

.small_reg .option:hover,
ul.ui-autocomplete a:hover {
	background-color: #f2f3f4;
	color: #4470E4;
	text-shadow: none;
}

.jazu .small_reg .option:hover,
.jazu ul.ui-autocomplete a:hover {
	background-color: #4773e1;
	border-top-color: #3c5cbe;
	color: #fff;
}

.jazu ul.ui-autocomplete a:hover b {
	color: #fff;
}

ul.ui-autocomplete a:hover {
	border-bottom: 1px solid #25a7d6;
	margin-bottom: -1px;
	position: relative;
}

.jazu ul.ui-autocomplete a:hover {
	border-bottom: 1px solid #3c5cbe;
}

.jazu .small_reg .option:hover + .option {
	border-top-color: #3c5cbe;
}

.ui-state-hover {
	background-color: #27bef5;
	border-top: 1px solid #25a7d6;
	color: #276481;
	text-shadow: 0px 1px #70d3f9;
}

.small_reg .option:first-child {
	border-top: 0;
}

.small_reg .location .pic {
	/*background: transparent url('../images/login/login_pic_holder.png') -29px -30px no-repeat;*/
	height: 20px;
	left: 7px;
	position: absolute;
	top: 10px;
	width: 12px;
	z-index: 1;
}

.small_reg h4 {
	color: #4c4c4c;
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	margin-bottom: 8px;
}

.small_reg .reg_btn {
	border-radius: 4px;
	display: block;
	height: 48px;
	line-height: 48px;
	background-color: #16E89C !important;
	border:none !important;
	margin-top: 8px;
	position: relative;
}

.searchlite_btn,
.searchlite_btn span{
	border:none !important;
}
.bt_green.searchlite_btn:hover{
	border:none !important;
}

.small_reg .reg_btn:hover:after,
.searchlite_btn:hover:after
{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(0,0,0,.2) !important;
	background-color: rgba(255,255,255,.2);
	border-radius: inherit;
	z-index: 1;
}

.small_reg .reg_btn span {
	font-size: 18px;
	font-weight: 600;
	line-height: 48px;
	border: none;
}

.middle_top_section
{
	background-color: #fff;
	position: relative;
	z-index: 7;
	padding-bottom: 72px;
/*	-webkit-transform: translate3d(0px,-188px,0px);
	-moz-transform: translate3d(0px,-188px,0px);
	-o-transform: translate3d(0px,-188px,0px);
	-ms-transform: translate3d(0px,-188px,0px);
	transform: translate3d(0px,-188px,0px);*/
}
.middle_top_section.done {
	/*-webkit-transform: translate3d(0px,0px,0px) !important;
	-moz-transform: translate3d(0px,0px,0px) !important;
	-o-transform: translate3d(0px,0px,0px) !important;
	-ms-transform: translate3d(0px,0px,0px) !important;
	transform: translate3d(0px,0px,0px) !important;*/
}
/*.triangles_wrapper {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}*/
/*.triangles_top {
	background: transparent url('../images/login/triangles_top.png') top center no-repeat;
	background-size: 100% auto;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.triangles_top.done {
	-webkit-transform: translate3d(0px, 0px, 0px) !important;
	-moz-transform: translate3d(0px, 0px, 0px) !important;
	-o-transform: translate3d(0px, 0px, 0px) !important;
	-ms-transform: translate3d(0px, 0px, 0px) !important;
	transform: translate3d(0px, 0px, 0px) !important;
}

.triangles_bottom {
	background: transparent url('../images/login/triangles_bottom.png') top center no-repeat;
	background-size: 100% auto;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}*/
/*.triangles_bottom.done {
	-webkit-transform: translate3d(0px, 0px, 0px) !important;
	-moz-transform: translate3d(0px, 0px, 0px) !important;
	-o-transform: translate3d(0px, 0px, 0px) !important;
	-ms-transform: translate3d(0px, 0px, 0px) !important;
	transform: translate3d(0px, 0px, 0px) !important;
}*/

/*.middle_top_section .phone_holder {
	background: transparent url('../images/login/phone_bg.png') top center no-repeat;
	height: 515px;
	margin: 0px auto;
	position: relative;
	-webkit-transform: translate3d(0px,179px,0px);
	-moz-transform: translate3d(0px,179px,0px);
	-o-transform: translate3d(0px,179px,0px);
	-ms-transform: translate3d(0px,179px,0px);
	transform: translate3d(0px,179px,0px);
	padding-top: 86px;
	width: 301px;
}
.middle_top_section .phone_holder.done {
	-webkit-transform: translate3d(0px,-181px,0px) !important;
	-moz-transform: translate3d(0px,-181px,0px) !important;
	-o-transform: translate3d(0px,-181px,0px) !important;
	-ms-transform: translate3d(0px,-181px,0px) !important;
	transform: translate3d(0px,-181px,0px) !important;
	opacity: 1 !important;
}*/

/*.phone_slider_holder {
	height: 427px;
	margin: 0 0 0 29px;
	overflow: hidden;
	width: 241px;
	position: relative;
}

.phone_slider_holder ul {
	display: block;
	list-style: none;
	margin: 0;
	width: 1446px;
	-webkit-transition: 400ms ease-out;
	-moz-transition: 400ms ease-out;
	-o-transition: 400ms ease-out;
	-ms-transition: 400ms ease-out;
	transition: 400ms ease-out;

	position: relative;
	top:0;
}

.phone_slider_holder li {
	float: left;
	height: 427px;
	width: 241px;
}

.phone_slider_holder img {
	width: 100%;
}*/

.tag_lists{
	width: 940px;
	margin: auto;
}

.middle_top_section .wrap {
	position: relative;
	z-index: 5;
}

.about_paragraph_wrapper {
	height: 175px;
	width: 250px;
}

.about_paragraph_wrapper h2 {
	color: #ee2a6a;
	font-size: 22px;
	font-weight: normal;
	line-height: 25px;
	margin-bottom: 5px;
}

.about_paragraph_wrapper p {
	color: #4c4c4c;
	font-size: 15px;
	font-weight: normal;
}

.about_paragraph_wrapper.left {
	clear: left;
	float: left;
}

.about_paragraph_wrapper.right {
	clear: right;
	float: right;
}

.middle_top_section .slider_buttons {
	display: table;
	list-style: none;
	margin: 110px auto 0;
}

.middle_top_section .slider_buttons li {
	background-color: #d8d8d8;
	border-radius: 50%;
	cursor: pointer;
	float: left;
	height: 10px;
	margin-left: 20px;
	width: 10px;
}

.middle_top_section .slider_buttons li:first-child {
	margin-left: 0;
}

.middle_top_section .slider_buttons li.on {
	background-color: #67d4fc;
}

.middle_top_section .more_info_link {
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 585px;
}

.middle_top_section .more_info_link a {
	color: #0F68B9;
	font-size: 15px;
}

.preview_container {
	overflow: hidden;
	position: relative;
	z-index: 3;
	/*background-image: linear-gradient(-225deg, #FAFAFA 0%, #DCDCDC 100%);*/
}

.preview_container .mobile-downloads{
	height: 51px;
	width: 557px;
	margin: auto;
	margin-bottom: 72px;
	margin-top: 63px;
}

.preview_inner {
	width: 964px;
	height: 395px;
	margin: 32px auto 0 auto;
	background-color: pink;
}

/*.jazu .preview_inner {
	background-image: url('../images/login/jazu_preview.jpg');
}*/

.middle_bottom_section {
	background: #060710 none center bottom no-repeat;
	background-attachment: fixed;
	height: 620px;
	padding-top: 40px;
}

.middle_bottom_section .timer {
	background-color: #000;
	color: #d7d7d7;
	font-family: Helvetica, Arial;
	font-size: 8px;
	font-weight: bold;
	height: 9px;
	line-height: 10px;
	left: 243px;
	position: absolute;
	text-align: center;
	top: 216px;
	width: 40px;
}

.middle_bottom_section .wrap {
	height: 620px;
	position: relative;
	width: 850px;
}

.about_wrapper {
	width: 957px;
	height: 142px;
	margin: 48px auto 56px auto;
}

.csp_about_box {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	float: left;
	text-align: center;
	width: 319px;
}

.csp_about_box:first-child {
	margin-left: 0;
}

.csp_about_box h2 {
	color: #EE2A6A;
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 16px;
	line-height: 33px;
}

.csp_about_box p {
	color: #4c4c4c;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	margin: 0 auto;
	width: 288px;
}

.middle_bottom_section h2 {
	color: #fd4c8b;
	font-size: 50px;
	font-weight: 300;
	margin-bottom: 25px;
	text-align: center;
}

.middle_bottom_section h3 {
	color: #fff;
	font-size: 26px;
	font-weight: normal;
	margin-bottom: 20px;
	text-align: center;
}

.middle_bottom_section .pic {
	/*background: transparent url('../images/login/login_pic_holder.png') -72px -53px no-repeat;*/
	height: 50px;
	margin: 0 auto;
	width: 62px;
}

.upper_bottom_section_holder{
	background-color: #21D7AF;
	background-image: linear-gradient(135deg, #21D7AF 0%, #2CC2D0 45%, #6061AE 100%);
	position: relative;
	z-index:3;
	overflow:hidden;
}

.jazu .upper_bottom_section_holder {
	background-size: cover;
	background-image: url('../images/login/jazu_upper_bottom_section_bg.jpg');
}

.upper_bottom_section
{
	padding: 192px 0;
	position: relative;
	z-index:3;
	overflow:hidden;
}

.upper_bottom_section h2 {
	color: #fff;
	font-size: 48px;
	line-height: 65px;
	font-weight: 400;
	text-align: center;
	width: 800px;
	margin: auto;
	margin-bottom: 16px;
}

.upper_bottom_section p {
	color: #fff;
	font-size: 24px;
	line-height: 33px;
	font-weight: 400;
	margin: 0 auto 48px auto;
	width: 800px;
	text-align: center;
}

.searchlite_btn
{
	display: block;
	height: 48px;
	margin: 0 auto;
	width: 240px;
	background-color: #16E89C !important;
	position: relative;
}

.searchlite_btn span {
	font-size: 18px;
	font-weight: normal;
	line-height: 48px;
}

.blog_wrapper {
	margin: 0 auto;
	width: 940px;
}

.blog_entry {
	float: left;
	margin-left: 24px;
	width: 216px;
}

.blog_entry:first-child {
	margin-left: 0;
}

.blog_entry .img_holder {
	height: 90px;
	overflow: hidden;
	width: 216px;
}

.blog_entry .img_holder img {
	min-height: 100%;
	/*min-width: 100%;*/
	width: 216px;
}

.bottom_section .blog_entry h2 {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 12px;
	text-align: left;
	margin: 16px auto 8px auto;
}

.bottom_section .blog_entry h2 a {
	color: #4470E4;
	font-weight: 400;
}

.bottom_section .blog_entry p {
	color: #4A4A4A;
	font-size: 14px;
	line-height: 19px;
	max-height: 96px;
	overflow: hidden;
	text-align: left;
}

.blog_link {
	height: 60px;
	line-height: 60px;
	margin-top: 38px;
	margin-bottom: 80px;
	text-align: center;
}

.blog_link a {
	color: #4470E4;
}
.blog_link a:after{
	content: "\e956";
	font-family: 'csp-icons-11';
	font-size: 12px;
	color: #4470E4;
	padding-left: 8px;
}

.bottom_section {
	background-color: #fff;
	min-height: 540px;
	padding-top: 20px;
	position: relative;
	z-index:3;
}

.middle_top_section h2.person_recomm_title,
.bottom_section h2
{
	color: #FD5A84;
	font-size: 48px;
	line-height: 65px;
	font-weight: 400;
	margin: 72px auto 32px auto;
	text-align: center;
}
.bottom_section h2{
	margin: 49px auto 32px auto;
}

.person_recomm {
	margin: 0 auto;
	width: 955px;
}

.recomm_box a {
	border-radius: 50%;
	float: left;
	overflow: hidden;
 	height: 80px;
 	margin: 0 0 10px 15px;
	text-decoration: none;
 	width: 80px;
}

.recomm_box img {
	border: none;
	min-height: 80px;
	min-width: 80px;
}

.tag_lists ul {
	float: left;
	list-style: none;
	width: 240px;
}

.tag_lists ul:first-child {
	margin-left: 10px;
}

.tag_lists li, .tag_lists li a {
	color: #4470E4;
	font-size: 14px;
	line-height: 26px;
	font-weight: normal;
	overflow: hidden;
	padding-right: 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.last {
	max-width: 210px;
	width: auto!important;
}

.social_box {
	/*margin: 0 auto 72px auto;*/
	margin: 0 auto;
	width: 957px;
	/*height: 116px;*/
}

.social_box .social {
	float: left;
	text-decoration: none;
	width: 319px;
	position: relative;
}

.social_box .social p {
	color: #4A4A4A;
	font-size: 16px;
	text-align: center;
	line-height: 22px;

}

.social_box .social.facebook b {
	font-weight: bold;
}

.social_box .social .icon_holder {
	border-radius: 50%;
	height: 70px;
	margin: auto;
	width: 70px;
	margin-bottom: 16px;
	line-height: 70px;
	text-align: center;
}

.social_box .social.twitter .icon_holder {
	background-color: #50abf1;
}

/*.social_box .social.twitter .icon_holder div {
	background-position: 0px -110px;
	height: 25px;
	top: 18px;
	width: 29px;
}*/

.social_box .social.facebook .icon_holder {
	background-color: #46629F;
}

.social_box .social .icon_holder div {
	font-size: 33px;
	color: #fff;
	line-height: 70px;
}
.social_box .social.google .icon_holder div {
	color:#DD4B39;
	font-size: 70px;
}

.social_box .social.google .icon_holder {
	background-color: #fff;
}

.social_box .social.google .icon_holder div {
	background-position: -80px -110px;
	height: 49px;
	left: 3px;
	top: 10px;
	width: 51px;
}

.footer_section_cover {
	height: 615px;
}

footer
{
/*	height: 615px;
	overflow: hidden;
	position: relative;
	z-index:1;
	width:100%;*/
}

.pwd_container,
.email_container, 
.repwd_container {
	height: 0px;
	overflow: hidden;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pwd_container.on,
.email_container.on, 
.repwd_container.on {
	height: 40px;
	margin-bottom: 16px;
}

.lang_changer
{
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	height: 35px;
	left: 0;
	padding-top: 19px;
	position: fixed;
	top: 0;
	width: 58px;
	-webkit-transition:150ms;
	-moz-transition:150ms;
	-o-transition:150ms;
	-ms-transition:150ms;
	transition:150ms;
	z-index: 100;
}

header:hover .lang_changer, header.opened .lang_changer
{
	left: -100px;
	opacity: 0;
}

footer .lang_changer {
	display: none;
}

.lang_changer .icon span {
	display: block;
	background: transparent url('../images/flag_pic_holder.png') no-repeat;
	border: 1px solid #a19f9e;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	margin: 0 auto;
	height: 15px;
	width: 21px;
}

.lang_changer ul {
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
	display: none;
	left: 0;
	list-style: none;
	top: 0;
	padding-top: 4px;
	padding-bottom: 19px;
	position: absolute;
	width: 58px;
}

.lang_changer:hover ul {
	display: block;
}

.lang_changer li a {
	display: block;
	height: 15px;
	padding-top: 15px;
}

.lang_changer li a {
	margin: 0 auto!important;
}

.lang_changer .hu span {
	background-position: 0px 0px;
}

.lang_changer .en span {
	background-position: -21px 0px;
}

.lang_changer .ro span {
	background-position: -42px 0px;
}

.lang_changer .de span {
	background-position: -63px 0px;
}

.lang_changer .sr span {
	background-position: -84px 0px;
}

.lang_changer .pl span {
	background-position: -105px 0px;
}

.lang_changer .hr span {
	background-position: -126px 0px;
}

.small_reg_wrapper .city_container .curr_loc_click {
	border-radius: 13px;
	width: 26px;
	height: 26px;
	border: 1px solid #9B9BAA;
	position: absolute;
	right: 4px;
	top:6px;
	cursor: pointer;
	box-sizing:border-box;
	transform: scaleX(-1);
	text-align: center;
}
.small_reg_wrapper .city_container .curr_loc_click:before {
	color: #9B9BAA;
	line-height: 26px;
	text-align: center;
	font-size: 13px;
}

.small_reg_wrapper .city_container .curr_loc_click.on {
	background-color: transparent;
}

.small_reg_wrapper .city_container .curr_loc_click span {
	height: 18px;
	margin: 0 auto;
	width: 18px;
}

.small_reg_wrapper .city_container .curr_loc_click.on span {
	background-position: -260px -55px;
}

.jazu .small_reg_wrapper .city_container .curr_loc_click.on span {
	background-position: -350px -55px;
}

.small_reg_wrapper .city_container .curr_loc_click.denied span {
	background-position: -320px -55px;
}

.progressbar_bottom{
	position:fixed;
	bottom:0;
	left:0;
	height:5px;
	z-index:9;
}

/*@media
only screen and (max-width: 1050px) {
	.forgotten_pass,
	.remember_me {
		font-size: 12px;
	}
	
	.loginbar .wrap {
		width: 625px;
	}
	
	.login_input {
		width: 150px;
	}
	
	.login_input input {
		width: 103px;
	}
}*/

.ui-widget-overlay {
	background-color: #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.csp-dialog
{
	position: fixed !important;
	top: 50%;
	margin-top: -72px;
}

.service-rating
{
	color: #cac2c5;
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
	margin-top: 2px;
	text-align: left;
	width: 900px;
	margin: auto;
}












.footer-mobile-promo
{
	height: 70px;
	width: 940px;
	display: table;
	margin-bottom: 24px;
	position: relative;
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	margin: auto;
}

.footer-mobile-promo .inner
{
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

.footer-mobile-promo .inner h3{
	font-size: 15px;
	color: #4C4C4C;
	float: left;
	margin-left: 14px;
	height: 70px;
	line-height: 70px;
}

.footer-mobile-promo .inner .buttons
{
	float: right;
	margin-right: 16px;
}

.footer-mobile-promo .inner .platform-button, 
.banner_220.mobile .platform-button,
.banner_710.mobile .platform-button
{
	float: right;
	display: block;
	width: 120px;
	height: 35px;
	border-radius: 7px;
	background-color: #8C8C8C;
	border: none;
	margin-left: 24px;
	margin-top: 18px;
	outline: none;
	cursor: pointer;
}

.footer-mobile-promo .inner .platform-button.android, 
.banner_220.mobile .platform-button.android,
.banner_710.mobile .platform-button.android
{
	/*background-image: url( ../images/store-logo/google-play.svg );*/
	background-image: url( ../images/store-logo/google-play.png );
	background-position: center center;
	background-repeat: no-repeat;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.footer-mobile-promo .inner .platform-button.android, 
	.banner_220.mobile .platform-button.android,
	.banner_710.mobile .platform-button.android{
		background-image: url( ../images/store-logo/google-play@2x.png );
		background-size: 103px 23px;
	}
}

.footer-mobile-promo .inner .platform-button.ios, 
.banner_220.mobile .platform-button.ios,
.banner_710.mobile .platform-button.ios
{
	background-image: url( ../images/store-logo/app-store-small.svg );
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 106px 28px;
}

.footer-mobile-promo .inner .platform-button.wphone, 
.banner_710.mobile .platform-button.wphone,
.banner_220.mobile .platform-button.wphone
{
	background-image: url( ../images/store-logo/windows-store.svg );
	background-position: 5px 5px;
	background-repeat: no-repeat;
}

.footer {
	margin: 49px 0px 30px 0px;
	position: relative;
}
.footer .nav {
	display: table;
	position: relative;
	width: 900px;
	margin: 24px auto 0 auto;
	padding-left: 14px;
	box-sizing:border-box;
}
.footer .nav .fb-like {
	float: right;
	margin: -3px 16px 0 0;
}
.ie .footer .nav .fb-like {
	margin-right: 0;
}

.footer .nav a {
	color: #818181;
	font-size: 14px;
	font-weight: normal;
	padding-left: 20px;
}

.footer .nav a:hover {
	color: #40405B;
}

.jazu .footer .nav a {
	color: #4773e1;
}

.footer .nav a:first-child {
	padding: 0;
}

.footer .border {
	border-top: 1px dashed #e5f1f6;
	height: 0px;
	margin: 0 auto;
	width: 100%;
}

.footer .footer_text {
	color: #9d9d9d;
	font-size: 13px;
	font-weight: normal;
	line-height: 20px;
	margin-top: 15px;
	padding-bottom: 20px;
	margin-left: 14px;
}

















@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
	/*.remember_me .tick,*/
	/*.fb_button_left,*/
	/*.user_email_input .icon,*/
	/*.user_pass_input .icon,*/
	/*.logo,*/
	/*.login_hover_btn div,*/
	/*.fb_button_wrapper .fb_button_left,*/
	/*.small_reg .alert_okay,*/
	/*.small_reg .edit_input .arrow,*/
	/*.small_reg .location .pic,*/
	/*.middle_bottom_section .pic,*/
	/*.small_reg_wrapper .city_container .curr_loc_click span,*/
	/*.social_box .social .icon_holder div,*/
	/*.mobile-downloads .ios_app_download .icon*/
	/*{*/
		/*background-image: url('../images/login/login_pic_holder@2x.png');*/
		/*background-size: 600px 600px;*/
	/*}*/
	
	.lang_changer .icon span {
		background-image: url('../images/flag_pic_holder@2x.png');
		background-size: 150px 150px;
	}
	
	.jazu .logo {
		background-image: url('../images/jazu/jazu_pic_holder@2x.png');
		background-size: 300px 300px;
	}
	
	.middle_top_section .phone_holder {
		background-image: url('../images/login/phone_bg@2x.png');
		background-size: 301px 601px;
	}

	.footer .nav.login-nav .etikus-tarskereso-logo{
		background-image: url('../images/login/etikus-tarskereso-logo@2x.png') !important;
		background-size: 100px 33px !important;
	}

	/*.mobile-downloads .ios_app_download .icon,
	.mobile-downloads .wphone_app_download .icon {
		background-image: url('../images/login/login_pic_holder@2x.png');
		background-size: 600px 600px;
	}

	.mobile-downloads .android_app_download .icon{
		background: transparent url('../images/login/google_play_logo_login@2x.png') 0 0 no-repeat;
		background-size: 149px 38px;
	}*/
}

@media screen and (min-width: 1500px) {
	.top_section {
		background-size: 100% auto;
	}
}

@media screen and (max-width: 980px) {
	.footer .nav.login-nav{
		width: 100%;
	}
	.footer .nav.login-nav .etikus-tarskereso-logo{
		right:20px;
	}
}

@media screen and (max-width: 968px) {
	.footer .nav.login-nav .footer-links{
		width:500px;
	}
	.footer .nav.login-nav .footer-links a{
		line-height: 30px;
	}
}

@media screen and (max-width: 790px) {
	.footer .nav.login-nav .footer-links{
		width:500px;
	}
	.footer .nav.login-nav .footer-links a{
		line-height: 30px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 707px) {
	.footer .nav.login-nav .footer-links{
		width:400px;
	}
	.footer .nav.login-nav .footer-links a{
		line-height: 30px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 610px) {
	/*.footer .nav.login-nav .footer-links{
		width:300px;
	}
	.footer .nav.login-nav .etikus-tarskereso-logo{
		top:28px;
	}*/
	.footer .nav.login-nav .etikus-tarskereso-logo{
		display:none;
	}
}

/*@media screen and (max-width: 570px) {
	.footer .nav.login-nav .etikus-tarskereso-logo{
		display:none;
	}
}*/

.ui-helper-hidden-accessible{
	display: none;
}

@media screen and (max-width: 1500px) {
	.top_section {
		/*background-size: auto 1000px;*/
		background-size: cover;
	}
	.top_section::after {
		/*background-size: auto 1000px;*/
		background-size: cover;
	}
}

#cookie_warning
{
	position: fixed;
	background-color: #ffface;
	border: 1px solid #ddd;
	border-left:none;
	border-right:none;
	height: 100px;
	width: 100%;
	bottom: 0;
	z-index: 9999999999;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;

	cursor: pointer;
}

#cookie_warning.closed
{
	bottom: -100px;
}

#cookie_warning .cw_wrap{
	width: 900px;
	height: 100%;
	position: relative;
	margin: auto;
}

#cookie_warning p
{
	width:812px;
	font-size: 13px;
	color: #4c4c4c;
	padding: 20px 0;
	line-height:20px;
	font-family: Arial;
	font-weight: normal;
	float:left;
	text-align: left;
}

#cookie_warning span.close
{
	background: transparent url('../images/pic_holder.png') -145px -60px no-repeat;
	width: 19px;
	height: 20px;
	right: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	cursor: pointer;
	float:right;
}

.autocorrect h4
{
	color: #4A4A4A;
	font-size: 13px;
	text-align: left;
	margin-bottom: 0;
}
.autocorrect h5{
	color: #4470E4;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi)
{
	#cookie_warning span.close {
		background-image: url('../images/pic_holder@2x.png')!important;
		background-size: 700px 800px!important;
	}
	.mobile-downloads .android_app_download .icon {
		background: transparent url('../images/login/google_play_logo_login@2x.png') 0 0 no-repeat;
		background-size: 149px 38px!important;
	}
}

@media all and (max-width: 1024px)
{
	#cookie_warning span.close{
		right: 50px;
	}
}