
.catalog-filter-min__title {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 115%;
  position: relative;
  display: grid;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  border-bottom: 0;
  background: #676e76;
  color: #fff;
  font-weight: 600;
  border-radius: 5px 5px 0 0;
}
@media all and (max-width: 991.9px) {
  .catalog-filter-min__title {
    display: none;
  }
}
.catalog-filter-min .catalog-filter__nav-list {
  border: 1px solid #B7BBBE;
  border-radius: 0 0 5px 5px;
}
@media all and (max-width: 991.9px) {
  .catalog-filter-min .catalog-filter__nav-list {
    border: 0;
  }
}

.catalog-table {
  padding: 20px;
  border: 1px solid #b7bbbe;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media all and (max-width: 767.9px) {
  .catalog-table {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
  }
}
.catalog-table__img {
  border-radius: 4px;
  display: grid;
}
@media all and (max-width: 767.9px) {
  .catalog-table__img {
    width: 100%;
  }
}
.catalog-table__desc-list {
  display: grid;
  gap: 10px;
  align-self: start;
}
.catalog-table__desc-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: space-between;
  align-items: end;
  position: relative;
}
.catalog-table__desc-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #85909d;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 767.9px) {
  .catalog-table__desc-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .catalog-table__desc-item::before {
    display: none;
  }
}
.catalog-table__desc-title {
  display: inline;
  position: relative;
  justify-self: start;
  justify-content: start;
  justify-items: start;
  font-size: 16px;
  background: #fff;
  padding-bottom: 5px;
  padding-right: 5px;
}
.catalog-table__desc-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ea5f12;
  border-radius: 50%;
  display: none;
}
@media all and (max-width: 767.9px) {
  .catalog-table__desc-title {
    position: relative;
    display: grid;
    grid-template-columns: 10px auto;
    gap: 5px;
    align-items: center;
    font-weight: 600;
  }
  .catalog-table__desc-title::before {
    display: grid;
  }
}
.catalog-table__desc-text-box {
  justify-self: end;
  align-self: end;
  text-align: end;
}
@media all and (max-width: 767.9px) {
  .catalog-table__desc-text-box {
    justify-self: start;
    padding: 0;
	text-align: start;
  }
}
.catalog-table__desc-text {
  display: inline;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 5px;
  background: #fff;
  text-align: end;
}
@media all and (max-width: 767.9px) {
  .catalog-table__desc-text {
    font-weight: 400;
    padding: 0;
  }
}