
@font-face {
    font-family: 'OpenSans-CondensedBold';
    src: url('fonts/OpenSans-CondBold.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently*/
                              
}
html {
	width: 1920px;
	height: 1080px;
}
body {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 100%;
	color: #000000;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	font-family: "Segoe UI";
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.cb {
	clear: both;
	display: block;
}
.table_block {
	display: table;
	width: 100%;
	height: 100%;
}
.cell_middle {
	display: table-cell;
	position: relative;
	vertical-align: middle;
}
.cell_bottom {
	display: table-cell;
	position: relative;
	vertical-align: bottom;
}
.y_hidden {
	overflow-y: hidden !important;
}
.y_hidden.ios_device {
	position: fixed;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
}
input, select, textarea {
	outline: none
}
a {
	text-decoration: none;
}
button {
	outline: none;
	cursor: pointer;
}
a:focus {
	text-decoration: none;
	outline: none;
	color: inherit;
}
button:hover,
a:hover {
	text-decoration: none;
}
img	{
	max-height: none;
	border: none;
}

.h_centered img {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: auto;
	min-width: 100%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.v_centered img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	min-height: 100%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.page_body {
	width: 100%;
	height: 980px;
	position: relative;
}
.loader {
	position: absolute;
	width: 80px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -40px;
	opacity: 0;
	-o-transition: opacity: 0.3s;
	-ms-transition: opacity: 0.3s;
	-moz-transition: opacity: 0.3s;
	-webkit-transition: opacity: 0.3s;
	transition: opacity: 0.3s;
	font-size: 200%;
}
.small_loader {
	position: absolute;
	bottom: 10px;
	left: 20px;
	width: 239px;
	height: 56px;
	background: #c3127d;

}
.small_loader .loader_dots {
	position: relative;
	width: 42px;
	height: 10px;
	margin: 23px auto;
}
.small_loader.showed,
.loader.active {
	opacity: 1;
	z-index: 100;
	-o-transition: opacity 0.1s;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
	transition: opacity 0.1s;
}
.dot {
  	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #c3127d;
	position: absolute;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.small_loader .dot {
	width: 10px;
	height: 10px;
	background: #ffffff;
}
.dot1, .dot2 {
  left: 0;
}

.dot3 { left: 30px; }
.small_loader .dot3 {
	left: 16px;
}
.dot4 { left: 60px; }
.small_loader .dot4 {
	left: 32px;
}
@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em) }
}


.dot1 {
  animation-name: reveal;
}

.dot2, .dot3 {
  animation-name: slide;
}

.dot4 {
  animation-name: reveal;
  animation-direction: reverse; /* thx @HugoGiraudel */
}




.page_content {
	width: 100%;
	height: 100%;
	position: relative;
}
.inner_page_block {
	height: 0;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	-o-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.inner_page_block.active {
	visibility: visible;
	opacity: 1;
	height: 100%;
}
.page_navbar {
	width: 100%;
	height: 100px;
	position: relative;
	text-transform: uppercase;
}
.page_navbar:before {
	display: block;
	position: absolute;
	content: "";
	left: 0;
	bottom: 100%;
	height: 35px;
	width: 100%;
	background: url('images/nav_shadow.png') repeat-x;
	background-size: 1px auto;
	background-position: left bottom;
	z-index: 11;
}
.page_navbar ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 0;
	white-space: nowrap;
	font-weight: bold;
}
.page_navbar ul li {
	display: inline-block;
	vertical-align: top;
	height: 100px;
	width: 14.2857%;
	border-left: 1px solid rgba(13,13,13,0.1);
	text-align: center;
	font-size: 1.6rem;
	line-height: 20px;
	color: #333333;
	white-space: normal;
	padding: 15px;
	position: relative;
	z-index: 100;
	background: #ffffff;
}
.page_navbar ul li:first-child {
	border: none;
}
.page_navbar li.current_page,
.shops_list li.selected {
	background: #c3127d !important;
	color: #ffffff !important;
}
.ym_logo {
	position: absolute;
	z-index: 100;
	width: 131px;
	height: 131px;
	left: 894px;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	padding-top: 32px;
	text-align: center;
}
.ym_logo img {
	width: 83px;
	height: auto;
}
.club_card_page {
	background: url('images/club_card_bg.jpg') no-repeat;
	background-size: 100% 100%;
}
.page_inner {
	width: 100%;
	height: 100%;
}
.card_info_block {
	padding-top: 480px;
	padding-left: 225px;
	width: 700px;
}
.info_title {
	font-size: 420%;
	line-height: 50px;
	font-family: "OpenSans-CondensedBold", "Segoe UI"; 
	color: #333333;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.info_text {
	font-size: 200%;
	line-height: 26px;
	color: #333333;
	font-family: "Kozuka Gothic Pr6N Extralight", "Segoe UI Light";
}
.keyboard_block {
	width: 279px;
	margin-left: 120px;
	position: relative;
	margin-top: 225px;
	padding-top: 72px;
}
.error_block {
	position: absolute;
	top: -20px;
	left: 0;
	padding: 0 8px;
	text-align: center;
	width: 100%;
	display: table;
	height: 72px;
}
.error_block span {
	display: none;
}
.keyboard_block input {
	border: none;
	background: #ffffff;
	text-align: center;
	font-size: 250%;
	line-height: 27px;
	letter-spacing: 3px;
	font-family: "Kozuka Gothic Pr6N Light";
	color: #999999;
	padding: 25px 0;
	border-radius: 16px;
	margin: 0 8px 16px;
	width: 263px;
}
.keyboard_table td {
	width: 93px;
	height: 93px;
	padding-top: 1px;
	vertical-align: top;
}
.club_card_keyboard .keyboard_table td {
	background: url('images/club_button.png') no-repeat;
	background-size: auto;
	background-position: top center;
}
.gift_card_keyboard .keyboard_table td {
	background: url('images/gift_key.png') no-repeat;
	background-size: auto;
	background-position: top center;
}
.keyboard_table td.transp_bg {
	background: transparent;
}
.keyboard_table span {
	display: block;
	width: 77px;
	height: 76px;
	font-size: 260%;
	font-weight: bold;
	text-align: center;
	color: #333333;
	line-height: 27px;
	margin: 0 auto;
	padding: 25px 0;
	border-radius: 18px;
	position: relative;
	z-index: 10;
	-o-transition: background 0.3s;
	-ms-transition: background 0.3s;
	-moz-transition: background 0.3s;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	overflow: hidden;
}
.keyboard_table span.backspace_key {
	background: url('images/svg/back.svg') no-repeat #e7e7e7 !important;
	background-size: 26px auto !important;
	background-position: center !important;
}
.keyboard_table span.reset_key {
	background: url('images/svg/reset.svg') no-repeat #e7e7e7 !important;
	background-size: 26px auto !important;
	background-position: center !important;
}
.keyboard_table span.backspace_key:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: url('images/svg/back_hover.svg') no-repeat #e3e3e3;
	background-size: 26px auto;
	background-position: center;
	opacity: 0;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.keyboard_table span.reset_key:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url('images/svg/reset_hover.svg') no-repeat #e3e3e3;
	background-size: 26px auto;
	background-position: center;
	opacity: 0;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.keyboard_block button {
	width: 263px;
	margin: 0 8px;
	background: #c3127d;
	border-radius: 16px;
	font-size: 190%;
	line-height: 27px;
	padding: 25px 15px;
	border: none;
	box-shadow: 0 4px 5px rgba(0,0,0,0.2);
	color: #ffffff !important;
	text-align: center;
	font-weight: bold;
	text-transform: capitalize;
	-o-transition: background 0.3s;
	-ms-transition: background 0.3s;
	-moz-transition: background 0.3s;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	position: relative;
	z-index: 1;
}
.help-block.form-error {
	display: none;
}
.gift_card_page {
	background: url('images/gift_card_bg.jpg') no-repeat;
	background-size: 100% 100%;
}
.gift_card_page .card_info_block {
	padding-top: 450px;
}
.gift_card_page .info_title,
.gift_card_page .info_text,
.gift_card_page .keyboard_block input {
	color: #ffffff;
}
.gift_card_page .keyboard_block input {
	background: rgba(255,255,255,0.1);
}
.gift_card_page .keyboard_table span.backspace_key {
	background: url('images/svg/back_white.svg') no-repeat rgba(0,0,0,0.2) !important;
	background-size: 26px auto !important;
	background-position: center !important;
}
.gift_card_page .keyboard_table span.reset_key {
	background: url('images/svg/reset_white.svg') no-repeat rgba(0,0,0,0.2) !important;
	background-size: 26px auto !important;
	background-position: center !important;
}
.gift_card_page .keyboard_table span.backspace_key:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: url('images/svg/back_white_hover.svg') no-repeat rgba(0,0,0,0.3);
	background-size: 26px auto;
	background-position: center;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.gift_card_page .keyboard_table span.reset_key:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: url('images/svg/reset_white_hover.svg') no-repeat rgba(0,0,0,0.3);
	background-size: 26px auto;
	background-position: center;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.gift_card_result {
	padding-top: 400px;
	display: none;
}
.card_use_conditions {
	width: 550px;
	padding-left: 225px;
	padding-top: 9px;
}
.cardholder {
	display: inline-block;
	font-family: "Segoe UI SemiBold";
}
.result_info_block {
	width: 550px;
	margin-left: 135px;
	text-align: center;
}
.card_points_size {
	font-size: 1000%;
	line-height: 90px;
	margin-top: 40px;
	font-family: "Kozuka Gothic Pr6N Heavy";
	color: #ffffff;
	font-weight: bold;
}
.back_button {
	display: inline-block;
	margin-top: 50px;
	color: #ffffff !important;
	width: 280px;
	text-align: center;
	border: 1px solid #ffffff;
	font-weight: bold;
	font-size: 240%;
	line-height: 28px;
	padding: 35px 20px;
	border-radius: 16px;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-transform: capitalize;
}
.back_button.hovered {
	background: #ffffff;
	color: #c3127d !important;
}
.card_points_size .amd_symbol {
	font-size: 109%;
	display: inline-block;
	line-height: inherit;
	font-family: "Segoe UI SemiBold";
}
.club_card_results {
	width: 100%;
	height: 100%;
	background: rgba(243,243,243,0.8);
	padding-top: 205px;
	text-align: center;
	display: none;
}
.points_unit {
	display: inline-block;
	vertical-align: top;
	font-family: "Kozuka Gothic Pr6N Heavy", "Segoe UI";
	font-weight: bold;
}
.club_card_results .card_points_size {
	color: #333333;
}
.card_includes {
	margin: 73px 0 0;
	padding: 0;
	list-style-type: none;
	font-size: 0;
}
.card_includes li {
	display: inline-block;
	width: 240px;
	margin: 0 20px;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	vertical-align: top;
	font-size: 1rem;
	padding: 25px;
}
.logo_block {
	height: 175px;
	padding: 15px 0;
	margin-bottom: 14px; 
}
.ym_points img {
	width: 135px;
	height: auto;
}
.kp_points img {
	width: 123px;
	height: auto;
}
.ck_points img {
	width: 140px;
	height: auto;
}
.cc_points img {
	width: 161px;
	height: auto;
}
.include_size {
	font-size: 280%;
	line-height: 30px;
	color: #333333;
	font-family: "Kozuka Gothic Pr6N Heavy";
	white-space: nowrap;
}
.include_size .amd_symbol {
	font-size: 110.7%;
	display: inline-block;
	line-height: inherit;
	font-family: "Segoe UI SemiBold";
}
.include_name {
	font-size: 160%;
	line-height: 18px;
	color: #333333;
	font-family: "Kozuka Gothic Pr6N Extralight", "Segoe UI Light";
	margin-top: -4px;
}
.club_card_results .back_button {
	margin-top: 90px;
	color: #c3127d !important;
	border: 1px solid #c3127d;
	font-weight: bold;
}
.club_card_results .back_button.hovered {
	color: #ffffff !important;
	background: #c3127d;
}
.offers_page {
	background: #f3f3f3;
	padding-top: 190px;
}
.offers_list {
	overflow: hidden;
	margin-top: 20px;
}
.offers_list::-webkit-scrollbar { 
    display: none; 
}
.offers_list ul {
	margin: 0;
	padding: 0 0 0 225px;
	list-style-type: none;
	white-space: nowrap;
	font-size: 0;
}
.offers_list ul li {
	font-size: 1rem;
	display: inline-block;
	white-space: normal;
	width: 281px;
	margin-right: 8px;
	vertical-align: top;
	padding-bottom: 10px;
}
.offers_list .promotion_image {
	height: 281px;
	position: relative;
	overflow: hidden;
}
.offers_list .promotion_image img {
	width: 100%;
	height: 100%;
}
.promotion_info {
	position: absolute;
	left: 0;
	top: 100%;
	padding: 26px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 2;
	-o-transition: top .3s;
	-ms-transition: top .3s;
	-moz-transition: top .3s;
	-webkit-transition: top .3s;
	transition: top .3s;
	color: #ffffff;
	overflow: hidden;
}
.promotion_info.showed {
	top: 0;
}
.promotion_info .promotion_title {
	font-size: 170%;
	line-height: 20px;
	font-weight: bold;
}
.promotion_date {
	font-size: 140%;
	line-height: 18px;
	font-family: "Segoe UI Light";
}
.promotion_shortly {
	font-size: 140%;
	line-height: 18px;
	max-height: 200px;
	overflow: hidden;
	font-family: "Segoe UI Light";
	margin-top: 17px;
}
.promotion_block {
	padding-top: 12px;
}
.promotion_block > .promotion_title {
	font-size: 140%;
	line-height: 18px;
	margin-top: 2px;
	height: 36px;
	overflow: hidden;
}
.promotion_name {
	font-weight: bold;
	padding-right: 5px;
}
.page_head_block {
	padding-left: 225px;
}
.page_head_block .info_title,
.schedule_head_block .info_title {
	margin: 0;
}
.kids_page {
	background: #491a03;
	text-align: center;
}
.kids_page img {
	max-width: 100%;
	max-height: 100%;
}
.events_list {
	margin: 25px 0 0 225px;
	width: 1058px;
	height: 567px;
	overflow: hidden;
}
.events_list.slick-slider {
	overflow: visible;
}
.event_block {
	width: 50%;
}
.slick-slider .event_block {
	width: 100%;
}
.event_inner {
	position: relative;
	height: 567px;
	overflow: hidden;
	margin-right: 50px;
}
.event_inner img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	min-height: 100%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.event_info_block {
	background: url('images/slide_shadow.png') repeat-y;
	background-size: 100% 100%;
	background-position: left top;
	position: relative;
	z-index: 2;
	color: #ffffff;
	padding: 45px 50px;
}
.event_title {
	font-size: 400%;
	line-height: 48px;
	max-height: 240px;
	font-family: "Kozuka Gothic Pr6N Heavy", "Segoe UI";
	font-weight: bold;
	width: 525px;
	overflow: hidden;
}
.event_date {
	font-size: 200%;
	line-height: 18px;
	margin-top: 20px;
	font-family: "Segoe UI Light";
}
.event_date span {
	display: block;
	float: left;
}
.event_date span:before {
	display: block;
	float: left;
	width: 2px;
	height: 20px;
	background: #ffffff;
	margin: 0 13px;
	opacity: 0.5;
	content: "";
}
.event_date span:first-child:before {
	display: none;
}
.event_short_info {
	font-family: "Kozuka Gothic Pr6N Extralight", "Segoe UI Light";
	font-size: 130%;
	line-height: 18px;
	max-height: 108px;
	width: 525px;
	overflow: hidden;
	margin-top: 20px;
}
.events_list .slick-list {
	overflow: visible;
}
.slick-slide {
	outline: none !important;
}
.slick-prev,
.slick-next {
	position: absolute;
	border: none;
	font-size: 0;
	background: url('images/svg/slick_arrow.svg') no-repeat #ffffff;
	background-size: auto 22px;
	background-position: center;
	width: 60px;
	height: 60px;
	left: 1615px;
	box-shadow: 0 0 27px rgba(0,0,0,0.2);
	bottom: -100px;
	padding: 0;
	z-index: 20;
}
.slick-prev:before,
.slick-next:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: url('images/svg/slick_arrow_hover.svg') no-repeat #f2f2f2;
	background-size: auto 22px;
	background-position: center;
	-o-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	opacity: 0;
}
.slick-prev {
	margin-left: -70px;
	transform: scaleX(-1);
	-moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}
.kinopark_logo {
	padding-top: 10px;
	padding-right: 275px;
}
.schedule_head_block {
	padding-left: 275px;
	max-width: 960px;
}
.kinopark_logo img {
	width: 240px;
	height: auto;
}
.tab_buttons {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 615px;
	z-index: 10;
}
.tab_buttons ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	background: #ffffff;
	box-shadow: 0 0 27px rgba(0,0,0,0.2);
}
.tab_buttons li {
	border-top: 1px solid rgba(0,0,0,0.05);
	padding: 15px 25px 15px 33px;
	text-transform: uppercase;
	-o-transition: background .3s;
	-ms-transition: background .3s;
	-moz-transition: background .3s;
	-webkit-transition: background .3s;
	transition: background .3s;
	position: relative;
	z-index: 10;
}
.tab_buttons li:first-child {
	border: none;
}
.tab_buttons li.selected {
	background: #c3127d !important;
}
.tab_buttons span {
	-o-transition: color .3s;
	-ms-transition: color .3s;
	-moz-transition: color .3s;
	-webkit-transition: color .3s;
	transition: color .3s;
}
.tab_buttons li.selected span {
	color: #ffffff !important;
}
.tab_buttons .day {
	display: inline-block;
	font-size: 180%;
	line-height: 20px;
	color: #333333;
	font-weight: bold;
}
.tab_buttons .month {
	display: inline-block;
	font-size: 180%;
	line-height: 20px;
	color: #999999;
	font-weight: bold;
	margin-left: 5px;
}
.tab_buttons .weekday {
	display: inline-block;
	font-size: 120%;
	line-height: 19px;
	color: #666666;
}
.tab_buttons .today {
	position: absolute;
	font-size: 110%;
	line-height: 13px;
	font-weight: bold;
	color: #c52082;
	transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    width: 69px;
    left: 13px;
    height: 69px;
    bottom: 0;
    display: block;
    text-align: center;
}
.tab_block {
	height: 0;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	-o-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}
.tab_block.active{
	height: auto;
	visibility: visible;
	opacity: 1;
}
.tab_container {
	height: 615px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 275px;
	background: url('images/nav_shadow.png') repeat-x;
	background-position: left bottom;
	background-size: 1px auto;
	position: relative;
	z-index: 5;
}
.list_head_block {
	margin-top: 50px;
	font-size: 140%;
	line-height: 18px;
	padding: 15px 275px;
	font-family: "Kozuka Gothic Pr6N Extralight", "Segoe UI Light";
	position: relative;
	height: 48px;
}
.list_head_block:before {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 40px;
	content: "";
	background: url('images/schedule_bg.png') no-repeat;
	background-size: auto 39px;
	background-position: top center;
}
.movie_hour {
	width: 125px;
	float: left;
}
.movie_title {
	width: 805px;
	float: left;
	padding-right: 45px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.movie_format {
	width: 175px;
	float: left;
}
.movie_cost {
	width: 160px;
	float: left;
}
.movie_hall {
	width: 105px;
	float: left;
}
.movies_list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 160%;
	line-height: 29px;
	font-family: "Kozuka Gothic Pr6N Regular","Segoe UI";
}
.movies_list li {
	padding: 10px 0;
	border-top: 1px solid #dadada;
}
.movies_list li:first-child {
	border: none;
}
.tab_container::-webkit-scrollbar { 
    display: none; 
}
.lang_switcher {
	position: absolute;
	top: 50px;
	right: 0;
	background: #ffffff;
	z-index: 50;
	box-shadow: 0 0 27px rgba(0,0,0,0.2);
	width: 145px;
	-o-transition: width 0.3s;
	-ms-transition: width 0.3s;
	-moz-transition: width 0.3s;
	-webkit-transition: width 0.3s;
	transition: width 0.3s;
}
.lang_switcher a {
	position: absolute;
	width: 72px;
	font-size: 160%;
	border-left: 1px solid rgba(0,0,0,0.1);
	text-transform: uppercase;
	line-height: 20px;
	text-align: center;
	padding: 30px 0;
	font-weight: bold;
	color: #333333 !important;
	background: #ffffff;
	right: 0;
	display: block;
	top: 0;
	z-index: 1;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.lang_switcher a.current_lg {
	z-index: 2;
}
.lang_switcher.opened  a.current_lg {
	background: #c3127d !important;
    color: #ffffff !important;
}
.lg_button {
	display: block;
	float: left;
	width: 72px;
	height: 80px;
	background: url('images/svg/lg_arrow.svg') no-repeat;
	background-size: 30px;
	background-position: center;
	-o-transition: transform 0.3s;
	-ms-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
}
.lg_button:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: url('images/svg/lg_arrow_hover.svg') no-repeat;
	background-size: 30px;
	background-position: center;
	opacity: 0;
}
.lang_switcher.opened .lg_button{
	transform: scaleX(-1);
	-moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}


.list_search {
	position: absolute;
	left: 0;
	top: 0;
	width: 407px;
	height: 100%;
	background: url('images/nav_shadow.png') repeat-x #ffffff;
	background-size: 1px auto;
	background-position: left bottom;
	-o-transition: left 0.3s;
	-ms-transition: left 0.3s;
	-moz-transition: left 0.3s;
	-webkit-transition: left 0.3s;
	transition: left 0.3s;
	z-index: 20;

}
.list_search.closed {
	left: -407px;
}
.list_search:after {
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 33px;
	background: url('images/search_shadow.png') repeat-y;
	background-size: auto 1px;
	background-position: left top;
	content: "";
	z-index: 1;
}
.search_section {
	padding: 30px 40px 40px;
	background: #ffffff;
	position: relative;
	z-index: 10;
}
.shops_list {
	height: 780px;
	overflow-x: hidden;
	overflow-y: auto;
	background: url('images/schedule_bg.png') no-repeat;
	background-size: auto;
	background-position: top center;
	position: relative;
	z-index: 1;
}
.shops_list::-webkit-scrollbar { 
    display: none; 
}
.search_text {
	width: 100%;
	border: 1px solid transparent;
	border-radius: 29px;
	font-size: 160%;
	line-height: 28px;
	padding: 14px 24px;
	box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
	background: transparent;
	color: #333333;
	position: relative;
	z-index: 2;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	caret-color: transparent;
}
.search_text.focused {
	border-color: #c7c7c7;
}
.search_text::-webkit-input-placeholder {
	color: #666666;
}
.search_text::-moz-placeholder {
	color: #666666;
}
.search_text:-moz-placeholder {
	color: #666666;
}
.search_text:-ms-input-placeholder  {
	color: #666666;
}
.ui-keyboard {
	position: absolute;
	bottom: 25px;
	top: auto !important;
	left: 430px !important;
	font-size: 2rem !important;
	padding: 20px 20px 15px 15px;
	background: rgba(0,0,0,0.8);
	border-radius: 18px;
}

.ui-keyboard-button {
    height: 56px;
    min-width: 56px;
    margin: 0 0 5px 5px;
    cursor: pointer;
    overflow: hidden;
    line-height: 16px;
    padding: 20px 0;
    color: #333333 !important;
    font-family: "Segoe UI";
    font-weight: bold;
    background: #ffffff !important;
    border-radius: 9px;
    border: none !important;
    position: relative;
    text-transform: uppercase;
}
.ui-keyboard-button span {
	position: relative;
	z-index: 2;
}
.shops_list > span {
	display: block;
	font-size: 140%;
	line-height: 15px;
	padding: 10px 40px;
	font-weight: bold;
	color: #333333;
	background: #e8e8e8;
	text-transform: uppercase;
	overflow: hidden;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.shops_list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 160%;
	line-height: 19px;
	font-family: "Kozuka Gothic Pr6N Extralight";
}
.shops_list ul li {
	padding: 20px 40px;
	border-top: 1px solid rgba(0,0,0,0.1);
	position: relative;
	z-index: 20;
	height: 60px;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	overflow: hidden;
}
.shops_list ul li:first-child {
	border: none;
	height: 59px;
}
.shops_list ul li.filtered,
.shops_list.filtered > span:first-child,
.shops_list.filtered .top_list li,
.shops_list span.filtered {
	padding-top: 0;
	padding-bottom: 0;
	border: none;
	height: 0;
}
.no_results_info {
	display: none;
	font-size: 160%;
	line-height: 19px;
	font-family: "Kozuka Gothic Pr6N Extralight";
	padding: 20px 40px;
	text-align: center;
	color: #333333;
}
.list_button {
	display: block;
	position: absolute;
	left: 100%;
	top: 199px;
	width: 79px;
	height: 312px;
    background: url('images/search_shadow.png') repeat-y #c3127d;
    background-size: auto 1px;
    background-position: left center;
    color: #ffffff;
    font-size: 160%;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 5;
}
.list_button span {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 30px;
	bottom: 30px;
	transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.list_button span.opened_text,
.list_search.closed .list_button span.closed_text {
	opacity: 1;
	visibility: visible;
}
.list_search.closed .list_button span.opened_text {
	opacity: 0;
	visibility: hidden;
}
.list_button:before {
	display: block;
	width: 30px;
	height: 30px;
	margin: 30px auto;
	background: url('images/svg/list_arrow.svg') no-repeat;
	background-size: 30px;
	background-position: center;
	-o-transition: transform 0.3s;
	-ms-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	content: "";
	transform: scaleX(-1);
	-moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}
.list_search.opened .list_button:before{
	transform: scaleX(1);
	-moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -o-transform: scaleX(1);
}
.search_input {
	position: relative;
	margin: 0;
	display: block;
	font-weight: normal;
}
.reset_button {
	position: absolute;
	display: block;
	pointer-events: none;
	width: 20px;
	height: 20px;
	background: url('images/svg/search.svg') no-repeat;
	background-size: 20px;
	background-position: center;
	top: 20px;
	right: 22px;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: none;
	outline: none;
	box-shadow: none;
	z-index: 3;
}
.search_input.active .reset_button {
	background: url('images/svg/cancel.svg') no-repeat;
	background-size: 30px;
	background-position: center;
	transform: scaleX(-1);
	-moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    pointer-events: initial;

}
.reset_button:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: url('images/svg/search_hover.svg') no-repeat;
	background-size: 20px;
	background-position: center;
	opacity: 0;
}
.search_input.active .reset_button:before {
	background: url('images/svg/cancel_hover.svg') no-repeat;
	background-size: 30px;
	background-position: center;
}
.ui-keyboard-bksp span {
	vertical-align: top;
	width: 100%;
	height: 16px;
	background: url('images/svg/back.svg') no-repeat;
	background-size: 19px auto;
	background-position: center;
	font-size: 0;
}
.ui-keyboard-space {
	width: 420px;
}
.ui-keyboard-preview-wrapper input.search_text {
	text-align: center;
	font-size: 150%;
	line-height: 40px;
	padding: 15px;
	border: none;
	background: transparent;
	margin-bottom: 20px;
	color: #ffffff;
	font-family: "Kozuka Gothic Pr6N Light";
	box-shadow: none;
	outline: none;
	caret-color: #ffffff;
}
.ui-keyboard-preview-wrapper .search_text::-webkit-input-placeholder {
	font-size: 0;
}
.ui-keyboard-preview-wrapper .search_text::-moz-placeholder {
	font-size: 0;
}
.ui-keyboard-preview-wrapper .search_text:-moz-placeholder {
	font-size: 0;
}
.ui-keyboard-preview-wrapper .search_text:-ms-input-placeholder  {
	font-size: 0;
}
.ui-keyboard-preview-wrapper {
	position: relative;
}
.ui-keyboard-preview-wrapper:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 4;
	content: "";
}
.ui-keyboard-accept {
	position: absolute;
	min-width: 20px;
	height: 20px;
	font-size: 0 !important;
	margin: 0;
	top: 20px;
	right: 20px;
	background: url('images/svg/close.svg') no-repeat !important;
	background-size: 20px !important;
	background-position: center !important;
	z-index: 10;
}
.ui-keyboard-button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url('images/kb_hover.png') repeat-x;
	background-size: 1px auto;
	background-position: left top;
	content: "";
	opacity: 0;
	-o-transition: opacity: 0.3s;
	-ms-transition: opacity: 0.3s;
	-moz-transition: opacity: 0.3s;
	-webkit-transition: opacity: 0.3s;
	transition: opacity: 0.3s;
}
.ui-keyboard-button.ui-state-hover:before {
	opacity: 1;
}
.navigation_page {
	background: #f3f3f3;
}
.map_section {
	position: relative;
	overflow: hidden;
	height: 100%;
}
.floor_buttons {
	position: absolute;
	top: 50%;
	right: 0;
	background: #ffffff;
	box-shadow: 0 0 27px rgba(0,0,0,0.2);
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    overflow: hidden;
    z-index: 10;
}
.floor_buttons ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.floor_buttons li {
	border-top: 1px solid rgba(0,0,0,0.05);
	padding: 15px 25px 15px 33px;
	text-transform: uppercase;
	-o-transition: color ease-out 1s;
	-ms-transition: color ease-out 1s;
	-moz-transition: color ease-out 1s;
	-webkit-transition: color ease-out 1s;
	transition: color ease-out 1s;
	position: relative;
	z-index: 10;
	width: 80px;
	font-size: 240%;
	line-height: 30px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	padding: 25px 0;
	position: relative;
	z-index: 2;
}
.floor_buttons s li:first-child {
	border: none;
}
.indicator {
	display: block;
	position: absolute;
	left: 0;
	width: 80px;
	height: 80px;
	content: "";
	background: #c3127d;
	top: 80px;
	-o-transition: top 1s ease-in-out;
	-ms-transition: top 1s ease-in-out;
	-moz-transition: top 1s ease-in-out;
	-webkit-transition: top 1s ease-in-out;
	transition: top 1s ease-in-out;
}
.floor_buttons li.selected {
	color: #ffffff;
}
.floor_block img {
	width: 100%;
}
.map_blocks {
	height: 100%;
	overflow: hidden;
	position: relative;
}
.map_track {
	position: absolute;
	left: 0;
	width: 100%;
	-o-transition: top 1s ease-in-out;
	-ms-transition: top 1s ease-in-out;
	-moz-transition: top 1s ease-in-out;
	-webkit-transition: top 1s ease-in-out;
	transition: top 1s ease-in-out;
	top: -980px;
	z-index: 10;
}
.floor_hints {
	position: absolute;
	width: 200px;
	height: 200px;
	top: 390px;
	left: 860px;
}
.floor_hints.showed {
	z-index: 100;
}
.floor_hints > div {
	position: absolute;
	font-size: 600%;
	color: #333333;
	font-family: "Kozuka Gothic Pr6N Heavy";
	line-height: 56px;
	opacity: 0;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	text-align: center;
	top: 72px;
	left: 0;
	width: 100%;
}
.floor_hints > div.showed {
	opacity: 1;
}
.floor_hints > div img {
	width: 55px;
	vertical-align: bottom;
}
.floor_block {
	position: relative;
	height: 980px;
	overflow: hidden;

}
.floor_inner {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.card_points_size + .info_text {
	margin-top: 20px;
}
path {
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation: dash 20s linear forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
.map-svg{
   background-size: auto 100% !important;
}
.elementToZoomOn {
	transform: translate3d(643.2px, -5.495px, 0px) scale3d(0.33, 0.33, 1);
    transform-origin: 0px 0px 0px;
}
.timers {
	position: absolute;
	top: 150px;
	right: 50px;
	font-size: 200%;
	z-index: 500;
	margin-top: 150px;
	margin-right: 50px;
}
.timers span {
	display: block;
}





.shops_list ul li.hovered,
.page_navbar li.hovered,
.tab_buttons li.hovered,
.lang_switcher a.hovered,
.floor_buttons li.hovered {
	background: #f3f3f3;
}
.list_button.hovered,
.keyboard_block button.hovered {
	background: #a60f69;
}
.keyboard_table span.hovered {
	background: url('images/ckb_hover.png') repeat-x;
	background-size: 1px auto;
	background-position: left top;
}
.gift_card_keyboard .keyboard_table span.hovered {
	background: url('images/gkb_hover.png') repeat-x;
	background-size: 1px auto;
	background-position: left top;
}
.club_card_keyboard .keyboard_table span.hovered.backspace_key:before,
.club_card_keyboard .keyboard_table span.hovered.reset_key:before,
.gift_card_page .keyboard_table span.hovered.backspace_key:before,
.gift_card_page .keyboard_table span.hovered.reset_key:before,
.lg_button.hovered:before,
.reset_button.hovered:before,
.slick-prev.hovered:before,
.slick-next.hovered:before {
	opacity: 1;
}
.navigation_content .info_title {
	font-size: 380%;
}
.location {
	position: absolute;
	width: 67px;
	bottom: 475px;
	left: 900px;

	z-index: 50;
	transition: all 1s ease-out;
	transform-origin: center bottom;
  	-webkit-transform-origin: center bottom;
  	transform: translate3d(0px, 0px, 0px) scale3d(3.0303, 3.0303, 1)
}
.location img {
	width: 100%;
}
.location_text {
	position: absolute;
	bottom: 70px;
	left: 62px;
	font-size: 130%;
	width: 123px;
	height: 41px;
	line-height: 21px;
	padding: 7px 0 13px;
	text-align: center;
	color: #333333;
	display: block;
	background: url('images/location_bg.png') no-repeat;
	background-size: 100%;
}




.circle {
  position: absolute;
  height:140px;
  width:140px;
  border-radius:50%;
  
  display: block;
  position:relative;
  top: 30px;
  left: 30px;
  
  -webkit-transition:height .25s ease, width .25s ease;
  transition:height .25s ease, width .25s ease;
  

}


.circle:before,
.circle:after {
  content:'';
  display:block;
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  border-radius:50%;
  border:6px solid #c3127d;
  opacity: 0;
}

.floor_hints.showed .circle:before {
  -webkit-animation: ripple 0.9s linear;
  animation: ripple 0.9s linear;
}
.floor_hints.showed .circle:after {
  -webkit-animation: ripple 0.9s linear 0.3s ;
  animation: ripple 0.9s linear 0.3s;
}


@-webkit-keyframes ripple{
  0% {-webkit-transform:scale(1); }
  50% {-webkit-transform:scale(1.4); opacity:0.3;}
  100% {-webkit-transform:scale(1.75); opacity:0;}
}

@keyframes ripple{
  0% {transform:scale(1); }
  50% {transform:scale(1.4); opacity:0.3;}
  100% {transform:scale(1.75); opacity:0;}
}
.scroll-x {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
}
.scroll-x .scroll-element_outer {
	margin: 0 33%;
	height: 6px;
	background: #e6e6e6;
	border-radius: 2px;
	position: relative;
}
.scroll-x .scroll-bar {
	background: #c3127d;
	height: 6px;
	border-radius: 2px;
	position: relative;
	cursor: pointer;
}