@charset "UTF-8";
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.animated-element {
  animation: fadeInOut 3s;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 2rem;
}

.gap-1 {
  gap: 0.5rem;
}

.cursor-pointer {
  cursor: pointer;
}

.article-block-copy {
  font-size: 14px;
  justify-content: space-between;
}
.article-block-copy>div {
  flex: 1;
}
.article-block-copy .cursor-pointer {
  position: relative;
}
.article-block-copy .cursor-pointer > svg {
  fill: rgba(140, 140, 140, 0.95);
}
.article-block-copy .cursor-pointer > svg:hover {
  fill: rgba(44, 44, 44, 0.95);
}
.article-block-copy .cursor-pointer:hover {
  top: 1px;
}
.article-block-copy .cursor-pointer:focus {
  top: 2px;
}
.article-block-copy__result {
  visibility: hidden;
  font-size: 11px;
  color: rgb(0, 0, 0);
  background-color: rgba(0, 140, 7, 0.22);
  border-radius: 3px;
  padding: 2px 3px;
}

/* Какая то стандартная фигня */
.product-store-info .product-store-info__quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  color: #757575;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
}

.product-store-info .product-store-info__popup {
  position: relative;
  display: none;
}

.product-store-info.product-store-info--active .product-store-info__popup {
  display: block;
  z-index: 100;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

.product-store-info .product-store-info__quantity-in-stock,
.product-store-info .product-store-info__quantity-dialer {
  display: inline-block;
  border-bottom: 1px dotted;
  cursor: pointer;
}

.product-store-info .product-store-info__quantity-status {
  cursor: pointer;
  border-bottom: 1px dotted;
}

.product-store-info .product-store-info__quantity-status--in-stock {
  display: none;
}

.product-store-info .product-store-info__quantity-status--order {
  display: none;
}

.product-store-info .product-store-info__quantity-status.product-store-info__quantity-status--off {
  border-bottom: none;
  cursor: default;
}

.product-store-info .product-store-info__quantity-in-store {
  display: none;
}

.product-store-popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* position: absolute; */
  background: #fff;
  z-index: 10;
  border: 1px #f2f2f2 solid;
  border-radius: 5px;
  min-width: 240px;
  padding: 20px 10px 10px;
  box-shadow: 0 0 10px #999;
  text-align: left;
}

.product-store-popup:after {
  display: none;
}

.product-store-popup .product-store-popup__section-title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: #000000;
}

.product-store-popup .product-store-popup__item {
  display: flex;
  justify-content: space-between;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}
.product-store-popup .product-store-popup__item:not(:last-of-type) {
  margin-bottom: 5px;
}
.product-store-popup .product-store-popup__item:after {
  display: none;
}

.product-store-popup .product-store-popup__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-store-popup .product-store-popup__items:after {
  display: none;
}

.product-store-popup .product-store-popup__group-title {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 5px;
}

.product-store-popup .product-store-popup__quantity {
  white-space: nowrap;
}

.product-store-info .product-store-info__popup-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: no-repeat;
}

.product-store-popup__group {
  margin-bottom: 10px;
}

.product-store-popup .product-store-popup__separator {
  flex-grow: 1;
  min-width: 20px;
  border-bottom: 2px rgb(177, 170, 179) dotted;
  margin: 0 5px;
}

[data-status-basket=subscribe]:not(.subscribe-active) {
  display: none;
}

.stores-select .stores-select__content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.stores-select .stores-select__caption {
  padding-bottom: 7px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.stores-select .stores-select__status {
  position: relative;
  padding: 0 40px 0 14px;
  height: 40px;
  order: 1;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  line-height: 37px;
  color: #999;
}

.stores-select .stores-select__status-value {
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stores-select .stores-select__status:after {
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  border-bottom: 2px solid #A7A7A7;
  border-right: 2px solid #A7A7A7;
  transition: all 0.15s ease-in-out;
}

.stores-select .stores-select__list {
  display: none;
  position: absolute;
  order: 2;
  margin: 0;
  padding: 6px 15px;
  z-index: 100;
  top: 40px;
  list-style: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #e6e6e6;
  border-top: none;
}

.stores-select--active .stores-select__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stores-select--active .stores-select__status:after {
  transform: rotate(-135deg);
}

.stores-select .stores-select__actions {
  margin: 10px -15px -6px;
}

.stores-select__apply-btn {
  width: 100%;
  background: #0F4AD4;
  color: #fff;
  border: 0;
  height: 30px;
  cursor: pointer;
}

.stores-select .stores-select__txt {
  font-size: 13px;
}

.stores-select .stores-select__label {
  display: flex;
  align-items: center;
  font-weight: normal;
  padding-right: 20px;
}

.stores-select .stores-select__square {
  position: relative;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  background: url(../images/check-filter.png) no-repeat center center;
  cursor: pointer;
  background-size: cover;
}

.stores-select .stores-select__check-sklad {
  display: none;
}

.stores-select input:checked + .stores-select__square:before {
  content: "";
  position: absolute;
  min-width: 20px;
  min-height: 20px;
  background: url(../images/check-filter-active.png) no-repeat center center;
  background-size: cover;
}

.checkbox-items-block__list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.checkbox-items-block .checkbox-items-block__txt {
  font-size: 13px;
}

.checkbox-items-block .checkbox-items-block__label {
  display: flex;
  align-items: center;
  font-weight: normal;
  padding-right: 20px;
}

.checkbox-items-block .checkbox-items-block__square {
  position: relative;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  background: url(../images/check-filter.png) no-repeat center center;
  cursor: pointer;
  background-size: cover;
}

.checkbox-items-block .checkbox-items-block__input {
  display: none;
}

.checkbox-items-block input:checked + .checkbox-items-block__square:before {
  content: "";
  position: absolute;
  min-width: 20px;
  min-height: 20px;
  background: url(../images/check-filter-active.png) no-repeat center center;
  background-size: cover;
}

.search-item .search-item__in_stock {
  flex: 0 0 140px;
  margin-left: auto;
}

.search-item .product-store-info .product-store-info__quantity {
  padding: 0;
  font-size: 10px;
  text-align: right;
  align-items: flex-end;
  position: relative;
}

.search-item .product-store-popup {
  transform: translateY(calc(-100% - 33px)) translateX(-80%);
}
.search-item .product-store-popup::before {
  right: -45%;
}

.search_result.active {
  flex-wrap: wrap;
}

.stores-form--search-title {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 15px;
  gap: 16px;
  position: sticky;
  z-index: 1;
  top: -20px;
  background: #fff;
}

.stores-form--search-title .stores-select {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stores-form--search-title .stores-select .stores-select__caption {
  padding-bottom: 0;
}

.stores-form--search-title .stores-select .stores-select__content {
  flex-grow: 1;
}

.search-item__price-current {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .product-store-info .product-store-info__quantity {
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
  .snippet .product-store-info .product-store-info__quantity {
    text-align: center;
    align-items: center;
  }
  .search-item .search-item__in_stock {
    margin-right: 10px;
    flex: 0 0 100px;
  }
  .stores-form--search-title {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #title-search .search_result.active {
    flex-wrap: wrap;
    height: calc(100vh - 140px);
    max-height: unset;
  }
  .search-item .search-item__title {
    display: block;
    font-size: 13px;
    line-height: 16px;
  }
}
@media (max-width: 570px) {
  .product-store-popup {
    /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
  }
  .stores-select .stores-select__content {
    max-width: 230px;
  }
  .search-item .product-store-info .product-store-info__quantity {
    font-size: 9px;
  }
}
@media (max-width: 380px) {
  .stores-form--search-title .stores-select .stores-select__caption {
    font-size: 13px;
  }
}

/*# sourceMappingURL=style.css.map */

.product-store-popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  background: rgba(247, 247, 247, 1);
  z-index: 10;
  border: 1px #f2f2f2 solid;
  border-radius: 5px;
  max-width: 360px;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px rgba(6, 21, 66, 0.1);
  text-align: left;
  width: 100%;
  min-width: 360px;
  transform: translateY(calc(-100% - 33px)) translateX(-50%);
  border-radius: 8px;
}

.product-store-popup::before {
  content: "";
  width: 20px;
  height: 20px;
  background: rgb(247, 247, 247);
  transform: rotateZ(45deg) translateY(6px) translateX(6px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 3px 3px 6px -1px rgba(6, 21, 66, 0.1);
  z-index: -1;
}

.product-store-info__quantity:hover>.product-store-info__popup,
.product-store-info__quantity:active>.product-store-info__popup,
.product-store-info__quantity:focus>.product-store-info__popup,
.product-store-info__popup:hover {
  display: block;
}

.product-list-desc__cell.w-50 .wishbtn span {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .product-store-popup {
    transform: translateY(calc(-100% - 33px)) translateX(-29%);
  }
}
.cart__item_count_wpap.product__count input {
  background: transparent;
}
.product_list_btns {
  align-items: center;
}

@media screen and (max-width: 767px) {
	.product_list_btns {
		/* width: 100%; */
		/* justify-content: stretch; */
		/* column-gap: 0; */
	}
	.catalog_element_buy_wrap_all {
		width:100%;
	}
}


/* @media (min-width: 768px) { */
  .product-store-info .product-store-info__popup-close {
    display: none;
  }
/* } */

.product_list_btns .add-to-cart {
  background-position: left calc(50% - 30px) center;
}

.about__content #form_search {
  z-index: initial;
}


.search-item .catalog_element_buy_wrap_all {
	margin:0;
}
.search-item .catalog_element_buy_wrap_all .cart__item_count {
	margin:0;
}
.search-item .catalog_element_buy_wrap_all .catalog_element_buy_btn {
	margin:0;
}
.search-item .cart__item_count_wpap.product__count {
	min-height:40px;
}
.search-item .product__actions,
.cart__item .product__actions {
  display:none!important
}

.catalog_element_buy_wrap_all .cart__item_count .product__count_field {
  background-color: transparent;
  font-size:12px;
}
.catalog_element_buy_wrap_all .cart__item_count .cart__count_plus,
.catalog_element_buy_wrap_all .cart__item_count .cart__count_minus {
  font-size:22px;
  width: 30px;
}
.catalog_element_buy_wrap_all .cart__item_count .product__count_field {
  width: calc(100% - 60px)
}

