	*,
	*::before,
	*::after {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	  /*font-family: sans-serif;*/
	  font-size: 100%;
	  text-decoration: none;
	  list-style: none;
	  border: none;
	}

	a {
	  text-decoration: none;
	  color: inherit;
	}

	h1, h2, h3, h4, h5, h6 {
	  font-weight: normal;
	  margin: 0;
	  padding: 0;
	}

	table {
	  border-collapse: collapse;
	  width: 100%;
	}

	ul, ol {
	  padding: 0;
	  list-style: none;
	}

	input, textarea, button, select {
	  border: none;
	  outline: none;
	  background: none;
	  font-family: inherit;
	  font-size: inherit;
	  color: inherit;
	}

	.container {
	  margin: 0 auto;
	  padding: 0;
	  width: 100%;
	}

	/*img {
	  max-width: 100%;
	  height: auto;
	  display: block;
	}

	.newOBLockItem img {
	  max-width: none;
	  height: auto;
	  width: auto;
	  display: unset;
	}*/

	.grid-main img{
		max-width: 100%;
	  display: block;
	}

	input[type="text"], input[type="password"], input[type="email"], textarea {
	  outline: none;
	  border: 1px solid #ccc;
	  padding: 5px;
	  width: 100%;
	}

	button {
	  background: none;
	  border: none;
	  padding: 0;
	  cursor: pointer;
	  font-family: inherit;
	  font-size: inherit;
	}

/*	svg {
	  fill: currentColor;
	}*/

	.flex, .grid {
	  display: flex;
	  display: grid;
	  gap: 0;
	}

	div {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	}

	* {
		font: unset;
	}

	.container-main {
	  max-width: 1170px;
	  margin: 0 auto;
	  box-sizing: border-box;
	  width: 100%;
	}

	.grid-main {
	  display: grid;
	  grid-template-columns: repeat(12, 1fr);
	  gap: 20px;
	  width: 100%;
	  margin: 0 auto;
	  box-sizing: border-box; /* Учитываем padding в общей ширине */
	  position: relative;
	}

	.grid-main div {
	  box-sizing: border-box;
	  box-sizing: border-box;
	}

	/* Колонки */
	.grid-main-1 {
	  grid-column: span 1;
	}

	.grid-main-2 {
	  grid-column: span 2;
	}

	.grid-main-3 {
	  grid-column: span 3;
	}

	.grid-main-4 {
	  grid-column: span 4;
	}

	.grid-main-5 {
	  grid-column: span 5;
	}

	.grid-main-6 {
	  grid-column: span 6;
	}

	.grid-main-7 {
	  grid-column: span 7;
	}

	.grid-main-8 {
	  grid-column: span 8;
	}

	.grid-main-9 {
	  grid-column: span 9;
	}

	.grid-main-10 {
	  grid-column: span 10;
	}

	.grid-main-11 {
	  grid-column: span 11;
	}

	.grid-main-12 {
	  grid-column: span 12;
	}

	@media (max-width: 768px) {
	  .grid-main {
	    grid-template-columns: repeat(4, 1fr); /* 4 колонки на мобильных */
	    gap: 15px;
	  }

	  .grid-main-1 {
	    grid-column: span 1;
	  }

	  .grid-main-2 {
	    grid-column: span 1;
	  }

	  .grid-main-3 {
	    grid-column: span 1;
	  }

	  .grid-main-4 {
	    grid-column: span 1;
	  }

	  .grid-main-5 {
	    grid-column: span 1;
	  }

	  .grid-main-6 {
	    grid-column: span 1;
	  }

	  .grid-main-7 {
	    grid-column: span 1;
	  }

	  .grid-main-8 {
	    grid-column: span 1;
	  }

	  .grid-main-9 {
	    grid-column: span 1;
	  }

	  .grid-main-10 {
	    grid-column: span 1;
	  }

	  .grid-main-11 {
	    grid-column: span 1;
	  }

	  .grid-main-12 {
	    grid-column: span 1;
	  }

	  .grid-sm-1 {
	    grid-column: span 1;
	  }

	  .grid-sm-2 {
	    grid-column: span 2;
	  }

	  .grid-sm-3 {
	    grid-column: span 3;
	  }

	  .grid-sm-4 {
	    grid-column: span 4;
	  }

	  .grid-sm-5 {
	    grid-column: span 5;
	  }

	  .grid-sm-6 {
	    grid-column: span 6;
	  }

	  .grid-sm-7 {
	    grid-column: span 7;
	  }

	  .grid-sm-8 {
	    grid-column: span 8;
	  }

	  .grid-sm-9 {
	    grid-column: span 9;
	  }

	  .grid-sm-10 {
	    grid-column: span 10;
	  }

	  .grid-sm-11 {
	    grid-column: span 11;
	  }

	  .grid-sm-12 {
	    grid-column: span 12;
	  }
	  .hide-sm {
	    display: none;
	  }
	}
	@media (min-width: 768px) {
	  .hide-fd {
	    display: none;
	  }
	}


	@media (min-width: 576px) and (max-width: 767px) {
	  .hide-md {
	    display: none;
	  }
	}

	@media (min-width: 768px) and (max-width: 991px) {
	  .hide-lg {
	    display: none;
	  }
	}

	@media (min-width: 992px) and (max-width: 1199px) {
	  .hide-xl {
	    display: none;
	  }
	}

	@media (min-width: 1200px) {
	  .hide-xxl {
	    display: none;
	  }
	}

	body *{
	  font-family: 'LatoWeb';
	font-style: normal;
	}

	/* Title (Lato ExtraBold 24) */
	.title {
	  font-family: 'LatoWebBlack';
	  font-weight: 900;
	  font-size: 24px;
	}

	/* Subtitle (Lato Semibold 16) */
	.subtitle {
	  font-family: 'LatoWebSemibold';
	  font-weight: 600;
	  font-size: 16px;
	}

	/* Text (Lato Bold 16) */
	.text-bold {
	  font-family: 'LatoWebBold';
	  font-weight: 700;
	  font-size: 16px;
	}

	/* Text (Lato Regular 16) */
	.text-regular {
	  font-family: 'LatoWeb';
	  font-weight: 400;
	  font-size: 16px;
	}

	/* Zone buttons (Lato Regular 16) */
	.zone-buttons {
	  font-family: 'LatoWeb';
	  font-weight: 400;
	  font-size: 16px;
	}

	/* Return buttons, active zones (Lato Regular 14) */
	.return-buttons, .active-zones {
	  font-family: 'LatoWeb';
	  font-weight: 400;
	  font-size: 14px;
	}

	/* Active description (Lato Bold 13) */
	.active-description {
	  font-family: 'LatoWebBold';
	  font-weight: 700;
	  font-size: 13px;
	}

	/* Inactive description (Lato Regular 13) */
	.inactive-description {
	  font-family: 'LatoWeb';
	  font-weight: 400;
	  font-size: 13px;
	}

	/* Stickers (Lato Black, UPPERCASE 10) */
	.stickers1 {
	  font-family: 'LatoBlack';
	  font-weight: 900;
	  font-size: 10px;
	  text-transform: uppercase;
	}

	/* Positioning */
	.pr { position: relative; }
	.pa { position: absolute; }
	.f { position: fixed; }
	.s { position: sticky; }
	.st { position: static; }
	.inh { position: inherit; }





.boffer{
	width: 100%;
	height: 43px;
	font-family: "LatoWebHeavy", sans-serif;
	background: url('/local/templates/aspro_mshop_alti/images/Offer.png');
	text-align: center;
	font-size: 20px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: 100%;
}

.boffer div{
	width: 1170px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.boffer a:hover{
	color: #FFF;
	text-decoration: underline;
}

.boffer img{
	left: 0;
	position: absolute;
}

.boffer a{
	font-family: 'LatoWebHeavy';
	font-size: 20px;
}

.om_main_menu{
  display: flex;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  font-size: 14px;
  align-items: center;
  padding-top: 16px;
  flex-direction: row;
  padding-bottom: 16px;
}

.om_main_menu div{
	  padding: 8px 21px;
	  min-width: 127px;
	  background: #0A4952;
	  font-size: 12px;
	  text-transform: initial;
	  border-radius: 30px;
	  color: #FFFFFF;
	  text-align: center;
	  line-height: 14px;
}

.om_main_menu div:hover{
	  background: #04282D;
	  color: #FFFFFF;
}

.om_main_menu div a:hover{
	  background: #04282D;
	  color: #FFFFFF;
}

.om_icoemil{
  display: flex;
  flex-direction: row;
  padding-top: 25px;
  padding-left: 40px;
  align-items: center;
  justify-content: end;
}

.om_icons{
  display: flex;
  gap: 10px;
  /*width: 69px;*/
}

.om_icons img{
  width: 21px;
  height: 21px;
}

.om_email{
  font-family: 'LatoWebBlack';
  font-size: 18px;
  color: #0A4952;
  padding-left: 20px;
  display: flex;
  width: auto;
  word-break: keep-all;
  margin-left: 0px;
}

.om_email img{
  height: 21px;
  padding-right: 15px;
  display: none;
}

.om_main_nav{
  display: flex;
  width: 100%;
  align-items: center;
}

.om_logo{
  width: 180px;
}

.om_logo img{
	display: block;
  max-width: 100%;
  height: auto;
}

.om_catalog_button{
  font-size: 14px;
  color: #FFF;
  background: #0A4952;
  border-radius: 10px;
  padding: 11px 22px;
  height: 100%;
  margin-left: 20px;
  line-height: 17px;
}

.om_catalog_button:hover{
	  background: #04282D;
	  color: #FFFFFF;
}

.om_search_bar{
  margin-left: 7px;
  position: relative;
}

.om_search_bar input{
  height: 39px;
  width: 100%;
  padding: 12px 35px;
  font-size: 13px;
  color: #BEBEBE;
  border: 1px solid #BEBEBE;
  border-radius: 10px;
  padding-left: 35px;
  background: #fff;
  min-width: 647px;
}

.om_search_bar .button.icon{
	width: 17px;
	height: 17px;
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/icon leading.png');
	position: absolute;
  left: 11px;
  top: 11px;
  background-size: 100%;
  padding: 0px;
  margin: 0px;
  min-width: unset;
}

.om_user_actions{
	display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-left: 30px;
}

.om_user_actions a{
	display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
}

.om_user_actions a img{
	width: 25px;
  height: 25px;
}

.om_phone{
	display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
  padding-top: 11px;
  padding-bottom: 12px;
}

.om_phone div img{
	width: 24px;
  height: 24px;
}

.om_phone .om_tel{
	font-family: "LatoWebSemibold";
  font-size: 14px;
  color: #0A4952;
}

.om_phone p{
	font-size: 12px;
  color: #BEBEBE;
  font-family: 'LatoWebBold';
  margin: 0px;
}

.om_phone a{
	font-family: 'LatoWebHeavy';
  font-size: 14px;
  color: #0A4952;
}

.om_bottom_nav{
	display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 10px;
}

.om_bottom_nav a{
	font-family: 'LatoWebBold';
  font-size: 15px;
  color: #2B2C28;
}

.om_banner{
	padding-top: 40px;
}

.triple-slider {
    width: 100%;
    max-width: 100%; /* Настройка ширины */
    overflow: hidden;
    position: relative;
}

.swiper {
    width: 100%;
    padding: 40px 0; /* Добавляем немного отступа */
}

.swiper-slide { 
    /*height: 337px !important;*/
    transition: all 0.5s ease;
    filter: grayscale(100%); /* Чёрно-белый эффект */
    display: flex !important;
    align-self: center;
    position: relative;
    width: auto;
    max-height: 300px;
}

.swiper-slide img {
    height: 100%;
    width: auto;
}

.swiper-slide a img {
    height: auto;
    width: 100%;
    max-height: 633px;
}

.swiper-slide-prev{
	justify-content: end;
}

.swiper-slide-prev a{
	justify-content: end;
	display: flex;
}


.swiper-slide-prev img {
    max-width: 781.8px !important;;
}


/*.swiper-slide-next{
	justify-content: start;
	width: 781.8px !important;
}*/

.swiper-slide-next a{
	justify-content: start;
	display: flex;
}

.swiper-slide-next  img {
    max-width: 781.8px !important;;
}


.swiper-slide-active {
    /*width: 962px !important;*/ /* Центральный слайд больше */
    /*height: 369px !important;*/
    opacity: 1;
    filter: grayscale(0%); /* Цветной центральный слайд */
    max-height: 400px !important;
}

.om_main_blue_banner__right{
	position: absolute;
  top: 30px;
  right: 25px;
  background: #fff;
  border-radius: 15px;
  padding: 15px 25px;
  max-width: 253px;
  padding-top: 10px;
}

@media screen and (max-width: 1600px){
	.swiper-slide { 
	    /*height: 337px !important;*/
	    transition: all 0.5s ease;
	    filter: grayscale(100%); /* Чёрно-белый эффект */
	    display: flex !important;
	    align-self: center;
	    position: relative;
	    max-height: 200px;
	}

	.swiper-slide-active {
	    /*width: 962px !important;*/ /* Центральный слайд больше */
	    /*height: 369px !important;*/
	    opacity: 1;
	    filter: grayscale(0%); /* Цветной центральный слайд */
	    max-height: 400px !important;
	}
}

@media screen and (max-width: 1600px){
	.scwdob .swiper-slide { 
	    /*height: 337px !important;*/
	    transition: all 0.5s ease;
	    filter: unset; /* Чёрно-белый эффект */
	    display: flex !important;
	    align-self: center;
	    position: relative;
	    max-height: unset;
	}

	.scwdob .swiper-slide-active {
	    /*width: 962px !important;*/ /* Центральный слайд больше */
	    /*height: 369px !important;*/
	    opacity: 1;
	    filter: unset; /* Цветной центральный слайд */
	    max-height: unset !important;
	}
}

	.scwdob .swiper-slide { 
	    /*height: 337px !important;*/
	    transition: all 0.5s ease;
	    filter: unset; /* Чёрно-белый эффект */
	}

	.scwdob .swiper-slide-active {
	    /*width: 962px !important;*/ /* Центральный слайд больше */
	    /*height: 369px !important;*/
	    opacity: 1;
	    filter: unset; /* Цветной центральный слайд */
	}

.om_form_inline_KP{
	display: flex;
  flex-direction: column;
  align-items: center;
}

.om_form_inline_KP img{
	height: 120px;
}

.om_form_head h4{
	font-family: 'LatoWebBold';
  font-size: 12.12px;
  color: #2B2C28;
  text-align: center;
  line-height: 14px;
}

.om_form_body{
	display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 0px;
  gap: 4px;
}

.om_form_control input{
	font-family: 'LatoWebBold';
  font-size: 9px;
  color: #2B2C28;
  padding: 5px 6px;
  border: #2B2C28 solid 0.35px;
  border-radius: 10px;
  background: #fff;
}

.om_form_control input::placeholder{
	font-family: 'LatoWebBold';
  font-size: 9px;
  color: #2B2C28;
  padding: 8px;
  border: #2B2C28 solid 0.35px;
  border-radius: 10px;
  background: #fff;
}

.om_button_medium{
	font-family: 'LatoWebHeavy';
  font-size: 10px;
  color: #FFF;
  padding: 4px;
  background: #1C5D67;
  border-radius: 9px;
  width: 100%;
}

.om_button_medium:hover{
  background: #04282D;
  color: #FFFFFF;
}

.om_form_footer p{
	font-family: 'LatoWebBold';
  font-size: 7.74px;
  color: #505A63;
  text-align: center;
  margin: 0px;
  line-height: 8px;
  padding-top: 5px;
}

.om_h3{
	font-family: 'LatoWebBold';
	font-size: 25px;
	color: #2B2C28;
	line-height: 30px;
	padding-top: 30px;
}

.top-h-row{
	background: #FFFFFF;
}

#footer {
  background: #0e4951 !important;
  margin-top: 0;
}

a.scroll-to-top.ROUND_COLOR, a.scroll-to-top.RECT_COLOR {
  background-color: #0e4951 !important;
}

.city-btn {
  background-color: #2c5c62 !important;
}

.om_bloc6{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.om_bloc6 a{
	font-family: 'LatoWebSemibold';
	font-size: 25px;
	line-height: 30px;
	color: #FFFFFF;
}

.om_bloc6 .om_b1{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page1.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.om_bloc6 .om_b2{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page2.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.om_bloc6 .om_b3{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page3.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.om_bloc6 .om_b4{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page4.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.om_bloc6 .om_b5{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page5.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.om_bloc6 .om_b6{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page6.png');
	width: 370px;
  height: 210px;
  padding: 5px 20px;
}

.brands_slider_wrapp{
  padding: 40px;
  padding-bottom: 0px;
}

.brands_slider_wrapp ul.brands_slider li a {
  margin: 0;
  display: flex;
  justify-content: center;
}

.brands_slider_wrapp .brands_slider li{
  display: flex !important;
  justify-content: center;
}

.brands_slider_wrapp .brands_slider li img {
  height: 39px;
  width: 100%;
  object-fit: contain;
}

.flex-direction-nav li a, .flex-direction-nav li span {
  background: url(/local/templates/aspro_mshop_alti/images/kartinka/arrow-circle-left.png) 0 0 no-repeat;
    background-position-x: 0px;
    background-position-y: 0px;
}

.om_brands_slider_navigation{
	position: absolute;
  z-index: 99;
  width: 100%;
  top: 75%;
}

.om_custom_prev{
	left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.om_custom_next{
	right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.om_brands_slider_navigation.flex-disabled{
	/*display: none;*/
}

.similar_products_wrapp .om_brands_slider_navigation{
  top: 50%;
}

.specials_slider > li, .tabs_slider li, .wrapper_block .wr li {
  width: 213px !important;
  padding: 0px;
  opacity: 0;
  /*min-height: 350px;*/
  background: #FFFFFF !important;
  box-shadow: 0 0 4px rgba(0,0,0,0.125);
	border-radius: 20px;
}

.similar_products_wrapp .content_inner.tab{
	padding: 0px 20px;
}

.similar_products_wrapp .tabs_slider{
	padding-bottom: 40px;
}

.image_wrapper_block{
	max-width: unset;
	max-height: unset;
	padding: 15px;
	height: 100%;
	padding-bottom: 0px;
}

.specials_slider > li:hover, .tabs_slider li:hover, .wrapper_block .wr li:hover, .specials_slider > li.hover, .tabs_slider li.hover, .wrapper_block .wr li.hover {
  padding: 0px;
}

.flex-viewport .wr li:hover, .flex-viewport .wr li.hover {
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.om_elem .om_item_title a{
	font-family: 'LatoWebBold';
	font-size: 14px;
	color: #2B2C28;
	line-height: 20px;
	padding: 5px 10px;
	width: 100%;
  display: block;
}

.om_item_info{
	background: #FFFFFF;
	padding: 5px 10px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.125);
  border-radius: 0px 0px 20px 20px;
  padding-top: 0px;
}

ul.menu .child, .breadcrumbs .dropdown_wrapp,
ul.menu .child a{
	font-family: 'LatoWeb';
	font-weight: normal !important;
}

.menu_item_l1 .wrapper_inner {
  padding: 0px;
  margin: 0px;
}

.om_price span{
	font-family: 'LatoWebBold';
	font-size: 14px !important;
	color: #0A4952 !important;
	line-height: 20px;
}

.om_button_block span{
	width: 0;
	height: 0;
	font-size: 0px;
}

.om_button_block span.small.to-cart.button{
	width: 61px;
  height: 61px;
	background: url(/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page.png);
	font-size: 0px;
	padding: 0 !important;
  z-index: 999;
  position: absolute;
  right: 5px;
  background-size: 100%;
  top: 10px;
}

.om_button_block span.small.to-cart.button:hover{
	background: url(/local/templates/aspro_mshop_alti/images/kartinka/Card_main_pageh.png);
	background-size: 100%;
}

.om_button_block a.small.in-cart.button{
	width: 61px;
  height: 61px;
	background: url(/local/templates/aspro_mshop_alti/images/kartinka/Card_main_page.png);
	font-size: 0px;
	padding: 0 !important;
  z-index: 999;
  position: absolute;
  right: 5px;
  background-size: 100%;
  top: 10px;
}

.om_button_block a.small.in-cart.button:hover{
	background: url(/local/templates/aspro_mshop_alti/images/kartinka/Card_main_pageh.png);
	background-size: 100%;
}

.om_prf{
	display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.om_prf .cost.prices .price_value{
	font-family: 'LatoWebBold';
	font-size: 14px !important;
	color: #0A4952 !important;
	line-height: 20px;
	font-weight: 600;
}

.om_prf .like_icons span {
  opacity: 1;
  visibility: visible;
}

.like_icons img{
	height: 22px;
  width: 22px;
}

.om_prf span.wish_item.added{
	background: transparent;
}

.om_prf span:hover {
  cursor: pointer;
  background: transparent;
}

.om_buttons_bloc{
	position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  left: 0;
}

.om_block_a{
	background: #F5F5F5;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

.om_block_a img{
	height: 23px;
  margin-bottom: 20px;
  padding: 0;
}

.om_bt img{
	padding-bottom: 20px;
	margin: 0px;
}

.om_g{
	font-family: 'LatoWebLight';
  font-size: 13px;
  color: #2B2C28;
  margin: 0px;
}

.om_b{
	font-family: 'LatoWebBold';
  font-size: 18px;
  color: #2B2C28;
  margin: 0px;
  margin-bottom: 10px;
}

.om_bt{
	display: flex;
  justify-content: end;
}

.om_bt a{
	display: flex;
  justify-content: end;
  background: #0A4952;
  border-radius: 12px;
  color: #FFF;
  padding: 12px 20px;
  font-size: 18px;
  align-items: center;
}

.om_bt a:hover{
  background: #04282D;
  color: #FFFFFF;
}

.om_bt a img{
	padding: 0px;
  margin-left: 10px;
  width: 16px;
  height: 15px;
}

.om_bl_na{
	position: relative;
}

.om_bl_na .brands_slider_wrapp{
	padding: 0px;
	width: calc(100% - 94px);
  margin: 0 auto;
}

.om_bl_na .brands_slider3{
	gap: 20px;
  display: flex;
}

.om_bl_na .brands_slider_wrapp .brands_slider li img {
  -webkit-transition: all ease-out 0.2s;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  filter: unset;
  filter: unset;
  -webkit-filter: unset;
  max-width: 71px;
}

.om_bl_na .brands_slider_wrapp .brands_slider li img {
  height: 71px;
  width: 100%;
  object-fit: contain;
}

.om_bl_na .brands_slider_wrapp .brands_slider li p {
  font-family: 'LatoWebSemibold';
  font-size: 12px;
  color: #0A4952;
  padding-left: 10px;
  margin: 0px;
}

.om_bl_na .brands_slider_wrapp .brands_slider li {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.om_bl_na .brands_slider_wrapp .flex-viewport {
  height: auto;
  overflow: hidden;
}

.om_h4{
	font-family: 'LatoWebBold';
	font-size: 18px;
	color: #2B2C28;
	line-height: 22px;
	padding-top: 15px;
}

.om_bloc6 div{
	font-family: 'LatoWebSemibold';
	font-size: 22px;
	line-height: 26px;
	color: #FFFFFF;
}

.om_bf .om_bt {
  display: flex;
  justify-content: start;
  position: absolute;
  bottom: 0;
  padding-bottom: 15px;
}

.om_bf a{
  display: flex;
  justify-content: end;
  background: #FFF;
  border-radius: 12px;
  color: #2B2C28;
  padding: 10px 20px;
  font-size: 18px;
  align-items: center;
  line-height: 22px;
}

.om_bf a:hover{
  background: #F5F5F5;
  color: #2B2C28;
}

.om_h5{
  font-size: 18px;
  line-height: 22px;
}

.om_vi{
	width: 100%;
  height: 300px;
  max-width: 491px;
  background: #F5F5F5;
  border-radius: 20px;
  overflow: hidden;
}

.om_ti{
	font-family: 'LatoWebBold';
  font-size: 18px;
  line-height: 22px;
  color: #2B2C28;
  margin: 0;
  padding-bottom: 5px;
}

.om_tex{
	font-size: 16px;
  line-height: 19px;
  color: #2B2C28;
  margin: 0px;
}

.om_btf a{
	font-size: 16px;
  color: #2B2C28;
  display: flex;
  align-items: center;
  justify-content: end;
}

.om_btf a img{
	padding-left: 10px;
}

.om_bff{
	padding-top: 30px;
}

.om_bloc6.om_bff .om_b1{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_offer1.png');
	width: 370px;
  height: 304px;
  padding: 20px 28px;
  border-radius: 20px;
  position: relative;
  background-position: center center;
  background-size: contain;
}

.om_bloc6.om_bff .om_b2{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_offer2.png');
	width: 370px;
  height: 304px;
  padding: 20px 28px;
  border-radius: 20px;
  position: relative;
  background-position: center center;
  background-size: contain;
}

.om_bloc6.om_bff .om_b3{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_offer3.png');
	width: 370px;
  height: 304px;
  padding: 20px 28px;
  border-radius: 20px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-size: contain;
}

.om_bff p{
	font-family: 'LatoWebSemibold';
	font-size: 22px;
	line-height: 26px;
	color: #FFFFFF;
}

.om_bff .om_bte1{
	position: absolute;
  bottom: 10px;
  display: flex;
  flex-direction: column;
}

.om_bff .om_bt {
  display: flex;
  justify-content: start;
  padding-bottom: 15px;
  position: unset;
}

.wrapper{
	padding-bottom: 0px;
}

.mtd {
  margin-top: -80px;
}

#footer .footer_inner .line, #header .basket_fly .opener .basket_count, .page_not_found td.image img {
  background: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .basket_fly .opener .basket_count, #header .basket_fly .opener .wish_count {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header{
	padding: 0;
  margin: 0;
  height: 0px;
}

#header .basket_count .wraps_icon_block.delay{
	margin-right: 15px;
}

.basket_wrapp .wraps_icon_block.basket .count span{
	background: #0A4952;
}

.basket_wrapp .wraps_icon_block.delay{
	margin-right: 15px;
}

        .om_menu {
        		display: none;
            position: absolute;
					  top: 70px;
					  left: 0;
					  width: auto;
					  height: auto;
					  background: #333;
					  transform: translateX(-100%);
					  transition: transform 0.3s ease-in-out;
					  padding: 15px;
					  margin: 0px 30px;
					  background: #fff !important;
					  border-radius: 12px;
					  border: 1px solid #BEBEBE;
        }
        .om_menu a {
					  font-family: 'LatoWebBold';
					  font-size: 14px;
					  line-height: 16px;
					  color: #2B2C28;
        }
        .om_menu a:hover {
            color: #0A4952;
        }
        .om_menu.open {
        		display: flex;
            transform: translateX(0);
            flex-direction: column;
  					gap: 15px;
        }
        .om_burger {
            position: fixed;
            top: 15px;
            left: 15px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1000;
        }
        .om_burger div {
            width: 100%;
            height: 4px;
            background: #fff;
            margin: 6px 0;
            transition: 0.3s;
        }
        .om_burger.active div:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        .om_burger.active div:nth-child(2) {
            opacity: 0;
        }
        .om_burger.active div:nth-child(3) {
            transform: translateY(-13px) rotate(-45deg);
        }
        .om_overlay.show {
            opacity: 1;
            visibility: visible;
        }

.om_bloc6.om_bb .om_b1{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/background.png');
	width: 370px;
  height: 195px;
  padding: 15px 15px;
  background-size: 100%;
}

.om_bloc6.om_bb .om_b2{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/background2.png');
	width: 370px;
  height: 195px;
  padding: 15px 15px;
  background-size: 100%;
}

.om_bloc6.om_bb .om_b3{
	background: url('/local/templates/aspro_mshop_alti/images/kartinka/background3.png');
	width: 370px;
  height: 195px;
  padding: 15px 15px;
  background-size: 100%;
}

.item-title span{
	font-family: 'LatoWebBold';
  font-size: 14px;
  line-height: 17px;
}

.item-title span span{
	color: #0A4952;
}

.om_stickers{
	padding: 10px 15px;
  display: flex;
  gap: 5px;
}

.om_sticker{
	font-family: 'LatoWebBlack';
  font-size: 10px;
  line-height: 12px;
  color: #FFF;
  padding: 5px;
  background: #0A4952;
  border-radius: 7px;
  text-transform: uppercase;
}


.om_sticker.rf{
  background: #B30F32;
}


.om_sticker.hit{
  background: #D3CC0E;
}

.om_sticker.stock{
	background: #09B046;
}

@media screen and (max-width: 768px){
	.om_icoemil {
  	flex-direction: column;
  }
  .om_icons img {
	  width: 25px;
	  height: 25px;
	}
	.om_email {
	  font-size: 14px;
	  padding-top: 5px;
	  padding-left: 0px;
	}
	.om_phone .om_tel {
	  font-size: 14px;
	}
	.om_phone {
	  flex-direction: column;
	  padding-top: 30px;
	  margin: 0px;
    align-items: start;
	}
	.om_phone a {
	  font-size: 14px;
	}
	.om_main_menu {
	  gap: 0;
	  font-size: 14px;
	  padding-top: 5px;
	}
	.om_main_menu div {
	  padding: 8px 11px;
	  min-width: 140px;
	  font-size: 14px;
	}
	.om_main_nav {
	  padding-top: 15px;
	  margin: 0px 30px;
	  width: auto;
	}
	.om_logo {
  	width: 120px;
  }
	.om_user_actions {
	  margin-left: 0;
	  justify-content: end;
	  height: 100%;
	}
  body span.close-block.inline-search-hide {
    display: none;
  }
  .om_search_bar {
	  margin-left: 30px;
	  padding-top: 15px;
	}
	.om_search_bar .form-control1.bg{
		position: relative;
	}
	.om_search_bar input {
	  height: 40px;
	  width: 100%;
	  padding: 0px 45px;
	  min-width: unset;
	}
	.om_search_bar .button.icon {
	  top: 50%;
	  transform: translateY(-50%);
	}
	.om_burger {
	  position: relative;
    height: auto;
    align-content: center;
    width: auto;
    display: flex;
    flex-direction: column;
    margin-right: 30px !important;
    padding-top: 25px;
    align-items: end;
    gap: 5px;
    top: unset;
    left: unset;
	}
	.om_burger div {
	  width: 25px;
    height: 4px;
    border-radius: 5px;
    background: #2B2C28;
    display: block;
    margin: 0;
	}
	.om_banner {
	  padding-top: 25px;
    display: flex;
    justify-content: center;
    margin: 0px 30px;
	}
	.om_banner img{
	  width: 100%;
	}
	.om_menu {
	  background: #0A4952;
	  z-index: 999;
	}
	.om_overlay {
	  z-index: 9;
	}
	.om_burger.active div:nth-child(1) {
	  transform: translateY(5px) rotate(45deg);
	}
	.om_bloc6 {
	  display: flex;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 15px;
	  width: auto;
	  padding-top: 30px;
	  flex-direction: row;
	  margin: 0px 30px;
	  flex-wrap: wrap;
	}
	.om_bloc6 a{
	  width: calc(50% - 7.5px) !important;
	  height: auto !important;
	  padding: 10px !important;
	  display: block;
	  background-size: cover !important;
	  border-radius: 20px;
	  font-size: 13px;
  	line-height: 16px;
	  min-height: 88px;
	}
	.brands_slider_wrapp{
		margin: 0px 30px;
	}
	.om_brands_slider_navigation{
		margin: 0px 30px;
		width: auto;
    position: relative;
    top: unset;
	}
	.om_custom_prev{
		display: none;
	}
	.om_custom_next{
		display: none;
	}
  body .flex-control-paging li a.flex-active, body .flex-control-paging li:hover a:not(.touch) {
    background: #0a4952;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYWFlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDhmYzciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,#0a4952 0%,#0a4952 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#0a4952),color-stop(100%,#0a4952));
    background: -webkit-linear-gradient(top,#0a4952 0%,#0a4952 100%);
    background: -o-linear-gradient(top,#0a4952 0%,#0a4952 100%);
    background: -ms-linear-gradient(top,#0a4952 0%,#0a4952 100%);
    background: linear-gradient(to bottom,#0a4952 0%,#0a4952 100%);
    background-position-x: 0%;
    background-position-y: 0%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@bcolor_00aae2',endColorstr='@bcolor_008fc7',GradientType=0);
  }
  body .flex-control-paging li a.flex-active{
  	width: 36px;
  	border-radius: 10px;
  }
  .active-slide{
  	width: 36px !important;
  	border-radius: 10px;
  }
  ol.flex-control-nav.flex-control-paging li::before{
  	display: none;
  }
  ol.flex-control-nav.flex-control-paging{
  	text-align: center;
  }
  .flex-control-nav li, .flexslider .flex-control-nav li, .front_slider_wrapp .flex-control-nav li {
	  padding: 0;
	  margin-right: 3px;
	}
  body .brands_slider_wrapp {
	  padding: 30px 0px 15px;
	}
	.brands_slider_wrapp .flex-viewport {
	  height: 39px;
	}
	.om_h3 {
	  font-size: 16px;
	  line-height: 20px;
	  padding-top: 30px;
	  margin: 0px 30px;
	}
	.om_block_a{
		margin: 0px 30px;
		margin-bottom: 30px;
	}
	.om_g{
		font-size: 12px;
		line-height: 14px;
	}
	.om_b{
		font-size: 13px;
		line-height: 16px;
	}
	.om_bt{
		width: 100%;
	}
	.om_bt a{
		width: 100%;
		justify-content: center;
	}
	.om_bt a img{
		display: none;
	}
	.om_bl_na .brands_slider_wrapp .brands_slider li {
	  flex-direction: column;
	  gap: 10px;
	}
	.om_bl_na .brands_slider_wrapp .brands_slider li p {
	  line-height: 14px;
	}
	.om_h4{
		font-size: 14px;
	  color: #2B2C28;
	  line-height: 16px;
	  padding-top: 10px;
	  margin: 0px 30px;
	}
	.om_bloc6{
		padding-top: 10px;
	}
	.om_bloc6 .om_b1 {
	  width: 100%;
	  height: 140px;
	  padding: 10px;
	  border-radius: 15px;
	  position: relative;
    font-size: 16px;
    line-height: 19px;
	}
	.om_bloc6 .om_b2 {
	  width: 100%;
	  height: 140px;
	  padding: 10px;
	  border-radius: 15px;
	  position: relative;
    font-size: 16px;
    line-height: 19px;
	}
	.om_bloc6 .om_b3 {
	  width: 100%;
	  height: 140px;
	  padding: 10px;
	  border-radius: 15px;
	  position: relative;
    font-size: 16px;
    line-height: 19px;
	}
	.om_bb .om_bt{
		position: absolute;
	  bottom: 10px;
	  padding-bottom: 0px;
	  height: 39px;
	}
	.om_bb .om_bt a{
		min-height: unset;
    border-radius: 12px;
    display: flex;
	}
	.om_bb .om_bt a img {
	  display: block;
	}
	.om_vi {
	  width: auto;
	  height: 132px;
	  border-radius: 15px;
	  margin: 0px 30px;
	}
	.grid-main-7.grid-sm-12.im{
		order: 1;
		margin: 0px 30px;
	}
	.grid-main-5.grid-sm-12.imm{
		order: 2;
	}
	.om_bloc6.om_bf.om_bff{
		display: flex;
  	flex-direction: row;
	}
	.om_bloc6.om_bff .om_b11 {
	  width: calc(50% - 15px);
	  height: auto;
	}
	.om_bloc6.om_bff .om_b11 .om_b1{
	  width: 100%;
	  height: 170px;
	  padding: 10px;
	  border-radius: 15px;
	  background-size: 100%;
	}
	.om_bloc6.om_bff .om_b11 .om_b2{
	  width: 100%;
	  height: 170px;
	  padding: 10px;
	  border-radius: 15px;
	  background-size: 100%;
	}
	.om_bloc6.om_bff .om_b11 .om_b3{
	  width: 100%;
	  height: 170px;
	  padding: 10px;
	  border-radius: 15px;
	  background-size: 100%;
	}
	.om_bloc6.om_bff .om_b11 p{
		font-family: 'LatoWebBold';
		font-size: 13px;
		line-height: 16px;
		color: #2B2C28;
		padding-top: 5px;
	}
	.om_bloc6.om_bff .om_b11 .om_bte1{
		flex-direction: row;
	  justify-content: end;
	  width: 100%;
	  right: 10px;
	}
	.om_bloc6.om_bff .om_b11 .om_bte1 a{
		width: 56px !important;
	  height: 32px !important;
	  padding: 0px !important;
	  min-height: unset;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
	.om_bloc6.om_bb .om_b1{
	  height: 140px;
	  padding: 10px;
	}

	.om_bloc6.om_bb .om_b2{
	  height: 140px;
	  padding: 10px;
	}

	.om_bloc6.om_bb .om_b3{
	  height: 140px;
	  padding: 10px;
	}
}

.om_hr{
	width: 100%;
	height: 1px;
	background: #F5F5F5;
}

.catalog_menu ul.menu li a{
	color: #2B2C28;
}

ul.menu li, ul.mini-menu li {
  display: inline-block;
  vertical-align: top;
  padding: 0px 22.5px;
  line-height: 20px;
}

.catalog_menu ul.menu > li > a {
	font-family: 'LatoWebBold';
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

ul.menu .child {
  margin-top: 0px;
  padding-top: 10px;
}

ul.menu .child {
    left: 0;
    right: 0;

}
#header2 .catalog_menu .wrapper_inner,
#header2 .catalog_menu .wrapper_middle_menu,
#header2 .catalog_menu ul.menu>li.first {
    position: unset!important;
}
#header2 .catalog_menu ul.menu>li:not(.first) {
    position: relative!important;
}
body #header2 .catalog_menu .first .child {
    background: #fff;
    padding: 0;
    box-shadow: 0px 4px 28.799999237060547px 0px #0000001C;

}
body #header2 .catalog_menu .first .child .child_wrapp{
    background: #F7F7F9;
    box-shadow: none;
    border: none!important;
    padding: 20px 0!important;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog__item_wrapper {
    padding: 0 20px;

}

.catalog__item_wrapper>a {
    display: flex;
    align-items: center;
    padding: 8px 0;
}



.catalog__item_wrapper:hover {
    background: white;
}



.child-catalog-right {
    display: none;
}

body #header2 .catalog_menu .first .child .child_wrapp > * {
    width: 31%;

}
body #header2 .catalog_menu .first .child .child_wrapp .depth3 > a> img,
body #header2 .catalog_menu .first .child .child_wrapp > * > img {
    /*position: absolute;*/
    left: 0;
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    width: 27px;
    height: 27px;
}
body #header2 .catalog_menu .first .child .child_wrapp > a,
body #header2 .catalog_menu .first .child .child_wrapp .depth3 > a {
    /*padding: 8px 24px;*/
    box-sizing: border-box;
    display: flex;
    align-items: center;
    /*padding-left: 35px;*/
    position: relative;
    /*box-sizing: border-box;*/
    /*border-bottom: 1px solid #383838;*/
    font-size: 15px;

}

body #header2 .catalog_menu .first .child .child_wrapp a>span {
    margin-left: 10px;
    font-size: 13px;
    white-space: pre-wrap;
    color: #0A4952;
}
 body #header2 .catalog_menu .first .child .child_wrapp .depth3 > a:before {
    content: '';
    width: 9px;
    height: 17px;
    position: absolute;
    right: 15px;
     top: 50%;
     transform: translateY(-50%);
    background: url("/local/templates/aspro_mshop_alti/components/bitrix/menu/top_catalog_multilevel2n/img/arr.svg") center no-repeat;
 }
.child-catalog-right {
    position: absolute;
    right: 0;
    top: 0;
    left: 31%;
    bottom: 0;
    align-items: flex-start;
}
.child-catalog-right > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-auto-rows: 1fr;*/
    grid-column-gap: 50px;
    grid-row-gap: 15px;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, 1fr);


}
/*body #header2 .catalog_menu .first .child .child_wrapp:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: calc(35% + 40px);*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 1px;*/
/*    background: #383838;*/
/*}*/
.depth3:hover .child-catalog-right {
    display: flex;
    flex-direction: column;
    /*flex-flow: row wrap;*/
    padding: 30px 30px 30px;
    /*align-items: flex-start;*/
    /*justify-content: space-between;*/
    background: white;
}



.child-catalog-right a {
    /*width: calc(45% - 40px);*/
    /*margin-right: 40px;*/
    position: relative;
    box-sizing: border-box;
    /*padding: 20px 0 20px 40px;*/
    font-size: 14px;
    white-space: normal;
    display: flex;
    gap: 10px;
    color: #383838!important;
    font-weight: 400;
}

.child-catalog-right  a object {
    width: 18px;
    height: 18px;
    filter: grayscale(1);
}

.om_block6n_block{
	max-width: 220px;
	border-radius: 20px;
	border: 1px solid #BEBEBE;
	background: #FFFFFF;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.om_b1n_li{
	font-family: 'LatoWebBold';
	font-size: 16px;
}

.om_b1n_pri{
	font-family: 'LatoWeb';
	font-size: 13px;
}

.om_b1n{
	font-size: 14px;
  color: #FFF;
  background: #0A4952;
  border-radius: 12px;
  padding: 10px 20px;
  height: 100%;
  line-height: 17px;
    max-width: 160px;
  	margin: 0 auto;
}

.om_b1n:hover{
	font-size: 14px;
  color: #FFF;
  background: #0A4952;
  border-radius: 12px;
  padding: 10px 20px;
  height: 100%;
  line-height: 17px;
    max-width: 160px;
  	margin: 0 auto;
}

.om_bloc6n{
	display: flex;
  flex-direction: row;
  gap: 15px;
}

.om_stickers{
	height: 42px;
}

.om_button_block  .small.in-cart.button {
  background: url('/local/templates/aspro_mshop_alti/images/Property 1=Check_in.png') !important;
    background-size: auto;
  height: 51px;
  width: 51px;
  background-size: 100%;
  position: absolute;
  right: 5px;
  top: -30px;
  background-size: 100% !important;
}

.om_button_block  .small.in-cart.button i{
	display: none;
}

.om_button_block  .small.to-order.button.transparent{
	display: none;
}

.om_button_block  .more_text{
	display: none;
}

.specials_slider > li, .tabs_slider li, .wrapper_block .wr li {
  width: 213px !important;
  padding: 0px;
  opacity: 0;
  min-height: 350px;
  background: #FFFFFF !important;
  box-shadow: 0 0 4px rgba(0,0,0,0.125);
  border-radius: 20px;
  box-shadow: unset;
  border: 1px solid #BEBEBE;
}

.om_item_info {
  background: #FFFFFF;
  padding: 5px 10px;
    padding-top: 5px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.125);
  border-radius: 0px 0px 20px 20px;
  padding-top: 0px;
  box-shadow: unset;
}

.om_bl_na .brands_slider32 {
  gap: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.brands_slider32_blocf{
	padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #BEBEBE;
  width: 270px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.brands_slider32_blocf img{
	height: 71px;
  width: auto;
}

.brands_slider32_blocf p{
  font-family: 'LatoWebSemibold';
	font-size: 12px;
  color: #0A4952;
  margin: 0;
  line-height: 16px;
}

@media screen and (max-width: 768px){
	.om_bloc6n{
		margin: 0px 30px;
	  flex-direction: row;
	  flex-wrap: wrap;
	}
	.om_block6n_block {
	  max-width: calc(50% - 10px);
	  gap: 5px;
	}
	.om_b1n_li {
	  font-family: 'LatoWebBold';
	  font-size: 14px;
	}
	.om_b1n {
	  font-size: 16px;
	  color: #FFF;
	  background: #0A4952;
	  border-radius: 12px;
	  padding: 10px 20px;
	  height: 100%;
	  line-height: 17px;
	  max-width: 160px;
	  margin: 0 auto;
	  width: 100%;
	}
	.om_bloc6.om_bff .om_b3 {
	  background: url('/local/templates/aspro_mshop_alti/images/kartinka/Card_offer3.png');
	    background-position-x: 0%;
	    background-position-y: 0%;
	    background-repeat: repeat;
	    background-size: auto;
	  width: 370px;
	  height: 304px;
	  padding: 20px 28px;
	  border-radius: 20px;
	  position: relative;
	  background-position: center center;
	  background-size: cover;
	  background-size: 100%;
	  background-repeat: no-repeat;
	  background-size: cover !important;
	}
	.similar_products_wrapp .tabs_slider {
	  padding-bottom: 0px;
	}
  body .brands_slider_navigation2 .flex-control-paging li {
	  height: unset;
	  width: unset;
	}
	.brands_slider11 li{
		border: 1px solid rgb(190, 190, 190);
	  border-radius: 20px;
	  padding: 10px;
	  gap: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
	}
	.brands_slider11 li p{
	  font-family: 'LatoWebBold';
	  font-size: 12px;
	  line-height: 14px;
	  color: #0A4952;
	  margin: 0px;
    padding-top: 10px;
	}
	.om_bl_na .brands_slider_wrapp.fsgfg {
	  padding: 0px;
	  width: 85%;
	  margin: 0px 30px;
	}
	.brands_slider11{
		gap: 10px;
  	display: flex;
	}
	.brands_slider_navigation2 {
		padding-top: 10px;
	}
  body .flex-control-paging li {
	  height: unset;
	  width: unset;
	}
}

.triple-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.price_rubb{
	  font-family: "LatoWebHeavy", sans-serif !important;
	  font-size: 14px !important;
	  color: #0A4952 !important;
	  line-height: 20px;
	  font-weight: bold;
}

.om_elem.catalog_item.main_item_wrapper .image_wrapper_block{
	height: auto;
}

.brands_slider32_blocf img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brands_slider32_blocf:hover img {
    filter: grayscale(0%);
}

@media screen and (max-width: 768px){
	.similar_products_wrapp .flex-viewport{
		padding-bottom: 35px;
	}
	.brands_slider_wrapp li img {
	  max-height: 75px;
	}
	.om_bloc6.om_bff .om_b1 {
	  background-size: cover !important;
	  background-repeat: no-repeat;
	}
	.om_bloc6.om_bff .om_b2 {
	  background-size: cover !important;
	  background-repeat: no-repeat;
	}
	.om_bloc6.om_bff .om_b3 {
	  background-size: cover !important;
	  background-repeat: no-repeat;
	}
}

.similar_products_wrapp.sfgs .wr li {
  margin-left: 15px;
}
.similar_products_wrapp.sfgs .wr li:first-child {
  margin-left: 0px;
}

.texsdrf{
	display: flex;
  padding-bottom: 20px;
  gap: 10px;
  font-size: 12px;
  color: #52130A;
  align-items: center;
}

.unique-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Модальное окно */
.unique-modal {
  max-width: 700px;
  background: #fff;
  padding: 26px 30px;
  padding-right: 70px;
  border-radius: 15px;
  position: relative;
  max-height: 80%;
  overflow: auto;
}

/* Заголовок модального окна */
.unique-modal-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  line-height: 1.5;
}

.unique-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #900;
}

/* Поля формы */
.unique-modal-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #0A4952;
  padding-left: 15px;
  line-height: 25px;
}

.unique-modal-label span {
  color: #52130A;
}

input.unique-modal-input,
.unique-modal-textarea {
  width: 100% !important;
  padding: 13px 15px !important;
  margin-bottom: 10px !important;
  border: 1px solid #000 !important;
  border-radius: 15px !important;
  font-size: 14px !important;
  color: #000 !important;
  box-sizing: border-box !important;
  background: #fff !important;
  line-height: 16px !important;
  width: 100%;
}

input.unique-modal-input:hover,
.unique-modal-textarea:hover{
	box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.25);
}
input.unique-modal-input:hover::placeholder, input.unique-modal-input:focus::placeholder,
.unique-modal-textarea:hover::placeholder, .unique-modal-textarea:focus::placeholder {
    color: #fff;
}

.unique-modal-input::placeholder,
.unique-modal-textarea::placeholder {
  color: #aaa;
  font-size: 14px;
}

.unique-modal-textarea {
  height: 59px;
  resize: none;
  margin-bottom: 5px;
  min-height: unset;
}

/* Чекбокс */
.unique-modal-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  padding-right: 25px;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.styled-checkbox-label {
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  padding-left: 40px;
}

.styled-checkbox-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #0A4952;
  background: #fff;
  border-radius: 5px;
}

.styled-checkbox-label::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 47%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
}

.styled-checkbox:checked + .styled-checkbox-label::before {
  background-color: #0A4952;
  border-color: #0A4952;
}

.styled-checkbox:checked + .styled-checkbox-label::after {
  opacity: 1;
}

.unique-modal-link {
  color: #0A4952;
  cursor: pointer;
}

/* Сообщение об ошибке */
.unique-modal-error {
  display: none;
  color: #d9534f;
  font-size: 12px;
  margin-top: 5px;
}
input.unique-modal-input.error {
    border: 1px solid #B30F32;
    color: #B30F32;
    background: #fff;
}

.styled-checkbox:invalid ~ #checkboxError {
  display: block;
}

/* Примечание */
.unique-modal-note {
  font-size: 12px;
  color: #2B2C28;
  margin-bottom: 15px;
}

/* Кнопка отправки */
.unique-modal-submit {
  display: block;
  background-color: #0A4952;
  color: #fff;
  padding: 16px 50px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  text-transform: capitalize;
}

.unique-modal-submit:hover {
  background-color: #04282D;
}

.unique-modal-overlay {
  z-index: 9999;
}
.custom-popbgri{
	  display: flex;
	  flex-direction: row;
	  align-items: end;
	  justify-content: space-between;
	align-items: end;
}
@media screen and (max-width: 400px){
	.unique-modal {
	  max-width: 90%;
	  width: 90%;
	}
	.unique-modal-header {
	  font-size: 15px;
      width: 60%;
      margin-bottom: 10px;
	}
	.unique-modal {
	  padding: 15px;
	  padding-right: 15px;
	}
	.unique-modal-label {
	  font-size: 16px;
	  margin-bottom: 5px;
	}
	input.unique-modal-input, .unique-modal-textarea {
	  padding: 20px 13px;
	  margin-bottom: 10px;
	  font-size: 17px;
	}
	.unique-modal-textarea {
	  height: 78px;
	}
	.custom-popbgri {
	  flex-direction: column;
	}
	.unique-modal-submit {
	  padding: 25px 50px;
	  font-size: 18px;
	  max-width: 242px;
	  margin: 0 auto;
	}
	.custom-popup-content {
	  padding: 15px;
	}
	p.custom-poptitle {
	  font-size: 15px !important;
	  width: 60%;
	  text-align: left;
	  padding: 0px !important;
	}
	.custom-popup-content p {
	  font-size: 12px;
	}
	.custom-popup-content {
	  width: 90%;
	}
	.unique-modal-agreement{
		margin-bottom: 10px;
	}
}

a[href^="tel:"] {
  position: relative;
  display: inline-block;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,1) 100%);
          mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,1) 100%);
  transition: mask-image 0.5s, -webkit-mask-image 0.5s;
  cursor: pointer;
}

a[href^="tel:"].revealed {
  -webkit-mask-image: none;
          mask-image: none;
}

#headerfixed_mobile.fixed{
	display: none;
}

.om_banner{
	position: relative;
}

.triple-slider{
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.spinner {
  border: 6px solid #f3f3f3;
    border-top-width: 6px;
    border-top-style: solid;
    border-top-color: rgb(243, 243, 243);
  border-top: 6px solid #0a4952;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.one_click_buy_basket_frame{
	  margin-left: 0px;
	  border-radius: 25px !important;
}
.one_click_buy_basket_frame .unique-modal{
	  min-width: 670px;
}
.one_click_buy_basket_frame .unique-modal .unique-modal-close.close{
	right: 25px;
	  top: 25px;
}