:root{
	--danger: #D00606;
	--success: #06BF5B;
}
body{
	font-size: 16px;
	line-height: 24px;
	min-height: 100vh;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background-color: #F5F5F5;
}
body.modal-open:after{
	content: "";
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.2);
	z-index: 1;
}
a{
	color: #000;
	transition: all .3s;
}
a:hover{
	color: #6557B0;
}
.form-control{
	width: 100%;
	background-color: #fff;
	border: 1px solid #6557B0;
	padding: 10px 20px;
	border-radius: 10px;
	max-width: 100%;
	font-size: 16px;
}
input.form-control{
	height: 46px;
}
.form-control::placeholder {
	color: #CACACA;
	opacity: 1;
}
.form-control:-ms-input-placeholder {
	color: #CACACA;
}
.form-control::-ms-input-placeholder {
	color: #CACACA;
}
.sh{
	background-color: #fff;
	padding: 10px 0;
}
.sh .search{
	width: 300px;
}
.form-group{
	position: relative;
}
.form-group .help-block{
	position: absolute;
	color: var(--danger);
	font-size: 11px;
	bottom: -14px;
	white-space: nowrap;
	height: 12px;
	line-height: 1;
	margin: auto;
	left: 20px;
}
.sh .search-submit{
	position: absolute;
	background-image: url(/images/search.svg);
	background-color: #fff;
	width: 48px;
	height: 18px;
	right: 1px;
	top: 0;
	bottom: 0;
	margin: auto;
	padding-right: 20px;
	background-repeat: no-repeat;
	padding-left: 10px;
	background-position: 10px center;
	height: 30px;
}
.sh .container{
	column-gap: 40px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.sh nav{
	flex: 1;
}
.sh nav ul{
	display: flex;
	justify-content: space-between;
}
.sh nav ul li.dropdown{
	position: relative;
}
.sh nav ul li.dropdown > a:after{
	content: "";
	width: 11px;
	height: 9px;
	margin-left: 3px;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/images/dropdown-triangle.svg');
	background-size: contain;
	background-position: center;
}
.sh nav ul li.dropdown ul{
	position: absolute;
	flex-direction: column;
	gap: 15px;
	display: none;
}
.sh nav ul li.dropdown.active ul{
	display: flex;
	white-space: nowrap;
	border: 1px solid #6557B0;
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	z-index: 2;
	top: 150%;
}
.sh nav ul li.dropdown.active ul li{
	display: flex;
	gap: 5px;
	align-items: center;
}
.sh nav ul li.dropdown.active ul li:before{
	content: "";
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border: 2px solid #6557B0;
	border-radius: 50%;
	margin-right: 5px;
}
.sh nav ul li.dropdown.active > a{
	color: #6557B0;
}
.mobile-btns{
	display: none;
}
.h1, .article-detail h1{
	font-weight: 700;
	font-size: 21px;
	line-height: 24px;
	margin-bottom: 15px;
}
.h2, .article-detail h2{
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 15px;
}
.h3, .article-detail h3{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
hr{
	margin: 10px 0;
	width: 100%;
	height: 1px;
	background: rgb(222 215 255 / 50%);
}
.panel{
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}
.sh + *{
	margin-top: 40px;
}
.main-regions .item{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}
.main-regions .item img{
	display: block;
	aspect-ratio: 615 / 280;
	height: auto;
}
.main-regions .item span{
	position: absolute;
	padding: 30px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	font-size: 26px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	transition: background-color .3s;
	border-radius: 10px;
}
.main-regions .item:hover span{
	background-color: rgba(0,0,0,.7);
}
.row{
	row-gap: 30px;
}
.star{
	background-image: url('/images/star_0.svg');
	background-size: contain;
	background-position: center;
	width: 16px;
	height: 16px;
}
@media (min-width: 576px){
	.star.big{
		width: 20px;
		height: 20px;
	}
}
.star.active,
.stars.active .star.hover{
	background-image: url('/images/star_1.svg');
}
.stars.active .star{
	cursor: pointer;
}
.main-regions{
	margin-bottom: 30px;
}
.d-table .item{
	display: flex;
	column-gap: 10px;
	padding: 5px 10px;
	justify-content: space-between;
	width: 100%;
	border-radius: 5px;
}
.d-table .item:nth-child(odd){
	background-color: rgba(101, 87, 176, 0.05);
}
.d-table .item__rating{
	width: 50px;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.d-table .item__reviews-count{
	color: #898A8D;
	min-width: 100px;
	width: 15%;
}
.d-table .item__latest-review-date{
	color: #898A8D;
	font-size: 14px;
	min-width: 202px;
	width: 25%;
}
.d-table .item__more{
	min-width: 75px;
	width: 15%;
	font-size: 14px;
}
.d-table .item__name{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 700;
	flex: 1;
}
.swiper{
	--swiper-theme-color: #6557B0;
	--swiper-pagination-bullet-size: 14px;
	/*	--swiper-pagination-bullet-inactive-color: #D9D9D9;*/
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bottom: 0;
}
.swiper-pagination{
	display: flex;
	justify-content: center;
}
.swiper-pagination-bullet{
	height: auto;
	aspect-ratio: 1;
}
.swiper-wrapper{
	margin-bottom: 44px;
}
.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--swiper-theme-color)
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 2px;
	stroke: var(--swiper-theme-color);
	fill: none;
	stroke-dashoffset: calc(125.6px*(1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg)
}
.btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	border-radius: 5px;
	border: 1px solid;
	text-align: center;
	padding: 10px 15px;
}
.btn-default{
	border-color: #6557B0;
	color: #000;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active{
	background-color: #6557B0;
	color: #fff;
}
.btn-tag{
	display: inline-block;
	color: #000;
	font-weight: 500;
	font-size: 1rem;
	padding: 6px 10px;
	border-radius: 5px;
	background-color: rgba(222, 215, 255, 0.2);
}
a.btn-tag:hover,
.btn-tag.active,
li.active .btn-tag{
	color: #fff;
	background-color: #6557B0;
}
.di{
	width: 292px !important;
}
.di__image{
	position: relative;
	width: 292px;
	height: 202px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
}
.di__image img{
	display: block;
	aspect-ratio: 300 / 208;
	height: auto;
	width: 100%;
	object-fit: cover;	
}
.di__overlay-data{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	padding: 20px;
}
.di__overlay-data .top{
	display: flex;
	justify-content: space-between;
}
.di__overlay-data .top .left{
	display: flex;
	align-items: center;
	color: #fff;
	column-gap: 5px;
	font-weight: 500;
	font-size: 1rem;
}
.di__overlay-data .top .right{
	display: flex;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	column-gap: 5px;
}
.indicator{
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
.indicator-success{
	background-color: var(--success);
}
.indicator-danger{
	background-color: var(--danger);
}
.di__name{
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.di__info{
	background: #fff;
	padding-bottom: 20px;
	border-radius: 0 0 10px 10px;
}
.di__info ul li{
	padding: 10px;
	background-color: #fff;
	font-size: 14px;
	color: #898A8D;
	display: flex;
	justify-content: space-between;
}
.di__info ul li:nth-child(odd){
	background-color: rgba(231, 235, 245, 0.2);
}
.di__info ul li a{
	color: #6557B0;
}
.di__info ul li a:hover{
	text-decoration: underline;
	text-underline-offset: 3px;
}
.di .r-c{
	color: #4E4E4E;
}
.di__info > .btn{
	display: block;
	margin: 0 auto;
	width: calc(100% - 20px);
	margin-top: 20px;
}
.swiper + .swiper{
	margin-top: 30px;
}
.swiper-pagination-lock + .autoplay-progress{
	display: none;
}
.latest-reviews:not(.panel > .latest-reviews),
.latest-articles:not(.panel > .latest-articles){
	margin-top: 30px;
}
.rig{
	background: rgb(222 215 255 / 20%);
	font-size: 14px;
	padding: 10px;
	border-radius: 10px;
}
.rig__header{
	display: flex;
	column-gap: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #E7EBF5;
}
.rig__username{
	font-size: 16px;
}
.rig__header-text{
	display: flex;
	flex-direction: column;
}
.rig__content{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #E7EBF5;
}
.rig__content > *:first-child{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}
.rig__avatar{
	border-radius: 50%;
}
.rig time{
	color: #898A8D;
}
.rig__footer{
	display: flex;
	justify-content: space-between;
}
.rig__footer .left{
	color: #898A8D;
}
.rig__footer .left a{
	font-weight: 700;
}
.rig__footer .right{
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}
.sf{
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, .16);
	background: #fff;
	padding: 20px 0;
	margin-top: 90px;
}
.sf__copy{
	font-size: 12px;
	line-height: 16px;
	color: #898A8D;
	padding-right: 25px;
	padding-left: 60px;
}
.sf > .container > .row{
	align-items: center;
}
.sf li{
	margin-bottom: 10px;
}
.sf ul{
	margin-bottom: -10px;
}
.sf nav{
	row-gap: 10px;
}
.wr{
	position: sticky;
	top: 30px;
}
.wr__list{
	margin: 0 -10px;
}
.wr__item{
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
}
.wr__item:hover{
	box-shadow: 0 0 16px 0 rgb(101 87 176 / 15%);
}
.wr__item-logo{
	flex-shrink: 0;
	background-color: #eeebff;
	display: block;
	width: 48px;
	border-radius: 5px;
	overflow: hidden;
	aspect-ratio: 1;
}
.wr__item-body{
	display: flex;
	flex-direction: column;
	gap: 0px;
	overflow: hidden;
}
.wr__item-name{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wr__item-rate{
	display: flex;
	align-items: center;
	gap: 10px;
}
.wr__item-rating{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}
.wr__item-rcount{
	font-size: 14px;
	color: #898A8D;
}
.wr__title{
	text-align: center;
}
.wr .row{
	row-gap: 0;
}
.wr hr.col-12{
	margin: 10px 15px;
	width: calc(100% - 30px) !important;
}
.city-list nav ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.city-list .panel nav ul li{
	flex: 1;
	white-space: nowrap;
}
.city-list{
	margin-bottom: 30px;
}
.city-list .panel{
	margin-bottom: 0px;
}
.city-list .btn-tag{
	width: 100%;
	text-align: center;
}
.breadcrumbs{
	flex-wrap: wrap;
	margin-top: -20px;
	margin-bottom: -20px;
	font-size: 12px;
	display: flex;
	column-gap: 10px;
}
.breadcrumbs a:not(:hover),
.breadcrumbs li{
	color: #898A8D;
}
.breadcrumbs li:after{
	content: "/";
	padding-left: 10px;
}
.breadcrumbs li:last-child:after{
	content: "";
	display: none;
}
.icon-map-marker{
	flex-shrink: 0;
	display: inline-block;
	width: 12px;
	height: 16px;
	background-image: url('/images/map-marker.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.icon-phone{
	flex-shrink: 0;
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('/images/phone.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.text-danger{
	color: var(--danger);
}
.text-success{
	color: var(--success);
}
.btn-cancel{
	cursor: pointer;
	display: none;
	width: 26px;
	height: 26px;
	background-image: url('/images/close.svg');
	background-repeat: no-repeat;
	background-position: center;
	border-style: contain;
}
.map-wrap #map{
	width: 100%;
	height: 100%;
	background-image: url(/images/ya-map-banner.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
}
.pagination{
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}
.pagination li a,
.pagination li span{
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F7F8FA;
	color: #000;
	font-weight: 600;
	min-width: 40px;
	height: 40px;
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
}
.pagination li.disabled{
	cursor: not-allowed;
	opacity: 0.5;
}
.pagination li.active span{
	cursor: not-allowed;
}
.pagination li.active span,
.pagination li a:hover{
	color: #fff;
	background-color: #6557B0;
}
.ai.swiper-slide{
	width: 292px !important;
}
.ai__image{
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 515 / 386;
	object-fit: cover;
}
.ai__figure{
	position: relative;
	position: relative;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}
.ai__figure:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.3);
}
.ai__date{
	position: absolute;
	color: #fff;
	font-size: 14px;
	bottom: 10px;
	right: 10px;
}
.ai__body{
	background: #fff;
	padding: 10px;
	border-radius: 0 0 10px 10px;
}
.ai__title{
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ai__text{
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
	margin-bottom: 20px;
}
.ai__more-link{
	box-shadow: 0px 4px 16px 0px rgba(127, 140, 204, 0.2);
	background-color: #fff;
	height: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.ai__more-link:hover{
	color: #fff;
	background-color: #6557B0;
}
.dib{
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(222, 215, 255, 0.5);
}
.dib__logo{
	background-color: #eeebff;
	display: block;
	aspect-ratio: 115 / 56;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}
.dib__logo img{
	width: 115px;
	height: 100%;
	object-fit: cover;
}
.dib__body-top,
.dib__body-top-inner{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.dib__body-top{
	justify-content: space-between;
}
.dib__name{
	font-weight: 600;
}
.dib__body-top-inner{
	justify-content: flex-end;
}
.dib__address,
.dib__phone{
	font-size: 14px;
	display: flex;
	column-gap: 5px;
	align-items: center;
}
.dib__readmore{
	margin-top: -10px;
	font-size: 14px;
	color: var(--danger) !important;
}
.dib__body{
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}
.dib__review{
	height: 91px;
	padding: 10px 20px;
	background: rgba(222, 215, 255, 0.1);
	border: 1px solid rgba(222, 215, 255, 0.3);
	border-radius: 10px;
}
.dib__review i{
	font-style: italic;
	font-weight: 300;
}
.dib__review > p > a{
	display: block;
}
.dib__review i a{
	color: #6557B0;
	font-style: normal;
	font-weight: 500;
}
.dib__review i a:hover,
.dib__readmore:hover{
	text-decoration: underline;
	text-underline-offset: 3px;
}
.dib__review p{
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.dib__rating{
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	gap: 8px;
}
.dib__rating .star{
	width: 18px;
	height: 18px;
}
.latest-reviews-column{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.icon-arrow-select{
	background-image: url('/images/arrow-select.svg');
	background-repeat: no-repeat;
	width: 12px;
	height: 15px;
	background-size: contain;
}
.regions-sitemap__list > li > div{
	background: rgba(101, 87, 176, 0.05);
	padding: 5px 20px;
	border-radius: 10px;
}
.regions-sitemap__list > li > div > a{
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}
.regions-sitemap__list > li > ul{
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 20px;
}
.regions-sitemap__list > li > ul > li{
	display: flex;
	gap: 25px;
	justify-content: space-between;
}
.regions-sitemap__list > li > ul > li > div{
	flex: 1;
	background-image: url('/images/arrow-select.svg');
	background-repeat: no-repeat;
	background-size: 12px 15px;
	background-position: 0 0;
	padding-left: 17px;
	margin-left: 31px;
}
.regions-sitemap__list > li > ul > li > span{
	font-size: 14px;
	color: rgba(137, 138, 141, 1);
}
.regions-sitemap__d-count{
	width: 115px;
}
.regions-sitemap__l-r-d{
	width: 205px;
}
.d-rating__head{
	display: flex;
	justify-content: space-between;
	color: rgba(137, 138, 141, 1);
	padding-bottom: 20px;
	gap: 20px;
}
.d-rating__item{
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	gap: 20px;
	border-top: 1px solid rgba(222, 215, 255, 0.5);
	align-items: center;
}

.d-rating__head-place,
.d-rating__item-place{
	width: 56px;
	text-align: center;
}
.d-rating__head-rating,
.d-rating__item-rating{
	width: 63px;
}
.d-rating__head-reviews,
.d-rating__item-reviews{
	width: 205px;
}
.d-rating__head-name,
.d-rating__item-fullname{
	width: 250px;
}
.d-rating__head-contacts,
.d-rating__item-contacts {
	flex: 1;
}
.d-rating__item-contacts{
	font-size: 14px;
}
.d-rating__item-place{
	font-weight: 500;
}
.d-rating__item-reviews{
	font-size: 14px;
	display: flex;
	flex-direction: column;
}
.d-rating__item-reviews a{
	font-weight: 500;
}
.d-rating__item-reviews span{
	color: rgba(137, 138, 141, 1);
}
.d-rating__item-rating{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
}
.d-rating__item-rating .star{
	width: 18px;
	height: 18px;
}
.d-rating__item-rating span{
	font-size: 17px;
	font-weight: 700;
}
.d-rating__item-fullname{
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.d-rating__item-name{
	font-weight: 600;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.d-rating__item-logo{
	flex-shrink: 0;
	background: #eeebff;
	border-radius: 5px;
	overflow: hidden;
}
.d-rating-item__inner{
	flex: 1;
	display: flex;
	gap: 20px;
	align-items: center;
}
.d-rating-item__rate{
	display: flex;
	align-items: center;
	gap: 20px;
}
.alert-success{
	color: var(--success);
	margin-bottom: 20px;
}
.alert-danger{
	color: var(--danger);
	margin-bottom: 20px;
}
.autoplay-progress,
.autoplay-progress span{
	display: none;
}
@media (min-width: 768px) and (max-width: 1279px){
	.d-rating{
		zoom: .8;
	}
}
@media (max-width: 1279px){
	.sh .dropdown > a{
		display: none;
	}
	.sh{
		position: fixed;
		left: 0;
		right: 0;
		height: 76px;
		z-index: 4;
		top: 0;
		width: 100%;
	}
	.sh + *{
		margin-top: 92px;
	}
	.sh nav{
		display: none;
		position: fixed;
		background: #fff;
		left: 0;
		left: 0;
		right: 0;
		top: 76px;
		padding: 0 30px 30px 30px;
		z-index: 2;
	}
	.menu-open .sh nav{
		display: block;
	}
	.search-open .sh nav{
		padding-bottom: 0;
	}
	.sh nav ul li.dropdown{
		flex-direction: column;
		align-items: flex-start;
	}
	.sh nav ul li.dropdown ul{
		display: flex;
		position: static;
		margin-top: 7.5px;
	}
	.sh nav ul li.dropdown > a:after{
		display: none;
	}
	.sh nav ul li{
		display: flex;
		gap: 5px;
		align-items: center;
	}
	.sh nav ul li a:before{
		content: "";
		display: inline-block;
		flex-shrink: 0;
		width: 9px;
		height: 9px;
		border: 2px solid #6557B0;
		border-radius: 50%;
		margin-right: 5px;
	}
	.sh nav ul{
		flex-direction: column;
		gap: 15px;
	}
	.sh nav > ul{
		border-top: 1px solid rgb(222 215 255 / 50%);
		margin-top: 10px;
		padding-top: 15px;
	}
	.mobile-btns{
		display: flex;
		gap: 30px;
		align-items: center;
	}
	.btn-burger{
		cursor: pointer;
		width: 30px;
		height: 18px;
		background-image: url('/images/burger.svg');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
	.btn-search{
		cursor: pointer;
		width: 22px;
		height: 22px;
		background-image: url('/images/search-2.svg');
		background-repeat: no-repeat;
		background-position: center;
	}
	.menu-open .mobile-btns .btn-search,
	.menu-open .mobile-btns .btn-burger{
		display: none;
	}
	.menu-open .btn-cancel{
		display: block;
	}
	.search-open .sh nav > ul{
		display: none;
	}
	.search-open .sh nav{
		top: 0;
		bottom: 0;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-radius: 10px;
		aspect-ratio: 1 / 0.2;
		max-width: 95%;
	}
	.sh .search{
		width: 100%;
	}
	.sh .search-open .search{
		min-width: 300px;
		width: 80%;
	}
	.sh nav > ul{
		margin-bottom: 30px;
	}
	.panel{
		padding: 10px;
	}
	.pagination{
		gap: 7px;
	}
	.pagination li a,
	.pagination li span{
		padding-left: 8px;
		padding-right: 8px;
		min-width: 30px;
		height: 30px;
		font-weight: 500;
		font-size: 14px;
	}
	.breadcrumbs{
		margin-top: 0;
	}
	.dib{
		flex-direction: column;
	}
	.dib__logo{
		aspect-ratio: unset;
	}
	.dib__logo img{
		width: 292px;
		height: 202px;
	}
	.dib__body-top, .dib__body-top-inner{
		column-gap: 10px;
		row-gap: 0;
	}
	.dib__phone,
	.dib__rating{
		white-space: nowrap;
	}
}
@media (max-width: 767px){
	.d-table .item{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.d-table .item__name{
		flex: unset;
		width: calc(100% - 60px);
	}
	.item__more{
		display: none;
	}
	.item__reviews-count{
		color: #000;
	}
	.d-table .item__reviews-count,
	.d-table .item__latest-review-date{
		width: auto;
		min-width: 0;
		font-size: 12px;
	}
	.dib__body-top{
		flex-direction: column;
		align-items: flex-start;
	}
	.d-rating-item__inner{
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.d-rating-item__rate{
		flex-direction: row-reverse;
		margin-left: -83px;
	}
	.d-rating__head{
		justify-content: flex-start;
	}
	.d-rating__head > *:not(.d-rating__head-place, .d-rating__head-name){
		display: none;
	}
	.d-rating__head + .d-rating__item{
		padding-top: 0;
		border-top: 0;
	}
	.d-rating__item{
		align-items: flex-start;
	}
	.d-rating__item-place{
		font-size: 24px;
	}
	.d-rating__item-rating{
		flex-direction: column;
		top: -40px;
		column-gap: 0;
		row-gap: 5px;
		position: relative;
		left: 4px;
	}

}
@media (max-width: 641px){
	.regions-sitemap__list > li > ul > li > div{
		margin-left: 0;
	}
	.regions-sitemap__list > li > ul > li{
		flex-direction: column;
		gap: 0;
		padding-left: 30px;
	}
	.regions-sitemap__d-count,
	.regions-sitemap__l-r-d{
		line-height: 1;
		width: 100%;
	}
	.regions-sitemap__list > li > ul{
		gap: 10px;
	}
	.regions-sitemap__list > li > ul > li > span{
		line-height: 19px;
	}
}
@media (max-width: 575px){
	.main-regions .item img {
		max-height: 100px;
		object-fit: cover;
		object-position: center;
	}
	.main-regions .item span{
		font-size: 16px;
		line-height: 24px;
	}
	.city-list nav ul:not(.city-list .panel.active nav ul){
		height: 220px;
		overflow: hidden;
	}
	.city-list .panel{
		margin-bottom: 15px;
	}
	.breadcrumbs{
		font-size: 11px;
		column-gap: 5px;
		line-height: 16px;
	}
	.breadcrumbs li:after{
		content: "/";
		padding-left: 5px;
	}
	.dib__body-top-inner{
		justify-content: flex-start;
	}
	.dib__address{
		width: 100%;
	}
	.dib__review{
		height: auto;
	}
	.dib__review p{
		-webkit-line-clamp: 6;
	}
	.dib{
		gap: 10px;
	}
	.dib__name{
		display: flex;
		gap: 20px;
	}
	.dib__body-top{
		row-gap: 10px;
	}
}