:root {
	--white : #fff;
	--white80 : #ffffffcc;;
	--primary-green : #91C30F;
	--primary-green-hov : #86AB37;
	--primary-green-form : #81BB3C;
	--action-green: #B9F373;
	--dark-blue : #2D3860;
	--dark-blue_2 : #111B2F;
	--primary-blue :#0F4193;
	--grey : #DFE6F2;
	--gray_2 : #B0B4C0;
	--red-error : #E81B0C;
	--transition-custom: .4s all linear;
}
@media (min-width: 1400px) {
	.container {
		max-width: 1200px;
	}
}
@media (max-width: 1400px) {
	body {
		padding-top: 0!important;
	}
	.container {
		max-width: calc(100% - 32px);
		padding: 0;
	}
}

@media (max-width: 767px) { /* Мобилка */
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: unset!important;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {  /* Планшет */
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: unset!important;
	}
	.mob_img {
		display: none;
	}
}
@media (min-width: 1026px) { /* pc */
	.pc_img {
		display: unset!important;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: none;
	}

}
[class*="btn"] {
	display: inline-block;
	text-decoration: none;
	transition: var(--transition-custom);
	border: transparent;
	cursor: pointer;
	font-family: 'Inter';
}
a {
	transition: var(--transition-custom);
}
.btn-white{
	color: var(--dark-blue_2);
	background: var(--white);
	padding: 19px 24px 19px 24px;
	border-radius: 66px;
}
.btn-white:hover {
	color: var(--white);
	background: var(--dark-blue_2);
}
.btn-outline-blue{
	color: var(--dark-blue_2);
	border: 2px solid var(--dark-blue_2);
	padding: 19px 24px 19px 24px;
	border-radius: 66px;
	font-weight: 700;
}
.btn-outline-blue:hover{
	color: var(--white);
	border-color: var(--white);
}
.btn-outline-white {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
}
.btn-outline-white:hover{
	color: var(--dark-blue_2);
	border-color: var(--dark-blue_2);
}
.btn-green {
	cursor: default;
	font-size: 13px;
	font-weight: 600;
	line-height: 16px;
	background: var(--primary-green);
	color: var(--white);
	padding: 7px 12px;
	border-radius: 7px;
}
section h2.title_h2 {
	color: var(--dark-blue);
	font-size: 35px;
	font-weight: 700;
	line-height: 57px;
	margin-bottom: 50px;
}
@media (max-width: 1025px) {
	section h2.title_h2 {
		font-size: 24px;
		margin-bottom: 24px;
		line-height: 29.05px;
	}
}
* {
	margin: 0;
	padding: 0;
	font-family: 'Inter';
}
body {
	font-family: 'Inter';
	color: var(--dark-blue_2);
}
/* Шапка */
header {
	width: 100%;
	background: var(--primary-green);
}
header .container {
	justify-content: space-between;
	display: flex;
	align-items: center;
}
header .top_menu {
	display: flex;
	align-items: center;
}
header .logo {
	width: 252px;
	height: 60px;
}
header .logo  {
	fill: var(--white);
}
@media (min-width: 1025px) {
	header {
		padding-top: 30px;
		padding-bottom: 20px;
		transition: .35s all linear, padding-bottom 0s, background 0s, width 0s;
		z-index: 3;
	}
	header.fixed {
		width: 100vw;
		background: var(--white80);
		top: calc(var(--header-height) * -1);
		position: fixed;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
	}
	header.fixed .logo {
		fill: var(--primary-green);
	}
	header.fixed.view {
		top: 0px;
	}
	header .mobile_burger {
		display: none;
	}
	header .top_menu .menu_itm:not([class*="btn"]) {
		margin-right: 24px;
		color: var(--dark-blue_2);
		text-decoration: none;
	}
	header .top_menu .menu_itm:not([class*="btn"]):hover {
		color: var(--white);
	}
	header .top_menu .menu_itm[class*="btn"] {
		margin-left: 6px;
	}
	header.fixed .top_menu .menu_itm:hover {
		color: var(--primary-blue);
		border-color: var(--primary-blue);
	}
}
@media (max-width: 1025px) {
	header {
		background: var(--white80);
		position: fixed;
		z-index: 2;
		/*transition: .4s all linear, .15s border-radius linear;*/
		transition: .4s all linear, .35s border-radius linear;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
	}
	header .logo {
		fill: var(--primary-green);
		width: 185px;
		height: 44.14px;
	}
	body header {
		transition-delay: .15s;
	}
	body.open_menu_mob header {
		transition: .4s all linear, .001s border-radius linear;
		
		border-radius: 0px 0px 40px 40px;
		transition-delay: 0s;
	}
	header .container {
		flex-wrap: wrap;
		padding: 18px 0px;
	}
	header .mobile_burger {
		background: transparent;
		border: 0;
		width: 18px;
		height: 18px;
		position: relative;
		transition-duration: 1s;
		cursor: pointer;
	}
	header .mobile_burger span {
		left: 0;
		height: 2px;
		width: 100%;
		background-color: var(--primary-blue);
		border-radius: 20px;
		position: absolute;
		transition-duration: .25s;
		transition-delay: .25s;    
	}
	header .mobile_burger span:before {
		left: 0;
		position: absolute;
		top: -6px;
		height: 2px;
		width: 100%;
		background-color: var(--primary-blue);
		content: "";
		border-radius: 20px;
		transition-duration: .25s;
		transition: transform .25s, top .25s .25s;
	}
	header .mobile_burger span:after {
		left: 0;
		position: absolute;
		top: 6px;
		height: 2px;
		width: 100%;
		background-color: var(--primary-blue);
		content: "";
		border-radius: 20px;
		transition-duration: .25s;
		transition: transform .25s, top .25s .25s;
	}
	body.open_menu_mob header .mobile_burger span {
		transition-duration: 0.1s;
		transition-delay: .25s;
		background: transparent;
	}
	body.open_menu_mob header .mobile_burger span:before {
		transition: top .25s, transform .25s .25s;
		top: 0px;
		transform: rotateZ(-45deg);
	}
	body.open_menu_mob header .mobile_burger span:after {
		transition: top 0.4s, transform .25s .25s;
		top: 0px;
		transform: rotateZ(45deg);
	}
	header .top_menu {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		max-height: 0vh;
		transition: var(--transition-custom);
		overflow: hidden;
		opacity: 0;
	}
	header .top_menu .menu_itm {
		margin-top: 24px;
	}
	header .top_menu .menu_itm:not([class*="btn"]) {
		color: var(--dark-blue_2);
		text-decoration: none;
	}
	header .top_menu .menu_itm[class*="btn"] {
		width: 100%;
		text-align: center;
		font-size: 16px;
		font-weight: 700;
		line-height: 19px;
		box-sizing: border-box;
	}
	body.open_menu_mob header .top_menu {
		max-height: 100vh;
		opacity: 1;
	}

}
/* Слайдер */
section.first_block {
	background: var(--primary-green);
	margin-bottom: 90px;
}
section.first_block .swiper-pagination {
	text-align: right;
	left: unset;
	right: 24px;
}
section.first_block .swiper-pagination .swiper-pagination-bullet {
	opacity: 1;
	height: 10px;
	width: 10px;
	background: var(--white);
	transition: .4s all linear;
}
section.first_block .swiper-pagination .swiper-pagination-bullet-active {
	transform: scale(1.4);
	background: var(--action-green);
}
@media (min-width: 1025px) {
	section.first_block {
		margin-bottom: 56px;
		padding-top: 24px;
		padding-bottom: 85px;
	}
	section.first_block .main_slider .left-content {
		display: flex;
		flex-direction: column;
		max-width: 457px;
	}
	section.first_block .main_slider .left-content .info-slide {
		margin-top: auto;
		color: var(--white);
	}
	section.first_block .main_slider .left-content .title {
		font-size: 55px;
		font-weight: 700;
		line-height: 60.5px;
	}
	section.first_block .main_slider .left-content .sub-title {
		margin-top: 20px;
		font-size: 32px;
		font-weight: 700;
		line-height: 39px;
	}
	section.first_block .main_slider .left-content .text{
		margin-top: 30px;
		font-size: 22px;
		font-weight: 400;
		/*line-height: 29px;*/
		line-height: 26.63px;
		margin-bottom: 100px;
	}
	section.first_block .main_slider .left-content .text:last-child {
		margin-bottom: 158px;
	}
	section.first_block .main_slider .left-content .btn-white {
		font-size: 18px;
		font-weight: 600;
		line-height: 22px;
	}

	section.first_block .main_slider .left-content .swiper-button {
		/*margin-top: auto;*/
		margin-top: 29.5px;
	}
	section.first_block .main_slider .left-content .swiper-button button {
		background: transparent;
		cursor: pointer;
		transition: var(--transition-custom);
		overflow: hidden;
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 2px solid var(--dark-blue_2);
		border-radius: 100%;
		margin-right: 20px;
	}
	section.first_block .main_slider .left-content .swiper-button button svg{
		height: 24px;
		width: 24px;
		fill: transparent;
		stroke: var(--dark-blue_2);
	}
	section.first_block .main_slider .left-content .swiper-button button svg * {
		transition: var(--transition-custom);
	}
	section.first_block .main_slider .left-content .swiper-button button:hover {
		border-color: var(--white);
	}
	section.first_block .main_slider .left-content .swiper-button button:hover svg * {
		stroke: var(--white);
	}
	section.first_block .main_slider .right-content{
		min-height: 531px;
		position: relative;
	}
	section.first_block .main_slider .right-content img {
		position: absolute;
		width: auto;
		height: 100%;
		border-radius: 300px 0px 0px 300px;
		min-width: 55vw;
		object-fit: cover;
	}
	section.first_block .swiper-pagination {
		width: 50%;
	}
}
@media (min-width: 1920px) {
	section.first_block .main_slider .right-content img {min-width: 60vw;}
}
@media (max-width: 1025px) {
	section.first_block {
		padding-top: calc(80px + 45px);
		overflow: hidden;
		border-radius: 0px 0px 40px 40px;
		background: linear-gradient(to bottom, var(--primary-green) 60%, var(--white) 50%);
		margin-bottom: 56px;
	}
	section.first_block .container {
		max-width: 100%;
		height: 100%;
	}
	section.first_block .container .row {
		justify-content: center;
		height: 100%;
	}
	section.first_block .swiper-pagination {
		bottom: 24px;
	}
	section.first_block .main_slider .swiper-slide {
		height: auto!important; /* Растягиваем слайды на всю высоту */
	}
	section.first_block .main_slider .left-content {
		max-width: calc(100% - 32px);
		padding-bottom: 32px;
	}
	section.first_block .main_slider .left-content .info-slide {
		display: flex;
		flex-direction: column;
		color: var(--white);
	}
	section.first_block .main_slider .left-content .title {
		font-size: 30px;
		font-weight: 700;
		line-height: 33px
	}
	section.first_block .main_slider .left-content .sub-title {
		margin-top: 24px;
		font-size: 24px;
		font-weight: 800;
		line-height: 26px;
	}
	section.first_block .main_slider .left-content .text{
		margin-top: 16px;
		font-size: 19px;
		font-weight: 400;
		line-height: 28.5px;
	}
	section.first_block .main_slider .left-content .btn-white {
		text-align: center;
		font-size: 18px;
		font-weight: 600;
		line-height: 22px;
	}
	section.first_block .main_slider .left-content .swiper-button {
		display: none;
	}
	section.first_block .main_slider .left-content .btn-white {
		margin-top: 32px;
	}
	section.first_block .main_slider .left-content, section.first_block .main_slider .right-content {
		flex: 0 0 auto;
	}
	section.first_block .main_slider .right-content {
		height: 328px;
	}
	section.first_block .main_slider .right-content img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	section.first_block .swiper-pagination .swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
	}
}
@media (max-width: 767px) {
	section.first_block .main_slider .left-content .title {
		font-size: 24px;
		line-height: 26px;
	}
	section.first_block .main_slider .left-content .sub-title,
	section.first_block .main_slider .left-content .text {
		font-size: 16px;
		line-height: 24px;
	}
}
@media (min-width: 767px) and (max-width: 1025px) {
	section.first_block .main_slider .right-content {
		height: 600px;
	}
}

/* Слайдер промо блок */
section.promo_block {
	/*padding-top: 90px;
	padding-top: 100px;
	padding-bottom: 60px;*/
	padding-bottom: 50px;
}

section.promo_block .container {
	overflow: hidden;
	/*padding: 0 7px;
	padding-bottom: 16px;*/
	padding: 0 8px;
	padding-top: 10px;
	padding-bottom: 26px;
}
@media (min-width: 1025px) {
	section.promo_block .container {
		padding: 0 18px;
		max-width: 1210px;
		padding-top: 10px;
		padding-bottom: 26px;
	}
}
section.promo_block .swiper {
	overflow: unset;
}
section.promo_block .swiper-slide {
	border-radius: 40px;
	overflow: hidden;
	transition: var(--transition-custom);
	height: auto;
}
@media (min-width: 1025px){
	section.promo_block .swiper-slide:hover {
		box-shadow: 0px 10px 12px 0px #A5ACB680;
		transform: scale(1.01);
	}
}
section.promo_block .swiper-slide .img-block {
	border-radius: 40px;
	position: relative;
	overflow: hidden;
	text-align: center;
	height: 262px;
}
section.promo_block .swiper-slide .img-block img {
	height: 100%;
	position: absolute;
	right: 0;
	object-fit: cover;
	min-width: 100%;
}
section.promo_block .swiper-slide .info-slide {
	margin: 24px 32px;
}
section.promo_block .swiper-slide .info-slide .title {
	font-size: 19px;
	font-weight: 700;
	line-height: 27px;
	color: var(--dark-blue);
}
section.promo_block .swiper-slide .info-slide .sub-title {
	margin-top: 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	color: var(--dark-blue);
}
section.promo_block .swiper-slide .info-slide .date {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	color: var(--gray_2);
}
@media (min-width: 1025px) {
	section.promo_block .swiper-button button {
		cursor: pointer;
		transition: var(--transition-custom);
		border: none;
		overflow: hidden;
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: var(--white);
		border-radius: 100%;
		margin-right: 20px;
		position: absolute;
		top: calc(128px - (36px / 2));
		margin: auto;
		z-index: 2;
		box-shadow: 0px 0px 16px -2px #00000014;
	}
	section.promo_block .swiper-button button.swiper-button-disabled{
		opacity: 0;
		transform: scale(0);
	}
	section.promo_block .swiper-button button.swiper_button_prev{
		left: 0;
	}
	section.promo_block .swiper-button button.swiper_button_next{
		right: -8px;
	}
	section.promo_block .swiper-button button svg {
		fill: transparent;
		stroke: var(--dark-blue_2);
		height: 24px;
		width: 24px;
	}
	section.promo_block .swiper-button button svg * {
		transition: var(--transition-custom);
	}
	section.promo_block .swiper-button button:hover {
		background: var(--grey);
		box-shadow: 0px 0px 16px -2px #00000014;
	}
}
@media (max-width: 1025px) {
	section.promo_block {
		/*padding-top: 56px;*/
		padding-bottom: 40px;
		overflow: hidden;
	}
	section.promo_block .container {
		/*max-width: 100%;*/
		max-width: calc(100% - 32px);
		padding: 0 16px;
		transform: translate(0px, 0%)!important;
		opacity: 1!important;
	}
	section.promo_block .swiper-button {
		display: none;
	}
	section.promo_block .swiper-slide .info-slide {
		margin: 24px 0px;
	}
}

/* О нас */
section.about {
	margin-bottom: 100px;
}
section.about .green_bg{
	background: var(--primary-green);
	align-items: center;
	color: var(--white);
}
section.about .green_bg .col.left .title{
	font-size: 35px;
	font-weight: 700;
	line-height: 47px;
	margin-bottom: 22px;
}
section.about .green_bg .col.left .sub-title{
	font-size: 19px;
	font-weight: 700;
	line-height: 29px;
}
section.about .green_bg .col.right p {
	font-size: 19px;
	font-weight: 400;
	line-height: 27px;
	margin-bottom: 25px;
}
section.about .green_bg .col.right p:last-child {
	margin-bottom: 0;
}
@media (min-width: 1025px) {
	section.about .green_bg{
		padding: 40px 110px 40px 110px;
		border-radius: 130px;
	}
	section.about .green_bg .col.left {
		max-width: 310px;
		flex: 0 0 auto;
		width: 33.33333333%;
	}
	section.about .green_bg .col.right {
		padding-left: 60px;
	}
}
@media (max-width: 1025px) {
	section.about {
		margin-bottom: 56px;
	}
	section.about .container {
		max-width: calc(100% - 32px);
		padding: 0 16px;
		transform: translate(0px, 0%)!important;
		opacity: 1!important;
	}
	section.about .green_bg .col.left,
	section.about .green_bg .col.right {
		flex: 100%;
	}

	section.about .green_bg .col.left .title {
		margin-bottom: 6px;
		font-size: 24px;
		line-height: 33.6px;
	}
	section.about .green_bg .col.left .sub-title {
		font-size: 19px;
		line-height: 29px;
	}
	section.about .green_bg .col.left {
		margin-bottom: 24px;
	}
	section.about .green_bg .col.right p {
		margin-bottom: 12px;
		font-size: 19px;
		line-height: 28.5px;
	}
	section.about .green_bg {
		padding: 24px;
		border-radius: 40px;
	}
}
@media (max-width: 767px) {

	section.about .green_bg .col.left .title {
		margin-bottom: 6px;
		font-size: 24px;
		line-height: 29px;
	}
	section.about .green_bg .col.left .sub-title {
		font-size: 16px;
		line-height: 22.4px;
	}
	section.about .green_bg .col.right p {
		font-size: 16px;
		line-height: 24px;
	}
}

/* Наши магазины  и галерея о нас */
section.about_us_galery,
section.store
{
	margin-bottom: 100px;
}
section.about_us_galery .flex-container ,
section.store .flex-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
section.about_us_galery .flex-container .flex_itm ,
section.store .flex-container .flex_itm {
	flex: 1 0 calc(25% - 8px);
	overflow: hidden;
	/*border-radius: 30px;*/
	border-radius: 40px;
	height: 281px;
	max-height: 33.5vh;

}

section.about_us_galery .flex-container .flex_itm:nth-child(1) ,
section.store .flex-container .flex_itm:nth-child(1) {
	flex: 1 0 calc(50% - 8px);
}

section.about_us_galery .flex-container .flex_itm:nth-child(6) ,
section.store .flex-container .flex_itm:nth-child(6) {
	flex: 1 0 calc(50% - 8px);
}
section.about_us_galery .flex_itm img ,
section.store .flex_itm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-custom);
}
section.store .flex_itm:hover img {
	transform: scale(1.1);
}
@media (max-width: 1025px) {
	section.about_us_galery .flex-container .flex_itm ,
	section.store .flex-container .flex_itm {
		flex: 1 0 calc(50% - 8px);
		/*height: 170px;;*/
		height: unset;
	}
	section.about_us_galery .flex_itm img,
	section.store .flex_itm img {
		height: auto;
	}
}
section.about_us_galery .text_block {
	font-weight: 700;
	font-size: 19px;
	font-weight: 400;
	line-height: 29px;
	margin: 50px 0;
	color: var(--dark-blue);
}
section.about_us_galery .text_block p:not(:last-child) {
	margin-bottom: 10px;
}
@media (max-width: 1025px) {
	section.about_us_galery .text_block {
		margin: 0;
		margin-bottom: 24px;
		font-size: 19px;
		line-height: 28.5px;
	}
	section.about_us_galery,
	section.store
	{
		margin-bottom: 56px;
	}
}
@media (max-width: 767px) {
	section.about_us_galery .text_block {
		font-size: 16px;
		line-height: 24px;
	}
}
section.store_location {
	margin-bottom: 100px;
}
section.store_location .map_section {
	display: -webkit-flex;
	display:flex;
	/*border-radius: 20px;*/
	border-radius: 40px;
	overflow: hidden;
}
section.store_location .map_section .shop_container {
	background: #FAFBFF;
	width: 100%;
	height: 500px;
	padding: 0 10px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch; 
}
section.store_location .map_section .shop_container::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
section.store_location .map_section .shop_container::-webkit-scrollbar-track {
	background-color: #F2F6FE;
	border-radius: 6px; 
}
section.store_location .map_section .shop_container::-webkit-scrollbar-thumb {
	background-color: #DFE6F2;
	border-radius: 6px;
}
section.store_location .map_section .shop_container::-webkit-scrollbar-thumb:hover {
	background-color: #DFE6F2; 
}
@media screen and (max-width: 1024px) {
	section.store_location {
		margin-bottom: 56px;
	}
	section.store_location h2.title_h2{
		padding: 0 16px;
		font-size: 24px;
	}
	section.store_location .container {
		max-width: 100%;
	}
	section.store_location .map_section {
		flex-direction: column;
	}
	section.store_location .map_section {
		max-height: calc(96vh - var(--header-height));
	}
	section.store_location .map_section .shop_container {
		height: calc(39vh - (var(--header-height) / 2));
	}
	section.store_location .map_section #map {
		height: calc(57vh - (var(--header-height) / 2));
		position: relative;
	}

	/*
	section.store_location .map_section #map > ymaps > ymaps [class*="ground-pane"]:before{
		content: 'Для перемещения используйте два пальца';
		display: flex;
		align-items: center;
		justify-content: center;
		color: red;
		transition: .1s all linear;
		width: 390px;
		height: 415px;
		position: absolute;
		top: 0;
		left: 0;
		opacity: .1;
		background: #000;
		z-index: 99999;
		}
		*/
		section.store_location .custom-zoom {
			position: relative;
			z-index: 2;
		}
	}
	@media screen and (min-width: 1024px) {
		section.store_location .map_section .shop_container_parent {
			display: flex;
			min-width: 34%;
			flex: 1;
			/* Добавил */
			background: #FAFBFF;
			padding-top: 10px;
		}
		section.store_location .map_section .shop_container  {flex: 1;}
		section.store_location .map_section  #map {flex: 2;}
	}

	section.store_location .map_section .shop_container #shop_list {
		height: 100%;
	}
	section.store_location .map_section .shop_container #shop_list .shop {
		padding: 10px;
		margin-bottom: 20px;
		border-radius: 20px;
		overflow: hidden;
		transition: var(--transition-custom);
	}
	section.store_location .map_section .shop_container #shop_list .shop {
		background: #FAFBFF;
		transition: var(--transition-custom);
	}
	section.store_location .map_section .shop_container #shop_list .shop:hover {
		background: #ffffff52;
	}
	section.store_location .map_section .shop_container #shop_list .shop:hover, #shop_list .shop.active {
		cursor: pointer;
		box-shadow: 3px 5px 19px 0px #E1E6F066, 7px 7px 2px 0px #E1E6F01A;
	}
	section.store_location .map_section .shop_container #shop_list .shop:last-child {
		margin-bottom: 0px;
	}
	section.store_location .map_section .shop_container #shop_list .shop .title {
		color: var(--primary-green);
		font-size: 16px;
		font-weight: 700;
		line-height: 19px;
		margin-bottom: 20px;
	}
	section.store_location .map_section .shop_container #shop_list .shop *:not(.title), .ballon_spro_inner .item {
		display: flex;
		margin-bottom: 5px;
	}
	section.store_location .map_section .shop_container #shop_list .shop *:not(.title) > *, .ballon_spro_inner .item > * {
		width: 50%;
	}
	section.store_location .map_section .shop_container #shop_list .shop *:not(.title) > .name , .ballon_spro_inner .item .name {
		color: var(--dark-blue);
		font-size: 14px;
		font-weight: 700;
		line-height: 17px;
	}
	section.store_location .map_section .shop_container #shop_list .shop *:not(.title) > .value, .ballon_spro_inner .item .value{
		color: var(--dark-blue);
		font-size: 14px;
		font-weight: 400;
		line-height: 17px;
	}
	@media screen and (max-width: 1024px) {
		section.store_location .map_section .shop_container_parent {
			display: flex;
			padding-left: 10px;
			padding-right: 10px;
			padding-top: 14px;
			padding-bottom: 10px;
			background: #FAFBFF;
		}
		section.store_location .map_section .shop_container #shop_list .shop {
			margin-bottom: 1vh;
		}
		section.store_location .map_section .shop_container #shop_list .shop *:not(.title), .ballon_spro_inner .item {
			margin-bottom: 5px
		}
		section.store_location .map_section .shop_container #shop_list .shop * {
			font-size: 19px!important;
			line-height: 28.5px;
		}
		section.store_location .map_section .shop_container #shop_list .shop:last-child {
			padding-bottom: 0;
		}
		section.store_location .map_section .shop_container #shop_list .shop *:not(.title) > .name {
			width: 32%;
		}
		section.store_location .map_section .shop_container #shop_list .shop *:not(.title) > .value {
			width: 68%;
		}
	}
	@media screen and (max-width: 676px) {
		section.store_location .map_section .shop_container #shop_list .shop * {
			font-size: 16px!important;
		}
	}
	@media screen and (min-width: 1025px) { 

	}
	.map_section .map * {
		touch-action: auto
	}
/*
	section.store_location .map_section .shop_container #shop_list .shop:first-child {
		margin-top: 10px;
		}
		*/
		/* Иконкаи зума */
		section.store_location .custom-zoom .custom-zoom-in,
		section.store_location .custom-zoom .custom-zoom-out
		{
			cursor: pointer;
			width: 50px;
			height: 55px;
			background: var(--primary-green);
			color: var(--white);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 32px;
		}
		section.store_location .custom-zoom .custom-zoom-in {
			border-radius: 30px 30px 0px 0px;
		}
		section.store_location .custom-zoom .custom-zoom-out {
			border-radius: 0px 0px 30px 30px;
		}
		section.store_location .custom_hint {
			width: 200px;
			padding: 15px 24px;
			-webkit-backdrop-filter: blur(5px);
			backdrop-filter: blur(5px);
			background-color: var(--white80);
			border-radius: 27px;
			z-index: 2;
			position: relative;
			color: var(--dark-blue);
			font-size: 14px;
			font-weight: 700;
			line-height: 17px;
		}
		section.store_location .ballon_spro {
			z-index: 1;
			position: relative;
			display: inline-flex;
			align-items: center;
			vertical-align: middle;
			flex-direction: column;
			align-items: center;
			justify-content: stretch; 
			width: 360px;
			transform: translateY(-142%);
		}
		@media(max-width: 768px) {
			section.store_location .ballon_spro .ballon_spro_inner {
				transform: scale(.9);
				padding: 8px 17px;
			}
			section.store_location .ballon_spro_inner .item {
				margin-bottom: 3px;
			}
		}
		section.store_location .ballon_spro:after {
			content: '';
			height: 18px;
			width: 18px;
			position: absolute;
			-webkit-backdrop-filter: blur(5px);
			backdrop-filter: blur(5px);
			background-color: var(--white80);
			z-index: -1;
			bottom: -5px;
			transform: rotate(45deg);
		}
		section.store_location .ballon_spro .ballon_spro_inner {
			padding: 15px 24px;
			-webkit-backdrop-filter: blur(5px);
			backdrop-filter: blur(5px);
			background-color: var(--white80);
			border-radius: 27px;
			z-index: 2;
			position: relative;
		}
		@media (max-width: 1024px) {
			section.store_location .ballon_spro .ballon_spro_inner {
				padding: 10px 20px;
			}
		}
		input.ymaps-2-1-79-searchbox-input__input {	min-height: auto; }
		#map [class*="copyrights"] {
			display: none;
		}
		#map [class*="places-pane"] [class*="placemark-overlay"] [class*="image-with-content"]{
			transition: transform .2s linear, top 0s;
		}
		#map [class*="places-pane"] [class*="placemark-overlay"].active {
			z-index: 9999!important;
		}
		#map [class*="places-pane"] [class*="placemark-overlay"].active [class*="image-with-content"]{
			transform: scale(1.2) translateY(-2%);	
		}
		section.store_location .ballon_spro {
			opacity: 0;
			transition: transform .6s linear, opacity .6s linear, top 0s;
			transform: scale(0) translateY(-142%);	
		}
		section.store_location .ballon_spro.active {

			opacity: 1;
			transform: scale(1) translateY(-142%) translateX(-1.3%);	
		}
		@media (max-width: 990px){
			section.store_location .ballon_spro.active {
				transform: scale(1) translateY(-152%) translateX(-1.4%);
			}
			#map [class*="places-pane"] [class*="placemark-overlay"].active [class*="image-with-content"]{
				transform: scale(1.2) translateY(-5%);	
			}
		}

		/* Слайдер категорий */
		section.product_category {
			background: var(--grey);
			padding-top: 80px;
			padding-bottom: 80px;
			margin-bottom: 100px;
		}
		section.product_category .text_block {
			font-size: 19px;
			font-weight: 400;
			line-height: 29px;
			margin-top: 50px;
			margin-bottom: 30px;
			color: var(--dark-blue);
		}
		section.product_category .text_block p:not(:last-child) {
			margin-bottom: 10px;
		}
		section.product_category .swiper-wrapper {
			padding: 20px 0;
		}
		section.product_category .swiper-slide {
			transition: var(--transition-custom);
		}
		@media (min-width: 1025px) {
			section.product_category .swiper-slide:hover {
				transform: scale(1.015);
				box-shadow: 3px 5px 19px 0px #E1E6F0, 7px 7px 2px 0px #E1E6F01A;
			}
		}
		section.product_category .swiper-slide .icon_cat {
			position: absolute;
	/*
	top: 6px;
	right:6px;*/
	top: 8px;
	right: 6px;
	transition: var(--transition-custom);
}

@media only screen and (device-aspect-ratio: 375/667) {
	section.product_category .swiper-slide .icon_cat {
		top: 21px;
		right: 0px;
	}
}
@media only screen and (device-aspect-ratio: 393/852) {
	section.product_category .swiper-slide .icon_cat {
		top: 14px;
		right: 0px;
	}
}
@media only screen and (device-aspect-ratio: 390/884) {
	section.product_category .swiper-slide .icon_cat {
		top: 16px;
		right: 0px;
	}
}
@media only screen and (device-aspect-ratio: 360/740) {
	section.product_category .swiper-slide .icon_cat {
		top: 24px;
		right: -3px;
	}
}
@media only screen and (device-aspect-ratio: 360/825) {
	section.product_category .swiper-slide .icon_cat {
		top: 27px;
		right: 0px;
		width: 28%;
	}
}


/*
section.product_category .swiper-slide .bg_slide:after { /* Линейка лево
	content: '';
	position: absolute;
	width: 6.18px;
	background: red;
	top: 32px;
	height: 1px;
	right: 56px;
	z-index: 2;
}
section.product_category .swiper-slide .bg_slide:before { /* Линейка низ
	content: '';
	position: absolute;
	width: 1px;
	background: red;
	top: 58px;
	height: 5.43px;
	right: 31px;
	z-index: 2;
}
*/
@media (min-width: 1025px) {
	section.product_category .swiper-slide:hover .icon_cat{
		box-shadow: 3px 5px 19px 0px #E1E6F0, 7px 7px 2px 0px #E1E6F01A;
	}
}
section.product_category .swiper-slide .bg_slide {
	position: relative;
	max-width: 207.56px;
}
section.product_category .swiper-slide .bg_slide {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 308px;
}

section.product_category .swiper-slide .img_block {
	display: flex;
	width: 100%;
	height: 203px;
	padding-bottom: 5px;
}
section.product_category .swiper-slide .img_block img {
	width: 100%;
	height: auto;
	margin: auto;
}
section.product_category .swiper-slide .block_name {
	height: 45px;
	width: 75%;
	display: flex;
	align-items: flex-end;
	padding: 0 25px;
}

section.product_category .swiper-slide .block_name .name_cat{
	max-height: 45px;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	color: var(--dark-blue);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;

}
section.product_category .swiper-slide .bg_slide .icon_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

@media (min-width: 1025px) {
	section.product_category .swiper-button button {
		cursor: pointer;
		transition: var(--transition-custom);
		border: none;
		overflow: hidden;
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: var(--white);
		border-radius: 100%;
		margin-right: 20px;
		position: absolute;
		top: 50%;
		margin: auto;
		z-index: 2;
		box-shadow: 0px 0px 16px -2px #00000014;
	}
	section.product_category .swiper-button button.swiper-button-disabled{
		opacity: 0;
		transform: scale(0);
	}
	section.product_category .swiper-button button.swiper_button_prev{
		left: 0px;
	}
	section.product_category .swiper-button button.swiper_button_next{
		right: 0;
	}
	section.product_category .swiper-button button svg {
		fill: transparent;
		stroke: var(--dark-blue_2);
		height: 24px;
		width: 24px;
	}
	section.product_category .swiper-button button svg * {
		transition: var(--transition-custom);
	}
	section.product_category .swiper-button button:hover {
		background: var(--grey);
		box-shadow: 0px 0px 16px -2px #00000014;
	}
}
@media (max-width: 1025px) {
	section.product_category {
		padding-top: 56px;
	}
	section.product_category .swiper {
		overflow: unset;
	}
	section.product_category {
		margin-bottom: 56px;
		padding-bottom: 32px;
		overflow: hidden;
	}
	section.product_category .text_block {
		margin-top: 0;
		margin-bottom: 24px;
		font-size: 19px;
		line-height: 28.5px;
	}
	section.product_category .container.container_slider {
		/*max-width: 100%;*/
		max-width: calc(100% - (32px));
		margin: unset;
		padding: 0 16px;
	}
	section.product_category .swiper-button{
		display: none;
	}
}
@media (max-width: 767px) {
	section.product_category .text_block {
		font-size: 16px;
		line-height: 24px;
	}
}


/* Слайдер товаров */
section.top_product {
	overflow: hidden;
}
section.top_product .text_block {
	font-weight: 700;
	font-size: 19px;
	font-weight: 400;
	line-height: 29px;
	margin: 50px 0;
	color: var(--dark-blue);
}
section.top_product .text_block p:not(:last-child) {
	margin-bottom: 10px;
}
section.top_product .swiper {
	/*padding: 0 10px;*/
}
section.top_product .swiper-wrapper {
	padding: 20px 0;
}
section.top_product .swiper-slide .bg_slide {
	cursor: pointer;
	padding: 19px;
	border-radius: 20px;
	transition: var(--transition-custom);
	box-shadow: 3px 5px 19px 0px #E1E6F066, 7px 7px 2px 0px #E1E6F01A;
}
section.top_product .swiper-slide .img_block {
	height: 165px;
	text-align: center;
	margin-bottom: 12px;
}
section.top_product .swiper-slide .img_block img {
	right: 0;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
}
section.top_product .swiper-slide .price {
	color: var(--dark-blue);
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 11px;
	min-height: 22px;
	display: block;
}
section.top_product .swiper-slide .name {
	color: var(--dark-blue);
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	margin-bottom: 11px;
	height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
section.top_product .swiper-slide .btn-green {
	cursor: pointer;
}
@media (min-width: 1025px) {
	section.top_product {
		padding-bottom: 80px;
	}
	section.top_product .swiper-slide .bg_slide:hover {
		transform: scale(1.015);
		box-shadow: 3px 5px 19px 0px #E1E6F0, 7px 7px 2px 0px #E1E6F01A;
	}
	section.top_product .container.container_slider {
		position: relative;
		max-width: 1220px;
		padding: 0 16px;
	}
	section.top_product .swiper-button button {
		box-shadow: 0px 0px 16px -2px #00000026;
		cursor: pointer;
		transition: var(--transition-custom);
		border: none;
		overflow: hidden;
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: var(--white);
		border-radius: 100%;
		margin-right: 20px;
		position: absolute;
		top: calc(50% - 22px);
		margin: auto;
		z-index: 2;
	}
	section.top_product .swiper-button button.swiper-button-disabled{
		opacity: 0;
		transform: scale(0);
	}
	section.top_product .swiper-button button.swiper_button_prev{
		left: 12px;
	}
	section.top_product .swiper-button button.swiper_button_next{
		right: 12px;
	}
	section.top_product .swiper-button button svg {
		fill: transparent;
		stroke: var(--dark-blue_2);
		height: 24px;
		width: 24px;
	}
	section.top_product .swiper-button button svg * {
		transition: var(--transition-custom);
	}
	section.top_product .swiper-button button:hover {
		background: var(--grey);
		box-shadow: 0px 0px 16px -2px #00000014;
	}
}
@media (max-width: 1025px) {
	section.top_product {
		padding-bottom: 34px;
	}
	section.top_product .swiper {
		overflow: unset;
	}
	section.top_product .text_block {
		margin: 24px 0;
		font-size: 19px;
		line-height: 28.5px;
	}
	section.top_product .container.container_slider {
		/*max-width: 100%;*/
		max-width: calc(100% - (32px));
		padding: 0 16px;
	}
	section.top_product .swiper-button{
		display: none;
	}
}
@media (max-width: 767px) {
	section.top_product .text_block {
		font-size: 16px;
		line-height: 24px;
	}
}

/* Футер */
footer {
	background: var(--primary-green);
	padding: 80px 0;
}
footer .logo {
	width: 170px;
	height: 40px;
	fill: var(--white);
	margin-bottom: 18px;
}
footer a {
	color: var(--white);
	text-decoration: none;
}
footer a:hover {
	color: var(--dark-blue);
}
footer .left {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
footer .left > * {
	align-self: start;
}
footer .left .tel_block {
	display: flex;
	flex-direction: column;
}
@media (min-width: 1025px) {
	footer .row {
		align-items: end;
	}
	footer .left {
		width: 80%;
	}
	footer .right {
		flex: 1;
	}
	footer .soc_btn_link{
		margin-bottom: 40px;
	}
	footer .mob_text {
		display: none;
	}
}
@media (max-width: 1025px) {
	footer .left, footer .right {
		width: 100%;
		flex: 0 0 auto;
	}
	footer .right {
		margin-top: 40px;
	}
	footer .soc_btn_link{
		margin-bottom: 16px;
	}
	footer .left .btn-outline-white {
		margin-bottom: 22px;
	}
	footer .pc_text {
		display: none;
	}

}
.modal_down .container_cookie .text {
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}
footer .right .copywriting,
footer .right .btn-cookie {
	margin-top: 8px;
	background: transparent;
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
}

footer .right .btn-cookie:hover {
	color: var(--dark-blue);
}
footer .soc_btn_link {
	display: flex;
	gap:11px;
}
footer .soc_btn_link svg.icon  {
	width: 32px;
	height: 32px;
	fill:var(--white);
	transition: var(--transition-custom);
}
footer .soc_btn_link a:hover svg.icon {
	fill:var(--dark-blue);
}
footer .soc_btn_link a img {
	width: 32px;
	height: 32px;
	transition: var(--transition-custom);
}
footer .soc_btn_link a:hover img {
	filter: invert(79%) sepia(10%) saturate(2683%) hue-rotate(190deg) brightness(95%) contrast(96%);
}
/* Модалка куки */
.modal_down {
	background: var(--primary-blue);
	color: var(--white);
	position: fixed!important;
	z-index: 99;
	bottom: -24vh;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: var(--transition-custom);
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal_down.fixed {
	opacity: 1;
	bottom: 0px;
}
.modal_down .container_cookie {
	padding: 8px 24px 8px 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:50px;
}
.modal_down .container_cookie .text {
	line-height: 22.4px;
}
.modal_down .container_cookie .btn-outline-white {
	min-width: 157px;
	white-space: nowrap;
}
.modal_down .container_cookie .btn-outline-white:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--primary-blue);
}
.modal_down .container_cookie .close {
	cursor: pointer;
	align-self: flex-start;
}
.modal_down .container_cookie .close svg {
	transition: var(--transition-custom);
	stroke: var(--white);
	width: 32px;
	height: 32px;
}
.modal_down .container_cookie .close:hover svg {
	transform: scale(1.1);
}
@media (max-width: 1025px) {
	.modal_down {
		bottom: -100vh;
		border-top-right-radius: 10px;
		border-top-left-radius: 10px;
	}
	.modal_down .container_cookie {
		flex-wrap: wrap;
		padding: 16px;
		gap: 16px;
	}
	.modal_down .container_cookie .text {
		order: 1;
		width: calc(100% - (32px + 16px));
	}
	.modal_down .container_cookie .close {
		order: 2;
	}
	.modal_down .container_cookie .btn-outline-white {
		width: 100%;
		order: 3;
	}
}
/* Галерея в модальном*/
.gfadein {
	animation: fadein .4s ease;
}
@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0%);
	}
}
.gfadeout {
	animation: fadeout .4s ease;
}
@keyframes fadeout {
	0% {
		opacity: 1;
		transform: translateY(0%);
	}
	to {
		opacity: 0;
		transform: translateY(100%);
	}
}
.glightbox-container {
	height: 100vh;
}
.glightbox-container .gslider {
	height: 100vh;
}
.glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
	overflow: unset;
}
.glightbox-container .gbtn {
	display: none;
}
@media (max-width: 1024px) {
	.glightbox-container .gcontainer {
		height: 100vh;
	}
	.glightbox-container .gbtn.close_store {
		display: flex!important;
		background: transparent;
		align-items: start;
		justify-content: flex-end;
		opacity: 1;
		top: 16px;
		right: 16px;
	}
	.glightbox-container .gbtn.close_store svg {
		width: 32px;
		height: 32px;
		stroke: white;
	}
	.close_store_custom {
		display: none;
	}
}
@media (max-width: 1024px) {
	.glightbox-container .gbtn.close_form {
		display: flex!important;
		background: transparent;
		align-items: start;
		justify-content: flex-end;
		opacity: 1;
		top: 16px;
		right: 16px;
	}
	.glightbox-container .gbtn.close_form svg {
		width: 32px;
		height: 32px;
		stroke: var(--dark-blue_2);
	}
	.close_form_custom {
		display: none;
	}
}
.goverlay {
	background: #282F46CC;
}
.glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
	box-shadow: none;
}

.glightbox-container .ginner-container {
	max-width: 1200px;
}
@media (min-width: 1025px) {
	.glightbox-container .ginner-container {
		max-height: 90vh;
	}
	.gslide-image img {
		/*
		max-height: 85vh;
		max-width: 90vW;*/
	}
}
.gclose_custom {
	position: absolute;
	cursor: pointer;
	background: none;
	border: none;
	width: 32px;
	height: 32px;
	top: -32px;
	right: -32px;
}
.gclose_custom svg {
	transition: var(--transition-custom);
	stroke: var(--white);
	width: 32px;
	height: 32px;
}
.gclose_custom:hover svg {
	transform: scale(1.1);
}
@media (max-width: 1025px) {
	.gclose_custom {
		top: 16px;
		right: 16px;
	}
	.gclose_custom:before {
		content: '';
		width: 100%;
		height: 100%;
		z-index: 999;
		display: block;
		position: absolute;
	}
	.gclose_custom svg {
		stroke: var(--dark-blue_2);
	}
	.gslide-image .gclose_custom svg {
		stroke: var(--white);
	}
}
.gslide-media {
	position: relative;
}
.gslide-media img {
	border-radius: 30px;
	overflow: hidden;
}
@media (max-width: 1025px) {
	.glightbox-mobile .goverlay {
		background: transparent;
	}
	.gslide-image img {
		border-radius: 0;
		max-width: unset;
		height: 100vh;
		/* Добавил */
		height: 100vh;
		width: 100vw;
		object-fit: cover;
	}
}
/* Модальные окна */
.gslide-inline {
	border-radius: 30px;
	padding: 40px;
	height: unset!important;
}
@media (min-width: 1025px) and (max-width: 1400px) {
	.gslide-inline {
		padding: 30px;
	}
	.gclose_custom {
		top: -22px;
	}
}
.gslide-inline .product_modal {

}
.gslide-inline .product_modal .swiper-button button {
	box-shadow: 0px 0px 16px -2px #00000026;
	cursor: pointer;
	transition: var(--transition-custom);
	border: none;
	overflow: hidden;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	border-radius: 100%;
	margin-right: 20px;
	position: absolute;
	top: calc(50% - 22px);
	margin: auto;
	z-index: 2;
}
.gslide-inline .product_modal .swiper-button button.swiper-button-disabled{
	opacity: 0;
	transform: scale(0);
}
.gslide-inline .product_modal .swiper-button button.swiper_button_prev{
	/*left: 0px;*/
	left: 9.5px;
}
.gslide-inline .product_modal .swiper-button button.swiper_button_next{
	/*right: 0px;*/
	right: 9.5px;
}
.gslide-inline .product_modal .swiper-button button svg {
	fill: transparent;
	stroke: var(--dark-blue_2);
	height: 24px;
	width: 24px;
}
.gslide-inline .product_modal .swiper-button button svg * {
	transition: var(--transition-custom);
}
.gslide-inline .product_modal .swiper-button button:hover {
	background: var(--grey);
	box-shadow: 0px 0px 16px -2px #00000014;
}
@media (min-width: 1026px) {
	.gslide-inline .product_modal .swiper.swiper_main {
		height: 328px;
	}
}
@media (min-width: 769px) and (max-width: 1025px) {
	.gslide-inline .product_modal .swiper.swiper_main {
		height: 60vh;
	}
}
@media (max-width: 768px) {
	.gslide-inline .product_modal .swiper.swiper_main {

	}
}
.gslide-inline .product_modal .swiper_thumbnail {
	margin-top: 10px;
}
.gslide-inline .product_modal .swiper.swiper_main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;

}
.gslide-inline .product_modal .swiper img{
	width: auto;
	height: auto;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	border-radius: unset;
}
.gslide-inline .product_modal .swiper_thumbnail {
	display: flex;
}
.gslide-inline .product_modal .swiper_thumbnail .swiper-wrapper {
	width: auto;
	margin: auto;
}
.gslide-inline .product_modal .swiper_thumbnail .swiper-slide{
	cursor: pointer;
	overflow: hidden;
	border-radius: 4px;
	border: 2px solid #EDEDED;
	width: 72px!important;
	height: 72px!important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gslide-inline .product_modal .swiper_thumbnail .swiper-slide-thumb-active{
	border: 2px solid #3C7BE0;
}
.gslide-inline .product_modal .swiper_thumbnail img {
	width: auto;
	height: auto;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
}
.gslide-inline .product_modal .name {
	color: var(--dark-blue);
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	margin-top: 40px;
	margin-bottom: 20px;
}
.gslide-inline .product_modal .description {
	color: var(--dark-blue);
	font-size: 12px;
	font-weight: 400;
	line-height: 16.8px;
}
.gslide-inline .product_modal .price {
	color: var(--dark-blue);
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
	margin-bottom: 20px;
}
.gslide-inline .product_modal .btn-green {
	padding: 16px 24px;
}

@media (max-width: 1025px) {
	.gslide-inline {
		height: 100vh!important;
		border-radius: 0;
		width: unset!important;
		display: flex;
	}
	.gslide.product .gslide-inline {
		align-items: center;
	}
}
@media (max-width: 767px) {
	.gslide-inline {
		align-items: center;
	}
}
.gslide.product .ginlined-content{
	width: 100%;
}

@media (max-width: 1025px) {
	.gclose {
		opacity: 0!important;
		transition: opacity 0s;
	}
	.glightbox-open .gclose{
		opacity: 1!important;
		transition: .45s opacity linear;

	}
	.glightbox-closing .gclose {
		opacity: 0!important;
		transition: opacity 0s!important;
	}
	.glightbox-container-product .gslide.product {
		background: #fff;
	}
	/* .ya-browser .glightbox-container-product .gclose_custom*/
	.glightbox-container-product .gclose_custom {
		display: none;
	}
	.glightbox-container-product .close_product {
		display: flex!important;
		background: transparent;
		align-items: start;
		justify-content: flex-end;
		opacity: 1;
		top: 16px;
		right: 16px;
	}
	.glightbox-container-product .close_product svg {
		width: 32px;
		height: 32px;
		stroke: var(--dark-blue_2);
	}
}

/* Форма в модальном */

.all_form  input,.all_form  textarea {
	outline:none;
}
.all_form input:-webkit-autofill {
	background-color: transparent;
	color: #1B1B1D;
	border: 1px solid var(--grey);
	-webkit-box-shadow: transparent; 
	-webkit-text-fill-color: #1B1B1D;
}
.all_form input:-webkit-autofill,
.all_form input:-webkit-autofill:hover, 
.all_form input:-webkit-autofill:focus, 
.all_form input:-webkit-autofill:active{
	-webkit-background-clip: text;
	-webkit-text-fill-color: #1B1B1D;
	box-shadow: inset 0 0 20px 20px #ffffff;
}
.all_form * {
	transition: all 150ms ease-in-out;
}
.all_form .name_form {
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
	color: var(--dark-blue);
	margin-bottom: 24px;
}
@media (min-width: 1025px) {
	.all_form .input_50 {
		display: flex;
		gap: 16px;
	}
	.all_form .input_50 .form_input_block {
		flex: 1;
	}
}
.all_form .form_input_block {
	position: relative;
	margin-bottom: 16px;
}
.all_form .form_input_block.error {
	margin-bottom: 36px;
}
.all_form .form_input_block input, .all_form .form_input_block textarea {
	border: 1px solid var(--grey);
	color: #1B1B1D;
	padding-left: 13px;
	padding-top: 16px;
	padding-bottom: 8px;
	line-height: 25px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	width: calc(100% - 13px);
	transition: all 0.5s;
	z-index: 1;
	position: relative;
	background: transparent;
	border-radius: 10px;
}
.all_form .form_input_block textarea {
	height: 88px;
	/* добавил */
	/*resize: vertical;*/
	resize: none;
}
.all_form .form_input_block.error input, .all_form .form_input_block.error textarea {
	border: 1px solid var(--red-error);
}
.all_form .form_input_block label {
	width: 100%;
}
.all_form .form_input_block label > span {
	position: absolute;
	left: 2px;
	color: var(--gray_2);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	display: flex;
	top: 18px;
	align-items: center;
	padding-left: 12px;
	cursor: text;
}

.all_form .form_input_block.error label > span {
	color: var(--red-error)!important;
}
.all_form .form_input_block label > span .red {
	color: var(--red-error);
	margin-left: 4px;
}
.all_form .form_input_block.form_tel_input_block label > span {
	z-index: 2;
}
.all_form .form_input_block input:focus+label > span,
.all_form .form_input_block textarea:focus+label > span,
.all_form .form_input_block label.stay > span {
	top: 5px;
	color: var(--primary-green-form);
	font-size: 12px;
	font-weight: 400;
	background: transparent;
	cursor: default;
	z-index: 2;
}
.all_form .form_input_block label.stay.success > span {
	color: var(--gray_2);
}
.all_form .form_input_block input:hover,.all_form .form_input_block textarea:hover, {
	-webkit-box-shadow: 0px 0px 0px 1px var(--grey);
	-moz-box-shadow: 0px 0px 0px 1px var(--grey);
	box-shadow: 0px 0px 0px 1px var(--grey);
}
.all_form .form_input_block input:focus, .all_form .form_input_block textarea:focus {
	border: 1px solid var(--primary-green-form);
	-webkit-box-shadow: 0px 0px 0px 0px var(--grey);
	-moz-box-shadow: 0px 0px 0px 0px var(--grey);
	box-shadow: 0px 0px 0px 0px var(--grey);
}
.all_form .form_input_block .input__error {
	cursor: default;
	position: absolute;
	top: 100%;
	left: 0;
	line-height: 16.94px;
	margin-top: 6px;
	font-size: 16px;
	color: var(--red-error);
	opacity: 0;
}
.all_form .form_input_block.error input:hover, .all_form .form_input_block.error textarea:hover {
	-webkit-box-shadow: 0px 0px 0px 1px var(--red-error);
	-moz-box-shadow: 0px 0px 0px 1px var(--red-error);
	box-shadow: 0px 0px 0px 1px var(--red-error);
}
.all_form .form_input_block.error .input__error {
	opacity: 1;
}
.contact_us_form .ginlined-content {
	overflow: unset;
	width: 100%;
}
.contact_us_form .all_form .btn{
	transition: var(--transition-custom);
	background: var(--gray_2);
	padding: 16px 32px 16px 32px;
	border-radius: 25px;
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}
.contact_us_form .all_form .btn.success {
	background: var(--primary-green-form);
	color: var(---dark-blue_2);
}
.contact_us_form .all_form .btn.success:hover {
	background: var(--primary-green-hov);
}

@media (min-width: 1025px) {
	.contact_us_form .all_form .btn {
		margin-top: 24px
	}
}
@media (max-width: 1025px) {
	.contact_us_form .all_form .btn {
		margin-top: 8px;
		width: 100%;
	}
}

.contact_us_form .privacy_policy {
	margin-top: 12px;
	display: block;
	color: var(--gray_2);
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
}
.contact_us_form .privacy_policy .btn-cookie {
	color: #0953CC;
	text-decoration: underline;
	background: transparent;
}


.all_form .form_input_block.dropdown.active input{
	border: 1px solid var(--primary-green-form);
}
.all_form .form_input_block.error.dropdown.active label > span{
	color: var(--gray_2)!important;
}
.dropdown::before {
	content: "";
	position: absolute;
	top: 16px;
	right: 12px;
	z-index: 1000;
	width: 8px;
	height: 8px;
	border: 2px solid var(--gray_2);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	transition: 0.5s;
	pointer-events: none;
	border-radius: 3px;
}

.dropdown.active::before {
	top: 22px;
	transform: rotate(-225deg);
	border: 2px solid var(--primary-green-form);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.dropdown::after {
	content: '';
	z-index: 3;
	cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
}

.dropdown .options {
	z-index: 9999;
	position: absolute;
	top: 51px;
	width: 100%;
	background: #fff;
	box-shadow: 3px 5px 19px 0px #E1E6F066, 7px 7px 2px 0px #E1E6F01A;
	padding: 7px;
	border-radius: 10px;
	overflow: hidden;
	display: none;
}

.dropdown.active .options {
	display: block;
}

.dropdown .options span {
	color: var(--gray_2);
	display: block;
	padding: 12px 20px;
	cursor: pointer;
	box-shadow: 0px -0.5px 0px 0px #00000026 inset;
}
.dropdown .options span:last-child {
	box-shadow:none;
}
.dropdown .options span:hover {
	color:var(--primary-blue);
}


#contact-us-form-success {
	text-align: center;
}
#contact-us-form-success .name {
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
	color: var(--dark-blue);
	margin-bottom: 24px;
}
#contact-us-form-success .text {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 24px;
	color: var(--dark-blue);
}
#contact-us-form-success .btn {
	transition: var(--transition-custom);
	background: var(--primary-green-form);
	color: var(---dark-blue_2);
	padding: 16px 32px 16px 32px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
}
#contact-us-form-success .btn:hover {
	background: var(--primary-green-hov);
}