: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;
}
chrome_annotation {
	display: contents!important;
}
@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);
}
.underline {
	text-decoration: underline;
}
.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: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1025px) {
	section h2.title_h2 {
		font-size: 24px;
		margin-bottom: 24px;
	}
}
* {
	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;
	margin-left: auto;
}
header .logo {
	width: 252px;
	height: 60px;
}
header .logo  {
	fill: var(--white);
}
header .lang_block a {
	display: inline-flex;
	gap: 4px;
	color: var(--dark-blue_2);
	text-decoration: none;
	align-items: center;
}
header .lang_block a .icon.stroke {
	transition: var(--transition-custom);
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--dark-blue_2);
}
@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 {
		margin-right: 30px;
	}
	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:not([class*="btn"]):last-child {
		margin-right: 0;
		margin-left: 30px;
	}
	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);
	}
	header .lang_block a:hover {
		color: var(--white);
	}
	header .lang_block a:hover .icon.stroke {
		stroke: var(--white);
	}
	header.fixed .lang_block a:hover {
		color: var(--primary-blue);
	}
	header.fixed .lang_block a:hover .icon.stroke {
		stroke: var(--primary-blue);
	}
}
@media (max-width: 1025px) {
	header {
		background: var(--white80);
		position: fixed;
		z-index: 2;
		transition: .4s all linear, .15s 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 {
		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;
	}
	header .mobile_burger {
		order: 1;
	}
	header .logo_block {
		order: 2;
		height: 44.14px;
	}
	header .lang_block {
		order: 3;
	}
	header .top_menu {
		order: 4;
	}
	header .lang_block a {
		color: var(--primary-blue);
	}
	header .lang_block a .icon.stroke {
		stroke: var(--primary-blue);
	}

}
/* Слайдер */
section.first_block {
	background: var(--primary-green);
}
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);
}
section.first_block .main_slider .left-content .info-slide {
	color: var(--white);
}
@media (min-width: 1025px) {
	section.first_block {
		padding-top: 24px;
		padding-bottom: 85px;
	}
	section.first_block .main_slider .left-content {
		display: flex;
		flex-direction: column;
		max-width: calc(457px + ((var(--bs-gutter-x) * 0.5) * 2));
	}
	section.first_block .main_slider .left-content .info-slide {
		height: 100%;
		display: inline-flex;
		flex-direction: column;
		align-items: baseline;
	}
	section.first_block .main_slider .left-content .title {
		font-size: 55px;
		font-weight: 700;
		line-height: 110%;
		margin-top: auto;
	}
	section.first_block .main_slider .left-content .sub-title {
		margin-top: 20px;
		font-weight: 700;
		font-size: 32px;
		line-height: 100%;
	}
	section.first_block .main_slider .left-content .text{
		margin-top: 30px;
		font-weight: 500;
		font-size: 22px;
		line-height: 100%;
	}
	section.first_block .main_slider .left-content .info-slide *:last-child:not(.btn-white) {
		margin-bottom: auto;
	}
	section.first_block .main_slider .left-content .btn-white {
		margin-top: auto;
		margin-bottom: 29.5px;
		font-size: 18px;
		font-weight: 600;
		line-height: 22px;
	}
	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;
	}
	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%);
	}
	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;
	}
	section.first_block .main_slider .left-content .info-slide br {
		display: none;
	}
	section.first_block .main_slider .left-content .title {
		font-size: 24px;
		font-weight: 700;
		line-height: 110.00000000000001%
	}
	section.first_block .main_slider .left-content .sub-title {
		margin-top: 16px;
		font-size: 16px;
		font-weight: 700;
		line-height: 110.00000000000001%
	}
	section.first_block .main_slider .left-content .text{
		margin-top: 16px;
		font-size: 16px;
		font-weight: 500;
		line-height: 150%;
	}
	section.first_block .main_slider .left-content .btn-white {
		text-align: center;
		font-size: 16px;
		font-weight: 600;
		line-height: 100%;
	}
	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.promo_block {
	padding-top: 100px;
	padding-bottom: 60px;
}

section.promo_block .container {
	overflow: hidden;
	padding: 0 7px;
	padding-bottom: 40px;
}
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%;
		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);
	color: var(--white);
	align-items: center;
}
section.about .green_bg .col.left .title{
	font-size: 39px;
	font-weight: 900;
	line-height: 47px;
	margin-bottom: 3px;
}
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 .green_bg .col.left,
	section.about .green_bg .col.right {
		flex: 100%;
	}
	section.about .green_bg .col.left {
		margin-bottom: 24px;
	}
	section.about .green_bg .col.left .title {
		margin-bottom: 22px;
	}
	section.about .green_bg .col.right p {
		margin-bottom: 22px;
	}
	section.about .green_bg {
		padding: 24px;
		border-radius: 40px;
	}
}

/* Наши магазины  и галерея о нас */
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;
	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;
	}
}
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;
	}
	section.about_us_galery,
	section.store
	{
		margin-bottom: 56px;
	}
}
section.store_location {
	margin-bottom: 100px;
}
section.store_location .map_section {
	display: -webkit-flex;
	display:flex;
	border-radius: 20px;
	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;
	}
	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));*/
		height: calc((157px * 2) + 43px);
	}
	section.store_location .map_section #map {
		/*height: calc(57vh - (var(--header-height) / 2));*/
		height: 505px;
	}
}
@media screen and (min-width: 1024px) {
	section.store_location .map_section .shop_container_parent {
		display: flex;
		min-width: 34%;
		flex: 1;
	}
	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: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 .title:has(chrome_annotation) span {
	display: contents!important;

}
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-right: 14px;
		padding-top: 14px;
		padding-bottom: 10px;
		background: #FAFBFF;
	}
	section.store_location .map_section .shop_container #shop_list .shop {
		/*margin-bottom: 1vh;*/
		margin-bottom: 43px;
	}
	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: 16px!important;
	}
	section.store_location .map_section .shop_container #shop_list .shop:last-child {
		padding-bottom: 0;
	}
}

.map_section .map * {
	touch-action: auto
}

/* Иконкаи зума */
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(-130%);
	transition: opacity 0.4s linear;
	opacity: 0;
	transition-delay: .2s;
}
section.store_location .ballon_spro .leaflet-popup-content-wrapper {

}
.ballon_spro_inner .item {
	margin-bottom: 12px;
}
.ballon_spro_inner .item:last-child {
	margin-bottom: 0;
}
@media(max-width: 768px) {
	section.store_location .ballon_spro {
		top: -165px;
	}
	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; }

/* Новые карты */
.leaflet-container {
	font-family: inherit;
}
.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
	border: none;
}

.leaflet-popup {
	margin-bottom: 0;
}

.leaflet-popup-content-wrapper {
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}

.leaflet-popup-content {
	margin: 0;
	line-height: inherit;
	width: 100%!important;
}

.leaflet-popup-tip-container {
	display: none;
}

.leaflet-control-zoom {
	border: none;
	background: transparent;
}

.leaflet-control-zoom a {
	border: none;
	border-radius: 0;
	background: var(--primary-green);
	color: var(--white);
	width: 50px;
	height: 55px;
	line-height: 55px;
	font-size: 32px;
}

.leaflet-control-zoom a:first-child {
	border-radius: 30px 30px 0 0;
}

.leaflet-control-zoom a:last-child {
	border-radius: 0 0 30px 30px;
	border-top: 1px solid rgba(255,255,255,0.3);
}

.leaflet-control-zoom a:hover {
	background-color: var(--primary-green);
	opacity: 0.9;
}

/*
.custom-marker {
	
	transition:
	width 1s,
	height 1s;
}
.custom-marker.active {
	
	width: 85px!important;
	height: 91px!important;
}
*/

/* Ensure map container has proper height */
#map {
	height: 500px;
}

@media screen and (max-width: 1024px) {
	#map {
		height: calc(57vh - (var(--header-height) / 2));
	}
	.leaflet-control-zoom {
		display: none; /* Hide zoom controls on mobile if needed */
	}
}



/* Слайдер категорий */
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;
	transition: var(--transition-custom);
}
@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 .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;
	}
	section.product_category .container.container_slider {
		max-width: 100%;
		padding: 0 16px;
	}
	section.product_category .swiper-button{
		display: none;
	}
}


/* Слайдер товаров */
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: 100%;
	margin-bottom: 11px;
	min-height: 22px;
	display: block;
}
section.top_product .swiper-slide .name {
	color: var(--dark-blue);
	font-size: 12.81px;
	font-weight: 400;
	line-height: 100%;
	margin-bottom: 11.83px;
	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;
	font-size: 12.81px;
	line-height: 100%;
	padding: 7.77px 12.81px;
}
@media (min-width: 1025px) {
	section.top_product {
		padding-bottom: 100px;
	}
	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;
	}
	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: 16px;
		line-height: 150%;
	}
	section.top_product .container.container_slider {
		max-width: 100%;
		padding: 0 16px;
	}
	section.top_product .swiper-button{
		display: none;
	}
}

/* Футер */
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;
	align-items: baseline;
}
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 {
		padding: 56px 0;
	}
	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;
	}
	footer .right .btn-cookie {
		display: block;
	}

}
.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 .text a {
	color: var(--white);
}
.modal_down .container_cookie .btn-outline-white {
	padding: 8px 18px;
}
.modal_down .container_cookie .btn-outline-white {
	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 .gslider {
	max-height: 100vh;
}
.glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
	overflow: unset;
}
.glightbox-container .gbtn {
	display: none;
}
@media (max-width: 1024px) {
	.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) {
	.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;
	}
}
/* Модальные окна */
.gslide-inline {
	border-radius: 30px;
	padding: 40px 20px;
	height: unset!important;
}
@media (min-width: 1025px) and (max-width: 1400px) {
	.gslide-inline {
		padding: 30px;
	}
	.gclose_custom {
		top: -22px;
	}
}
.gslide-inline .product_modal {
	color: var(--dark-blue);
}
.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: 20px;
}
.gslide-inline .product_modal .swiper-button button.swiper_button_next{
	right: 20px;
}
.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;
}
.gslide-inline .product_modal .swiper.swiper_main, .gslide-inline .product_modal .text_block {
	padding: 0 20px;
}
@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;
	aspect-ratio: 310 / 380;
}
.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: 68px!important;
	height: 68px!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 {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	margin-top: 40px;
	margin-bottom: 20px;
}
.gslide-inline .product_modal .description {
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	margin-bottom: 20px;
}
.gslide-inline .product_modal .price {
	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) {
	.glightbox-container .ginner-container {
		height: 100dvh;
	}
	.contact_us_form .gslide-media {
		overflow-x: hidden !important;
		overflow-y: auto !important;
	}
	.gslide-inline {
		height: 100dvh!important;
		border-radius: 0;
		width: unset!important;
		display: flex;
	}
	.gslider:has(.gslide.product) {
		max-height: 100dvh; 
	}
	.glightbox-container .product .ginner-container {
		height: 100dvh;
	}
	.gslide.product .gslide-inline {
		/*align-items: center;*/
		padding-top: 0;
        padding-bottom: 0;
        max-height: unset;
	}
	.gslide-inline .product_modal .swiper.swiper_main .swiper-slide {
		aspect-ratio: 310 / 381;
	}
	.gslide.product .gclose_custom {
		z-index: 2;
	}
	.gslide.product .product_modal {
		padding: 40px 0;
	}
}
.gslide.product .ginlined-content{
	width: 100%;
}

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

.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: 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;
	/*overflow: auto;*/
	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);
}
/*
@media (max-width: 768px) {
	body.glightbox-open > header,
	body.glightbox-open > section,
	body.glightbox-open > footer {
		opacity: 0;
	}
}
*/

.glightbox-container:has(.focus){
	overflow: auto!important;
}
.glightbox-container:has(.focus) .gcontainer {
	position: fixed;
}