:root{
	--base:#000000;
	--default:#000000;
	--primary:#ff8000;
	--secondary:#ff8000;
	--additional:#FEFEFE;

	--black:#000;
	--white:#FEFEFE;
	--color:#6D8B63;
	--dark:#ff8000;
	--light:#C9C9C9;
	--darklight:#757575;

	--c-error:#B10C0C;
	--c-hover:#6D8B63;
	--c-border:#C9C9C9;
	--c-element:#757575;

	--bg-base:#000;
	--bg-default: #757575;
	--bg-primary:#CB0133;
	--bg-secondary:#C9C9C9;

	--bg-input:#FEFEFE;
	--bg-input-modal:#EEEEEE;
	--bg-error:#efd7d7;
}

html ::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
html ::-webkit-scrollbar-track {
	background: var(--additional);
	box-shadow: 0 0 2px rgba(0, 0, 0, .2) inset;
}
html ::-webkit-scrollbar-thumb {
	background: var(--color);
	border-radius: 5px;
	border: 1px solid var(--color);
}
html ::-webkit-scrollbar-thumb:hover {
	background: var(--darklight);
}
html ::-webkit-scrollbar-button {
	background: var(--color);
}

html {
    scroll-behavior: smooth;
}
a{text-decoration: none;color:var(--base);}
a:hover{color:var(--c-hover);}
body{
	line-height: 1.5;
	font-family: 'Inter', 'Involve', sans-serif;
	color: var(--base);
	font-size: 16px;
	font-weight: 400;
	background: #F4F1EB;
}
header{
    position: relative;
}
ul,ol{
	list-style: none;
	margin:0;
}
input[name="surname"] {
	display: block !important;
	width: 2px !important;
	height: 3px !important;
	opacity: .01 !important;
	padding:0 !important;
	margin:0 !important;
	border:0 !important;
}

/* COOKIES START */
.cookies-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    justify-content: left;
    padding: 20px;
    pointer-events: none;
}

.cookies {
    border: none;
    border-radius: 6px;
    width: 320px;
    height: 160px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.cookies-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
}

.cookies-link {
    text-decoration: underline;
    text-decoration-color: var(--color);
}
/* COOKIES END */

.ajax_form .error{
	border-color:var(--c-error);
	background: var(--bg-error);
}
/* .content-text a.btn {
    text-decoration: none !important;
}
.content-text a.btn:hover {
    color: white !important;
} */
.btn{
	display: inline-block;
	outline: 0;
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	box-sizing: border-box;
	border:none;
	border-radius: 6px;
	cursor: pointer;
	font-family: 'Involve', sans-serif;
	transition: all 0.5s 0s;
	padding: 20px 20px;
	text-decoration: none;
	text-align: center;
}
.btn:disabled{
    opacity: 0.2;
}
.btn-svg{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-svg svg{
	padding-right: 10px;
	transition: all 0.5s 0s;
}
.btn-default{
	color: var(--white) !important;
	border: 1px solid transparent;
	background: var(--primary);
	position: relative;
	overflow: hidden;
	z-index: 0;
}
/* .btn-default:before{
    content:'';
    position: absolute;
    z-index: -1;
    top:0;
    bottom: 0;
    left:0;
    width:200%;
    transition: all 0.5s 0s;
    background: linear-gradient(98.86deg, var(--color) 0%, var(--dark) 50%, var(--color) 136.53%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
} */
.btn-default:hover, a.btn-default:hover{
	color: var(--primary) !important;
	border: 1px solid var(--primary);
	background: var(--white);
}
/* .btn-default:hover:before, a.btn-default:hover:before{
    -webkit-transform:translateX(0);
    transform:translateX(0);
} */

.btn-primary{
	color: var(--white) !important;
	background: var(--color);
	border: 1px solid var(--white);
	overflow: hidden;
}
.btn-primary:hover, a.btn-primary:hover{
	color: var(--color) !important;
	background-color: var(--white);
	border-color: var(--color);
}
.btn-secondary{
	color:  var(--color) !important;
	background: transparent;
	border: 1px solid var(--color);
}
.btn-secondary:hover, a.btn-secondary:hover{
	color: var(--white);
	background-color: var(--color);
	border-color: var(--color);
}
.bg-secondary:hover, a.btn-secondary:hover{
	color: var(--white) !important;
	background-color: var(--color);
	border-color: var(--color);
}
.btn-light{
	color:var(--white);
	background: transparent;
	border:1px solid var(--white);
}
.btn-light:hover{
	color:var(--white) !important;
	background-color:var(--base);
	border-color:var(--base);
}
.btn-info{
	color:var(--white) !important ;
	background: var(--base);
	border: 1px solid var(--base);
}
.btn-info:hover{
	color:var(--base) !important;
	background: transparent;
}
.btn-link{
	border:none;
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	padding: 0;
	color: var(--darklight);
	display: inline-block;
}
.btn-link:hover{
	color: var(--darklight) !important;
}
.btn-color {
    color: var(--white) !important;
	border: none;
	background: var(--primary);
	position: relative;
	overflow: hidden;
}
.btn-color:hover {
    color: var(--primary) !important;
	border: none;
	background: var(--white);
	position: relative;
	overflow: hidden;
}
.btn-link.btn-arrow{
	padding-right: 70px;
}
.btn-small{
	font-size: 14px;
	padding: 14px 30px;
}
.btn-middle{
	font-size: 15px;
	padding: 16px 18px;
}
.btn-empty{
	padding: 0;
	margin: 0;
	background: none;
	border:none;
}
.link:not(.btn){
	text-decoration: underline;
	color:inherit;
}
.btn-link:hover, .link:hover{
	color:var(--c-hover);
	text-decoration: none;
}
.bottom-btn>.btn{margin-bottom: 12px}
.c-white{color:var(--white) !important;}
.c-white .bg-white {color:var(--base) !important;}
button.c-white:hover, a.c-white:hover{color:var(--c-hover) !important;}
.c-black{color:var(--black) !important;}
.c-additional{color:var(--additional) !important;}
.c-base{color:var(--base)}
.c-default{color:var(--default)}
.c-primary{color:var(--primary)}
.c-secondary{color:var(--secondary)}
.c-light{color:var(--light) !important;}
.c-color{color:var(--color)}
.c-darklight{color:var(--darklight)}
a.c-darklight:hover{color:var(--c-hover) !important;}
.f-default{fill: var(--default);}
.f-primary{fill: var(--primary);}
.f-secondary{fill: var(--secondary);}
.f-darklight{fill: var(--darklight);}

.lh-0{line-height: 0 !important;}
.lh-1{line-height: 1 !important;}
.lh-2{line-height: 1.2 !important;}
.lh-3{line-height: 1.5 !important;}
.lh-4{line-height: 1.8 !important;}

.bg-black{background-color: var(--black);}
.bg-white{background-color: var(--white);}
.bg-default{background-color: var(--bg-default);}
.bg-secondary{background-color: var(--bg-secondary);}
.bg-primary{background-color: var(--bg-primary);}
.bg-color{background-color: var(--color);}
.bg-darklight{background-color: var(--darklight);}
.bg-light{background-color: var(--additional);}

.stroke-color{stroke: var(--color)}
.stroke-light{stroke: var(--light)}
.stroke-darklight{stroke: var(--darklight)}
.stroke-white{stroke: var(--white)}

.fill-color{fill:var(--color)}
.fill-light{fill:var(--light)}
.fill-darklight{fill:var(--darklight)}
.fill-white{fill:var(--white)}

.font-22{font-size: 22px;}
.font-20{font-size: 20px;}
.font-18{font-size: 18px;}
.font-16{font-size: 16px;}
.font-14{font-size: 14px;}
.font-12{font-size: 12px;}

.middle{font-size: 16px;}
.small{font-size: 14px;}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	font-weight: 500;
	line-height: 1.4;
	color: #A67C5A;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	font-family: 'Inter', 'Raleway', sans-serif;
}
.h1,h1{font-size: 36px;}
.h2,h2{font-size: 34px;}
.h3,h3{font-size: 24px;}
.h4,h4{font-size: 20px;}
.h5,h5{font-size: 18px;}
.h6,h6{font-size: 16px;}

.span-color>span{color:var(--color);}

.italic{font-style: italic}
.light{font-weight: 300;}
.normal{font-weight: 400;}
.medium{font-weight: 500;}
.semibold{font-weight: 600;}
.bold{font-weight: bold;}
.extrabold{font-weight: 800;}
.bold-span>span{font-weight: bold;}
.uppercase{text-transform: uppercase;}
.underline{text-decoration: underline;}
.font-family-Involve{
	font-family: 'Involve', sans-serif;
}
.wrapper{
	padding-top: 75px;
	padding-bottom: 75px;
}
.radius{border-radius: 8px;}
.line{
	border-bottom:1px solid var(--primary);
}
.form-group{
	margin-bottom: 15px;
}
.form-group label{
	font-size: 16px;
	display: inline-block;
	padding-bottom: 5px;
}
.form-control{
	color:var(--darklight);
	background: var(--bg-input);
	border: 1px solid var(--c-border);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 15px 20px;
	width: 100%;
	outline: 0;
	font-size: 16px;
	height: auto;
	line-height: 1;
	font-family: 'Involve', sans-serif;
	transition: all .2s ease-in-out;
}

.form-comm {
    min-height: 100px;
}

.download-file{
	color:var(--darklight);
	background: var(--bg-input);
	border: 1px solid var(--c-border);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 20px 15px;
	width: 100%;
	outline: 0;
	font-size: 16px;
	line-height: 1;
	font-family: 'Involve', sans-serif;
	transition: all .2s ease-in-out;
}
.download-file.active{
    border: 1px solid var(--primary);
}
input[type="file"] {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.01;
    cursor: pointer;
}

.modal .form-control{
    background: var(--bg-input-modal);
}
.form-control::-webkit-input-placeholder{
	font-size: 16px;
}
.form-control:-ms-input-placeholder{
	font-size: 16px;
}
.form-control::placeholder{
	font-size: 16px;
}
.form-control:focus{
	border-color: var(--color);
}
.modal .form-control:focus{
    border-color: var(--color);
    background: var(--white);
    outline: none;
}
.form-label {
	display: block;
	position: relative;
	font-size: 16px;
	box-sizing: border-box;
	height: 58px;
	width: 100%;
}
.form-label .form-control {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: transparent;
}
.form-label>span {
	position: absolute;
	color: var(--darklight);
	left: 20px;
	top: 50%;
	font-size: 18px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 0;
	transition: all 0.5s 0s;
}
.form-label .form-control:not(:-ms-input-placeholder)+span {
	font-size: 12px;
	top: 13px;
	left: 10px;
}
.form-label .form-control:focus+span,
.form-label .form-control:not(:placeholder-shown)+span {
	font-size: 12px;
	top: 13px;
	left: 10px;
}
select.form-control{
	-webkit-appearance: none;
	-o-appearance: none;
	appearance: none;
	color:var(--dark);
	padding-right: 40px;
	border-color: var(--bg-input);
	background: no-repeat calc(100% - 15px) center;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.17636 7.66525C6.63191 8.11158 7.37173 8.11158 7.82728 7.66525L13.6583 1.95224C14.1139 1.50591 14.1139 0.781076 13.6583 0.334747C13.2028 -0.111582 12.463 -0.111582 12.0074 0.334747L7 5.24079L1.99258 0.338317C1.53703 -0.108012 0.797215 -0.108012 0.341663 0.338317C-0.113888 0.784646 -0.113888 1.50948 0.341663 1.95581L6.17272 7.66882L6.17636 7.66525Z' fill='%23333333'/%3E%3C/svg%3E");
	background-color: var(--white);
}
select::-ms-expand {
	display: none;
}
textarea.form-control{
	height: 63px;
	resize: none;
	font-size: 15px;
}
.form-control_white{
	background-color: var(--white);
	border-color: var(--white);
}
.form-control_color{
	background-color: var(--white);
	border-color: var(--white);
	color:var(--color);
}
.form-control_light{
    background-color: var(--additional);
	border-color: var(--light);
}
.form-checkbox{
	position: relative;
	padding-left: 30px;
}
.form-checkbox:before{
	content:'';
	position: absolute;
	left:0;
	height: 20px;
	width: 20px;
	border-radius: 3px;
	border: 1px solid var(--darklight);
}
input[type="checkbox"]:not(.checkbox-agree){
	display: none;
}
input[type="checkbox"]:checked+.form-checkbox:before{
	border-color: var(--color);
	background-color: var(--color);
}
input[type="checkbox"]:checked+.form-checkbox:after{
	content:'';
	position: absolute;
	left: 8px;
	top: 4px;
	width:5px;
	height: 8px;
	background: transparent;
	border-radius: 2px;
	border-right:2px solid var(--white);
	border-bottom:2px solid var(--white);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-header{
	display: none;
}
.navbar-toggle{
	background: transparent;
	border: none;
	position: relative;
	height: 18px;
	width: 18px;
	padding: 0;
}
.navbar-toggle .icon-bar{
	position: absolute;
	width: 18px;
	left:0;
	top: 8px;
	border-bottom: 2px solid var(--dark);
	transition: all 0.5s 0s;
}
.navbar-toggle .icon-bar:first-child{
	top:2px;
}
.navbar-toggle .icon-bar:last-child{
	bottom:2px;
}
.navbar-toggle.active .icon-bar{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top:9px;
	border-color: var(--white);
}
.navbar-toggle.active .icon-bar:first-child{
	display: none;
}
.navbar-toggle.active .icon-bar:last-child{
	bottom:9px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#top{
	position: fixed;
	bottom: 25%;
	right: 5%;
	width: 50px;
	height: 50px;
	text-align: center;
	cursor: pointer;
	display: none;
	border-radius: 50%;
	background: transparent;
	border:1px solid var(--color);
	transition: background 0.5s 0s;
	z-index:1;
}
#top:hover{
	background: var(--color);
}
#top p{
	position: absolute;
	top: 21px;
	left: 19px;
	width:10px;
	height:10px;
	border-top:2px solid var(--color);
	border-left:2px solid var(--color);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}
#top:hover p{
	border-color:var(--white);
}
#top.active{
	display: block;
}
.mw-990{
	width: 100%;
	max-width: 990px;
}
.sub-menu{
	display: none;
}
.breadcrumb li{
	display: inline-block;
	padding-right: 5px;
	color:var(--darklight);
	font-size: 14px;
}
.breadcrumb li>i{
	width: 6px;
    height: 6px;
    display: inline-block;
    border-top: 2px solid var(--light);
    border-right: 2px solid var(--light);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 5px;
}
.breadcrumb a{
	color:var(--color);
}
.breadcrumb a:hover{
	color:var(--darklight);
}
.box-shadow{
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.btn-city{
	color:var(--darklight);
	font-weight: 500;
	cursor: pointer;
}
.btn-city svg{
	fill:var(--darklight);
}
.btn-city:hover{
	color:var(--color);
}
.btn-city:hover svg{
	fill:var(--color);
}
/* .menu{
    padding: 16px 0 24px ;
} */
.top-menu a, .top-menu span,
.menu a, .menu span{
	/* display: inline-block; */
	padding: 5px 15px;
	border-radius: 90px;
	font-size: 15px;
	background: transparent;
}
/* .top-menu a:hover, .top-menu span,
.menu a:hover, .menu span{
    background: var(--dark);
    color:var(--white);
} */
.phone.c-color:hover{
	color:var(--dark);
}
.phone:hover .fill-color{
	fill:var(--dark);
}
.btn-catalog{
	background: var(--color);
	color:var(--white);
	font-weight: bold;
}
.btn-catalog_style {
    background: var(--color);
	color:var(--white);
    display: -webkit-box;
    display: flex;
    align-items: center;
    flex-direction: row;
    border-radius: 30px;
}
.btn-services{
	background: var(--white);
	color:var(--color);
	border: 1px solid var(--color);
	font-weight: bold;
	padding: 19px 39px;
}
.navbar-catalog,.navbar-services{
	position: relative;
	width: 20px;
	height: 14px;
	margin-left: 12px;
}
.navbar-catalog .icon-bar,.navbar-services .icon-bar{
	position: absolute;
	display: inline-block;
	left: 0;
	top: calc(50% - 1px);
	width:20px;
	height: 2px;
	transition: all 0.5s 0s;
}
.navbar-catalog .icon-bar{
	background: var(--white);
}
.navbar-services .icon-bar{
    background: var(--color);
}
.navbar-catalog .icon-bar:first-child,.navbar-services .icon-bar:first-child{
	top:0;
}
.navbar-catalog .icon-bar:last-child,.navbar-services .icon-bar:last-child{
	top:auto;
	bottom:0;
}
.btn-catalog.active .icon-bar,.btn-services.active  .icon-bar{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: calc(50% + 0);
}
.btn-catalog.active .icon-bar:first-child,.btn-services.active .icon-bar:first-child{
	display: none;
}
.btn-catalog.active .icon-bar:last-child,.btn-services.active .icon-bar:last-child{
	bottom:6px;
	top:auto;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.catalog-menu_wr,.services-menu_wr{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	right:0;
	border: 1px solid var(--light);
	background-color:#F9F9F9;
	z-index:5;
}
.catalog-menu{
	padding: 15px 0;
	width:300px;
	border-right:1px solid var(--light);
	min-height: 70vh;
	box-sizing: border-box;
	/* overflow-y: auto; */
	overflow-y: hidden;
}
.catalog-menu .level1{
	display:block;
	padding: 0 5px;
}
.catalog-menu .level1>a, .catalog-menu .level1>span{
	display:flex;
	align-items:center;
	padding:15px 35px 15px 15px;
	border-radius:5px;
	position:relative;
}
.catalog-menu .level1.catalog-drop_menu>a:before, .catalog-menu .level1.catalog-drop_menu>span:before{
	content:'';
	position:absolute;
	top:50%;
	right:12px;
	width:12px;
	height:12px;
	border-top:2px solid var(--black);
	border-right:2px solid var(--black);
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.catalog-menu .level1>a:hover, .catalog-menu .level1>span{
	background-color: rgba(0, 168, 236, 0.15);
}
.catalog-menu .level1.catalog-drop_menu>a:hover:before, .catalog-menu .level1.catalog-drop_menu>span:before{
	border-color:var(--color);
}
.top-menu .top-menu-drop_menu a{
   padding: 5px 25px 5px 15px;
}

.top-menu-drop_menu.level2 .top-menu-sub_menu {
    display: none !important;
}

.top-menu-drop_menu.level2.active .top-menu-sub_menu {
    display: inline-block !important;
}

.top-menu .level1.top-menu-drop_menu>a:before{
    content:'';
	position:absolute;
	top:45%;
	right:7px;
	width:7px;
	height:7px;
	border-top:2px solid var(--black);
	border-right:2px solid var(--black);
	-webkit-transform: translateX(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.top-menu .level1.top-menu-drop_menu>span:before{
    content:'';
	position:absolute;
	top:45%;
	right:0px;
	width:7px;
	height:7px;
	border-top:2px solid var(--black);
	border-right:2px solid var(--black);
	-webkit-transform: translateX(50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.top-menu .level2.top-menu-drop_menu>a:before {
    content:'';
	position:absolute;
	top:45%;
	right:17px;
	width:7px;
	height:7px;
	border-top:2px solid var(--black);
	border-right:2px solid var(--black);
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.top-menu .level2.top-menu-drop_menu>span:before{
    content:'';
	position:absolute;
	top:45%;
	right:17px;
	width:7px;
	height:7px;
	border-top:2px solid var(--black);
	border-right:2px solid var(--black);
	-webkit-transform: translateX(50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.top-menu .top-menu-drop_menu {
    position: relative;
}

/* третий */

.top-menu-sub_menu li > .top-menu-sub_menu {
    top: 0;
    left: 100%;
    margin-left: 0px;
}

.top-menu .top-menu-sub_menu {
    display: none;
    position: absolute;
    background: var(--white);
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 6;
    width: max-content;
    border-radius: 10px;
}

.top-menu .top-menu-sub_menu .level2, .top-menu .top-menu-sub_menu .level3{
    border-bottom: 1px solid var(--light);
    padding: 10px 15px;
    min-width: 150px;
}

.top-menu .level1.top-menu-drop_menu:hover>a:before{
    border-color: var(--color);
}
.top-menu .level1.top-menu-drop_menu:hover .top-menu-sub_menu{
    display: block;
}

.catalog-menu .level1>a>img, .catalog-menu .level1>span>img{
	padding-right:15px;
}
.catalog-menu .level1>a:hover>img, .catalog-menu .level1>span>img{
	-webkit-filter: invert(49%) sepia(90%) saturate(523%) hue-rotate(164deg) brightness(103%) contrast(102%);
	filter: invert(49%) sepia(90%) saturate(523%) hue-rotate(164deg) brightness(103%) contrast(102%);
}
.catalog-menu .level1>.sub-menu_wr{
	position:absolute;
	padding:15px 30px;
	left:312px;
	top:0;
	right: 0;
	bottom:0;
	opacity:0;
	transition:opacity 0.5s 0s;
	background:var(--white);
	overflow-y: auto;
}
.catalog-menu .level1:hover>.sub-menu_wr{
	opacity:1;
	z-index:1;
}
.level1>.sub-menu_wr>li>.catalog-sub_menu{
	display:flex;
	flex-wrap:wrap;
}
.level1>.sub-menu_wr>li>.catalog-sub_menu>li{
	width:33.333%;
	padding-bottom:15px;
}
.catalog-menu_title{
	padding: 15px 0;
	color:var(--dark);
	font-weight:600;
	font-size:18px;
	display:block;
}
.catalog-menu .level2>a, .catalog-menu .level2>span, .catalog-menu .level3>a, .catalog-menu .level3>span{
	font-weight:600;
}
.catalog-sub_menu a, .catalog-sub_menu span{
	padding:6px 0;
	display:block;
}
.header-logo img{
    max-width: 150px;
}
.search-container {
    position: relative;
    height: 50px;
    box-sizing: border-box;
    background: var(--white);
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(3, 96, 147, 0.1);
    border-image: initial;
    border-radius: 50px;
    padding: 5px 6px;
}

.header-search-mobile {
    position: absolute;
    bottom: 60px;
}

.header-search-mobile form {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.header-search{
	flex-grow: 1;
}
.header-search .form-control{
	background: transparent;
	border: none;
	padding: 18px 15px;
	font-size: 15px;
}
.header-search_style .form-control{
	background: transparent;
	padding: 16px 24px;
	font-size: 15px;
	background-color: white;
	padding-left: 12px;
	width: 100%;
	text-align: left;
	align-items: center;
	display: flex;
}
.header-search_style .form-search {
    display: flex;
    width: 75%;
    align-items: center;
}
.header-search_style .form-search:hover {
    box-shadow: none;
}
.header-search_style .btn-search {
    padding: 0;
    padding-right: 10px;
}
.header-search_style {
	flex-grow: 1;
}

.header-search_style .form-control{
	border: none;
}
.header-search_style.active .presearch-overlay{
    display: block;
}
.header-search_style.active > *:not(.presearch-overlay) {
    z-index: 11;
}
.form-search{
	background: var(--additional);
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}
.form-search:hover{
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 4px 4px rgba(0, 0, 0, .04), 0 20px 40px rgba(0, 0, 0, .08);
}
.presearch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, .3);
    z-index: 10;
    display: none;
}
.header-search.active .presearch-overlay{
    display: block;
}
.header-search.active .form-search{
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 4px 4px rgba(0, 0, 0, .04), 0 20px 40px rgba(0, 0, 0, .08);
    z-index: 11;
}
.btn-search{
	padding: 12px;
	position: absolute;
    right: 0;
    height: 100%;
    cursor: pointer;
}
.btn-search-delete{
    right: 46px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.btn-search-delete:after {
    content: "";
    background: var(--light);
    height: 22px;
    width: 1px;
    position: absolute;
    right: 0px;
}
.ui-widget.ui-widget-content{
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 4px 4px rgba(0, 0, 0, .04), 0 20px 40px rgba(0, 0, 0, .08);
    border-radius: 10px;
    margin-top: 5px;
}
.ui-widget.ui-widget-content .ui-menu-item:nth-last-child(1) .ui-state-active{

     border-bottom-right-radius: 10px;
     border-bottom-left-radius: 10px;
}
.ui-widget.ui-widget-content .ui-menu-item:nth-child(1) .ui-state-active{
     border-top-right-radius: 10px;
     border-top-left-radius: 10px;
}
/* .mse2-ac-item-castom .ui-state-active {
    border: 1px solid #337ab7;
    background: #F9F9F9;
    color: var(--base);
    border-radius: 10px;
} */
.header-callback {
    display: flex;
    gap: 10px;
}
.header-callback .btn{
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 16px;
}
.svg-search-icon {
    height: 48px;
    position: relative;
    width: 48px;
}

.svg-search-icon svg {
    top: 25%;
    left: 25%;
    position: absolute;
}
.svg-icon{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--light);
	border-radius: 50%;
	margin: 0 6px;
	transition: background-color 0.5s 0s;
}
.svg-icon svg{
	fill:var(--dark);
}

/* .svg-icon:hover{
    background: var(--dark);
    border-color: var(--dark);
}
.svg-icon:hover svg{
    fill:var(--white);
} */

.mobile-header .svg-icon{
   border:none;
}
/* #header{
    border-bottom: 1px solid var(--light);
} */
.slide-one{
	flex: 0 0 100%;
}
.slider-prev, .slider-next{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	padding: 0;
	cursor: pointer;
	transition: all 0.5s 0s;
	background: transparent;
	border: none;
}
.slider-prev{
	left: 0;
}
.slider-next{
	right: 0;
}
.slider-prev:disabled, .slider-next:disabled{
	opacity: 0.1;
}
.main-slider__prev, .main-slider__next{
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
	background: var(--white);
	border-radius: 50%;
	width: 78px;
	height: 78px;
	border:none;
}
.main-slider__prev.slider-prev{
	left:3px;
}
.main-slider__next.slider-next{
	right: 3px;
}
.main-slider__prev svg{
	-webkit-transform: translateX(-3px);
	transform: translateX(-3px);
}
.main-slider__next svg{
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.main-slider__prev:hover, .main-slider__next:hover{
	background: var(--color);
}
.main-slider__prev:hover svg, .main-slider__next:hover svg{
	fill:var(--white);
}

.main-slider__dots .embla__dot{
	width: 40px;
	height: 2px;
	background: var(--light);
	margin: 0 6px;
	border:none;
	line-height: 0;
	transition: all 0.5s 0s;
}
.main-slider__dots .embla__dot.embla__dot--selected{
	width: 100px;
	background: var(--black);
}
.main-slider__dots{
	position: absolute;
	text-align: center;
	left:0;
	right:0;
	bottom: -24px;
}
.container-slider{
	max-width: 1366px;
	margin:0 auto;
	padding-left: 32px;
	padding-right: 32px;
	box-sizing: border-box;
	position: relative;
}
.main-container {
	padding: 80px 120px;
	max-width: 600px;
}
.messengers a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s 0s;
	background: var(--darklight);
	border-radius: 50%;
	margin:0 5px;
	width: 32px;
	height: 32px;
}
.messengers a>svg{
	fill:var(--white);
}
.messengers a:hover{
	background: var(--color);
}
.catalog-item_list{
	padding: 6px 0;
	border-top: 1px solid var(--light);
	max-height: 155px;
    overflow: hidden;
    transition: all 0.5s 0s;
}
.catalog-item_list.active{
	max-height: none;
}
.catalog-item_list a{
	color:var(--darklight);
	display: block;
	padding: 4px 0;
}
.catalog-item_list a:hover{
	color:var(--color);
}
.catalog-item_title{
	min-height: 56px;
	font-size: 18px;
	padding-bottom: 12px;
}
.bg-image{
	background: no-repeat center top;
	background-size: cover;
}
.mw-700px{
	width:100%;
	max-width: 700px;
}
.products-slider__container{
	position: relative;
	z-index:1;
}
.products-slider__viewport{
	padding-bottom: 230px;
}

.products-slider .swiper {
    overflow: visible;
    overflow-x: clip !important;
}
.products-slider__prev{
	left:-40px;
	/*top:35%;*/
}
.products-slider__next{
	right:-40px;
	/*top:35%;*/
}
.products-slider__slide{
	padding-right: 3px;
	padding-left: 3px;
}
.products-btn{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 75px;
}
/* .products-item_wr{
    position: relative;
    width: 424px;
    height: 100%;
    min-height: 530px;
} */
.products-item_gallery{
	position: relative;
}
.products-item_img{
	position: absolute;
	z-index: 0;
	opacity: 0;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	transition: opacity 0.5s 0s;
	display: inline-block;
}
.products-item_img img{
	display: block;
	max-width: 100%;
}
.products-item_trigger{
	position: absolute;
	z-index: 2;
	top:0;
	bottom: 0;
	display: block;
}
.products-item_trigger:first-child+.products-item_img{
	position: static;
	opacity: 1;
	z-index: 1;
}
.products-item_trigger:hover+.products-item_img{
	opacity: 1;
	z-index: 1;
}
.products-item_trigger:before{
	content:'';
	position: absolute;
	left:0;
	right:0;
	bottom: 0;
	height: 20px;
	background:  rgb(209 209 209 / 50%);
}
.products-item_trigger:after{
	content:'';
	position: absolute;
	left:8px;
	right:8px;
	bottom: 8px;
	height: 4px;
	background: var(--white);
}
.products-item_one:before ,.products-item_one:after{
    content:none;
}
.products-item_trigger:hover:after{
	background: var(--dark);
}
.products-item_marker{
	position: absolute;
	left:12px;
	top:12px;
	z-index: 1;
}
.marker{
	background: var(--dark);
	border-radius: 25px;
	margin-bottom: 8px;
	width: 43px;
    height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.marker svg{
	fill:var(--white);
}
.comparison-marker{
	position: absolute;
	top:12px;
	right:12px;
	z-index: 2;
}
.comparison-icon svg{
/*	fill:var(--white);*/
}
.comparison-icon:hover svg, .fill-dark svg{
	fill:var(--dark);
}
.products-price{
	font-size: 36px;
}
.products-old_price{
	text-decoration: line-through;
}
.sale{
	background: var(--c-error);
	border-radius: 25px;
	width:78px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color:var(--white);
	font-size: 15px;
}
.products-item_options{
	height: 0;
	overflow: hidden;
}
.btn-favorite{
	border-radius: 8px;
	border:1px solid var(--dark);
	width: 78px;
	min-width: 78px;
	height: 66px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.btn-favorite svg{
	stroke: var(--black);
	fill: none;
}
.btn-favorite:hover svg, .btn-favorite.voted svg, .comparison-remove.btn-favorite svg{
	stroke: var(--dark);
	fill: var(--dark);
}
.products-item{
	border-radius: 12px;
	overflow: hidden;
	background: transparent;
	padding: 12px;
	transition: all 0.5s 0s;
	width: 400px;
}
.products-item:hover{
	background: var(--white);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
/*     position: absolute;
z-index: 2;
left:0;
right:0; */
}
.products-item:hover .products-item_options{
	height: auto;
}
.radio-color{
	display: none;
}
.radio-color+label{
	display: block;
	width: 52px;
	height: 52px;
	border:1px solid transparent;
	padding: 6px;
	box-sizing: border-box;
}
.radio-color+label img{
	/* border:1px solid var(--black); */
	display: block;
}
.radio-color+label:hover,
.radio-color:checked+label{
    cursor: pointer;
    border-radius: 5px;
}
.radio-color+label:hover{
    border-color: var(--c-border);
}
.radio-color:checked+label{
    border-color: var(--color);
} 

.radio-color:disabled+label {
    opacity: 0.2;
}
/* .radio-color+label:hover img,
.radio-color:checked+label img{
    border-color: transparent;
} */
.srart svg{
	fill: #FA961D;
}
.vertical-line{
	height: 16px;
	border-left:1px solid var(--light);
}
.bg-gradient{
	background-repeat: no-repeat;
    background-position:center top;
	background-size: cover;
}
.section-img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-img img{
	display: block;
}
.section-item{
	position: relative;
}
.section-link{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	padding: 30px;
	transition: all 0.5s 0s;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.section-link:hover{
	background: linear-gradient(180deg, var(--color) 0%, rgba(0, 0, 0, 0) 100%);
}
.section-link span{
	color: var(--white);
}
.section-item_wr{
	padding-bottom: 24px;
}
.tabs-header li{
	display: inline-block;
	padding-right: 10px;
}
.tabs-header li:last-child{
	padding-right: 0;
}
.btn-tab{
	border:2px solid var(--black);
	min-width: 185px;
	text-align: center;
	padding: 12px;
	border-radius: 5px;
	cursor:pointer;
}
.active .btn-tab{
	border-color: var(--color);
	background: var(--color);
	color: var(--white);
}
.tab-content>div{
	display: none;
}
.tab-content>div.active{
	display: block;
}
.articles-item{
	width: 400px;
	padding-left: 12px;
	padding-right: 12px;
	box-sizing: border-box;
}

.columns_list .articles-item {
    min-height: 10rem;
}
.mw-840px{
	max-width: 840px;
	width: 100%;
}
.bg-questions{
	background: no-repeat center bottom;
	background-size: cover;
}
.questions-content{
	display: none;
}
.questions-wrapper{
	margin-bottom: 24px;
}
.questions-title{
	padding: 16px 78px 16px 24px;
	min-height: 82px;
	display: flex;
	align-items: center;
    font-size: 18px;
	box-sizing: border-box;
	position: relative;
}
.questions-title.active:after {
    content: '';
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 2.5%;
    width: 95%;
    height: 1px;
    background: var(--primary);
}
.questions-content{
	padding: 24px;
}
.questions-title b, .akkord-header_icon b{
	position: absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right:24px;
	transition: all 0.5s 0s;
}
.questions-title.active b, .akkord-header_icon.active b{
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}
.mw-620px{
	width: 100%;
	max-width: 620px;
}
#contact-map,#map{
	height: 100%;
}
#map{
    background: linear-gradient(110deg, #ececec 40%, #f5f5f5 50%, #ececec 65%);
    background-size: 200% 100%;
    -webkit-animation: 0.8s shine linear infinite;
    animation: 0.8s shine linear infinite;
}
.footer-menus{
	width:80%;
}
.footer-first {
    width: 20%;
}
.footer-contacts{
	width:15%;
}
.footer-menu a, .footer-menu span{
	display: block;
	padding: 0 0 12px;
}
.footer-menu span{
	color:var(--color);
}
.svg-gradient, .footer-messengers .messengers a{
	background: linear-gradient(98.86deg, var(--dark) 18.41%, var(--color) 136.53%);
	display: flex;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	fill:var(--white);
	transition: none;
}
.btn-svg .svg-gradient{
	margin-right: 12px;
}
.btn-svg .svg-gradient svg{
	padding: 0;
}
.svg-gradient:hover, .footer-messengers .messengers a:hover{
	background: var(--color);
}
.footer-messengers .messengers{
	display: flex;
}
.overflow-x-hidden{
	overflow-x: hidden;
}
.catalog-page .catalog-item_wr{
	padding-bottom: 24px;
}
.catalog-item_img {
    min-width: 190px;
}
.action-wr{
	background: #F4F1EB;
}
.bg-action_image{
	background: no-repeat right center;
}
.bg-action{
	background: url(../images/bg/bg-action.png) no-repeat calc(50% - 250px) center;
	background-size: auto 100% ;
}
.bg-architect{
	background: url(../images/bg/bg-arhitector.png) no-repeat calc(50% - 350px) center;
	background-size: auto 100% ;
}
.mw-680px{
	width: 100%;
	max-width: 680px;
}
.current-item{
	box-sizing: border-box;
	height: 100%;
}
.pagination{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.pagination li{
	padding: 0 5px;
}
.pagination li.control a, .pagination li.control span{
	padding: 0 10px;
	display: flex;
	align-items: center;
}
.pagination li.control svg{
	fill:var(--base);
	padding: 0 10px;
}
.pagination li.control a:hover svg{
	fill:var(--color);
}
.pagination li:not(.control) a, .pagination li:not(.control) span{
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 39px;
	border: 1px solid var(--darklight);
	border-radius: 5px;
	background: var(--white);
	color:var(--darklight)
}
.pagination li:not(.control) a:hover, .pagination li:not(.control) span{
	color:var(--white);
	border-color: var(--color);
	background-color: var(--color);
}
.product-gallery{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}
.gallery-thumbs{
	padding-left: 32px;
	padding-right: 32px;
	margin-top: 32px;
}
.gallery-thumbs__slide{
	padding-left: 8px;
	padding-right: 8px;
}
.btn-thumb{
	border:1px solid transparent;
	border-radius: 5px;
	overflow: hidden;
	line-height: 0;
	min-width: 100px;
}
.embla-thumbs__slide--selected .btn-thumb{
	border-color: var(--color);
}
.product-status{
	display: inline-block;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 30px;
}
.radio-size{
	display: none;
}
.radio-size+label{
	display: block;
	width: 40%;
	padding: 12px;
	text-align: center;
	border:1px solid var(--light);
	background-color: var(--white);
	border-radius: 5px;
	margin-bottom: 24px;
	margin-right: 12px;
	cursor: pointer;
	flex-grow:1;
}
.radio-color-text:checked+label,
.radio-size:checked+label{
	border-color: var(--color);
}
.radio-color-text:disabled+label,
.radio-size:disabled+label{
    opacity:0.5;
}
.radio-color-text:disabled+label,
.radio-size:disabled+label{
    opacity:0.5;
}
.radio-size-label.active{
	border-color: var(--color);
}
.select-size {
    border: 1px solid var(--light);
    color: var(--darklight);
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px 15px;
    width: 100%;
    outline: 0;
    font-size: 16px;
    height: auto;
    line-height: 1;
    font-family: 'Involve', sans-serif;
    transition: all .2s ease-in-out;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    padding-right: 40px;
    background: no-repeat calc(100% - 15px) center;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.17636 7.66525C6.63191 8.11158 7.37173 8.11158 7.82728 7.66525L13.6583 1.95224C14.1139 1.50591 14.1139 0.781076 13.6583 0.334747C13.2028 -0.111582 12.463 -0.111582 12.0074 0.334747L7 5.24079L1.99258 0.338317C1.53703 -0.108012 0.797215 -0.108012 0.341663 0.338317C-0.113888 0.784646 -0.113888 1.50948 0.341663 1.95581L6.17272 7.66882L6.17636 7.66525Z' fill='%23333'/%3E%3C/svg%3E");
}
.radio-color-text+label{
    padding: 14px;
    text-align: center;
    margin-left: 8px;
    margin-top: 8px;
    border: 1px solid var(--c-border);
    border-radius: 5px;
    cursor: pointer;
}
.radio-size-label{
    display: block;
    width: 40%;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--light);
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 24px;
    margin-right: 12px;
    cursor: pointer;
    flex-grow: 1;
}

.radio-color-text+label .type-color{
    width: 48px;
    height: 48px;
    border-radius: 5px;
}
.radio-color-text+label img{
    border-radius: 5px;
}
.radio-color-text+label span{
    font-size: 15px;
}
.radio-color-text{
    display: none;
}
.options-item{
	display: flex;
	justify-content: space-between;
}
.options-item>i{
	flex-grow: 1;
	border-bottom: 1px dashed var(--darklight);
	min-width: 24px;
}
.options-item span.bold{
    text-align:right;
}
.advanced{
	padding-left: 70px;
	padding-right: 70px;
}
.advanced-item_wr{
    flex-grow:1;
}
.advanced-img{
	min-width: 43px;
	padding-right: 12px;
}
.advanced-text.span-color span{
	color: var(--color);
}
.description-tabs{
	border-radius: 15px 15px 0 0;
	padding: 12px;
	background: var(--primary);
	border: 1px solid var(--primary);
}
.btn-descr{
    border: 1px solid var(--white);
	color:var(--white);
	border-radius: 8px;
	background: transparent;
	padding: 12px 25px;
}
.active .btn-descr{
	color:var(--dark);
	background: var(--white);
}
.tabs-description{
	border: 1px solid var(--light);
	padding: 36px 36px 48px;
	border-radius: 0 0 15px 15px;
}
.btn-descr sup,  .form-checkbox sup{
	vertical-align: super;
	font-size: smaller;
}
.minw-300px{
	min-width: 300px;
}
.fasts-link{
    position: relative;
    display: block;
    height: 60px;
    overflow: hidden;
}
.fasts-link.active{
    display: flex;
    flex-wrap:wrap;
    height: auto;
}
.fasts-link>a.btn{
	margin-right: 10px;
	margin-bottom: 15px;
	display: inline-flex;
    align-items: center;
}
.btn-fasts{
    padding: 16px 18px;
    float: right;
    white-space:nowrap;
}
.btn-fasts.active{
    float:none;
    order:1;
    margin-left:auto;
}
.btn-fasts .span-less, .btn-fasts.active .span-more{
	display: none;
}
.btn-fasts.active .span-less{
	display: inline-block;
}
.btn-chevron{
	position: relative;
	padding-right: 30px;
	cursor: pointer;
}
.btn-chevron:before {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-left: 2px solid var(--base);
	border-bottom: 2px solid var(--base);
	background: transparent;
	-webkit-transform: translateY(-5px) rotate(-45deg);
	transform: translateY(-5px) rotate(-45deg);
}
/* .active .btn-chevron:before, */ .btn-chevron.active:before{
	-webkit-transform: translateY(-2px) rotate(135deg);
	transform: translateY(-2px) rotate(135deg);
}
.c-color.btn-chevron:before{
	border-color: var(--color);
}
.c-darklight.btn-chevron:before{
	border-color: var(--darklight);
}
.btn-tags{
	margin-bottom: 15px;
	margin-left: auto;
}
.btn-tags .span-less, .btn-tags.active .span-more{
	display: none;
}
.btn-tags.active .span-less{
	display: inline-block;
}
.section-search{
	flex-grow: 1;
}
.form-search.bg-white{
	background: var(--white);
}
.left-category a{
	display: block;
	position: relative;
	padding: 8px 0 8px 24px;
}
.left-category a:before{
	content:'';
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	border-left: 2px solid var(--light);
	border-bottom: 2px solid var(--light);
	background: transparent;
	-webkit-transform: translateY(-5px) rotate(45deg);
	transform: translateY(-5px) rotate(45deg);
}
.left-category a:hover:before{
	border-color: var(--color);
}
.left-section a{
	display: block;
	position: relative;
	padding: 6px 0 6px 24px;
}
.left-section{
	max-height:110px;
	overflow:hidden;
	transition:all 0.5s 0s;
}
.left-section.active{
	max-height:1000px;
}
.js-section-more{
	margin-left: 24px;
}
.form-control_price{
	font-size: 14px;
	padding: 8px;
	max-width: 100px;
	box-sizing: border-box;
	background: var(--additional);
	border-color: var(--additional);
	color:var(--base);
	text-align: center;
}
.section-row .products-slider__slide{
	width: 33.33333%;
	padding-left: 12px;
	padding-right: 12px;
	box-sizing: border-box;
}
.products-item_img{
	max-width: 100%;
}
/* .section-row .products-item_wr{ */
.section-row .products-item{
	width:auto;
}
.section-row .products-price{
	font-size: 24px;
}
.section-row .products-old_price{
	font-size: 14px;
}
.section-row .marker{
	width: 43px;
    height: 22px;
}
.products-line_marker .marker{
	width: 58px;
	height: 29px;
	margin-right: 8px;
}
.favorite-marker{
	position: absolute;
	left:12px;
	top:12px;
}
.favorite-marker svg {
	stroke: var(--black);
	fill: none;
}
.favorite-marker a:hover svg, .favorite-marker a.voted svg{
	stroke: var(--dark);
	fill: var(--dark);
}
.product-line_img{
	width:108px;
}
.products-line_cart{
	display: flex;
	align-items: center;
	margin-left: auto;
}
.btn-cart_add{
	border-radius: 8px;
	border: 1px solid var(--dark);
	width: 54px;
	min-width: 54px;
	height: 54px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.products-line_price{
	padding-left: 12px;
	padding-right: 12px;
	margin-left: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-width: 130px;
}
.products-line_price .sale {
	width: 58px;
	height: 29px;
	font-size: 12px;
}
.product-line_title{
	padding-left: 12px;
	padding-right: 12px;
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.border{
	border:1px solid #EBEBEB;
}
.btn-delete{
	width: 56px;
	height: 56px;
	border:1px solid var(--dark);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}
.cart-delete .btn-delete{
    width: auto;
    height: auto;
    border: none;
}
.cart-delete .btn-delete:hover {
	background: none;
}
.cart-delete .btn-delete:hover svg{
	fill: var(--dark);
}
.cart-delete .btn-delete svg{
    fill: var(--darklight);
}
.cart-title{
    max-width: 319px;
}
.btn-delete:hover{
	background: var(--dark);
}
.btn-delete svg{
	fill: var(--dark);
}
.btn-delete:hover svg{
	fill: var(--white);
}
.count-input{
	text-align: center;
	background: transparent;
	width: 50px;
	border:none;
}
.calculator-count{
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	border: 1px solid var(--light);
	background: var(--additional);
	text-align: center;
	line-height: 38px;
	cursor:pointer;
}
.calculator-count:hover{
	background: var(--color);
	border-color: var(--color);
	color:var(--white);
}
.cart-count_wr{
	width:136px
}
.cart-item{
	padding: 24px 0;
	border-bottom: 1px solid var(--light);
}
.cart-other{
    min-width:200px;
}
.cart-count{
    width:200px;
}
.total-row{
	border-top: 1px solid var(--darklight);
}
.order-total_wr{
	top:12px;
	position: -webkit-sticky;
	position: sticky;
}
.tabs-delivery li{
	display: inline-block;
	padding-right: 24px;
}
.tab-delivery{
	display: inline-block;
	background: transparent;
	border:none;
	padding: 0 0 0 30px;
	cursor:pointer;
	font-size: 16px;
	position: relative;;
}
.tab-delivery:before{
	content:'';
	position: absolute;
	left:0;
	top:-4px;
	border-radius: 50%;
	padding: 0;
	margin:0;
	width:22px;
	height: 22px;
	background: transparent;
	border:1px solid var(--light);
}
.order-item .active .tab-delivery:before{
	border:5px solid var(--dark);
	width: 14px;
	height: 14px;
}
.delivery-map{
	min-width: 24px;
}
.delivery-btn{
	min-width: 200px;
}
.btn-delivery{
	border-radius: 5px;
	display: inline-block;
	border:1px solid var(--light);
	padding: 16px 60px;
	cursor: pointer;
}
.radio-delivery, .radio-payment{display: none}

.radio-delivery:checked+.delivery-item{
	border-color: var(--dark);
}
.radio-delivery:checked+.delivery-item .btn-delivery{
	background: linear-gradient(98.86deg, var(--dark) 0%, var(--color) 136.53%);
	color:var(--white);
}
.delivery-item{
	margin-bottom: 24px;
}
.delivery-item:last-child{
	margin-bottom: 0;
}
.payment-item{
	width: 250px;
	display: block;
	padding: 15px;
	box-sizing: border-box;
	margin-right: 24px;
	cursor: pointer;
}
.payment-item:last-child{
	margin-right: 0;
}
.radio-payment:checked+.payment-item{
	border-color: var(--dark);
}
.office-menu li{
	display: block;
	padding-bottom: 20px;
}
.office-menu a, .office-menu span{
	display: block;
	font-size: 15px;
	padding: 15px;
	border:1px solid var(--light);
	background: var(--additional);
	transition: all 0.5s 0s;
	border-radius: 5px;
	text-align: center;
}
.office-menu a:hover, .office-menu span{
	background: var(--dark);
	border-color: var(--dark);
	color: var(--white);
}
.btn-exit svg{
	stroke: var(--dark);
}
.btn-exit:hover svg{
	stroke: var(--color);
}
.svg-icon_span{
    position:relative;
}
.svg-icon_span>span,.svg-icon_span>span[data-value="0"]{
    position:absolute;
    border-radius:50%;
    background:#FA961D;
    width: 15px;
    height: 15px;
    text-align: center;
    color: var(--white);
    font-size: 9px;
    top: 0;
    right: 0;
    line-height: 15px;
    display: none;
}
.svg-icon_span>span:not([data-value="0"]){
    display: block;
}

.order-accordion_content{
    display:none;
}
.order-accordion_header{
    position: relative;
    cursor: pointer;
}
.order-accordion_header:before{
    content: '';
    position: absolute;
    top: 45%;
    right: 7px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--black);
    border-right: 2px solid var(--black);
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
}
.order-accordion_header.active:before{
    -webkit-transform: translateX(-50%) rotate(315deg);
    transform: translateY(-50%) rotate(315deg); 
}
body .ui-state-default, body .ui-widget-content .ui-state-default{
    border-radius:50%;
    width:20px;
    height:20px;
    top: -6px;
}
body #mse2_filters .mse2_number_slider {
    font-size: 12px;
    border-radius: 20px;
    border: none;
    background:var(--light);
    margin:0;
}
body .ui-slider-horizontal .ui-slider-range{
    background:var(--dark);
}
#mse2_filters .mse2_number_inputs label{
    text-transform: lowercase;
}
#mse2_filters .disabled-moulage{
    color: #aaa;
}
body .office-auth-register-wrapper{
    border-radius:8px;
}
.footer-phone .phone .svg-gradient{
    min-width:46px;
}
.type-color{
    background-color: #cecece;
    display: inline-block;
    width: 38px;
    height: 38px;
}
.category-filter_tile{
    display:flex;
    flex-wrap:wrap;
}
.filter-max-height {
    max-height: 200px;
    overflow: hidden;
    transition: all 0.5s 0s;
}
.filter-max-height.active {
    overflow-y: scroll;
    max-height: 230px;
}
.filter-max-height-color{
    max-height: 156px;
    overflow: hidden;
    transition: all 0.5s 0s;
}
.filter-max-height-color.active{
    overflow-y: scroll;
    max-height: 208px;
}
.options-color{
    position:relative;
}
.options-color sup{
    position: absolute;
    right: 7px;
    top: 6px;
    vertical-align: super;
    font-size: smaller;
    color: white;
}
.office-main{
    width: calc(100% - 325px);
    padding: 0 12px;
    box-sizing: border-box;
}
/* .comparison-table{
    overflow-x: auto;
    display:block;
}
 .comparison-table{
    border-radius: 0px 0px 8px 8px;
    background: var(--white);
    border: none;
    box-shadow: 0px 0px 1px #000;
}
.comparison-table th{
    background: var(--secondary);
    color:var(--white);
}
.comparison-table th,
.comparison-table td{
    padding: 15px 10px !important;
}
.comparison-table td{
    border:1px solid var(--light);
}
.comparison-table a{
    color: var(--color);
    text-decoration: underline;
}
.comparison-table a:hover{
    color: var(--dark);
}
.comparison-param, .comparison-corner{
    position:sticky;
    left:0;
    background: #F9F9F9;
    border: 1px solid var(--darklight);
    text-align:left;
    z-index:1;
}
.comparison-table .comparison-head{
    position: relative;
}
.comparison-table .comparison-remove{
    top:0;
    right:0;
}
.comparison-cell{
    width:160px;
    max-width: 250px;
} */

.comparison .tab-content,.comparison-table .comparison-head{
    position: relative;
}
.comparison-table .comparison-head {
    width: 200px;
}
.comparison .tab-content>div.active {
    overflow-x: auto;
    width: 100%;
}
.comparison-table .comparison-head img {
    margin: 0 3em;
}
.comparison-table_wr .comparison-corner {
    position: absolute;
}
.comparison-param {
    position: absolute;
    width: 100%;
    background: #eeeeee;
    color: #000;
    font-size: 14px;
}
.comparison-table .comparison-remove {
    background: none;
    top: 0;
    right: 0;
}
.comparison-row {
    border-bottom: 1px solid;
    height: 80px;
}
.comparison-table td.comparison-cell{
    vertical-align: bottom;
    padding-top: 35px;
}
.container .comparison-table tbody .comparison-row:first-child td {
    padding-top: 0;
}








/* Ниже дпописывал дима */
.modal_title {
    background: var(--color);
    padding: 20px;
    color: var(--white);
    border-radius: 15px 15px 0 0;
}
.modal_content{
    background-color: var(--white);
    border-radius: 0 0 15px 15px;
    padding: 0 30px 30px 30px;
}  
/* Всплывающие окна для карты */
#contact-map>.carousel__button.is-close{
    top: -40px;
}
/* Всплывающие окна для личного кабинета */
#auth-reset, #registration{
    display: none;
}
#auth-reset.start-anim, #registration.start-anim{
    display: block;
}
#login-input.start-anim{
    display: none;
}
.btn-auth-reset,.btn-registration{
    cursor: pointer;
}
#login .bac{
    position: absolute;
    top: 17px;
    left: 17px;
    width: 13px;
    height: 13px;
    display: inline-block;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-right: 5px;
}
img.lozad{
    background: linear-gradient(110deg, #dcdcdc 40%, #f5f5f5 50%, #dcdcdc 65%);
    background-size: 200% 100%;
    -webkit-animation: 0.8s shine linear infinite;
    animation: 0.8s shine linear infinite;
  }
img.lozad[srcset$="png"]{
    background: none;
}

iframe.mapframe{
    width: 100%;
    height: 100%;
}
.js-unwrap-text {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s 0s;
}
.js-unwrap-text.active {
    max-height: 1000px;
}
/* Окно купить в один клик */
body .modal-backdrop.in, .modal-backdrop.show {
    opacity: 1;
    filter: alpha(opacity = 100);
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(3px);
}
#oneClick_modal .modal-content{
    border-radius: 16px;
}
#oneClick_modal .modal-header{
    background: linear-gradient(98.86deg, var(--dark) 0%, var(--color) 130%);
    padding: 20px;
    color: var(--white);
    border-radius: 15px 15px 0 0;
}
#oneClick_modal .modal-close{
    color: #fff;
    opacity: 1;
}
#oneClick_modal .modal-title{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
#oneClick_modal .btn_send{
    color: var(--white);
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
#oneClick_modal .btn_send:before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200%;
    transition: all 0.5s 0s;
    background: linear-gradient(98.86deg, var(--color) 0%, var(--dark) 50%, var(--color) 136.53%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
#oneClick_modal .btn_send:hover:before{
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
@keyframes shine {
    to {
        background-position-x: -200%;
    }
}
@-webkit-keyframes shine {
    to {
        background-position-x: -200%;
    }
}
.stag-icon{
    width: 60px;
    height: 60px;
}
.sticky{
	position: -webkit-sticky;
	position: sticky;
	top: 10px;
}

.tariff-price {
    padding: 15px;
    background-color: var(--additional);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}
.tariff-price .price {
    font-size: 30px;
}
.tariff-price .price span {
    font-size: 40px;
}
.tariff .accent .tariff-price{
    color: var(--base) !important;
}
.tariff-program li {
    padding: 6px 0 6px 25px;
    position: relative;
    font-weight: 500;
}
.tariff-program li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    display: inline-block;
    height: 6px;
    width: 12px;
    border-left: 2px solid var(--color);
    border-bottom: 2px solid var(--dark);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.tariff .accent .tariff-program li:before {
    border-left: 2px solid var(--light);
    border-bottom: 2px solid var(--white);
}
.tariff .accent {
    margin: -15px 0px;
    border: 1px solid var(--primary);
}
.battons tr td:last-child{
    white-space: nowrap;
    width: 1%;
}
.fr-th tr:first-child td{
    background: var(--primary);
    color: var(--white);
}
.fc-th td:first-child{
    background: var(--primary);
    color: var(--white);
}
.price-table table{
    width: 100%;
}
.msisnmodal-inner .msisnmodal-dialog {
	background: none;
}
.page-item.disabled{
    display: none;
}

.full-image_content .img-center {
    align-self: flex-end;
}

.map_page #map {
    height: 600px;
}

.columns_list .content-text {
    font-size: 14px;
}

.columns_list .content-text p {
    padding: 0;
}

.columns_list .article-item {
    align-items: center;
}

.columns_list .article-img {
    width: 30%;
}

.vendor {
    height: fit-content;
}

.vendor .article-item {
    height: 80px;
}

.link_image .section-link {
    flex-flow: column-reverse;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.link_image .section-link:hover{
	background: linear-gradient(0deg, var(--color) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-item, .section-img, .section-img img{
	width: 100%;
	height: 100%;
}


.box {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.link_image .row-flex {
    justify-content: center;
}

.link_cards .container {
    gap: 25px;
}

.link_cards .row-flex {
    justify-content: space-between;
}

.link_card .article-img {
    display: inline-flex;
}

.link_card .article-item {
    text-align: center;
    justify-content: center;
    align-items: center;
}
.link_card .flex-column {
    padding: 0;
}

.link_card a {
    transition: all 0.2s 0s;
}

.link_card a:hover {
    transition: all 0.2s 0s;
    transform: scale(1.02);
}

.controls {
    z-index: 3;
}

.products-slider__container .swiper-slide {
    width: 33.33% !important;
}

.articles-slider__prev, .articles-slider__next {
    top: 40%;
}

.column-slider__prev, .column-stages-slider__prev, .columns-list-slider__prev {
    left: -3%;
    top: 50%;
}

.column-slider__next, .column-stages-slider__next, .columns-list-slider__next {
    right: -3%;
    top: 50%;
}

.container {
    position: relative;
}

.gallery-slider__prev {
    margin-top: 4%;
    left: -2rem;
}

.gallery-slider__next {
    margin-top: 4%;
    right: -2rem;
}

.head_title {
    font-size: 370px;
    font-weight: bold;
}

.swiper-prev, .swiper-next {
    cursor: pointer;
    transition: all 0.5s 0s;
    background: transparent;
    border: none;
}

.radius-15 {
    border-radius: 15px;
}

.brands .swiper-wrapper {
    transition-timing-function: linear !important; /* Равномерная скорость */
    pointer-events: none;
}

.brand-img {
    width: 210px;
    height: 95px;
    object-fit: contain;
    padding: 5px;
}

.swiper-gradient-mask, .swiper-gradient-mask-right {
    position: relative;
    overflow: hidden;
}

/* элемент для левого градиента */
.swiper-gradient-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(to right, rgba(249, 249, 249, 1) 0%, rgba(249, 249, 249, 0) 100%);
}

/* элемент для правого градиента */
.swiper-gradient-mask::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(to left, rgba(249, 249, 249, 1) 0%, rgba(249, 249, 249, 0) 100%);
}

.swiper-gradient-mask-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(to left, rgba(249, 249, 249, 1) 0%, rgba(249, 249, 249, 0) 100%);
}

.parallax-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* !!! */
}

.parallax-card.w-50 {
    width: 45%;
}

.parallax-item {
    flex-wrap: wrap;
}

.production-slider__controls .slider-prev img {
    transform: scale(-1, 1)
}

.production-slider__controls .slider-next {
    right: -55px;
}

.production-slider__controls .slider-prev {
    left: -55px;
}

.production-swiper-pagination.swiper-pagination-progressbar {
    background: #ccc;
    width: 60%;
    height: 5px;
}

.production-swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--primary);
    width: 60%;
    left: 0;
    position: absolute;
    height: 5px;
}

.js-player {
    height: 100%;
}

.production-item {
    margin-bottom: 35px;
}

.production-item .content-text {
    line-height: 1.4;
}

.production-item.w-100 {
    height: 600px;
}

.production-image {
    object-fit: cover;
}

.production-image-big {
    width: 95%;
    height: 100%;
    object-fit: cover;
}

.video-wr {
    height: 350px !important;
}

.complex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.complex-block-link {
    width: 32%;
    margin-bottom: 20px;
    height: auto;
    display: block;
    text-decoration: none;
    color: inherit;
}

.complex-block {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
}

.complex-block-white {
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
    z-index: 2;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.complex-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(32deg,white 20%,color-mix(in srgb, var(--secondary) 25%, white) 85%, color-mix(in srgb, var(--secondary) 30%, white) 90%, color-mix(in srgb, var(--secondary) 50%, white) 100%);
    object-fit: cover;
    z-index: 1;
}

.complex-img {
    transition: all 0.3s ease;
}

.complex-block-link:hover .complex-block-white {
    background: transparent;
}

.radius-20 {
    border-radius: 20px;
}

.complex-block-link:hover .complex-img {
    transform: rotate(-20deg) translateY(-90px) translateX(-80px);
}

.catalog-block {
    position: relative;
    background-color: your-initial-background-color;
    overflow: hidden;
}

.catalog-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(32deg,white 20%,color-mix(in srgb, var(--secondary) 25%, white) 85%, color-mix(in srgb, var(--secondary) 30%, white) 90%, color-mix(in srgb, var(--secondary) 50%, white) 100%);
    /* background: linear-gradient(32deg, rgba(255, 255, 255, 1) 0%, rgba(245, 255, 250, 1) 80%, rgba(214, 255, 234, 1) 100%); */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

.catalog-block:hover::before {
    opacity: 1;
}

.catalog-block > * {
    position: relative;
    z-index: 2;
}

.catalog-block__background {
    transition: all 0.4s ease-in-out;
    border-radius: 15px;
    background: none;
    padding: 1px;
}

.catalog-block__background:hover {
    transition: all 0.4s ease-in-out;
    background: linear-gradient(22deg,white 0%, var(--primary) 24%, var(--secondary) 70%, white 100%);
    /* background: linear-gradient(22deg,rgba(240, 240, 240, 1) 0%, rgba(209, 240, 238, 1) 24%, rgba(170, 216, 213, 1) 70%, rgba(240, 240, 240, 1) 100%); */
}

.catalog-block-item {
/*     min-height: 544px; */
    min-height: 444px;
    width: 288px;
}

.catalog-item_nav {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.fs-20 {
    font-size: 20px;
}

.fs-71 {
    font-size: 71px;
}

.text-img-ful {
    background-repeat: no-repeat;
    background-size: cover;
}
.block {
    margin: 5px;
    border: 1px solid var(--primary);
    border-radius: 80px;
    transition: all 0.3s;
    background: transparent;
}

.block:hover {
    background-color: var(--primary);
    transition: all 0.3s;
    color: #fff !important;
}


.slider__dots {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    z-index: 10;
}

.slider__dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider__dots .swiper-pagination-bullet:hover {
    background-color: #999;
}

/* вариант с точками вместо линии */
.slider__dots.dot .swiper-pagination-bullet-active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* вариант с линиями вместо точек */
.slider__dots.space .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.2);
    margin: 0 4px !important;
}

.slider__dots.space .swiper-pagination-bullet-active {
    background-color: var(--primary);
    height: 4px;
}

.chart-second {
    display: flex;
    align-items: center;
}

.chart-second p {
    padding: 3px 8px;
}

.chart-second-green {
    color: #047857;
    background: #ECFDF5;
}

.chart-second-blue {
    color: #015C94;
    background: #E9F7FF;
}

.info-item:nth-child(2) {
    color: white !important;
    background: linear-gradient(22deg, var(--primary) 0%, var(--secondary) 100%);
}

/* PLYR */
.plyr--video {
    border-radius: 20px;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
    position: static !important;
}

.view-mode-selector input[type="radio"] {
    display: none;
}

.view-mode-selector {
    color: var(--darklight);
    background: var(--bg-input);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 15px;
    outline: 0;
    font-size: 16px;
    height: auto;
    line-height: 1;
    font-family: 'Involve', sans-serif;
    transition: all .2s ease-in-out;
}

.view-mode-selector img {
    width: 25px;
}

.flex-template {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex-template .products-item_gallery__wr.relative {
    width: 250px;
}
.flex-template .products-item_btn {
    height: 55px;
}

/* --- Стили для Историй (Stories) --- */

/* Контейнер для превью-кружков */
.stories-container {
    gap: 20px;
    padding: 20px 0;
}

.story-item {
    text-align: center;
    cursor: pointer;
}

.story-item .story-preview {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 3px;
    transition: border-color 0.3s;
}

.story-item .story-preview:hover {
    border-color: var(--secondary);
}

.story-item .story-preview.viewed {
    border: 3px solid #ccc;
}

.story-item .story-preview.viewed:hover {
    border-color: #ccc;
}

.story-item .story-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-item span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* Стили для модального окна Fancybox */
.fancybox__slide .story-content-wrapper {
    width: 100%;
    height: 100%;
    max-width: 450px; /* Максимальная ширина истории */
    max-height: 800px; /* Максимальная высота */
    margin: auto;
    background-color: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* Swiper внутри модального окна */
.story-content-wrapper .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.story-content-wrapper .swiper-slide {
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-content-wrapper .swiper-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Затемнение поверх видео/фона для читаемости текста */
.story-content-wrapper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.story-content-wrapper .slide-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    padding-bottom: 80px; /* Место для кнопок */
}

/* --- Шкала прогресса (самое важное) --- */
.story-content-wrapper .swiper-pagination {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    width: auto;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.story-content-wrapper .swiper-pagination-bullet {
    flex: 1 1 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.story-content-wrapper .swiper-pagination-bullet .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #ffffff;
    border-radius: 2px;
    transition: width 0.1s linear; /* Плавность для шкалы */
}

/* Для просмотренных слайдов шкала заполнена */
.story-content-wrapper .swiper-pagination-bullet.viewed .progress-bar {
    width: 100% !important;
}

/* Навигация (кнопки "вперед/назад") */
.story-content-wrapper .swiper-button-prev,
.story-content-wrapper .swiper-button-next {
    width: 30%; /* Увеличиваем кликабельную область */
    height: 100%;
    top: 0;
    margin-top: 0;
}
.story-content-wrapper .swiper-button-prev { left: 0; }
.story-content-wrapper .swiper-button-next { right: 0; }

/* Убираем стандартные стрелки */
.story-content-wrapper .swiper-button-prev::after,
.story-content-wrapper .swiper-button-next::after {
    display: none;
}

.story-content-wrapper .story-close-button::before,
.story-content-wrapper .story-close-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.story-content-wrapper .story-close-button::before {
    transform: rotate(45deg);
}
.story-content-wrapper .story-close-button::after {
    transform: rotate(-45deg);
}

.story-content-wrapper .carousel__button.is-close {
    margin-top: 15px;
    margin-right: 10px;
}

/* .fancybox-stories-theme .fancybox__slide {
    width: 33%;
} */

/* Режим 1: Заголовок → Картинка → Описание */
.mode-mode1 .mode-title { order: 1 !important; }
.mode-mode1 .mode-image { order: 2 !important; }
.mode-mode1 .mode-description { order: 3 !important; }

/* Режим 2: Заголовок → Описание → Картинка */
.mode-mode2 .mode-title { order: 1 !important; }
/* .mode-mode2 .mode-description { order: 2 !important; } */
.mode-mode2 .mode-image { order: 2 !important; }

/* Режим 3: Картинка → Заголовок → Описание */
.mode-mode3 .mode-image { order: 1 !important; }
.mode-mode3 .mode-title { order: 2 !important; }
/* .mode-mode3 .mode-description { order: 3 !important; } */

/* Режим 4: Картинка → Описание → Заголовок */
.mode-mode4 .mode-image { order: 1 !important; }
.mode-mode4 .mode-description { order: 2 !important; }
.mode-mode4 .mode-title { order: 3 !important; }

/* Режим 5: Описание → Заголовок → Картинка */
/* .mode-mode5 .mode-description { order: 1 !important; } */
.mode-mode5 .mode-title { order: 1 !important; }
.mode-mode5 .mode-image { order: 2 !important; }

/* Режим 6: Описание → Картинка → Заголовок */
/* .mode-mode6 .mode-description { order: 1 !important; } */
.mode-mode6 .mode-image { order: 1 !important; }
.mode-mode6 .mode-title { order: 2 !important; }


.dcolor-red{
    color: red;
}

.banner_site {
    color: white;
    background-image: url("/assets/images/site/banner_full.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.article-title {
    line-height: 110%;
}

.small-svg {
    width: 20px;
    height: 20px;
}

.big-svg {
    width: 40px;
    height: 40px;
}

.article-content-block {
    top: 15%;
    height: 60%;
    width: 40%;
}

.trans-50 {
    transform: rotateY(180deg);
}

.swiper-articles-arrows {
    bottom: 125px;
    left: 300px;
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

a .article-title:hover {
    color: var(--c-hover) !important;
}

.brand-ht {
    height: 100px;
    width: 200px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.brand-ht img {
    width: 150px;
    height: auto;
}

.article-content-wr {
    top: 0;
    background-image: linear-gradient(0deg, #00000090, transparent);
}

.article-parent {
    padding: 15px;
    background-color: #ffffff5c;
    border-radius: 8px 0;
    backdrop-filter: blur(20px);
    color: black;
}

.article-text .article-title:hover {
    color: white !important;
}

.object-fit-cover {
    object-fit: cover;
}

.article-small-item_wr {
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}

.article-wrapper-link {
    position: relative;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.article-wrapper-link .article-parent {
    position: relative;
    z-index: 2;
}

.article-sticky .article-small-item_wr {
    position: sticky;
    top: 20px;
}

.h-min-c {
    height: min-content;
}

.eye-icon {
    margin-top: 4px;
}

.tag-item {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid var(--primary);
    transition: all 0.3s;
}

.tag-item:hover {
    background: var(--primary);
    color: white;
}

.article-img img {
    object-fit: cover;
}

.article-parent img {
    width: 20px !important;
}

/* бургер меню */

.mobile-phone {
    display: flex;
    align-items: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 15;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}
.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
}

.mobile-menu-title {
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: white;
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-ul li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-ul li a, .mobile-ul li span {
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.mobile-sub-ul {
    display: none;
    padding-left: 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.link-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-sub {
    height: 20px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.toggle-sub::after {
    content: '';
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.has-sub.open > .link-wrap .toggle-sub::after {
    transform: rotate(-135deg);
}

.header-search-stroke {
    position: absolute;
    top: 100px;
    left: 25%;
    width: 50%;
    z-index: 10;
}

.header-search-stroke form {
    width: 100%;
}