.catalog {
  margin-top: 30px;
  margin-bottom: 60px;
}

.catalog .no-items {
  font-size: 20px;
  font-weight: 600
}

.catalog__title {
  font-size: 22px;
  margin: 0;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600
}

.sidebar__title {
  display: none;
  width: 100%;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 5px;
  background: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  align-items: center;
}

.catalog .sidebar {
  padding-bottom: 60px
}

@media (max-width: 991px) {
  .sidebar .sidebar__title i {
    transition: all 0.3s ease-in-out;
  }
  .sidebar._active .sidebar__title i {
    transform: rotate(180deg);
  }
  .sidebar__title {
    display: flex;
  }
  .catalog .sidebar {
    padding-bottom: 15px;
  }
}

@media (max-width:768px) {
  .catalog .catalog__product-block {
    padding-left: 0;
    padding-right: 0
  }
}

@media (max-width:768px) {
  .catalog .sidebar {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px
  }
}

@media (max-width:768px) {
  .catalog .catalog__product-item {
    padding-left: 0
  }
}

.catalog__rec-list {
  border: 2px solid #eee;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content
}

.catalog__product-panel {
  margin-bottom: 35px;
  line-height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.catalog__product-count {
  color: #555
}

.catalog__product-list {
  transition: opacity .5s
}

.catalog__recommended-title {
  font-size: 18px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600
}

.catalog .slick-dots {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center
}

.catalog .slick-dots li {
  list-style: none;
  display: inline-block;
  margin: 1px 2px;
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 100%;
  transition: all .5s;
  cursor: pointer
}

.catalog .slick-dots li:hover {
  background: var(--main-color)
}

.catalog .slick-dots .slick-active {
  background: var(--main-color)
}

.catalog .slick-dots button {
  display: none
}

.catalog__categories-title {
  font-size: 18px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600
}
