.title-container {
  padding: 0;
  margin-top: 70px;
}

.title-container .container {
  display: flex;
  justify-content: flex-end;
}

.change-column {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.change-column li {
  padding: 5px;
  margin: 10px 5px;
  border: 2px solid #464646;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-sizing: content-box;
}

.change-column li.active {
  border: 2px solid #ababab;
}

.products-filter-content {
  width: 270px;
  padding: 10px 0;
  margin-right: 20px;
  background: #fff;
  -webkit-box-shadow: -5px 35px 40px rgb(0 0 0 / 10%);
  box-shadow: -5px 35px 40px rgb(0 0 0 / 10%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: baseline;
  align-self: flex-start;
}

.products-filter-content .filter {
  flex-direction: column;
  padding: 0 10px 10px;
}

.products-filter-content .filter .btn {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 7px 20px;
  background: #292929;
  color: #ffffff;
  margin-top: 10px;
  cursor: pointer;
  min-width: 80%;
  text-align: center;
}

.products-filter-content .filter .delete-all {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 7px 20px;
  background: #c1c1c1;
  margin-top: 10px;
  cursor: pointer;
  min-width: 80%;
  text-align: center;
}

.filter > div.name,
.filter > div.name input,
.filter > div.name label {
  position: relative;
  z-index: 1;
}

.prop-name {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 40px;
  background: #ffffff;
  width: calc(100% - 10px);
  padding: 22px 8px 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.prop-name li {
  padding: 3px 0;
  box-sizing: border-box;
  cursor: pointer;
}

.shop-article .container {
  display: flex;
}

.products-content-wrapper .container {
  flex-wrap: nowrap;
  display: flex;
}

.products-content.shop-content {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 0;
  justify-content: center;
  position: relative;
}

.products-content.shop-content .add-more {
  background: #292929;
  padding: 10px 40px;
  margin: 20px 0 30px;
  justify-self: center;
  cursor: pointer;
}

.shop-img.sale-done img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  position: relative;
}

.shop-img.sale-done {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-img.sale-done::before {
  content: "Продано";
  color: #ff0000;
  position: absolute;
  z-index: 1;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  padding: 10px;
  border: 3px solid;
}

.products-content .shop-product {
  width: 33%;
  max-height: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #292929;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -1px 0 0 -1px;
  padding: 20px;
  border: 1px solid #e9e9e9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.products-content[data-size="list"] .shop-product {
  width: 100%;
  flex-direction: row;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.products-content[data-size="list"] .shop-product .shop-img {
  width: 50%;
  margin-right: 20px;
}

.shop-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px 0 0;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.products-content[data-size="list"] .shop-product .shop-desc {
  width: 50%;
}

.shop-desc .article {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: #9c9c9c;
}

.shop-desc h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}

.shop-desc h6 span {
  display: block;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-desc .size {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: #9c9c9c;
}

.shop-desc .price {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

.shop-desc .price span {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.shop-desc .price span::before {
  content: "";
  width: 100%;
  height: 1px;
  background: red;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

.shop-desc .price-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-desc .price-block .btn-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

.add-wishlist {
  justify-self: flex-start;
  position: relative;
  z-index: 10;
  cursor: pointer;
  margin: 0 0 0 10px;
}

.add-wishlist.active .icon-heart::before {
  content: "\e81b";
}

.shop-desc .sale-done {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: #00d80f;
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.shop-desc .sale-done img {
  width: 10px;
  margin-right: 5px;
}

.shop-btn {
  width: 80%;
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  text-align: center;
  padding: 10px 15px;
  background: #292929;
  cursor: pointer;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin: 0 5px 5px;
  position: relative;
  z-index: 2;
}

.shop-btn.more {
  background: #e0e0e0;
  color: #292929;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

.products-filter-content .container {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.products-filter-content .columns-list {
  margin-top: 10px;
}

.columns-list .list-item {
  padding: 10px 15px;
}

.filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #292929;
  font-size: 14px;
  font-weight: 500;
}

.filter > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 280px;
}

.filter > div.price {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 200px;
}

.filter > div.price label {
  width: 100%;
}

.filter > div.price input {
  width: calc(50% - 5px);
  margin-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.filter > div.price input:last-child {
  margin-right: 0;
}

.filter > div label {
  margin-bottom: 5px;
}

.filter > div input,
.filter > div select {
  min-width: auto;
  width: 100%;
  padding: 10px;
  border: none;
  -webkit-box-shadow: 0 0 10px #e9e9e9;
  box-shadow: 0 0 10px #e9e9e9;
  box-sizing: border-box;
}

.filter > div.sale {
  flex-direction: row;
  justify-content: space-between;
}

.filter > div.sale > label {
  margin: 0;
}

.filter > div.sale > input {
  width: unset;
  box-shadow: none;
}

.full-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.filter > div.add-btn {
  justify-content: flex-end;
  padding: 10px 0 0;
}

.add-btn a {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 7px 20px;
  background: #ff0000;
  color: #ffffff;
  cursor: pointer;
  min-width: 60%;
  text-align: center;
}

@media (max-width: 1200px) {
  .products-filter-content .columns-list {
    display: none;
  }
  .products-filter-content {
    padding: 20px 0;
  }
  .products-filter-content .filter .btn {
    margin-right: 0;
  }
}

@media (max-width: 1140px) {
  .products-content .shop-product {
    width: 50% !important;
  }
}

@media (max-width: 980px) {
  .products-content-wrapper .container {
    flex-direction: column;
  }
  .change-column {
    display: none;
  }
  .products-filter-content {
    padding: 15px 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .products-filter-content .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .filter > div.price {
    max-width: 280px;
  }
  .mobile-filter {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 6px 20px;
    background: #e9e9e9;
    border: 2px solid #131313;
    color: #131313;
    font-weight: 500;
  }
  .active .mobile-filter {
    background: #131313;
    color: #e9e9e9;
  }
  .products-filter-content .container .filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
  }
  .filter > div {
    padding: 10px 0;
  }
  .products-filter-content .filter .btn {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .shop-desc .price-block .btn-block {
    justify-content: flex-start;
  }
  .products-content-wrapper .container {
    padding: 0;
  }
  .products-content .shop-product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px;
    width: 100% !important;
  }
  .products-content .shop-product .shop-img {
    max-width: 43%;
    margin-right: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .shop-img.sale-done::before {
    font-size: 12px;
    padding: 5px;
    border: 2px solid;
    top: 30%;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .products-content .shop-product .shop-desc {
    padding: 0;
  }
  .shop-desc .price-block {
    align-items: center;
    flex-wrap: wrap;
  }
  .shop-desc .price-block .btn-block {
    margin-top: 5px;
  }
  .shop-desc .price-block .btn-block a {
    margin: 5px 0;
    padding: 5px 10px;
    font-size: 13px;
  }
  .shop-desc .price-block .btn-block a:first-child {
    margin-right: 10px;
  }
  .shop-desc .article {
    display: none;
  }
  .shop-desc h6 {
    margin: 0 0 5px;
  }
  .shop-img .article {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 11px;
    font-weight: 500;
    margin: 0 0 5px;
    color: #9c9c9c;
    width: 100%;
  }
  .shop-desc .price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .shop-desc .price span {
    margin: 2px 5px 0 0;
  }
  .shop-desc .size {
    margin: 2px 0;
    font-size: 11px;
  }
  .shop-desc .price-block {
    margin: 10px 0 0;
  }
}

@media (max-width: 980px) {
  .vustavka-znijka {
    display: none;
  }
  .vustavka-znijka-h {
    display: block;
  }
}

@media (min-width: 981px) {
  .vustavka-znijka {
    display: block;
  }
  .vustavka-znijka-h {
    display: none;
  }
}
