.content-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 26px;
}
.card-category {
  margin-bottom: 30px;
}

.category-empty-img {
  object-fit: cover;
  max-width: 500px;
  max-height: 470px;

  @media screen and (max-width: 499px) {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
}

.category__sort {
  margin-right: 30px;
  margin-bottom: 50px;
}
.category__sort .form-group {
  margin-bottom: 0;
}
.category__sort #input-sort {
  border-radius: 10px;
  width: 203px;
  height: fit-content;
  padding: 9px 11px 10px 12px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  background-image: url('/image/catalog/arrow-down.svg');
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.category__sort #input-sort:focus {
  border-color: var(--color-main);
}
.category__view {
  margin-right: 20px;
  margin-bottom: 50px;
}
.category__view .btn-group {
  height: 100%;
}
.category__view .btn-group button {
  width: 48px;
  height: 44px;
  background: #fff;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.category__view .btn-group #list-view {
  border-radius: 10px 0px 0px 10px;
}
.category__view .btn-group #grid-view {
  border-radius: 0px 10px 10px 0px;
}
.category__view .btn-group #list-view.active,
.category__view .btn-group #grid-view.active {
  background: var(--color-main);
  border: var(--border);
}
.category__view .btn-group #list-view.active svg rect,
.category__view .btn-group #grid-view.active svg rect {
  fill: #fff;
}
.category__block .btn-custom {
  padding: 10px;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
}
.category__block {
  display: grid;
  grid-template-columns: repeat(3, minmax(20px, 33%));
  gap: 20px;
  width: 100%;
}
.category__block.list {
  grid-template-columns: (1, minmax(20px, 100%));
  width: 100%;
}
.category__block.list .product-card-rating--big-card {
  width: 100%;
  /* column-gap: 90px; */
}
.category__block.list .product-card-rating--big-card .product-card-rating__product-img {
  order: 1;
}
.category__block.list
  .product-card-rating--big-card.product-card-rating.r-20
  .product-card-rating__icons-btns {
  right: calc(100% - 64px);
}
.category__block.list .product-card-rating--big-card .product-card-rating__descr {
  flex-grow: 1;
}
@media (max-width: 450px) {
  .category__filter-mobile {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    /* gap: 20px !important; */
  }
  .category__filter-button {
    margin-right: 0px !important;
  }
}

.category__filter-button {
  display: none;
}
@media (max-width: 1199px) {
  .card-category {
    padding-bottom: 40px;
  }
  .content-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .category__block {
    grid-template-columns: repeat(2, minmax(20px, 50%));
  }
}
@media (max-width: 991px) {
  #column-left {
    display: none;
  }
  #content {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
  .category__filter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    border: none;
    background-color: var(--color-main);
    cursor: pointer;
    outline: none;
    color: #fff;
    height: fit-content;
    padding: 10px 18px 9px;
    margin-right: 30px;
    transition: var(--transition);
  }
  .category__filter-button:hover {
    background-color: var(--hover-add);
    transition: var(--transition);
  }
}
@media (max-width: 767px) {
  .content-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: var(--border);
  }
  .card-category {
    padding-bottom: 16px;
    /* border-bottom: var(--border); */
    margin-bottom: 24px;
  }
  .category__view {
    display: none;
  }
  .category__sort {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .category__sort #input-sort {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 610px) {
  .category__block {
    grid-template-columns: repeat(1, minmax(20px, 100%));
  }
}
@media (max-width: 475px) {
  .category__block {
    width: 100%;
  }
}
@media (max-width: 389px) {
  .category__filter-button {
    margin-right: 18px;
    column-gap: 10px;
    padding: 10px 16px 9px;
  }
}

.empty-catalog {
  margin-top: 60px;
}

.text-empty-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 16px;
  text-align: center;
}

.text-empty-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 370px;
  text-align: center;
  margin-bottom: 0;
}
