/* Title ------ */
header {
  background-color: rgba(10, 10, 10, 80%) !important;
}

.catalog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 10px 20px 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 700;
  width: 100%;
}

.catalog-title .select-label {
  padding: 5px;
}

.catalog-title .list {
  background-color: #ffffff;
}

.catalog-title p {
  font-size: 13px;
  margin: 0 0 3px 5px;
  color: #747474;
  text-transform: lowercase;
}

.catalog-title .title-wrapper {
  display: flex;
  align-items: baseline;
  margin-left: auto;
}

.catalog-title .filter-sort-wrapper,
.catalog-title .sort-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.catalog-title .filter-sort-wrapper {
  margin-left: 280px;
}

.catalog-title h1 {
  font-size: 24px;
  margin: 0;
  margin-left: auto;
}

.catalog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* List ------ */

.catalog-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 20px 40px;
}

.catalog-list .product {
  width: calc(25% - 20px);
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (max-width: 960px) {
  .catalog-title .title-wrapper {
    margin-bottom: 10px;
  }
  .catalog-title .filter-sort-wrapper {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
  }
  .catalog-wrapper {
    position: relative;
  }
  .product .product-title,
  .product .product-desc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .catalog-list .product {
    width: calc(50% - 20px) !important;
  }
  .product .product-title .name {
    width: 50%;
  }
}

@media (max-width: 560px) {
  .catalog-title {
    padding: 10px 10px 20px;
  }
  .catalog-list .product {
    width: 100% !important;
    margin-right: 0;
  }
}
