html {
background:#fff; 
max-width:100%; 
overflow-x:hidden;
/*height:7350px;*/
/*background:#fff url(../images/bg_tur.jpg) center top no-repeat; */
}
::-moz-focus-inner { border: 0; padding: 0; }
body { margin:0; padding:0; min-width:1400px;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

div{ margin:0; outline:0;}
ul {outline:0;}
a:active,a:hover {outline: 0;}

img, a:link img, a:visited img, a:hover img, a:active img { border: 0; }
a:focus { border:0px; }

div {	box-sizing: border-box;}
a {	box-sizing: border-box;}
input {	box-sizing: border-box;}

.clear { height:0px; width:100%; clear:both; }

/*background: #290FB7;*/

/* цвета */
:root {
  /*--c_red: #ff6b6e;*/
  --c_red: #16008C;
  --c_red2: #ffd3d4;
  --c_red3: #290FB7;
  --c_black: #202023;
  --c_black2: #1b2b31;
  --c_gray: #a4a5b5;
  --c_gray2: #f9f9f9;
  --c_gray3: #f3f4f8;
  --c_gray4: #e4e4e4;
  --c_yellow: #B8FF00;
  --c_yellow2: #fff7e9;
  --c_green: #29a71a;
  --c_green2: #def2e0;
  --c_white: #ffffff;
  --c_white2: rgba(255,255,255,0.1);
}

html {
        zoom:0.88;
    }
/* типография */
body {
	font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  color:var(--c_black);
}
h1 {
	font-size:48px;
	line-height:120%;
	font-weight:700;
	margin:0;
	padding:0;
	letter-spacing: 0.7px;
	/*color: var(--c_red);*/
}
h2 {
	font-size:40px;
	line-height:120%;
	font-weight:700;
	letter-spacing: 0.7px;
	margin:0;
	padding:0;
}
a {
	color:var(--c_red);
}
.t_title {
	font-size:24px;
	line-height:120%;
	font-weight:700;

}
.t_title2 {
	font-size:24px;
	line-height:120%;
	font-weight:500;

}
.t_title3 {
	font-size:20px;
	line-height:120%;
	font-weight:700;

}
.t_title4 {
	font-size:20px;
	line-height:120%;
	font-weight:500;

}
.t_title5 {
	font-size:20px;
	line-height:150%;
	font-weight:400;

}
.t_body {
  font-size:16px;
	line-height:150%;
	font-weight:600;
	font-weight:400;
}
.t_body2 {
  font-size:16px;
	line-height:120%;
	font-weight:700;
}
.t_body3 {
  font-size:14px;
	line-height:150%;
	font-weight:400;
}
.t_button {
	font-size:16px;
	line-height:120%;
	font-weight:700;
	text-transform:uppercase;
}
.t_menu {
  font-size:20px;
	line-height:150%;
	font-weight:400;
}
.t_caption {
  font-size:14px;
	line-height:120%;
	font-weight:400;
}


/* кнопки */

/* формы */


/* выравнивание */
.center {
	width:1304px;
	margin:0 auto;
	position:relative;
}
.center2 {
	width:1384px;
	margin:0 auto;	
	position:relative;
}



/* шапка сайта */

.only_mobile {
  display:none!important;
}
.loading {
	background: url(../images/loading.png) center no-repeat;
	background-size: contain;
	width: 96px;
	height: 96px;
	margin: auto;

    animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotation {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

.header {
	height:auto;
	padding-bottom:100px;
	background: #B8FF00;
	position:relative;
	z-index:100;
	padding-top: 90px;
}
.header.minimix {
	padding-bottom:48px;
}
.header.mini {
	padding-bottom:0;
	background: #fff;
}
	.header_bar {
		border-bottom: 1px solid #9DCD1F;
    position: relative;
    z-index: 320;
    position: fixed;
    width: 100%;
    top: 0;
    background: #B8FF00;
	}
	.header_bar.topmenu {
    background: #fff;
	}
	.header.mini .header_bar {

		background: #fff;
	}

		.hb_logo {
			float:left;
			width:190px;
			height:89px;
			background:url(../images/logo_new.svg?3) left center no-repeat;
			background-size: 190px;
			margin-right:47px;
		}
		.hb_navigate {
			float:left;
			width:690px;
			height:89px;
		}
			.hb_navigate ul.menu {
				display:block;
				margin:0;
				padding:0;
				list-style:none;
			}
			.hb_navigate ul.menu li {
				display:block;
				float:left;
				padding:0;
				position:relative;
				margin:0 20px;
			}
			.hb_navigate ul.menu li:after {
			    content: '';
			    display: block;
			    position: absolute;
			    width: 0%;
			    height: 4px;
			    background: var(--c_red);
			    border-radius:2px;
			    bottom: -2px;
			    left: 50%;
			    z-index: 90;
			    transition: all 0.5s ease-in;
			}
			.hb_navigate ul.menu li:hover:after {
			    width: 100%;
			    background: var(--c_red);
			    left: 0;
			}
			.hb_navigate ul.menu li.active:after {
			    width: 100%;
			    background: var(--c_red);
			    left: 0;
			}
			.hb_navigate ul.menu li a {
				text-decoration:none;
				padding:32px 0 28px;
				display:block;
				position:relative;
				color: var(--c_red);
			}

			.hb_navigate ul.menu li.active a {
				color:var(--c_red);
			}
		.hb_panel {
			float:right;
			width:360px;
			height:89px;
			text-align:right;
			padding:32px 0 32px;
			color:var(--c_white);
			color:var(--c_black);
		}
			.hb_panel a {
				text-decoration:none;
			}
			.hb_telefons {
				display:block;
				float:right;
				height:24px;
			}
			.hb_telefon {
				display:block;
				float:left;
				line-height: 24px;
				color:var(--c_red);
			}
			.hb_telefon_toggle {
				display:block;
				float:left;
				height:24px;
				width:24px;
				background: url(../images/dropdown.png) center no-repeat;
				cursor:pointer;
			}
			.hb_favorite {
				display:block;
				float:right;
				height:24px;
				width:24px;
				margin-left:24px;
				background: url(../images/favorites.svg) center no-repeat;

				cursor:pointer;
			}
			.hb_personal {
				display:block;
				float:right;
				height:24px;
				width:24px;
				margin-left:24px;
				background: url(../images/account.svg) center no-repeat;

				cursor:pointer;
			}
			.hb_menu {
				display:block;
				float:right;
				height:24px;
				width:24px;
				margin-left:24px;
				background: url(../images/menu.svg) center no-repeat;

				cursor:pointer;
			}

	.header_bar.mini {
		border-bottom:1px solid var(--c_gray4);
	}
		.header_bar.mini .hb_logo {
			background:url(../images/logo_new2.svg) left center no-repeat;
		}

			.header_bar.mini .hb_navigate ul.menu li a {
				color:var(--c_black);
			}
			.header_bar.mini .hb_navigate ul.menu li.active a {
				color:var(--c_red);
			}
			.header_bar.mini .hb_navigate ul.menu li a:after {
			    background: var(--c_gray4);
			}
		.header_bar.mini .hb_panel {
			color:var(--c_black);
		}
			.header_bar.mini .hb_telefon {
				color:var(--c_black);
			}
			.header_bar.mini .hb_telefon_toggle {
				background: url(../images/dropdown.svg) center no-repeat;
			}
			.header_bar.mini .hb_favorite {
				background: url(../images/favorites.svg) center no-repeat;
			}
			.header_bar.mini .hb_personal {
				background: url(../images/account.svg) center no-repeat;
			}
			.header_bar.mini .hb_menu {
				background: url(../images/menu.svg) center no-repeat;
			}

	.header_bar.topmenu {
		border-bottom:1px solid var(--c_gray4);
	}
		.header_bar.topmenu .hb_logo {
			background:url(../images/logo_new2.svg) left center no-repeat;
		}

			.header_bar.topmenu .hb_navigate ul.menu li a {
				color:var(--c_black);
			}
			.header_bar.topmenu .hb_navigate ul.menu li.active a {
				color:var(--c_red);
			}
			.header_bar.topmenu .hb_navigate ul.menu li a:after {
			    background: var(--c_gray4);
			}
		.header_bar.topmenu .hb_panel {
			color:var(--c_black);
		}
			.header_bar.topmenu .hb_telefon {
				color:var(--c_black);
			}
			.header_bar.topmenu .hb_telefon_toggle {
				background: url(../images/dropdown.svg) center no-repeat;
			}
			.header_bar.topmenu .hb_favorite {
				background: url(../images/favorites.svg) center no-repeat;
			}
			.header_bar.topmenu .hb_personal {
				background: url(../images/account.svg) center no-repeat;
			}
			.header_bar.topmenu .hb_menu {
				background: url(../images/menu_close.svg) center no-repeat;
			}


	.header_title {
		/*color: var(--c_white);*/
		text-align:center;
		padding:50px 0 0;
		color: #16008C;
	}

		.ht_title {
			margin-top: 30px;
		  margin-bottom: 23px;
		  color: var(--c_red);
		}
		.ht_subtitle {
			color: var(--c_red);
		  /*width: 740px;*/
		  display: inline-block;
		  border-radius: 8px;
		  padding: 10px;
		  margin: 0 auto;
		}

	.header_form {
			margin-top:60px;
	}
	.minimix .header_form {
			margin-top:35px;
	}
		.hf_tabs {
    	/*text-align: center;*/
    	text-align: left;
		}
			.hf_tab {
				background: rgba(255, 255, 255, 0.7);
		    float: none;
		    display: inline-block;
		    padding: 11px 28px 13px;
		    border-radius: 8px;
		    margin-right: 10px;
		    margin-bottom: 5px;
		    margin-top: 0;
		    cursor: pointer;
		    position: relative;
		    z-index: 10;
		    transition: all 0.1s ease-in;
		    color: var(--c_black);
		    /* display: block; */
		    text-decoration: none;
			}
			.hf_tab:hover {
		    color:var(--c_red);
		    /*margin-bottom:12px;
		    margin-top:-2px;*/
			}
			.hf_tab.active {
				background: #fff;
		    float: none;
		    display: inline-block;
		    padding: 11px 48px 21px;
		    border-radius: 8px 8px 0 0;
		    margin-right: 10px;
		    margin-bottom: -10px;
		    color: var(--c_red);
		    position: relative;
		    /*z-index: 20;*/
			}
			.hf_tab span {
		    padding: 0 0 0 42px;
		    line-height:26px;
		    height:26px;
		    display:block;
			}
				.hf_tab span.ic_turs {
					background:url(../images/ic_turs.png) left center no-repeat;
				}
				.hf_tab span.ic_hotels {
					background:url(../images/ic_hotels.png) left center no-repeat;
				}
				.hf_tab span.ic_excursions {
					background:url(../images/ic_excursions.png) left center no-repeat;
				}
				.hf_tab span.ic_avia {
					background:url(../images/ic_avia.png) left center no-repeat;
				}
				.hf_tab span.ic_jd {
					background:url(../images/ic_jd.png) left center no-repeat;
				}
				.hf_tab span.ic_ates {
					background:url(../svg/ic_ates.svg) left center no-repeat;
					background-size:contain;
				}
				.hf_tab span.ic_viza {
					background:url(../svg/ic_viza.svg) left center no-repeat;
					background-size:contain;
				}
		.hf_contents {
			height:auto;
			padding:28px 42px 28px;
			background:var(--c_white);
			border-radius:8px;
			position:relative;
		  z-index:10;
		}
			.hf_select_city {
				margin-bottom:16px;
			}
			.hf_select_city span {
				color:var(--c_red);
				padding-right:20px;
				display:inline-block;
				background:url(../images/dropdown2.png) right bottom 6px no-repeat;
				cursor:pointer;
			}
			.hf_fields {
				margin-bottom:16px;
			}
				.hf_field {
				    float: left;
				    margin-right: 20px;
				    width: 200px;
				    position: relative;
				    height: 80px;
				}
				.hf_field.first {
					width:310px;
				}
					.hf_field_caption {
						color: var(--c_gray);
						position: absolute;
				    top: 12px;
				    left: 20px;
				    z-index: 2;
					}
					.hf_field_input {
						background: transparent;
				    padding: 40px 20px 16px;
				    margin-top: 0;
				    outline: 0;
				    left: 0;
				    top: 0;
				    width: 100%;
				    position: absolute;
				    border: 1px solid var(--c_gray4);
				    border-radius: 8px;
				    font-weight:500;
				    cursor:pointer;
				    z-index: 190;
					}
					.hf_field.active .hf_field_input {
						    border: 1px solid var(--c_red);
					}
					.hf_field_input_real {
						z-index: 10; 
						position: absolute; 
						top: 40px;
					}
				.hf_btn {
					color:var(--c_white);
					background:var(--c_red);
					border-radius:8px;
					padding:31px;
					float:right;
					line-height:20px;
					width:310px;
					text-align:center;
					cursor:pointer;
					transition: all 0.3s ease-in;
					text-decoration: none;

				}
				.hf_btn:hover {
					color:var(--c_white);
					background:var(--c_red3);
				}
			.hf_hints {

			}
				.hf_hint {
					margin-right:4px;
					float:left;
					padding:3px 8px;
					border-radius:4px;
					background:#B8FF00;
					color:var(--c_red);
					cursor:pointer;
					text-decoration:none;
				}

/*выбор гостей*/
.searchGet {
	position: absolute;    
	background: #fff;
	padding: 0;
	border: 1px solid #eee;
	border-radius: 8px;
	font-size: 12px;
	width: 310px; 
	overflow:hidden;
	top:90px;
	background:#fff;
	z-index:200;
	box-shadow: 0px 20px 30px 0px #1B2B3121;
}
.searchGet .loading {
	width: 32px;
	height: 32px;
	margin: 20px;
}
.searchGet .search_regions {
	padding: 20px 20px 4px;
	border-bottom: 1px solid #20202316;
}
.searchGet .search_regions > div {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	cursor:pointer;
}
.searchGet .search_hotels {
	padding: 20px 20px 4px;
}
.searchGet .search_hotels > div {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	cursor:pointer;
	padding-left: 32px;
	background: url(../images/search_hotel.png) left top 4px no-repeat;
	position:relative;
	padding-right:20px;
}

/*выбор гостей*/
.guestGet {
	position: absolute;    
	background: #fff;
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 8px;
	font-size: 12px;
	width: 530px; 
	overflow:hidden;
	top:90px;
	background:#fff;
	z-index:200;
	box-shadow: 0px 20px 30px 0px #1B2B3121;
}

/*календарь выбор даты*/
.calendarGet {
	position: absolute;    
	background: #fff;
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 8px;
	font-size: 12px;
	width: 720px; 
	overflow:hidden;
	top:90px;
	background:#fff;
	z-index:200;
	box-shadow: 0px 20px 30px 0px #1B2B3121;
}
.calendar-container {
    width: 308px;
    float: left;
    margin: 20px;
}
.calendar-days > div {
  width: 40px;
  height: 40px;
  line-height: 20px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  margin: 2px;
  font-size: 16px;
  display: inline-block;
}
.calendar-days > div.today {
  background: #B8FF00;
}
.calendar-days > div.range {
  background: #F3F4F8;
}
.calendar-days > div.selected {
  background: #16008C;
  color: #fff;
}

.calendar-days > div.not-avail {
  color: #bbb;
  opacity: 0.7;
}
.calendar-days > div.not-current-month {
  color: #bbb;
  opacity: 0;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 29px;
  font-size:20px;
  font-weight:bold;
}
.calendar-weekdays > div {
  width: 40px;
  margin: 2px;
  text-align: center;
  display: inline-block;
  text-transform:uppercase;
  font-size:12px;
  color:#A4A5B5;

}
.calendar-weekdays > div:nth-child(6), .calendar-weekdays > div:nth-child(7) {
  color:#16008C;
}

.calendar-prev {
	width:48px;
	height:48px;
	background:url(../images/calendar-prev.png) center no-repeat;
	background-size:contain;
	cursor:pointer;
}
.calendar-next {
	width:48px;
	height:48px;
	background:url(../images/calendar-next.png) center no-repeat;
	background-size:contain;	
	cursor:pointer;
}

/* календарь цен */
.calendar {
	padding:120px 0;
	background:var(--c_white);
}
.calendar_title {
	margin-bottom:70px;
	position:relative;
}
.ct_select_city {
	position:absolute;
	right:0;
	top:16px;
}
.ct_select_city span {
	color:var(--c_red);
	padding-right:20px;
	display:inline-block;
	background:url(../images/dropdown2.png) right bottom 6px no-repeat;
	cursor:pointer;
}
.calendar_header {
	border-bottom:1px solid var(--c_gray4);
	height:86px;
}
.calendar_header ul.menu {
				display:block;
				margin:0;
				padding:0;
				list-style:none;
				margin-bottom:-2px;
				overflow:hidden;
				float:left;
				width:1100px;
			}
			.calendar_header ul.menu li {
				display:block;
				float:left;
				padding:0;
				position:relative;
			}
			.calendar_header ul.menu li:after {
			    content: '';
			    display: block;
			    position: absolute;
			    width: 0%;
			    height: 3px;
			    background: var(--c_red);
			    bottom: 0;
			    left: 50%;
			    z-index: 90;
			    transition: all 0.5s ease-in;
			}
			.calendar_header ul.menu li:hover:after {
			    width: 90%;
			    height: 3px;
			    background: var(--c_red);
			    bottom: 0;
			    left: 5%;
			}
			.calendar_header ul.menu li.active:after {
			    width: 90%;
			    height: 3px;
			    background: var(--c_red);
			    bottom: 0;
			    left: 5%;
			}
			.calendar_header ul.menu li a {
				color:var(--c_black);
				text-decoration:none;
				padding:30px 25px 33px;
				display:block;
				position:relative;
			}
			.calendar_header ul.menu li.active a {
				color:var(--c_red);
			}
			.calendar_all {
				color:var(--c_red);
				text-decoration:none;
				padding:30px 26px 33px 0;
				display:block;
				position:relative;
				float:right;
				background:url(../images/right.png) right center no-repeat;
				cursor:pointer;
			}
			.calendar_list {
				overflow:hidden;
				color:var(--c_red);
				height:24px;
				margin-top:60px;
			}
			.cl_left {
				float:left;
				height:24px;
				width:12px;
				background:url(../images/cl_left.png) center no-repeat;
				cursor:pointer;
			}
			.cl_right {
				float:left;
				height:24px;
				width:12px;
				background:url(../images/cl_right.png) center no-repeat;
				cursor:pointer;
			}
			.cl_text {
				float:left;
				height:24px;
				line-height:24px;
				padding:0 24px;
			}
			.calendar_graf {
				margin-top:45px;
				height:90px;
			}
			.cg_cost {
				float:left;
				width:100px;
				height:70px;
				color:var(--c_gray);
				position:relative;
			}
			.cg_cost_max {
				position:absolute;
				top:-10px;
				left:0;
			}
			.cg_cost_min {
				position:absolute;
				bottom:0;
				left:0;
			}

			.cg_grafic {
				float:left;
				width:1200px;
				height:90px;
				border-top:1px dashed var(--c_gray);
				overflow:hidden;
				color:var(--c_gray);
				text-align:center;
			}
			.cg_grafic_day {
				float:left;
				width:35px;
				margin-right:5px;
				height:90px;
			}
			.cg_gd_graf {
				height:60px;
				position:relative;
			}
			.cg_gd_graf_col {
				width:100%;
				position:absolute;
				bottom:0;
				background:var(--c_red);
				border-radius:4px;
				transition: all 0.3s ease-in;
			}
			.cg_grafic_day:hover .cg_gd_graf_col {
				background:var(--c_red3);
			}
			.cg_gd_title {
				height:30px;
				padding-top:10px;
			}
			.cg_gd_title.weekend {
				color:var(--c_red);
			}
			.calendar_comment {
				text-align:center;
				color:var(--c_gray);
				margin-top:35px;
			}


/* популярное  */
.popular {
	background:var(--c_white);
	padding-bottom: 60px;
  padding-top: 60px;
  position:relative;
}
.popular_ex {
	background-color:var(--c_gray2)!important;
}

	.popular_h2 {
		margin-bottom:40px;
	}
	.vizast .popular_h2 {
		color:#16008c!important;
	}
	.popular_desc {
		/*color:var(--c_gray);*/
		margin-top:30px;
	}
	.vizast .popular_desc {
		min-height:100px;
	}
	.vizast .popular_desc > div {
		color:#16008c!important;
	}
	.popular_descs {
		/*color:var(--c_gray);*/
	}
	.popular_list {
		overflow:hidden;
		color:var(--c_white);
		margin:50px -10px 35px;
	}
		.popular_item {
			float:left;
			margin:10px;
			width:310px;
			height:160px;
			position:relative;
			border-radius:8px;
			overflow:hidden;
			background:#ffffff33;
			cursor:pointer;
			display:block;
			color:#fff;
			text-decoration:none;
			background-size:100%!important;

			transition: all 0.5s ease-in;
		}
		.popular_item:hover {
			background-size:110%!important;
			transition: all 0.5s ease-in;
		}
		.popular_item.big {
			width:640px;
			height:340px;
		}
		.popular_item.big2 {
			width:640px;
		}
		.popular_item_desc {
			position:absolute;
			bottom:40px;
			left:40px;
		}
		.popular_item_country {
			position:absolute;
			top:40px;
			left:40px;
			background:var(--c_yellow);
			color:var(--c_black);
			padding:8px 15px;
			border-radius:20px;
		}
		.popular_item_price {
			position:absolute;
			bottom:40px;
			right:40px;	
			text-align:center;
		}
		.popular_item_price.pip2 {
	    position: absolute;
	    left: 40px;
	    bottom: 120px;
	    text-align: center;
	}
		.popular_item_price span {
			display:block;
			padding:4px 21px;
			border-radius:8px;
			background:var(--c_red);
			margin-top:12px;
		}
		.popular_item_price.pip2 span {
	    float: left;
	    border-radius: 20px;
	}
		.popular_item.big .popular_item_desc {
			bottom:48px;
			left:48px;
		}
		.popular_item_subtitle {
			margin-top:12px;
		}
			.popular_item.pop1 {
				background:url(../images/pop1.jpg) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop2 {
				background:url(../images/pop2.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop3 {
				background:url(../images/pop3.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop4 {
				background:url(../images/pop4.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop5 {
				background:url(../images/pop5.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop6 {
				background:url(../images/pop6.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop7 {
				background:url(../images/pop7.png) center no-repeat;
				background-size:cover;
			}
			.popular_item.pop8 {
				background:url(../images/pop8.png) center no-repeat;
				background-size:cover;
			}
		.popular_btn {
			color:var(--c_white);
			background:var(--c_red);
			border-radius:8px;
			padding:20px;
			line-height:20px;
			text-align:center;
			cursor:pointer;
			transition: all 0.3s ease-in;
			display:block;
			text-decoration:none;
		}
		.popular_btn:hover {
			color:var(--c_white);
			background:var(--c_red3);
		}
		.popular_item2 {
			float:left;
			margin:10px;
			width:420px;
			height:240px;
			position:relative;
			border-radius:8px;
			overflow:hidden;
			background:#ffffff33;
			cursor:pointer;
			color:#fff;
			background-size:100%!important;

			transition: all 0.5s ease-in;
		}
		.popular_item2:hover {
			background-size:110%!important;
			transition: all 0.5s ease-in;
		}
		.popular_item2.big {
			width:640px;
		}
			.popular_item2.otel1 {
				background:url(../images/otel1.png) center no-repeat;
				background-size:cover;
			}
			.popular_item2.otel2 {
				background:url(../images/otel2.png) center no-repeat;
				background-size:cover;
			}
			.popular_item2.otel3 {
				background:url(../images/otel3.png) center no-repeat;
				background-size:cover;
			}
			.popular_item2.otel4 {
				background:url(../images/otel4.png) center no-repeat;
				background-size:cover;
			}
			.popular_item2.otel5 {
				background:url(../images/otel5.png) center no-repeat;
				background-size:cover;
			}

	.pop_item {
		float:left;
		background:var(--c_white) url(/images/pop_item.png) left 28px top 28px no-repeat;
		width:420px;
		padding:96px 28px 44px;
		margin-top:-170px;
		border-radius:8px;
		position:relative;
		z-index:100;
	}
	.pop_item span {
		displaY:block;
		/*margin-top:18px;*/
	}


.popular_col4 {
	float:left;
	width:25%;
	padding-right:40px;
}
.popular_row {
	padding-left:48px;
	position:relative;
	margin-bottom:60px;
}
.popular_row_buk {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:32px;
	height:32px;
	background: #16008C33;
	color:var(--c_red);
	font-size:18px;
	font-weight:bold;
	line-height:32px;
	text-align:center;
	border-radius:10px;
}
.popular_row_content {
	font-size:18px;
	font-weight:400;
	line-height:22px;
	padding-top:5px;
}
.popular_row_item {
	margin-bottom:16px;
	display:block;
	color:var(--c_black);
	cursor:pointer;
	text-decoration:none;
}
.popular_row_item:hover {
	text-decoration:underline;
}
.popular_row_item:last-child {
	margin-bottom:0;
}

/* инфомационный блок */
.infos {
	background:var(--c_white);
	padding-bottom:120px;
	padding-top:60px;
}
	.infos_h2 {
		margin-bottom:48px;
	}
	.info_col {
		float:left;
		width:635px;
	}
	.info_col:first-child {
		margin-right:30px;
	}
	.info_item {
		color:var(--c_red);
		padding-left:56px;
		position:relative;
		margin-bottom:16px;
		min-height:40px;
		
	}

	.info_item div {
		display:table-cell;
		vertical-align:middle;
		height:40px;
	}
	.info_item span {
		position:absolute;
		top:50%;
		left:0;
		margin-top:-20px;
		line-height:40px;
		width:40px;
		height:40px;
		text-align:center;
		border-radius:20px;
		color:var(--c_white);
		background:var(--c_red);
	}
	.info_desc {
		color:var(--c_gray);
		padding-bottom:32px;
		border-bottom:1px solid var(--c_gray);
	}
	.info_slicer {
		
	}
	.info_slice {
		border-bottom:1px solid var(--c_gray);
		padding:24px 0;
		color:var(--c_red);
		background:url(/images/slice.png) center right no-repeat;
		cursor:pointer;
	}
	.info_slice_text {
		padding:24px 0;
		color:var(--c_gray);
		font-weight:400;
		border-bottom:1px solid var(--c_gray);
	}



.slider {
	height:1020px;
	height:auto;
	background:url(/images/slider.jpg) center top no-repeat;
	padding-bottom:120px;
	padding-top:142px;
}
.slider.sl_2 {
	background:url(/images/slider2.jpg) center top no-repeat;
}
.slider_label {
    top: 40px;
    left: 40px;
    background: var(--c_yellow);
    color: var(--c_black);
    padding: 8px 15px;
    border-radius: 20px;
    float: left;
    margin-bottom:45px;
}
.slider_h2 {
	width:550px;
	color:var(--c_white);
	margin-bottom:32px;
}
.slider_text {
	width:550px;
	color:var(--c_white);

}
.slider_btn {
    color: var(--c_white);
    background: var(--c_red);
    border-radius: 20px;
    padding: 20px;
    float: left;
    line-height: 20px;
    width: 290px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    margin-top:80px;
}

/* форма подписки */

.subscription {
	padding-top:5px;
	background:var(--c_white);
}
	.sub_form {
		background:var(--c_red);
		color:var(--c_white);
		text-align:center;
		padding:60px;
		border-radius:16px;
		margin-top: -60px;
	  position: relative;
	  bottom: -60px;
	}
	.sub_h2 {
		margin-bottom:24px;
	}
	.sub_desc {
		margin-bottom:48px;
	}
	.sub_fields {
		width:670px;
		border:1px solid var(--c_gray4);
		margin:0 auto;
		border-radius:40px;
	}
		.sub_field {
			/*border:1px solid var(--c_gray4);*/
			border-radius:40px;
			padding:0;
			float:left;
			width:400px;
			line-height:20px;
			height:68px;
			position:relative;
			z-index:10;
			margin-right:-10px;
			text-align:left;
			color:var(--c_white);
		}
		.sub_field_input {
			border:0!important;
			outline:0!important;
			background:transparent;
			padding:21px 34px;
			width:100%;
			color:var(--c_white);
		}
		.sub_field_input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	    color:    var(--c_white);
		}
		.sub_btn {
			color:var(--c_red);
			background:var(--c_white);
			border-radius:40px;
			padding:24px;
			float:right;
			line-height:20px;
			height:68px;
			width:260px;
			text-align:center;
			cursor:pointer;
			transition: all 0.3s ease-in;
			position:relative;
			z-index:20;
		}
		.sub_btn:hover {
			color:var(--c_white);
			background:var(--c_red3);
		}

/* поиск */

.bread {
	margin-bottom:24px;
	color:#16008c88;
}
.bread span {
	color:var(--c_red);
}
.bread a {
	color:#16008c88;
	text-decoration:none;
}



.search {
	padding:60px 0;
	background:var(--c_gray3);
}
.search_h2 {
	/*margin-bottom:100px;*/
}
.search_h2 span {
	color:var(--c_red);
}

.search_left {
	width:310px;
	float:left;
	margin-right:20px;
}
.search_right {
	width:970px;
	float:left;
}

.filter_s {
	background:#fff;
	padding:24px 16px;
	border-radius:8px;
}
.filter_title {
	color:var(--c_gray);
	margin-bottom:12px;
}
.filter_title span {
	color:var(--c_red);
}
.filter_item {
	padding:0px 30px;
	margin-bottom:16px;
	height:auto;
	line-height:24px;
	font-weight: 400;
	position:relative;
	cursor:pointer;
	background:url(/images/fi.png) top left no-repeat;
	background-size: 24px;
	overflow: hidden;
}
.filter_item:hover {
	background:url(/images/fi_hover.png) top left no-repeat;
}
.filter_item.active {
	background:url(/images/fi_active.png) top left no-repeat;
	background-size: 24px;
}

.filter_item span {
	position:absolute;
	right:0;
	color:var(--c_gray);
}
.filter_star {
	background:url(/images/star.png) center no-repeat;
	width: 24px;
	height: 24px;
	float: left;
}

.filter_btn {
	color: #797780;
	text-align: center;
	padding: 17px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	background:#F3F4F8;
	border-radius:8px;
}
.fit {
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:1px solid var(--c_gray);
}



.s_card {
	width:970px;
	height:310px;
	position:relative;
	margin-bottom:20px;
	overflow:hidden;
	background:#fff;
	border-radius:8px;
	cursor:pointer;
}
.card_img {
	background:#fff url(/images/searc_img.png) center no-repeat;
	background-size:cover;
	border-radius:8px;
	overflow:hidden;
	width:260px;
	height:310px;
	position:absolute;
	top:0;
	left:0;
}
.card_info {
	overflow:hidden;
	position:relative;
	width:100%;
	float:none;
	padding:16px 20px 20px 275px;	
	height:310px;
}
.card_kind {
	color: #FFA707;
	line-height:18px;
	font-size:16px;
	margin-bottom:10px;
}
.card_star {
	background:url(/images/star.png) center no-repeat;
	background-size:contain;
	width: 18px;
	height: 18px;
	float: left;
}
.card_title {
	margin-bottom:12px;
	-webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.card_adres {
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -1%;
	color:#202023;
	-webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}



.card_price {
	float:right;
	padding:30px 84px 10px 10px;
	width:250px;
	font-size:12px;
}
.card_cost {
	margin:5px 0 0;
	font-size:20px;
}
.card_rate_name {
	width:215px;
	float:left;
	padding:22px 10px 10px 20px;
	font-size:12px;
	color:#797780;
}
.card_rate_name strong {
	display:block;
	-webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom:8px;
    font-size:14px;
    color:#202023;
        -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight:500;
}
.card_inf {
	width:180px;
	float:left;
	padding:16px 10px 10px 20px;
	font-size:12px;
	color:#797780;
}
.card_inf div {
	padding-left:26px;
	background-size:20px !important;
}

.card_btn {
    color: var(--c_white);
    background: var(--c_red);
    border-radius: 8px;
    padding: 8px;
    float: right;
    line-height: 20px;
    font-size:14px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    text-transform:uppercase;

}



.card_fav {
	background:url(/images/fav.png) center no-repeat;
	position:absolute;
	left:20px;
	top:20px;
	width:28px;
	height:28px;
	cursor:pointer;
}
.card_fav:hover {
	opacity:0.8;
}
.card_fav2 {
	background:url(/images/fav2.png) center no-repeat;
	position:absolute;
	left:20px;
	top:20px;
	width:28px;
	height:28px;
	cursor:pointer;
}
.card_fav2:hover {
	opacity:0.8;
}
.card_hotel {

	position:absolute;
	left:308px;
	top:28px;
	width:125px;
	height:24px;
}
.card_rating {
	position:absolute;
	right:10px;
	top:10px;
	width:49px;
	height:49px;
}
.card_serp {
	overflow:hidden;
}
.serp_item {
	float:right;
	width:24px;
	height:24px;
	background-size:contain!important;
	margin-left:12px;
}
.card_rate {
	background:#f3f4f8;
	border-radius:8px;
	margin:17px auto 10px;
	height:104px;
	width:100%;
}


.card_text {
    position: absolute;
    bottom: 53px;
    left: 308px;
    text-overflow: ellipsis;
    height: 42px;
    overflow: hidden;
    width: 380px;
}
.card_cancel {
    color:var(--c_green);
}

.card_adv {
	background: url(/images/card_adv.png) center no-repeat;
    position: absolute;
    left: 308px;
    top: 168px;
    width: 125px;
    height: 40px;
}



.card_sbor {
	color:var(--c_gray);
	font-size:16px;
	font-weight:400;
}



.ct_select_rec {
	position:absolute;
	right:0;
	top:24px;
	color:var(--c_gray);
}
.ct_select_rec span {
	color:var(--c_red);
	padding-right:20px;
	display:inline-block;
	background:url(../images/dropdown2.png) right bottom 9px no-repeat;
	cursor:pointer;
	display:block;
}


/**/
.aboute_list {
	overflow:hidden;
	margin-top:48px;
}
.aboute_item {
	float:left;
	padding:17px 17px 17px 64px;
	background-color:#fff!important;
	border-radius:16px;
	margin-right:20px;
	width:310px;
	height:240px;
}
.aboute_item:last-child {
	margin-right:0;
}
.aboute_item_title {
	font-size:18px;
	color:#16008c;
	font-weight:500;
	margin-bottom:17px;
}
.aboute_item_text {
	font-size:14px;
	line-height:18px;
}
.aboute_item_text a {
	/*color:#4E79EE;*/
	display:block;
	margin-bottom:12px;
}




.uslugi_list {
	overflow:hidden;
	margin:32px 0;
}
.uslugi_column {
	float:left;
	width:310px;
	margin-right:20px;
}
.uslugi_item {
	border-radius:8px;
	background:#fff;
	padding:24px;
	margin-bottom:20px;
}
.uslugi_item_title {
	padding-left:30px;
	font-weight:bold;
	margin-bottom:20px;
}
.uslugi_item_li {
	margin-bottom:7px;
	padding-left:16px;
	background:url(/images/bullet.png) top 8px left no-repeat;
	overflow:hidden;
}
.uslugi_item_li span {
	display:block;
	width:165px;
	text-align:center;
	margin-top:3px;
	background:#F3F4F8;
	color:#A4A5B5;
	padding:4px 10px;
	border-radius:20px;
	font-size:12px;
	line-height:15px;

}



/* бронирование */
.bron {
	position:absolute;
	z-index:400;
	top:120px;
	left:50%;
	margin-left:-650px;
	width:1300px;
	height:auto;
}
.bron_close {
	background:url(/images/close.png) center no-repeat;
	width:16px;
	height:16px;
	position:absolute;
	top:0;
	right:-28px;
	cursor:pointer;
}
.bron_left {
	float:left;
	width:860px;
}

.bron_right {
	float:right;
	width:430px;
}
.bron_block {
	padding:40px;
	border-radius:16px;
	background:#fff;
	margin-bottom:20px;
	position:relative;
}
.brobl_li {
	margin-bottom:16px;
}
.brobl_li span {
	display:inline-block;
	width:165px;
	color:var(--c_gray);
}
.brobl_li2 {
	margin-bottom:16px;
	color:var(--c_gray);
	padding-left:32px;
}

/* лк */
.lk_bread {
	margin-bottom:20px;
}
.lkbr {
	float:left;
	dispay:block;
	background:var(--c_gray2);
	padding:8px 20px;
	border-radius:30px;
	margin-right:4px;
}
a.lkbr {
	color:#797780;
	text-decoration:none;
}
.lk_items {
	margin-bottom:120px;
}
.lk_item {
		float:left;
		background:var(--c_gray2) url(/images/pop_item.png) left 36px top 32px no-repeat;
		width:310px;
		height:150px;
		padding:96px 36px 32px;
		border-radius:8px;
		margin:12px;
		margin-left:0;
		display:block;
		color:#202023;
	}
	.lk_item span {
		displaY:block;
	}
	.lki1 {
		background:var(--c_gray2) url(/images/lki1.png) left 36px top 32px no-repeat;
	}
	.lki2 {
		background:var(--c_gray2) url(/images/lki2.png) left 36px top 32px no-repeat;
	}
	.lki3 {
		background:var(--c_gray2) url(/images/lki3.png) left 36px top 32px no-repeat;
	}
	.lki4 {
		background:var(--c_gray2) url(/images/lki4.png) left 36px top 32px no-repeat;
	}
	.lki5 {
		background:var(--c_gray2) url(/images/lki5.png) left 36px top 32px no-repeat;
	}
	.lki6 {
		background:var(--c_gray2) url(/images/lki6.png) left 36px top 32px no-repeat;
	}
	.lki7 {
		background:var(--c_gray2) url(/images/lki7.png) left 36px top 32px no-repeat;
	}
	.lki8 {
		background:var(--c_gray2) url(/images/lki8.png) left 36px top 32px no-repeat;
	}
	.lki9 {
		background:var(--c_gray2) url(/images/lki9.png) left 36px top 32px no-repeat;
	}
.lk_item2 {
		background:var(--c_gray2) url(/images/pop_item.png) left 36px top 32px no-repeat;
		padding:22px 22px 22px 68px;
		border-radius:16px;
		margin-bottom:4px;
		margin-left:0;
		display:block;
		color:#202023;
		background-size:32px!important;
		overflow:hidden;
		position:relative;
	}
	.lk_item2.active {

	}
	.lk_item2.active:after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 60px;
    background: var(--c_red);
    bottom: 4px;
    left: 0;
    z-index: 90;
}

	.lk_item2.lki1 {
		background:var(--c_gray2) url(/images/lki1.png) left 24px center no-repeat;
	}
	.lk_item2.lki2 {
		background:var(--c_gray2) url(/images/lki2.png) left 24px center no-repeat;
	}
	.lk_item2.lki3 {
		background:var(--c_gray2) url(/images/lki3.png) left 24px center no-repeat;
	}
	.lk_item2.lki4 {
		background:var(--c_gray2) url(/images/lki4.png) left 24px center no-repeat;
	}
	.lk_item2.lki5 {
		background:var(--c_gray2) url(/images/lki5.png) left 24px center no-repeat;
	}
	.lk_item2.lki6 {
		background:var(--c_gray2) url(/images/lki6.png) left 24px center no-repeat;
	}
	.lk_item2.lki7 {
		background:var(--c_gray2) url(/images/lki7.png) left 24px center no-repeat;
	}
	.lk_item2.lki8 {
		background:var(--c_gray2) url(/images/lki8.png) left 24px center no-repeat;
	}
	.lk_item2.lki9 {
		background:var(--c_gray2) url(/images/lki9.png) left 24px center no-repeat;
	}


.document_list {
	border-top:1px solid #20202322;
	margin-top:35px;
}
.document_item {
	border-bottom:1px solid #20202322;
	padding:24px 300px 24px 0;
	position:relative;
}
.document_item_title {
	font-size:16px;
	font-weight:600px;
}
.document_item_subtitle {
	font-size:12px;
	color:#797780;
	text-transform:uppercase;
}

.document_item_edit {
    background: var(--c_white);
    color: var(--c_red);
    border:1px solid var(--c_red);
    border-radius: 8px;
    padding: 13px 26px;
    float: left;
    min-width: 212px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    position:absolute;
    top: 20px;
    right: 58px;
}
.document_item_delete {
    background: #F1F0F5 url(/images/delete.png) center no-repeat;
    color: #E7E7E9;
    border:1px solid #E7E7E9;
    border-radius: 8px;
    float: left;
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    position:absolute;
    top: 20px;
    right: 0;
}


.check_list {
	border-top:1px solid #20202322;
	margin-top:35px;
}
.check_item {
	border-bottom:1px solid #20202322;
	padding:24px 300px 24px 0;
	position:relative;
}
.check_item_title {
	font-size:16px;
	font-weight:600px;
}
.check_item_subtitle {
	font-size:12px;
	color:#797780;
}
.check_item_subtitle span {
	color: var(--c_red);
}
.check_item_summ {
    color: var(--c_red);
    border-radius: 8px;
    padding: 14px 0;
    min-width: 100px;
    line-height: 20px;
    text-decoration: none;
    position:absolute;
    text-align:right;
    top: 20px;
    right: 252px;
    font-size:16px;
}

.check_item_download {
    background: var(--c_white) url(/images/download.png) center right 47px no-repeat;
    color: var(--c_red);
    border:1px solid var(--c_red);
    border-radius: 8px;
    padding: 13px 77px 13px 45px;
    min-width: 212px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    position:absolute;
    top: 20px;
    right: 0;
}

.lk {

}

.lk_prof {
		background:#B8FF00;
		padding:36px;
		border-radius:16px;
		margin-bottom:4px;
		margin-left:0;
		display:block;
		color:#202023;
		background-size:32px!important;
		overflow:hidden;
		position:relative;
		font-size:20px;
}
.lk_prof > div {
		color:var(--c_red);
}
.lk_prof span {
		font-size:14px;
		display:block;
		/*padding-bottom:30px;*/
		padding-top:8px;
		/*border-bottom:1px solid var(--c_gray);*/
}
.lk_prof_btn {
		color:var(--c_red);
		font-size:14px;
		display:block;
		margin-top:30px;
		cursor:pointer;
		background:url(/images/exit.svg) left 60px center no-repeat;
		text-decoration:none;
}

.lk_club {
	height:auto;
	/*background:#000 url(/images/club_top.jpg?2) center top no-repeat;*/
	overflow:hidden;
	color:#fff;
}

.for_club {
	margin-top:168px;
	height:32px;
	background: url(/images/for_club.png) center no-repeat;
}

.club_title {
	margin-top:27px;
	text-align:left;
	width:610px;
	margin-bottom:28px;
	font-size:48px;
	line-height:58px;
	font-weight:bold;
	letter-spacing: 1px;
}

.club_subtitle {
	text-align:left;
	width:610px;
	line-height:30px;
	font-size:20px;
	font-weight:bold;
	font-weight:400;
}
.club_btn1 {
	height:48px;
	background: url(/images/club_btn1_1.png) center no-repeat;
	margin-top:96px;
	width:300px;
	margin:96px 0 504px;
	cursor:pointer;
	text-decoration:none;
}

.club_advs {
	overflow:hidden;
	margin-bottom:150px;
}
.club_adv {
	width:420px;
	height:200px;
	margin:20px 0;
	padding:32px 28px;
	float:left;
	font-size:16px;
	color:#A8A6BC;
	font-weight:400;
}
.club_adv.cadv_big {
	width:100%;
	height:200px;
	margin:0;
}
.cadv1 {
	background: url(/images/cadv1.png) center no-repeat;
}
.cadv2 {
	background: url(/images/cadv2.png) center no-repeat;
}
.cadv3 {
	background: url(/images/cadv3.png) center no-repeat;
}
.cadv4 {
	background: url(/images/cadv4.png) center no-repeat;
}
.club_adv_title {
	font-size:32px;
	line-height:40px;
	margin-bottom:16px;
	font-weight:600;
	letter-spacing: 1px;
	color:#fff;
}

.club_price {
	margin:50px 0 150px;
	width:100%;
	height:496px;
	padding:48px;
	line-height:24px;
	font-size:16px;
	color:#A8A6BC;
	background: url(/images/club_price_2.png) center no-repeat;
}
.club_price_title {
	font-size:25px;
	line-height:30px;
	margin-bottom:20px;
	font-weight:600;
	letter-spacing: 1px;
	color:#fff;
}
.club_price_text {
	width:630px;
	margin-bottom:20px;
	color:#A4A5B5;
}
.club_price_btn {
	height:48px;
	background: url(/images/club_btn1_1.png) center no-repeat;
	margin-top:62px;
	width:300px;
	cursor:pointer;
	text-decoration:none;
}

.club_info {
	margin-bottom:150px;
	overflow:hidden;
}
.club_info_col {
	width:640px;
	float:left;
}
.club_info_col:first-child {
	margin-right:20px;
}
.club_info .club_title {
	margin-top:0;
	text-align:left;
	margin-bottom:48px
}

.club_info_item {
	margin-top:20px;
	font-size:15px;
	line-height:21px;
	font-weight:400;
	color:#A8A6BC;
	padding:18px 76px;
	height:80px;
	border-radius:16px;
	border:1px solid rgba(255,255,255,0.1);
	position:relative;
	background:#000;
}
.club_info_item span {
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 20px;
    color: var(--c_white);
    background: #1E1E1E;
}
.club_info_slice {
	margin-top:20px;
	font-size:20px;
	line-height:28px;
	font-weight:600;
	color:#fff;
	padding:26px 76px 26px 24px;
	height:80px;
	border-radius:16px;
	border:1px solid rgba(255,255,255,0.1);
	position:relative;
	background:#000 url(/images/club_info_slice.png) center right 20px no-repeat;
	cursor:pointer;
}
.club_info_btn {
	height:80px;
	background: url(/images/club_btn3.png) center no-repeat;
	margin-top:20px;
	width:640px;
	cursor:pointer;
	text-decoration:none;
}

.club_form {
	margin:48px 0 150px;
	overflow:hidden;
	height:565px;
	background: url(/images/club_form3.png) center no-repeat;
	border:1px solid rgba(255,255,255,0.1);
	border-radius:16px;
	padding:66px;
}

.club_form_btn {
	height:64px;
	background: url(/images/club_btn8.png) center no-repeat;
	margin:20px 0 20px;
	width:387px;
	cursor:pointer;
	text-decoration:none;
}
.club_form_inf {
	text-align:center;
	font-size:12px;
	line-height:15px;
	color:#454545;
	width:420px;
	margin:0 ;
}
.club_form_inf a {
	color:  var(--c_red);
}

.club_price2 {
	margin:50px 0 150px;
	width:100%;
	height:535px;
	padding:48px;
	line-height:30px;
	font-size:20px;
	color:#fff;
	background: url(/images/club_price.png?2) center no-repeat;
}
.club_price_title2 {
	font-size:48px;
	line-height:58px;
	margin-bottom:24px;
	font-weight:600;
	letter-spacing: 1px;
	color:#fff;
}
.club_price_text2 {
	width:380px;
}





.lk_left {
	width:310px;
	float:left;
	margin-right:20px;
}
.lk_right {
	width:970px;
	float:left;
}

.lk_iblock {
	background:var(--c_gray2);
	margin-bottom:20px;
	padding:32px;
	border-radius:16px;
	overflow:hidden;
}

.lk_iblock.lkib_prartner {
	background:var(--c_gray2) url(/images/lkib_prartner.png) right 37px bottom no-repeat;
	display: block;
}
.lk_iblock_title span {
	color: var(--c_red);
	display:block;
}
.lk_iblock_btn {
    color: var(--c_white);
    background: var(--c_red);
    border-radius: 8px;
    padding: 14px 26px;
    float: left;
    min-width:212px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    margin-top:36px;
    margin-right:20px;

}
.lk_iblock_btn.white {
    color: var(--c_red);
    background: var(--c_white);
    border:1px solid var(--c_red);
    border-radius: 8px;
    padding: 14px 26px;
    float: left;
    min-width:212px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    text-decoration: none;
    margin-top:36px;
    margin-right:20px;

}


.lk_right a {
	color:var(--c_black);
	text-decoration:none;
}
.lk_right a {
	color:var(--c_black);
	text-decoration:none;
}
.lk_right .nav_col ,.lk_right .foot_col {
	margin-bottom:36px;
}


.my_subs {
	font-size:12px;
	margin:14px 0;
	padding-left:40px;
	color:var(--c_gray);
	background:url(/images/fi.png) top 5px left no-repeat;
	background-size: 24px;
}

.my_subs:hover {
	font-size:12px;
	margin:14px 0;
	padding-left:40px;
	color:var(--c_gray);
	background:url(/images/fi_hover.png) top 5px left no-repeat;
}
.my_subs.active {
	background:url(/images/fi_active.png) top 5px left no-repeat;
	background-size: 24px;
}
.my_subs div {
	font-size:16px;
	color:var(--c_black);
}

.genders {
	font-size:15px;
	color:#202023;
	margin-top: 30px;
}
.gender {
	float:left;
	padding:3px 0 3px 36px;
	margin-right:24px;
	background:url(/images/gender.png) center left no-repeat;
	cursor:pointer;
}
.gender.active {
	background:url(/images/gender_active.png) center left no-repeat;
}

.lk_fields {
				margin-bottom:16px;
			}
				.lk_field {
					background:var(--c_gray3);
					border-radius:8px;
					padding:17px 16px;
					float:left;
					margin-right:10px;
					margin-top:30px;
					width:212px;
					position:relative;
				}

					.lk_field_caption {
						color: var(--c_gray);
						background:var(--c_gray2);
						position:absolute;
						padding:3px 10px;
						font-size:12px;
						left:11px;
						top:-12px;
						border-radius:20px;
					}
					.lk_field_input {
						border:0!important;
						outline:0!important;
						background:transparent;
						padding:0;
					}


				.club_form .lk_field {
					background:rgba(255,255,255,0.05);
					border-radius:8px;
					padding:22px 16px;
					float:left;
					margin:0 0 22px;
					width:387px;
					position:relative;
					border-radius:8px;
					border:1px solid #1A1A1A;
					float:none;
					color:#454545;
					font-size:16px;
				}

					.club_form .lk_field_caption {
						color: #797780;
						background:#000;
						position:absolute;
						padding:3px 10px;
						font-size:12px;
						left:11px;
						top:-12px;
						border-radius:20px;
					}
					.club_form .lk_field_input {
						border:0;
						background:transparent;
						padding:0;
					}

/* большое меню, нижнее и верхнее */
.bottom {
	color:var(--c_black);
	background:var(--c_white);
	padding-top:60px;
	padding-bottom: 40px;
}
.bottom.ex {
	color:var(--c_black);
	background:var(--c_white);
}
	.bottom a {
		color:#202023;
		text-decoration:none;
	}
	.bottom a:hover {
		text-decoration:underline;
	}

.top {
	color:var(--c_black);
	background:var(--c_white);
	padding-top:140px;
	padding-bottom: 40px;
	position:fixed;
	width:100%;
	margin-top:-90px;
	z-index:300;
}

	.top a {
		color:#202023;
		text-decoration:none;
	}
	.top a:hover {
		text-decoration:underline;
	}
.wrapper {
	width:100%;
	height:100%;
	position:fixed;
	z-index:90;
	background:#202023;
	opacity:60%;
}
.wrapper2 {
	width:100%;
	height:100%;
	position:fixed;
	z-index:390;
	background:#202023;
	opacity:60%;
}
.wrapper3 {
	width:100%;
	height:100%;
	position:fixed;
	z-index:190;
	background:#202023;
	opacity:60%;
	left:0;
	top:0;
}



.navigation {

}
	.nav_line {
		overflow:hidden;
		padding-bottom:40px;
	}
	.nav_line.nav_adres {
		overflow:hidden;
		padding-top:40px;
		padding-bottom:20px;
		border-top:1px solid #00000016;
	}
		.nav_col {
			min-height:30px;
			width:232px;
			margin-right:35px;
			/*background:#ffffff33;*/
			float:left;
		}
		.nav_col:last-child {
			margin-right:0;
		}
		.nav_col.double {
			width:499px;
		}
		.nav_col.toright {
			float:right;
		}
		.nav_col2 {
			width:232px;
		}
		.nav_col3 {
			width:420px;
		}
			.nav_title {
				margin-bottom:32px;
			}
			.nav_title2 {
				margin-bottom:10px;
				color:#202023;
			}
			.nav_item {
				margin-bottom:20px;
			}
			.nav_account {
				display:block;
				font-size:18px;
				line-height:22px;
				padding:5px 5px 5px 48px;
				margin-top:8px;
				background:url(../images/account4.png) center left no-repeat;
			}
			.nav_btn {
				color:var(--c_white);
				background:var(--c_red);
				border-radius:8px;
				padding:14px;
				float:right;
				line-height:20px;
				height:48px;
				width:100%;
				text-align:center;
				cursor:pointer;
				transition: all 0.3s ease-in;
				position:relative;
				z-index:20;
				text-decoration:none;
			}
			.nav_btn:hover {
				color:var(--c_white);
				background:var(--c_red3);
			}
			.nav_mess {
				margin-right:12px;
				width: 48px;
				height:48px;
				float:left;
			}
				.pril1 {
					background:url(../images/pril1.png) center no-repeat;
					background-size:contain;
				}
				.pril2 {
					background:url(../images/pril2.png) center no-repeat;
					background-size:contain;
				}
				.pril3 {
					background:url(../images/pril3.png) center no-repeat;
					background-size:contain;
				}
				.pril4 {
					background:url(../images/pril4.png) center no-repeat;
					background-size:contain;
				}
				.nav_max {
					background:url(../images/max.png) center no-repeat;
					background-size:contain;
				}
				.nav_telegram {
					background:url(../images/telegram.png) center no-repeat;
					background-size:contain;
				}
				.nav_sms {
					background:url(../images/sms.png) center no-repeat;
					background-size:contain;
				}

.bottom .nav_line.nav_adres {
		overflow:hidden;
		padding-top:0;
		padding-bottom:40px;
		border-top:0;
	}
	.bottom .nav_line.nav_inf {
		overflow:hidden;
		padding-top:0;
		padding-bottom:0;
		border-top:0;
	}
/* повдал */
.footer {
	color:var(--c_black);
	background:var(--c_white);
	padding-top:40px;
	padding-bottom:35px;
	border-top:1px solid #00000032;
	opacity:0.5;
	font-size:15px;
}
	.footer a {
		color:#202023;
		text-decoration:none;
	}
	.footer a:hover {
		text-decoration:underline;
	}

	.foot_line {
		overflow:hidden;
		margin-bottom:17px;
	}

			.foot_title {
				margin-bottom:10px;
				color:var(--c_gray);
			}
			.foot_item {
				margin-right:30px;
				display:inline-block;
			}

			.foot_mess {
				margin-right:12px;
				width: 48px;
				height:48px;
				float:left;
			}
			.toright .foot_mess {
				margin-right:0;
				margin-left:12px;
				float:right;
			}
				.plat_mc {
					background:url(../images/plat_mc.png) center no-repeat;
					background-size:contain;
					width: 87px;
					height:58px;
				}
				.plat_visa {
					background:url(../images/plat_visa.png) center no-repeat;
					background-size:contain;
					width: 87px;
					height:58px;
				}
				.plat_mir {
					background:url(../images/plat_mir.png) center no-repeat;
					background-size:contain;
					width: 87px;
					height:58px;
				}
				.plat_sbp {
					background:url(../images/plat_sbp.png) center no-repeat;
					background-size:contain;
					width: 87px;
					height:58px;
				}

				.foot_vk {
					background:url(../images/vk.png) center no-repeat;
					background-size:contain;
				}
				.foot_tg {
					background:url(../images/tg.png) center no-repeat;
					background-size:contain;
				}
				.foot_x {
					background:url(../images/x.png) center no-repeat;
					background-size:contain;
				}

.pay_timer {
	width:100%;
	height:20px;
	background:#fff;
	border:1px solid #99999922;
	margin:10px auto;
	position:relative;
}
.pay_timer:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 0%;
    background: #b96df3;
    opacity: 0.1;
    animation: animate 10s ease-out;
}
@keyframes animate { 
	0%  {
		width: 0%;
	} 
	100% { 
		width: 100%;
	}
}

.hid {
	display: none;
}
.alert td {
  background: #ff000044;
}



#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    max-width: 90%;
    width: 400px;
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    background: #000000ee;
    color: #fff;
}

#cookie_note.show {
   display: block;
}

#cookie_note p {
    margin: 20px 0;
    text-align: left;
}
#cookie_note a {
    color: #fff;
}
.cookie_accept {
    width: 100%;
    border: 0;
    padding: 10px;
    background: #fff;
    color: #000;
    cursor: pointer;
    border-radius: 3px;
}

.clamp {
    -webkit-line-clamp: 5;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;display: -webkit-box;
}


/*hotel*/
.hotel_top {
	padding:40px; 
	border-radius:8px; 
	background:#fff; 
	position:relative;
}
.hotel_point {
	margin-bottom:24px; 
	padding-left:36px; 
	background:url(/images/point.png) left center no-repeat
}
.hotel_point a {
	color:#16008C;
	display:inline-block; 
	margin-left:20px
}

.hotel_top_price {
	position:absolute; 
	top:40px; 
	right:40px; 
	width:400px; 
	text-align:right;
}


.hotel_top_price .t_button {
	float:none; 
	margin:32px 0 0 auto; 
	display:block;
	width:230px; 
	padding:20px;
}
.hotel_serps {
	height:66px; 
	overflow:hidden
}
.hotel_serp {
	padding:21px 28px 21px 72px; 
	height:66px; 
	line-height:12px; 
	color:#16008C; 
	float:left; 
	border-radius:8px; 
	margin-right:20px;
}
.hotel_gallery {
	height:440px; 
	margin-top:24px;  
	margin-bottom:24px;
}
.hotel_gallery_list {
	float:left; 
	margin-right:20px; 
	height:440px; 
	width:90px;
}
.hotel_gallery_main {
	float:right; 
	margin-right:20px; 
	height:440px; 
	width:750px; 
	position:relative; 
	border-radius:8px;
	margin-right:0; 
	width:1190px;
	background-position:center!important;
	display:block;
}
.hotel_gallery_review {
	display:none;
	float:right;  
	height:440px; 
	width:420px; 
	border-radius:8px; 
	background:#fff; 
	overflow:hidden; 
	position:relative; 
	padding: 0 26px 26px;
}
.hotel_gallery_item {
    width:90px; 
    height:70px; 
    margin-bottom:10px;
    border-radius:8px;
}

.hotel_desc {
	width:100%; 
	height:auto; 
	padding:0;  
	margin-top:48px;   
	overflow:hidden;
}
.hotel_desc_left {
	float:left; 
	width:795px;
}
.hotel_desc_right {
	float:right; 
	width:420px; 
	padding:28px; 
	background:#fff;
	border-radius:8px
}

.hotel_list {
	width:100%; 
	height:auto;
	padding:24px 32px; 
	background: #fff; 
	border-radius:16px; 
	margin-top:24px;
}
.hotel_item {
	width:100%; 
	height:auto; 
	background: #F3F4F8; 
	border-radius:16px; 
	margin-bottom:10px; 
	margin-top:30px; 
	overflow:hidden;
}
.hotel_item_inf {
	width:100%; 
	height:194px; 
	padding:32px 32px 32px 305px;
	position:relative;
}
.hotel_item_img {
	width:278px; 
	height:194px;
	position:absolute;
	left:0; 
	top:0;
	border-radius:8px; 
	display:block;
}
.hotel_item_inf .t_title {

}
.hotel_item_rates {
	padding:20px; 
	border-top:1px solid #E4E4E4;
}
.hotel_item_rate {
	background:#fff;
	padding:32px; 
	border-radius:16px;
	margin-bottom:10px; 
	overflow:hidden;
}
.hotel_item_rate_1 {
	float:left; 
	width:300px; 
	height:96px;
}

.hotel_item_rate_1 .t_body {
	padding-left:36px; 
	margin-bottom:12px;
}
.hotel_item_rate_2 {
	float:left; 
	width:250px; 
	height:96px;
}
.hotel_item_rate_3 {
	float:right; 
	height:96px; 
	width:260px;
}
.hotel_item_rate_3 .card_btn {
	width:100%; 
	position:relative; 
	margin-top:18px;  
	padding:20px; 
	bottom:unset; 
	right:unset;
}
.hotel_form {

}

.bron_img {
	margin-right:20px; 
	height:320px; 
	width:430px; 
	position:relative; 
	border-radius:8px;
}

.oform {
	z-index:400;
	width:1300px; 
	height:390px;
	height:auto; 
	position:fixed; 
	top:50%; 
	left:50%; 
	margin-left:-650px; 
	margin-top:-195px;
}

input:autofill { 
	background: transparent
}


.popular_h2.h20 {
  font-size:20px;
}
.popular_h2.h24 {
  font-size:24px;
}
.popular_desc_column {
	position:relative; 
	float:left;
	width:640px;
}
.popular_desc_column.left {

	margin-right:20px; 

}
.popular_desc.desc_box {
position:relative; 
margin-bottom:20px; 
margin-top:0;
overflow:hidden;

background:#fff;
border-radius:16px;
padding:40px;
}


.tuk {
  font-weight:bold; 
  color:#202023; 
  margin-bottom:20px; 
}
.tuk_btn {
  padding:10px 62px;
  font-size:16px;
  color:#16008c;
  margin-top:20px; 
  border:1px solid #16008c;
  border-radius: 100px;
  display: inline-block;
}
.viza_block {
  height: auto;
                        padding: 28px;
                        background: #fff;
                        border-radius: 8px;
                        position: relative;
                        float: left;
                        width: 30%;
                        margin: 60px 1.5% 30px;
                        z-index: 10;
}
.viza_block_title {
  font-size: 24px;
                        line-height: 120%;
                        font-weight: 700;
                        letter-spacing: 0.7px;
                        margin: 0 0 24px;
                        padding: 0;
}
.viza_block_btn {
  display:block; 
  margin:24px auto 24px; 
  float:none;
   width:100%;
}


.guest_room {
	padding:24px 33px; border-bottom:1px solid #E4E4E4;
}
.gi_title {
	font-size:20px;margin-bottom:18px; font-weight:600;
}
.gi_title span {
	color:red; float:right; font-size:16px;
}

.gi_mature {
	overflow:hidden; font-size:16px; line-height:40px; margin-bottom:20px;
}

.gi_mature > div{
	float:right; font-size:20px; font-weight:600
}
.gi_minus {
	display: inline-block;width: 40px;height: 40px;text-align: center;background: #F3F4F8;margin-right: 20px; cursor:pointer;border-radius:20px;
}
.gi_plus {
	display: inline-block;width: 40px;height: 40px;text-align: center;background: #F3F4F8;margin-left: 20px; cursor:pointer;border-radius:20px;
}
.gi_childs {
	font-size:16px; line-height:40px;margin-bottom:12px;
}

.guest_btn {
  padding:24px 33px; overflow:hidden;
}
.gb_add {
  display:block; float:left; box-sizing: border-box; padding:14px 14px; font-size:16px; text-transform:uppercase; color:#16008c; border:1px solid #16008c; border-radius:8px; width:223px; text-align:center; cursor:pointer;
}
.gb_apply {
  display:block; float:left; box-sizing: border-box; padding:14px 14px; font-size:16px; text-transform:uppercase; background:#16008c; color:#fff; border:1px solid #16008c;margin-left:12px; border-radius:8px; width:223px; text-align:center; cursor:pointer;
}

.vizvp .popular_desc {
	color:#797780; position:relative; padding-left:260px; margin-bottom:40px; overflow:hidden; padding-bottom:40px; border-bottom:1px solid #E7E7E9
}
.vizvp .popular_desc > div {
	position:absolute; left:0; font-weight:bold; color:#202023; width:200px
}

.ppcfg {
	 padding: 28px;
                        background: #fff;
                        border-radius: 8px;
                        position: relative;
                        float: left;
                        width: 30%;
                        margin: 40px 1.5% 0;
                        z-index: 10;
}
.ffffg {
	font-size: 24px;
                        line-height: 120%;
                        font-weight: 700;
                        letter-spacing: 0.7px;
                        margin: 0 0 24px;
                        padding: 0;
}

.text-red-600 {
	color:red;
	margin-bottom:10px;
	display:block;
}

.banright {
	position:absolute; 
	top:145px; 
	right:0; 
	width: 310px; 
	padding:0;
}
.cblock389 {
	float:right; 
	width:389px;
}
.cblock561 {
	float:left; 
	width:561px;
}



.agree_row_title {
	color:#797780;
	margin-top:20px;
	padding:20px 0;
	font-size:16px;
	overflow:hidden;
}
.agree_row_title div {
	float:left;
	width:25%;
}
.agree_row_title .agree_col1 {
	width:50%;
}

.agree_row {
	padding:20px 0;
	font-size:16px;
	overflow:hidden;
	border-top:1px solid #797780;
}
.agree_row div {
	float:left;
	width:25%;
}
.agree_row .agree_col1 {
	width:50%;
}

.usl_list {
	margin-top:30px;
}
.usl_item {
	background: rgba(243, 244, 248, 1);
    color: rgb(22, 0, 140);
    /* background: rgba(243, 244, 248, 1); */
    padding: 30px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height:32px;
}
.usl_num {
	float: left;
  width: 60px;
  font-size: 32px;
}
.usl_text {
	float: left;
  width: 900px;
}
.usl_text2 {
	float: none;
  width: 100%;
  font-weight: normal;
  clear: both;
  padding-left: 60px;
}

.usl_item .usl_btn {
	background: var(--c_white);
    color: var(--c_red);
    border: 1px solid var(--c_red);
    border-radius: 8px;
    padding: 13px 26px;
    float: left;
    min-width: 212px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display:block;
}