@import "variables.less";
@import "mixins.less";
@import "reset.less";

html, body {

	height: 100%;}
body {
	position: relative;
	font: 18px/1.3 @font;
	background: #fff;
	color: @black;
	box-sizing: border-box;
	padding-top: 110px;}
a {

	color: inherit;}
.nowrap {
	
	white-space: nowrap;}
.overflow {

	overflow: hidden;}
.clr {
	content: '';
	clear: both;
	display: block;
	&:after {
		content: '';
		clear: both;
		display: block;
	}}
.container {
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1920px;}
.trn {
	-webkit-transition: all .2s ease;
	transition: all .2s ease;}
.icn {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;}
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #920000;
	z-index: 100;
	&:after {
		.clr;
	}
	&__logo {
		display: block;
		float: left;
		width: 210px;
		height: 72px;
		padding: 18px 30px 21px 30px;
		text-decoration: none;
		margin-right: 70px;
		position: relative;
		z-index: 10;
		img {
			display: block;
			max-width: 100%;
			max-height: 100%;
		}
	}
	&__controls {
		float: left;
		position: relative;
		z-index: 10;
		&:before {
			content: '';
			display: inline-block;
			vertical-align: middle;
			width: 1px;
			height: 110px;
		}
		&_mobile {
			display: none;
		}
	}
	&__control {
		.trn();
		display: inline-block;
		vertical-align: middle;
		width: 35px;
		height: 35px;
		background: @black;
		border-radius: 0%;
		text-align: center;
		text-decoration: none;
		color: #fff;
		font-size: 15px;
		line-height: 35px;
		margin: 5px 5px;
		cursor: pointer;
		&:hover {
			background: @red;
		}
		&-icn {
			.icn;
			font-size: 15px;
			line-height: 35px;
			&_user:before { content: "\f007"; }
			&_search:before { content: "\f002"; }
			&_sv:before { content: "\f06e"; }
		}
	}
	&__menu {
		float: right;
		padding-right: 10px;
		&-link {
			display: inline-block;
			vertical-align: top;
			padding: 36px 0 39px;
			text-decoration: none;
			&-label {
				display: block;
				font: 500 16px/21px @font;
				padding: 7px 20px;
				color: #fff;
			}
			&:hover, &_current {
				.nav__menu-link-label {
					background: #ab0606;
					color: #fff;
				}
			}
		}
	}}
.slider {
	position: relative;
	&__title {
		display: table;
		width: 100%;
		height: 730px;
		position: relative;
		z-index: 5;
		text-align: center;
		&-container {
			display: table-cell;
			vertical-align: middle;
			padding: 15px 0 200px;
			&:before {
				content: '';
				display: block;
				//background: url(../images/log.png) bottom center no-repeat;
				background-size: cover;
				width: 360px;
				height: 440px;
				margin: 0 auto -40px;
			}
		}
		&-main {
			display: block;
			font: bold 64px/1 @font;
			letter-spacing: .06em;
			text-transform: uppercase;
			color: #fff;
		}
		&-sec {
			display: block;
			font: 500 36px/1 @font;
			text-transform: uppercase;
			color: #fff;
			margin-top: .3em;
		}
	}
	&__btns {
		position: absolute;
		z-index: 5;
		bottom: 97px;
		left: 0;
		right: 0;
		text-align: center;
	}
	&__btn-select {
		display: inline-block;
		min-width: 270px;
		box-sizing: border-box;
		background: fade(#000,90);
		font: 18px/20px @font;
		color: #fff;
		padding: 20px 30px;
		text-align: center;
		text-decoration: none;
	}
	&__slides-wrapper {
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		overflow: hidden;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			right: 0;
			bottom: 0;
			background: fade(#000,40);
			z-index: 1;
		}
		&:after {
			content: '';
			background: url(../images/log.png) bottom center no-repeat;
			background-size: cover;
			width: 600px;
			height: 787px;
			position: absolute;
			top: 50px;
			left: 50%;
			margin-left: -300px;
			opacity: .12;
			z-index: 2;
		}
	}
	&__slides {
		height: 100%;
	}
	&__slide {
		background-size: cover;
		background-position: center center;
		outline: none;
	}

	.slick-list, .slick-track {
		height: 100%;
	}
	.slick-arrow {
		position: absolute;
		z-index: 5;
		width: 200px;
		top: 0;
		bottom: 0;
		background: transparent;
		border: none;
		outline: none;
		overflow: hidden;
		text-indent: 999px;
		text-align: left;
		cursor: pointer;
		text-decoration: none;
		&:after {
			.trn();
			.icn;
			content: '';
			width: 30px;
			height: 157px;
			font-size: 18px;
			line-height: 157px;
			position: absolute;
			top: 50%;
			margin-top: -78px;
			background: fade(#000,30);
			text-indent: 0;
			text-align: center;
			color: #fff;
		}
		&.slick-prev {
			left: 0;
			&:after {
				left: 0;
				content: "\f104";
			}
		}
		&.slick-next {
			right: 0;
			&:after {
				right: 0;
				content: "\f105";
			}
		}
		&:hover {
			&:after {
				background: @red;
				width: 40px;
			}
		}
	}
	.slick-dots {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		text-align: center;
		padding-bottom: 30px;
		z-index: 5;
		li {
			display: inline-block;
			&.slick-active button:after { background: #fff; }
		}
		button {
			display: block;
			cursor: pointer;
			width: 20px;
			height: 20px;
			background: transparent;
			border: none;
			outline: none;
			overflow: hidden;
			position: relative;
			text-indent: 999px;
			text-align: left;
			&:after {
				.trn;
				content: '';
				width: 10px;
				height: 10px;
				border-radius: 0%;
				position: absolute;
				left: 50%;
				top: 50%;
				margin: -5px 0 0 -5px;
				background: @red
			}
		}
	}}
.map {
	position: relative;
	&__bg {
		position: absolute;
		left: 0;
		right: 50%;
		right: calc(~"50% + 400px");
		top: 0;
		bottom: 0;
		z-index: 1;
		background: url(../images/map__controls-bg.jpg) center center no-repeat;
		background-size: cover;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			top: 0;
			background: fade(@black,90);
		}
		&:after {
			content: '';
			position: absolute;
			right: 330px;
			bottom: 0;
			background: url(../images/logo-white-mirror.svg) no-repeat;
			background-size: cover;
			width: 384px;
			height: 503px;
		}
	}
	&__wrapper {
		position: relative;
		max-width: 1440px;
		margin: 0 auto;
		z-index: 5;
	}
	&__container {
		display: table;
		width: 100%;
		height: 610px;
	}
	&__title {
		font: 36px/40px @font;
		padding: 0 10px;
	}
	&__folder-list {
		display: table-cell;
		vertical-align: top;
		width: 320px;
		color: #fff;
		padding-top: 45px;
		position: relative;
		z-index: 0;
		&-more {
			display: inline-block;
			width: 40px;
			height: 40px;
			display: inline-block;
			border: 2px solid;
			text-align: center;
			text-decoration: none;
			border-radius: 0%;
			margin-left: 20px;
			position: relative;
			cursor: pointer;
			white-space: nowrap;
			&, &:before, &:after {
				border-color: #473f41;
			}
			&:before {
				content: '';
				display: block;
				width: 0;
				border-left: 2px solid #473f41;
				height: 17px;
				position: absolute;
				left: 50%;
				margin-left: -1px;
				top: 50%;
				margin-top: -10px;
			}
			&:after {
				content: '';
				border-left: 2px solid #473f41;
				border-top: 2px solid #473f41;
				width: 8px;
				height: 8px;
				position: absolute;
				left: 50%;
				top: 50%;
				margin: -2px 0 0 -5px;
				transform: rotate(225deg);
			}
		}
	}
	&__folder-elements {
		margin-top: 56px;
		margin-bottom: 45px;
	}
	&__folder-element {
		display: block;
		font: 18px/25px @font;
		margin-bottom: 3px;
		cursor: pointer;
		padding: 4px 0px 6px;
		&-label {
			.trn;
			display: inline-block;
			padding: 5px 10px;
			border-radius: 18px;
		}
		&:hover, &_current {
			.map__folder-element-label {
				background: @red;
			}
		}
	}
	&__items-list {
		display: table-cell;
		vertical-align: top;
		width: 320px;
		background: @red;
		color: @black;
		position: relative;
		&-close {
			width: 65px;
			height: 60px;
			margin-left: auto;
			position: relative;
			display: block;
			cursor: pointer;
			transform: rotate(45deg);
			&:before {
				content: '';
				width: 25px;
				border-top: 2px solid @black;
				position: absolute;
				top: 50%;
				left: 50%;
				margin: -1px 0 0 -12px;
			}
			&:after {
				content: '';
				height: 25px;
				border-left: 2px solid @black;
				position: absolute;
				top: 50%;
				left: 50%;
				margin: -12px 0 0 -1px;
			}
		}
		// &-more {
		// 	display: inline-block;
		// 	width: 40px;
		// 	height: 40px;
		// 	display: block;
		// 	border: 2px solid;
		// 	text-align: center;
		// 	text-decoration: none;
		// 	border-radius: 0%;
		// 	margin-left: auto;
		// 	margin-right: auto;
		// 	position: relative;
		// 	cursor: pointer;
		// 	&, &:before, &:after {
		// 		border-color: @black;
		// 	}
		// 	&:before {
		// 		content: '';
		// 		display: block;
		// 		width: 0;
		// 		border-left: 2px solid @black;
		// 		height: 17px;
		// 		position: absolute;
		// 		left: 50%;
		// 		margin-left: -1px;
		// 		top: 50%;
		// 		margin-top: -10px;
		// 	}
		// 	&:after {
		// 		content: '';
		// 		border-left: 2px solid @black;
		// 		border-top: 2px solid @black;
		// 		width: 8px;
		// 		height: 8px;
		// 		position: absolute;
		// 		left: 50%;
		// 		top: 50%;
		// 		margin: -2px 0 0 -5px;
		// 		transform: rotate(225deg);
		// 	}
		// }
	}
	&__items-elements {
		position: absolute;
		top: 50px;
		bottom: 0;
		overflow: auto;
		left: 0;
		right: 0;
	}
	&__items-element {
		.trn();
		display: block;
		cursor: pointer;
		padding: 10px 20px;
		&-name {
			font: 16px/18px @font;
		}
		&-hidden {
			margin-top: 14px;
			display: none;
			&:after {
				.clr;
			}
		}
		.btn-way {
			float: right;
		}
		&-address {
			font: 300 13px/18px @font;
			overflow: hidden;
		}
		&_current {
			color: #fff;
			.map__items-element-hidden {
				display: block;
			}
		}
		&:hover {
			color: #fff;
		}
	}
	&__window {
		display: table-cell;
		vertical-align: top;
		position: relative;
	}
	&__frame {
		overflow: hidden;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		iframe {
			width: 100%;
			height: 100%;
			border: none;
		}
	}
	&__baloon {
		&-content {
			display: block;
			width: 200px;
			text-align: center;
		}
		&-name {
			font: 16px/20px @font;
			margin-bottom: 10px;
		}
		&-img {
			display: block;
			width: 150px;
			height: 150px;
			overflow: hidden;
			border-radius: 0%;
			margin: 0 auto;
			img {
				display: block;
				width: 100%;
				min-height: 100%;
			}
		}
	}}
.events {
	padding: 75px 0 20px;
	position: relative;
	z-index: 1;
	&__container {
		// max-width: 1170px;
		max-width: 1440px;
		margin: 0 auto;
		position: relative;
	}
	&__title {
		font: 36px/1.2 @font;
		margin-bottom: 46px;
	}
	&__wrapper {
		position: relative;
	}
	&__wrapper-container {
		min-height: 445px;
		box-sizing: border-box;
		z-index: 5;
		max-width: 1440px;
		// max-width: 1170px;
		margin: 0 auto;
		position: relative;
		padding-left: 670px;
	}
	&__bg {
		position: absolute;
		right: 0;
		left: 50%;
		// left: calc(~"50% + 85px");
		left: calc(~"50% - 55px");
		top: 0;
		bottom: 0;
		z-index: 1;
		background: url(../images/events__controls-bg.jpg) center right no-repeat;
		background-size: cover;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			top: 0;
			background: fade(@black,90);
		}
	}
	&__events {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 670px;
		&-slider {
			width: 100%;
			height: 100%;
		}
		.slick-list, .slick-track {
			height: 100%;
		}
	}
	&__event {
		height: 100%;
		position: relative;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			top: 0;
			z-index: 3;
			background: linear-gradient(to bottom, 
				rgba(0,0,0,0) 0%,
				rgba(0,0,0,0.25) 42%,
				rgba(0,0,0,0.4) 71%,
				rgba(0,0,0,0.4) 99%,
				rgba(0,0,0,0.4) 100%);
		}
		&-gallery {
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			top: 0;
			&-imgs {
				width: 100%;
				height: 100%;
			}
			&-img {
				width: 100%;
				height: 100%;
				background-position: center center;
				background-repeat: no-repeat;
				background-size: cover;
			}
			.slick-arrow {
				.trn();
				outline: none;
				position: absolute;
				top: 27px;
				z-index: 10;
				display: inline-block;
				width: 40px;
				height: 40px;
				border: 2px solid;
				text-decoration: none;
				border-radius: 0%;
				position: relative;
				cursor: pointer;
				position: absolute;
				overflow: hidden;
				text-indent: 999px;
				text-align: left;
				background: transparent;
				opacity: .3;
				&:hover {
					opacity: .65;
				}

				&, &:before, &:after {
					border-color: #fff;
				}
				&:before {
					content: '';
					display: block;
					height: 0;
					border-top: 2px solid #fff;
					width: 17px;
					position: absolute;
					left: 50%;
					margin-top: -1px;
					top: 50%;
					margin-left: -10px;
				}
				&:after {
					content: '';
					border-left: 2px solid #fff;
					border-top: 2px solid #fff;
					width: 8px;
					height: 8px;
					position: absolute;
					left: 50%;
					top: 50%;
					margin: -5px 0 0 -2px;
					transform: rotate(135deg);
				}


			}
			.slick-prev {
				right: 30px;
			}
			.slick-next {
				right: 90px;
				transform: rotate(180deg);
			}
		}
		&-wrapper {
			display: block;
			position: absolute;
			left: 0;
			top: 0;
			right: 0;
			bottom: 0;
			text-decoration: none;
			z-index: 5;
		}
		&-container {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 0 100px 32px 100px;
		}
		&-name {
			font: 500 30px/36px @font;
			color: #fff;
			height: 72px;
			overflow: hidden;
			display: block;
			display: -webkit-box;
			text-overflow: ellipsis;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			margin-bottom: 20px;
		}
		&-time {
			display: inline-block;
			font: 16px/20px @font;
			color: #fff;
			padding: 5px 10px;
			background: @red;
		}
	}

	&__list {
		padding: 30px 100px 30px 15px;
		position: relative;
		&-item {
			display: block;
			cursor: pointer;
			padding: 16px 25px 16px 35px;
			&-name {
				.trn();
				font: 16px/19px @font;
				color: #473f41;
				margin-bottom: 15px;
			}
			&-time {
				font: 14px/16px @font;
				color: @blue;
				margin-bottom: 5px;
			}
			&-place {
				font: 300 13px/15px @font;
				text-decoration: underline;
				color: #473f41;
			}
			&_current, &:hover {
				.events__list-item-name {
					color: #fff;
				}
			}
		}
	}
	&__all-link {
		display: inline-block;
		width: 40px;
		height: 40px;
		display: inline-block;
		border: 2px solid;
		text-align: center;
		text-decoration: none;
		border-radius: 0%;
		position: relative;
		cursor: pointer;
		position: absolute;
		right: 50px;
		top: 50%;
		margin-top: -16px;

		&, &:before, &:after {
			border-color: #473f41;
		}
		&:before {
			content: '';
			display: block;
			height: 0;
			border-top: 2px solid #473f41;
			width: 17px;
			position: absolute;
			left: 50%;
			margin-top: -1px;
			top: 50%;
			margin-left: -10px;
		}
		&:after {
			content: '';
			border-left: 2px solid #473f41;
			border-top: 2px solid #473f41;
			width: 8px;
			height: 8px;
			position: absolute;
			left: 50%;
			top: 50%;
			margin: -5px 0 0 -2px;
			transform: rotate(135deg);
		}
	}
	&__calendar {
		margin-top: 40px;
		display: inline-block;
		cursor: pointer;
		border: 2px solid @black;
		color: @black;
		text-decoration: none;
		text-align: center;
		font: 500 18px/20px @font;
		padding: 10px 25px 10px 15px;
		border-radius: 0px;
		letter-spacing: -.06em;
		&:before {
			content: '';
			width: 20px;
			height: 20px;
			display: inline-block;
			vertical-align: top;
			background: url(../images/icn-calendar.svg) center center no-repeat;
			background-size: contain;
			margin-right: 15px;
		}
	}}
.sights {
	padding: 20px 0 0 0;
	&__container {
		max-width: 1170px;
		margin: 0 auto;
		position: relative;
	}
	&__title {
		font: 36px/1.2 @font;
		margin-bottom: 43px;
		text-align: right;
	}
	&__item {
		display: inline-block;
		vertical-align: top;
		width: 25%;
		position: relative;
		&:after {
			content: '';
			display: block;
			padding-top: 87.5%;
		}
		&-face {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-position: center center;
			background-size: cover;
			&:before {
				content: '';
				position: absolute;
				left: 0;
				right: 0;
				bottom: 0;
				top: 0;
				background: linear-gradient(to bottom, 
					rgba(0,0,0,0) 0%,
					rgba(0,0,0,0.25) 60%,
					rgba(0,0,0,0.4) 80%,
					rgba(0,0,0,0.4) 100%);
			}
		}
		&-name {
			position: absolute;
			display: table;
			width: 100%;
			bottom: 0;
			left: 0;
			text-align: center;
			font: 600 30px/36px @font;
			height: 132px;
			color: #fff;
			&-container {
				display: table-cell;
				vertical-align: top;
				padding: 25px 25px 35px;
			}
		}
		&-back {
			.trn();
			visibility: hidden;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			display: block;
			overflow: auto;
			z-index: -1;
			opacity: 0;
			background: fade(@red,95);
			text-align: center;
			color: #fff;
			&-wrapper {
				display: table;
				width: 100%;
				height: 100%;
			}
			&-container {
				display: table-cell;
				vertical-align: middle;
				padding: 65px 50px 0px;
			}
			&-name {
				font: 600 30px/36px @font;
				margin-bottom: 30px;
			}
		}
		&-descr {
			font: 300 18px/22px @font;
			margin-bottom: 20px;
			p {
				margin-bottom: 15px;
			}
		}
		&-controls {
			> * {
				margin: 10px 5px;
			}
		}
		&-link {
			display: inline-block;
			width: 40px;
			height: 40px;
			display: inline-block;
			border: 2px solid;
			text-align: center;
			text-decoration: none;
			border-radius: 0%;
			position: relative;
			cursor: pointer;
			overflow: hidden;
			text-indent: 999px;
			text-align: left;
			box-sizing: border-box;
			white-space: nowrap;

			&, &:before, &:after {
				border-color: #fff;
			}
			&:before {
				content: '';
				display: block;
				height: 0;
				border-top: 2px solid #fff;
				width: 17px;
				position: absolute;
				left: 50%;
				margin-top: -1px;
				top: 50%;
				margin-left: -10px;
			}
			&:after {
				content: '';
				border-left: 2px solid #fff;
				border-top: 2px solid #fff;
				width: 8px;
				height: 8px;
				position: absolute;
				left: 50%;
				top: 50%;
				margin: -5px 0 0 -2px;
				transform: rotate(135deg);
			}
		}
		&-way {
			display: inline-block;
			width: 40px;
			height: 40px;
			background: url(../images/icn-route-white.svg) center center no-repeat;
			background-size: contain;
			cursor: pointer;
			overflow: hidden;
			text-indent: 999px;
			text-align: left;
			white-space: nowrap;
		}
		&:hover {
			.sights__item-back {
				visibility: visible;
				opacity: 1;
				z-index: 5;
			}
		}
	}
	&__more {
		margin-top: 40px;
		margin-left: auto;
		margin-right: auto;
		display: block;
		cursor: pointer;
		border: 2px solid @black;
		color: @black;
		text-decoration: none;
		text-align: center;
		font: 500 18px/20px @font;
		padding: 10px 25px 10px 15px;
		border-radius: 0px;
		letter-spacing: -.06em;
		
	}
}
.history {
	position: relative;
	padding: 188px 0 124px;
	&:before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
		top: 0;
		background: fade(#fff,64);
	}
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 70px 400px 47px 70px;
		background: @red url(../images/history__container-bg.jpg) center center no-repeat;
		background-size: cover;
		margin: 0 auto;
		color: #fff;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			right: 0;
			bottom: 0;
			background: url(../images/logo-white-mirror.svg) bottom right 20px no-repeat;
			background-size: 351px auto;
		}
	}
	&__text {
		font: 300 18px/30px @font;
		margin-bottom: 45px;
		p {
			margin-bottom: 30px;
		}
	}
	&__link-more {
		display: inline-block;
		width: 40px;
		height: 40px;
		display: inline-block;
		border: 2px solid;
		text-align: center;
		text-decoration: none;
		border-radius: 0%;
		position: relative;
		cursor: pointer;
		overflow: hidden;
		text-indent: 999px;
		text-align: left;
		box-sizing: border-box;
		white-space: nowrap;

		&, &:before, &:after {
			border-color: #fff;
		}
		&:before {
			content: '';
			display: block;
			height: 0;
			border-top: 2px solid #fff;
			width: 17px;
			position: absolute;
			left: 50%;
			margin-top: -1px;
			top: 50%;
			margin-left: -10px;
		}
		&:after {
			content: '';
			border-left: 2px solid #fff;
			border-top: 2px solid #fff;
			width: 8px;
			height: 8px;
			position: absolute;
			left: 50%;
			top: 50%;
			margin: -5px 0 0 -2px;
			transform: rotate(135deg);
		}
	}}
.footer {
	padding: 80px 0 50px;
	min-height: 300px;
	background: url(../images/footer-bg.jpg) center bottom no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
	&:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: fade(@black,85);
	}
	&__container {
		max-width: 1170px;
		margin: 0 auto;
		position: relative;
		&:after {
			.clr;
		}
	}
	&__contacts {
		width: 366px;
		float: left;
		margin-right: 104px;
		&-title {
			font: 36px/1.2 @font;
			margin-bottom: 47px;
		}
		&-phone {
			font: 24px/28px @font;
			margin-bottom: 10px;
			text-decoration: none;
		}
		&-email {
			font: 18px/22px @font;
			text-decoration: underline;
			color: @blue;
		}
	}
	&__dev {
		padding-top: 20px;
		font: 12px/14px @font;
		a {
			color: inherit;
			text-decoration: none;
			&:hover {
				text-decoration: underline;
			}
		}
	}
	&__nav {
		overflow: hidden;
		padding-top: 86px;
		font: 18px/22px @font;
		&-col {
			display: inline-block;
			vertical-align: top;
			width: 225px;
			margin-right: 90px;
		}
		&-link {
			display: block;
			padding: 7px 0;
			text-decoration: none;
		}
	}}
.a-block {
	img {
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}}
.page-title {
	position: relative;
	display: table;
	width: 100%;
	height: 355px;
	overflow: hidden;
	&:before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
		top: 0;
		background: fade(#231f20,70);
	}
	&__line {
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
		height: 15px;
		background: @red;
		&:before {
			content: '';
			width: 25%;
			background: #231f20;
			left: 0;
			top: 0;
			bottom: 0;
			position: absolute;
		}
	}
	&__wrapper {
		display: table-cell;
		vertical-align: bottom;
	}
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 50px 0px;
		margin: 0 auto;
		color: #fff;
		z-index: 1;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			top: -190px;
			width: 312px;
			height: 410px;
			background: url(../images/logo-white-mirror.svg) bottom center no-repeat;
			background-size: contain;
			opacity: .1;
			z-index: -1;
		}
	}
	&__title {
		font: 36px/42px @font;
	}}
.page-content {
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 50px 0px;
		margin: 0 auto;
	}}
.content {
	font: 18px/1.55 @font;
	color: #555555;
	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
		margin-bottom: 0.8em;
		line-height: normal;
		font-weight: 400;
		color: @black;
	}
	h6, .h6 { font-size: 18px; margin: 1em 0; }
	h5, .h5 { font-size: 22px; margin: 1em 0; }
	h4, .h4 { font-size: 26px; margin: 1em 0; }
	h3, .h3 { font-size: 30px; margin: 1em 0; }
	h2, .h2 { font-size: 36px; margin: 1em 0; }
	h1, .h1 { font-size: 40px; margin: 1em 0; }

	p {
		margin: 1.55em 0;
	}
	strong {
		font-weight: bold;
	}
	ul, ol {
		margin: 2em 0;
	}
	li {
		margin: .5em 0;
	}
	ul li {
		position: relative;
		padding-left: 14px;
		&:before{
			content: '';
			background: @black;
			width: 6px;
			height: 6px;
			border-radius: 0%;
			position: absolute;
			left: 0px;
			top: .6em;
		}
	}
	ol {
		list-style: inside decimal;
	}
	a {
		text-decoration: underline;
		color: @red;
		&:hover{
			text-decoration: none;
		}
	}
	img {
		max-width: 100%;
	}
	.table-wrap {
		display: block;
		width: 100%;
		overflow: auto;
	}
	table {
		border-collapse: collapse;
		font-size: 14px;
		margin: 2em 0;
		min-width: 75%;
		tr:hover {
			td {
				background: fade(@black,10);
			}
		}
		td {}
		th {
			font-weight: bold;
			text-align: center;
			background: #322f36;
			color: #fff;
			font-size: 18px;
		}
		th, td {
			padding: 15px 25px;
			border: 1px solid #322f36;
		}
		&.table_site {
			td {
				border: none;
				border-bottom: 1px solid #322f36;
			}
		}
	}}
.gallery-block {
	margin: 15px 0;
	&__container {
		text-align: left;
		margin-left: -15px;
	}
	&__item {
		display: inline-block;
		vertical-align: top;
		width: 380px;
		margin-left: 15px;
		margin-bottom: 15px;
		text-decoration: none !important;
		text-align: center;
		color: inherit !important;
		outline: none;
		max-width: 100%;
		&-img {
			display: block;
			margin: 0 auto;
		}
		&-descr {
			margin: 5px 0 0 !important;
			font-size: 18px;
			font-weight: 400;
			text-align: center;
		}
	}}
.videogallery-block {
	margin: 15px 0;
	iframe {
		display: block;
	}
	&__container {
		margin-left: -10px;
	}
	&__item {
		display: inline-block;
		vertical-align: top;
		width: 580px;
		margin-left: 10px;
		margin-bottom: 25px;
		max-width: 100%;
		&-link {
			display: block;
			background-position: center center;
			background-size: cover;
			background-repeat: no-repeat;
			position: relative;
			padding-top: 62%;
			&:before {
				.trn;
				position: absolute;
				width: 100%;
				height: 100%;
				top: 0;
				left: 0;
				content: '';
				background: rgba(0,0,0,.7);
				cursor: pointer;
			}
			&:after {
				.icn;
				.trn;
				content: "\f16a";
				position: absolute;
				font-size: 50px;
				line-height: 60px;
				height: 60px;
				width: 60px;
				text-align: center;
				cursor: pointer;
				top: 50%;
				left: 50%;
				margin-left: -30px;
				margin-top: -30px;
				color: #fff;
				z-index: 10;
			}
			&:hover {
				&:before {
					background: rgba(0,0,0,.5);
				}
				&:after {
					color: @red;
				}
			}
			&.playing {
				padding-top: 0;
				&:before, &:after {
					display: none;
				}
			}
		}
		&-title {
			margin: 5px 0 0 !important;
			font-size: 18px;
			font-weight: 400;
			text-align: center;
		}
	}}
.share {
	&__title {
		font: 500 18px/1.2 @font;
		margin-bottom: .5em;
	}
	&__item {
		.trn();
		display: inline-block;
		width: 40px;
		height: 40px;
		text-indent: 999px;
		text-align: center;
		white-space: nowrap;
		border: 2px solid @black;
		border-radius: 0%;
		overflow: hidden;
		margin: 0 5px 5px 0;
		position: relative;
		text-decoration: none;
		color: @black;
		&:hover {
			color: @red;
			border-color: @red;
		}
		&:before, .fa {
			.icn;
			display: block;
			width: 30px;
			height: 30px;
			position: absolute;
			text-align: center;
			text-indent: 0;
			font-size: 18px;
			line-height: 30px;
			left: 50%;
			top: 50%;
			margin: -15px 0 0 -15px;
		}
		&_fb:before {content: "\f09a";}
		&_vk:before {content: "\f189";}
		&_tw:before {content: "\f099";}
		&_gp:before {content: "\f0d5";}
		&_ok:before {content: "\f263";}
	}}
.slider-gallery {
	display: block;
	position: relative;
	&:after {
		content: '';
		width: 58px;
		position: absolute;
		right: 0;
		bottom: 0;
		top: 0;
		background: fade(@red,95) url(../images/logo-white.svg) bottom center no-repeat;
		background-size: auto 180px;
	}
	.slick-arrow {
		.trn();
		outline: none;
		position: absolute;
		z-index: 10;
		display: inline-block;
		right: 9px;
		width: 40px;
		height: 40px;
		border: 2px solid;
		text-decoration: none;
		border-radius: 0%;
		position: relative;
		cursor: pointer;
		position: absolute;
		overflow: hidden;
		text-indent: 999px;
		text-align: left;
		background: transparent;
		opacity: .3;
		&:hover {
			opacity: .65;
		}
		&, &:before, &:after {
			border-color: #fff;
		}
		&:before {
			content: '';
			display: block;
			height: 0;
			border-top: 2px solid #fff;
			width: 17px;
			position: absolute;
			left: 50%;
			margin-top: -1px;
			top: 50%;
			margin-left: -10px;
		}
		&:after {
			content: '';
			border-left: 2px solid #fff;
			border-top: 2px solid #fff;
			width: 8px;
			height: 8px;
			position: absolute;
			left: 50%;
			top: 50%;
			margin: -5px 0 0 -2px;
			transform: rotate(135deg);
		}
	}
	.slick-prev {
		top: 26px;
	}
	.slick-next {
		top: 78px;
		transform: rotate(180deg);
	}}
.tabs {
	&__btns {
		margin-bottom: 1em;
	}
	&__btn {
		display: inline-block;
		cursor: pointer;
		font: 18px/20px @font;
		color: white;
		background: @black;
		margin-right: -3px;
		margin-bottom: 1px;
		text-align: center;
		padding: 10px 15px;
		min-width: 140px;
		&_active {
			background: @red;
		}
	}}
.form {
	position: relative;
	max-width: 552px;
	margin-left: auto;
	margin-right: auto;
	&:after {
		.clr;
	}
	&__input-box {
		position: relative;
		text-align: left;
		input, textarea {
			.trn(.1);
			display: block;
			border: 2px solid fade(@black,80);
			border-radius: 0px;
			outline: 0;
			width: 100% !important;
			padding: 12px 20px;
			box-shadow: none;
			background: transparent;
			font: 400 14px/20px @font;
			color: @black;
			height: 48px;
			box-sizing: border-box;
			cursor: pointer;
			+ label {
				.trn(.1);
				font: 12px/14px @font;
				position: absolute;
				display: block;
				left: 0;
				right: 0;
				top: -16px;
				padding: 0 10px;
				color: @black;
				cursor: pointer;
				opacity: .7;
				box-sizing: border-box;
				overflow: hidden;
			}
			&.empty_field {
				+ label {
					font: 600 14px/20px @font;
					opacity: 1;
					-webkit-transform: translateY(30px);
					transform: translateY(30px);
					padding: 0 20px;
					width: 100%;
					opacity: .5;
				}
			}
			&.not_empty_field ,&:focus {
				+ label {
					font: 12px/14px @font;
					-webkit-transform: translateY(0px);
					transform: translateY(0px);
					opacity: 1;
					padding: 0 10px;
					white-space: nowrap;
					text-overflow: ellipsis;
				}
			}
		}
	}
	textarea {
		height: 120px;
	}
	&__box {
		display: block;
		position: relative;
		padding: 15px 0px 3px 0;
	}
	&__box_capture {
		.form__input-box {
			display: inline-block;
			width: 447px;
			vertical-align: middle;
		}
	}
	&__capture_img {
		display: inline-block;
		vertical-align: middle;
		margin-right: 25px;
	}
	input[type='checkbox']{
		opacity: 0;
		position: absolute;
		left: 0;
		top: 0;

		+ label {
			position: relative;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			margin: 15px 0;
			-webkit-transform: none;
			transform: none;
			font: 15px/22px @font;
			text-align: left;
			display: block;
			&:before {
				content: '';
				display: inline-block;
				width: 18px;
				height: 18px;
				vertical-align: top;
				background: transparent;
				border: 1px solid @black;
				border-radius: 1px;
				margin-right: 10px;
				position: relative;
				top: 0px;
			}
			a {
				.trn();
				color: @red;
				text-decoration: underline;
				&:hover {
					text-decoration: none;
				}
			}
		}
		&:checked + label:before {
			background: @red;
		}
	}
	&__btns {
		text-align: center;
		margin-top: 20px;
	}
	&__btn {
		display: inline-block;
		min-width: 270px;
		box-sizing: border-box;
		background: fade(@red,90);
		font: 18px/20px @font;
		color: #fff;
		border-radius: 0px;
		padding: 20px 30px;
		text-align: center;
		text-decoration: none;
		border: none;
		outline: none;
	}}
.events-slider {
	overflow: hidden;
	position: relative;
	&:before, &:after {
		content: '';
		display: block;
		background: fade(#000, 30);
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100%;
		z-index: 5;
	}
	&:before {
		left: 50%;
		margin-left: 400px;
	}
	&:after {
		right: 50%;
		margin-right: 400px;
	}
	&__slide {
		display: block;
		width: 800px !important;
		height: 500px !important;
		position: relative;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		text-decoration: none;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(to bottom, 
				rgba(0,0,0,0) 0%,
				rgba(0,0,0,0.25) 42%,
				rgba(0,0,0,0.4) 71%,
				rgba(0,0,0,0.4) 99%,
				rgba(0,0,0,0.4) 100%);
		}
		&-content {
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			padding: 0 70px 35px;
		}
		&-title {
			font: 36px/40px @font;
			color: #fff;
			margin-bottom: 10px;
		}
		&-date {
			display: inline-block;
			font: 16px/20px @font;
			color: #fff;
			background: @red;
			padding: 5px 10px;
		}
		&.slick-slide {
			.events-slider__slide-content {
				.trn();
				opacity: 0;
			}
			&.slick-current {
				.events-slider__slide-content {
					opacity: 1;
				}
			}
		}
	}
	.slick-arrow {
		position: absolute;
		z-index: 15;
		width: 200px;
		top: 0;
		bottom: 0;
		background: transparent;
		border: none;
		outline: none;
		overflow: hidden;
		text-indent: 999px;
		text-align: left;
		cursor: pointer;
		text-decoration: none;
		&:after {
			.trn();
			.icn;
			content: '';
			width: 30px;
			height: 157px;
			font-size: 18px;
			line-height: 157px;
			position: absolute;
			top: 50%;
			margin-top: -78px;
			background: fade(#000,30);
			text-indent: 0;
			text-align: center;
			color: #fff;
		}
		&.slick-prev {
			left: 0;
			&:after {
				left: 0;
				content: "\f104";
			}
		}
		&.slick-next {
			right: 0;
			&:after {
				right: 0;
				content: "\f105";
			}
		}
		&:hover {
			&:after {
				background: @red;
				width: 40px;
			}
		}
	}}
.events-title {
	position: relative;
	background: @red;
	&:after {
		.clr();
	}
	&:before {
		content: '';
		position: absolute;
		left: 0;
		right: 50%;
		top: 0;
		bottom: 0;
		background: @black;
	}
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	&__label {
		display: block;
		float: left;
		width: 250px;
		margin-left: -150px;
		font: 36px/40px @font;
		color: #fff;
		position: relative;
		padding: 35px 70px 35px 0;
		box-sizing: border-box;
		text-align: right;
		&:before {
			content: '';
			background: url(../images/logo-white.svg) center right no-repeat;
			background-size: cover;
			right: 0;
			top: 0;
			bottom: 0;
			opacity: .1;
			width: 150px;
			position: absolute;
		}
	}
	&__dates {
		background: @red;
		padding-left: 100px;
		float: left;
		width: 500px;
		&-item {
			.trn;
			display: block;
			float: left;
			color: #fff;
			width: 50px;
			text-align: center;
			text-decoration: none;
			padding: 20px 5px;
			&:hover {
				background: fade(@black,15)
			}
			&_current {
				color: @blue;
				background: @black;
			}
			&-name {
				font: 24px/25px @font;
				margin-bottom: 5px;
				display: block;
				text-transform: lowercase;
			}
			&-num {
				display: block;
				font: 36px/40px @font;
			}
		}
	}
	&__btns {
		padding: 20px 0;
		text-align: right;
		margin-right: -14px;
		&:after {
			content: '';
			display: inline-block;
			height: 70px;
			vertical-align: middle;
		}
	}
	&__btn {
		.trn();
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		font: 500 18px/20px @font;
		color: #fff;
		padding: 10px 32px;
		border: 2px solid #fff;
		border-radius: 0px;
		text-align: center;
		margin: 10px 10px;
		cursor: pointer;
		&:hover {
			background: #fff;
			color: @black;
		}
		&_calendar {
			padding-left: 40px;
			position: relative;
			&:before {
				.icn;
				position: absolute;
				left: 20px;
				content: "\f073";
				margin-right: 15px;
				margin-left: -5px;
			}
			input {
				display: block;
				width: auto;
				background: none;
				border: none;
				outline: none;
				font: 500 18px/20px @font;
				color: #fff;
				&::-webkit-input-placeholder {
					color: #fff;
				}
				&::-moz-placeholder {
					color: #fff;
				}
				&:-ms-input-placeholder {
					color: #fff;
				}
				&:-moz-placeholder {
					color: #fff;
				}
			}
			&:hover {
				input {
					color: @black;
					&::-webkit-input-placeholder {
						color: @black;
					}
					&::-moz-placeholder {
						color: @black;
					}
					&:-ms-input-placeholder {
						color: @black;
					}
					&:-moz-placeholder {
						color: @black;
					}
				}
			}
		}
	}}
.tickets {
	position: relative;
	background: @black;
	margin-top: 25px;
	&:after {
		.clr();
	}
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	&__label {
		display: block;
		float: left;
		font: 36px/40px @font;
		position: relative;
		box-sizing: border-box;
		width: 500px;
		color: #fff;
		position: relative;
		padding: 35px 30px 35px 0;
		box-sizing: border-box;
		text-align: left;
		cursor: pointer;
	}
	&__select-label {
		float: left;
		display: block;
		width: 520px;
		position: relative;
		padding: 35px 0;
		&:after {
			.icn;
			content: "\f107";
			display: block;
			width: 30px;
			height: 30px;
			position: absolute;
			right: 10px;
			top: 50%;
			margin-top: -15px;
			text-align: center;
			font-size: 30px;
			line-height: 30px;
			color: @red;
			pointer-events: none;
		}
	}
	&__select {
		padding: 0 20px;
		font: 28px/40px @font;
		color: @black;
		background: white;
		box-shadow: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none;
		width: 100%;
		height: 40px;
		border-radius: 0px;
		border: none;
		cursor: pointer;
		outline: none;
	}
	&__btns {
		padding: 20px 0;
		text-align: right;
		margin-right: -14px;
		&:after {
			content: '';
			display: inline-block;
			height: 70px;
			vertical-align: middle;
		}
	}
	&__submit {
		.trn();
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		font: 500 18px/20px @font;
		color: #fff;
		padding: 10px 32px;
		border: 2px solid transparent;
		border-radius: 0px;
		background: @red;
		text-align: center;
		margin: 10px 10px;
		cursor: pointer;
		&:hover {
			background: white;
			color: @black;
		}
	}}
.select2-container--custom {
	margin-right: 25px;
	.select2-selection--multiple {
		padding: 3px 20px;
		font: 20px/23px @font;
		color: @black;
		background: white;
		border-radius: 0px;
		cursor: text;
		.select2-selection__rendered {
			box-sizing: border-box;
			list-style: none;
			margin: 0;
			padding: 0 5px;
			width: 100%;
			li {
				list-style: none;
			}
		}
		.select2-selection__placeholder {
			opacity: .5;
			float: left;
		}
		.select2-selection__clear {
			cursor: pointer;
			float: right;
			font-weight: bold;
			margin-top: 5px;
			margin-right: 10px;
		}
		.select2-selection__choice {
			background-color: @red;
			color: #fff;
			border-radius: 4px;
			cursor: default;
			float: left;
			margin-right: 4px;
			margin-top: 4px;
			padding: 3px 5px;
		}
		.select2-selection__choice__remove {
			color: #fff;
			cursor: pointer;
			display: inline-block;
			font-weight: bold;
			margin-right: 2px;
			&:hover {
				color: @black;
			}
		}
	}
	&.select2-container--focus {
		.select2-selection--multiple {
			outline: 0;
		}
	}
	&.select2-container--disabled {
		.select2-selection--multiple {
			background-color: #eee;
			cursor: default;
		}
		.select2-selection__choice__remove {
			display: none;
		}
	}
	&.select2-container--disabled {
		.select2-selection--single {
			background-color: #eee;
			cursor: default;
			.select2-selection__clear {
				display: none;
			}
		}
	}
	&.select2-container--open {
		.select2-selection--single {
			.select2-selection__arrow {
				b:after {
					content: "\f106";
				}
			}
		}
	}
	&.select2-container--open.select2-container--above {
		.select2-selection--single, .select2-selection--multiple {
			border-top-left-radius: 0;
			border-top-right-radius: 0;
		}
	}
	&.select2-container--open.select2-container--below {
		.select2-selection--single, .select2-selection--multiple {
			border-bottom-left-radius: 0;
			border-bottom-right-radius: 0;
		}
	}
	.select2-search--dropdown {
		.select2-search__field {
			border: 1px solid #DEDEDE;
			outline: none;
			&:focus {
				border-color: #02c3c8;
			}
		}
	}
	.select2-search--inline {
		.select2-search__field {
			background: transparent;
			height: 28px;
			border: none;
			outline: 0;
			box-shadow: none;
			-webkit-appearance: textfield;
			outline: none;
			&:focus {
				border-color: @red;
			}
		}
	}
	.select2-results > .select2-results__options {
		max-height: 200px;
		overflow-y: auto;
	}
	.select2-results__option {
		&[role=group] {
			padding: 0;
		}
		&[aria-disabled=true] {
			color: #999;
		}
		&[aria-selected=true] {
			background-color: #ddd;
		}
		.select2-results__option {
			padding-left: 1em;
			.select2-results__group {
				padding-left: 0;
			}
			.select2-results__option {
				margin-left: -1em;
				padding-left: 2em;
				.select2-results__option {
					margin-left: -2em;
					padding-left: 3em;
					.select2-results__option {
						margin-left: -3em;
						padding-left: 4em;
						.select2-results__option {
							margin-left: -4em;
							padding-left: 5em;
							.select2-results__option {
								margin-left: -5em;
								padding-left: 6em;
							}
						}
					}
				}
			}
		}
	}
	.select2-results__option--highlighted[aria-selected] {
		background-color: @red;
		color: white;
	}
	.select2-results__group {
		cursor: default;
		display: block;
		padding: 6px;
	}
	.select2-dropdown {
		border-color: #DEDEDE;
	}}
.search-form {
	padding: 30px 0;
	&__input {
		width: 520px;
		display: inline-block;
		vertical-align: middle;
		padding: 0 20px;
		font: 28px/40px @font;
		color: @black;
		background: white;
		box-shadow: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none;
		height: 40px;
		border-radius: 0px;
		border: none;
		cursor: pointer;
		outline: none;
	}
	&__submit {
		.trn();
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		font: 500 18px/20px @font;
		color: #fff;
		padding: 10px 32px;
		border: 2px solid transparent;
		border-radius: 0px;
		background: @red;
		text-align: center;
		margin: 10px 10px;
		cursor: pointer;
		&:hover {
			background: white;
			color: @black;
		}
	}}
.filters {
	padding: 30px 0;
	&__cols {
		display: block;
		text-align: justify;
		&:after {
			content: '';
			display: inline-block;
			width: 100%;
			vertical-align: top;
		}
	}
	&__col {
		display: inline-block;
		vertical-align: top;
		text-align: center;
		margin-bottom: 20px;
	}
	&__select {
		width: 400px;
	}
	&__submit {
		.trn();
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		font: 500 18px/20px @font;
		color: #fff;
		padding: 10px 32px;
		border: 2px solid transparent;
		border-radius: 0px;
		background: @red;
		text-align: center;
		cursor: pointer;
		&:hover {
			background: white;
			color: @black;
		}
	}}
.sorting {
	&__link {
		text-decoration: none;
		opacity: .6;
		&:hover {
			opacity: .8;
		}
		&_active {
			opacity: 1;
		}
		&_name {
			&:before {
				.icn;
				content: "\f15d";
			}
			&.sorting__link_desc {
				&:before {
					content: "\f15e";
				}
			}
		}
	}}
.hotels-filters {
	&__fil-categ {
		width: 300px;
	}
	&__fil-distr {
		width: 400px;
	}
	&__fil-stars {
		width: 300px;
		+ .select2 {
			.select2-selection__choice:after {
				.icn();
				content: "\f005";
			}
		}
	}}
.places-filters {
	&__fil-categ {
		width: 500px;
	}
	&__fil-distr {
		width: 500px;
	}}
.guides-filters {
	.filters__cols {
		text-align: left;
	}
	// &__fil-categ {
	// 	width: 500px;
	// }
	&__fil-distr {
		width: 500px;
	}}
.routes-filters {
	&__fil-tours {
		width: 300px;
	}
	&__fil-persons {
		width: 400px;
	}
	&__fil-days {
		width: 300px;
	}}
.interval-select-wrapper {
	position: relative;}
.daterangepicker {
	display: none;
	top: 100% !important;
	right: 0 !important;
	left: auto !important;
 	position: absolute;
	background: #fff;
	color: @black;
	-webkit-box-shadow: 0 9px 21px 0 rgba(22,32,72,.15);
	box-shadow: 0 9px 21px 0 rgba(22,32,72,.15);
	border-radius: 4px;
  	width: 544px;
  	box-sizing: border-box;
  	z-index: 100;
	.calendar {
		width: 50%;
		box-sizing: border-box;
		float: left;
		+ .calendar {
			border-left: 1px solid @black;
		}
		.daterangepicker_input {
			display: none;
		}
		th,  td {
			
		}
	}
	.calendar-table {
		padding: 15px 16px;
		table {
	    	width: 100%;
	    	border-collapse: separate;
	    }
		td, th {
			text-align: center;
			width: 20px;
			height: 20px;
			border: 1px solid transparent;
			white-space: nowrap;
			cursor: pointer;
			font: 12px/24px @font;
			&.week {
				font: 12px/24px @font;
			}
		}
		th {
			font: 12px/30px @font;
			text-transform: uppercase;
			&:last-child {
				color: @red;
			}
			&.month {
				font: 18px/25px @font;
				color: @black;
				text-transform: none;
			}
			&.available {
				color: @red !important;
			}
		}
		td {
			// padding: 7.5px 2px;
			border: 5px solid #fff;
			// border-spacing: 5px;
			width: 24px;
			height: 24px;
			// border-radius: 9px;
			text-align: center;
			&.off, &.off.in-range, &.off.start-date, &.off.end-date {
				background: transparent;
				color: #8898a0;
				font-weight: normal;
				outline: none;
				border-color: #fff;
			}
			&.in-range, &.start-date, &.end-date {
				background: #fcdce1;
				color: #58666e;
				font-weight: bold;
				outline: 5px solid #fcdce1;
				border-color: #fcdce1;
			}
			&.start-date, &.end-date {
				background: @red;
				color: #fff;
			}
			&.start-date {
				border-radius: 4px 0 0 4px;
			}
			&.end-date {
				border-radius: 0 4px 4px 0;
			}
			&.start-date.end-date {
				border-radius: 4px;
			}
			&.active, &.active:hover {
				// background-color: #357ebd;
				// border-color: transparent;
				// color: #fff;
			}
		}
	}
	.ranges {
		clear: both;
		ul {
			padding: 15px 20px 0px;
			font: 14px/15px @font;
			color: #8898a0;
			border-top: 1px solid #e5e5e5;
			border-bottom: 1px solid #e5e5e5;
			text-align: justify;
			&:after {
				content: '';
				display: inline-block;
				width: 100%;
				vertical-align: top;
			}
			> span {
				display: inline;
				font: 14px/15px @font;
			}
		}
		li {
			display: inline-block;
			font: bold 12px/15px @font;
			color: @red;
			text-transform: uppercase;
			margin-left: 5px;
			text-align: left;
			cursor: pointer;
			&:hover {
			}
			&.active {
				
			}
		}
	}
	.range_inputs {
		padding: 25px 20px;
		input {
			display: inline-block;
			vertical-align: middle;
			width: 140px;
			background: transparent;
			border: none;
			padding: 0;
			height: auto;
			outline: none;
			font: 600 16px/20px @font;
			color: #58666e;
			text-align: center;
		}
		.sep {
			display: inline-block;
			vertical-align: middle;
			&:after {
				.icn;
				content: "\f054";
				font-size: 12px;
				line-height: 20px;
				margin: 0 5px;
				color: @red;
			}
		}
		.currentValue {
			width: 325px;
			display: inline-block;
			vertical-align: middle;
		}
		.btns {
			width: 175px;
			text-align: right;
			display: inline-block;
			vertical-align: middle;
			border-left: 1px solid #dedede;
		}
		.cal-btn {
			display: inline-block;
			vertical-align: middle;
			background: transparent;
			border: none;
			outline: none;
		}
		.cal-btn-ok {
			background: @red;
			min-width: 80px;
			font: 600 16px/32px @font;
			text-align: center;
			margin-left: 10px;
			color: #fff;
			text-transform: uppercase;
			border-radius: 4px;
			&:disabled {
				opacity: .5;
			}
		}
		.cal-btn-canc {
			min-width: 55px;
			font: 16px/32px @font;
			color: #58666e;
			text-align: center;
		}
	}}
[class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);}
.partners {
	padding: 50px 0 20px;
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	&__title {
		font: 36px/1.2 @font;
		margin-bottom: 25px;
		background: @red;
		padding: 25px 0;
		color: white;
	}}
.routes {
	padding: 50px 0 50px;
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 50px 0px;
		margin: 0 auto;
	}}
.route {
	&__name {
		font: 36px/40px @font;
		margin-bottom: 1em;
	}
	&__days {
		margin-left: -30px;
		&:after {
			display: block;
			clear: both;
			content: '';
		}
	}
	&__day {
		box-sizing: border-box;
		width: 270px;
		float: left;
		margin-left: 30px;
		&-name {
			display: inline-block;
			background: @red;
			font: 20px/25px @font;
			color: #fff;
			border-radius: 5px;
			padding: 10px 15px;
			min-width: 70px;
			text-align: center;
		}
	}
	&__places {
		padding-left: 38px;
	}
	&__place {
		padding: 15px 0 15px 32px;
		position: relative;
		&:before {
			content: '';
			display: block;
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
			width: 3px;
			background: @red;
		}
		&:last-child:before{
			bottom: auto;
			height: 15px;
		}
		&-marker {
			display: block;
			position: absolute;
			width: 26px;
			height: 26px;
			background: #fff;
			border: 2px solid @black;
			border-radius: 50%;
			left: -14px;
			top: 15px;
			&:after {
				content: '';
				display: block;
				width: 14px;
				height: 14px;
				background: @red;
				border-radius: 0%;
				position: absolute;
				left: 50%;
				top: 50%;
				margin: -7px 0 0 -7px;
			}
		}
		&-name {
			font: 600 18px/22px @font;
			text-decoration: none;
			display: block;
			margin-bottom: 5px;
			&:hover {
				text-decoration: underline;
			}
		}
		&-address {
			font: 300 13px/16px @font;
			margin-bottom: 5px;
		}
		&-duration {
			font: 600 16px/20px @font;
			color: @red;
			&-type {
				.icn;
				color: @black;
				margin-right: 3px;
				display: inline-block;
				&_1:before {
					content: "\f1ae";
				}
				&_2:before {
					content: "\f1b9";
				}
				&_3:before {
					content: "\f207";
				}
			}
		}
	}}
.btn-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	display: inline-block;
	border: 2px solid;
	text-align: center;
	text-decoration: none;
	border-radius: 0%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	text-indent: 999px;
	text-align: left;
	box-sizing: border-box;
	white-space: nowrap;

	&, &:before, &:after {
		border-color: #fff;
	}
	&:before {
		content: '';
		display: block;
		height: 0;
		border-top: 2px solid #fff;
		width: 17px;
		position: absolute;
		left: 50%;
		margin-top: -1px;
		top: 50%;
		margin-left: -10px;
	}
	&:after {
		content: '';
		border-left: 2px solid #fff;
		border-top: 2px solid #fff;
		width: 8px;
		height: 8px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin: -5px 0 0 -2px;
		transform: rotate(135deg);
	}}
.btn-way {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../images/icn-route-white.svg) center center no-repeat;
	background-size: contain;
	cursor: pointer;
	overflow: hidden;
	text-indent: 999px;
	text-align: left;
	white-space: nowrap;}
.btn-nav {
	.trn;
	display: block;
	text-align: center;
	font: 18px/24px @font;
	color: @black;
	text-decoration: none;
	padding: 10px 15px;
	margin: 15px auto;
	&__icn {
		margin: 15px auto;
		display: block;
		width: 40px;
		height: 40px;
		border: 2px solid;
		text-align: center;
		text-decoration: none;
		border-radius: 0%;
		position: relative;
		cursor: pointer;
		&, &:before, &:after {
			border-color: @black;
		}
		&:before {
			content: '';
			display: block;
			width: 0;
			border-left: 2px solid @black;
			height: 17px;
			position: absolute;
			left: 50%;
			margin-left: -1px;
			top: 50%;
			margin-top: -10px;
		}
		&:after {
			content: '';
			border-left: 2px solid @black;
			border-top: 2px solid @black;
			width: 8px;
			height: 8px;
			position: absolute;
			left: 50%;
			top: 50%;
			margin-left: -5px;
		}
	}
	&:hover {
		background: fade(@black,10);
	}
	&_prev {
		margin-top: 0;
		.btn-nav__icn {
			&:after {
				margin-top: -10px;
				transform: rotate(45deg);
			}
		}
	}
	&_next {
		margin-bottom: 0;
		.btn-nav__icn {
			&:after {
				margin-top: -2px;
				transform: rotate(225deg);
			}
		}
	}}
.items {
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 50px 0px;
		margin: 0 auto;
	}
	&__block-title {
		display: block;
		font: 36px/42px @font;
		color: @black;
		margin-bottom: 40px;
	}
	&__items {
		margin-left: -30px;
	}
	&__item {
		display: inline-block;
		vertical-align: top;
		width: 270px;
		margin-left: 30px;
		margin-bottom: 30px;
		&-img {
			padding-top: 85%;
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
			&_noimg {
				background: fade(@red, 20) url(../images/log-nav.png) center center no-repeat;
				background-size: contain;
				opacity: 0.7;
			}
		}
		&-content {
			background: @red;
			padding: 15px 15px;
			min-height: 190px;
			position: relative;
		}
		&-name {
			display: block;
			font: 18px/22px @font;
			color: #fff;
			text-decoration: none;
			margin-bottom: 5px;
			&:hover {
				text-decoration: underline;
			}
			&_fixed {
				height: 88px;
				overflow: hidden;
				display: block;
				display: -webkit-box;
				text-overflow: ellipsis;
				-webkit-line-clamp: 4;
				-webkit-box-orient: vertical;
			}
		}
		&-descr {
			font: 14px/17px @font;
			height: 68px;
			margin-top: 15px;
			overflow: hidden;
			display: block;
			display: -webkit-box;
			text-overflow: ellipsis;
			-webkit-line-clamp: 4;
			-webkit-box-orient: vertical;
		}
		&-date {
			font: 18px/22px @font;
			color: @blue;
			margin-bottom: 15px;
			height: 44px;
			overflow: hidden;
			display: block;
			display: -webkit-box;
			text-overflow: ellipsis;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
		}
		&-place {
			font: 14px/17px @font;
			color: @black;
			text-decoration: underline;
			height: 34px;
			overflow: hidden;
			display: block;
			display: -webkit-box;
			text-overflow: ellipsis;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
		}
		&-controls {
			position: absolute;
			left: 0;
			right: 0;
			top: 100%;
			margin-top: -30px;
			background: @red;
			text-align: center;
			padding: 15px 15px;
			display: none;
		}
		&:hover {
			.items__item-controls {
				display: block;
			}
		}
	}
	&__top-text {
		margin-bottom: 2em;
	}
	&__bottom-text {
		margin-top: 2em;	
	}}
.item {
	&__container {
		position: relative;
		max-width: 1170px;
		box-sizing: border-box;
		padding: 50px 0px;
		margin: 0 auto;
	}
	&__gallery {
		float: left;
		width: 585px;
		margin-right: 85px;
		margin-bottom: 40px;
		img {
			display: block;
			width: 100%;
		}
	}
	&__descr {
		overflow: hidden;
	}
	&__name {
		font: 36px/1.2 @font;
		margin-bottom: .8em;
	}
	&__contacts {
		font: 18px/22px @font;
		margin-bottom: 1.5em;
		li {
			margin-bottom: 5px;
		}
		strong {
			font-weight: 500;
		}
	}
	&__share {
		
	}
	.tabs {
		clear: both;
		margin-top: 25px;
	}}
.sitemap {
	ul ul {
		margin: 0;
	}
	a {
		color: inherit;
	}}
.m-container {
	width: 98%;
	height: 90%;}
.search-results {
	&__block {
		margin-bottom: 40px;
		&-name {
			font: 36px/1.2 @font;
			margin-bottom: .8em;
		}
	}
	&__list {

	}
	&__item {

	}
	&__link {
		font: 18px/1.55 @font;
		color: #555555;
		position: relative;
		padding-left: 14px;
		margin: .3em 0;
		display: block;
		&:before{
			content: '';
			background: @black;
			width: 6px;
			height: 6px;
			border-radius: 0%;
			position: absolute;
			left: 0px;
			top: .6em;
		}
		&:hover {
			color: @red;
			&:before {
				background: @red;
			}
		}
	}}
.ps {
	-ms-touch-action: auto;
	touch-action: auto;
	overflow: hidden !important;
	-ms-overflow-style: none;
	@supports (-ms-overflow-style: none) {
		overflow: auto !important;
	}
	@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
		overflow: auto !important;
	}
	&.ps--active-x > .ps__scrollbar-x-rail,
	&.ps--active-y > .ps__scrollbar-y-rail {
		display: block;
		background-color: transparent;
	}
	&.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
		background-color: #eee;
		opacity: 0.9;
		> .ps__scrollbar-x {
			background-color: #999;
			height: 11px;
		}
	}
	&.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
		background-color: #eee;
		opacity: 0.9;
		& > .ps__scrollbar-y {
			background-color: #999;
			width: 11px;
		}
	}
	& > .ps__scrollbar-x-rail {
		display: none;
		position: absolute;
		/* please don't change 'position' */
		opacity: 0;
		-webkit-transition: background-color .2s linear, opacity .2s linear;
		-o-transition: background-color .2s linear, opacity .2s linear;
		-moz-transition: background-color .2s linear, opacity .2s linear;
		transition: background-color .2s linear, opacity .2s linear;
		bottom: 0px;
		/* there must be 'bottom' for ps__scrollbar-x-rail */
		height: 15px;
		& > .ps__scrollbar-x {
			position: absolute;
			/* please don't change 'position' */
			background-color: #aaa;
			-webkit-border-radius: 6px;
			-moz-border-radius: 6px;
			border-radius: 6px;
			-webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
			transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
			bottom: 2px;
			/* there must be 'bottom' for ps__scrollbar-x */
			height: 6px;
		}
	}
	& > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x,
	& > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
		height: 11px;
	}
	& > .ps__scrollbar-y-rail {
		display: none;
		position: absolute;
		/* please don't change 'position' */
		opacity: 0;
		-webkit-transition: background-color .2s linear, opacity .2s linear;
		-o-transition: background-color .2s linear, opacity .2s linear;
		-moz-transition: background-color .2s linear, opacity .2s linear;
		transition: background-color .2s linear, opacity .2s linear;
		right: 0;
		/* there must be 'right' for ps__scrollbar-y-rail */
		width: 15px;
		& > .ps__scrollbar-y {
			position: absolute;
			/* please don't change 'position' */
			background-color: #aaa;
			-webkit-border-radius: 6px;
			-moz-border-radius: 6px;
			border-radius: 6px;
			-webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
			transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
			right: 2px;
			/* there must be 'right' for ps__scrollbar-y */
			width: 6px;
		}
	}
	& > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y,
	& > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
		width: 11px;
	}
	&:hover {
		&.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
			background-color: #eee;
			opacity: 0.9;
			& > .ps__scrollbar-x {
				background-color: #999;
				height: 11px;
			}
		}
		&.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
			background-color: #eee;
			opacity: 0.9;
			> .ps__scrollbar-y {
				background-color: #999;
				width: 11px;
			}
		}
		> .ps__scrollbar-x-rail,
		> .ps__scrollbar-y-rail {
			opacity: 0.6;
		}
		> .ps__scrollbar-x-rail:hover {
			background-color: #eee;
			opacity: 0.9;
			> .ps__scrollbar-x {
				background-color: #999;
			}
		}
		> .ps__scrollbar-y-rail:hover {
			background-color: #eee;
			opacity: 0.9;
			> .ps__scrollbar-y {
				background-color: #999;
			}
		}
	}}

.masters {
	margin-top: 2em;
}

@import "medias.less?v=1";
@import "sv.less";
  