* {
  box-sizing: border-box;
}

.products-list {
  max-width: 1400px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
  margin: 0 auto;
  border: 1px solid #ebebeb;
  font-size: 14px;
}
.products-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  min-height: 40px;
}

.products-list__head .product-card__image,
.products-list__head .product-card__number-in-photo,
.products-list__head .product-card__price,
.products-list__head .product-card__footer {
  width: 10%;
}
.products-list__head .product-card__title {
  width: 60%;
}
.products-list__column {
  font-weight: bold;
  text-align: center;
}
.products-card__colum {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  padding: 5px;
}

.product-card__image {
  width: 10%;
}
.product-card__price {
  width: 12%;
}

.product-card__number-in-photo {
  width: 8%;
}
.product-card__image img {
  width: 55px;
  height: 55px;
}

.product-card__center {
  display: flex;
  flex-direction: column-reverse;
  border-left: 1px solid #ebebeb;
  width: 60%;
  padding-left: 10px;
}

.product-card__center .product-card__article {
  display: flex;
  flex-direction: column;
}

.products-card__colum:not(:first-child) {
  display: flex;
  align-self: stretch;
  align-items: center;
  border-left: 1px solid #ebebeb;
}

.product-card__article span {
  width: 100%;
  color: #999;
  padding-bottom: 5px;
}
.item_title {
  margin: 5px 0;
  font-size: 15px;
}

.products-card__colum.product-card__title {
  justify-content: start;
  border: none;
}
.product-card__footer button {
  width: 100%;
  padding: 10px;
  margin-left: 5px;
  background-color: #0238aa;
  color: #fff;
}
.imageOpen {
  margin-bottom: 30px;
}
.openImage {
  cursor: zoom-in;
}
.imageOpen {
  z-index: 1000;
  display: flex;
  justify-content: center;
}
.popupImage {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  padding: 20px;
  cursor: pointer;
}
.popupImage img {
  max-height: 100%;
  border: 10px solid #fff;
  cursor: default;
}
.closeImg {
  display: block;
  position: fixed;
  width: 20px;
  height: 20px;
  top: 30px;
  right: 30px;
  background: url(../images/close.png);
  background-repeat: no-repeat;
  cursor: pointer;
}

@media (max-width: 765px) {
  .text-block-6 {
    font-size: 12px;
  }

  .product-card__center {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    padding-left: 5px;
  }

  .product-card__price {
    width: 20%;
  }
  .product-card__center .product-card__article {
    display: flex;
    justify-content: start;
    width: 100%;
    margin-bottom: 5px;
  }

  .product-card__center .product-card__title {
    padding-left: 0;
    border: none;
  }
  .product-card__image {
    /* display: none */;
  }
  .products-list__head .product-card__article {
    display: none;
  }
  .item_title {
    margin: 5px 0;
  }
}

.breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
  margin-top: 15px;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.breadcrumbs-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}

.breadcrumbs-item:not(:first-child):after {
  content: ">";
  margin-left: 5px;
}

.breadcrumbs-link {
  color: #0b56ea;
  text-decoration: none;
}

.breadcrumbs-link:not(span):hover {
  text-decoration: underline;
}

.breadcrumbs-link.current {
  color: #333;
}
