@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url('https://fonts.gstatic.com/s/manrope/v14/xn7gYHE41ni1AdIRgg.woff2') format('woff2');
}

body, body.body {
    font-family: Manrope;
}


.menu-fixed-scroll {
	position: sticky;
}

.underlay {
	height: 250px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

.tabs-underlay {
	margin-top: 10px;
	background-image: url(/upload/iblock/281/8f522zo32kwaerpzyav0enwkzgy5ianr.jpg);
	min-height: 400px;
	color: white;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	/*background-attachment: fixed;*/
	border-radius: 8px;
	flex-direction: column;
	justify-content: space-between;
}

.tabs-underlay h1 {
	color: white;
}

.tabs-underlay .flex-fixer {
	flex-basis: 33%;
}

.tabs-underlay .tabs-container {
	width: 90%;
	padding: 40px 0;
}

.tabs-underlay #main-search_form-with-tabs-v2 {
	border-radius: 8px;
}

body.modal-open {
	padding-right: 0 !important;
}

.sticky-block {
	position: -webkit-sticky;
	position: sticky;
	top: 110px;
	padding-bottom: 2em;
}

.sticky-block > *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
	.sticky-block {
		top: 130px;
	}
}

@media screen and (max-width: 767px) {
	.sticky-block {
		position: unset;
	}
}

.tooltip-icon {
	position: relative;
	color: #a7bee9;
	font-size: 16px;
}

.tooltip-icon i {
	cursor: pointer;
}

.tooltip-icon .tooltip-text {
	visibility: hidden;
	position: absolute;
	width: 120px;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.6s;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	font-weight: normal;
}

.tooltip-icon .tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip-icon:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.slick-rounded-arrow {
	position: absolute;
	background: #f1f4f8;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #0079bf;
	cursor: pointer;
	outline: none;
	z-index: 10;
}

.main-title h1 {
	font-size: 24px;
}

.hotel-page h2 {
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 1em;
}

.tour-page h2 {
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 1em;
}

section.section-default {
	background: white;
	border-radius: 6px;
	box-shadow: black 0 0 15px -15px;
	padding: 20px 30px;
	margin-bottom: 25px;
}

section.section-ready-to {
	min-height: 200px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://intourist.ru/info/excursions/_next/static/media/hotelBg.904fbcdb.jpeg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

section.section-ready-to.search-tour {
	background: url(https://intourist.ru/info/excursions/_next/static/media/moreBg.97bcf560.jpg);
}

.sidebar-content section.section-default {
	padding: 15px;
}

/* stars */
.stars-items {
	display: inline-flex;
	font-size: 0;
}
.stars-items .stars-item {
	display: none;
	color: #fbbb16;
	padding: 0;
	font-size: 26px;
	line-height: 1;
	letter-spacing: 6px;
}
.stars-items > .stars-item:before {
	content: "★";
}
.stars-items.stars-1 > .stars-item:nth-child(-n + 1) {
	display: block;
}

.stars-items.stars-2 > .stars-item:nth-child(-n + 2) {
	display: block;
}

.stars-items.stars-3 > .stars-item:nth-child(-n + 3) {
	display: block;
}

.stars-items.stars-4 > .stars-item:nth-child(-n + 4) {
	display: block;
}

.stars-items.stars-5 > .stars-item {
	display: block;
}
/* stars end */

/* scroll tabs */
.scroll-tabs .scroll-tabs__items {
	display: flex;
}

.scroll-tabs ul,
.scroll-tabs ul li {
	padding: 0;
	margin: 0;
}

.scroll-tabs .scroll-tabs__item a {
	background: white;
	color: #0079bf;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	height: 100%;
}

.scroll-tabs .scroll-tabs__item:first-child a {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.scroll-tabs .scroll-tabs__item:last-child a {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.scroll-tabs .scroll-tabs__item.active a {
	background: #0079bf;
	color: white;
}

/* end scroll tabs */

/* preview gallery */
.preview-gallery__wrapper {
	overflow: hidden;
	border-radius: 6px;
	min-height: 400px;
}

.preview-gallery__item {
	display: block !important;
	height: 100%;
}

.preview-gallery__item img {
	width: 100%;
	object-fit: cover;
	height: 400px;
}

.preview-gallery__items:not(.slick-slider)
> .preview-gallery__item:not(:first-child) {
	display: none !important;
}

.preview-gallery__items .slick-dots {
	bottom: 20px;
}

.preview-gallery__items .slick-arrow {
	bottom: calc(50% - 15px);
	outline: none;
}

.preview-gallery__items .slick-prev {
	left: 10px;
}

.preview-gallery__items .slick-next {
	right: 10px;
}
/* end preview gallery */

/* hotel chars */
section.hotel-chars {
	padding: 20px 0 0 0;
}

.hotel-chars__items {
	display: flex;
	flex-wrap: wrap;
}

.hotel-chars__item {
	flex-basis: calc(100% / 7);
	width: calc(100% / 7 - 40px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 20px;
}

.hotel-chars__item .icon {
	display: block;
	padding: 0 30px;
}

.hotel-chars__item .icon img {
	max-width: 100px;
	width: 100%;
}

.hotel-chars__item .desc {
	margin-top: 0.4em;
	font-size: 11px;
	font-weight: 600;
	padding: 0 15px;
}
/* end hotel chars */

.about__desc {
	padding-bottom: 15px;
	font-size: 16px;
}

.about__desc.about__desc-icon {
	padding-bottom: 0;
	display: flex;
	align-items: center;
	font-size: 14px;
}

.about__desc.about__desc-icon .about__icon {
	padding-right: 20px;
}

/* labels */
.labels {
	display: flex;
	flex-wrap: wrap;
}

.label-item {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	cursor: default;
	margin-right: 8px;
	padding: 10px 16px;
	background: #0079bf;
	border-radius: 6px;
	color: white;
	font-weight: bold;
	font-size: 11px;
}

.label-item .icon {
	margin-right: 8px;
}
/* end labels */

/* btn search block */
.btn-search-block a {
	text-decoration: none;
	padding: 14px 20px;
	background-color: #fd8c16;
	color: white;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	display: block;
	border-radius: 3px;
	transition: background-color 0.1s ease;
}

.btn-search-block a:hover,
.btn-search-block a:focus {
	box-shadow: 0 3px 15px #fd8c16;
	color: white;
}

.btn-search-block .icon {
	margin-right: 15px;
	margin-left: -15px;
}
/* end btn search block */

/* btn search tour block */
.btn-search-tour-block .info {
	margin-bottom: 15px;
}

.btn-search-tour-block .info__price {
	color: #0079bf;
	font-weight: bold;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 15px;
}

.btn-search-tour-block .info__price span {
	font-size: 24px;
}

.btn-search-tour-block .info__price-add {
	font-weight: bold;
	font-size: 13px;
}
/* end btn search tour block */

/* map distance */
.map-distance__title {
	font-size: 18px;
	margin-bottom: 1em;
	font-weight: 600;
	text-align: center;
}

.map-distance__address {
	display: flex;
	padding: 10px 0;
}

.map-distance__address .icon {
	margin: 0 15px 0 5px;
}

.map-distance__address .icon i {
	font-size: 30px;
	color: #0079bf;
}

.map-distance__items {
	display: flex;
	flex-wrap: wrap;
}

.map-distance__item {
	flex-basis: 50%;
	padding-left: 5px;
	margin-bottom: 25px;
}

.map-distance__item__wrapper {
	display: flex;
	align-items: center;
}

.map-distance__item .icon {
	margin: 0 15px 0 5px;
}

.map-distance__item .icon i {
	font-size: 30px;
	color: #0079bf;
}

.map-distance__item .info {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: bold;
}

.map-distance__map {
	min-height: 300px;
}

.map-distance__map iframe {
	width: 100%;
	display: block;
	height: 300px;
}
/* end map distance */

/* video */
.video .video-title {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1.5em;
}

.video .video-items .video-el iframe {
	width: 100%;
	max-width: 100%;
	height: 190px;
}
/* end video */

/* expert call */
.expert-call {
	font-size: 16px;
}

.expert-call .expert-call__title {
	font-size: 18px;
	margin-bottom: 1.5em;
	font-weight: 600;
}

.expert-call__items {
	display: flex;
}

.expert-call__item {
	display: flex;
}

.expert-call__info {
	flex-basis: 75%;
}

.expert-call__info-item {
	display: flex;
	flex-direction: column;
}

.expert-call__info-item:not(:last-child) {
	margin-bottom: 1.5em;
}

.expert-call__info-item span {
	margin-top: 0.5em;
}

.expert-call__info-item__number a {
	font-size: 22px;
	font-weight: bold;
	color: #212529;
	text-decoration: none;
}

.expert-call__info-item__number {
	font-size: 14px;
}

.expert-call__info-item__whatsapp a {
	text-decoration: none;
	color: #666;
}

.expert-call_socials {
	display: flex;
	flex-wrap: wrap;
}

.expert-call_social {
	margin-right: 1em;
}

.expert-call_socials svg {
	width: 30px;
}

.expert-call__avatar {
	flex-basis: 25%;
}

.expert-call__avatar img {
	width: 100%;
	border-radius: 6px;
}
/* end expert call */

/* need help */
.need-help__wrapper,
.need-help__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
}

.need-help__header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
}

.need-help__img-wrapper {
	width: 28px;
	height: 28px;
	margin-right: 16px;
}

.need-help__description-wrapper {
	display: flex;
	flex-direction: column;
}

.need-help__title {
	margin-bottom: 5px;
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
	color: #000;
}

.need-help__subtitle {
	font-size: 12px;
	line-height: 16px;
	color: #7e8083;
}

.need-help__content form {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.need-help__input-wrapper {
	width: 100%;
	max-width: 200px;
	margin-right: 12px;
	position: relative;
}

.need-help__form-phone {
	height: 40px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	display: flex;
	align-items: center;
	padding: 0 12px;
}

.need-help__form-phone__placeholder {
	position: absolute;
	padding: 12px;
	color: black;
	border-left: 1px solid transparent;
}

.need-help__button-wrapper {
	width: 100%;
	max-width: 150px;
	height: 40px;
}

.need-help__button {
	box-shadow: none;
	border: none;
	padding: 12px 10px;
	color: white;
	background: #0079bf;
	border-radius: 3px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.15s ease;
}

.need-help__button:hover,
.need-help__button:focus {
	box-shadow: 0 3px 15px #01659f;
}

.need-help__caption {
	color: #7e8083;
	font-weight: 400;
	font-size: 12px;
	line-height: 16.34px;
	padding-top: 25px;
}

.need-help__caption a {
	text-decoration: underline;
	color: #7e8083;
}
/* end need help */

/* gallery */
.gallery-block__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gallery-block__item {
	display: none;
}

.gallery-block__item:nth-child(-n + 8) {
	display: block;
	flex-basis: calc(25% - 20px);
	background-position: center;
	background-size: cover;
	aspect-ratio: 1 / 1;
	margin-bottom: 1.5em;
	border-radius: 6px;
	cursor: pointer;
}
/* end gallery */

/* info block tabs */
.info-block__wrapper {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
}

.info-block__tabs-block {
	display: flex;
	gap: 40px;
}

.info-block__tabs-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 322px;
	position: relative;
}

.info-block__tabs-list-item {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #7e8083;
	cursor: pointer;
}

.info-block__tabs-list-item:hover,
.info-block__tabs-list-item:focus {
	background: #f4f7fa;
}

.info-block__tabs-list-item__active {
	color: #0079bf;
	background: #eff5f9;
}

.info-block__tabs-content {
	width: calc(100% - 362px);
}

.info-block__tabs-content-wrapper {
	height: auto;
	display: none;
}

.info-block__tabs-content-wrapper.info-block__tabs-content-active {
	display: block;
}

.info-block__tabs-hotel-wrapper {
	margin-bottom: 28px;
}

.styles_hotelTopic__dataButton___aylQ {
	width: 100%;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	padding: 12px 30px 12px 16px;
	border-radius: 8px;
	border: 2px solid rgba(0, 121, 191, 0.4);
	background: rgba(0, 121, 191, 0.05);
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 7px;
}

.styles_hotelTopic__header__DxvfN {
	font-size: 20px;
	color: #4a4a4a;
}

.styles_marker__HM6do {
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.styles_hotelTopic__data__p9Gu2 {
	margin-bottom: 22px;
	overflow: hidden;
	transition: max-height 0.2s ease-in-out;
}

.defaultStyle_content__28VV8 {
	color: #4a4a4a;
}

.styles_hotelTopic__description__BBSFY {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0;
	text-align: left;
	color: #4a4a4a;
}

.styles_hotelTopic__topics__Gt1wg {
	display: flex;
	flex-direction: column;
}

.styles_divider__Y57Fp {
	width: 100%;
	min-height: 1px;
	background-color: #d9d9d9;
	margin-top: 12px;
	margin-bottom: 12px;
}

.styles_hotelTopic__attributes__08lXs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 28px;
	color: #4a4a4a;
}

.styles_hotelTopic__attributes__item__LEBb6 {
	width: calc(33.3333333333% - 24px);
	margin-bottom: 12px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
}

.styles_hotelTopic__gallery__JGa9F {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 8px;
	-moz-column-gap: 8px;
	column-gap: 8px;
	margin-bottom: 28px;
}

.styles_hotelTopic__gallery__JGa9F > div {
	height: 180px;
}

.defaultStyle_content__28VV8 a {
	text-decoration: underline;
	color: #1976d2;
	cursor: pointer;
}

.info-block__bottom-text {
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	color: #7e8083;
	max-width: 720px;
	white-space: pre-line;
}
/* end info block tabs */

/* ready to search banner */
.ready-to-search {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ready-to-search__wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.ready-to-search h2 {
	color: white;
	font-size: 26px;
	font-weight: bold;
}

.btn-to-search {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	padding: 16px 32px;
	border: 2px solid #fff;
	border-radius: 4px;
}

.search-tour .btn-to-search {
	padding: 12px 16px;
	font-size: 18px;
}

.btn-to-search:hover,
.btn-to-search:focus {
	color: white;
	text-decoration: none;
}
/* end ready to search */

/* similar hotels */
.similar-hotels__items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.similar-hotels__items.slick-slider {
	padding-bottom: 45px;
}

.similar-hotels__items.slick-slider .slick-slide {
	padding: 0 5px;
}

.similar-hotels__item {
	flex-basis: calc(25% - 10px);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #8080803d;
	color: #4a4a4a;
	margin-bottom: 10px;
}

.similar-hotels__item:hover,
.similar-hotels__item:focus {
	color: #4a4a4a;
}

.similar-hotels__thumb {
	position: relative;
	min-height: 220px;
}

.similar-hotels__labels {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	padding: 10px;
	width: 100%;
}

.similar-hotels__label {
	padding: 10px 14px;
	color: white;
	background: #1cba1c;
	border-radius: 6px;
	font-size: 11px;
}

.similar-hotels__thumb-img {
	min-height: 220px;
	background-position: center;
	background-size: cover;
}

.similar-hotels__name {
	padding: 8px;
	width: 100%;
	font-weight: bold;
	color: white;
	font-size: 16px;
	position: absolute;
	bottom: 0;
}

.similar-hotels__preview {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	position: relative;
	min-height: 100px;
}

.similar-hotels__tags {
	display: flex;
	flex-wrap: wrap;
}

.similar-hotels__tag {
	font-size: 10px;
	background: white;
	padding: 3px 6px;
	color: #4a4a4a;
	border: 1px solid #4a4a4a;
	margin-right: 4px;
	margin-bottom: 4px;
}

.similar-hotels__address,
.similar-hotels__dates {
	margin-top: 0.5em;
	font-weight: bold;
}

.similar-hotels__result-info {
	font-weight: bold;
	margin-top: 1.5em;
	display: flex;
	justify-content: space-between;
}

.similar-hotels__price {
	color: #0079bf;
	font-size: 20px;
	white-space: nowrap;
}

.similar-hotels .slick-arrow {
	position: absolute;
	z-index: 10;
	bottom: 0;
	background: #f1f4f8;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #0079bf;
	cursor: pointer;
	outline: none;
}

.similar-hotels .slick-prev {
	right: 45px;
}

.similar-hotels .slick-next {
	right: 0;
}

.similar-hotels .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 8px;
}

.similar-hotels .slick-dots li {
	margin: 0 6px;
}

.similar-hotels .slick-dots li:not(.slick-active) {
	margin-top: 2px;
}

.similar-hotels .slick-dots li:not(.slick-active) button {
	width: 8px;
	height: 8px;
	background-color: #7e80833b !important;
}
/* end similar hotels */

/* price booking */
.price-booking #packagetour label span {
	display: none;
}

.price-booking #packagetour label {
	font-size: 14px;
}

.price-booking #inner-offers-search-form .btn.btn-secondary {
	margin-top: 25px !important;
	background-color: #fd8c16;
	border-color: #fd8c16;
}

.price-booking #inner-offers-search-form .btn.btn-secondary:hover,
.price-booking #inner-offers-search-form .btn.btn-secondary:focus {
	box-shadow: 0 3px 15px #fd8c16;
}

.price-booking .enough-quota {
	border-radius: 3px;
}

.price-booking #tsoperator-offers__packagetours {
	font-size: 14px;
}

.price-booking #tsoperator-offers__packagetours .btn.btn-secondary {
	padding: 0 2px !important;
	font-size: 14px;
}

.price-booking__content {
	/*display: flex;*/
}

.price-booking .slick-track {
	max-height: 300px;
}

.price-booking
.tsoperator__offers
.ts_offer-card
.card-header
.list-style-none
img {
	max-height: 300px;
}

/*.price-booking .tsoperator__offers .ts_offer-card .card-header .curr-light-gallery {*/
/*    max-width: 300px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    max-height: 300px;*/
/*}*/

/*.price-booking .tsoperator__offers .ts_offer-card .card-header .curr-light-gallery .slick-list {*/
/*    max-width: 300px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    max-height: 300px;*/
/*}*/

section.section-default.price-booking #HD_DESC {
	box-shadow: none;
	padding: 0;
}

section.section-default.price-booking #HD_DESC .TVExtSearchForm.TVTheme1 {
	min-width: unset;
	width: 100%;
}

@media screen and (max-width: 1315px) {
	.price-booking #inner-offers-search-form {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.price-booking #inner-offers-search-form > div {
		flex-basis: calc(25% - 10px);
		margin: 0 !important;
	}
}

@media screen and (max-width: 1000px) {
	.price-booking #inner-offers-search-form {
		flex-direction: column;
	}
	
	.price-booking #inner-offers-search-form > div,
	.price-booking #inner-offers-search-form > * {
		flex-basis: 100%;
		width: 100%;
		padding-bottom: 1em;
	}
}
/* end price booking */

/* modal tour places */
.modal-tour-places .modal-dialog {
	width: 100%;
	max-width: 768px;
}

.modal-tour-places .modal-content {
	padding: 60px 30px 30px 30px;
}

.modal-tour-places .close {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 3px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 20px;
	top: 20px;
	outline: none;
}

.modal-tour-places__thumb {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
}
.modal-tour-places__thumb img {
	width: 100%;
	max-width: 575px;
}

.modal-tour-places__items {
	padding-bottom: 45px;
}

.tour-places__item {
	cursor: pointer;
}

.tour-places__item:hover {
	color: #4a4a4a;
}

.tour-places__item:not(:nth-child(-n + 4)) {
	display: none;
}

.modal-tour-places__preview-title {
	font-size: 28px;
	font-weight: bold;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.modal-tour-places__preview-desc {
	font-size: 16px;
}

.modal-tour-places .slick-arrow {
	bottom: 0;
	outline: none;
}

.modal-tour-places .slick-next {
	right: 0;
}

.modal-tour-places .slick-prev {
	right: 45px;
}

.modal-tour-places__items:not(.slick-slide)
.modal-tour-places__item:not(:nth-child(1)) {
	display: none;
}
/* end modal tour places */

/* tour places */
.tour-places__items {
	display: flex;
	position: relative;
	padding-bottom: 15px;
}

.tour-places__items .slick-arrow {
	bottom: 50%;
	transform: scale(0.85);
	outline: none;
}

.tour-places__items .slick-next {
	right: -25px;
}

.tour-places__items .slick-prev {
	left: -25px;
}

.tour-places .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: -8px;
}

.tour-places .slick-dots li {
	margin: 0 6px;
}

.tour-places .slick-dots li:not(.slick-active) {
	margin-top: 2px;
}

.tour-places .slick-dots li:not(.slick-active) button {
	width: 8px;
	height: 8px;
	background-color: #7e80833b !important;
}

.tour-places__items .slick-track .slick-slide {
	padding: 0 10px;
}

.tour-places__item {
	flex-basis: calc(25% - 20px);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #8080803d;
	color: #4a4a4a;
}

.tour-places__thumb {
	height: 85px;
	background-size: cover;
	background-position: center;
}

.tour-places__desc {
	padding: 10px 10px 25px 10px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}
/* end tour places */

/* tour program */
.tour-program__title {
	position: relative;
	padding-bottom: 20px;
}

.tour-program__download {
	position: absolute;
	top: 0;
	right: 0;
}

.btn-tour-program {
	font-size: 14px;
	padding: 5px 15px;
	background: transparent;
	border-radius: 4px;
	color: #0079bf;
	border: 2px solid #0079bf;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-tour-program .icon {
	font-size: 21px;
	margin-right: 10px;
}

.tour-program__spoilers {
	display: flex;
	flex-direction: column;
}

.tour-program__spoiler {
	padding: 30px 0;
	border-top: 1px solid #8080803d;
	cursor: pointer;
}

.tour-program__spoiler-header {
	position: relative;
	color: #0079bf;
	font-size: 20px;
	padding-right: 60px;
	display: flex;
	align-items: center;
}

.tour-program__spoiler-header b {
	white-space: pre;
}

.tour-program__spoiler-header .spoiler-title {
	padding-left: 2em;
	font-weight: bold;
	font-size: 21px;
}

.tour-program__spoiler-header .spoiler-arrow {
	position: absolute;
	right: 0;
	top: calc(50% - 12px);
	transition: transform 0.3s ease;
}

.tour-program__spoiler-open .tour-program__spoiler-header .spoiler-arrow {
	transform: rotate(-180deg);
}

.tour-program__spoiler-content {
	padding: 30px 0;
}

.tour-program__spoiler-content p {
	margin: 0.9em 0;
}
/* end tour program */

/* group label */
.group-label {
	margin-bottom: 1em;
	color: black;
	font-size: 13px;
	font-weight: bold;
}

.group-label .desc {
	margin-left: 0.4em;
}
/* end group label */

/* tour chars */
.tour-chars__items {
	display: flex;
	flex-direction: column;
}

.tour-chars__item {
	display: flex;
	font-size: 16px;
}

.tour-chars__item:not(:last-child) {
	margin-bottom: 10px;
}

.tour-chars__item .left,
.tour-chars__item .right {
	display: flex;
	align-items: center;
}

.tour-chars__item .left {
	flex-basis: 65%;
}

.tour-chars__item .right {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold;
}

.tour-chars__item .icon {
	color: #0079bf;
	font-size: 28px;
	margin-right: 10px;
}

.tour-chars__item .text .tooltip-icon {
	margin: 0 7px;
}
/* end tour chars */

/* hotels block */
.hotels-block__title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1em;
	text-align: center;
}

.hotels-block__title .tooltip-icon {
	margin-left: 5px;
}

.hotels-block__items {
	display: flex;
	padding: 0 20px 20px 20px;
}

.hotels-block__items .slick-arrow {
	bottom: 50%;
	outline: none;
}

.hotels-block__items .slick-next {
	right: -12px;
}

.hotels-block__items .slick-prev {
	left: -12px;
}

.hotels-block__items .slick-slide {
	padding: 0 5px;
}

.hotels-block__item {
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #8080803d;
}

.hotels-block__items:not(.slick-slider) .hotels-block__item {
	display: none;
}

.hotels-block__items:not(.slick-slider) .hotels-block__item:nth-child(1) {
	display: unset;
	width: 100%;
}

.hotels-block__thumb {
	background-position: center;
	background-size: cover;
	height: 100px;
}

.hotels-block__preview {
	padding: 15px;
}

.hotels-block__name {
	font-size: 18px;
	font-weight: bold;
}

.hotels-block__item .stars-items .stars-item {
	margin-left: -2px;
	letter-spacing: 0;
	font-size: 14px;
}

.hotels-block__address {
	margin-top: 0.3em;
}

.hotels-block .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: -3px;
}

.hotels-block .slick-dots li {
	margin: 0 6px;
}

.hotels-block .slick-dots li:not(.slick-active) {
	margin-top: 2px;
}

.hotels-block .slick-dots li:not(.slick-active) button {
	width: 8px;
	height: 8px;
	background-color: #7e80833b !important;
}
/* end hotels block */

/* tour including */
.tour-including__block-title {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 1em;
	color: #343a40;
}

.tour-including__blocks {
	display: flex;
}

.tour-including__block.left {
	border-right: 2px solid #8080803d;
}

.tour-including__block.right {
	padding-left: 40px;
}

.tour-including__block {
	flex-basis: 50%;
}

.tour-including__block.left ul li:before {
	content: "";
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	background-image: url("./img/li-check.svg");
	background-size: contain;
	background-position: center;
	left: 8px;
	top: 1px;
}

.tour-including__block.right ul li:before {
	content: "";
	width: 8px;
	height: 2px;
	left: 8px;
	top: 8px;
	display: block;
	position: absolute;
	background: orange;
	border-radius: 2px;
}

.tour-including__block ul li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 1em;
	font-weight: 500;
}
/* end tour including */

/* callback fullwidth form (ext) */
.styles_layout__forms_wrapper__9Ccvg {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #eff5f9;
	margin-bottom: 20px;
}

.styles_layout__forms_wrapper__forms__Lc4rK {
	max-width: 1232px;
	width: 100%;
}

.styles_container__help__YrBhx {
	background-color: #fff;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
}

.styles_help__jGMyO {
	display: flex;
	flex-direction: column;
	padding: 40px 0 0 40px;
}

.styles_help__imageMobile__d4Sna {
	display: none;
}

.styles_help__title__RB3uY {
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: #000;
	margin-bottom: 16px;
}

.styles_help__text__E8RZj {
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	color: #7e8083;
	margin-bottom: 24px;
}

.styles_form__V0_o4 {
	display: flex;
	width: 510px;
	margin-bottom: 24px;
}

.styles_form__input__HJB05 {
	display: inline;
	width: 240px;
	margin-right: 24px;
	position: relative;
}

.styles_form__input__item__3y_kM {
	padding: 11px 25px;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	font-size: 18px;
	line-height: 25px;
	background: #fff;
	color: #4a4a4a;
	width: 100%;
}

.styles_form__input__item__first_letter__TM9dY {
	color: #4a4a4a;
	position: absolute;
	left: 26px;
	top: 12px;
	font-size: 18px;
	line-height: 25px;
}

.styles_form__button__vFguf {
	height: 48px;
	width: 221px;
	min-height: 48px;
}

.styles_blue-shadow__MVeVI {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 14px;
	width: inherit;
	height: inherit;
	background-color: #0079bf;
	color: #fff;
	border-radius: 4px;
	transition: background-color 0.2s;
	border: none;
	cursor: pointer;
}

.styles_blue-shadow__MVeVI:hover {
	box-shadow: 0 3px 15px #489ed0;
}

.styles_help__agreement_text__XrvyB {
	max-height: 22px;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #7e8083;
	display: flex;
	align-items: center;
}

.styles_help__jGMyO .styles_checkbox__EpdjF {
	width: 22px;
	height: 22px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.styles_help__jGMyO .styles_checkbox__input__i8fGz {
	display: none;
}

.styles_help__jGMyO .styles_checkbox__span__m7T4p {
	width: 22px;
	height: 22px;
	background-image: url(https://intourist.ru/info/excursions/_next/static/media/checkbox_unchecked.b1957ff6.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	cursor: pointer;
}

.styles_help__caption__SOYxa {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #7e8083;
}

.styles_help__caption__link__Nlk4q {
	text-decoration: underline;
	cursor: pointer;
}

.styles_help__image__no0bZ {
	display: flex;
}

.styles_help__jGMyO .styles_checkbox__input__i8fGz:checked + span {
	width: 22px;
	height: 22px;
	background-image: url(https://intourist.ru/info/excursions/_next/static/media/checkbox_checked.291fcb2b.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	margin-left: 1px;
}

@media screen and (max-width: 767px) {
	.styles_help__jGMyO {
		align-items: center;
		padding: 16px;
	}
	
	.styles_help__imageMobile__d4Sna {
		display: block;
	}
	
	.styles_help__title__RB3uY {
		font-size: 24px;
		line-height: 27px;
		text-align: center;
	}
	
	.styles_help__text__E8RZj {
		padding: 0 16px;
		font-size: 20px;
		line-height: 120%;
		text-align: center;
	}
	
	.styles_form__V0_o4 {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	
	.styles_form__input__HJB05 {
		margin-right: 0;
		margin-bottom: 24px;
		width: 100%;
	}
	
	.styles_form__input__item__3y_kM {
		font-size: 20px;
	}
	
	.styles_form__input__item__first_letter__TM9dY {
		font-size: 20px;
	}
	
	.styles_form__button__vFguf {
		width: 100%;
	}
	
	.styles_help__agreement_text__XrvyB {
		margin-left: 0;
		text-align: center;
		max-height: none;
		align-items: start;
		width: 100%;
	}
	
	.styles_help__caption__SOYxa {
		font-size: 12px;
		line-height: 16px;
		text-align: start;
	}
	
	.styles_help__image__no0bZ {
		display: none;
	}
	
	.styles_form__input__HJB05 {
		margin-right: 0;
		margin-bottom: 24px;
		width: 100%;
	}
}
/* end callback fullwidth form (ext) */

@media screen and (max-width: 1340px) {
	.need-help__img-wrapper {
		display: none;
	}
	
	.need-help__header {
		width: 100%;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	
	.need-help__subtitle {
		font-size: 16px;
		margin-top: 0.5em;
	}
	
	.need-help__content form {
		flex-direction: column;
		align-items: center;
	}
	
	.need-help__input-wrapper {
		margin: 0 0 0.5em;
		max-width: unset;
	}
	
	.need-help__form-phone {
		width: 100%;
	}
	
	.need-help__button-wrapper {
		max-width: unset;
	}
	
	.need-help__button {
		width: 100%;
	}
	
	.need-help__caption {
		text-align: center;
	}
}

@media screen and (max-width: 1200px) {
	.expert-call__info-item__number a {
		font-size: 19px;
	}
	
	.tour-chars__item {
		font-size: 14px;
	}
}

@media screen and (max-width: 1100px) {
	.map-distance__item {
		flex-basis: 100%;
	}
	
	.similar-hotels__item {
		flex-basis: calc(33% - 10px);
	}
}

@media screen and (max-width: 1000px) {
	.hotel-chars__item {
		flex-basis: calc(100% / 6);
		width: calc(100% / 6 - 40px);
	}
	
	.tour-chars__item {
		font-size: 12px;
	}
	
	.tour-chars__item .icon {
		font-size: 19px;
	}
	
	.tour-chars__item .left .text {
		display: flex;
	}
}

@media screen and (max-width: 767px) {
	.scroll-tabs {
		display: none;
	}
	
	.map-distance__item {
		flex-basis: 50%;
	}
	
	.gallery-block__item:nth-child(7),
	.gallery-block__item:nth-child(8) {
		display: none;
	}
	
	.gallery-block__item:nth-child(-n + 6) {
		flex-basis: calc(33% - 10px);
	}
	
	.similar-hotels__item {
		flex-basis: calc(50% - 10px);
	}
	
	.info-block__tabs-block {
		flex-direction: column;
	}
	
	.info-block__tabs-list {
		flex-direction: row;
		width: 100%;
	}
	
	.info-block__tabs-list__wrapper {
		display: flex;
		overflow: auto;
		width: 100%;
	}
	
	.info-block__tabs-list-item {
		white-space: nowrap;
	}
	
	.info-block__tabs-content {
		width: 100%;
	}
	
	.tour-including__blocks {
		flex-direction: column;
	}
	
	.tour-including__block {
		flex-basis: 100%;
	}
	
	.tour-including__block.left {
		border-right: none;
	}
	
	.tour-including__block.right {
		margin-top: 1em;
		padding-left: 0;
	}
}

@media screen and (max-width: 575px) {
	.hotel-chars__item {
		flex-basis: calc(100% / 4);
		width: calc(100% / 4 - 40px);
	}
	
	.gallery-block__item:nth-child(5),
	.gallery-block__item:nth-child(6) {
		display: none;
	}
	
	.gallery-block__item:nth-child(-n + 4) {
		flex-basis: calc(50% - 10px);
	}
	
	.similar-hotels__item {
		flex-basis: 100%;
	}
	
	.ready-to-search h2 {
		font-size: 18px;
	}
	
	.search-tour .btn-to-search {
		font-size: 13px;
		padding: 5px 10px;
	}
	
	.info-block__tabs-list-item {
		font-size: 12px;
		padding: 6px 12px;
	}
	
	.tour-program__download {
		position: relative;
	}
	
	.tour-program__spoiler-header .spoiler-title {
		font-size: 17px;
	}
}

@media screen and (max-width: 380px) {
	.hotel-chars__item {
		flex-basis: calc(100% / 3);
		width: calc(100% / 3 - 40px);
	}
}

.footer_requisites ul {
	width: max-content;
	margin-left: auto;
}

@media screen and (max-width: 767px) {
	.footer_requisites ul {
		margin: 0 auto;
		margin-top: 10px;
	}
}

.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 100%;
	margin-bottom: 20px;
	transform: translateX(-50%);
	max-width: 600px;
	background-color: #fff;
	border-top: 1px solid #ccc;
	padding: 15px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	font-size: 14px;
}

.cookie-notice a {
	color: #725aff;
	text-decoration: underline;
}

.cookie-buttons {
	margin-top: 10px;
}

.cookie-buttons .btn {
	margin-right: 10px;
}


.online-chat-root-TalkMe{
	position: relative !important;
	z-index: 9998 !important;
}

/*style25*/





.cp-btn {
	border-radius: 500px;
	background: rgb(0, 182, 170);
	padding: 10px 30px;
	color: rgb(255, 255, 255);
	font-family: Manrope;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0%;
	text-align: center;
}
.cp-btn:hover{
	background: rgb(68, 81, 221);
	color: rgb(255, 255, 255);
}

.tab-pane .cp-btn {
	margin-top: 20px;
	display: inline-block;
}

.swiper-recomendation .swiper.swiper-horizontal {
	margin-right: -30px;
}

.main-header {
	background: none;
	box-shadow: none;
}

.navbar-brand img {
	height: 40px;
}
.phone-box {
	padding: 5px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition:0.3s;
}
.phone-box a {
	color: #000;
	text-decoration: none;
}


header.main-header .navbar {
	background: #fff;
	border-radius: 390px;
	padding: 8px 20px;
}

.main-header  .navbar-nav .nav-link {
	color: rgb(0, 0, 0, 0.3);
	font-family: Manrope;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0%;
	text-align: center;
	padding: 0 10px;
}			

.main-header  .navbar-nav .nav-item.active .nav-link, .main-header  .navbar-nav .nav-item:hover .nav-link {
	color: rgb(100, 120, 255);
}
.main-header  a.navbar-brand img {
	max-height: 28px;
	max-width: 132px;
}
a.soc-header-item {
	text-align: center;
	margin-right:5px;
}
a.soc-header-item i {
	display: inline-block;
	height: 21px;
	width: 21px;
	transition:0.3s;
	background-size:cover;
}
a.soc-header-item:hover i {
	transform: scale(1.1);
}

a.soc-header-item .telegram {
	background-image: url(/local/templates/travelsoft/img/tg.svg);
}

a.soc-header-item .whatsapp {
	background-image: url(/local/templates/travelsoft/img/wa.svg);
}
.phone-box {
	box-sizing: border-box;
	border: 1px solid rgb(100, 120, 255, 0.32);
	border-radius: 22px;
	background: none;
	width: 164px;
	height: 34px;
	margin-left: 20px;
}
.phone-box a {
	color: rgb(0, 0, 0, 0.5);
	font-family: Manrope;
	font-size: 14px;
	font-weight: 300;
	line-height: 110%;
	text-align: left;
}
.icon-btn {
	background-color: #4d6dfb;
	color: white;
	border-radius: 50%;
	padding: 10px;
	width: 34px;
	height: 34px;
	transition:0.3s;
}
a.icon-btn.telephone {
	left: -25px;
}
.icon-btn.person-cp {
	background: rgb(0, 182, 170);
}

a.icon-btn:hover {
	transform: scale(1.1);
}

a.icon-btn i {
	width: 34px;
	height: 34px;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: 0px 0px;
	background-size: 14px;
}
i.telephone-ico {
	background: url(/local/templates/travelsoft/img/call.svg);
}
i.person-cp-ico{
	background: url(/local/templates/travelsoft/img/person-fill.svg);
}
.main-header .mob-head-icon{
	display:none;
	
}

a.btn-cp.mobilehbtn {
	display: none;
}
nav.navbar.navbar-expand-lg {
	width: 100%;
}


footer h5 {
    color: rgb(67, 81, 221);
    font-family: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0%;
    text-align: left;
}
footer li a {
    color: rgb(0, 0, 0,0.6);
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}
footer li{
	margin-bottom:10px;
	color: rgb(0, 0, 0,0.6);
	font-family: Manrope;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
}
footer  p.text-muted.small.mt-3 {
    color: rgb(0, 0, 0);
    font-family: Manrope;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0%;
    text-align: left;
}
footer .soc-footer a {
    background: rgb(228, 231, 253);
    width: 40px;
    height: 40px;
	border-radius:40px;
	margin-right:10px;
}
footer .soc-footer {
    margin-top: 50px;
}
.bottomfooter a{
	color: rgb(0, 0, 0);
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-decoration-line: underline;
}
.yanmap .col-12 > div {
	border-radius: 30px;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Manrope;
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
	letter-spacing: 0%;
	text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}	
h3 span{
	opacity: 0.4;
}
img {
    max-width: 100%;
}


.modal-header {
    text-align: center;
    display: inline-block !important;
	border: none !important;
}
.modal-title {
    margin-bottom: 0;
    color: rgb(26, 25, 30);
    font-family: Manrope;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -1%;
    text-align: center;
}
.modal-body {
    color: rgb(26, 25, 30);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
	border: none;
}
.modal-footer {
    border: none !important;
    text-align: center;
    display: inline-block;
}
.modal button.btn.btn-secondary, .ctmodal .btn {
    border-radius: 150px;
    background: rgb(100, 120, 255);
	width: 100%;
    padding: 23px;
}

.modal button.btn.btn-secondary:hover, .ctmodal .btn:hover {
	background: rgb(0, 182, 170);
}
.modal-header .close {
    position: absolute;
    top: 25px;
    right: 25px; 
}

.ctmodal  .modal-title {
    color: rgb(26, 25, 30);
    font-family: Manrope;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
}
.ctmodal input {
    box-sizing: border-box;
    border: 1px solid rgba(26, 25, 30, 0.1);
    border-radius: 150px;
	padding:16px;
}
.ctmodal textarea {
    box-sizing: border-box;
    border: 1px solid rgba(26, 25, 30, 0.1);
    border-radius: 30px;
	padding:16px;
min-height: 132px;
max-height: 132px;
}
.ctmodal select {
    box-sizing: border-box;
border: 1px solid rgba(26, 25, 30, 0.1);
border-radius: 150px;
	padding:16px;
	    width: 100%;
}
.ctmodal label.form-label {
    color: rgb(26, 25, 30);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    width: 100%;
	margin-bottom:10px;
}
.ctmodal label.form-check-label {
    font-family: Manrope;
    font-size: 12px;
    font-weight: 300;
    line-height: 120%;
    text-align: left;
}
.ctmodal button.close {
    position: absolute;
    right: 25px;
    display: inline-block;
    width: auto;
    top: 25px;
}
.ctmodal .select2-container {
    width: 100% !important;
	    text-align: left;
}
.ctmodal .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(26, 25, 30, 0.1);
    border-radius: 30px;
    padding: 16px;
    height: 64px;
	    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.main-header.otherpage {
    background: #4351DD;
}
header.main-header.otherpage .container {
    background: none;
    border-radius: 0px;
    padding: 8px 15px;
}
.main-header.otherpage .navbar-nav .nav-link {
    color: rgb(255, 255, 255, 0.3);
}
.main-header.otherpage .navbar-nav .nav-item.active .nav-link, .main-header.otherpage .navbar-nav .nav-item:hover .nav-link {
    color: #FFFFFF;
}
.main-header.otherpage a.soc-header-item .telegram {
    background-image: url(/local/templates/travelsoft/img/tg-w.svg);
}
.main-header.otherpage a.soc-header-item .whatsapp {
    background-image: url(/local/templates/travelsoft/img/wa-w.svg);
}
.main-header.otherpage .phone-box {
    display: none;
}
.main-header.otherpage i.person-cp-ico {
    background-image: url(/local/templates/travelsoft/img/person-fill-g.svg);
}
.main-header.otherpage .icon-btn.person-cp {
    background: rgb(255 255 255);
}
.main-header.otherpage a.icon-btn.telephone {
    left: -0px;
    margin-right: 10px;
    margin-left: 15px;
}
button.close {
    background: url(./img/closed.svg);
    width: 20px !important;
    height: 20px;
    background-position: 50% 50%;
    background-size: cover;
	right: 25px;
    top: 25px;
}

button.close span {
    display:none;
}
.navbar-nav .dropdown-menu {
    border-radius: 15px;
}
.dropdown-item {
    color: rgb(0, 0, 0);
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}
.phone-box:hover {
    border: 1px solid rgba(100, 120, 255, 0.32);
    border-radius: 22px;
    background: rgba(100, 120, 255, 0.32);
}
.phone-box:hover a {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1025px) {
	.main-header {
		padding: 10px 0px;
	}
	.phone-box {
		display: none;
	}
	a.icon-btn.telephone {
		left: 0;
		margin-right: 10px;
		margin-left: 20px;
	}
	
	
}

@media (max-width: 992px) {
	.phone-box {
		flex-direction: column;
		align-items: flex-start;
	}
	
	
	.main-header {
		padding: 0;
	}
	.main-header nav.navbar.navbar-expand-lg {
		padding: 10px 15px 10px 15px;
	}
	.main-header button.navbar-toggler {
		background: rgb(100, 120, 255);
		width: 26px;
		height: 26px;
		border-radius: 26px;
		display: inline-block;
		text-align: center;
		padding: 0;
		position: relative;
	}
	.main-header span.navbar-toggler-icon {
		border: 0.8px solid rgb(255, 255, 255);
		height: 0;
		width: 10.83px;
		position: absolute;
		left: 7px;
	}
	
	
	
	/* Бургер (по умолчанию) */
	.main-header .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1) {
		transform: none;
		top: 8px;
		transition:0.3s;
	}
	
	.main-header .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
		opacity: 1;
		top: 12px;
	}
	
	.main-header .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
		transform: none;
		top: 16px;
		transition:0.3s;
	}
	
	/* Крест (когда кнопка не .collapsed) */
	.main-header .navbar-toggler .navbar-toggler-icon:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
		transition:0.3s;
	}
	
	.main-header .navbar-toggler .navbar-toggler-icon:nth-child(2) {
		opacity: 0;
		transition:0.1s;
	}
	
	.main-header .navbar-toggler .navbar-toggler-icon:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
		transition:0.3s;
	}
	
	
	
	.main-header nav.navbar.navbar-expand-lg {
		width: 100%;
	}
	.main-header a.navbar-brand img {
		max-height: 28px;
		max-width: 113px;
	}
	.main-header .mob-head-icon{
		display: flex;
		text-align: right;
		justify-content: right;
		width: 75px;
	}
	.main-header .mob-head-icon .icon-btn {
		border-radius: 50%;
		padding: 8px;
		display: flex !important;
		width: 25px !important;
		height: 25px !important;
	}
	
	.main-header .mob-head-icon a.icon-btn i {
		width: 25px;
		height: 25px;
		background-size: 11px;
		background-position: -1px -1px;
	}
	
	.main-header .mob-head-icon a.icon-btn.telephone {
		left: 0px;
		margin-right:8px;
	}
	.swiper-recomendation {
		position: relative; 
	}
	
	.main-header .navbar-collapse {
		position: absolute;
		top: -20px;
		width: 110%;
		z-index: -1;
		background: #fff;
		left: -13px;
		padding: 140px 0 0 0;
	}
	
	.main-header.otherpage .navbar-collapse {
		background: #4351dd;
		left: -20px;
	}
	
	.main-header .navbar-nav .nav-link {
		margin-bottom: 30px;
	}
	
	.main-header .navbar-collapse .soc-header, .main-header  .icon-btn, .main-header  .phone-box {
		display: none !important;
	}
	header.main-header .navbar  {
		padding: 8px 20px;
		border-radius: 390px;
	}
	
	a.btn-cp.mobilehbtn {
		display: inline-block;
		color: rgb(255, 255, 255);
		font-family: Manrope;
		font-size: 14px;
		font-weight: 700;
		line-height: 120%;
		letter-spacing: 0%;
		text-align: center;
		border-radius: 390px;
		background: rgb(0, 182, 170);
		padding:24px 84px;
	}
	.main-header .navbar-collapse {
		text-align: center;
	}
	.main-header .navbar-nav .nav-link {
		font-size: 14px;
		padding: 0 10px;
	}
	
}


@media (max-width: 768px) {
	
	h3{
		font-size: 26px;
		text-align: left;
		line-height: 120%;
	}

	
}