@charset "UTF-8";
.catBlWr {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
}
.catList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: unset;
  margin-left: -16px;
  margin-right: -16px;
}
.catItem {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 20px 15px;
  margin: 8px 16px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 160px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.3s, box-shadow 0.2s;
}
.catItem:hover .title {
  color: #000;
}
.catItem .title {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
  transition: all 0.2s;
}
.catPic {
  width: 100%;
  height: 60px;
  margin-bottom: 16px;
}
.catPic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catTitle, .revTitle, .accorTitle {
  font-size: 26px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.accorTitle {
  margin-bottom: 30px;
}
.accordBl {
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
}
.accorItem {
  padding-left: 35px;
  padding-right: 35px;
  border-top: 1px solid #444444;
  cursor: pointer;
}
.accorItem .accorTit {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  position: relative;
}
.accorItem .accorTit:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: calc(50% - 18px);
  -webkit-mask-image: url("/g/s3/lp/lpc.v4/images/sprite.view.svg#chevron-right-middle");
  mask-image: url("/g/s3/lp/lpc.v4/images/sprite.view.svg#chevron-right-middle");
  -webkit-mask-size: 35px;
  mask-size: 35px;
  background-color: #000;
  transform: rotate(90deg);
  transition: all 0.2s linear;
}
.accorItem .accorTit.active:before {
  transform: rotate(-90deg);
}
.accorItem .accorText {
  display: none;
  padding-bottom: 30px;
}
.revList {
  position: relative;
}
.revBl {
  margin-bottom: 20px;
}
.revBl .revTitle {
  margin-bottom: 30px;
}
.revBl .slick-arrow {
  width: 44px;
  height: 44px;
  border-radius: 250px;
  background: #ececec;
  position: absolute;
  top: calc(50% - 60px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  padding-bottom: 2px;
}
.revBl .slick-arrow:before {
  display: none;
}
.revBl .slick-arrow:after {
  content: "";
  width: 30px;
  height: 15px;
  display: inline-block;
  /*-webkit-mask-image: url("/g/s3/lp/lpc.v4/images/sprite.view.svg#chevron-right-middle");*/
  background: url(/g/s3/lp/lpc.v4/images/sprite.view.svg#chevron-right-middle) 63% no-repeat;
  /*mask-image: url(/g/s3/lp/lpc.v4/images/sprite.view.svg#chevron-right-middle);*/
  mask-size: 30px;
}
.revBl .slick-arrow.slick-prev {
  left: -22px;
}
.revBl .slick-arrow.slick-prev:after {
  transform: rotate(180deg);
}
.revBl .slick-arrow.slick-next {
  right: 0px;
}
.revBl .slick-dots {
  height: auto;
}
.revBl .slick-dots li {
  height: auto;
  font-size: 0;
  display: inline-block;
  margin: 0;
}
.revBl .slick-dots li button {
  margin: 6px;
  width: 16px;
  height: 16px;
  opacity: 0.3;
}
.revBl .slick-dots li.slick-active button {
  margin: 6px;
  width: 16px;
  height: 16px;
  background: #d0021b;
  opacity: 1;
}
.revItem {
  padding: 25px;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 30px;
}
.revItem .revTit {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.revItem .revText {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
@media (max-width: 960px) {
  .accorItem {
    padding-left: 20px;
    padding-right: 20px;
  }
  .accorItem .accorTit {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .catBlWr {
    padding-top: 30px;
  }
  .catList {
    margin-left: -10px;
    margin-right: -10px;
  }
  .catItem {
    padding: 15px;
    max-width: 33.33%;
    margin: 10px;
    width: calc(33.33% - 20px);
  }
  .revItem {
    margin-right: 0;
    padding: 20px;
  }
  .revBl .slick-dots {
    margin-top: 20px;
  }
  .revItem .revText {
    margin-bottom: 15px;
  }
  .revBl .slick-dots li.slick-active button, .revBl .slick-dots li button {
    width: 10px;
    height: 10px;
    margin: 2.5px;
  }
  .accorItem .accorTit {
    font-size: 19px;
  }
  .accorItem .accorText {
    font-size: 16px;
  }
  .accorItem .accorText {
    padding-bottom: 20px;
  }
  .site-advantage__item {
    width: 100%;
  }
  .site-advantage__items {
    display: flex;
    flex-direction: column;
  }
  .site-advantage {
    margin-left: 0;
    margin-right: 0;
  }
  .site-advantage__item-pic {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 580px) {
  .catItem {
    max-width: 50%;
    width: calc(50% - 20px);
  }
  .accorItem .accorTit {
    font-size: 15px;
  }
  .accorItem .accorText {
    font-size: 15px;
  }
  .accorItem .accorTit {
    padding-right: 35px;
  }
}
@media (max-width: 480px) {
  .catTitle, .revTitle, .accorTitle {
    font-size: 24px;
  }
  .accorItem .accorText {
    font-size: 14px;
  }
  .accorItem {
    padding-left: 10px;
    padding-right: 10px;
  }
  .catItem .title {
    font-size: 14px;
  }
}
.fotsoc {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}
.product-list .product-item__image {
  overflow: visible !important;
}
.product-list .product-item__image a {
  overflow: visible !important;
}
.product-list .product-item__image a img {
  opacity: 1 !important;
}
.product-list .product-item__image a img:first-child {
  opacity: 0 !important;
}
body {
  /*
	.brands_block__item-wrap:nth-child(n+8) {
		display: block;
	}
	.brands_block__items {
		margin: 0;
		display: block;
	}
	.brands_block__items .slick-prev, .brands_block__items .slick-next {
		top: -35px;
		margin-top: 0;
	}
	.brands_block__item-wrap {
		margin: 0;
		width: auto;
		padding-left: 8px;
		padding-right: 8px;
	}
	*/
}
body a.catItem:hover {
  border: 1px solid #0000 !important;
  transform: translateY(-5px);
}
/*
@media all and (max-width: 767px) {
	body {
		.brands_block__items {
			overflow: visible;
		}
		.brands_block__items .slick-prev,
		.brands_block__items .slick-next {
			top: -45px;
		}
	}
}
@media all and (max-width: 480px) {
	body {
		.brands_block__items .slick-prev,
		.brands_block__items .slick-next {
			top: auto;
			bottom: -45px;
		}
	}
}*/
.news_slider-wrapper .owl-item {
  display: inline-block;
}
.news_slider-wrapper {
  background: #fcfcfc;
}
.news_slider-wrapper .news-slider {
  padding: 10px;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  overflow: hidden;
}
.news_slider-wrapper .news-slider .news_item {
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 430px) {
  .news_slider-wrapper .news-slider .news_item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.news_slider-wrapper .news-slider .news_item:before {
  content: "";
  left: 0;
  top: 0;
  right: 100%;
  height: 1px;
  position: absolute;
  background: #d0021b;
  transition: ease 0.5s;
}
.news_slider-wrapper .news-slider .news_item:after {
  content: "";
  right: 0;
  bottom: 0;
  left: 100%;
  height: 1px;
  position: absolute;
  background: #d0021b;
  transition: ease 0.3s;
}
.news_slider-wrapper .news-slider .news_item .border-element {
  pointer-events: none;
}
.news_slider-wrapper .news-slider .news_item .border-element:before {
  content: "";
  right: 0;
  top: 0;
  bottom: 100%;
  width: 1px;
  position: absolute;
  background: #d0021b;
  transition: ease 0.5s;
}
.news_slider-wrapper .news-slider .news_item .border-element:after {
  content: "";
  left: 0;
  bottom: 0;
  top: 100%;
  width: 1px;
  position: absolute;
  background: #d0021b;
  transition: ease 0.5s;
}
.news_slider-wrapper .news-slider .news_item:hover:before {
  right: 0;
}
.news_slider-wrapper .news-slider .news_item:hover:after {
  left: 0;
}
.news_slider-wrapper .news-slider .news_item:hover .border-element:before {
  bottom: 0;
}
.news_slider-wrapper .news-slider .news_item:hover .border-element:after {
  top: 0;
}
.news_slider-wrapper .news-slider .news_item .news_image {
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .news_slider-wrapper .news-slider .news_item .news_image {
    text-align: center;
    height: auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .news_slider-wrapper .news-slider .news_item .news_image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }
}
.news_slider-wrapper .news-slider .news_item .news_date {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  padding: 10px 45px 8px 0;
  position: relative;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64' height='64' viewBox='0 0 64 64'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:url(%23a)%7D.b%7Bfill:url(%23b)%7D.c,.d,.e,.f,.g%7Bfill-rule:evenodd%7D.c%7Bfill:url(%23c)%7D.d%7Bfill:url(%23d)%7D.e%7Bfill:url(%23e)%7D.f%7Bfill:url(%23f)%7D.g%7Bfill:url(%23g)%7D%3C/style%3E%3ClinearGradient id='a' x1='32' y1='61.513' x2='32' y2='37.524' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23efb07f'/%3E%3Cstop offset='1' stop-color='%23fddbbb'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='32' y1='29.524' x2='32' y2='35.867' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ee4423'/%3E%3Cstop offset='1' stop-color='%23d53221'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='32' y1='14.667' x2='32' y2='16.581' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%234b4d4e'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='24.75' y1='31.319' x2='24.75' y2='32.945' xlink:href='%23c'/%3E%3ClinearGradient id='e' x1='24.75' y1='38.568' x2='24.75' y2='40.194' xlink:href='%23c'/%3E%3ClinearGradient id='f' x1='39.251' y1='34.803' x2='39.251' y2='36.346' xlink:href='%23b'/%3E%3ClinearGradient id='g' x1='39.251' y1='42.052' x2='39.251' y2='43.595' xlink:href='%23b'/%3E%3C/defs%3E%3Ctitle%3Ecalendar-2_color%3C/title%3E%3Cpath class='a' d='M13.875 27.043h36.251v21.746H13.875z'/%3E%3Cpath class='b' d='M13.875 19.099h36.251v7.944H13.875z'/%3E%3Cpath class='c' d='M18.708 15.21h3.625v7.777h-3.625v-7.776zm22.959 0h3.625v7.777h-3.625v-7.776z'/%3E%3Cpath class='d' d='M18.708 31.875h4.834v4.833h-4.834v-4.833zm7.25 0h4.834v4.833H25.96v-4.833z'/%3E%3Cpath class='e' d='M25.959 39.124h4.833v4.832H25.96v-4.832zm-7.251 0h4.834v4.832h-4.834v-4.832z'/%3E%3Cpath class='f' d='M40.46 31.875h4.833v4.833h-4.834v-4.833zm-7.251 0h4.834v4.833h-4.834v-4.833z'/%3E%3Cpath class='g' d='M40.46 39.124h4.833v4.832h-4.834v-4.832zm-7.251 0h4.834v4.832h-4.834v-4.832z'/%3E%3C/svg%3E") right center / 40px auto no-repeat;
}
.news_slider-wrapper .news-slider .news_item .news_date:before {
  content: "Статья";
  color: #fff;
  background: #d0021b;
  padding: 6px 10px;
  display: inline-block;
  position: absolute;
  left: -25px;
  top: 50%;
  margin-top: -11px;
  font-size: 12px;
}
@media (max-width: 430px) {
  .news_slider-wrapper .news-slider .news_item .news_date:before {
    left: -15px;
  }
}
.news_slider-wrapper .news-slider .news_item .news_title {
  display: block;
  padding: 5px 0;
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  transition: ease 0.3s;
  cursor: pointer;
}
.news_slider-wrapper .news-slider .news_item .news_title:hover {
  color: #000;
}
.news_slider-wrapper .news-slider .news_item .news_body {
  padding-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.news_slider-wrapper .news-slider .news_item .news_body p {
  margin: 0;
}
.news_slider-wrapper .news-slider .owl-dots {
  text-align: center;
  padding: 15px 0 15px;
}
.news_slider-wrapper .news-slider .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background: #fff;
  transition: ease 0.3s;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
}
.news_slider-wrapper .news-slider .owl-dots .owl-dot:hover, .news_slider-wrapper .news-slider .owl-dots .owl-dot.active {
  background: #d0021b;
  border: 1px solid #d0021b;
}
.news_slider-wrapper .news-slider .owl-dots .owl-dot span {
  display: none;
}
.news_slider-wrapper .owl-nav.disabled {
  display: none;
}
.begText {
  width: 200%;
  overflow: hidden;
  transform: translateX(-30%);
  background: #d0021b;
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
  font-size: 18px;
  font-weight: 400;
}
.begText > div {
  display: flex;
}
.marquee-content {
  margin-right: 5px;
  display: flex;
  gap: 1px;
  /* Расстояние между повторами */
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  will-change: transform;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(-5%);
  }
  to {
    transform: translateX(-80%);
  }
}
.company-info .contacts-popup__messenger {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}
.company-info .contacts-popup__messenger .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.company-info .contacts-popup__messenger .icon svg {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1261px) {
  .company-info__logo_pic {
    margin: 0 100px 0 40px;
  }
  .company-info {
    width: auto;
  }
  .head-contacts {
    width: auto;
    flex: 1;
  }
}
.buy-one-click.gr-button-5 {
  color: rgba(208, 2, 27, 0.75);
  box-shadow: inset 0 0 0 2px rgba(208, 2, 27, 0.75);
}
.buy-one-click.gr-button-5:hover {
  background: rgba(208, 2, 27, 0.75);
  color: #fff;
}
.buy-one-click.gr-button-5:before {
  background: rgba(208, 2, 27, 0.75);
}
.price_eko .title {
  font-weight: 400;
  font-size: 15px;
}
form .icon-check {
  top: 45% !important;
  right: 15px !important;
}
html .tpl-field input[type="tel"]:hover {
  box-shadow: black 0px 0px 0px 2px inset;
}
.tpl-field input[type="tel"]:focus {
  color: #393939;
  border: none;
  background: #fff;
  box-shadow: inset 0 0px 0px 2px #d0021b;
}
.tpl-field input[type="tel"], .gr-field-style input[type="tel"], .option-item input[type="tel"], .form-item input[type="tel"] {
  font: normal 15px / 18px "Roboto", Arial, Helvetica, sans-serif;
  color: #393939;
  border: none;
  background: #f7f7f7;
  box-shadow: none;
  border-radius: 6px;
  padding: 15px 15px;
  width: 100%;
  height: auto;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s;
}
.site .site_wrap .site__wrapper .site__inner .shop-product-btn {
  font-size: 12px !important;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}
.site .site_wrap .site__wrapper .site__inner .shop-product-btn:before {
  display: none;
}
.site .site_wrap .site__wrapper .site__inner .shop-product-btn .in_cart {
  background: #d0021b;
}
@media (max-width: 480px) {
  .site .site_wrap .site__wrapper .site__inner .shop2-product-item .shop-product-btn, .site .site_wrap .site__wrapper .site__inner .kind-item .shop-product-btn {
    width: 100%;
    margin-top: 10px;
    background: #000;
    color: #fff;
  }
}
.site .site_wrap .site__wrapper .site__inner .shop2-product-item .shop-product-btn.in_cart, .site .site_wrap .site__wrapper .site__inner .kind-item .shop-product-btn.in_cart {
  background: #d0021b;
  font-size: 11px;
  padding: 5px;
}
.site .site_wrap .site__wrapper .site__inner .shop2-product-item .shop-product-btn.in_cart:before, .site .site_wrap .site__wrapper .site__inner .kind-item .shop-product-btn.in_cart:before {
  display: none;
}
.site .site_wrap .site__wrapper .site__inner .recent-item__bottom {
  flex-wrap: wrap;
}
.site .site_wrap .site__wrapper .site__inner .recent-item__bottom-right {
  padding: 0;
  margin-top: 10px;
}
.site .site_wrap .site__wrapper .site__inner .recent-item__bottom-right .shop-product-btn {
  width: auto;
  height: auto;
}
@media (max-width: 479px) {
  .site .site_wrap .site__wrapper .site__inner .kinds-block .product-amount, .site .site_wrap .site__wrapper .site__inner .product-list.thumbs .product-item .product-amount {
    width: 100%;
  }
  .site .site_wrap .site__wrapper .site__inner .kind-item .shop-product-btn, .site .site_wrap .site__wrapper .site__inner .recent-item .shop-product-btn {
    padding: 10px 15px;
  }
  .site .site_wrap .site__wrapper .site__inner .kind-item .shop-product-btn.in_cart, .site .site_wrap .site__wrapper .site__inner .recent-item .shop-product-btn.in_cart {
    padding: 10px 15px;
  }
}
.new_opt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.new_opt__item {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10px;
}
.new_opt__item .title {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.new_opt__item .title .ic {
  display: flex;
  cursor: pointer;
  position: relative;
}
.new_opt__item .title .ic svg path {
  transition: all 0.2s;
}
.new_opt__item .title .ic:hover svg path {
  stroke: #D0021B;
}
.new_opt__item .title .ic .quest_body_pop {
  position: absolute;
  top: -6px;
  left: calc(100% - -10px);
  padding: 12px 20px 12px 14px;
  width: 312px;
  border: 2px solid #d0021b;
  background: #fff;
  border-radius: 15px;
  box-sizing: border-box;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  cursor: auto;
  transition: 0.6s;
  transform: translateX(-26px);
}
.new_opt__item .title .ic .quest_body_pop:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-right: 2px solid #d0021b;
  border-bottom: 2px solid #d0021b;
  top: 10px;
  left: -6px;
  -webkit-transform: rotate(136deg);
  transform: rotate(136deg);
}
@media (max-width: 960px) {
  .new_opt__item .title .ic .quest_body_pop {
    /*left: initial;
				    	right: calc(100% - -10px);
				    	&:after {
				    		transform: rotate(-46deg);
				    		left: initial;
				    		right: -6px;
				    	}*/
    width: 100%;
    left: 0;
    top: 104%;
  }
  .new_opt__item .title .ic .quest_body_pop:after {
    opacity: 0;
  }
}
.new_opt__item .title .ic:hover .quest_body_pop {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}
@media (max-width: 960px) {
  .new_opt__item .title .ic {
    display: none;
    position: initial;
  }
}
.new_opt__item .counts {
  display: flex;
  gap: 5px;
}
.new_opt__item .counts div {
  background: #D9D9D9;
  height: 8px;
  border-radius: 8px;
  flex: 1;
}
.new_opt__item .counts.con_1 div:first-child {
  background: #D0021B;
}
.new_opt__item .counts.con_2 div:nth-child(n+1):nth-child(-n+2) {
  background: #D0021B;
}
.new_opt__item .counts.con_3 div:nth-child(n+1):nth-child(-n+3) {
  background: #D0021B;
}
.new_opt__item .counts.con_4 div:nth-child(n+1):nth-child(-n+4) {
  background: #D0021B;
}
.new_opt__item .counts.con_5 div {
  background: #D0021B;
}
@media (max-width: 960px) {
  .new_opt {
    grid-template-columns: 1fr;
  }
}
.acs_product {
  padding-top: 40px;
}
.acs_product .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}
.acs_product .items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acs_product .items .item {
  gap: 20px;
  display: grid;
  transition: 0.2s;
  border-radius: 10px;
  align-items: center;
  text-decoration: none;
  border: 1px solid #CCCCCC;
  grid-template-columns: 60px 1fr;
}
.acs_product .items .item .icon {
  height: 100%;
  display: flex;
  transition: 0.2s;
  overflow: hidden;
  align-items: center;
  background: #D9D9D9;
  justify-content: center;
  border-radius: 6px 0 0 6px;
}
.acs_product .items .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}
.acs_product .items .item .icon svg path {
  transition: 0.2s;
}
.acs_product .items .item .tit {
  font-size: 20px;
  padding: 18px 0;
  font-weight: bold;
}
.acs_product .items .item.active {
  display: grid !important;
}
.acs_product .items a.item:hover {
  background: #D0021B;
  border: 1px solid #D0021B;
}
.acs_product .items a.item:hover .tit {
  color: #fff;
}
.acs_product .items a.item:hover .icon {
  background: #D0021B;
}
.acs_product .items a.item:hover .icon svg path {
  stroke: #fff;
}
.acs_product .items .more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #129BE8;
  cursor: pointer;
}
.pluso-share {
  padding-top: 20px;
}
.sand .nicotine-item-image {
  width: calc(100% - 40px);
  margin: auto;
}
.sand .nicotine-item-image span {
  overflow: visible;
}
.sand .nicotine-item-image img {
  transition: all 0.3s ease;
}
.sand .nicotine-item:hover .nicotine-item-image img {
  box-shadow: 0 0 15px 0 #6666f7;
}
.age-confirmed .blur-block {
  display: none;
}
.blur-block {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(7px);
}
.blur-block img {
  width: 30px;
}
.age-popup {
  padding: 40px 20px !important;
}
.age-popup__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.age-popup__question {
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
}
.age-popup__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.action-product .product-top-day__image .blur-block img {
  opacity: 1;
  width: 30px;
  height: auto;
}
