.catalog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: calc(100% + 16px);
  padding-bottom: 76px;
}

.catalog-item {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.catalog-item {
  /* 
width: calc(25% - 16px); */
  width: calc(33.33% - 16px);
  margin: 0 16px 16px 0;
  background: var(--white);
}

.catalog-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 2px solid var(--border);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog-item-top:hover {
  border-bottom: 2px solid var(--element);
  -webkit-box-shadow: inset 0 -1px 0px 0px var(--element);
          box-shadow: inset 0 -1px 0px 0px var(--element);
}

.catalog-sublist {
  background: var(--white);
}

.catalog-subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 56px;
  padding: 0px 32px;
  text-transform: uppercase;
  color: var(--text);
  font-size: 86%;
  line-height: 154%;
  letter-spacing: 0.1px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog-subitem:hover {
  background: #F9FAFF;
  -webkit-box-shadow: inset 3px 0 0 0 var(--element);
          box-shadow: inset 3px 0 0 0 var(--element);
}

.catalog-subitem.parent {
  position: relative;
  padding-right: 48px;
}

.catalog-subitem.parent::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 22px;
  right: 30px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.catalog-subitem.parent:hover::before {
  -webkit-transform: translate(10px, 0) rotate(45deg);
  -ms-transform: translate(10px, 0) rotate(45deg);
      transform: translate(10px, 0) rotate(45deg);
}

.catalog-subitem span span {
  color: var(--text2);
}

.hidden-catalog {
  display: none;
}

.catalog-more {
  display: block;
  padding: 19px 32px;
  text-align: center;
  background: var(--background);
  color: var(--text2);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 95%;
}

.other-lack {
  padding: 60px 0 42px;
}

.catalog-lvl2 .catalog-item-top {
  border-bottom: none;
}

.catalog-lvl2 .catalog-item {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.catalog-lvl2 .catalog-item:hover {
  -webkit-box-shadow: inset 0 -3px 0 0 var(--element), 0px 24px 32px -16px rgba(234, 35, 47, 0.25);
          box-shadow: inset 0 -3px 0 0 var(--element), 0px 24px 32px -16px rgba(234, 35, 47, 0.25);
}

.catalog-lvl2 .catalog-item:hover .catalog-item-top {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 28px 0 44px;
}

.title:first-child {
  margin: 50px 0 40px;
}

.catalog {
  margin-bottom: 98px;
}

.catalog .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.catalog-filtr {
  background: var(--white);
  width: 296px;
  margin-right: auto;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.filter-block {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.filter-block:first-child,
.mobile-filter + .filter-block:nth-child(2) {
  border-top: none;
}

.filter-params {
  color: var(--text);
  font-size: 86%;
  line-height: 150%;
  margin-bottom: 16px;
}

.clear-filter {
  display: block;
  position: relative;
  color: var(--text2);
  line-height: 133%;
  padding-left: 20px;
  margin-bottom: -4px;
}

.clear-filter::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0px;
  background: url("../img/icons/Close_round.svg") center center/cover no-repeat;
}

.filtr-zag {
  display: block;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 94%;
  line-height: 190%;
  font-weight: 700;
}

.swiper-block {
  margin-top: -9px;
}

.polz-vars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 19px;
  padding: 8px 16px;
}

.polz-var {
  border: none;
  width: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 8px 0px 5px 16px;
  color: var(--text2);
}

.polz-var:first-child {
  border-right: 1px solid var(--border);
  padding-left: 0;
}

.polz-var input {
  border: none;
  width: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 72px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  margin-left: 8px;
}

.polz-var input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--text2);
}

.polz-var input:-ms-input-placeholder {
  opacity: 1;
  color: var(--text2);
}

.polz-var input::-ms-input-placeholder {
  opacity: 1;
  color: var(--text2);
}

.polz-var input::-moz-placeholder {
  opacity: 1;
  color: var(--text2);
}

.polz-var input::placeholder {
  opacity: 1;
  color: var(--text2);
}

.ui-widget.ui-widget-content {
  border: none;
}

.polzunok-wrap {
  position: relative;
  margin: 0 auto;
}

.polzunok-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 3px;
  left: 0px;
  background: var(--border);
}

.ui-slider {
  background: transparent;
}

.ui-slider::before,
.ui-slider::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 1px;
  left: 0px;
  border-radius: 50%;
  background: var(--border);
}

.ui-slider::after {
  left: auto;
  right: 0;
}

.ui-slider-horizontal .ui-slider-range {
  top: 3px;
  height: 3px;
  background: var(--text);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 2px solid var(--text) !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
}

.ui-slider-handle.ui-state-active {
  border: 2px solid var(--element) !important;
  background: var(--element) !important;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px !important;
}

.filter-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.filter-check .jq-checkbox {
  margin: 0 0 0 auto;
}

.hidden-filter {
  display: none;
}

.filter-check-name {
  padding: 3px 0 0 0;
}

.filter-check-name span {
  color: var(--text2);
}

.show-all {
  display: inline-block;
  margin-top: 2px;
  padding-right: 32px;
  position: relative;
  cursor: pointer;
}

.show-all::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 4px;
  right: 12px;
  border-top: 1.5px solid var(--text);
  border-right: 1.5px solid var(--text);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.show-all:hover::before {
  right: 6px;
}

.catalog-spoiler {
  padding: 19px 0px 0px;
}

.filtr-spoiler-name {
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  padding: 0 24px 19px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.filtr-spoiler-name::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 6px;
  right: 32px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
     transition-delay: 0.2s;
}

.filtr-spoiler-name.open::before {
  top: 11px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
      transform: rotate(225deg);
}

.filtr-spoiler-name::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: var(--element);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
     transition-delay: 0.2s;
}

.filtr-spoiler-name.open::after {
  width: 100%;
}

.filtr-spoiler-content {
  display: none;
  padding: 16px 24px;
}

.button-check .filtr-spoiler-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 12px;
}

.button-check .filter-check {
  margin: 0 8px 12px 0;
  border-radius: 100px;
  border: 1px solid var(--border);
  position: relative;
  padding: 5px 12px;
  cursor: pointer;
}

.button-check .filter-check-name {
  position: relative;
  z-index: 1;
}

.button-check .jq-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  border: none !important;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-left: 0;
}

.button-check .jq-checkbox.checked {
  background: var(--border);
}

.button-check .jq-checkbox.checked .jq-checkbox__div {
  background: none;
}

.row2-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 10px;
}

.row2-check .filter-check {
  margin: 0 0px 12px 0;
  width: 100%;
}

.row2-check .jq-checkbox {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin: 0 8px 0 0;
}

.catalog-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 8px;
}

.catalog-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.catalog-left .catalog-span {
  margin-right: 24px;
}

.catalog-span {
  letter-spacing: 0.3px;
}

.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--text2);
}

.sort-now {
  margin-left: 4px;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.sort-now-name {
  position: relative;
}

.sort-now-name::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 6px;
  right: -12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.sort-now-name.open::before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
      transform: rotate(225deg);
  top: 5px;
}

.sort-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  background: var(--white);
  padding: 4px 10px;
}

.sort-item {
  display: block;
  padding: 4px 0;
}

.sort-item.active {
  display: none;
}

.catalog-right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.item-length {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 10px;
}

.item-length a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 4px;
}

.item-length a:first-child {
  margin-left: 0;
}

.item-length a.active {
  background: var(--background);
  pointer-events: none;
}

.catalog-item-list-wrap {
  width: calc(100% - 312px);
}

.catalog-item-list {
  margin-top: 24px;
}

.catalog-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: var(--white);
  padding: 32px;
  margin-bottom: 16px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.ce-ico {
  border: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  margin-right: 24px;
  border-radius: 16px;
}

.ce-ico img {
  max-width: calc(100% - 16px);
  max-height: calc(100% - 16px);
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 !important;
}

.ce-info {
  width: 624px;
  margin-right: auto;
  max-width: calc(100% - 168px - 432px);
}

.ce-info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 2px 0 12px;
}

.ce-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -2px 8px 0px 0px;
}

.ce-tag {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 8px;
  padding: 3px 6px 1px;
  border-radius: 2px;
  font-size: 72%;
  letter-spacing: 0.6px;
}

.red-tag {
  background: var(--element);
}

.no-webp .aspidblue-tag {
  background: #8070E2 url(../img/icons/Subtract.png) 6px center no-repeat; }

.aspidblue-tag {
  padding-left: 19px;
  text-decoration: none;
}

.artikul {
  color: var(--text2);
  font-size: 86%;
}

.warehouses {
  margin-top: 8px;
  width: 100%;
  font-size: 86%;
  color: var(--element3);
  padding-left: 18px;
  background: url(../img/icons/Done.svg) left center no-repeat;
}

.warehouses.nohave {
  color: var(--text2);
  /*background: url(../img/Close_round.svg) left center no-repeat;*/
  background: url(../img/icons/truck.svg) left center no-repeat;
}

.warehouses.zakaz {
  color: var(--text2);
  background: url(../img/icons/Close_round.svg) left center no-repeat;
}

.ce-name {
  font-size: 116%;
  line-height: 150%;
  display: block;
  margin-bottom: 10px;
}

.ce-description {
  font-size: 80%;
  line-height: 140%;
}

.ce-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 416px;
}

.ce-prices {
  width: 200px;
  padding-top: 4px;
}

.ce-price {
  color: var(--text2);
  display: block;
  padding-left: 12px;
  position: relative;
  font-size: 80%;
  margin-bottom: 7px;
  letter-spacing: 0.1px;
}

.ce-discount {
  display: block;
  margin: 7px 0;
  color: var(--element);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ce-price span {
  font-size: 108%;
}

.ce-price::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: 0px;
  background: var(--text2);
  border-radius: 50%;
}

.ce-price.active {
  color: var(--text);
  font-weight: 700;
  font-size: 98%;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.ce-price.active span {
  font-size: 88%;
}

.ce-price.active::before {
  background: var(--element);
  top: 50%;
}

.ce-buttons {
  width: 200px;
  margin-left: auto;
}

.buy-button {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
}

.buy-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background: var(--element);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 16px;
}

.buy-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 24px 15px 0px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 700;
  font-size: 86%;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  background: url(../img/icons/Cart.svg) calc(100% - 20px) center no-repeat;
}

.buy-button:hover span {
  color: var(--white);
  background-image: url(../img/icons/Cartw.svg) !important;
}

.buy-button:hover::before {
  height: 100%;
}

.buy-button.active span {
  color: var(--white);
  background-image: url(../img/icons/Donew.svg) !important;
}

.buy-button.active::before {
  height: 100%;
  background: var(--element3);
}

.byu-img {
  margin: -2px 0px 0px 8px;
}

.one-click {
  border-bottom: 1px dashed var(--text);
  padding-bottom: 1px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.one-click:hover {
  border-color: transparent;
}

.bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 45px 0 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 4px;
}

.pagination a:first-child {
  margin-left: 0;
}

.pagination a.active {
  background: var(--background);
  pointer-events: none;
}

.pagination a.multileckie {
  width: 11px;
}

.filtr-mob {
  display: none;
  position: fixed;
  left: 0;
  bottom: 80px;
  z-index: 2;
  width: 100%;
  height: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* background: #F9FAFF; */
}

.filtr-mob span {
  cursor: pointer;
  color: var(--white);
  text-transform: uppercase;
  background: var(--element);
  border-radius: 100px;
  padding: 14px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 94%;
  line-height: 120%;
}

.filter-ico {
  margin-right: 8px;
}

.mobile-filter {
  display: none;
  padding: 16px 24px;
}

.mobile-clear-filter {
  width: 100px;
  color: var(--text2);
}

.filtr-mob-zag {
  margin: 0 auto;
  font-weight: 700;
  font-size: 114%;
}

.right-mobfi {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.finded-mob {
  display: none;
  cursor: pointer;
  color: var(--white);
  text-transform: uppercase;
  background: var(--element);
  padding: 22px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 94%;
  line-height: 120%;
}

.catalog-one .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.catalog-one .warehouses {
  width: 100%;
  margin: 0 0 24px;
}

/*.catalog-one .ce-info-top {
  margin-bottom: 24px;
}*/

/* @media (max-width: 1560px) { */

.catalog-one .ce-bottom .flex {
  width: calc(100% - 464px);
  min-width: 200px;
}

/* } */

/* @media (max-width: 1560px) { */

.catalog-one .small {
  margin-bottom: 14px;
}

/* } */

/* @media (max-width: 1560px) { */

.catalog-one .ce-buttons {
  margin-right: 14px !important;
}

/* } */

/* @media (max-width: 1560px) { */

.catalog-one .doc:last-child {
  margin-bottom: 0;
}

/* } */

.catalog-one-part {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.catalog-one-top-left {
  width: calc(70% - 16px);
}

/* @media (max-width: 1560px) { */

.catalog-one-top-left {
  width: calc(68% - 16px);
}

/* } */

.ce-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ce-bottom .ce-prices {
  margin-right: 56px;
  padding-top: 2px;
}

.ce-bottom .ce-price {
  font-size: 94%;
  margin-bottom: 12px;
}

.ce-bottom .ce-discount {
  font-size: 12px;
  margin: 10px 0;
}

.ce-bottom .ce-price span {
  font-size: 121%;
}

.ce-bottom .ce-price.active {
  font-size: 114%;
  margin-bottom: 9px;
}

.ce-bottom .ce-buttons {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 28px;
  max-width: 100%;
}

.ce-bottom .buy-button {
  padding-right: 24px;
}

.ce-bottom .buy-button span {
  color: var(--white);
  background-image: url(../img/icons/Cartw.svg);
  padding: 20px 24px;
  border: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-position: right center;
  margin: 0 auto 0;
}

.ce-bottom .buy-button::before {
  height: 100%;
}

.ce-bottom .one-click {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 86%;
  border-radius: 16px;
}

.ce-ico-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /* margin-right: 64px; */
  margin-right: 24px;
}

.ce-ico-gallery img {
  margin: 0 !important;
}
.ce-gallery-previews-wrap {
  width: 80px;
  height: 344px;
  overflow: hidden;
  position: relative;
  margin-right: 16px;
}

.ce-gallery-previews-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 32px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$whitefff",endColorstr="$whitefff",GradientType=1);
}

.ce-gallery-previews {
  width: 100px;
  height: 344px;
  overflow: auto;
}

.ce-gallery-preview {
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-top: 8px;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
}

.ce-gallery-preview:first-child {
  margin-top: 0;
}

.ce-gallery-preview img {
  max-width: calc(100% - 8px);
  max-height: calc(100% - 8px);
}

.ce-gallery-preview::before {
  content: "";
  display: block;
  width: 0%;
  height: 3%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: var(--element);
  pointer-events: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.ce-gallery-preview.active::before {
  width: 100%;
}

.cebig-ico {
  width: 344px;
  height: 344px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  border-radius: 16px;
}

.cebig-ico a {
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  display: none;
}

.cebig-ico a.active {
  display: block;
}

.cebig-ico:first-child {
  margin-top: 0;
}

.cebig-ico img {
  max-width: 100%;
  max-height: 100%;
}

.small {
  font-size: 88%;
}

.docs {
  margin-top: 28px;
}

.doc {
  display: block;
  padding-left: 24px;
  background: url(../img/icons/doc.svg) left center no-repeat;
  margin-bottom: 10px;
  font-size: 94%;
  line-height: 150%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  word-break: break-word;
}

.doc:hover {
  color: var(--element);
}

.doc span {
  color: var(--text2);
}

.catalog-one-top-right {
  width: 32%;
  margin-left: auto;
}

.catalog-one-top-right p {
  line-height: 150%;
  margin-bottom: 16px;
}

.catalog-one-top-right ul {
  margin: -6px 0 21px 19px;
  letter-spacing: 0.3px;
  list-style: none;
}

.catalog-one-top-right ul li {
  position: relative;
  margin-bottom: 7px;
}

.catalog-one-top-right ul li::before {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 8px;
  left: -18px;
  background: var(--text);
}

.dashed-link {
  border-bottom: 1px dashed var(--text);
}

.block-links {
  margin-top: 25px;
  margin-bottom: -5px;
}

.block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 19px 16px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 86%;
  margin-bottom: 16px;
  border-radius: 16px;
}

.dopp-info {
  color: var(--text2);
  font-size: 86%;
}

.catalog-one-wide {
  padding: 48px;
  width: 100%;
  margin-top: 16px;
}

.catalog-ico-wgrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 144px;
  height: 144px;
  overflow: hidden;
}

.catalog-ico-wgrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.catalog-ico {
  max-height: 130px;
  max-width: 130px;
  width: auto !important;
}

.catalog-text {
  margin: 0px 40px 0px auto;
  width: 176px;
  text-transform: uppercase;
  font-size: 92%;
  line-height: 164%;
  color: var(--text);
}

.countstr {
  font-size: 86%;
  margin-right: 10px;
}

input[type=number] {
  -moz-appearance: textfield;
}

.filter-check input {
  display: none;
}

.filter-check .checkbox-ico {
  margin-left: auto;
  margin-top: 5px;
}

span.importInForm {
  font-weight: 500;
  color: var(--element3);
}

span.onlySchemaOrg {
  display: none;
}

.catalog-one-part .half {
  width: calc(50% - 8px);
}

.guarantee-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.guarantee-info img {
  margin: 0 8px 0 0 !important;
}

.guarantee-info span {
  margin-left: 4px;
  color: var(--element);
}

.color-block {
  display: block;
  background: var(--element);
  color: var(--white);
  padding: 10px 16px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 86%;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 16px !important;
}

.no-webp .design-block {
  background: url(../img/bg.jpg) center/cover no-repeat; }

.design-block,
.design-block h3 {
  color: #FFFFFF;
  font-weight: 500;
}

.design-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.design-block-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: 80%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.design-block-content ul li {
  width: calc(25% - 11px);
  padding-left: 26px;
}

.design-block-content ul li::before {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(127, 134, 168, 0.3);
}

.design-block-content ul li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FD5761), to(#EA232F));
  background: -o-linear-gradient(#FD5761, #EA232F);
  background: linear-gradient(#FD5761, #EA232F);
}

.red-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--element);
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 24px;
  border-radius: 16px;
}

.tovar-right {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 20;
  padding: 48px 32px;
  max-width: 100%;
}

.tovar-right .full-rice {
  margin: 16px 0 40px;
}

.tovar-right .more-button {
  margin-top: 32px;
}

.tovar-right .tovar-close {
  display: none;
}

.popup-catalog .catalog-element {
  padding: 0;
}

.popup-catalog .ce-ico {
  width: 80px;
  height: 80px;
  margin-right: 0;
}

.popup-catalog .ce-info {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 100%;
  max-width: 100%;
}

.popup-catalog .warehouses {
  width: unset;
  margin: 0 0 0 8px;
}

.popup-catalog .ce-buttons {
  width: calc(100% - 96px);
  margin: 4px 0 0 auto;
}

.popup-catalog .amount-wrap {
  margin: 16px 0 0 0px;
}

.oneclick {
  display: none;
}

.tobasket {
  display: none;
}

.lead-magnet {
  position: fixed;
  left: 50%;
  bottom: 100px;
  z-index: 19;
  width: 100%;
  max-width: 816px;
  min-height: 248px;
  background: conic-gradient(from 0deg at 0% 100%, #6B7ACB -191.25deg, #1C2840 91.88deg, #6B7ACB 168.75deg, #1C2840 451.88deg);
  padding: 60px 0 0 36px;
  -webkit-transform: translateX(2000px);
      -ms-transform: translateX(2000px);
          transform: translateX(2000px);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.lead-magnet.active {
  -webkit-transform: translateX(-36px);
      -ms-transform: translateX(-36px);
          transform: translateX(-36px);
  opacity: 1;
}

.lead-magnet-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.lead-magnet-close {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 32px;
  right: 28px;
  background: url("../img/icons/Close_round.svg") center center/contain no-repeat;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease 0s;
  transition: -webkit-transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}

.lead-magnet-close:hover {
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
}

.lead-magnet-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lead-magnet-img {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.lead-magnet-title {
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.lead-magnet-descr {
  font-size: 18px;
  color: #7F86A8;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.lead-magnet-phone {
  font-size: 36px;
  line-height: 43px;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding-left: 25px;
}

.lead-magnet-phone::before {
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background: #EA232F;
  position: absolute;
  top: 0;
  left: 0;
}

.lead-magnet-phone::after {
  display: block;
  content: "";
  width: calc(100% - 28px);
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  bottom: 2px;
  left: 28px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.lead-magnet-phone:hover::after {
  opacity: 1;
}

.lead-magnet-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
}

.lead-magnet-wrap a {
  color: #FFFFFF;
}

.lead-magnet-text {
  text-align: center;
  font-size: 20px;
}

.lead-magnet-text span {
  color: #7F86A8;
}

.lead-magnet-text .red {
  font-size: 18px;
}

.lead-magnet-title {
  margin: 0 0 16px;
}

.lead-magnet-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 10px;
}

.lead-magnet-row > * {
  margin: 0 4px;
}

.lead-magnet-row svg {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.lead-magnet-bg.bg2 {
  bottom: auto;
  right: auto;
  top: 0;
  left: 40px;
}

.red {
  color: var(--element);
}

.found-in-categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.found-in-categories a {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  color: var(--text);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.found-in-categories a:hover {
  border-color: var(--element);
}

.found-in-categories a span {
  color: var(--text2);
}

.clear-basket {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
  color: var(--text2);
  margin: 10px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.clear-basket span {
  -webkit-text-decoration: underline 2px dotted;
          text-decoration: underline 2px dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.clear-basket:hover {
  color: var(--element);
}

.basket-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 400px;
  grid-template-columns: 1fr 400px;
  gap: 12px 24px;
}

.basket-content .ce-info {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 24px;
}

.basket-form {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.full-rice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 16px;
  margin-bottom: 10px;
  width: 100%;
}

.count {
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
}

.basket-form hr {
  border: none;
  display: block;
  width: 100%;
  height: 1px;
  background: #E9EEF9;
  margin: 32px 0 0;
}

.has-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  gap: 10px;
}

.has-checkbox input {
  position: absolute;
  visibility: hidden;
}

.has-checkbox span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.amount-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 15px 0 0 -4px;
  font-size: 114%;
}

.amount-button {
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--background);
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 12px;
}

.input-number {
  height: 40px;
  border: 1px solid #E9EEF9;
  margin-left: 8px;
  text-align: center;
  width: 50px;
  font-size: 16px;
}

.input-number:focus {
  border-color: #EA232F;
}

.amount-button::before,
.amount-button::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -7px;
  background: #6C88A8;
}

.amount-button:hover::before,
.amount-button:hover::after {
  background: var(--element);
}

.amount-button.disabled {
  pointer-events: none;
}

.amount-button.disabled::before,
.amount-button.disabled::after {
  opacity: 0.2;
}

.amount-plus {
  margin-left: 8px;
}

.amount-plus::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}

.amount {
  margin-left: 16px;
  margin-right: 4px;
}

.delete-product {
  color: var(--text2);
  border-bottom: 1px dashed;
  display: inline-block;
  margin: 18px 0 0 -4px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.delete-product:hover {
  color: var(--element);
  border-color: transparent;
}

.regauto-over {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #273253;
  opacity: 0.5;
  z-index: 13;
}

.regauto {
  display: none;
  position: fixed;
  top: 0px;
  right: calc((100% - 1560px) / 2);
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 14;
  overflow: auto;
}

.regauto-close {
  display: none;
  position: fixed;
  top: 32px;
  right: 432px;
  z-index: 13;
  cursor: pointer;
}

.regauto-close path {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.regauto-close:hover path {
  stroke: #EA232F;
}

.reg-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 32px 32px 0px;
  border-bottom: 1px solid #E9EEF9;
}

.reg-tab {
  margin-right: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #273253;
  font-size: 85%;
  cursor: pointer;
  display: block;
  padding-bottom: 25px;
  position: relative;
  letter-spacing: 1px;
}

.reg-tab::before {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #EA232F;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.reg-tab.active::before {
  width: 100%;
}

.reg-tab-cotents {
  padding: 48px 32px 32px;
}

.reg-tab-content {
  display: none;
}

.reg-tab-content.active {
  display: block;
}

.lk-content {
  padding-top: 40px;
}

.lk-content h3 {
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.7px;
}

.lk-content .forma {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 920px;
}

.lk-content .passwords-do-not-comply {
  color: #EA232F;
  display: none;
}

.lk-content-tab:not(:first-child) {
  display: none;
}

#registrationForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
}

#registrationForm .half {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.similar-products-wrap .ce-ico {
  width: 88px;
  height: 88px;
}
.similar-products-wrap .catalog-element {
  padding: 10px;
}
.similar-products-wrap .buy-button:last-child {
  margin-bottom: 0;
}

@media (max-width: 1720px) {
  .lead-magnet.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .lead-magnet {
    left: auto;
    right: 80px;
    bottom: 50px;
  }
}

@media (max-width: 1560px) {
  .catalog-item {
    width: calc(33.33% - 16px);
  }

  .catalog-filtr {
    margin-top: -8px;
  }

  .ce-info {
    max-width: calc(100% - 168px - 262px);
  }

  .ce-right {
    width: 200px;
  }

  .ce-right {
    width: 200px;
  }

  .ce-prices + .ce-buttons {
    margin: 12px 0 0 0;
  }

  .ce-ico-gallery {
    margin-right: 24px;
  }

  .catalog-one-top-right {
    width: 32%;
  }

  .lead-magnet {
    max-width: 690px;
    min-height: 175px;
    padding: 27px 0 0 30px;
    right: 104px;
  }

  .lead-magnet-bg {
    bottom: -15px;
    width: 55%;
  }

  .lead-magnet-close {
    top: 22px;
    right: 16px;
  }

  .lead-magnet-img {
    width: 120px;
    height: 120px;
  }

  .lead-magnet-title {
    font-size: 20px;
  }

  .lead-magnet-descr {
    font-size: 16px;
  }

  .lead-magnet-phone {
    font-size: 28px;
    line-height: 34px;
    margin-top: 26px;
  }

  .regauto {
    right: 0;
  }
}

@media (min-width: 1401px){
  .finded-mob {
    display: none !important;
  }
}

@media (max-width: 1400px) {
  .catalog-list .catalog-ico-wgrap {
    width: 80px;
    height: 80px;
  }

  .catalog-list .catalog-ico {
    height: 56px;
  }

  .catalog-list .catalog-text {
    margin: 0px 36px 0px auto;
    width: calc(100% - 116px);
    font-size: 79%;
    letter-spacing: 0.85px;
  }

  .catalog-item {
    width: calc(50% - 16px);
    margin-bottom: 16px;
    background: none;
  }

  .catalog-item-top {
    border: none;
  }

  .catalog-sublist {
    display: none;
  }

  .catalog-more {
    display: none;
  }

  .other-lack {
    padding: 34px 0 16px;
  }

  .other-lack .zag-vrez {
    display: none;
  }

  .catalog-page {
    padding-top: 64px;
    background: var(--white);
  }

  .catalog-page .text-bottom {
    display: none;
  }

  .catalog-page .top-slider-wrap {
    display: none;
  }

  .catalog-page .zag-title {
    font-size: 176%;
  }

  .catalog-page h1 {
    font-size: 106%;
    line-height: 164%;
    margin-bottom: 28px;
  }

  .title {
    margin: 32px 0 36px;
  }

  .catalog-item.parent {
    position: relative;
  }

  .catalog-item.parent::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 34px;
    right: 38px;
    border-top: 2px solid var(--text);
    border-right: 2px solid var(--text);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }

  .catalog-filtr {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 3;
    overflow: auto;
  }

  .finded-mob + .filter-block:last-child {
    margin-bottom: 60px;
  }

  .filter-params {
    margin-bottom: -2px;
  }

  .clear-filter {
    display: none;
  }

  .filter-check .jq-checkbox {
    margin-left: 16px;
  }

  .catalog-item-list-wrap {
    width: 100%;
  }

  .ce-tags {
    width: 100%;
    margin: -2px 0 20px 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .found-in-categories ~ .pagination {
    margin: 6px 0 88px;
  }

  .filtr-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .ndes {
    display: none;
  }

  .finded-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .catalog-one {
    margin-top: -7px;
  }

  .catalog-one-top-left {
    width: 100%;
  }

  .catalog-one-top-left .ce-tags {
    /*width: unset;*/
    margin: -2px 8px 0px 0;
  }

  .catalog-one-top-right {
    width: 100%;
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .right-left,
  .right-right {
    width: calc(50% - 12px);
  }

  .block-links {
    margin-top: 0;
  }

  .dopp-info {
    margin-bottom: 0 !important;
  }

  .catalog-one .dopp-info + .dopp-info {
    margin-top: 16px;
  }

  .design-block-content ul {
    width: 66.66%;
    margin-bottom: -24px;
  }

  .design-block-content ul li {
    width: calc(50% - 22px);
    margin-bottom: 24px;
  }

  .lead-magnet {
    right: 26px;
    bottom: 82px;
    max-width: 630px;
  }

  .basket-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .basket-form h3 {
    width: 100%;
  }

  .basket-form label {
    width: calc(50% - 8px) !important;
  }

  .regauto {
    height: calc(100% - 56px);
    width: 100%;
  }

  .regauto-close {
    top: 20px;
    right: 25px;
    z-index: 14;
  }

  .regauto-close path {
    stroke: #273253;
  }
}

@media (max-width: 1400px) and (max-width: 1400px) {
  .catalog-page .title {
    margin: 32px 0 16px;
  }
}

@media (max-width: 1110px) {
  .lead-magnet-close {
    background-size: cover;
    width: 14px;
    height: 14px;
    top: 16px;
  }

  .lead-magnet-phone {
    font-size: 22px;
    line-height: 26px;
    margin-top: 20px;
  }
}

@media (max-width: 1100px) {
  .lead-magnet {
    max-width: 550px;
    min-height: 155px;
  }

  .lead-magnet-img {
    width: 90px;
    height: 90px;
    margin-right: 25px;
  }

  .lead-magnet-title {
    font-size: 20px;
  }

  .lead-magnet-title {
    font-size: 18px;
  }

  .lead-magnet-descr {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .found-in-categories {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .basket-form label {
    width: 100% !important;
  }

  #registrationForm .half {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media (max-width: 1000px) {
  .ce-info {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 991px) {
  .design-block-content ul {
    width: 100%;
    margin: 0 0 8px;
    display: block;
  }

  .design-block-content ul li {
    width: 100%;
    margin: 0 0 16px;
  }
}

@media (max-width: 768px) {
  .lead-magnet {
    max-width: none;
    right: 0;
    bottom: 56px;
    -webkit-transform: translateY(260px);
        -ms-transform: translateY(260px);
            transform: translateY(260px);
  }
}

@media (max-width: 680px) {
  .catalog-one-part .half {
    width: 100%;
  }

  .found-in-categories {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .finded-mob {
    bottom: 78px;    
  }
  .catalog-filtr {
    padding-bottom: 78px;
  }
}

@media (max-width: 675px) {
  .catalog-list {
    width: 100%;
  }

  .catalog-list .catalog-ico-wgrap {
    margin: 0;
  }

  .catalog-list .catalog-text {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .catalog-item {
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }

  .catalog-page h1 {
    font-size: 117%;
    line-height: 150%;
    margin-bottom: 24px;
    letter-spacing: 0.1px;
  }

  .title {
    margin: 20px 0 26px;
  }

  .title:first-child {
    margin: 32px 0 24px;
  }

  .catalog {
    margin-bottom: 92px;
  }

  .filter-check .jq-checkbox {
    margin-left: auto;
  }

  .catalog-top .catalog-right {
    display: none;
  }

  .catalog-span {
    width: 100%;
  }

  .sort {
    margin-top: 14px;
  }

  .catalog-right {
    margin: 20px 0 0 0;
  }

  .catalog-item-list {
    margin-top: 18px;
  }

  .catalog-element {
    padding: 24px 24px 32px;
  }

  .ce-ico {
    margin-right: auto;
    width: calc(100vw - 315px);
    height: calc(100vw - 315px);
  }

  .ce-ico img {
    max-width: calc(100% - 10px);
    max-height: calc(100% - 10px);
  }

  .ce-info {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .ce-info-top {
    margin-bottom: 18px;
  }

  .ce-name {
    font-size: 130%;
    margin-bottom: 15px;
    max-height: 55px;
    overflow: hidden;
  }

  .ce-description {
    display: none;
  }

  .buy-button {
    margin-bottom: 18px;
  }

  .found-in-categories ~ .pagination {
    margin: 16px 0 74px;
  }

  .catalog-one .ce-info-top {
    display: block;
  }

  .catalog-one .ce-buttons {
    margin-right: 0 !important;
  }

  .catalog-one-part {
    padding: 24px;
  }

  .catalog-one-top-left .ce-tags {
    width: 100%;
    margin: 0px 20px 16px 0;
  }

  .ce-ico-gallery {
    width: 100%;
    margin-top: 0;
  }

  .ce-gallery-previews-wrap {
    width: 100%;
    height: 80px;
    margin: 16px 0 26px 0;
  }

  .ce-gallery-previews-wrap::before {
    height: 100%;
    width: 32px;
    left: auto;
    right: 0px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  }

  .ce-gallery-previews {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .ce-gallery-preview {
    margin: 0 0 0 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .ce-gallery-preview:first-child {
    margin-left: 0;
  }

  .cebig-ico {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: calc(100vw - 80px);
    height: calc(100vw - 80px);
  }

  .docs {
    margin-top: 24px;
  }

  .right-left,
  .right-right {
    width: 100%;
  }

  .block-links {
    margin-top: 24px;
  }

  .catalog-one-wide {
    padding: 32px 24px;
    -webkit-box-shadow: 0px 16px 32px rgba(137, 152, 201, 0.1);
    box-shadow: 0px 16px 32px rgba(137, 152, 201, 0.1);
  }

  .catalog-ico-wgrap {
    margin: 18px auto 0px;
    width: 80px;
    height: 80px;
  }

  .catalog-ico {
    height: 80px;
  }

  .catalog-text {
    font-size: 70%;
    line-height: 150%;
    width: 100%;
    margin: 10px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
  }

  .tovar-right {
    overflow: auto;
  }

  .tovar-right.to-basket {
    overflow: auto;
    top: auto;
    bottom: 0;
    height: auto;
  }

  .tovar-right .tovar-close {
    display: block;
  }

  .tovar-right .tovar-close path {
    stroke: #7F86A8;
  }

  .oneclick {
    margin-bottom: 32px;
  }

  .lk-content {
    padding-top: 24px;
  }

  .lk-content h3 {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
  }

  .lk-content h3::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 6px;
    right: 9px;
    border-right: 2px solid #273253;
    border-bottom: 2px solid #273253;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .lk-content h3.open::before {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
        transform: rotate(225deg);
    top: 12px;
  }
}

@media (max-width: 580px) {
  .lead-magnet {
    padding: 23px 0 0 20px;
    min-height: 125px;
  }

  .lead-magnet-bg {
    width: 45%;
    bottom: 0;
  }

  .lead-magnet-img {
    width: 75px;
    height: 75px;
    margin-right: 20px;
  }

  .lead-magnet-descr {
    font-size: 12px;
    margin-top: 5px;
  }

  .lead-magnet-phone {
    font-size: 18px;
    line-height: 22px;
    margin-top: 16px;
    padding-left: 15px;
  }

  .lead-magnet-phone::after {
    width: calc(100% - 18px);
    left: 18px;
  }
}

@media (max-width: 480px) {
  .lead-magnet {
    min-height: 150px;
    padding: 15px 0 0 15px;
  }

  .lead-magnet-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .lead-magnet-text {
    max-width: 200px;
  }

  .lead-magnet {
    padding-left: 0;
  }

  .lead-magnet-text {
    max-width: 280px;
  }

  .lead-magnet-text span {
    display: none;
  }
}

.webp .aspidblue-tag { background: #8070E2 url(../img/icons/Subtract.webp) 6px center no-repeat; }

.webp .design-block { background: url(../img/bg.webp) center/cover no-repeat; }