* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Source Sans 3', sans-serif;
	color: #2C1162;
	font-size: 17px;
	line-height: 20px;
	font-weight: normal;
	background: #41198F;
	padding: 0 15px;
}

body.fixed {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

li {
	list-style: none;
}

h1 {
	font-size: 35px;
	line-height: 40px;
	color: #BD41B1;
	margin-bottom: 30px;
	font-family: 'Dela Gothic One';
	font-weight: 400;
}

h2 {
	font-size: 30px;
	line-height: 35px;
	color: #BD41B1;
	margin-bottom: 30px;
	font-family: 'Dela Gothic One';
	font-weight: 400;
}

h4 {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
}

h3 {
	color: #BD41B1;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 30px;
	font-family: 'Dela Gothic One';
	font-weight: 400;
}

h5 {
	font-size: 22px;
	line-height: 30px;
	color: #BD41B1;
	margin-bottom: 20px;
}

p {
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

input[type="text"] {
	border: 0;
	outline: none;
	width: 100%;
	font-family: 'Source Sans 3', sans-serif;
	color: #2C1162;
	background: #F5F4FC;
	border-radius: 5px;
}

svg path {
	transition: all 0.3s ease;
}

input[type="text"]::-webkit-input-placeholder {
	font-family: 'Source Sans 3', sans-serif;
	color: #A59BC0;
}

input[type="text"].m_size {
	font-size: 17px;
	line-height: 20px;
	padding: 15px;
	height: 50px;
}

input[type="text"].m_size::-webkit-input-placeholder {
	font-size: 17px;
	line-height: 20px;
}

textarea {
	border: 0;
	outline: none;
	width: 100%;
	font-family: 'Source Sans 3', sans-serif;
	color: #2C1162;
	background: #F5F4FC;
	border-radius: 5px;
	resize: none;
}

textarea.m_size {
	font-size: 17px;
	line-height: 20px;
	padding: 15px;
}

textarea::-webkit-input-placeholder {
	font-family: 'Source Sans 3', sans-serif;
	color: #A59BC0;
}

textarea.m_size::-webkit-input-placeholder {
	font-size: 17px;
	line-height: 20px;
}

@keyframes width {
    from {
        width: 114px;
    }
    50% {
    	width: 300px;
    }
    to {
        width: auto;
    }
}

.button, button {
	display: inline-block;
	transition: all 0.3s ease;
	text-align: center;
	border: 1px solid #4C26A3;
	outline: none;
	cursor: pointer;
	color: #FCBBF7;
	background: #4C26A3;
}

.button.m_size, button.m_size {
	padding: 14px 19px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
}

.button.s_size, button.s_size {
	padding: 10px 15px;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	border-radius: 5px;
}

.button.light, button.light {
	background: #F2ECFD;
	color: #2C1162;
	border: 1px solid #F2ECFD;
}

.page {
	width: 100%;
	max-width: 1890px;
	background: #FFFFFF;
	border-radius: 25px;
	margin: 0 auto;
	padding-bottom: 90px;
	margin-bottom: 90px;
	position: relative;
}

.wrap {
	padding: 0 40px;
	max-width: 1610px;
	margin: 0 auto;
}

.top_slider {
	padding: 15px 0;
	display: flex;
	margin-right: -15px;
}

.wrap_top_slider {
	position: fixed;
	left: 15px;
	top: 0;
	width: calc(100% - 30px);
}

.wrap_top_slider:hover {
	z-index: 7;
}

.top_slider .wrap_item {
	width: calc((100% / 12) - 15px);
	max-width: 115px;
	margin-right: 15px;
	position: relative;
	order: 0;
}

.top_slider .item_top_slider {
	width: 100%;
}

.top_slider .item_top_slider .img_top_slider {
	overflow: hidden;
	border-radius: 5px;
	position: relative;
	width: 100%;
	display: block;
}

.top_slider .item_top_slider .img_top_slider:after {
	display: block;
	content: "";
	padding-top: 100%;
}

.top_slider .item_top_slider .img_top_slider img {
	position: absolute;
	object-fit: cover;
	object-position: top;
	left: 0;
	top: 0;
}

.top_slider .item_top_slider:hover {
	position: absolute;
	left: 0;
	top: 0;
}

.top_slider .item_top_slider:hover .img_top_slider:after {
	padding-top: calc(100% + 38px);
}

.top_slider .item_top_slider a:last-child {
	display: none;
	background: #FFFFFF;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	padding: 5px 5px 5px 10px;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
	font-weight: 600;
	font-size: 15px;
	align-items: center;
}

.top_slider .item_top_slider a:last-child span {
	display: block;
	margin-left: 5px;
	font-size: 13px;
	line-height: 15px;
	position: relative;
	padding: 5px 7px 5px 27px;
	background: #F2ECFD;
	border-radius: 5px;
}

.top_slider .item_top_slider a:last-child span:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/rate.svg) center / contain no-repeat;
}

.top_slider .item_top_slider:hover a:last-child {
	display: flex;
}

.wrap_header {
	margin-bottom: 30px;
}

header {
	padding: 30px 0;
	border-bottom: 1px solid #F2ECFD;
	transition: top 0.9s ease;
	top: -200px;
}

header.top_fixed {
	position: fixed;
	left: 15px;
	top: 0;
	z-index: 10;
	background: #ffffff;
	width: calc(100% - 30px);
	padding: 10px 0;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	border-radius: 0px 0px 25px 25px;
}

header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 268px;
	height: 50px;
	margin-right: 20px;
	display: block;
}

.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-right: 20px;
	max-width: calc(100% - 578px);
}

.menu a  {
	display: block;
	margin-right: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: calc(13px + 4 * ((100vw - 1280px) / (1920 - 1280)));
}

.menu a.call {
	padding-left: 20px;
	background: url(../icons/online.svg) left 0 center / contain no-repeat;
	background-size: 7px 20px;
}

.menu a.filter {
	position: relative;
	padding-left: 30px;
}

.menu a.filter:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/filter.svg) center / contain no-repeat;
}

header nav {
	position: relative;
}

header .button.light {
	margin-right: 10px;
}

.content {
	display: flex;
	padding-top: 30px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.main_filter {
	width: 230px;
	margin-right: 30px;
}

.item_page .main_filter, .filter_page .main_filter, .map_page .main_filter {
	display: none;
}

.main_filter .item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
}

.main_filter .item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.main_filter .item .name {
	margin-bottom: 15px;
}

.main_filter .item .list a {
	display: block;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.main_filter .item .list a:last-child {
	margin-bottom: 0;
}

.main_filter .item .list.line {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -5px;
}

.main_filter .item .list.line a {
	margin-right: 10px;
}

.main_filter .item .sub_list {
	margin-bottom: 15px;
}

.main_filter .item .title {
	font-weight: 600;
	margin-bottom: 5px;
}

.main_content {
	width: calc(100% - 520px);
	margin-right: 30px;
}

.main_content .top_section {
	padding-bottom: 45px;
	margin-bottom: 45px;
	border-bottom: 1px solid #F2ECFD;
}

.main_content .top_section a:not(.button) {
	text-decoration: underline;
}

.main_content .sorting {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: #9A91AA;
	margin-bottom: 30px;
}

.main_content .sorting .name {
	margin-right: 15px;
}

.main_content .sorting a {
	display: block;
	margin-right: 15px;
}

.main_content .sorting a.selected {
	font-weight: 600;
	position: relative;
	padding-right: 25px;
}

.main_content .sorting a.selected:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/arrow.svg) center / contain no-repeat;
}

.main_content .sorting a.selected.reverse:after {
	transform: translateY(-50%) rotate(-180deg);
}

.catalog:not(.catalog_slider) .wrap_item {
	padding: 30px;
	position: relative;
	border-right: 1px solid #F2ECFD;
	border-bottom: 1px solid #F2ECFD;
	width: calc((100% / 3) - 15px);
}

.catalog:not(.catalog_slider) .wrap_item:first-child {
	padding-left: 0;
}

.catalog:not(.catalog_slider) .wrap_item:nth-last-child(-n+3) {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 3) {
	padding-right: 0;
	border-right: 0;
}

.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 1) {
	padding-left: 0;
}

.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 5) {
	width: calc((100% / 3) - -15px);
}

.catalog:not(.catalog_slider) .wrap_item:nth-child(2) {
	width: calc((100% / 3) - -15px);
}

.catalog .item {
	font-size: 15px;
	line-height: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	cursor: pointer;
}

.catalog .item .img_item {
	width: calc(54% - 10px);
	border-radius: 5px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 15px;
	position: relative;
}

.catalog .item .img_item:after {
	display: block;
	content: "";
	padding-top: calc(100% + 50px);
}

.catalog .item .img_item .progressive {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.catalog .item .img_item .progressive img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: unset;
}

.catalog .item nav {
	font-weight: 600;
	font-size: 13px;
    line-height: 15px;
	width: calc(100% - -10px);
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	margin-right: -10px;
	min-height: 25px;
}

.catalog .item nav .item_nav {
	padding: 5px 7px;
	border-radius: 5px;
	overflow: hidden;
	display: block;
	margin: 0 5px 5px 0;
}

.catalog .item .item_nav.to_favorites {
	position: relative;
	cursor: pointer;
	background: url(../icons/heart.svg) center / contain no-repeat;
	background-size: 15px 15px;
	transition: all 0.3s ease;
	width: 25px;
	height: 25px;
}

.catalog .item .item_nav.to_favorites.selected {
	background: url(../icons/heart_selected.svg) center / contain no-repeat;
}

.catalog .item .item_nav.rating {
	position: relative;
	padding-left: 20px;
	background: url(../icons/rate.svg) left 0 center / contain no-repeat;
	background-size: 15px 15px;
	font-weight: 600;
	font-size: 13px;
	line-height: 15px;
	color: #2C1162;
	margin-right: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.catalog .item .item_nav.pro {
	background: #FFDBFC;
	border-radius: 4px;
	color: #BD41B1;
	padding: 5px 7px;
	margin-right: 3px;
}

.catalog .item .item_nav.luxary {
	color: #C77F15;
	background: #F7E6CD;
	border-radius: 4px;
	padding: 5px 7px;
	margin-right: 3px;
}

.catalog .item .item_nav.photo {
	color: #ffffff;
	background: rgba(0, 0, 0, 0.50) url(../icons/photo_w.svg) left 7px center / contain no-repeat;
	background-size: 15px 15px;
	padding: 5px 7px 5px 26px;
	white-space: nowrap;
	text-overflow: ellipsis;
	border-radius: 4px;
	margin-right: 3px;
}

.catalog .item .item_nav.video {
	color: #ffffff;
	background: rgba(0, 0, 0, 0.50) url(../icons/video_w.svg) left 7px center / contain no-repeat;
	background-size: 15px 15px;
	padding: 5px 7px 5px 26px;
	white-space: nowrap;
	text-overflow: ellipsis;
	border-radius: 4px;
	margin-right: 3px;
}

.catalog .item .item_nav.visit {
	font-size: 13px;
	font-weight: 600;
	line-height: 20px;
	padding-left: 20px;
	background: url(../icons/car_2.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.catalog .item .item_info_list {
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.catalog .item .item_info_list.column_list {
	display: block;
	width: calc(46% - 10px);
}

.catalog .item .item_info_list .item_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	min-height: 25px;
	width: calc(100% - 72px);
	margin-right: 5px;
	display: block;
	transition: all 0.3s ease;
}

.catalog .item .item_info_list .small_nav {
	width: 67px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.catalog .item .item_info_list .footnote {
	color: #9A91AA;
/*	min-height: 20px;*/
	width: 100%;
}

.catalog .item .item_info_list .footnote:not(:last-child) {
	margin-bottom: 5px;
}

.catalog .item .item_info_list .call_info {
	width: 100%;
}

.catalog .item .item_info_list .call_info.active {
	padding-left: 12px;
	background: url(../icons/online.svg) left 0 center / contain no-repeat;
	background-size: 7px 20px;
	color: #18BC6D;
}

.catalog .item .item_info_list .item_info {
	margin-right: 10px;
	width: calc(25% - 7.5px);
	min-width: 61px;
	flex-grow: 1;
}

.catalog .item .item_info_list.column_list .item_info {
	margin: 0 0 10px 0;
	width: auto;
	min-width: unset;
	flex-grow: unset;
}

.catalog .item .item_info_list .item_info:last-child {
	margin-right: 0;
}

.catalog .item .item_info_list .item_info .name {
	color: #9A91AA;
}

.catalog .item .buttons {
	display: flex;
	flex-wrap: wrap;
	order: 4;
	width: 100%;
}

.catalog .item .about {
	font-style: italic;
	padding: 10px 15px;
	border: 1px solid #EBE3FB;
	border-radius: 5px;
	margin-bottom: 15px;
	height: auto;
	width: 100%;
	height: 60px;
}

.catalog .item .about .text_wrap {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    line-clamp: 2;
    box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    user-select: none;
}

.catalog .item .item_footnote {
	color: #9A91AA;
	text-align: center;
	order: 5;
	width: 100%;
}

.catalog .item .buttons .tel {
	margin-right: 5px;
	flex-grow: 1;
	margin-bottom: 5px;
}

.catalog .item .buttons .tel:last-child {
	margin-right: 0;
}

.catalog .item .buttons .tel.active {
	border: 1px solid #C9B6EB;
	background: #ffffff;
}

.catalog .item .buttons .tel span, .top_item .tel span {
	position: relative;
	padding-left: 25px;
}

.catalog .item .buttons .tel span:before, .top_item .tel span:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/phone.svg) center / contain no-repeat;
	transition: all 0.3s ease;
}

.catalog .item .buttons .whatsapp {
	padding: 0;
	width: 40px;
	height: 40px;
	background: #F2ECFD url(../icons/whatsapp.svg) center / contain no-repeat;
	margin-right: 5px;
	background-size: 20px 20px;
	margin-bottom: 5px;
}

.catalog .item .buttons .whatsapp:last-child {
	margin-right: 0;
}

.catalog .item .buttons .telegram {
	padding: 0;
	width: 40px;
	height: 40px;
	background: #F2ECFD url(../icons/telegram.svg) center / contain no-repeat;
	background-size: 20px 20px;
	margin-bottom: 5px;
}

.wrap_catalog {
    display: flex;
    flex-wrap: wrap;
}

.catalog_slider .wrap_catalog {
	margin-bottom: 0;
	column-count: unset;
	column-gap: unset;
	column-rule: unset;
	overflow: hidden;
}

.catalog {
	margin-bottom: 45px;
	overflow: hidden;
}

.val_price {
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
}

.val_price:after {
	display: inline-block;
	content: attr(data-price);
	padding-left: 5px;
}

.val_price.empty:after {
	display: inline-block;
	content: "—";
	padding-left: 0;
}

.pagination {
	text-align: center;
	position: relative;
}

.pagination .to_catalog {
	width: 230px;
}

.col {
	width: 230px;
	position: relative;
}

.wrap_fixedelement {
	width: 100%;
}

.col .wrap_fixedelement .top_item.fixed {
	position: fixed;
	top: 100px;
}

.col .wrap_fixedelement .top_item.fixed.sticky {
	position: absolute;
	right: 0;
	top: unset;
	bottom: 65px;
}

.col_menu {
	margin-bottom: 30px;
}

.col_menu .to_map {
	text-transform: uppercase;
	padding: 0 30px 15px 0;
	position: relative;
	border-bottom: 1px solid #F2ECFD;
	display: block;
	transition: all 0.3s ease;
}

.col_menu .to_map:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 0;
	top: 0;
	background: url(../icons/pin.svg) center / contain no-repeat;
}

.col_menu .name {
	text-transform: uppercase;
	padding: 15px 30px 15px 0;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid #F2ECFD;
	transition: all 0.3s ease;
}

.col_menu .name.active {
	border-bottom: 0;
	padding-top: 30px;
}

.col_menu .filter {
	display: block;
	padding: 0 30px 15px 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #F2ECFD;
	background: url(../icons/filter.svg) right 0 top 0 / contain no-repeat;
	background-size: 20px 20px;
	text-transform: uppercase;
}

.col_menu .name:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/stepper.svg) center / contain no-repeat;
}

.col_menu .name.active:after {
	background: url(../icons/stepper_down.svg) center / contain no-repeat;
}

.col_menu .dropdown_list {
	display: none;
	padding-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
}

.col_menu .dropdown_list a {
	display: block;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.col_menu .dropdown_list a:last-child {
	margin-bottom: 0;
}

.seo {
	color: #FCBBF7;
	margin-bottom: 90px;
}

.seo h2 {
	color: #FCBBF7;
	margin-bottom: 45px;
}

.seo h3 {
	color: #FCBBF7;
}

.item_seo {
	margin-bottom: 45px;
}

.item_seo:last-child {
	margin-bottom: 0;
}

.seo ul {
	margin-bottom: 30px;
}

.seo ul li {
	padding-left: 25px;
	position: relative;
	margin-bottom: 5px;
}

.seo ul li:last-child {
	margin-bottom: 0;
}

.seo ul li:before {
	position: absolute;
	content: "";
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #BD41B1;
}

footer {
	padding: 45px 0;
	background: #4C26A3;
	border-radius: 25px 25px 0px 0px;
	color: #CEB5FF;
}

.footer_menu {
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 60px;
}

.footer_menu a {
	margin-right: 30px;
}

.footer_menu a.contacts {
	position: relative;
	padding-right: 20px;
	display: inline-block;
}

.footer_menu a.contacts:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/stepper_light.svg) center / contain no-repeat;
}

.footer_menu a.contacts.active:after {
	width: 10px;
	height: 2px;
	background: #FFFFFF;
	border-radius: 1px;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
}

.footer_menu .contacts .note {
	display: block;
	position: absolute;
	font-size: 15px;
	padding: 15px;
	background: #FFFFFF;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 
	0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394),
	0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 
	0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 
	0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 
	0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
	border-radius: 5px;
	color: #2C1162;
	z-index: 1;
	width: 260px;
	left: 100%;
	bottom: 100%;
	display: none;
}

.footer_info {
	position: relative;
	padding-right: 75px;
	margin-bottom: 60px;
}

.footer_info:after {
	position: absolute;
	right: 0;
	content: "";
	width: 75px;
	height: 75px;
	top: 50%;
	transform: translateY(-59%);
	background: url(../icons/18.svg) center / contain no-repeat;
}

.footer_info .text {
	max-width: 1010px;
	margin-right: 10px;
}

.copyright .item:first-child {
	margin-bottom: 10px;
}

.col .top_item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
	overflow: hidden;
}

.col .top_item h4 {
	margin-bottom: 15px;
	text-transform: uppercase;
}

.col .top_item .top_item_slider {
	width: 100%;
	height: 305px;
	margin-bottom: 15px;
	overflow: hidden;
}

.col .top_item .top_item_slider .slick-list {
	margin-right: -5px;
}

.col .top_item .img {
	width: 100%;
	height: 305px;
	border-radius: 5px;
	overflow: hidden;
	margin-right: 5px;
}

.col .top_item .progressive {
	width: 100%;
	height: 100%;
}

.col .top_item .progressive img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.col .top_item .name {
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	transition: all 0.3s ease;
}

.col .top_item .address {
	font-size: 15px;
	line-height: 20px;
	color: #9A91AA;
	margin-bottom: 15px;
}

.items_list {
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
}

.catalog .items_list {
	display: none;
}

.items_list .item {
	width: 100%;
	margin-bottom: 30px;
}

.items_list .item .img_item {
	width: 100%;
	height: 305px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.items_list .item .progressive {
	width: 100%;
	height: 100%;
}

.items_list .item .progressive img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.items_list .item .name {
	color: #FCBBF7;
	background: #4C26A3;
	border-radius: 5px 5px 0px 0px;
	position: absolute;
	left: 15px;
	bottom: 0;
	width: calc(100% - 30px);
	text-align: center;
	padding: 5px;
	display: block;
}

.items_list .item .btn {
	background: #F2ECFD;
	border-radius: 0px 0px 5px 5px;
	padding: 5px;
	text-align: center;
	width: calc(100% - 30px);
	display: block;
	margin: 0 auto;
}

.items_list .item .tel span,
.items_list .item .telegram span {
	position: relative;
	padding-left: 25px;
}

.items_list .item .telegram span:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/telegram.svg) center / contain no-repeat;
}

.items_list .item .tel span:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/phone.svg) center / contain no-repeat;
}

.login {
	position: absolute;
	width: 100%;
	left: 0;
	top: calc(100% + 5px);
	background: #FFFFFF;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	z-index: 1;
	padding: 20px;
	display: none;
}

.login input[type="text"] {
	margin-bottom: 10px;
}

.login input[type="password"] {
	margin-bottom: 10px;
}

.login a {
	display: block;
}

.login a.reg {
	text-align: center;
	font-weight: 600;
}

.login form a {
	font-size: 15px;
	line-height: 20px;
	margin: -5px 0 10px 0;
}

.login button {
	width: 100%;
	margin-bottom: 20px;
}

.wrap_favorites {
	position: fixed;
	top: 0;
	right: 0;
	overflow: hidden;
	display: none;
	height: 100%;
	z-index: 10;
}

.wrap_favorites.active {
	display: block;
	width: 130px;
	transition: width 0.5s ease;
}

.wrap_favorites.active.show {
	width: 670px;
}

.favorites_window {
	height: 100%;
	align-items: center;
	z-index: 7;
	display: flex;
	transition: width 0.5s ease;
	width: 670px;
	padding-left: 10px;
}

.wrap_favorites.active.show .favorites_window {
	left: 0;
}

.favorites {
	height: 100%;
	background: #FFFFFF;
	padding: 30px;
	overflow: hidden;
	overflow-y: auto;
	width: 540px;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18);
	position: relative;
}

.favorites:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 30px;
	background: #F2ECFD;
	z-index: 2;
}

.wrap_favorites.active.show .favorites:before {
	background: #ffffff;
}

.favorites .catalog {
	margin-bottom: 0;
}

.favorites_window .button_favorites {
	width: 120px;
	height: 100px;
	background: #F2ECFD;
	border-radius: 15px 0px 0px 15px;
	padding: 18px 20px;
	z-index: 2;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	user-select: none;
	position: relative;
	box-shadow: 0px 0px 8px rgb(121 107 144 / 18%);
	margin-right: -1px;
	text-align: center;
}

.favorites_window .button_favorites.active {
	background: #FFFFFF;
}

.favorites_window .button_favorites span {
	display: block;
	padding-top: 40px;
	position: relative;
}

.favorites_window .button_favorites span:before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background: url(../icons/heart.svg) center / contain no-repeat;
}

.favorites_window .button_favorites.active span:before {
	background: url(../icons/next.svg) center / contain no-repeat;
	background-size: 30px 30px;
}

.favorites_window .button_favorites span:after {
	position: absolute;
	content: attr(data-fav);
	min-width: 20px;
	height: 20px;
	padding: 5px 5px 4px 5px;
	border-radius: 50%;
	background: #FCBBF7;
	font-weight: bold;
	font-size: 12px;
	line-height: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -5px;
	right: 8px;
}

.favorites_window .button_favorites.active span:after {
	display: none;
}

.favorites_window .button_favorites:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	bottom: 100%;
	right: 0;
	background: url(../icons/subtract.svg) center / contain no-repeat;
}

.favorites_window .button_favorites:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	top: 100%;
	right: 0;
	background: url(../icons/subtract.svg) center / contain no-repeat;
	transform: rotate(-90deg);
}

.favorites_window .button_favorites.active:before {
	background: url(../icons/subtract_active.svg) center / contain no-repeat;
}

.favorites_window .button_favorites.active:after {
	background: url(../icons/subtract_active.svg) center / contain no-repeat;
}

.favorites h3 {
	margin-bottom: 15px;
}

.favorites .catalog .item {
	width: auto;
	padding: 15px 0;
	border-bottom: 1px solid #F2ECFD;
	margin-bottom: 15px;
	margin-right: 0;
	display: block;
}

.favorites .catalog .item .item_info_list {
	width: calc(100% - 185px);
}

.favorites .catalog .item:after {
	display: none;
}

.favorites .catalog .item .img_item {
	width: 155px;
	height: 205px;
	border-radius: 5px;
	overflow: hidden;
	margin-right: 30px;
	position: relative;
	float: left;
}

.favorites .catalog .item .img_item .progressive {
	width: 100%;
	height: 100%;
}

.favorites .catalog .item .item_info_list .item_info .name {
	display: none;
}

.favorites .catalog .item .img_item .progressive img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.favorites .catalog .item .img_item .delete_item {
	position: absolute;
	width: 30px;
	height: 30px;
	background: #F2ECFD;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	cursor: pointer;
	left: 5px;
	top: 5px;
}

.favorites .catalog .item .img_item .delete_item:before {
	position: absolute;
	content: "";
	width: 12px;
	height: 2px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.favorites .catalog .item .img_item .delete_item:after {
	position: absolute;
	content: "";
	width: 12px;
	height: 2px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.favorites .catalog .item .item_info_list .item_info {
	flex-grow: 1;
}

.favorites .clear_list {
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	padding-left: 25px;
	position: relative;
}

.favorites .clear_list:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/close.svg) center / contain no-repeat;
}

.filter_btn, .burger {
	display: none;
}

.filter_list {
	width: calc(100% - 260px);
	margin-right: 30px;
}

.filter_list .flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

.filter_list .flex .close {
	display: block;
	width: 40px;
    height: 40px;
    position: relative;
    margin-bottom: 30px;
}

.filter_list .flex .close:before {
	position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #2C1162;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.filter_list .flex .close:after {
	position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #2C1162;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.filter_list .item_filter {
	padding: 30px 0;
	border-bottom: 1px solid #F2ECFD;
}

.filter_list .item_filter .name_filter h3 {
	color: #2C1162;
}

.filter_list .item_filter .list_filter {
	display: flex;
	flex-wrap: wrap;
}

.filter_list .item_filter .list_filter.selector {
	overflow: hidden;
	border-radius: 5px;
}

.filter_list .item_filter .list_filter a {
	display: block;
	font-size: 16px;
	padding: 15px 20px;
	text-align: center;
	width: calc(100% / 10);
	background: #F5F4FC;
	overflow: hidden;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	break-inside: avoid-column;
}

.filter_list .item_filter .list_filter a.selected {
	color: #FFFFFF;
	background: #4C26A3;
}

.filter_list .item_filter .list_filter .fields_list {
	width: 60%;
	display: flex;
}

.filter_list .item_filter .list_filter .fields {
	width: calc((100% / 3) - 30px);
	margin-right: 30px;
}

.filter_list .item_filter .list_filter .fields .name {
	margin-bottom: 10px;
}

.filter_list .item_filter .list_filter .fields .list {
	display: flex;
	position: relative;
}

.filter_list .item_filter .list_filter .fields .list:before {
	position: absolute;
	content: "–";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.filter_list .item_filter .list_filter .fields .list input[type="text"] {
	margin-right: 20px;
	width: calc(50% - 10px);
}

.filter_list .item_filter .list_filter .fields .list input[type="text"]:last-child {
	margin-right: 0;
}

.filter_list .item_filter .list_filter .small_selector {
	width: 40%;
}

.filter_list .item_filter .list_filter .small_selector .list {
	display: flex;
	overflow: hidden;
	border-radius: 5px;
}

.filter_list .item_filter .list_filter .small_selector .name {
	margin-bottom: 10px;
}

.filter_list .item_filter .list_filter .small_selector .list a {
	width: calc(100% / 7);
}

.filter_list .item_filter .list_filter .price_item {
	width: calc(50% - 30px);
	margin-right: 60px;
}

.filter_list .item_filter .list_filter .price_item:last-child {
	margin-right: 0;
}

.filter_list .item_filter .list_filter .price_item .fields_list {
	width: 100%;
}

.list_filter .price_item .fields_list .fields {
	width: calc((100% / 3) - 20px);
}

.filter_list .item_filter .list_filter .price_item .fields_list .fields:last-child {
	margin-right: 0;
}

.filter_list .item_filter .list_filter .price_item h4 {
	margin-bottom: 15px;
}

.filter_list .item_filter .list_filter.checkbox_list {
	display: block;
	column-count: 4;
	column-gap: 30px;
	position: relative;
	z-index: 1;
}

.filter_list .item_filter .list_filter.checkbox_list a {
	padding: 0 0 0 30px;
	background: unset;
	font-size: 17px;
	width: auto;
	text-align: left;
	margin-bottom: 15px;
	position: relative;
	transition: all 0.3s ease;
}

.filter_list .item_filter .list_filter.checkbox_list a span {
	position: relative;
}

.filter_list .item_filter .list_filter.checkbox_list a:last-child {
	margin-bottom: 0;
}

.filter_list .item_filter .list_filter.checkbox_list a:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: #F5F4FC;
	border-radius: 5px;
}

.filter_list .item_filter .list_filter.checkbox_list a.active:before {
	background: #4C26A3 url(../icons/check.svg) center / contain no-repeat;
	background-size: 11px 8px;
}

.filter_list .item_filter .list_filter.checkbox_list .item {
	margin-bottom: 30px;
	break-inside: avoid-column;
}

.filter_list .item_filter .list_filter.checkbox_list .item h4 {
	margin-bottom: 15px;
}

.col .button {
	width: 100%;
}

.content.filter_page, .page.filter_page .content {
	align-items: flex-end;
}

.col .clean_filter {
	width: 100%;
	font-size: 14px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	display: none;
	margin-top: 15px;
}

.col .clean_filter span {
	position: relative;
	padding-left: 25px;
}

.col .clean_filter span:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/bin.svg) center / contain no-repeat;
}

.filter_list .item_filter:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.scroll_top {
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #F2ECFD url(../icons/top.svg) center / contain no-repeat;
	background-size: 20px 20px;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 
	0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394), 
	0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 
	0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 
	0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 
	0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
	cursor: pointer;
	bottom: 15px;
	right: 30px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.scroll_top.active {
	opacity: 1;
	visibility: visible;
}

.pagination a {
	width: 60px;
	height: 50px;
}

.pagination .prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	background: #F2ECFD url(../icons/next.svg) center / contain no-repeat;
	background-size: 20px 20px;
}

.pagination .next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #F2ECFD url(../icons/next.svg) center / contain no-repeat;
	background-size: 20px 20px;
}

.pagination nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 100px;
}

.pagination nav a {
	margin-right: 10px;
}

.pagination nav a:last-child {
	margin-right: 0;
}

.pagination nav a.active {
	background: #ffffff;
	border: 1px solid #C9B6EB;
}

.pagination nav a.disabled {
	width: 15px;
	background: #ffffff;
	cursor: default;
	position: relative;
	border: 1px solid transparent;
}

.pagination nav a.disabled:before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: "...";
}

.page.item_page .content {
	flex-wrap: wrap;
	padding-top: 0;
}

.top_item_page {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	margin-bottom: 30px;
}

.top_item_page .bread_crumbs {
	margin-right: 10px;
	padding: 10px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.top_item_page .bread_crumbs a {
	padding-left: 25px;
	position: relative;
	transition: all 0.3s ease;
	display: block;
}

.top_item_page .bread_crumbs a:first-child {
	padding: 0;
}

.top_item_page .bread_crumbs a:first-child::before {
	display: none;
}

.top_item_page .bread_crumbs a:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/tree.svg) center / contain no-repeat;
}

.top_item_page .bread_crumbs span {
	color: #9A91AA;
	padding-left: 5px;
}

.top_item_page .to_favorites {
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding: 10px 15px 10px 40px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.top_item_page .to_favorites.selected {
	background: #4C26A3;
	border-radius: 5px;
	color: #FCBBF7;
}

.top_item_page .to_favorites.selected:hover {
	color: #FCBBF7;
}

.top_item_page .to_favorites:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/heart.svg) center / contain no-repeat;
	transition: all 0.3s ease;
}

.top_item_page .to_favorites.selected:before {
	background: url(../icons/heart_selected.svg) center / contain no-repeat;
}

.top_item_page .to_favorites.selected:hover::before {
	background: url(../icons/heart_selected.svg) center / contain no-repeat;
}

.item_page .media {
	width: calc(33.987% - 30px);
	margin-right: 30px;
	margin-bottom: 60px;
}

.item_page .media .wrap_item_slider {
	margin-bottom: 10px;
	position: relative;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}

.item_page .media .wrap_item_slider.fade img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.item_page .media .item_slider {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}

.item_page .media .wrap_item_slider:after {
	display: block;
	content: "";
	padding-top: calc(100% + 160px);
}

.item_page .media .item_slider .slick-list {
	height: 100%;
}

.item_page .media .item_slider .slick-track, .item_page .media .nav_item_slider .slick-track {
	height: 100%!important;
}

.item_page .media .item_slider img {
	object-fit: cover;
	cursor: pointer;
}

.item_page .media .wrap_nav_item_slider {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	min-height: 90px;
}

.item_page .media .wrap_nav_item_slider:after {
	display: block;
	content: "";
	padding-top: calc(100% - 375px);
}

.item_page .media .nav_item_slider {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}

.item_page .media .nav_item_slider.fade_active {
	display: flex;
	align-items: center;
	margin-right: -10px;
}

.item_page .media .nav_item_slider .slick-list {
	height: 100%;
	margin-right: -10px;
}

.item_page .media .nav_item_slider .item_nav {
	border-radius: 5px;
	overflow: hidden;
	margin-right: 10px;
	height: 100%;
	position: relative;
	cursor: pointer;
}

.item_page .media .nav_item_slider.fade_active .item_nav {
	width: calc((100% / 4) - 10px);
	border: 3px solid transparent;
	transition: all 0.3s ease;
}

.item_page .media .nav_item_slider.fade_active .item_nav.active {
	border: 3px solid #BD41B1;
}

.item_page .media .nav_item_slider .item_nav.slick-current:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	border: 3px solid #BD41B1;
	z-index: 1;
}

.item_page .media .nav_item_slider img {
	object-fit: cover;
	object-position: top;
}

.item_page .title_media {
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
}

.item_page .title_media.map {
	min-height: unset;
	max-height: unset;
}

.item_page .title_media h3 {
	margin-bottom: 0;
}

.item_page .video:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background: url(../icons/cam.svg) center / contain no-repeat;
}

.item_page .video_frame {
	position: relative;
	margin-bottom: 30px;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
	min-height: 160px;
}

.item_page .video_frame:after {
	display: block;
	content: "";
	padding-top: calc(100% - 215px);
}

.item_page .video_frame img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 1;
}

.item_page .video_frame video {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.item_page .play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: url(../icons/play.svg) center / contain no-repeat;
	z-index: 2;
}

.item_page .map:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background: url(../icons/pin_pink.svg) center / contain no-repeat;
}

.item_page .map_frame {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
	min-height: 160px;
}

.item_page .map_frame:after {
	display: block;
	content: "";
	padding-top: calc(100% - 215px);
}

.item_page .map_frame iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.item_page .map_frame:before {
	position: absolute;
	content: "";
	width: 140px;
	height: 140px;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(252, 187, 247, 0.5);
	border: 3px solid #FCBBF7;
	z-index: 2;
}

.item_page .item_content {
	width: 66.0134%;
}

.item_page .item_content .wrap_item_header {
	margin-bottom: 45px;
}

.item_page .item_content .item_header {
	display: flex;
	justify-content: space-between;
}

.item_page .item_content .item_header .call_info {
	text-align: center;
	color: #9A91AA;
	margin-bottom: 10px;
}

.item_page .item_content .item_header .call_info span {
	padding-left: 12px;
    background: url(../icons/online.svg) left 0 center / contain no-repeat;
    background-size: 7px 20px;
    color: #18BC6D;
}

.item_page .item_content .wrap_fixed {
	top: -100px;
	transition: top 0.9s ease;
}

.item_page .item_content .wrap_fixed.top_fixed {
	position: fixed;
	left: 15px;
	top: 0;
	background: #ffffff;
	width: calc(100% - 30px);
	z-index: 5;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	padding-top: 10px;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header {
	padding: 0 40px;
    max-width: 1610px;
    margin: 0 auto;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header .item .label_list, 
.item_page .item_content .wrap_fixed.top_fixed .item_header .item .foot_note {
	display: none;
}

.item_page .item_content .item_header .item {
	margin-right: 30px;
}

.item_page .item_content .item_header .item:first-child {
	max-width: calc(100% - 430px);
}

.item_page .item_content .wrap_fixed.top_fixed .item_header .item {
	width: auto;
}

.item_page .item_content .item_header .item:last-child {
	margin-right: 0;
}

.item_page .item_content .item_header .item .img_item {
	width: 55px;
	height: 55px;
	border-radius: 5px;
	overflow: hidden;
	margin-right: 15px;
	display: none;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header .item .img_item {
	display: block;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header .item .img_item img {
	object-fit: cover;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header .item:first-child {
	display: flex;
}

.item_page .item_content .item_header .item h1 {
	margin-bottom: 20px;
}

.item_page .item_content .item_header .item h1 span {
	display: none;
	font-size: 15px;
	line-height: 20px;
	color: #9A91AA;
}

.item_page .item_content .wrap_fixed.top_fixed .item_header h1 span {
	display: block;
	font-family: "Source Sans 3";
}

.item_page .item_content .wrap_fixed.top_fixed .item_header h1 {
	margin-bottom: 0;
	font-size: 25px;
	line-height: 30px;
}

.item_page .item_content .item_header .item .label_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -5px;
	overflow: hidden;
	font-weight: 600;
	font-size: 13px;
	line-height: 15px;
}

.item_page .item_content .item_header .item .label {
	padding: 4px 7px;
	border-radius: 5px;
	margin: 0 5px 5px 0;
}

.item_page .item_content .item_header .item .pro {
	color: #BD41B1;
	background: #FFDBFC;
	border: 1px solid #FFDBFC;
}

.item_page .item_content .item_header .item .luxary {
	color: #C77F15;
	background: #F7E6CD;
	border: 1px solid #F7E6CD;
}

.item_page .item_content .item_header .item .photo {
	color: #18BC6D;
	background: #E2F7ED;
	position: relative;
	padding-left: 27px;
	border: 1px solid #E2F7ED;
}

.item_page .item_content .item_header .item .photo:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/photo.svg) center / contain no-repeat;
}

.item_page .item_content .item_header .item .video {
	position: relative;
	padding-left: 27px;
	border: 1px solid #EBE3FB;
}

.item_page .item_content .item_header .item .video:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/video.svg) center / contain no-repeat;
}

.item_page .item_content .item_header .item .visit {
	border: 1px solid #EBE3FB;
}

.item_page .item_content .item_header .item .buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.item_page .item_content .item_header .item .tel {
	font-size: 20px;
	line-height: 25px;
	margin-right: 10px;
	margin-bottom: 10px;
	flex-grow: 1;
}

.item_page .item_content .item_header .item .tel.active {
	border: 1px solid #C9B6EB;
	background: #ffffff;
}

.item_page .item_content .item_header .item .tel span {
	position: relative;
	padding-left: 35px;
	display: inline-block;
}

.item_page .item_content .item_header .item .tel span:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	background: url(../icons/phone.svg) center / contain no-repeat;
	transition: all 0.3s ease;
}

.item_page .item_content .item_header .item .whatsapp {
	width: 65px;
	height: 55px;
	padding: 0;
	background: #F2ECFD url(../icons/whatsapp.svg) center / contain no-repeat;
	background-size: 25px 25px;
	margin-right: 10px;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.item_page .item_content .item_header .item .telegram {
	width: 65px;
	height: 55px;
	padding: 0;
	background: #F2ECFD url(../icons/telegram.svg) center / contain no-repeat;
	background-size: 25px 25px;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.item_page .item_content .item_header .item .foot_note {
	color: #9A91AA;
	text-align: center;
}

.item_page .item_content .item_about {
	font-style: italic;
	font-size: 20px;
	line-height: 25px;
	padding: 30px;
	border: 1px solid #EBE3FB;
	border-radius: 5px;
	margin-bottom: 15px;
	word-break: break-word;
	hyphens: auto;
}

.item_page .item_content .item_info {
	display: flex;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 15px;
}

.item_page .item_content .item_info .item {
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 15px);
	margin-right: 30px;
	padding: 30px;
}

.item_page .item_content .item_info .item:last-child {
	margin-right: 0;
}

.item_page .item_content .item_info .item .info {
	margin-right: 20px;
	flex-grow: 1;
}

.item_page .item_content .item_info .item .info:last-child {
	margin-right: 0;
}

.item_page .item_content .item_info .item .title {
	font-size: 17px;
	line-height: 20px;
	color: #9A91AA;
}

.item_page .item_content .item_info .item .title_item {
	color: #BD41B1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 20px;
	width: 100%;
	padding-left: 30px;
	position: relative;
}

.item_page .item_content .item_info .item .title_item:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
}

.item_page .item_content .item_info .item .title_item.apartments:before {
	background: url(../icons/apartments.svg) center / contain no-repeat;
}

.item_page .item_content .item_info .item .title_item.car:before {
	background: url(../icons/car.svg) center / contain no-repeat;
}

.item_page .item_content .item_info .item.border {
	border: 1px solid #EBE3FB;
	border-radius: 5px;
}

.item_page .item_content .item_footnote {
	text-align: center;
	color: #9A91AA;
}

.item_page .item_content .services {
	padding: 45px 0;
	border-bottom: 1px solid #F2ECFD;
	margin-bottom: 45px;
}

.item_page .item_content .services .item_services {
	margin-bottom: 45px;
}

.item_page .item_content .services .item_services:last-child {
	margin-bottom: 0;
}

.item_page .item_content .services .item_services .services_list {
	column-count: 4;
	column-gap: 30px;
}

.item_page .item_content .services .item_services .services_list h4 {
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.item_page .item_content .services .item_services .services_list .item {
	margin-bottom: 30px;
	break-inside: avoid-column;
}

.item_page .item_content .services .item_services .services_list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}

.item_page .item_content .services .item_services .services_list li:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: url(../icons/mark.svg) center / contain no-repeat;
}

.item_page .item_content .services .item_services .services_list li span {
	display: block;
	font-size: 15px;
	color: #9A91AA;
}

.item_page .item_content .services .item_services .services_list li:last-child {
	margin-bottom: 0;
}

.item_page .item_content .services .item_services .services_list li span.info_label {
	display: inline-block;
}

.info_label {
	display: inline-block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url(../icons/qmark.svg) center / contain no-repeat;
	vertical-align: middle;
	margin-left: 5px;
	position: relative;
	font-size: 15px;
	line-height: 20px;
}

.info_label:hover {
	background: url(../icons/qmark_hover.svg) center / contain no-repeat;
}

/*.info_label:before {
	position: absolute;
	content: attr(data-info);
	bottom: 100%;
	left: 100%;
	color: #2C1162;
	padding: 15px;
	background: #FFFFFF;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 
	0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394), 
	0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 
	0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 
	0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 
	0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
	border-radius: 5px;
	z-index: 2;
	width: 260px;
	display: none;
}*/

.info_label_text {
	position: fixed;
	content: attr(data-info);
	color: #2C1162;
	padding: 15px;
	background: #FFFFFF;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 
	0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394), 
	0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 
	0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 
	0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 
	0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
	border-radius: 5px;
	z-index: 9;
	width: 260px;
	display: none;
}

.item_page .item_content .services .footnote {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	flex-wrap: wrap;
}

.item_page .item_content .services .footnote .info {
	margin-right: 20px;
	position: relative;
	padding-left: 20px;
}

.item_page .item_content .services .footnote .info:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: url(../icons/info.svg) center / contain no-repeat;
}

.item_page .item_content .services .footnote .feedback_btn {
	cursor: pointer;
	position: relative;
	padding-left: 20px;
	display: block;
	transition: all 0.3s ease;
}

.catalog_slider .wrap_catalog .slick-list {
	margin-right: -30px;
}

.item_page .item_content .services .footnote .feedback_btn:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: url(../icons/flag.svg) center / contain no-repeat;
}

.reviews .top_reviews {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.reviews .top_reviews h2 {
	margin-bottom: 0;
	margin-right: 20px;
}

.reviews .header_reviews {
	display: flex;
	margin-bottom: 30px;
}

.reviews .header_reviews .rating {
	background: #F2ECFD;
	border-radius: 5px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-wrap: wrap;
	flex-direction: column;
	width: 184px;
	max-height: 160px;
}

.reviews .header_reviews .rating span {
	display: block;
	position: relative;
	padding-left: 40px;
	font-size: 35px;
	line-height: 50px;
	font-family: 'Dela Gothic One';
	margin-top: 5px;
}

.reviews .header_reviews .rating span:before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/rate.svg) center / contain no-repeat;
}

.reviews .header_reviews .content_rating {
	padding: 30px;
	border: 1px solid #EBE3FB;
	border-radius: 5px;
	width: calc(100% - 194px);
}

.reviews .header_reviews .content_rating h4 {
	margin-bottom: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.reviews .rating_list {
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: -5px;
}

.reviews .rating_list .item {
	padding: 5px 10px 5px 25px;
	position: relative;
	background: #F2ECFD;
	border-radius: 5px;
	margin: 0 5px 5px 0;
}

.reviews .rating_list .item:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	background: #2C1162;
	border-radius: 1px;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.reviews .rating_list .item:after {
	position: absolute;
	content: "";
	width: 2px;
	height: 10px;
	background: #2C1162;
	border-radius: 1px;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
}

.reviews .rating_list .item.negative:after {
	display: none;
}

.reviews .item_reviews {
	padding: 30px;
	margin-bottom: 15px;
	border: 1px solid #EBE3FB;
	border-radius: 5px;
}

.reviews .item_reviews .title {
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

.reviews .item_reviews .rating_scale {
	display: flex;
	padding-left: 5px;
	justify-content: flex-end;
}

.reviews .item_reviews .rating_scale:not(:last-child) {
	margin-bottom: 10px;
}

.reviews .item_reviews .title .col_r {
	text-align: right;
}

.reviews .item_reviews .title .col_r .real {
	padding-left: 23px;
	background: url(../icons/verified.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
	font-size: 15px;
	line-height: 20px;
	display: inline-block;
}

.reviews .item_reviews .rating_scale span {
	width: 20px;
	height: 20px;
	display: block;
	background: url(../icons/rate.svg) center / contain no-repeat;
	opacity: 0.3;
}

.reviews .item_reviews .rating_scale span.active {
	opacity: 1;
}

.reviews .item_reviews .rating_scale .sum {
	padding-left: 5px;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Dela Gothic One';
}

.reviews .item_reviews .date {
	font-size: 15px;
	color: #9A91AA;
	margin-bottom: 15px;
}

.reviews .item_reviews .text {
	margin-bottom: 30px;
}

.reviews .new_reviews {
	text-align: center;
	padding-top: 15px;
	margin-bottom: 60px;
}

.reviews .new_reviews .rev_btn {
	width: 230px;
}

.reviews .new_reviews .item_reviews {
	margin-bottom: 0;
	padding: 45px 30px;
	text-align: left;
}

.new_reviews .item_reviews {
	position: relative;
	display: none;
}

.new_reviews .item_reviews h2 {
	margin-bottom: 45px;
}

.new_reviews .item_reviews h4 {
	margin-bottom: 10px;
	text-transform: uppercase;
}

.new_reviews .item_reviews .close {
	position: absolute;
	width: 35px;
	height: 35px;
	cursor: pointer;
	top: 45px;
	right: 30px;
	z-index: 1;
}

.new_reviews .item_reviews .close:before {
	position: absolute;
	content: "";
	width: 12px;
	height: 2px;
	background: #2C1162;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.new_reviews .item_reviews .close:after {
	position: absolute;
	content: "";
	width: 12px;
	height: 2px;
	background: #2C1162;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.new_reviews .item_reviews .rating_scale {
	margin-bottom: 30px;
}

.new_reviews .item_reviews .rating_scale span {
	cursor: pointer;
	width: 35px;
	height: 30px;
	display: block;
	background: url(../icons/rate.svg) center / contain no-repeat;
	background-size: 25px 30px;
}

.new_reviews .item_reviews .rating_scale span.selected {
	opacity: 1;
}

.reviews .new_reviews .item_reviews .rating_scale .sum h6 {
	padding-left: 10px;
	font-size: 25px;
	line-height: 30px;
}

.reviews .new_reviews .item_reviews input[type="text"] {
	margin-bottom: 15px;
}

.reviews .new_reviews .item_reviews textarea {
	margin-bottom: 30px;
	height: 150px;
}

.new_reviews .item_reviews .rating_list {
	margin-bottom: 30px;
}

.new_reviews .item_reviews .rating_list .item {
	cursor: pointer;
	user-select: none;
}

.new_reviews .item_reviews .rating_list .item.celected {
	color: #FCBBF7;
    background: #4C26A3;
}

.new_reviews .item_reviews .rating_list .item.celected:before,
.new_reviews .item_reviews .rating_list .item.celected:after {
	background: #FCBBF7;
}

.captcha {
	display: flex;
	margin-bottom: 30px;
}

.captcha input[type="text"] {
	width: 130px;
	margin-right: 10px;
}

.captcha .img_captcha {
	width: 150px;
	height: 50px;
	overflow: hidden;
}

.agree {
	margin-bottom: 30px;
}

.agree input[type="checkbox"] {
	display: none;
}

.agree label {
	display: block;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.agree label:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: #F5F4FC;
	border-radius: 5px;
}

.agree label a {
	text-decoration: underline;
	color: #4C26A3;
}

.agree input[type="checkbox"]:checked + label:before {
	background: #4C26A3 url(../icons/check.svg) center / contain no-repeat;
    background-size: 11px 8px;
}

.new_reviews .item_reviews button {
	width: 100%;
}

.item_page .wrap_catalog {
	column-count: unset;
	margin-bottom: 0;
	overflow: hidden;
}

.item_page .wrap_catalog .slick-list {
	margin-right: -60px;
}

.catalog.catalog_slider {
	padding-top: 60px;
	border-top: 1px solid #F2ECFD;
	width: 100%;
	margin-bottom: 0;
}

.catalog.catalog_slider .wrap_item {
	padding-bottom: 0;
	margin-bottom: 0;
	margin-right: 30px;
	padding-right: 30px;
	border-right: 1px solid #F2ECFD;
}

.catalog.catalog_slider .wrap_item:after {
	display: none;
}

.catalog.catalog_slider .title {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.catalog.catalog_slider .title nav {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.catalog.catalog_slider .title nav .arrow {
	cursor: pointer;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F2ECFD;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.catalog.catalog_slider .title nav .arrow.prev {
	margin-right: 30px;
}

.media_mobile {
	display: none;
}

.map_page {
	padding-top: 30px;
	text-align: center;
}

.map {
	margin-bottom: 45px;
	position: relative;
	min-height: 400px;
	max-height: 760px;
}

.map_page h1 {
	text-align: left;
}

.map:after {
	display: block;
	content: "";
	padding-top: calc(100% - 770px);
}

.map iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.fix_size {
	width: 230px;
}

.map .close {
	display: none;
}

.map .items {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	background: #FFFFFF;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 4px solid #FCBBF7;
	padding: 10px;
}

.map .items.big {
	width: 80px;
	height: 80px;
}

.map .items.middle {
	width: 60px;
	height: 60px;
}

.map .item_map {
	position: absolute;
	z-index: 2;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	overflow: hidden;
}

.map .item .progressive img {
	object-fit: cover;
	object-position: top;
}

.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	z-index: 10;
	background: rgba(65, 25, 143, 0.8);
}

.wrap_popup {
	width: 100%;
	max-height: 100%;
	overflow: hidden;
	overflow-y: auto;
	padding: 20px 0;
}

.content_popup {
	background: #FFFFFF;
	box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 
	0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394), 
	0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 
	0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 
	0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 
	0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
	border-radius: 5px;
	max-width: 750px;
	margin: 0 auto;
	padding: 45px;
	position: relative;
}

.popup .close_popup {
	position: absolute;
	width: 30px;
	height: 30px;
	cursor: pointer;
	top: 45px;
	right: 45px;
}

.popup .close_popup:before {
	position: absolute;
	content: "";
	width: 18px;
	height: 3px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.popup .close_popup:after {
	position: absolute;
	content: "";
	width: 18px;
	height: 3px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.content_popup h2 {
	margin-bottom: 15px;
	padding-right: 45px;
}

.content_popup h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
}

.content_popup .item_name {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 45px;
	font-weight: 600;
}

.content_popup .item_name span {
	color: #9A91AA;
	padding-left: 5px;
	font-weight: normal;
}

.content_popup .selector_list {
	column-count: 2;
	column-gap: 30px;
	padding-top: 10px;
	margin-bottom: 10px;
}

.content_popup .selector {
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.content_popup .selector:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	left: 0;
	top: 0;
	background: #F5F4FC;
	box-sizing: border-box;
}

.content_popup .selector.selected:before {
	border: 6px solid #4C26A3;
}

.content_popup textarea {
	height: 150px;
	margin-bottom: 30px;
}

.content_popup input[type="text"] {
	margin-bottom: 30px;
}

.content_popup .captcha input[type="text"] {
	margin-bottom: 0;
}

.content_popup button {
	width: 100%;
}

.open_login.active {
	border: 1px solid #C9B6EB;
	background: #ffffff;
}

.hide_note {
	display: none;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: #BD41B1;
}

.hide_note .info {
	font-weight: normal;
	font-size: 17px;
	line-height: 20px;
	margin-bottom: 10px;
}

.center {
	text-align: center;
	margin-bottom: 60px;
}

.item_page .item_content .item_header .hide_note {
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
}

.title_filter {
	display: none;
}

.mobile {
	display: none;
}

.menu .more_item {
	display: none;
}

.slider_popup {
	position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(65, 25, 143, 0.8);
    left: 0;
    top: 0;
    z-index: 21;
    display: none;
    align-items: center;
    justify-content: center;
}

.slider_popup .content {
	height: 90vh;
    max-height: 720px;
    width: 79.44%;
    max-width: 1144px;
    position: relative;
    padding-top: 0;
}

.slider_popup .close {
	position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 5px;
   	background: #FFFFFF;
    top: -24px;
    right: 0;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
}

.slider_popup .close:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.slider_popup .close:after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	background: #2C1162;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.slider_popup .modal_item_slider {
    width: 100%;
    margin: 0 -10px;
    height: 100%;
}

.slider_popup .modal_item_slider img {
	margin-right: 10px;
	background: #f5ebeb;
	border-radius: 10px;
}

.slider_popup .modal_item_slider .slick-list, .slider_popup .modal_item_slider .slick-track {
	height: 100%;
}

.slider_popup .modal_item_slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	z-index: 5;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
    font-size: 0;
    line-height: 0;
    outline: none;
    border: 0;
    display: block;
}

.slider_popup .modal_item_slider .slick-arrow.slick-next {
	background: #ffffff url(../icons/next.svg) center / contain no-repeat;
	background-size: 20px 20px;
	right: -50px;
}

.slider_popup .modal_item_slider .slick-arrow.slick-prev {
	left: -60px;
	background: #ffffff url(../icons/next.svg) center / contain no-repeat;
	background-size: 20px 20px;
	transform: translateY(-50%) rotate(180deg);
}

.page_404 .logo {
	margin: 0 auto;
}

.page_404 .title_404 {
	font-weight: 400;
	font-size: calc(44px - -96 * ((100vw - 360px) / (1920 - 360)));
	line-height: calc(40px - -85 * ((100vw - 360px) / (1920 - 360)));
	margin-bottom: calc(30px - -60 * ((100vw - 360px) / (1920 - 360)));
	font-family: 'Dela Gothic One';
	color: #BD41B1;
	text-align: center;
}

.page_404 .text_404 {
	font-weight: 400;
	font-size: calc(18px - -2 * ((100vw - 360px) / (1920 - 360)));
	line-height: calc(20px - -5 * ((100vw - 360px) / (1920 - 360)));
	margin: 0 auto calc(30px - -15 * ((100vw - 360px) / (1920 - 360))) auto;
	max-width: 490px;
}

.page_404 .button {
	margin: 0 auto;
	max-width: 490px;
	width: 100%;
	padding: 12px 20px 11px 20px;
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	border-radius: 5px;
}

.menu .lang_selector {
	position: relative;
	margin-right: 25px;
	font-weight: 600;
	width: 60px;
}

.lang_selector .name {
	padding-left: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.lang_selector .name.active {
	color: #BD41B1;
}

.lang_selector .name.rus {
	background: url(../icons/russia.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.lang_selector .name.srb {
	background: url(../icons/serbia.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.lang_selector .name.eng {
	background: url(../icons/united-states.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.lang_selector .name.est {
	background: url(../icons/estonia.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.lang_selector .name.tur {
	background: url(../icons/turkey.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.lang_selector .name.geo {
	background: url(../icons/georgia.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list {
	position: absolute;
	left: 0;
	top: calc(100% - -15px);
	min-width: 150px;
	white-space: nowrap;
	background: #FFFFFF;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
	display: none;
}

.menu .lang_selector .list .item_list {
	padding: 10px 70px 10px 50px;
	cursor: pointer;
	border-bottom: 1px solid #F2ECFD;
	position: relative;
	transition: all 0.3s ease;
}

.menu .lang_selector .list .item_list:last-child {
	border-bottom: 0;
}

.menu .lang_selector .list .item_list.rus {
	background: url(../icons/russia.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.srb {
	background: url(../icons/serbia.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.eng {
	background: url(../icons/united-states.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.est {
	background: url(../icons/estonia.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.tur {
	background: url(../icons/turkey.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.geo {
	background: url(../icons/georgia.svg) left 20px center / contain no-repeat;
	background-size: 20px 20px;
}

.menu .lang_selector .list .item_list.selected::after {
	position: absolute;
	content: "";
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../icons/check_2.svg) center / contain no-repeat;
}

.city_list {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
}

.city_list h4 {
	text-transform: uppercase;
	margin-bottom: 15px;
}

.city_list .list {
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
}

.city_list .list a {
	display: block;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.city_list .list a.active {
	color: #BD41B1;
}

.media_popup {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    z-index: 10;
    background: rgba(65, 25, 143, 0.8);
    display: none;
}


.media_popup .wrap_media {
	width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 50px;
}

.media_popup .slider_wrap {
	background: #FFFFFF;
    box-shadow: 0px 9px 25px rgba(121, 107, 144, 0.18), 0px 3.75998px 10.4444px rgba(121, 107, 144, 0.129394), 0px 2.01027px 5.58408px rgba(121, 107, 144, 0.107299), 0px 1.12694px 3.13039px rgba(121, 107, 144, 0.09), 0px 0.598509px 1.66253px rgba(121, 107, 144, 0.0727007), 0px 0.249053px 0.691814px rgba(121, 107, 144, 0.0506062);
    border-radius: 20px;
    margin: 0 auto;
    padding: 45px;
    position: relative;
    width: 100%;
    height: 100%;
}

.media_popup .slider {
    width: 100%;
    height: 100%;
}

.media_popup .slider .slick-list {
	width: 100%;
	height: 100%;
	max-height: 100%;
}

.media_popup .slider .slick-track {
	height: 100%;
	max-height: 100%;
}

.media_popup .slider_wrap .close {
	position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 25px;
    right: 25px;
}

.media_popup .slider_wrap .close::before, .media_popup .slider_wrap .close::after {
	position: absolute;
    content: "";
    width: 18px;
    height: 3px;
    background: #2C1162;
    left: 50%;
    top: 50%;
}

.media_popup .slider_wrap .close::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.media_popup .slider_wrap .close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.media_popup .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	line-height: 0;
	width: 35px;
	height: 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 0;
    outline: none;
    z-index: 1;
}

.media_popup .slick-arrow.slick-prev {
	left: 0;
	background: #F2ECFD url(../icons/prev.svg) center / contain no-repeat;
	background-size: 20px 20px;
}

.media_popup .slick-arrow.slick-next {
	right: 0;
	background: #F2ECFD url(../icons/next.svg) center / contain no-repeat;
	background-size: 20px 20px;
}

.catalog .wrap_item .boost {
	background: #F2ECFD;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100% - 25px);
	padding: 60px;
	text-align: center;
	font-weight: 600;
	flex-direction: column;
	transition: all 0.3s ease;
}

.icon {
	width: 30px;
	height: 30px;
	margin-bottom: 25px;
	position: relative;
}

.icon::before {
	position: absolute;
	content: "";
	width: 24px;
	height: 2px;
	background: #2C1162;
	border-radius: 1.5px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.icon::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 24px;
	background: #2C1162;
	border-radius: 1.5px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.col .button.add {
	margin-bottom: 15px;
}

.col .button.add span {
	position: relative;
	padding-left: 25px;
}

.col .button.add span::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	background: #2C1162;
	border-radius: 1px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.col .button.add span::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 10px;
	background: #2C1162;
	border-radius: 1px;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.top_slider .wrap_item.last {
	background: #F2ECFD;
	border-radius: 5px;
	padding: calc(10px + 5 * ((100vw - 360px) / (1920 - 360)));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	font-size: calc(14px + 1 * ((100vw - 360px) / (1920 - 360)));
	line-height: 20px;
	order: 1;
}

.top_slider .wrap_item.last .icon {
	margin-bottom: calc(5px + 5 * ((100vw - 360px) / (1920 - 360)));
	width: calc(20px + 10 * ((100vw - 360px) / (1920 - 360)));
	height: calc(20px + 10 * ((100vw - 360px) / (1920 - 360)));
}

.lk_menu {
	width: 230px;
	margin-right: 30px;
}

.lk_menu .button {
	width: 100%;
}

.lk_menu .list_menu {
	margin-bottom: 15px;
}

.lk_menu .list_menu a {
	display: block;
	transition: all 0.3s ease;
	padding: 15px 20px;
	font-weight: 600;
	border-radius: 5px;
}

.lk_menu .list_menu a::after {
	display: inline;
	content: attr(data-lk);
	color: #A59BC0;
	padding-left: 5px;
}

.lk_menu .list_menu a.active {
	background: #F5F4FC;
}

header nav a:not(.button) {
	margin-right: 10px;
	font-weight: 600;
}

header .button.light:last-child {
	margin-right: 0;
}

.sorting_lk {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sorting_lk a {
	display: block;
	margin-right: 15px;
	color: #A59BC0;
}

.sorting_lk a.active {
	color: #2C1162;
}

.statistics_small {
	margin-bottom: 45px;
	display: flex;
	margin-right: -10px;
	hyphens: auto;
	word-break: break-word;
}

.item_stat {
	background: #F2ECFD;
	border-radius: 5px;
	padding: 20px;
	margin-right: 10px;
	width: calc((100% / 3) - 10px);
}

.item_stat span {
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	display: block;
}

.catalog .item .top_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 15px;
}

.catalog .item .bottom_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 15px;
}

.catalog .item .top_item .selector {
	width: 50px;
	height: 30px;
	background: #A59BC0;
	border-radius: 35px;
	cursor: pointer;
	font-size: 15px;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.catalog .item .top_item .selector::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #FFFFFF;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.catalog .item .top_item .selector.active {
	background: #4C26A3;
}

.catalog .item .top_item .selector.active::after {
	display: inline-block;
	content: "Опубликовано";
	padding-left: 60px;
}

.catalog .item .top_item .selector.active::before {
	background: #FCBBF7;
	left: calc(100% - 25px);
}

.catalog .item .top_item .price {
	font-weight: 600;
}

.catalog .item .bottom_item .selector {
	width: 50px;
	height: 30px;
	background: #A59BC0;
	border-radius: 35px;
	cursor: pointer;
	font-size: 15px;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.catalog .item .bottom_item .selector::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #FFFFFF;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.catalog .item .bottom_item .selector.active {
	background: #4C26A3;
}

.catalog .item .bottom_item .selector::after {
	display: inline-block;
	content: "Отзывы отключены";
	padding-left: 60px;
	white-space: nowrap;
}

.catalog .item .bottom_item .selector.active::after {
	display: inline-block;
	content: "Отзывы включены";
	padding-left: 60px;
}

.catalog .item .bottom_item .selector.active::before {
	background: #FCBBF7;
	left: calc(100% - 25px);
}

.catalog .item .bottom_item .price {
	font-weight: 600;
}

.balance_info {
	border: 1px solid #EBE3FB;
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.balance_info .button {
	width: auto;
}

.balance_info .info {
	padding-bottom: 15px;
	border-bottom: 1px solid #F2ECFD;
	margin-bottom: 15px;
	position: relative;
	width: 100%;
}

.balance_info .info:first-child {
	width: 75px;
	padding-right: 10px;
	border-bottom: 0;
	position: relative;
}

.balance_info .info:first-child::after {
	position: absolute;
	content: "";
	width: calc(230px - 50px);
	left: 0;
	bottom: 0;
	height: 1px;
	background: #F2ECFD;
}

.balance_info .info:last-child {
	margin-bottom: 0;
	padding: 0 30px 0 0;
	border-bottom: 0;
}

.balance_info .info span {
	font-weight: 600;
	display: block;
}

.balance_info .info span.info_label {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.balance_info .top_info .info {
	padding-top: 0;
	border: 0;
	margin-bottom: 0;
	margin-right: 10px;
	padding-right: 0;
}

.invitation {
	background: #4C26A3;
	border-radius: 5px;
	padding: 30px 20px;
	text-align: center;
	color: #FCBBF7;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
}

h6 {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 5px;
	font-family: 'Dela Gothic One';
}

.invitation span {
	color: #FFFFFF;
	margin-bottom: 5px;
	display: block;
}

.invitation input[type="text"] {
	padding: 10px 15px;
	margin-bottom: 10px;
	margin-top: 25px;
}

.invitation .button {
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.catalog .item .buttons.lk .button:first-child {
	width: calc(50% - 5px);
	margin-right: 5px;
	margin-bottom: 5px;
}

.catalog .item .buttons.lk .button:nth-child(2) {
	width: 50%;
	margin-bottom: 5px;
}

.catalog .item .buttons.lk .button:last-child {
	width: 100%;
}

.registration_page .logo {
	margin: 0 auto;
}

.registration_form {
	max-width: 490px;
	margin: 0 auto;
}

.registration_form .title {
	display: flex;
	align-items: flex-end;
	margin-bottom: 45px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.registration_form .title a {
	color: #4C26A3;
}

.registration_form .title h1 {
	margin-bottom: 0;
}

.registration_form .wrap_input {
	margin-bottom: 30px;
}

.registration_form .agree {
	margin-top: 45px;
}

.registration_form .input_name {
	font-weight: 400;
	margin-bottom: 10px;
}

.registration_form .button {
	width: 100%;
}

.registration_form .wrap_input .footnote {
	display: block;
	padding-bottom: 15px;
	margin-top: 10px;
	color: #4C26A3;
}

.link_selector a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 80px 10px 10px;
	border: 1px solid #EBE3FB;
	border-radius: 5px;
	margin-bottom: 10px;
	position: relative;
}

.link_selector a:last-child {
	margin-bottom: 0;
}

.link_selector .icon_link {
	width: 175px;
	height: 60px;
	margin-right: 30px;
}

.link_selector .text {
	width: calc(100% - 205px);
}

.link_selector .title {
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.link_selector .tooltip_img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	z-index: 1;
}

.link_selector .footnote_title {
	font-size: 15px;
	color: #9A91AA;
}

.link_selector .footnote_title span {
	color: #BD41B1;
}

.image_tooltip {
	position: fixed;
	z-index: 1;
	width: 25vw;
	z-index: 10;
	margin-left: 20px;
	display: none;
}

.small_popup .content_popup {
	max-width: 620px;
}

.small_popup .content_popup h2 {
	margin-bottom: 45px;
}

.text_small_popup {
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 45px;
}

.share_links {
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
}

.share_links .copy {
	background: #F5F4FC;
	border-radius: 5px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px 10px 25px;
}

.share_links .copy .link {
	margin-right: 20px;
	max-width: calc(100% - 60px);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.share_links a {
	display: flex;
	background: #F2ECFD;
	border-radius: 5px;
	margin-bottom: 10px;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.share_links a svg {
	margin-right: 10px;
	width: 25px;
	height: 25px;
}

.share_links a:last-child {
	margin-bottom: 0;
}

.small_popup nav {
	display: flex;
	align-items: center;
}

.small_popup nav .button {
	margin-right: 10px;
	width: calc(50% - 5px);
}

.small_popup nav .button:last-child {
	margin-right: 0;
}

.pagination:not(:last-child) {
	margin-bottom: 45px;
	padding-bottom: 45px;
	border-bottom: 1px solid #F2ECFD;
}

.personal_page  .catalog .wrap_item .buttons span {
	color: #E11900;
	font-weight: 600;
	display: block;
	padding: 10px 15px;
	margin-bottom: 5px;
	text-align: center;
	width: 100%;
}

.personal_page .catalog .wrap_item .buttons .button {
	width: 100%;
}

.wrap_catalog.disabled_catalog .item nav, .catalog .wrap_catalog.disabled_catalog .item .img_item .progressive, .catalog .wrap_catalog.disabled_catalog .item .item_info_list {
	opacity: 0.5;
}

.show_blocked {
	margin: 0 auto;
	display: block;
	width: fit-content;
	min-width: 230px;
}

.wrap_item .delete_item {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	left: 5px;
	top: 5px;
	cursor: pointer;
	background: #F2ECFD url(../icons/close.svg) center / contain no-repeat;
	background-size: 20px 20px;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 1px 0px rgba(0, 0, 0, 0.04);
	z-index: 3;
	transition: all 0.3s ease;
	display: block;
}

.wrap_catalog.disabled_catalog {
	margin-bottom: 0;
}

.catalog .wrap_catalog.disabled_catalog .wrap_item {
	margin-bottom: 0;
	padding-bottom: 0;
}

.catalog .wrap_catalog.disabled_catalog .wrap_item:after {
	display: none;
}

.btn_slide {
	display: none;
}

.content.inner_page {
	display: block;
}

.inner_page .wrap_lk_menu {
	display: none;
}

.section_inner_page {
	display: flex;
	align-items: flex-start;
	font-size: 20px;
	line-height: 25px;
}

.content_inner_page {
	width: calc(100% - 520px);
	margin-right: 30px;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
	align-self: stretch;
}

.content_inner_page .text {
	margin-bottom: 30px;
}

.content_inner_page .add_media label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	padding: 30px;
	border-radius: 5px;
	background: #F2ECFD;
	min-height: 120px;
}

.content_inner_page .add_media .icon {
	margin: 0 auto 10px auto;
}

.section_inner_page nav {
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
	font-size: 17px;
	line-height: 20px;
	width: 490px;
}

.inner_page .item_info {
	display: flex;
	align-items: center;
}

.inner_page .item_info:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #F2ECFD;
}

.inner_page .item_info .image {
	width: 55px;
	height: 55px;
	border-radius: 5px;
	overflow: hidden;
	margin-right: 15px;
}

.inner_page .item_info .image img {
	object-position: top;
	object-fit: cover;
}

.inner_page .item_info .info {
	width: calc(100% - 70px);
	color: #9A91AA;
	font-size: 15px;
}

.inner_page .item_info .name {
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
	color: #BD41B1;
}

.inner_page .info_text {
	padding-top: 30px;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 60px;
}

.content_inner_page .add_media span {
	position: relative;
	width: 310px;
	height: 410px;
	border-radius: 5px;
	overflow: hidden;
	display: block;
}

.content_inner_page .add_media span img {
	object-fit: cover;
}

.content_inner_page .add_media span .delete {
	border-radius: 5px;
	cursor: pointer;
	overflow: hidden;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 5px;
	top: 5px;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 1px 0px rgba(0, 0, 0, 0.04);
	z-index: 1;
	background: #F2ECFD url(../icons/close.svg) center / contain no-repeat;
	background-size: 20px 20px;
}

.content_inner_page .send.button {
	display: none;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
	padding: 15px 20px;
	margin-top: 30px;
}

.content.inner_page h1 {
	margin-bottom: 60px;
}

.content_inner_page .full.button {
	width: 100%;
}

.content_inner_page .header_inner_page {
	display: flex;
	align-items: flex-start;
	padding-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
	margin-bottom: 30px;
}

.content_inner_page .header_inner_page .title_header {
	margin-right: 30px;
	flex-grow: 1;
}

.content_inner_page .header_inner_page span {
	display: block;
	margin-right: 30px;
	font-weight: 600;
	white-space: nowrap;
}

.content_inner_page .header_inner_page span:last-child {
	margin-right: 0;
}

.content_inner_page .wrap_selector {
	margin-bottom: 30px;
}

.content_inner_page .title_selector {
	font-weight: 600;
	margin-bottom: 10px;
}

.amount_selector {
	display: flex;
	align-items: center;
	border-radius: 5px;
	background: #F5F4FC;
	padding: 15px 20px;
}

.amount_selector .minus {
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: relative;
}

.amount_selector .minus::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #2C1162;
	border-radius: 2px;
}

.amount_selector .plus {
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: relative;
}

.amount_selector .plus::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #2C1162;
	border-radius: 2px;
}

.amount_selector .plus::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 10px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #2C1162;
	border-radius: 2px;
}

input[type="number"] {
	border: 0;
	outline: none;
	width: 100%;
	font-family: 'Source Sans 3';
	font-size: 20px;
	line-height: 25px;
	font-weight: 400;
	color: #2C1162;
	background: #F5F4FC;
	padding: 0 30px;
	-moz-appearance: textfield;
	-webkit-appearance: none;
	margin: 0;
	text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	display: none;
}

input[type="number"]:hover, input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

.amount_selector input[type="number"] {
	width: calc(100% - 40px);
}

.section_inner_page nav .price_info {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #F2ECFD;
}

.section_inner_page nav .price_info .val {
	font-size: 60px;
	line-height: 60px;
}

.section_inner_page nav .price_info .val span {
	font-size: 20px;
	line-height: 25px;
	font-weight: 600;
}

.section_inner_page nav .balance {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section_inner_page nav .val {
	font-size: 40px;
	font-weight: 600;
	line-height: 40px;
}

.section_inner_page nav .val span {
	font-size: 20px;
	line-height: 25px;
	font-weight: 600;
}

.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item {
	padding-bottom: 30px;
}

.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:nth-last-child(-n+3) {
	margin-bottom: 0;
	padding-bottom: 0;
}

.statistic_table {
	margin-bottom: 45px;
	display: flex;
}

.statistic_table .static_col {
	width: 245px;
}

.statistic_table .col {
	width: calc(100% - 245px);
}

.statistic_table .head_table {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #F2ECFD;
}

.statistic_table .head_table .name {
	font-weight: 600;
	padding-right: 15px;
}

.statistic_table .tr {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	margin-right: -15px;
}

.statistic_table .tr:last-child {
	margin-bottom: 0;
}

.statistic_table .th {
	margin-right: 15px;
	width: calc((100% / 7) - 15px);
	font-weight: 600;
}

.statistic_table .th span {
	font-weight: 400;
	color: #A59BC0;
}

.statistic_table .item_table {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #F2ECFD;
}

.statistic_table .item_table:last-child {
	margin-bottom: 0;
}

.statistic_table .item_info {
	display: flex;
	padding-right: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #F2ECFD;
}

.statistic_table .item_info:last-child {
	margin-bottom: 0;
}

.statistic_table .item_info .info {
	width: 170px;
	margin-right: 15px;
}

.statistic_table .info .phone {
	display: block;
	color: #9A91AA;
	font-size: 15px;
}

.statistic_table .image {
	display: block;
	width: 115px;
	height: 115px;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 5px;
}

.statistic_table .image img {
	object-fit: cover;
	object-position: top;
}

.statistic_table .title_info {
	display: block;
	font-weight: 600;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
}

.statistic_table .col_icons {
	width: 45px;	
}

.statistic_table .icon_item {
	width: 20px;
	height: 20px;
	margin-bottom: 15px;
}

.statistic_table .icon_item:last-child {
	margin-bottom: 0;
}

.statistic_table .td {
	margin-right: 15px;
	width: calc((100% / 7) - 15px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: default;
}

.inner_section {
	border-radius: 5px;
	border: 1px solid #EBE3FB;
	padding: 45px;
}

.inner_section h1 {
	margin-bottom: 45px;
}

.inner_section .wrap_section {
	margin-bottom: 45px;
}

.inner_section .item_news {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
}

.inner_section .item_news:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.inner_section .item_news .date {
	color: #9A91AA;
	margin-bottom: 10px;
}

.inner_section .item_news h5 {
	color: #2C1162;
}

.inner_section .item_news .text {
	font-size: 20px;
	line-height: 25px;
}

.inner_section .item_profile {
	padding-bottom: 45px;
	margin-bottom: 45px;
	border-bottom: 1px solid #F2ECFD;
}

.inner_section .item_profile:nth-last-child(2) {
	border-bottom: 0;
	padding-bottom: 0;
}

.inner_section .item_profile .wrap_input:not(:last-child) {
	margin-bottom: 30px;
}

.inner_section .item_profile .title_input {
	margin-bottom: 10px;
}

.inner_section .item_profile .wrap_input input {
	padding: 15px;
	font-size: 17px;
	line-height: 20px;
}

.inner_section .save {
	display: block;
}

.inner_section .send {
	display: block;
}

input[type="password"] {
	padding: 15px;
    font-size: 17px;
    line-height: 20px;
	border: 0;
    outline: none;
    width: 100%;
    font-family: 'Source Sans 3', sans-serif;
    color: #2C1162;
    background: #F5F4FC;
    border-radius: 5px;
}

.inner_section .item_profile h5 {
	color: #2C1162;
	margin-bottom: 30px;
}

button.l_size, .button.l_size {
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}

.button.whatswpp span {
	padding-left: 35px;
	background: url(../icons/whatsapp.svg) left 0 center / contain no-repeat;
	background-size: 25px 25px;
	display: inline-block;
}

.button.telegram span {
	padding-left: 35px;
	background: url(../icons/telegram.svg) left 0 center / contain no-repeat;
	background-size: 25px 25px;
	display: inline-block;
}

.inner_section .item_profile .fields {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.inner_section .item_profile .fields:last-child {
	margin-bottom: 0;
}

.inner_section .item_profile .fields .button {
	margin-right: 10px;
	width: calc(50% - 5px);
}

.inner_section .item_profile .fields .button:last-child {
	margin-right: 0;
}

.inner_section .item_profile .fields .wrap_input {
	margin: 0 30px 0 0;
	width: calc(50% - 15px);
}

.inner_section .item_profile .fields .wrap_input:last-child {
	margin-right: 0;
}

.droplist {
	position: relative;
}

.droplist .name {
	position: relative;
	border-radius: 5px;
	background: #F5F4FC url(../icons/arrow_d.svg) right 15px center / contain no-repeat;
	background-size: 20px 20px;
	padding: 13px 43px 13px 18px;
	cursor: pointer;
	border: 2px solid #F5F4FC;
}

.droplist .name.active {
	background: #ECEAF8 url(../icons/arrow_d.svg) right 15px center / contain no-repeat;
	background-size: 20px 20px;
}

.droplist .name.error {
	border-color: #F24B55;
}

.droplist .list {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 100%;
	z-index: 1;
	background: #F5F4FC;
	display: none;
	max-height: 150px;
	overflow: hidden;
	overflow-y: auto;
}

.droplist .list a {
	display: block;
	padding: 15px 45px 15px 20px;
	transition: all 0.3s ease;
}

.droplist .list a.checked {
	background: url(../icons/check_2.svg) right 15px center / contain no-repeat;
	background-size: 20px 20px;
}

.inner_section .item_profile textarea {
	height: 150px;
	padding: 15px;
	font-size: 17px;
	font-weight: 400;
	line-height: 20px;
}

.section_new_page {
	width: calc(100% - 390px);
	margin-right: 30px;
}

.col_new_page {
	width: 360px;
	padding-top: 10px;
}

ul.requirements li {
	display: block;
	margin-bottom: 15px;
	padding-left: 25px;
	background: url(../icons/bullet.svg) left 0 top 0 / contain no-repeat;
	background-size: 20px 20px;
}

ul.requirements li:last-child {
	margin-bottom: 0;
}

.item_section {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #F2ECFD;
}

.item_section .fields {
	display: flex;
	align-items: flex-start;
	margin: 0 -30px 30px 0;
}

.item_section .fields .col_flex {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - (100% / 3) - 30px);
}

.item_section .fields .col_flex .wrap_input {
	width: calc(50% - 30px);
}

.item_section #profileform-tg {
	padding-left: 40px;
}

.item_section .fields .col_flex .field-profileform-tg {
	position: relative;
}

.item_section .fields .col_flex .field-profileform-tg::before {
	position: absolute;
	content: "@";
	left: 15px;
	bottom: 25px;
}

.item_section .fields .col_flex .selector {
	width: 100%;
}

.item_section .col_flex .selector .hiddden_el.time {
	max-width: 360px;
}

.item_section .fields.max {
	margin-right: 0;
}

.item_section .fields:last-child {
	margin-bottom: 0;
}

.item_section .fields .wrap_input {
	width: calc((100% / 3) - 30px);
	margin-right: 30px;
}

.item_section .fields.max .wrap_input {
	width: 100%;
	margin-right: 0;
}

.item_section .title_input {
	margin-bottom: 10px;
}

.item_section input {
	padding: 13px;
    font-size: 17px;
    line-height: 20px;
	margin-bottom: 10px;
	border: 2px solid #F5F4FC;
}

.item_section input.error {
	border-color: #F24B55;
}

.item_section input:last-child {
	margin-bottom: 0;
}

.item_section .footnote {
	color: #9A91AA;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	display: flex;
	justify-content: space-between;
}

.item_section .footnote span:first-child {
	margin-right: 10px;
}

.item_section h3 {
	color: #2C1162;
}

.section_new_page h1 {
	margin-bottom: 60px;
}

.item_section .selector {
	padding-top: 10px;
}

.item_section .checkbox {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
}

.item_section .checkbox::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: #F5F4FC;
	border-radius: 5px;
}

.item_section .checkbox.checked::before {
	background: #4C26A3 url(../icons/check.svg) center / contain no-repeat;
	background-size: 12px 12px;
}

.item_section .fields.min .wrap_input {
	width: calc((50% / 3) - 30px);
}

.item_section .fields.min .wrap_input.wrap_selector {
	width: calc(50% - 30px);
}

.touch_selector {
	display: flex;
	align-items: center;
	border-radius: 5px;
	overflow: hidden;
}

.touch_selector .item_t {
	width: calc(100% / 7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px;
	background: #F5F4FC;
	transition: all 0.3s ease;
	border: 2px solid #F5F4FC;
}

.touch_selector .item_t.error {
	background-color: #F24B55;
}

.touch_selector .item_t.selected {
	background: #4C26A3;
	color: #FFFFFF;
}

.check_list {
	display: flex;
	margin-bottom: 30px;
}

.check_list .wrap_check {
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
	margin-right: 30px;
	width: calc(50% - 15px);
}

.check_list .wrap_check.error {
	border: 2px solid #F24B55;
}

.check_list .wrap_check:last-child {
	margin-right: 0;
}

.check_list .wrap_check .flex_wrap {
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -15px -15px 0;
	padding-top: 30px;
	display: none;
}

.check_list .wrap_check:first-child .flex_wrap {
	margin-bottom: 0;
}

.check_list .wrap_check .map_section {
	width: 100%;
	padding-top: 15px;
}

.check_list .wrap_check .map_section .checkbox {
	margin-bottom: 10px;
	font-weight: 600;
}

.check_list .wrap_check .map_section .foontote_checkbox {
	font-size: 15px;
	line-height: 20px;
	padding-left: 30px;
}

.check_list .wrap_check .map_section .map_selector {
	width: 100%;
	height: 300px;
	margin-top: 15px;
	display: none;
}

.check_list .wrap_check .flex_wrap .wrap_input {
	width: calc(25% - 15px);
	margin: 0 15px 15px 0;
	position: relative;
	min-width: 95px;
	flex-grow: 1;
}

.check_list .wrap_check .flex_wrap .wrap_input::after {
	position: absolute;
	content: attr(data-price);
	right: 15px;
	bottom: 15px;
	font-size: 17px;
	line-height: 20px;
	color: #A59BC0;
}

.check_list .wrap_check .flex_wrap .wrap_input input {
	padding-right: 25px;
	margin-bottom: 0;
}

.item_section h4 {
	margin-bottom: 15px;
}

.wrap_pays_list {
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
}

.wrap_pays_list .pays_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px -30px 0;
}

.wrap_pays_list .pays_list .checkbox {
	margin: 0 30px 30px 0;
}

.slide_list {
	margin-bottom: 25px;
}

.slide_list:last-child {
	margin-bottom: 0;
}

.slide_list .name {
	position: relative;
	padding-left: 40px;
	font-family: "Dela Gothic One";
	font-size: 22px;
	font-weight: 400;
	line-height: 30px;
	cursor: pointer;
}

.slide_list .name::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/next_m.svg) center / contain no-repeat;
}

.slide_list .name.active::before {
	transform: translateY(-50%) rotate(90deg);
}

.slide_list .list {
	display: none;
	padding: 15px 0 30px 40px;
}

.slide_list .list .footnote_name {
	margin-bottom: 30px;
}

.slide_list .list .item_check {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	min-height: 40px;
}

.slide_list .list .item_check:last-child {
	margin-bottom: 0;
}

.slide_list .list .checkbox {
	margin-right: 10px;
}

.slide_list .list .hiddden_el {
	display: none;
	align-items: center;
	position: relative;
}

.slide_list .list .hiddden_el::before {
	display: inline-block;
	content: "+";
	margin-right: 10px;
	font-size: 17px;
	font-weight: 400;
	line-height: 20px; 
}

.slide_list .list .hiddden_el::after {
	position: absolute;
	content: attr(data-price);
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	color: #A59BC0;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}

.slide_list .list .hiddden_el input {
	padding: 10px 15px;
	font-size: 15px;
	width: 80px;
}

.item_section .title_wrap {
	margin-bottom: 30px;
}

.item_section .title_wrap h3 {
	margin-bottom: 15px;
}

.item_section .photo_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px 15px 0;
}

.item_section .add_photo {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	border-radius: 5px;
	background: #F2ECFD;
	margin: 0 5px 15px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	width: 155px;
	text-align: center;
	height: 205px;
	border: 2px solid #F2ECFD;
}

.item_section .add_photo.error {
	border-color: #F24B55;
}

.item_section .add_photo .icon {
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
	background: url(../icons/stepper_2.svg) center / contain no-repeat;
}

.item_section .photo_list .photo_wrap {
	margin: 0 5px 15px 0;
	width: 155px;
	height: 205px;
	position: relative;
	overflow: hidden;
}

.item_section .photo_list .photo_wrap img {
	display: block;
	object-position: top;
}

.item_section .photo_list .photo_wrap .delete {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	overflow: hidden;
	background: #F2ECFD url(../icons/close.svg) center / contain no-repeat;
	background-size: 20px 20px;
	left: 5px;
	top: 5px;
	z-index: 1;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 1px 0px rgba(0, 0, 0, 0.04);
	cursor: pointer;
}

.item_section .photo_add .checkbox {
	font-weight: 600;
}

.wrap_pays_list.photo_add {
	display: flex;
	margin-bottom: 30px;
}

.wrap_pays_list.photo_add .wrap_info {
	max-width: 420px;
	margin-right: 30px;
}

.wrap_pays_list.photo_add .wrap_info .info {
	padding: 10px 0 0 30px;
	display: none;
}

.item_section .wrap_pays_list.photo_add .add_photo {
	display: none;
}

.item_section textarea {
	padding: 15px;
	height: 150px;
	margin-bottom: 10px;
}

.item_section.reviews .checkbox {
	font-weight: 600;
	margin-bottom: 5px;
}

.item_section.reviews .footnote {
	padding-left: 30px;
	color: #2C1162;
	font-size: 17px;
}

.item_section .checkbox a {
	text-decoration-line: underline;
	color: #4C26A3;
}

.section_new_page .add_btn {
	display: block;
	margin-bottom: 30px;
	width: 100%;
}

.item_section.personal_data {
	padding-bottom: 0;
	border-bottom: 0;
}

.text_footnote_btn {
	text-align: center;
}

.text_footnote_btn span {
	display: block;
}

.text_footnote_btn span.error {
	display: none;
	color: #F24B55;
}

.video_wrap {
	position: relative;
	width: 490px;
	height: 275px;
	border-radius: 5px;
	overflow: hidden;
}

.video_wrap .delete {
	position: absolute;
	z-index: 2;
	border-radius: 5px;
	background: #F2ECFD url(../icons/close.svg) center / contain no-repeat;
	background-size: 20px 20px;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 1px 0px rgba(0, 0, 0, 0.04);
	left: 5px;
	top: 5px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}

.video_wrap .preview {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.video_wrap .preview video {
	width: 100%;
	height: 100%;
}

.video_wrap .preview img {
	object-fit: cover;
}

.video_wrap .play {
	position: absolute;
	z-index: 2;
	width: 40px;
	height: 40px;
	cursor: pointer;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(../icons/play.svg) center / contain no-repeat;
}

.item_section .selector .hiddden_el.time {
	padding-top: 20px;
	display: none;
	align-items: center;
	justify-content: space-between;
}

.item_section .selector .hiddden_el.time .form-group {
	width: calc(50% - 10px);
}

.item_section .selector .hiddden_el.time input {
	margin-bottom: 0;
	width: 100%;
}

select.drop {
	display: none;
}

.item_section h4.inf {
	color: #BD41B1;
}

.content_inner_page.content_page_added {
	padding: 0;
	border: 0;
	border-radius: 0;
}

.content_page_added .page_added_note {
	margin-bottom: 60px;
}

.content_page_added .page_added_note .text {
	margin-bottom: 30px;
}

.content_page_added .page_added_note .links {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.content_page_added .page_added_note .links a {
	display: block;
	padding-right: 25px;
	margin-right: 30px;
	background: url(../icons/next_m.svg) right 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.content_page_added .promotion_section {
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
}

.content_page_added .promotion_section h3 {
	color: #2C1162;
}

.item_promotion {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #F2ECFD;
	line-height: 20px;
}

.pre_added .item_promotion {
	border-bottom: 0;
}

.item_promotion:nth-last-child(2) {
	border-bottom: 0;
	padding-bottom: 10px;
}

.item_promotion .checkbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
	padding-left: 30px;
	position: relative;
	font-weight: 600;
	cursor: pointer;
}

.item_promotion .checkbox::before {
	position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #F5F4FC;
    border-radius: 5px;
}

.item_promotion .checkbox.checked::before {
	background: #4C26A3 url(../icons/check.svg) center / contain no-repeat;
    background-size: 12px 12px;
}

.item_promotion .footnote_check {
	padding-left: 30px;
}

.item_promotion .wrap_selector.hidden {
	max-width: 300px;
	padding: 20px 0 0 30px;
	display: none;
	margin-bottom: 0;
}

.item_promotion .message {
	color: #9A91AA;
	padding: 10px 0 0 30px;
	display: none;
}

.promotion_section .full.button {
	display: none;
}

.section_inner_page nav.mobile_nav {
	display: none;
}

.flex_button {
	display: flex;
}

.flex_button .button:first-child {
	margin-right: 15px;
}

.ballance_section {
	border-radius: 5px;
	border: 1px solid #EBE3FB;
	padding: 30px;
	max-width: 1240px;
}

.ballance_section .item_selector {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
	margin-bottom: 10px;
	font-weight: 600;
}

.ballance_section .item_selector .item {
	width: calc((100% / 6) - 20px);
	margin: 0 20px 20px 0;
	padding: 10px 15px 15px 15px;
	border-radius: 5px;
	background: #F2ECFD;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ballance_section .item_selector .item.selected {
	background: #4C26A3;
}

.ballance_section .item_selector .val:not(:last-child) {
	margin-bottom: 5px;
}

.ballance_section .item_selector .item.selected .val {
	color: #FFFFFF;
}

.ballance_section .item_selector .label {
	margin-bottom: 25px;
	font-size: 13px;
	font-weight: 600;
	line-height: 15px;
	color: #FFFFFF;
	padding: 2px 5px 3px 5px;
	border-radius: 5px;
	background: #BD41B1;
	margin-top: -20px;
}

.ballance_section .item_selector .footnote_val {
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	color: #BD41B1;
	text-align: center;
}

.ballance_section .item_selector .item.selected .footnote_val {
	color: #CEB5FF;
}

.ballance_section .item_selector .footnote_val span {
	font-weight: 600;
}

.ballance_section .button {
	min-width: 280px;
} 

.ballance_section .button.next {
	min-width: 280px;
	text-align: left;
	padding: 15px 60px 15px 20px;
	position: relative;
}

.ballance_section .button.next::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../icons/next_p.svg) center / contain no-repeat;
}

.ballance_page h1 {
	margin-bottom: 30px;
}

.ballance_page .current_val {
	margin-bottom: 60px;
	color: #BD41B1;
	font-size: 20px;
	line-height: 25px;
}

.ballance_page .current_val span {
	font-weight: 600;
}

.ballance_section h3 {
	color: #2C1162;
}

.ballance_section .text {
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 20px;
}

.ballance_section:not(:last-child) {
	margin-bottom: 10px;
}

.ballance_section h3 span {
	color: #BD41B1;
	padding-right: 20px;
}

.wrap_code {
	display: flex;
}

.wrap_code input[type="text"] {
	padding: 15px 20px 15px 25px;
	max-width: 380px;
	margin-right: 10px;
}

.wrap_code.disabled .button {
	color: #A59BC0;
	cursor: default;
	background: #635995;
}

.ballance_check {
	display: flex;
	align-items: center;
}

.ballance_check h3 {
	margin-right: 15px;
	width: calc(100% - 315px);
	margin-bottom: 0;
}

.ballance_check .button {
	flex-grow: 1;
}

.ballance_check h3 span {
	color: #BD41B1;
}

.top_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.top_nav h1 {
	margin: 0 20px 0 0;
	max-width: calc(100% - 150px);
}

.opinions_list {
	margin-bottom: 30px;
}

.opinions_list .item {
	margin-bottom: 15px;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #EBE3FB;
}

.opinions_list .item:last-child {
	margin-bottom: 0;
}

.opinions_list .item .top_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.opinions_list .item .top_item h3 {
	margin-bottom: 0;
	color: #2C1162;
	margin-right: 5px;
}

.opinions_list .item .top_item .inf {
	font-family: "Dela Gothic One";
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	padding-left: 20px;
	background: url(../icons/bubble.svg) left 0 center / contain no-repeat;
	background-size: 15px 15px;
}

.opinions_list .item .content_section {
	display: flex;
}

.opinions_list .item .image {
	width: 155px;
	height: 205px;
	margin-right: 30px;
	border-radius: 5px;
	overflow: hidden;
}

.opinions_list .item .image img {
	display: block;
	object-fit: cover;
	object-position: center;
}

.opinions_list .item .text_block {
	width: calc(100% - 185px);
}

.opinions_list .item .title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}

.opinions_list .item .rating_scale {
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding-left: 5px;
}

.opinions_list .item .rating_scale span {
	width: 20px;
    height: 20px;
    display: block;
    background: url(../icons/rate.svg) center / contain no-repeat;
    opacity: 0.3;
}

.opinions_list .item .rating_scale span.active {
	opacity: 1;
}

.opinions_list .item .sum {
	padding-left: 10px;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Dela Gothic One';
}

.opinions_list .item .date {
	font-size: 15px;
	line-height: 20px;
	color: #9A91AA;
	margin-bottom: 15px;
}

.opinions_list .item .text {
	margin-bottom: 30px;
}

.opinions_list .item .rating_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -5px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
}

.opinions_list .item .rating_list .item_rat {
	padding: 5px 10px 5px 25px;
    position: relative;
    background: #F2ECFD url(../icons/stepper_m.svg) left 5px center / contain no-repeat;
	background-size: 20px 20px;
    border-radius: 5px;
    margin: 0 5px 5px 0;
}

.opinions_list .item .rating_list .item_rat.negative {
	background: #F2ECFD url(../icons/stepper_down.svg) left 5px center / contain no-repeat;
	background-size: 20px 20px;
}

.catalog .item .img_item .info_nav {
	position: absolute;
	z-index: 1;
	left: 5px;
	top: 5px;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 15px;
	font-weight: 600;
	margin-right: -3px;
}

.catalog .item .img_item .media_nav {
	position: absolute;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	left: 5px;
	bottom: 5px;
	font-size: 13px;
	line-height: 15px;
	font-weight: 600;
	margin-right: -3px;
}

.item_section .wrap_title {
	margin-bottom: 30px;
}

.item_section .wrap_title h3 {
	margin-bottom: 10px;
}

.item_section .wrap_title .footnote_title .label {
	font-size: 13px;
	font-weight: 600;
	line-height: 15px;
	border-radius: 4px;
	background: #F6E6CD;
	padding: 5px 7px;
	color: #C77F15;
	margin-left: 5px;
	display: inline-block;
}

.statistic_table.full_statistic .static_col {
	width: 185px;
}

.statistic_table.full_statistic .head_table {
	padding-bottom:0;
    margin-bottom: 0;
    border-bottom: 0;
}

.statistic_table.full_statistic .col {
	width: calc(100% - 185px);
}

.statistic_table.full_statistic .tr {
	flex-wrap: wrap;
}

.statistic_table.full_statistic .th {
	font-weight: 400;
	width: auto;
	padding-left: 25px;
	margin-bottom: 10px;
	margin-right: 30px;
}

.statistic_table.full_statistic .th_1 {
	background: url(../icons/icon_1.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.statistic_table.full_statistic .th_2 {
	background: url(../icons/icon_2.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.statistic_table.full_statistic .th_3 {
	background: url(../icons/icon_3.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.statistic_table.full_statistic .th_4 {
	background: url(../icons/icon_4.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.statistic_table.full_statistic .th_5 {
	background: url(../icons/icon_5.svg) left 0 center / contain no-repeat;
	background-size: 20px 20px;
}

.statistic_table.full_statistic .head_table .name {
	padding-right: 0;
	margin-right: 15px;
	margin-bottom: 10px;
}

.statistic_table.full_statistic {
	margin-bottom: 35px;
}

.flex_items {
    display: flex;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 20px;
}

.flex_items h3 {
    color: #2C1162;
    margin-bottom: 5px;
    text-align: center;
}

.flex_items .item {
    margin-right: 30px;
    width: calc(50% - 15px);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #EBE3FB;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.flex_items .item.active {
    border: 2px solid #4C26A3;
}

.flex_items .item.active::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: 15px;
    right: 15px;
    background: url(../icons/check_2.svg) center / contain no-repeat;
}

.flex_items .item:last-child {
    margin-right: 0;
}

.flex_items .item .wrpap_content {
    margin-bottom: 20px;
}

.flex_items .item .wrpap_content span {
    font-weight: 600;
}

.flex_items .item .section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2ECFD;
}

.flex_items .item .section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.flex_items .item .price {
    text-align: center;
    font-weight: 600;
}

.flex_items .item .title {
    font-weight: 600;
    margin-bottom: 15px;
}

.flex_items .item .item_promotion {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.flex_items .item .item_promotion span {
    white-space: nowrap;
    padding-left: 10px;
}

.flex_items .item .button {
    font-weight: 400;
}

.flex_items .item.active .button {
    color: #ffffff;
    background: #4C26A3;
}

.flex_items .item_link {
    margin-right: 30px;
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex_items .item_link:last-child {
    margin-right: 0;
}

.flex_items .item_link .text {
    margin-bottom: 20px;
}

.faq_section .item_drop {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 20px;
}

.faq_section .item_drop:last-child {
    margin-bottom: 0;
}

.faq_section .item_drop .name {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}

.faq_section .item_drop .name::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
    background: url(../icons/next_m.svg) center / contain no-repeat;
}

.faq_section .item_drop .name.active::before {
    transform: rotate(90deg);
}

.faq_section .item_drop .list {
    padding: 20px 0 0 40px;
    display: none;
}

.faq_section .item_drop .list a {
	text-decoration: underline;
}

.faq_section .item_drop .text:not(:last-child) {
    margin-bottom: 15px;
}

.faq_section .item_drop .flex_text {
    display: flex;
}

.faq_section .item_drop .item_text {
    margin-right: 30px;
    width: calc(50% - 15px);
}

.faq_section .item_drop .item_text:last-child {
    margin-right: 0;
}

.faq_section .item_drop .title {
    font-weight: 600;
    margin-bottom: 5px;
}

.pre_added .promotion_section {
	margin-bottom: 30px;
}

.pre_added .add_btn {
	display: block;
	margin-bottom: 30px;
}

.nav_reviews {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
}

.nav_reviews .answer {
	cursor: pointer;
	color: #BD41B1;
	padding-left: 25px;
	background: url(../icons/reply.svg) left 0 top 0 / contain no-repeat;
	background-size: 20px 20px;
}

.nav_reviews .del {
	cursor: pointer;
	padding-left: 25px;
	background: url(../icons/bin.svg) left 0 top 0 / contain no-repeat;
	background-size: 20px 20px;
}

.answer_section {
	margin: 30px -30px 0 -30px;
	padding: 45px 30px 15px 30px;
	border-top: 1px solid #EBE3FB;
	position: relative;
	display: none;
}

.answer_section .close {
	position: absolute;
	width: 20px;
	height: 20px;
	cursor: pointer;
	top: 45px;
	right: 30px;
	z-index: 1;
	background: url(../icons/close.svg) center / contain no-repeat;
}

.answer_section h2 {
	margin-bottom: 45px;
	padding-right: 25px;
}

.answer_section textarea {
	height: 150px;
	margin-bottom: 30px;
	padding: 15px;
}

.answer_section button {
	display: block;
	width: 100%;
}

.filter_history {
    display: flex;
    margin-bottom: 45px;
}

.filter_history .droplist {
    width: calc(50% - 5px);
    margin-right: 10px;
}

.filter_history .droplist:last-child {
    margin-right: 0;
}

.table_history {
    margin-bottom: 45px;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.table_history .head {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2ECFD;
    font-weight: 600;
}

.table_history .th {
    margin-right: 10px;
}

.table_history .th:last-child {
    margin-right: 0;
    width: 140px;
    min-width: 140px;
}

.table_history .th:first-child {
    width: 140px;
    min-width: 140px;
}

.table_history .tr {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #F2ECFD;
}

.table_history .td {
    margin-right: 10px;
}

.table_history .td:last-child {
    margin-right: 0;
    width: 140px;
    min-width: 140px;
}

.table_history .td:first-child {
    width: 140px;
    min-width: 140px;
}

.table_history .th:not(:first-child, :last-child) {
    flex-grow: 1;
    width: calc(50% - 310px);
    min-width: 230px;
}

.table_history .td:not(:first-child, :last-child) {
    flex-grow: 1;
    width: calc(50% - 310px);
    min-width: 230px;
}

.table_history .td span {
    color: #9A91AA;
}

.table_history .td a {
    transition: all 0.3s ease;
}

.table_history .td.red {
    color: #F24B55;
}

.table_history .td.green {
    color: #0EA05A;
}

.help-block-error {
	color: red;
}

.lk_menu .list_menu a.disabled {
    color: #A59BC0;
}

span.bold {
    font-weight: 600;
}

.link_ref {
    padding: 15px 20px 15px 25px;
    border-radius: 5px;
    background: #F5F4FC;
    margin-bottom: 20px;
}

.buttons_ref {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -10px -10px 0;
}

.buttons_ref .button {
    padding: 15px 25px 15px 20px;
    display: flex;
    align-items: center;
    margin: 0 10px 10px 0;
}

.buttons_ref .button svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.buttons_ref .button svg path {
    transition: all 0.3s ease;
}

.buttons_ref .button svg rect {
    transition: all 0.3s ease;
}

.table_ref {
    margin-bottom: 45px;
    word-break: break-word;
    hyphens: auto;
}

.full_ref {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
}

.full_ref span {
    font-weight: 600;
}

.table_ref .tr {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #F2ECFD;
}

.table_ref .th {
    font-weight: 600;
    width: 140px;
    margin-right: 10px;
}

.table_ref .td {
    width: 140px;
    margin-right: 10px;
}

.table_ref .td:nth-child(2) {
    flex-grow: 1;
}

.table_ref .th:nth-child(2) {
    flex-grow: 1;
}

.table_ref .td:last-child {
    color: #0EA05A;
    margin-right: 0;
}

.table_ref .th:last-child {
    margin-right: 0;
}

.invitation span.white {
    margin-bottom: 0;
}

.white_title {
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #ffffff;
}

.invitation .button svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.invitation .button svg path {
    transition: all 0.3s ease;
}

.invitation .button svg rect {
    transition: all 0.3s ease;
}

.invitation .wrap_button {
    margin-bottom: 20px;
}

.invitation.mobile_element {
    display: none;
}

@media (min-width: 1921px) {
	.menu a {
		font-size: 17px;
	}
	.page_404 .title_404 {
		font-size: 140px;
		line-height: 125px;
		margin-bottom: 90px;
	}
	.page_404 .text_404 {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 45px;
	}
	.top_slider .wrap_item.last {
		padding: 15px;
		font-size: 15px;
	}
	.top_slider .wrap_item.last .icon {
		margin-bottom: 10px;
		width: 30px;
    	height: 30px;
	}
}
@media (min-width: 992px) {
	.button.light:hover, button.light:hover {
		background: #FBECFD;
		color: #BD41B1;
		border: 1px solid #FBECFD;
	}
	.catalog.catalog_slider .title nav .arrow:hover {
		background: #FBECFD;
	}
	.catalog.catalog_slider .title nav .arrow:hover svg path {
		stroke: #BD41B1;
	}
	.button.light:active, button.light:active {
		transition: all 0s;
		border: 1px solid #C9B6EB;
		background: #ffffff;
	}
	.button:hover, button:hover {
		background: #5B39C0;
	}
	.button:active, button:active {
		transition: all 0s;
		background: #432291;
	}
	.pagination .prev:hover {
		background: #FBECFD url(../icons/next.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.pagination .next:hover {
		background: #FBECFD url(../icons/next.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.pagination nav a.disabled:hover {
		background: #ffffff;
		border: 1px solid transparent;
		color: #2C1162;
	}
	.pagination nav a.active:hover {
		background: #ffffff;
    	border: 1px solid #C9B6EB;
    	color: #2C1162;
	}
	.catalog .item .buttons .tel:hover span:before, .top_item .tel:hover span:before,
	.item_page .item_content .item_header .item .tel:hover span:before {
		background: url(../icons/phone_hover.svg) center / contain no-repeat;
	}
	.catalog .item .buttons .whatsapp:hover {
		background: #FBECFD url(../icons/whatsapp.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.catalog .item .buttons .telegram:hover {
		background: #FBECFD url(../icons/telegram.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.menu a:hover, .main_filter .item .list a:hover, .col_menu .name:hover, .col_menu .to_map:hover,
	.col_menu .dropdown_list a:hover, .col .top_item .name:hover, .catalog .item .item_info_list .item_name:hover,
	.top_item_page .bread_crumbs a:hover, .top_item_page .to_favorites:hover,
	.item_page .item_content .services .footnote .feedback_btn:hover, .filter_list .item_filter .list_filter.checkbox_list a:hover {
		color: #BD41B1;
	}
	.lang_selector .name:hover {
		color: #BD41B1;
	}
	.top_item_page .to_favorites:hover::before {
		background: url(../icons/heart_hover.svg) center / contain no-repeat;
	}
	.item_page .item_content .item_header .item .whatsapp:hover {
		background: #FBECFD url(../icons/whatsapp.svg) center / contain no-repeat;
		background-size: 25px 25px;
	}
	.item_page .item_content .item_header .item .telegram:hover {
		background: #FBECFD url(../icons/telegram.svg) center / contain no-repeat;
		background-size: 25px 25px;
	}
	.city_list .list {
		max-height: 290px;
		overflow: hidden;
		overflow-y: auto;
		scrollbar-color:  #F2ECFD transparent;
	}
	.city_list .list::-webkit-scrollbar-thumb {
		width: 10px;
		background: #F2ECFD;
		border-radius: 5px;
	}
	.city_list .list::-webkit-scrollbar {
		width: 10px;
	}
	.lang_selector .list .item_list:hover {
		color: #BD41B1;
	}
	.city_list .list a:hover {
		color: #BD41B1;
	}
	.catalog .wrap_item .boost:hover {
		color: #BD41B1;
	}
	.catalog .wrap_item .boost:hover .icon::before,
	.catalog .wrap_item .boost:hover .icon::after {
		background: #BD41B1;
	}
	.col .button.add:hover span::before, .col .button.add:hover span::after {
		background: #BD41B1;
	}
	.lk_menu .list_menu a:hover {
		color: #BD41B1;
	}
	.link_selector .tooltip_img:hover svg {
		fill: #2C1162;
	}
	.link_selector .tooltip_img:hover svg path {
		fill: #FCBBF7;
	}
	.link_selector a:hover .title {
		color: #BD41B1;
	}
	.wrap_item .delete_item:hover {
		background: #FBECFD url(../icons/close.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.droplist .list a:not(.checked):hover {
		background: #4C26A3;
		color: #ffffff;
	}
	.wrap_code.disabled .button:hover {
		color: #A59BC0;
		background: #635995;
	}
	.item_page .item_content .item_info a:hover, .item_page .item_content .services .item_services a:hover {
		text-decoration: underline;
	}
	.table_history .td a:hover {
        color: #BD41B1;
    }
    .catalog .item .item_nav.to_favorites:hover {
    	transform: scale(1.2);
    }
    .catalog .item .item_nav.rating:hover {
		transform: scale(1.2);
    }
    .buttons_ref .button:hover svg path {
        fill: #BD41B1;
    }
    .buttons_ref .button:last-child:hover svg rect:first-child {
        fill: #BD41B1;
    }
    .buttons_ref .button:last-child:hover svg rect:last-child {
        stroke: #BD41B1;
    }
    .invitation .button:hover svg path {
        fill: #BD41B1;
    }
    
    .invitation .button:last-child:hover svg rect:first-child {
        fill: #BD41B1;
    }
    .invitation .button:last-child:hover svg rect:last-child {
        stroke: #BD41B1;
    }
}

@media (max-width: 1570px) {
	.catalog .wrap_item {
		width: 50%;
	}
	.catalog .wrap_item:first-child {
		width: 50%;
	}
	.wrap_catalog {
		margin-right: 0;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:nth-last-child(-n+3) {
		padding-bottom: 30px;
		border-bottom: 1px solid #F2ECFD;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:last-child {
		display: block;
	}
	.catalog .wrap_item:nth-child(2n + 3) {
		padding-left: 0;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:nth-last-child(-n+2) {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item {
		width: 50%;
	}
	.catalog .wrap_catalog .wrap_item:nth-child(-n + 3) {
		padding-top: 30px;
	}
	.catalog .wrap_catalog .wrap_item:nth-child(-n + 2) {
		padding-top: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(2) {
		width: 50%;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 3) {
		padding-right: 30px;
		border-right: 1px solid #F2ECFD;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 1) {
		padding-left: 30px;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 5) {
		width: 50%;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(2n + 2) {
		padding-right: 0;
		border-right: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(2n + 1) {
		padding-left: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-last-child(-n+3) {
		padding-bottom: 30px;
		border-bottom: 1px solid #F2ECFD;
	}
}

@media (max-width: 1630px) {
	.top_slider .wrap_item:first-child .item_top_slider a:last-child {
		left: 0;
		transform: none;
	}
}

@media (max-width: 1400px) {
	.menu a {
		font-size: 17px;
	}
	.menu a:nth-child(5), .menu a:nth-child(4) {
		display: none;
	}
	.menu .more_item {
		display: block;
		position: relative;
	}
	.menu .more_item .btn {
		cursor: pointer;
		font-weight: 600;
		padding-right: 25px;
		position: relative;
	}
	.menu .more_item .btn.active {
		color: #BD41B1;
	}
	.menu .more_item .btn:after {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		right: 0;
		top: 50%;
		transform: translateY(-50%) rotate(90deg);
		background: url(../icons/next_m.svg) center / contain no-repeat;
	}
	.menu .more_item .btn.active:after {
		background: url(../icons/arrow_p.svg) center / contain no-repeat;
		transform: translateY(-50%);
	}
	.menu .more_item .list {
		position: absolute;
		white-space: nowrap;
		filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.04)) drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.12));
		z-index: 9;
		background: #ffffff;
		border-radius: 5px;
		overflow: hidden;
		left: -20px;
		top: calc(100% + 15px);
		display: none;
	}
	.menu .more_item .list a {
		padding: 15px;
		border-bottom: 1px solid #F2ECFD;
		margin-right: 0;
	}
	.menu .more_item .list a:last-child {
		border-bottom: 0;
	}
	.menu .more_item .list a:first-child {
		display: none;
	}
	.filter_list .item_filter .list_filter .fields_list,
	.filter_list .item_filter .list_filter .small_selector {
		width: 100%;
	}
	.filter_list .item_filter .list_filter .fields {
		width: calc((100% / 3) - 20px);
	}
	.filter_list .item_filter .list_filter .fields:last-child {
		margin-right: 0;
	}
	.filter_list .item_filter .list_filter .price_item {
		width: 100%;
		margin-right: 0;
	}
}

@media (max-width: 1370px) {
	.inner_section .item_profile .fields {
		display: block;
	}
	.inner_section .item_profile .fields .button {
		display: block;
		width: auto;
		margin: 0 0 10px 0;
	}
	.inner_section .item_profile .fields .button:last-child {
		margin-bottom: 0;
	}
	.inner_section .item_profile .fields .wrap_input {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.inner_section .item_profile .fields .wrap_input:last-child {
		margin-bottom: 0;
	}
	.ballance_check {
		display: block;
	}
	.ballance_check h3 {
		width: auto;
		margin: 0 0 15px 0;
	}
	.ballance_check .button {
		width: 100%;
	}
	.check_list {
		display: block;
	}
	.check_list .wrap_check {
		width: 100%;
		margin: 0 0 30px 0;
	}
	.check_list .wrap_check:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 1270px) {
	.item_page .item_content .services .item_services .services_list {
		column-count: 3;
	}
	.filter_list .item_filter .list_filter.checkbox_list {
		column-count: 3;
	}
	.catalog .wrap_catalog .wrap_item:nth-child(-n + 2) {
		padding-top: 30px;
	}
	.catalog .wrap_catalog .wrap_item {
		width: 100%;
		padding: 30px 0 30px 0;
		border-right: 0;
	}
	.catalog .wrap_catalog .wrap_item:first-child {
		padding-top: 0;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:nth-last-child(-n+2) {
		padding-bottom: 30px;
		border-bottom: 1px solid #F2ECFD;
	}
	.catalog .wrap_catalog .wrap_item:nth-last-child(-n+2) {
		padding-bottom: 30px;
		border-bottom: 1px solid #F2ECFD;
	}
	.catalog .wrap_catalog .wrap_item:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}
	.statistic_table .item_info .info {
		width: 150px;
		margin-right: 10px;
	}
	.statistic_table .head_table .name {
		padding-right: 10px;
		min-height: 40px;
	}
	.statistic_table .th span {
		display: block;
	}
	.statistic_table .tr {
		margin-right: -10px;
	}
	.statistic_table .th {
		margin-right: 10px;
		width: calc((100% / 7) - 10px);
	}
	.statistic_table .td {
		margin-right: 10px;
		width: calc((100% / 7) - 10px);
	}
	.statistic_table .item_info {
		padding-right: 10px;
	}
	.statistic_table .col {
		width: calc(100% - 215px);
	}
	.statistic_table .static_col {
		width: 215px;
	}
	.item_section .fields {
		flex-wrap: wrap
	}
	.item_section .fields.min .wrap_input {
		width: calc((100% / 3) - 30px);
		margin-bottom: 30px;
	}
	.item_section .fields.min .wrap_input.wrap_selector {
		width: 100%;
	}
	.catalog:not(.catalog_slider) .wrap_item {
		width: 100%;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(2) {
		width: 100%;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 3) {
		padding-right: 0;
		border-right: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 5) {
		width: 100%;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-child(3n + 1) {
		padding-left: 0;
	}
	.catalog:not(.catalog_slider) .wrap_item:nth-last-child(-n+3) {
		border-bottom: 1px solid #F2ECFD;
		padding-bottom: 30px;
	}
	.flex_items {
        display: block;
    }
    .flex_items .item {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .flex_items .item:last-child {
        margin-bottom: 0;
    }
    .flex_items .item_link {
        width: 100%;
        margin: 0 0 30px 0;
        display: block;
    }
    .flex_items .item_link:last-child {
        margin-bottom: 0;
    }
    .faq_section .item_drop .flex_text {
        display: block;
    }
    .faq_section .item_drop .item_text {
        margin: 0 0 30px 0;
        width: 100%;
    }
    .faq_section .item_drop .item_text:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 1170px) {
	.menu a:nth-child(3) {
		display: none;
	}
	.menu .more_item .list a:first-child, .menu .more_item .list a:nth-child(3) {
		display: block;
	}
	.statistic_table .item_info .info {
		width: 130px;
	}
	.statistic_table .col_icons {
		width: 20px;
	}
	.statistic_table .col {
		width: calc(100% - 170px);
	}
	.statistic_table .static_col {
		width: 170px;
	}
	.opinions_list .item .content_section {
		display: block;
	}
	.opinions_list .item .text_block {
		width: auto;
	}
	.opinions_list .item .image {
		margin-bottom: 30px;
	}
}

@media (max-width: 1020px) {
	.wrap_catalog {
		column-count: unset;
		column-gap: unset;
	}
	.catalog .wrap_catalog.disabled_catalog .wrap_item:last-child {
		display: block;
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: 0;
	}
	.catalog .wrap_catalog.disabled_catalog .wrap_item {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #F2ECFD;
	}
}

@media (max-width: 992px) {
	.filter_list .item_filter .list_filter.checkbox_list {
		column-count: 2;
	}
	body {
		padding: 0;
		font-size: 16px;
	}
	h1 {
		font-size: 24px;
		line-height: 25px;
	}
	h2 {
		font-size: 22px;
		line-height: 25px;
		margin-bottom: 15px;
	}
	h3 {
		font-size: 20px;
		line-height: 20px;
		margin-bottom: 15px;
	}
	h4 {
		font-size: 15px;
	}
	input[type="text"].m_size {
		font-size: 16px;
		padding: 10px 15px;
		height: 40px;
	}
	input[type="text"].m_size::-webkit-input-placeholder {
		font-size: 16px;
	}
	textarea.m_size {
		font-size: 16px;
		padding: 10px 15px;
	}
	textarea.m_size::-webkit-input-placeholder {
		font-size: 16px;
	}
	.wrap {
		padding: 0 15px;
	}
	.button.s_size, button.s_size {
		font-size: 14px;
		line-height: 15px;
		padding: 12.5px 15px;
	}
	.button.m_size, button.m_size {
		font-size: 16px;
		padding: 12px 15px 13px 15px;
	}
	.mobile {
		display: block;
	}
	.main_filter .to_map {
		position: relative;
		font-weight: bold;
		font-size: 15px;
		letter-spacing: 0.05em;
		line-height: 20px;
		text-transform: uppercase;
		padding: 10px 30px 10px 0;
		margin-bottom: 5px;
	}
	.main_filter .to_map:after {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/pin.svg) center / contain no-repeat;
	}
	.main_filter {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: #ffffff;
		padding: 85px 25px 25px 25px;
		overflow: hidden;
		overflow-y: auto;
		display: none;
		flex-direction: column;
		justify-content: space-between;
	}
	.main_filter .item .list.line {
		display: block;
	}
	.main_filter .item .list, .main_filter .item .list.line {
		padding-top: 5px;
		display: none;
	}
	.main_filter .item .list a {
		padding: 5px 0;
		margin-bottom: 5px;
	}
	.main_filter .item .title {
		margin-bottom: 10px;
	}
	.main_filter .item .sub_list {
		margin-bottom: 25px;
	}
	.title_filter {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		padding: 15px;
		background: #ffffff;
		z-index: 1;
	}
	.title_filter a {
		display: inline-block;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		padding: 9px 14px 9px 39px;
		border: 1px solid #EBE3FB;
		border-radius: 5px;
		position: relative;
	}
	.title_filter a:before {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/filter.svg) center / contain no-repeat;
	}
	.title_filter .close {
		cursor: pointer;
		width: 40px;
		height: 40px;
		border: 1px solid #EBE3FB;
		border-radius: 5px;
		position: relative;
	}
	.title_filter .close:before {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.title_filter .close:after {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.main_filter .item .name {
		margin-bottom: 0;
		padding: 10px 0;
		cursor: pointer;
		padding-right: 30px;
		position: relative;
	}
	.main_filter .item.lang_selector .name {
		padding-left: 30px;
	}
	.main_filter .item .name.active {
		color: #BD41B1;
	}
	.main_filter .item .name:after {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/next_m.svg) center / contain no-repeat;
	}
	.main_filter .item .name.active:after {
		background: url(../icons/arrow_p.svg) center / contain no-repeat;

	}
	.main_filter .item {
		padding: 0;
		border-bottom: 0;
		margin-bottom: 5px;
	}
	.main_filter .buttons.mobile {
		display: flex;
		margin: 0 -10px;
	}
	.main_filter .buttons.mobile .button {
		width: calc(50% - 5px);
	}
	.main_filter .buttons.mobile .button:first-child {
		margin-right: 10px;
	}
	.main_content .top_section {
		display: none;
	}
	.main_content {
		width: 100%;
		margin-right: 0;
	}
	.wrap_catalog {
		margin-bottom: 0;
	}
	.catalog .wrap_item {
		padding-bottom: 20px;
		margin-bottom: 20px;
		padding-top: 20px;
	}
	.catalog .wrap_item:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.catalog .wrap_item:after {
		left: 0;
		width: 100%;
	}
	.catalog .wrap_item:last-child::after {
		display: none;
	}
	.catalog .item {
		width: 100%;
		font-size: 14px;
		line-height: 15px;
		overflow: hidden;
	}
	.wrap_header {
		margin-bottom: 30px;
	}
	header {
		padding: 20px 0 10px 0;
	}
	header.top_fixed {
		left: 0;
		top: -1px;
		width: 100%;
		padding: 20px 0;
	}
	header.top_fixed .menu {
		display: none;
	}
	header.top_fixed .logo {
		margin-bottom: 0;
	}
	header .wrap {
		display: block;
		position: relative;
	}
	header nav {
		display: none;
	}
	.menu {
		flex-wrap: nowrap;
		overflow: hidden;
		overflow-x: auto;
		justify-content: flex-start;
		width: auto;
		margin-right: -15px;
		white-space: nowrap;
		padding-bottom: 5px;
	}
	.logo {
		width: 200px;
		height: 30px;
		margin: 0 auto 20px auto;
	}
	.menu a {
		margin-right: 15px;
		font-size: 16px;
	}
	.main_content .sorting .name {
		display: none;
	}
	.catalog .item nav {
		flex-wrap: nowrap;
		overflow: hidden;
		overflow-x: auto;
		white-space: nowrap;
		display: block;
		width: calc(100% + 15px);
		padding-bottom: 5px;
		margin-bottom: 10px;
		font-size: 13px;
	}
	.catalog .item .img_item {
		width: calc(59.091% - 15px);
		margin-right: 15px;
	}
	.catalog .item .item_info_list.column_list {
		width: 40.909%;
	}
	.catalog .item nav .item_nav {
		margin-bottom: 0;
		margin-right: 5px;
		height: 25px;
		display: inline-block;
	}
	.catalog .item .item_info_list .item_info .name, .catalog .item .item_info_list:nth-child(4) .item_info .name {
		display: block;
	}
	.catalog .item .item_info_list {
		
	}
	.catalog .item .item_info_list .item_name {
		display: block;
		margin-bottom: 5px;
		font-size: 18px;
		line-height: 20px;
		min-height: 20px;
	}
	.val_price {
		font-size: 16px;
	}
	.catalog {
		margin-bottom: 30px;
		overflow: unset;
	}
	.page {
		border-radius: 15px;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.pagination .to_catalog {
		width: 100%;
	}
	.seo h2 {
		margin-bottom: 30px;
	}
	.seo ul {
		margin-bottom: 15px;
	}
	.seo {
		margin-bottom: 30px;
	}
	footer {
		padding: 30px 0;
		border-radius: 15px 15px 0px 0px;
	}
	.footer_menu a {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.footer_menu {
		margin-bottom: 30px;
	}
	.footer_info .text p {
		margin-bottom: 0;
	}
	.footer_info .text {
		margin-right: 0;
		max-width: unset;
	}
	.footer_info {
		margin-bottom: 30px;
		padding-right: 0;
	}
	.footer_info:after {
		display: none;
	}
	.copyright {
		position: relative;
		padding-right: 65px;
	}
	.copyright:after {
		position: absolute;
		content: "";
		width: 55px;
		height: 55px;
		right: 0;
		bottom: 0;
		background: url(../icons/18.svg) center / contain no-repeat;
	}
	.col .items_list {
		display: none;
	}
	.col_menu {
		display: none;
	}
	.content {
		flex-direction: column-reverse;
		padding-top: 0;
	}
	.col {
		width: 100%;
		position: static;
	}
	.col .top_item .top_item_slider {
		height: auto;
		margin-bottom: 10px;
	}
	.col .top_item .top_item_slider .slick-list {
		margin-right: -10px;
	}
	.col .top_item .img {
		height: auto;
		margin-right: 10px;
		position: relative;
	}
	.col .top_item .img .progressive {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	.col .top_item .img:after {
		display: block;
		content: "";
		padding-top: calc(100% + 55px);
	}
	.col .top_item .name {
		display: block;
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 5px;
	}
	.col .top_item .address {
		font-size: 14px;
		line-height: 15px;
		margin-bottom: 10px;
	}
	.col .top_item .button {
		width: 100%;
	}
	.col .top_item {
		margin: 0 -15px 30px -15px;
		padding: 0 15px 30px 15px;
	}
	.filter_btn {
		display: block;
		cursor: pointer;
		position: absolute;
		width: 40px;
		height: 40px;
		left: 15px;
		top: -5px;
		border: 1px solid #EBE3FB;
		border-radius: 5px;
		background: url(../icons/filter.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}

	.burger {
		display: flex;
		cursor: pointer;
		position: absolute;
		width: 40px;
		height: 40px;
		right: 15px;
		top: -5px;
		border: 1px solid #EBE3FB;
		border-radius: 5px;
		align-items: center;
		justify-content: center;
	}

	.burger span {
		display: block;
		width: 16px;
		height: 2px;
		background: #2C1162;
		border-radius: 1px;
		position: relative;
	}
	.burger span:before {
		position: absolute;
		content: "";
		left: 0;
		top: -5px;
		width: 100%;
		height: 2px;
		background: #2C1162;
		border-radius: 1px;
	}
	.burger span:after {
		position: absolute;
		content: "";
		left: 0;
		top: 5px;
		width: 100%;
		height: 2px;
		background: #2C1162;
		border-radius: 1px;
	}
	.catalog .items_list {
		display: block;
		font-size: 18px;
		line-height: 20px;
	}
	.catalog .items_list .item {
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #F2ECFD;
	}
	.catalog .items_list .item .img_item {
		width: 230px;
		margin: 0 auto;
		float: unset;
	}
	.catalog .items_list .item .btn {
		width: 200px;
	}
	.wrap_top_slider {
		width: calc(100% + 15px);
		left: 0;
	}
	.top_slider {
		overflow: hidden;
		overflow-x: auto;
		margin-right: 0;
	}
	.top_slider .wrap_item {
		min-width: 80px;
	}
	.content.filter_page {
		display: block;
	}
	.filter_list {
		margin-right: 0;
		width: 100%;
	}
	.filter_list .item_filter {
		padding: 0 0 15px 0;
		margin-bottom: 15px;
	}
	.filter_list .item_filter .list_filter a {
		padding: 7.5px 0 7.5px 30px;
		position: relative;
		background: unset;
		width: unset;
		text-align: left;
		min-height: 35px;
	}
	.filter_list .item_filter .list_filter a.selected {
		background: unset;
		color: #2C1162;
	}
	.filter_list .item_filter .list_filter a:before {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		background: #F5F4FC;
		border-radius: 5px;
	}
	.filter_list .item_filter .list_filter a.selected:before {
		background: #4C26A3 url(../icons/check.svg) center / contain no-repeat;
		background-size: 11px 8px;
	}
	.filter_list .item_filter .list_filter {
		padding: 30px 0 15px 0;
		display: none;
	}
	.filter_list .item_filter .list_filter.selector {
		padding: 22.5px 0 7.5px 0;
		display: none;
		column-count: 2;
		column-gap: 15px;
	}
	.filter_list .item_filter .list_filter .fields_list {
		display: block;
		width: 100%;
	}
	.filter_list .item_filter .list_filter .fields {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.filter_list .item_filter .list_filter .fields .name {
		margin-bottom: 5px;
	}
	.filter_list .item_filter .list_filter .small_selector .name {
		margin-bottom: 5px;
	}
	.filter_list .item_filter .list_filter .small_selector {
		width: 100%;
	}
	.filter_list .item_filter .list_filter .small_selector .list a {
		padding: 10px 15px;
		background: #F5F4FC;
		text-align: center;
	}
	.filter_list .item_filter .list_filter .small_selector .list a.selected {
		background: #4C26A3;
		color: #FFFFFF;
	}
	.filter_list .item_filter .list_filter .small_selector .list a:before {
		display: none;
	}
	.filter_list .item_filter .list_filter .price_item {
		margin-right: 0;
		width: 100%;
	}
	.filter_list .item_filter .list_filter .price_item .fields_list .fields:last-child {
		margin-bottom: 0;
	}
	.filter_list .item_filter .list_filter.checkbox_list {
		column-count: unset;
		column-gap: unset;
		padding-bottom: 0;
		display: none;
	}
	.filter_list .item_filter .list_filter.checkbox_list a {
		margin-bottom: 0;
		font-size: 16px;
		padding: 7.5px 0 7.5px 30px;
	}
	.filter_list .item_filter .list_filter.checkbox_list a:before {
		top: 50%;
	}
	.filter_list .item_filter .list_filter.checkbox_list .item h4 {
		margin-bottom: 7.5px;
	}
	.filter_list .item_filter .list_filter.checkbox_list .item:last-child {
		margin-bottom: 0;
	}
	.filter_list .item_filter .name_filter h3 {
		margin-bottom: 0;
		font-size: 16px;
		line-height: 20px;
	}
	.filter_list .item_filter .name_filter {
		position: relative;
		padding-right: 30px;
		display: flex;
		align-items: center;
	}
	.filter_list .item_filter .name_filter.check_active::after {
		display: inline-block;
		content: "";
		width: 20px;
		height: 20px;
		margin-left: 5px;
		background: url(../icons/rate.svg) center / contain no-repeat;
	}
	.filter_list .item_filter .name_filter::before {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/next.svg) center / contain no-repeat;
	}
	.filter_list .item_filter .name_filter.active::before {
		transform: translateY(-50%) rotate(90deg);
	}
	.filter_list {
		margin-bottom: 30px;
	}
	.scroll_top {
		width: 45px;
		height: 45px;
		background: #F2ECFD url(../icons/top.svg) center / contain no-repeat;
    	background-size: 15px 15px;
    	right: 10px;
    	bottom: 10px;
	}
	.footer_menu .contacts .note {
		font-size: 14px;
		line-height: 15px;
		width: 60vw;
	}
	.pagination {
		padding: 0 60px;
	}
	.pagination a {
		width: 50px;
		height: 45px;
	}
	.pagination nav a {
		display: none;
		width: auto;
		height: auto;
		padding: 0;
	}
	.pagination nav .button.m_size {
		padding: 0;
		border: 0;
	}
	.pagination nav a:first-child,
	.pagination nav a:last-child,
	.pagination nav a.disabled {
		display: inline-block;
		margin-right: 0;
	}
	.pagination nav a.active {
		border: 0;
	}
	.pagination nav a.light {
		background: unset;
	}
	.pagination nav a.disabled {
		width: auto;
	}
	.pagination nav {
		display: inline-block;
		padding: 12px 15px 13px 15px;
		border: 1px solid #C9B6EB;
		border-radius: 5px;
	}
	.pagination nav a.disabled:before {
		position: static;
		transform: none;
		margin-right: 0;
	}
	.page.item_page .content {
		display: block;
		padding-top: 35px;
		position: relative;
	}
	.item_page .media {
		margin-right: 0;
		margin-bottom: 0;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.top_item_page .bread_crumbs {
		display: none;
	}
	.top_item_page .to_favorites {
		font-size: 0;
		line-height: 0;
		padding: 0;
		width: 30px;
		height: 30px;
		z-index: 2;
	}
	.top_item_page .to_favorites:before {
		width: 15px;
		height: 15px;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.top_item_page {
		margin-bottom: 15px;
		justify-content: flex-end;
	}
	.item_page .item_content .item_header .item {
		width: 100%;
	}
	.item_page .item_content .item_header .item:first-child {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: column-reverse;
		margin-right: 0;
		z-index: 1;
		max-width: unset;
	}
	.item_page .item_content .item_header .item .label_list {
		flex-wrap: nowrap;
		overflow: hidden;
		overflow-x: auto;
		width: calc(100% + 15px);
		white-space: nowrap;
		margin-bottom: 0;
		padding-bottom: 10px;
		font-size: 12px;
	}
	.item_page .item_content .item_header .item .label {
		margin-bottom: 0;
	}
	.item_page .item_content .item_header .item h1 {
		margin-bottom: 0;
		max-width: calc(100% - 40px);
	}
	.item_page .media .wrap_item_slider {
		width: calc(83% - 5px);
		margin-right: 5px;
		margin-bottom: 15px;
	}
	.item_page .media .wrap_item_slider:after {
		padding-top: calc(100% + 85px);
	}
	.item_page .media .wrap_nav_item_slider {
		width: 16.67%;
		margin-bottom: 15px;
		height: auto;
		position: relative;
	}
	.item_page .media .wrap_nav_item_slider:after {
		display: none;
	}
	.item_page .media .nav_item_slider {
		position: static;
	}
	.item_page .media .nav_item_slider .item_nav {
		margin-right: 0;
		margin-bottom: 5px;
		position: relative;
		height: calc((100% / 6) - 5px);
	}
	.item_page .media .nav_item_slider .item_nav img {
		position: absolute;
		left: 0;
		top: 0;
	}
	.item_page .media .nav_item_slider .item_nav::after {
		display: block;
		content: "";
		padding-top: 100%;
	}
	.item_page .media .item_slider .slick-track, .item_page .media .nav_item_slider .slick-track {
		height: auto!important;
	}
	.item_page .media .nav_item_slider .slick-track {
		width: 100%;
	}
	.item_page .media .nav_item_slider .slick-list {
		margin-right: 0;
		height: calc(100% + 5px);
	}
	.item_page .media .title_media, .item_page .media .video_frame,
	.item_page .media .map_frame {
		display: none;
	}
	.item_page .item_content {
		width: 100%;
	}
	.item_page .item_content .item_header .item .whatsapp {
		width: 45px;
		height: 45px;
		margin-right: 5px;
		background-size: 20px 20px;
	}
	.item_page .item_content .item_header .item .telegram {
		width: 45px;
		height: 45px;
		background-size: 20px 20px;
	}
	.item_page .item_content .item_header .item .tel {
		width: auto;
		flex-grow: 1;
		margin-right: 5px;
		font-size: 16px;
		line-height: 20px;
	}
	.item_page .item_content .item_header .item .tel span {
		padding-left: 25px;
	}
	.item_page .item_content .item_header .item .tel span:before {
		width: 25px;
		height: 25px;
	}
	.item_page .item_content .item_header {
		display: block;
		margin-bottom: 20px;
	}
	.item_page .item_content .item_about {
		padding: 15px;
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	.item_page .item_content .item_info {
		display: block;
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	.item_page .item_content .item_info .item {
		padding: 0;
		margin-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.item_page .item_content .item_info .item .title {
		font-size: 14px;
		line-height: 15px;
	}
	.item_page .item_content .item_info .item .info {
		margin-right: 10px;
		width: calc(25% - 7.5px);
	}
	.item_page .item_content .item_info .item.border {
		padding: 15px;
		margin-bottom: 5px;
	}
	.item_page .item_content .item_info .item .title_item {
		margin-bottom: 10px;
	}
	.item_page .item_content .item_footnote {
		margin-top: -15px;
		margin-bottom: 20px;
	}
	.item_page .item_content .services {
		padding: 0 0 30px 0;
		overflow: hidden;
		margin-bottom: 30px;
	}
	.item_page .item_content .services .item_services .services_list {
		column-count: unset;
		column-gap: unset;
		display: flex;
		flex-wrap: wrap;
		margin-right: -10px;
	}
	.item_page .item_content .services .item_services .services_list .item {
		width: calc(50% - 10px);
		margin-right: 10px;
		margin-bottom: 20px;
	}
	.item_page .item_content .services h2 {
		margin-bottom: 20px;
	}
	.item_page .item_content .services .item_services {
		margin-bottom: 10px;
	}
	.item_page .item_content .services .item_services .services_list li {
		max-width: 160px;
	}
	.item_page .item_content .services .item_services .services_list ul {
		column-count: 2;
		column-gap: 10px;
	}
	.item_page .item_content .services .item_services .services_list .item ul {
		column-gap: unset;
		column-count: unset;
	}
	.item_page .item_content .services .footnote {
		padding-top: 10px;
		display: block;
		font-size: 14px;
		line-height: 15px;
	}
	.item_page .item_content .services .footnote .info {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.reviews .top_reviews .button {
		display: none;
	}
	.reviews .header_reviews {
		display: block;
		margin-bottom: 5px;
	}
	.reviews .top_reviews {
		margin-bottom: 20px;
	}
	.reviews .header_reviews .rating {
		width: 100%;
		padding: 15px;
		margin-bottom: 5px;
	}
	.reviews .header_reviews .rating span {
		font-size: 24px;
		line-height: 25px;
		padding-left: 30px;
	}
	.reviews .header_reviews .rating span:before {
		width: 25px;
		height: 25px;
	}
	.reviews .header_reviews .content_rating {
		width: 100%;
		padding: 15px;
	}
	.reviews .rating_list .item {
		font-size: 14px;
		line-height: 15px;
	}
	.reviews .item_reviews {
		padding: 15px;
		margin-bottom: 5px;
	}
	.reviews .item_reviews .title {
		font-size: 18px;
		line-height: 20px;
	}
	.reviews .item_reviews .rating_scale span {
		display: none;
	}
	.reviews .item_reviews .rating_scale .sum {
		padding-left: 21px;
		position: relative;
		font-size: 14px;
		line-height: 15px;
	}
	.reviews .item_reviews .rating_scale .sum:before {
		position: absolute;
		content: "";
		width: 16px;
		height: 20px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/rate.svg) center / contain no-repeat;
	}
	.reviews .item_reviews .date {
		font-size: 14px;
		line-height: 15px;
	}
	.reviews .item_reviews .text {
		margin-bottom: 15px;
	}
	.reviews .new_reviews .rev_btn {
		width: 100%;
	}
	.reviews .new_reviews {
		margin-bottom: 30px;
	}
	.reviews .new_reviews .item_reviews {
		padding: 30px 15px;
	}
	.new_reviews .item_reviews .close {
		top: 25px;
		right: 15px;
	}
	.new_reviews .item_reviews h2 {
		margin-bottom: 30px;
	}
	.reviews .new_reviews .item_reviews .rating_scale span {
		display: block;
	}
	.reviews .new_reviews .item_reviews .rating_scale .sum {
		padding-left: 0;
	}
	.reviews .new_reviews .item_reviews .rating_scale .sum:before {
		display: none;
	}
	.new_reviews .item_reviews .rating_scale span {
		width: 25px;
		height: 25px;
	}
	.reviews .new_reviews .item_reviews .rating_scale .sum h6 {
		font-size: 20px;
		line-height: 25px;
	}
	.reviews .new_reviews .item_reviews input[type="text"] {
		margin-bottom: 5px;
	}
	.reviews .new_reviews .item_reviews textarea {
		margin-bottom: 15px;
	}
	.new_reviews .item_reviews .rating_list {
		margin-bottom: 15px;
	}
	.agree {
		margin-bottom: 20px;
	}
	.catalog.catalog_slider {
		padding-top: 30px;
	}
	.filter_list .item_filter .list_filter.checkbox_list a .info_label, .info_label {
		position: static;
	}
	.info_label:hover {
		background: url(../icons/qmark.svg) center / contain no-repeat;
	}
	.info_label.active {
		background: url(../icons/qmark_hover.svg) center / contain no-repeat;
	}
	.info_label:before {
		left: unset;
		right: 0;
		width: 60vw;
		font-size: 14px;
		line-height: 15px;
	}
	.item_page .item_content .services .item_services .services_list .info_label:before {
		left: 0;
		width: 35vw;
	}
	.info_label:hover::before {
		display: none;
	}
	.media_mobile {
		display: block;
		margin-bottom: 30px;
	}
	.media_mobile .item_page .media .title_media, 
	.media_mobile .item_page .media .video_frame,
	.media_mobile .item_page .media .map_frame {
		display: block;
	}
	.item_page .title_media {
		padding-left: 25px;
	}
	.item_page .video:before {
		width: 20px;
		height: 20px;
	}
	.item_page .video_frame:after {
		padding-top: calc(100% - 145px);
	}
	.item_page .video_frame {
		margin-bottom: 20px;
	}
	.item_page .map:before {
		width: 20px;
		height: 20px;
	}
	.item_page .map_frame:after {
		padding-top: calc(100% - 145px);
	}
	.map {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 9;
	}
	.map .close {
		display: block;
		position: absolute;
		width: 40px;
		height: 40px;
		background: #FFFFFF;
		box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.12);
		border-radius: 5px;
		z-index: 2;
		top: 15px;
		right: 15px;
	}
	.map .close:before {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.map .close:after {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.wrap_popup {
		padding: 0;
		height: 100%;
		overflow: unset;
	}
	.content_popup {
		border-radius: 0;
		padding: 15px 15px 30px 15px;
		max-width: unset;
		width: 100%;
		height: 100%;
		overflow: hidden;
		overflow-y: auto;
	}
	.popup .close_popup {
		width: 25px;
		height: 25px;
		top: 15px;
		right: 15px;
	}
	.popup .close_popup:before,
	.popup .close_popup:after {
		width: 15px;
		height: 2.5px;
	}
	.content_popup h2 {
		margin-bottom: 10px;
	}
	.content_popup .item_name {
		font-size: 14px;
		line-height: 15px;
		margin-bottom: 30px;
	}
	.content_popup .selector_list {
		padding-top: 0;
		column-count: unset;
		column-gap: unset;
	}
	.content_popup .selector {
		padding: 5px 0 5px 30px;
		margin-bottom: 0;
	}
	.content_popup .selector:before {
		top: 50%;
		transform: translateY(-50%);
	}
	.content_popup textarea {
		height: 80px;
		margin-bottom: 20px;
	}
	.content_popup input[type="text"] {
		margin-bottom: 20px;
	}
	.captcha .img_captcha {
		width: 120px;
		height: 40px;
	}
	.captcha {
		margin-bottom: 20px;
	}
	.wrap_favorites {
		top: unset;
		right: unset;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 64px;
	}
	.favorites_window .button_favorites {
		width: 140px;
		height: 60px;
		padding: 15px;
		border-radius: 10px 10px 0px 0px;
		font-size: 14px;
		line-height: 15px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.favorites_window .button_favorites span {
		padding-top: 0;
		padding-left: 40px;
	}
	.favorites_window .button_favorites span:before {
		width: 30px;
		height: 30px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.favorites_window {
		display: block;
		width: 100%;
		height: 64px;
		overflow: hidden;
		padding-left: 0;
		padding-top: 4px;
	}
	.wrap_favorites.active {
		width: 100%;
		height: 60px;
		transition: height 0.5s ease;
	}
	.favorites {
		width: 100%;
		height: calc(100% - 90px);
		padding: 15px;
		box-shadow: none;
		text-align: center;
	}
	.favorites_window .button_favorites span:after {
		right: unset;
		left: 20px;
		top: -15px;
	}
	.wrap_favorites.active.show {
		width: 100%;
		height: 100%;
	}
	.wrap_favorites.active.show .favorites_window {
		height: 100%;
	}
	.wrap_favorites.active.show .favorites_window .button_favorites {
		position: absolute;
		width: 20px;
		height: 20px;
		top: 15px;
		right: 15px;
		box-shadow: none;
	}
	.wrap_favorites.active.show .favorites_window .button_favorites:before {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
		bottom: unset;
		right: unset;
	}
		.wrap_favorites.active.show .favorites_window .button_favorites:after {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		background: #2C1162;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
		bottom: unset;
	}
	.wrap_favorites.active.show .favorites_window .button_favorites span {
		display: none;
	}
	.wrap_favorites.active.show .favorites {
		height: 100%;
	}
	.favorites_window .button_favorites:before {
		width: 10px;
		height: 10px;
		bottom: 0;
		right: -10px;
		transform: rotate(90deg);
	}
	.favorites_window .button_favorites:after {
		width: 10px;
		height: 10px;
		top: unset;
		bottom: 0;
		right: unset;
		left: -9px;
		transform: none;
	}
	.favorites .catalog {
		text-align: left;
	}
	.favorites h3 {
		padding-top: 10px;
		text-align: left;
	}
	.favorites .catalog .item {
		padding: 15px 0 20px 0;
		margin-bottom: 5px;
	}
	.favorites .catalog .item .img_item {
		width: 125px;
		height: 165px;
		margin-right: 15px;
		margin-bottom: 15px;
	}
	.favorites .catalog .item .item_info_list {
		width: calc(100% - 140px);
	}
	.favorites .catalog .item .item_info_list .item_info .name {
		display: block;
	}
	.favorites .catalog .item .img_item .delete_item {
		width: 25px;
		height: 25px;
	}
	.favorites .catalog .item .img_item .delete_item:before,
	.favorites .catalog .item .img_item .delete_item:after {
		width: 9px;
		height: 1.5px;
	}
	.hide_note {
		font-size: 14px;
		line-height: 15px;
	}
	.hide_note .info, .item_page .item_content .item_header .hide_note {
		font-size: 16px;
		line-height: 20px;
	}
	.favorites .clear_list {
		display: inline-block;
		margin-top: 15px;
		font-size: 14px;
		line-height: 15px;
	}
	.center {
		margin-bottom: 45px;
		padding-top: 15px;
	}
	.favorites:before {
		display: none;
	}
	.menu .more_item {
		display: none;
	}
	.menu a:nth-child(3),
	.menu a:nth-child(5),
	.menu a:nth-child(4) {
		display: block;
	}
	.top_slider .item_top_slider:hover {
		position: static;
	}
	.top_slider .item_top_slider:hover .img_top_slider:after {
		padding-top: 100%;
	}
	.top_slider .item_top_slider:hover a:last-child {
		display: none;
	}
	.map .items {
		width: 40px;
		height: 40px;
		padding: 5px;
		font-size: 18px;
		line-height: 20px;
	}

	.map .items.big {
		width: 70px;
		height: 70px;
	}

	.map .items.middle {
		width: 50px;
		height: 50px;
	}
	.page_404 {
		margin-top: 5px;
	}
	.page_404 .button {
		font-size: 18px;
		line-height: 20px;
		padding: 14px 20px;
	}
	.page_404 .text_404 {
		padding: 0 30px;
	}
	.filter_list .flex .close {
		position: absolute;
		right: 0;
		top: 0;
		margin-bottom: 0;
	}
	.lang_selector {
		display: none;
	}
	.main_filter .item.city_selector {
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: 1px solid #F2ECFD;
	}
	.main_filter .item.city_selector .name {
		text-transform: uppercase;
		font-weight: bold;
		font-size: 15px;
		line-height: 20px;
	}
	.main_filter .item.lang_selector.mobile {
		display: block;
	}
	.main_filter .content_filter {
		margin-bottom: 45px;
	}
	.main_filter .item.lang_selector .item_list {
		padding: 5px 0 5px 30px;
	}
	.main_filter .item.lang_selector .item_list.rus {
		background: url(../icons/russia.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.main_filter .item.lang_selector .item_list.srb {
		background: url(../icons/serbia.svg) left 0 center / 20px 20px no-repeat;
	}

	.main_filter .item.lang_selector .item_list.eng {
		background: url(../icons/united-states.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.main_filter .item.lang_selector .item_list.est {
		background: url(../icons/estonia.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.main_filter .item.lang_selector .item_list.tur {
		background: url(../icons/turkey.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.main_filter .item.lang_selector .item_list.geo {
		background: url(../icons/georgia.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.pagination nav a:last-child::before {
		display: inline-block;
		content: "...";
		padding: 0 2px;
	}
	.item_page .media .nav_item_slider.fade_active {
		display: block;
		margin-right: 0;
	}
	.item_page .media .nav_item_slider.fade_active .item_nav {
		width: 100%;
		margin-right: 0;
	}
	.catalog.catalog_slider .title nav {
		display: none;
	}
	.item_page .wrap_catalog .slick-list {
		margin-right: -30px;
	}
	.catalog.catalog_slider .wrap_item {
		margin-right: 15px;
		padding-right: 15px;
	}
	.media_popup .wrap_media {
		padding: 0;
	}
	.media_popup .slider_wrap {
		padding: 60px 20px;
		border-radius: 0;
	}
	.media_popup .slider_wrap .close {
		top: 20px;
		right: 20px;
	}
	.media_popup .slider img {
		margin-right: 20px;
	}
	.media_popup .slider .slick-list {
		margin-right: -20px;
		width: auto;
	}
	.favorites .catalog .item .item_info_list:nth-child(3) .item_info {
		margin-bottom: 15px;
	}
	.favorites .catalog .item .item_info_list:nth-child(4) {
		width: 100%;
	}
	.favorites .catalog .item .buttons .tel {
		flex-grow: 1;
	}
	.catalog .item .item_info_list {
		width: 100%;
	}
	.favorites .catalog .item .item_info_list:nth-child(3) {
		width: calc(100% - 140px);
	}
	.favorites .catalog .item .item_info_list:nth-child(4) {
		width: 100%;
	}
	.registration_form .title {
		display: block;
		margin-bottom: 30px;
	}
	.registration_form .title h1 {
		margin-bottom: 10px;
	}
	.registration_form .title h1:last-child {
		margin-bottom: 0;
	}
	.registration_form .input_name {
		margin-bottom: 5px;
	}
	.registration_form .wrap_input {
		margin-bottom: 20px;
	}
	.registration_form .agree {
		margin-top: 0;
		margin-bottom: 15px;
	}
	.registration_form .wrap_input .footnote {
		padding-bottom: 0;
	}
	.registration_page {
		margin-top: 5px;
	}
	.content_popup .link_selector {
		display: flex;
		flex-wrap: wrap;
		margin-right: -5px;
	}
	.link_selector a {
		width: calc(50% - 5px);
		margin: 0 5px 5px 0;
		display: block;
		padding:  10px 10px 20px 10px;
		text-align: center;
	}
	.link_selector .icon_link {
		width: 143px;
		height: 49px;
		margin: 0 auto 5px auto;
	}
	.link_selector .text {
		width: auto;
	}
	.link_selector .tooltip_img {
		position: static;
		transform: unset;
	}
	.link_selector .footnote_title {
		display: none;
	}
	.link_selector a:last-child {
		margin-right: 0;
		width: 100%;
	}
	.image_tooltip {
		width: 100%;
		left: 0;
		bottom: 0;
		margin-left: 0;
		padding-top: 40px;
		background: #ffffff;
		border-top: 1px solid #2C1162;
	}
	.image_tooltip .close {
		width: 25px;
		height: 25px;
		position: absolute;
		cursor: pointer;
		top: 7.5px;
		right: 15px;
	}
	.image_tooltip .close::before, .image_tooltip .close::after {
		position: absolute;
		content: "";
		background: #2C1162;
		left: 50%;
		top: 50%;
		width: 15px;
    	height: 2px;
	}
	.image_tooltip .close::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.image_tooltip .close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.small_popup .content_popup {
		padding-top: 70px;
	}
	.small_popup .content_popup h2 {
		margin-bottom: 30px;
	}
	.text_small_popup {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 30px;
	}
	.share_links {
		font-size: 18px;
		line-height: 20px;
	}
	.share_links .copy {
		padding: 5px 5px 5px 15px;
		margin-bottom: 5px;
	}
	.share_links a {
		margin-bottom: 5px;
	}
	.share_links a svg {
		width: 20px;
		height: 20px;
		margin-right: 5px;
	}
	.small_popup nav {
		display: block;
	}
	.small_popup nav .button {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.col .button.add {
		width: calc(50% - 5px);
		order: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 0 10px 0;
		padding: 10px;
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
	}
	.col .button.add span {
		padding: 25px 0 0 0;
	}
	.col .top_item .top_item_slider.lk_cabinet {
		width: calc(50% - 5px);
		order: 1;
	}
	.col .top_item .flex {
		display: flex;
		justify-content: space-between;
	}
	.col .button.add span::before {
		width: 20px;
		height: 20px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		background: url(../icons/stepper_2.svg) center / contain no-repeat;
	}
	.col .button.add span::after {
		display: none;
	}
	.catalog .wrap_item.boost_wrap {
		padding-top: 0;
	}
	.catalog .items_list .item .button.add {
		margin: 0 auto 20px auto;
		width: 230px;
		display: block;
		padding: 10px 15px;
	}
	.catalog .items_list .item .button.add span {
		padding-left: 25px;
		background: url(../icons/stepper_m.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	.top_slider .wrap_item.last {
		order: 0;
		font-size: 14px;
		font-weight: 600;
		line-height: 15px;
	}
	.top_slider .wrap_item {
		order: 1;
		height: 80px;
	}
	.top_slider .wrap_item.last .icon::before, .top_slider .wrap_item.last .icon::after {
		display: none;
	}
	.top_slider .wrap_item.last .icon {
		background: url(../icons/stepper_2.svg) center / contain no-repeat;
	}
	.top_slider {
		scrollbar-color:  transparent transparent;
	}
	.top_slider::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.top_slider::-webkit-scrollbar {
		height: 0;
	}
	.catalog .item nav {
		scrollbar-color:  transparent transparent;
	}
	.catalog .item nav::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.catalog .item nav::-webkit-scrollbar {
		height: 0;
	}
	.personal_page .burger {
		right: unset;
		left: 15px;
	}
	header.personal_page nav {
		display: block;
		position: static;
	}
	header.personal_page nav a:not(.button) {
		display: none;
	}
	header.personal_page .button.light:last-child {
		position: absolute;
		width: 40px;
		height: 40px;
		font-size: 0;
		line-height: 0;
		padding: 0;
		border-radius: 5px;
		border: 1px solid #EBE3FB;
		top: -5px;
		right: 15px;
		background: url(../icons/logout.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.content.personal_page .col {
		order: 1;
	}
	.content.personal_page .main_content .top_section {
		display: block;
		order: 2;
		padding: 0 15px 30px 15px;
		margin: 0 -15px 30px -15px;
	}
	header.personal_page .logo {
		margin-bottom: 10px;
	}
	.balance_info {
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		border-top: 0;
		margin: -15px -15px 30px -15px;
		padding: 0 15px 15px 15px;
		justify-content: space-between;
	}
	.balance_info .info:first-child::after {
		display: none;
	}
	.balance_info .info {
		width: calc(50% - 5px);
		padding: 0;
		border-bottom: 0;
		margin-bottom: 0;
		margin-right: 10px;
		order: 5;
		display: none;
		padding-top: 15px;
	}
	.balance_info .info:last-child {
		margin-right: 0;
		padding-top: 15px;
	}
	.balance_info .info:first-child {
		order: 1;
		width: auto;
		display: block;
		padding-right: 0;
		margin-bottom: 0;
		padding-top: 0;
	}
	.balance_info .info:nth-child(3) {
		width: auto;
		order: 2;
		display: block;
		margin-bottom: 0;
		padding-top: 0;
	}
	.balance_info .button {
		order: 3;
		margin-right: 10px;
	}
	.btn_slide {
		order: 4;
		display: block;
		width: 40px;
		height: 40px;
		border-radius: 5px;
		background: #F2ECFD url(../icons/arrow_d.svg) center / contain no-repeat;
		background-size: 20px 20px;
		cursor: pointer;
	}
	.btn_slide.active {
		transform: rotate(180deg);
	}
	.invitation {
		display: none;
	}
	.sorting_lk {
		margin-bottom: 15px;
	}
	.statistics_small {
		margin-right: -5px;
		margin-bottom: 30px;
		hyphens: auto;
	}
	.item_stat {
		margin-right: 5px;
		width: calc((100% / 3) - 5px);
		padding: 15px;
	}
	.pagination:not(:last-child) {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.pagination:not(:last-child) .next {
		top: 0;
		transform: unset;
	}
	.pagination .prev {
		top: 0;
		transform: rotate(180deg);
	}
	.catalog .wrap_item .buttons span {
		font-size: 14px;
		line-height: 15px;
		padding: 12.5px 15px;
	}
	.wrap_lk_menu {
		display: none;
		position: fixed;
		left: 0;
		top: 75px;
		width: 100%;
		height: 100%;
		z-index: 2;
		background: rgba(65, 25, 143, 0.8);
	}
	.wrap_lk_menu .lk_menu {
		width: 100%;
		background: #ffffff;
		padding: 25px;
		border-radius: 0 0 15px 15px;
	}
	.personal_page .burger.active span {
		background: transparent;
	}
	.personal_page .burger.active span:before {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}
	.personal_page .burger.active span::after {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.content.inner_page h1 {
		margin-bottom: 30px;
	}
	.section_inner_page {
		display: block;
	}
	.content_inner_page {
		width: auto;
		margin: 0 0 15px 0;
		padding: 20px;
	}
	.content_inner_page .text {
		margin-bottom: 20px;
	}
	.content_inner_page .add_media label {
		padding: 20px;
		min-height: 100px;
		font-size: 14px;
		line-height: 15px;
	}
	.inner_page .item_info .name {
		font-size: 18px;
		line-height: 20px;
	}
	.inner_page .item_info .info {
		font-size: 14px;
		line-height: 15px;
		width: calc(100% - 65px);
	}
	.inner_page .item_info .image {
		width: 50px;
		height: 50px;
	}
	.content_inner_page .add_media span {
		width: 155px;
		height: 205px;
	}
	.content_inner_page .send.button {
		font-size: 18px;
		line-height: 20px;
	}
	.inner_page .item_info.active {
		padding: 20px;
		border-radius: 5px;
		border: 1px solid #EBE3FB;
	}
	.inner_page .info_text {
		padding-top: 15px;
		margin-bottom: 30px;
		font-size: 18px;
		line-height: 20px;
	}
	.back_lk {
		width: 100%;
	}
	.section_inner_page {
		font-size: 18px;
		line-height: 20px;
	}
	.content_inner_page .header_inner_page {
		padding-bottom: 15px;
		margin-bottom: 15px;
		display: block;
		position: relative;
		padding-right: 30px;
	}
	.content_inner_page .header_inner_page .title_header {
		margin: 0 0 10px 0;
	}
	.content_inner_page .header_inner_page span {
		margin: 0;
	}
	input[type="number"] {
		font-size: 18px;
		line-height: 20px;
		padding: 0 15px;
	}
	.amount_selector {
		padding: 10px 15px;
	}
	.content_inner_page .wrap_selector {
		margin-bottom: 15px;
	}
	.content_inner_page .full.button {
		font-size: 18px;
	}
	.section_inner_page nav .price_info {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.section_inner_page nav .title_info {
		margin-right: 10px;
	}
	.section_inner_page nav .price_info .val {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
		white-space: nowrap;
	}
	.section_inner_page nav .price_info .val span {
		font-size: 16px;
		line-height: 20px;
	}
	.section_inner_page nav .val {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
	}
	.section_inner_page nav .val span {
		font-size: 16px;
		line-height: 20px;
	}
	.section_inner_page nav .balance {
		justify-content: flex-start;
		flex-wrap: nowrap;
		white-space: nowrap;
	}
	.section_inner_page nav .balance .button {
		font-size: 0;
		line-height: 0;
		padding: 0;
		background: #F2ECFD url(../icons/stepper_m.svg) center / contain no-repeat;
		width: 20px;
		height: 20px;
	}
	.section_inner_page nav .balance .val {
		margin-right: 10px;
	}
	.section_inner_page nav .footer_nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.content_inner_page .header_inner_page .info_label {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		white-space: unset;
	}
	.catalog .wrap_catalog .wrap_item {
		padding-top: 30px;
	}
	.catalog .wrap_catalog .wrap_item:first-child {
		padding-top: 40px;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item {
		padding-top: 40px;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item {
		padding-bottom: 20px;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:nth-last-child(-n+3) {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.catalog.blocked_catalog .wrap_catalog.disabled_catalog .wrap_item:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.statistic_table .static_col {
		border-right: 1px solid #F2ECFD;
		width: 165px;
		background: #ffffff;
	}
	.statistic_table .col {
		width: auto;
		margin-right: -15px;
		overflow: hidden;
	}
	.statistic_table .th {
		display: flex;
		align-items: center;
		width: 40px;
		min-width: 40px;
		margin-right: 15px;
	}
	.statistic_table .col .wrap_scroll {
		white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
	}
	.statistic_table .head_table {
		padding: 15px 0;
		margin-bottom: 15px;
		transition: top 0.5s ease;
		top: -100px;
		transition-delay: 0.5s;
		overflow: hidden;
	}
	.statistic_table .col .head_table {
		width: fit-content;
	}
	.statistic_table .head_table .name {
		min-height: unset;
		padding-right: 15px;
	}
	.statistic_table .image {
		width: 80px;
		height: 80px;
	}
	.statistic_table .item_info .info {
		width: 120px;
	}
	.statistic_table .item_info {
		padding-right: 15px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.statistic_table .icon_item {
		margin-bottom: 5px;
	}
	.statistic_table .info .phone {
		font-size: 14px;
		line-height: 15px;
	}
	.statistic_table .tr {
		margin-bottom: 5px;
		padding: 0 15px;
		margin-right: 0;
	}
	.statistic_table .item_table {
		padding-bottom: 15px;
		margin-bottom: 15px;
		width: fit-content;
	}
	.statistic_table .td {
		width: 40px;
		margin-right: 15px;
		min-width: 40px;
	}
	.statistic_table {
		margin-bottom: 20px;
	}
	.statistic_table .head_table.fixed {
		position: fixed;
		top: 80.8px;
		top: 50px;
		padding-top: 45.8px;
		background: #ffffff;
		z-index: 1;
	}
	.statistic_table .static_col .head_table.fixed {
		width: 180px;
		left: 0;
		padding-left: 15px;
		border-right: 1px solid #F2ECFD;
	}
	.inner_section {
		border-radius: 0;
		border: 0;
		padding: 0;
	}
	.inner_section h1 {
		margin-bottom: 30px;
	}
	.inner_section .item_news .date {
		margin-bottom: 5px;
	}
	.inner_section .item_news h5 {
		margin-bottom: 15px;
	}
	.inner_section .item_news .text {
		font-size: 18px;
		line-height: 20px;
	}
	.inner_section .item_news {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.inner_section .wrap_section {
		margin-bottom: 30px;
	}
	.inner_section .item_profile {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.inner_section .item_profile .title_input {
		margin-bottom: 5px;
	}
	.inner_section .item_profile .wrap_input input {
		padding: 10px 15px;
		font-size: 16px;
	}
	.inner_section .item_profile .wrap_input:not(:last-child) {
		margin-bottom: 20px;
	}
	.inner_section .item_profile h5 {
		margin-bottom: 20px;
	}
	button.l_size, .button.l_size {
		font-size: 18px;
		line-height: 20px;
	}
	.inner_section .item_profile .fields {
		margin-bottom: 20px;
	}
	.inner_section .item_profile .droplist {
		display: none;
	}
	.inner_section .item_profile select {
		appearance: none;
		outline: none;
		border: 0;
		border-radius: 5px;
		background: #F5F4FC url(../icons/arrow_d.svg) right 10px center / contain no-repeat;
		background-size: 15px 15px;
		padding: 10px 35px 10px 20px;
		font-family: "Source Sans 3";
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
		color: #2C1162;
		display: block;
		width: 100%;
		cursor: pointer;
	}
	.inner_section .item_profile textarea {
		font-size: 16px;
		line-height: 20px;
		padding: 10px 15px;
		height: 160px;
	}
	.button.whatswpp span {
		background-size: 20px 20px;
		padding-left: 25px;
	}
	.button.telegram span {
		background-size: 20px 20px;
		padding-left: 25px;
	}
	.content.new_page {
		display: block;
	}
	.section_new_page h1 {
		margin-bottom: 30px;
	}
	.item_section .fields {
		display: block;
		margin: 0 0 20px 0;
	}
	.item_section .fields .wrap_input {
		width: 100%;
		margin: 0 0 20px 0;
	}
	.section_new_page {
		width: auto;
		margin-right: 0;
	}
	.item_section .title_input {
		margin-bottom: 5px;
	}
	.item_section .fields .droplist {
		display: none;
	}
	select.drop {
		display: block;
		width: 100%;
		color: #2C1162;
		font-family: "Source Sans 3";
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
		outline: none;
		border: 0;
		border-radius: 5px;
		background: #F5F4FC url(../icons/arrow_d.svg) right 10px center / contain no-repeat;
		background-size: 15px 15px;
		appearance: none;
		padding: 10px 35px 10px 15px;
	}
	.item_section input {
		padding: 10px 15px;
		font-size: 16px;
		margin-bottom: 5px;
	}
	.item_section .footnote {
		font-size: 14px;
		line-height: 15px;
	}
	.item_section .fields .wrap_input:last-child {
		margin-bottom: 0;
	}
	.item_section {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.item_section h3 {
		margin-bottom: 30px;
	}
	.item_section .selector {
		padding-top: 5px;
	}
	.item_section .selector .hiddden_el.time {
		padding-top: 10px;
	}
	.item_section .fields.min {
		display: flex;
		flex-wrap: wrap;
		margin-right: -15px;
	}
	.item_section .fields.min .wrap_input {
		width: calc((100% / 3) - 15px);
		margin: 0 15px 20px 0;
	}
	.touch_selector .item_t {
		padding: 10px 5px;
	}
	.check_list {
		display: block;
		margin-bottom: 15px;
	}
	.check_list .wrap_check {
		width: 100%;
		padding: 15px;
		margin: 0 0 10px 0;
	}
	.wrap_pays_list {
		padding: 15px;
	}
	.wrap_pays_list .pays_list {
		display: block;
		margin: 0;
	}
	.wrap_pays_list .pays_list .checkbox {
		margin: 0 0 15px 0;
	}
	.wrap_pays_list .pays_list .checkbox:last-child {
		margin-bottom: 0;
	}
	.slide_list {
		margin-bottom: 0;
		padding: 15px 0;
		border-bottom: 1px solid #F2ECFD;
	}
	.slide_list .name {
		font-size: 16px;
		line-height: 20px;
		padding: 0 30px 0 0;
	}
	.slide_list .name::before {
		left: unset;
		right: 0;
		width: 20px;
		height: 20px;
	}
	.slide_list:nth-child(2) {
		padding-top: 0;
	}
	.slide_list:last-child {
		border-bottom: 0;
	}
	.slide_list .list {
		padding: 10px 0 0 0;
	}
	.slide_list .list .footnote_name {
		margin-bottom: 15px;
	}
	.slide_list .list .item_check {
		margin-bottom: 5px;
	}
	.item_section .title_wrap h3 {
		margin-bottom: 10px;
	}
	.item_section .title_wrap {
		margin-bottom: 15px;
	}
	.item_section .add_photo {
		margin: 0 5px 15px 0;
		width: calc(100% - -5px);
		height: 50px;
		flex-direction: row;
	}
	.item_section .add_photo .icon {
		margin: 0 10px 0 0;
		padding: 10px;
	}
	.item_section .photo_list .photo_wrap {
		width: calc((100% / 3) - 5px);
		height: auto;
		margin-bottom: 5px;
	}
	.item_section .photo_list {
		margin-bottom: 10px;
	}
	.wrap_pays_list.photo_add {
		display: block;
		margin-bottom: 15px;
	}
	.wrap_pays_list.photo_add .wrap_info {
		margin: 0;
		max-width: unset;
	}
	.wrap_pays_list.photo_add .wrap_info .info {
		padding: 5px 0 5px 30px;
	}
	.item_section .wrap_pays_list.photo_add .add_photo {
		margin-bottom: 0;
	}
	.item_section h4.inf {
		margin-bottom: 5px;
	}
	.video_wrap {
		width: 100%;
		height: 185px;
	}
	.item_section textarea {
		height: 120px;
		margin-bottom: 5px;
	}
	.item_section.reviews .checkbox {
		margin-bottom: 0;
	}
	.item_section.reviews .footnote {
		font-size: 16px;
		line-height: 20px;
	}
	.section_new_page .add_btn {
		margin-bottom: 15px;
	}
	.col_new_page {
		width: 100%;
		padding-top: 15px;
		border-top: 1px solid #F2ECFD;
	}
	.text_footnote_btn {
		margin-bottom: 15px;
	}
	.col_new_page h3 {
		position: relative;
		cursor: pointer;
		padding-right: 30px;
		margin-bottom: 0;
	}
	.col_new_page h3::after {
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(../icons/next.svg) center / contain no-repeat;
	}
	.col_new_page h3.active::after {
		transform: translateY(-50%) rotate(90deg);
	}
	ul.requirements {
		padding-top: 15px;
		font-size: 14px;
		line-height: 15px;
		display: none;
	}
	ul.requirements li {
		margin-bottom: 10px;
	}
	.section_inner_page nav {
		width: 100%;
	}
	.content_page_added .page_added_note .links {
		display: block;
		font-size: 15px;
	}
	.content_page_added .page_added_note .links a {
		display: inline-block;
		margin: 0 0 20px 0;
	}
	.content_page_added .page_added_note .links a:last-child {
		margin-bottom: 0;
	}
	.content_page_added .page_added_note {
		margin-bottom: 30px;
	}
	.content_page_added .promotion_section {
		padding: 20px;
	}
	.content_page_added .promotion_section h3 {
		margin-bottom: 30px;
	}
	.item_promotion {
		padding-bottom: 15px;
		margin-bottom: 15px;
		font-size: 16px;
	}
	.item_promotion .checkbox span:not(.info_label) {
		display: none;
	}
	.item_promotion .checkbox {
		padding-right: 30px;
	}
	.item_promotion .checkbox .info_label {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.item_promotion .footnote_check::after {
		display: block;
		content: attr(data-price);
		padding-top: 5px;
		font-weight: 600;
	}
	.item_promotion .wrap_selector.hidden {
		padding-top: 15px;
	}
	.section_inner_page nav.desktop_nav {
		display: none;
	}
	.section_inner_page nav.mobile_nav {
		display: block;
		margin-bottom: 15px;
	}
	.flex_button {
		display: block;
	}
	.flex_button .button:first-child {
		margin: 0 0 10px 0;
	}
	.content.inner_page h1 {
		margin-bottom: 20px;
	}
	.ballance_page .current_val {
		margin-bottom: 30px;
		font-size: 18px;
		line-height: 20px;
	}
	.ballance_section {
		padding: 20px;
	}
	.ballance_section h3 {
		margin-bottom: 20px;
	}
	.ballance_section .item_selector {
		display: block;
		margin-right: 0;
		font-size: 18px;
		margin-bottom: 20px;
	}
	.ballance_section .item_selector .item {
		width: 100%;
		margin: 0 0 10px 0;
		flex-direction: row;
		justify-content: flex-start;
	}
	.ballance_section .item_selector .val:not(:last-child) {
		margin: 0 10px 0 0;
	}
	.ballance_section .item_selector .footnote_val {
		font-size: 14px;
		line-height: 15px;
		flex-grow: 1;
		text-align: right;
	}
	.ballance_section .item_selector .label {
		margin: 0 10px 0 0;
	}
	.ballance_section .text {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 15px;
	}
	.ballance_section .button {
		min-width: unset;
		width: 100%;
	}
	.wrap_code {
		display: block;
	}
	.wrap_code input[type="text"] {
		max-width: unset;
		margin: 0 0 10px 0;
	}
	.ballance_section h3 span {
		padding-right: 10px;
	}
	.content_page_added .promotion_section .ballance_check h3 {
		margin-bottom: 15px;
	}
	.top_nav h1 {
		max-width: calc(100% - 40px);
	}
	.top_nav .button {
		font-size: 0;
		line-height: 0;
		padding: 0;
		width: 40px;
		height: 40px;
		background: #4C26A3 url(../icons/stepper_p.svg) center / contain no-repeat;
		background-size: 20px 20px;
	}
	.opinions_list .item {
		margin-bottom: 20px;
		padding: 15px;
		position: relative;
	}
	.opinions_list .item .top_item {
		display: block;
		padding: 10px 0;
		width: calc(100% - 95px);
		margin-bottom: 15px;
		min-height: 80px;
	}
	.opinions_list .item .top_item h3 {
		margin: 0 0 15px 0;
	}
	.opinions_list .item .image {
		position: absolute;
		margin: 0;
		top: 15px;
		right: 15px;
		width: 80px;
		height: 80px;
	}
	.opinions_list .item .top_item .inf {
		padding: 5px 5px 5px 23px;
		border-radius: 5px;
		background: #F2ECFD url(../icons/bubble.svg) left 5px center / contain no-repeat;
		background-size: 15px 15px;
		display: inline-block;
		font-family: "Source Sans 3";
		font-size: 14px;
		font-weight: 600;
		line-height: 15px;
	}
	.opinions_list .item .rating_scale span:not(:nth-last-child(2)) {
		display: none;
	}
	.opinions_list .item .sum {
		font-size: 14px;
		line-height: 15px;
		padding-left: 5px;
	}
	.opinions_list .item .title {
		font-size: 18px;
		line-height: 20px;
	}
	.opinions_list .item .date {
		font-size: 14px;
	}
	.opinions_list .item .text {
		margin-bottom: 15px;
	}
	.opinions_list .item .rating_list {
		font-size: 14px;
		line-height: 15px;
	}
	.item_section .fields .col_flex {
		width: 100%;
		display: block;
	}
	.item_section .fields .col_flex .wrap_input {
		width: 100%;
	}
	.statistic_table.full_statistic .head_table {
		padding-top: 0;
		width: 100%;
	}
	.statistic_table.full_statistic .static_col {
		width: 165px;
	}
	.statistic_table.full_statistic .col {
		width: calc(100% - 165px);
	}
	.statistic_table.full_statistic .tr {
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
		scrollbar-color:  transparent transparent;
	}
	.statistic_table.full_statistic .tr::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.statistic_table.full_statistic .tr::-webkit-scrollbar {
		height: 0;
	}
	.statistic_table.full_statistic .th {
		min-width: unset;
		margin-bottom: 0;
		margin-right: 15px;
	}
	.statistic_table.full_statistic .head_table .name {
		margin-bottom: 0;
	}
	.check_list .wrap_check .flex_wrap {
		display: block;
		padding-top: 20px;
		margin: 0;
	}
	.check_list .wrap_check .flex_wrap .wrap_input {
		margin: 0 0 20px 0;
		width: 100%;
	}
	.item_section .fields .col_flex .field-profileform-tg::before {
		bottom: 15px;
	}
	.flex_items {
        padding-top: 10px;
        font-size: 16px;
    }
    .flex_items .item {
        padding: 20px;
        margin-bottom: 15px;
    }
    .flex_items .item .wrpap_content {
        margin-bottom: 15px;
    }
    .flex_items .item .section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .content_inner_page.content_page_added.pre_added {
        margin-bottom: 0;
    }
    .content_page_added.pre_added .promotion_section {
        margin-bottom: 30px;
    }
    .section_inner_page .pre_added nav.mobile_nav {
        margin-bottom: 30px;
    }
    .pre_added .add_btn {
		margin-bottom: 15px;
	}
	.pre_added .text_footnote_btn {
		margin-bottom: 0;
		font-size: 16px;
	}
     .flex_items .item_link {
        margin-bottom: 20px;
    }
    .faq_section .item_drop .name {
        font-size: 16px;
        line-height: 20px;
        padding: 0 30px 0 0;
    }
    .faq_section .item_drop .name::before {
        right: 0;
        left: unset;
        width: 20px;
        height: 20px;
    }
    .faq_section .item_drop .list {
        padding: 10px 0 0 0;
    }
    .faq_section .item_drop {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #F2ECFD;
    }
    .faq_section .item_drop:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
    .faq_section .item_drop .text:not(:last-child) {
        margin-bottom: 10px;
    }
    .faq_section .item_drop .title {
        margin-bottom: 0;
    }
    .faq_section .item_drop .item_text {
        margin-bottom: 10px;
    }
    .nav_reviews {
    	padding-top: 15px;
    	font-size: 14px;
    }
    .answer_section {
  		margin: 15px -15px 0 -15px;
  		padding: 15px 15px 0 15px;
    }
    .answer_section .close {
    	top: 15px;
    	right: 15px;
    }
    .answer_section h2 {
    	margin-bottom: 15px;
    }
    .answer_section textarea {
    	padding: 10px 15px;
    	margin-bottom: 10px;
    }
    .filter_history {
        margin-bottom: 35px;
    }
    .droplist .name {
        padding: 10px 35px 10px 15px;
    }
    .filter_history .droplist {
        margin-right: 5px;
        width: calc(50% - 2.5px);
    }
    .table_history {
        margin-bottom: 20px;
    }
    .table_history .head {
        padding-bottom: 15px;
        width: max-content;
    }
    .table_history .tr {
        padding: 15px 0;
        width: max-content;
    }
    .table_history .th:first-child {
        width: 120px;
        min-width: 120px;
    }
    .table_history .th:last-child {
        width: 120px;
        min-width: 120px;
    }
    .table_history .th {
        margin-right: 15px;
    }
    .table_history .td:not(:first-child, :last-child) {
        min-width: 180px;
    }
    .table_history .th:not(:first-child, :last-child) {
        min-width: 180px;
    }
    .table_history .td:first-child {
        width: 120px;
        min-width: 120px;
    }
    .table_history .td:last-child {
        width: 120px;
        min-width: 120px;
    }
    .reviews .item_reviews .title .col .real {
    	font-size: 14px;
    	line-height: 15px;
    	padding-left: 18px;
    	background-size: 15px 15px;
    }
    .info_label_text {
    	width: 100%;
    	padding-right: 45px;
    }
    .info_label_text .close {
    	position: absolute;
    	top: 15px;
    	right: 15px;
    	cursor: pointer;
    	width: 25px;
    	height: 25px;
    }
    .info_label_text .close::before, .info_label_text .close::after {
    	position: absolute;
	    content: "";
	    width: 18px;
	    height: 3px;
	    background: #2C1162;
	    left: 50%;
	    top: 50%;
    }
    .info_label_text .close::before {
    	transform: translate(-50%, -50%) rotate(-45deg);
    }
    .info_label_text .close::after {
    	transform: translate(-50%, -50%) rotate(45deg);
    }
    .link_ref {
        padding: 15px;
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 20px;
    }
    .buttons_ref {
        margin: 0;
        display: block;
    }
    .buttons_ref .button {
        margin: 0 0 5px 0;
        justify-content: center;
    }
    .buttons_ref .button:last-child {
        margin-bottom: 0;
    }
    .buttons_ref .button svg {
        margin-right: 5px;
    }
    .full_ref {
        font-size: 18px;
        line-height: 20px;
    }
    .wrap_table {
        overflow: hidden;
        overflow-x: auto;
        scrollbar-color:  transparent transparent;
        margin: 0 -15px;
        padding: 0 15px;
    }
    .wrap_table::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.wrap_table::-webkit-scrollbar {
		height: 0;
	}
    .table_ref {
        word-break: unset;
        hyphens: unset;
        white-space: nowrap;
        width: fit-content;
        margin-bottom: 20px;
    }
    .table_ref .tr {
        padding: 15px 0;
    }
    .table_ref .th {
        width: 120px;
        margin-right: 15px;
        min-width: 120px;
    }
    .table_ref .th:nth-child(2) {
        width: 180px;
        min-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
       
    }
    .table_ref .td:nth-child(2) {
        width: 180px;
        min-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .table_ref .td {
        width: 120px;
        margin-right: 15px;
        min-width: 120px;
    }
    .invitation.mobile_element {
        display: block;
        margin-bottom: 35px;
    }
    .catalog .wrap_catalog .wrap_item:nth-child(3) {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 35px;
    }
    .invitation .wrap_button {
        display: flex;
        margin-right: -5px;
    }
    .invitation .wrap_button .button {
        width: calc(50% - 5px);
        margin-right: 5px;
        margin-bottom: 0;
    }
}

/* Keep public catalogue cards aligned; hidden banner nodes must not affect columns. */
.catalog.catalog_grid > .wrap_catalog {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 30px;
}

.catalog.catalog_grid > .wrap_catalog > .wrap_item {
	width: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-right: 0 !important;
}

@media (max-width: 1570px) {
	.catalog.catalog_grid > .wrap_catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1270px) {
	.catalog.catalog_grid > .wrap_catalog {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Keep catalogue controls aligned and unbroken content inside cards. */
.catalog .item .item_name,
.catalog .item .footnote,
.catalog .item .val_price {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media (min-width: 1271px) {
	.catalog.catalog_grid > .wrap_catalog > .wrap_item:not(.boost_wrap) {
		padding-bottom: 67px !important;
	}

	.catalog.catalog_grid > .wrap_catalog > .wrap_item > .item > .buttons {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 20px;
	}

	.catalog.catalog_grid > .wrap_catalog > .wrap_item > .item > .item_footnote {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
	}
}
