
@-webkit-keyframes spinner {
	from { -webkit-transform: rotate(360deg); }
	to { -webkit-transform: rotate(0deg) }
}

@-ms-keyframes spinner {
	from {
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
@-moz-keyframes spinner {
	from {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
@-keyframes spinner {
	from {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}


@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale(0.5);
		opacity: 0.9;
	}
	to {
		-webkit-transform: scale(1.5);
		opacity: 0.5
	}
}

@-ms-keyframes pulse {
	from {
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		-ms-transform: scale(1.5);
		transform: scale(1.5);
	}
}
@-moz-keyframes pulse {
	from {
		-moz-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 1;
	}
	to {
		-moz-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0.3;
	}
}
@-keyframes pulse {
	from {
		-webkit-transform: scale(0.5);
		-moz-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		transform: scale(1.5);
	}
}

.loading_page {
	background: #fff;
	height: 100%;
}
.loading_page body {
	height: 100%;
	margin: 0;
}
.loading_page body > * {
	display: none !important;
}

.loading_page_overlay {
	display: none;
}
.loading_page body > .overlay_large {
	display: block !important;
}
.loading_page body > .loading_page_overlay {
	display: block !important;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0,0,0,0.5);
}
.loading_page_overlay .spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -10px;
	margin-top: -10px;
	width: 20px;
	height: 20px;	
}
.loading_page_overlay .spinner .dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	display: block;
}
.loading_page_overlay .spinner .dot .pulse {
	border-radius: 50%;
	background: #fff;
	display: block;
	width: 20px;
	height: 20px;
	
	-webkit-animation-name: pulse;
	-webkit-animation-timing-function: linear;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	
	-moz-animation-name: pulse;
	-moz-animation-timing-function: linear;
	-moz-animation-duration: 0.5s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	
	-ms-animation-name: pulse;
	-ms-animation-timing-function: linear;
	-ms-animation-duration: 0.5s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: alternate;
	
	animation-name: pulse;
	animation-timing-function: linear;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	
}
.loading_page_overlay .spinner .dot1 {
	-webkit-transform: translate(-50px, 0);
	-moz-transform: translate(-50px, 0);
	-ms-transform: translate(-50px, 0);
	transform: translate(-50px, 0);
}
.loading_page_overlay .spinner .dot1 .pulse {
	-webkit-animation-delay: 0.125s;
	-moz-animation-delay: 0.125s;
	-ms-animation-delay: 0.125s;
	animation-delay: 0.125s;
}
.loading_page_overlay .spinner .dot2 {
	-webkit-transform: translate(-36px, 36px);
	-moz-transform: translate(-36px, 36px);
	-ms-transform: translate(-36px, 36px);
	transform: translate(-36px, 36px);
}
.loading_page_overlay .spinner .dot2 .pulse {
	-webkit-animation-delay: 0.25s;
	-moz-animation-delay: 0.25s;
	-ms-animation-delay: 0.25s;
	animation-delay: 0.25s;
}
.loading_page_overlay .spinner .dot3 {
	-webkit-transform: translate(0, 50px);
	-moz-transform: translate(0, 50px);
	-ms-transform: translate(0, 50px);
	transform: translate(0, 50px);
}
.loading_page_overlay .spinner .dot3 .pulse {
	-webkit-animation-delay: 0.375s;
	-moz-animation-delay: 0.375s;
	-ms-animation-delay: 0.375s;
	animation-delay: 0.375s;
}
.loading_page_overlay .spinner .dot4 {
	-webkit-transform: translate(36px, 36px);
	-moz-transform: translate(36px, 36px);
	-ms-transform: translate(36px, 36px);
	transform: translate(36px, 36px);
}
.loading_page_overlay .spinner .dot4 .pulse {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.loading_page_overlay .spinner .dot5 {
	-webkit-transform: translate(50px, 0);
	-moz-transform: translate(50px, 0);
	-ms-transform: translate(50px, 0);
	transform: translate(50px, 0);
}
.loading_page_overlay .spinner .dot5 .pulse {
	-webkit-animation-delay: 0.625s;
	-moz-animation-delay: 0.625s;
	-ms-animation-delay: 0.625s;
	animation-delay: 0.625s;
}
.loading_page_overlay .spinner .dot6 {
	-webkit-transform: translate(36px, -36px);
	-moz-transform: translate(36px, -36px);
	-ms-transform: translate(36px, -36px);
	transform: translate(36px, -36px);
}
.loading_page_overlay .spinner .dot6 .pulse {
	-webkit-animation-delay: 0.75s;
	-moz-animation-delay: 0.75s;
	-ms-animation-delay: 0.75s;
	animation-delay: 0.75s;
}
.loading_page_overlay .spinner .dot7 {
	-webkit-transform: translate(0, -50px);
	-moz-transform: translate(0, -50px);
	-ms-transform: translate(0, -50px);
	transform: translate(0, -50px);
}
.loading_page_overlay .spinner .dot7 .pulse {
	-webkit-animation-delay: 0.875s;
	-moz-animation-delay: 0.875s;
	-ms-animation-delay: 0.875s;
	animation-delay: 0.875s;
}
.loading_page_overlay .spinner .dot8 {
	-webkit-transform: translate(-36px, -36px);
	-moz-transform: translate(-36px, -36px);
	-ms-transform: translate(-36px, -36px);
	transform: translate(-36px, -36px);
}
.loading_page_overlay .spinner .dot8 .pulse {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	animation-delay: 1s;
}
@media only screen and (max-device-width: 480px) {
	.loading_page {
		background-size: 160px auto;
	}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.loading_page {
		background-size: 160px auto;
	}
}





.unloaded_page body > * {
	display: none !important;
}


.pc_unsupported {
	display: none;
}
@media all and (min-width: 990px) {
	.pom_unsupported {
		display: none;
	}
	.pc_unsupported {
		display: block;
	}
}

.page_404 {
	display: none;
}

.loading_page._unsupported .unsupported {
	display: block !important;
}
.pc_unsupported{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	bottom: 0px;
	overflow-y: auto;
	background: #e6e7e8;
	color: #373737;
	font-family: 'korolev', 'OpenSans', sans-serif;
}
.pc_unsupported_header{
	background: none repeat scroll 0 0 #4176b9;
  color: #ffffff;
  height: 130px;
  left: 0;
  line-height: 130px;
  min-width: 1280px;
  overflow: hidden;
  padding: 0 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.pc_unsupported_text{
	font-size: 24px;
	line-height: 30px;
  margin-bottom: 30px;
}
.pc_unsupported_small_text{
	font-size: 16px;
}
.pc_unsupported_body{	
  text-align: center;
  margin-top: 130px;
  padding-top: 135px;
}
.pc_unsupported_logo{
  background: url("/img/pc/logo_sm.png") no-repeat scroll center center / contain rgba(0, 0, 0, 0);
  display: inline-block;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
  width: 94px;
}
.pc_unsupported_browsers a{
	display: inline-block;
	margin: 0px 10px;
	width: 100px;
	text-align: center;
	vertical-align: top;
	color: #373737;
	text-decoration: none;
}
.pc_unsupported_browser{
	display: block;
	background: url("/img/pc/unsupported_browsers.png") 0 0 no-repeat;
	height: 70px;
	width: 70px;
	margin: 0 auto 10px;
}
.pc_unsupported_browser.chrome{
	background-position: 0 0;
}
.pc_unsupported_browser.firefox{
	background-position: -70px 0;
}
.pc_unsupported_browser.safari{
	background-position: -140px 0;
}
.pc_unsupported_browser.ie{
	background-position: -210px 0;
}
.pc_unsupported_tip{
	font-size: 10px;
	display: block;
}


.pom_unsupported{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	bottom: 0px;
	overflow-y: auto;
	background: #e6e7e8;
	color: #373737;
	font-family:  'korolev', 'OpenSans', sans-serif;
}
.pom_unsupported_header{
	background: none repeat scroll 0 0 #4176b9;
  color: #ffffff;
  height: 130px;
  left: 0;
  line-height: 130px;
  overflow: hidden;
  padding: 0 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.pom_unsupported_text{
	font-size: 24px;
	line-height: 30px;
  margin-bottom: 30px;
}
.pom_unsupported_icon{
	height: 60px;
	width: 60px;
	margin: 0px auto 20px;
	background: url("/img/shared/unsupported_icon.png") no-repeat center center / 60px auto rgba(0, 0, 0, 0);
}
.pom_unsupported_small_text{
	font-size: 16px;
}
.pom_unsupported_body{	
  text-align: center;
  margin-top: 130px;
  padding-top: 135px;
}
.pom_unsupported_logo{
  background: url("/img/pc/logo_sm.png") no-repeat scroll center center / contain rgba(0, 0, 0, 0);
  display: inline-block;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
  width: 94px;
}
.pom_msg{
	display: none;
}
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
  .pom_unsupported_header{
	  height: 50px;
	  left: 0;
	  line-height: 50px;
	  overflow: hidden;
	  padding: 0 10px;
	  min-width: auto;
	}
  .pom_unsupported_text{
		font-size: 20px;
		line-height: 24px;
	  margin: 0px auto 20px;
	  padding: 0px 30px;
	  max-width: 300px;
	}
	.pom_unsupported_small_text{
		font-size: 14px;
		max-width: 300px;
		padding: 0px 30px;
		margin: 0 auto;
	}
	.pom_unsupported_logo{
	  background: url("/img/pc/logo_sm.png") no-repeat scroll left center / auto 50% rgba(0, 0, 0, 0);
	  display: inline-block;
	  height: 30px;
	  width: 100%;
	}
	.pom_unsupported_body{	
	  text-align: center;
	  margin-top: 50px;
	  padding-top: 50px;
	}
}