* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

.btn {
	display: inline-flex;
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-weight: 600;
	color: white;
	background: #00B0EC;
	padding: 20px 40px;
	border-radius: 100px;
}
.flex {
	display: flex;
}
.align_center {
	align-items: center;
}
.justify_between {
	justify-content: space-between;
}

body {
	font-family: 'Inter', sans-serif;
}
p {
	font-size: 14px;
}
a {
	font-size: 14px;
}
.top_nav_phone a, .footer_phone a {
	display: flex;
	align-items: center;
}
.icon_phone {
	background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.493709 3.95952C1.93339 9.61468 6.38532 14.0666 12.0405 15.5063C14.1813 16.0513 16 14.2091 16 12V11C16 10.4477 15.5512 10.0053 15.0016 9.95078C14.073 9.85874 13.1818 9.63968 12.3456 9.31124L10.8263 10.8305C8.3553 9.64799 6.35202 7.64471 5.16949 5.17367L6.68877 3.65438C6.36032 2.81816 6.14126 1.92696 6.04922 0.998417C5.99474 0.448826 5.55229 0 5 0H4C1.79086 0 -0.0513079 1.81867 0.493709 3.95952Z" fill="%2300B0EC"/></svg>') 50% no-repeat;
	display: block;
	width: 26px;
	height: 26px;
	margin-right: 5px;
}

.container {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 15px;
}

.onep {
	font-size: 12px;
	color: rgba(0, 0, 0, .4);
display:none;
}
#product_list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin: 30px 0;
}
#product_list br {
	display: none !important;
}
#product_list > div {
	width: 100% !important;
	display: flex;
	float: none !important;
	background: #f8f8f8;
	border: 1px solid #ddd;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .07);
	border-radius: 12px;
	overflow: hidden;
}
#product_list > div:nth-child(3n) {
	margin-right: 0 !important;
}
.product_item {
	display: flex;
	flex-direction: column;
}
.product_item.product_item_cart {
	flex-direction: row;
	justify-content: space-between;
	background: white;
	border-radius: 12px;
	border: 1px solid #ddd;
	padding: 15px;
	margin-bottom: 15px;
}
.product_item_name {
	text-align: left;
}
.product_item_name a {
	color: #333;
	text-decoration: none;
}
.product_item_sku {
	margin-top: 15px;

}
.product_item_sku p {
	color: gray;
}
.product_item_img {
	width: 100%;
	height: 240px;
}
.product_item_img_holder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product_item_img_holder img {

}
.product_item_info {
	padding: 15px;
}
.product_item_info a {
	text-decoration: none;
	color: #333;
}
.product_item_info h2 {
	font-size: 16px;
}
.product_item_price {
	margin: 15px 0;
	color: #00B0EC;
}
.product_item_price * {
	color: #00B0EC;
}

.top_nav {
	background: #212121;
	padding: 12px 0;
}
.top_nav_phone a {
	font-weight: 600;
	color: white;
	text-decoration: none;
}
.main_nav ul {
	list-style: none;
	display: flex;
	align-items: center;
}
.main_nav li {
	padding: 0 25px;
}
.main_nav li:first-child {
	padding-left: 0;
}
.main_nav a {
	color: white;
	text-decoration: none;
}

header {
	padding: 12px 0;
}
header h2 {
	font-size: 16px;
	color: #212121;
	font-weight: 300;
	margin-left: 95px;
}
.header_left {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .search {
	flex: 1;
	position: relative;
	padding: 0 100px;
}
header .search_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .search_block input {
	width: calc(100% - 30px);
	height: 44px;
	background: white;
	border-radius: 4px 0 0 4px;
	border: 1px solid #DbDbDb;
	padding-left: 20px;
	font-size: 16px;
	color: #595959;
}
header .search_block button {
	width: 44px;
	height: 44px;
	border: 1px solid #dbdbdb;
	border-left: none;
	border-radius: 0 4px 4px 0;
	background: url('../images/icon_search.svg') 50% no-repeat;
}
header .mini_cart {
	width: 100px;
	position: relative;
}
header .mini_cart a {
	text-decoration: none;
}
header .mini_cart_products {
	width: 17px;
	height: 17px;
	background: #00B0EC;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: -10px;
}
header .mini_cart_toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
header .mini_cart_icon {
	width: 30px;
	height: 30px;
	display: block;
	background: url('../images/icon_mini_cart.svg') 50% no-repeat;
	position: relative;
}
header .mini_cart p {
	font-size: 13px;
	font-weight: 400;
	color: #595959;
	display: block;
	margin-top: 5px;
}

section.banner {
	min-height: 530px;
	background-color: #e8e8e8;
	position: relative;
	overflow: hidden;
}
section.banner.banner_home {
	min-height: 630px;
}
section.banner .container {
	padding: 100px 0;
	min-height: 100%;
}
section.banner.smaller {
	min-height: 400px;
}
section.banner.smaller .container {
	min-height: 400px;
}
section.banner.smaller h1 {
	width: 100%;
}
section.banner.smaller .banner_content {
	bottom: 60px;
}
section.banner .bx-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
}
section.banner .bx-wrapper li:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	position: absolute;
	z-index: 9;
}
section.banner .bx-viewport {
	background: none;
	box-shadow: none;
}
section.banner .container {
	position: relative;
}
section.banner .banner_content {
	position: absolute;
	z-index: 10;
}
section.banner h1 {
	width: 65%;
	display: block;
	font-size: 64px;
	font-weight: 600;
	color: white;
}
section.banner h2 {
	font-size: 64px;
	font-weight: 600;
	color: #00B0EC;
	display: block;
	margin-bottom: 50px;
}
sidebar.banner .btn {

}

main {
	position: relative;
	padding: 80px 0;
}
main .content {
	width: calc(100% - 360px);
}
main .article {
	position: relative;
}
main .article .margin_top {
	margin-top: 35px;
}
main .article h1 {
	font-size: 48px;
	font-weight: 600;
	line-height: 63px;
}
main .article_body p {
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #212121;
}
main .article_body table {
	margin: 30px 0;
}
main .article_body .zagolovok {
	margin-top: 25px;
}
main .article_body a {
	color: #212121;
	font-size: 16px;
}
main .article p.welcome {
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	color: #595959;
	margin-top: 25px;
}
.sidebar {
	width: 330px;
	border-radius: 4px;
	border: 1px dashed #DBDBDB;
	padding: 16px;
}
.sidebar .moduletable_menu h3 {
	font-size: 20px;
	font-weight: 700;
	color: #212121;
	display: block;
	margin-bottom: 20px;
}
.sidebar ul {
	list-style: none;
	margin: 8px 0;
}
.sidebar ul.menu li ul {
	margin: 0 0 0 5px;
}
.sidebar ul.menu li a {
	font-size: 16px;
	color: #212121;
	text-decoration: none;
	font-weight: 300;
}
.sidebar ul.menu li > a {
	font-weight: 700;
	color: #212121;
	margin: 15px 0;
	display: block;
	padding-left: 22px;
	position: relative;
}
.sidebar ul.menu li > a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: auto;
}
.sidebar ul.menu li ul li > a, .top_nav ul.menu li ul li > a{
	font-weight: 300;
	background: url('../images/icon_arrow_menu.svg') 0 50% no-repeat;
}

.top_nav .parent {
	margin: 10px 0;
}

.top_nav .parent>a {
	padding-left: 0;
	font-weight: 700;
}
.top_nav .menu > li > ul > li > a {
	padding-left: 23px;
}

.sidebar ul.menu li ul li > a span {
	margin: 0;
}
.sidebar ul.menu a span {
	margin-left: 5px;
}
ul.bxslider img, ul.bxslider_home img {
	height: 530px !important;
	width: 100%;
	object-fit: cover;
}
ul.bxslider_home img {
	height: 630px !important;
}
ul.bxslider, ul.bxslider_home {
	height: 100%;
}
.bx-viewport {
	height: 100%;
}
ul.bxslider li, ul.bxslider_home li {
	height: 100%;
}

.categories {
	position: relative;
	margin: 20px 0;
}
.categories_items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
.category_item {
	min-height: 300px;
	background: #f3f3f3;
	padding: 24px;
	text-decoration: none;
	color: #212121;
	position: relative;
}
.category_image {
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
}
.category_title {
	font-size: 500;
	font-size: 26px;
	line-height: 36px;
}
.category_total {
	display: block;
	margin-top: 5px;
	font-size: 16px !important;
	color: #595959 !important;
}

.product {
	position: relative;
}
.product_top {
	display: flex;
	justify-content: space-between;
}
.product_image {
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product_img {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.product_right {
	width: 55%;
}
.product_right h1 {
	font-size: 24px;
	font-weight: 600;
	line-height: 31px;
	display: block;
	margin-bottom: 30px;
}
.product_price {
	display: flex;
	flex-direction: column;
}
.product_price h2 {
	font-size: 32px;
	font-weight: 600;
	color: #00B0EC;
	display: block;
	margin-bottom: 5px;
}
.product_price h2 + p {
	font-size: 14px;
	font-weight: 300;
	color: #595959;
	margin: 0;
}
.product_atc {
	margin-top: 25px;
}
.product_atc * {
	float: none !important;
}
.vmCartContainer {
	width: auto !important;
	background: none;
}
.product_item_footer {
	background: white;
	padding: 15px;
}
.product_item_footer .product_item_qty form {
	display: flex;
	justify-content: space-between;
}
.quantity_box_button {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #E4F8FF;
	border-radius: 10px !important;
	background-position: 50%;
	background-repeat: no-repeat;
	border: none !important;
	cursor: pointer;
}
.quantity_box_button.quantity_box_button_down {
	background: #E4F8FF url('data:image/svg+xml,<svg width="16" height="2" viewBox="0 0 16 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1H15" stroke="%2300B0EC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') 50% no-repeat;
}
.quantity_box_button.quantity_box_button_up {
	background: #E4F8FF url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 1V15M1 8H15" stroke="%2300B0EC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') 50% no-repeat;
}
.inputboxquantity {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #212121;
	background: none;
	border: none;
}
.vmCartContainer input[type=submit], .product_item_footer input[type=submit] {
	width: auto !important;
	height: 55px;
	border: none;
	background: #00B0EC;
	color: white;
	border-radius: 100px;
	padding: 0 25px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
}
.vmCartDetails + div {
	width: 55%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product_description {
	margin-top: 45px;
}
.product_description * {
	font-size: 14px !important;
	line-height: 21px !important;
	color: #212121 !important;
}
.product_description ul {
	margin: 10px 15px;
}
.product_description #content {
	margin: 30px 0;
}
.product_description #content tr {
	
}
.product_description #content td {
	padding: 12px 0 3px 0;
	border-bottom: 1px solid #ddd;
}
.product_description #content tr td {
	text-align: right !important;
	font-weight: 500 !important;
}
.product_description #content tr td:first-child {
	text-align: left !important;
	font-weight: 400 !important;
}

.product ul.breadcrumbs {
	display: none !important;
}
.breadcrumbs {
	list-style: none;
	display: flex;
}
.breadcrumbs a {
	color: #212121;
	opacity: .5;
	font-size: 14px;
	font-weight: 300;
	text-decoration: none;
}
.breadcrumbs li {
	display: flex;
	align-items: center;
	color: #212121;
	font-size: 14px;
}
.breadcrumbs li:after {
	content: '/';
	display: block;
	padding: 0 5px;
	font-size: 14px;
	color: #212121;
	opacity: .5;
}
.breadcrumbs li.current:after {
	display: none;
}
main div.breadcrumbs {
	position: absolute;
	top: 30px;
}

footer {
	background: #212121;
	padding: 30px 0;
}
footer .logo_container {
	width: 300px;
}
footer .logo_container .copy {
	color: white;
	opacity: .5;
	font-size: 12px;
	display: block;
	margin-top: 60px;
}
footer .footer_nav .gray_text {
	width: 60%;
	font-size: 14px;
}
footer .footer_nav .gray_text p {
	font-size: 14px;
	opacity: .5;
	color: white;
	line-height: 21px;
}
.footer_contacts {
	width: 325px;
}
.footer_phone {
	border: 1px solid #4d4d4d;
	border-radius: 6px;
	padding: 20px;
	color: white;
	text-decoration: none;
}
.footer_phone a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}
.footer_phone p {
	font-size: 14px;
	line-height: 21px;
	display: block;
	margin-top: 5px;
}
.footer_phone p a {
	font-size: 14px;
	font-weight: 300;
	text-decoration: underline;
}
#mob_menu {
	display: none;
}


	.search_mobile {

		display: none;
	}

    .levoe_menu {

		display: none;
	}


@media (max-width: 700px) {

	section.banner .container {
		padding: 45px 0;
	}
	section.banner.banner_home {
		max-height: 420px;
		min-height: 420px;
	}
	header .logo_container img {
		height: 48px;
		width: auto;
	}
	.mini_cart {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	#mob_menu {
		display: flex;
		flex-direction: column;
		position: relative;
		width: 30px;
		height: 18px;
		border: none;
		outline: none;
		background: none;
		margin-left: 25px;
	}
	#mob_menu span:last-child {
		top: auto;
		bottom: 0;
	}
	#mob_menu span:first-child {
		top: 0;
	}
	#mob_menu span {
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        top: calc(50% - 1px);
        left: 0px;
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;		
	}

	.top_nav {
		/*width: 100vw;
		height: 100vh;
		position: fixed;
		top: 76px;
		right: -150vw;
		z-index: 999;
		background: rgba(255, 255, 255, .7);
		backdrop-filter: blur(10px);*/
		width: 100vw;
		bottom: 0;
		position: fixed;
		top: 76px;
		right: -150vw;
		z-index: 999;
		background: rgba(255, 255, 255, .7);
		backdrop-filter: blur(10px);
		overflow: scroll;
		overscroll-behavior: contain;
	}
	.top_nav .container {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.top_nav_right {
		margin-top: 25px;
		
		align-items: flex-end;
	}
	.top_nav_phone a {
		color: #333;
		font-size: 16px;
		display: flex;
	}


	
	
	.search_mobile {
		margin-top: 25px;
		color: #333;
		font-size: 16px;
		display: flex;
	}

	
	
	
	.main_nav, .levoe_menu {
		width: 100%;
	}
	.main_nav a, .levoe_menu a {
		color: #333;
		font-size: 16px;
	}
	.main_nav ul, .levoe_menu ul{
		align-items: flex-end;
		flex-direction: column;
	}
	.main_nav ul li, .levoe_menu ul li{
		padding: 10px 0;

	}
	.header_left h2 {
		display: none;
	}
	.header .search {
		display: none;
	}
	
	
	section.banner h1 {
		width: 100%;
		font-size: 34px;
		text-align: center;
	}
	section.banner h2 {
		width: 100%;
		font-size: 34px;
		text-align: center;
	}
	section.banner .banner_content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0 30px;
	}
	
	
	
	/*.sidebar {
		display: none;
	}*/
	
	
	
   .levoe_menu {

		display: flex;
	}
	
	
	
	
	
	main {
		padding: 15px 0;
	}
	main .content {
		width: 100%;
	}
	main .article h1 {
		font-size: 24px;
		line-height: 31px;
		display: block;
		margin-bottom: 25px;
	}
	#product_list {
		grid-template-columns: 1fr;
	}
	footer .container {
		display: flex;
		flex-direction: column;
	}
	footer .logo_container {
		text-align: center;
		width: 100%;
order: -1;
	}
	footer .logo_container .copy {
		display: none;
	}
	/*.footer_nav {
		display: none;
	}*/
	.footer_contacts {
		width: 100%;
		margin: 30px 0;
order:-1;
	}
footer .footer_nav .gray_text{
width:100%;
text-align: center;
}

	.footer_phone {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
	.footer_phone a {
		display: flex;
		align-items: center;
		text-align: center;
		justify-content: center;
	}
	.footer_phone p a {
		display: inline !important;
		text-decoration: none;
	}
	.categories_items {
		grid-template-columns: 1fr;
	}
	main div.breadcrumbs {
		display: none;
	}
	#vmMainPage h1 {
		font-size: 24px;
		line-height: 31px;
	}
	.product_image, .product_right {
		width: 100%;
	}
	.product_top {
		flex-direction: column;
	}
	.product_right h1 {
		font-size: 24px;
		line-height: 31px;
		margin-bottom: 15px;
	}
	.product_atc {
		margin-top: 15px;
	}
	.atc_controls {
		margin-right: 15px;
	}
	.onep {
		margin-top: 15px;
	}
	.product_img {
		width: 100%;
		height: 100vw;
	}
	header .mini_cart p {
		display: none;
	}

}

.footer_nav-menu table td{
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.footer_nav-menu a {
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


.menu-link-active a {
	color: #00B0EC!important;
}


.sidebar_catalog {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


@media screen and (max-width: 1024px) {
.sidebar_catalog {
position: absolute;
z-index: 10;
left: calc(-100% - 15px);
top: -60px;
width: 100%;
background: #fff;
}


}

.sidebar_catalog._active {
left: 0;
-webkit-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}

.top_nav .levoe_menu {
	margin-top:20px;
}