.sale-page-section__wrap {
  row-gap: 40px;
}
@media (max-width: 992px) {
  .sale-page-section__wrap {
    row-gap: 24px;
  }
}

@media (max-width: 992px) {
  .single-sale-section .heading-row {
    flex-direction: column;
  }
}
.single-sale-section .heading-row .sale-col, .single-sale-section .heading-row .desc-wrap {
  width: calc(50% - 16px);
}
@media (max-width: 992px) {
  .single-sale-section .heading-row .sale-col, .single-sale-section .heading-row .desc-wrap {
    width: 100%;
  }
}

.single-sale-section .desc-wrap {
  display: flex;
  flex-direction: column;
}
.single-sale-section .desc-wrap:has(.desc.active) .btn {
  margin-top: 16px;
}
.single-sale-section .desc-wrap .btn {
  margin-top: auto;
}
.single-sale-section .desc-wrap .btn.active .visible {
  display: none;
}
.single-sale-section .desc-wrap .btn.active .hidden {
  display: block;
}
.single-sale-section .desc-wrap .btn .visible {
  display: block;
}
.single-sale-section .desc-wrap .btn .hidden {
  display: none;
}
.single-sale-section .desc-wrap .desc {
  height: 489px;
  overflow: hidden;
  position: relative;
}
.single-sale-section .desc-wrap .desc.active {
  height: auto;
}
.single-sale-section .desc-wrap .desc.active:after {
  display: none;
}
.single-sale-section .desc-wrap .desc:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 80%);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .single-sale-section .desc-wrap .desc:after {
    top: calc(100% - 60px);
  }
}
.single-sale-section .desc-wrap .desc ol {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  counter-reset: counts 0;
}
.single-sale-section .desc-wrap .desc ol li {
  font-size: 16px;
  font-weight: 400;
  counter-increment: counts 1;
  position: relative;
  line-height: 140%;
  padding-left: 15px;
}
.single-sale-section .desc-wrap .desc ol li::marker {
  font-size: 16px;
  color: #252525;
}
.single-sale-section .desc-wrap .desc ol li:before {
  content: counters(counts, ".") ".";
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  margin-right: 3px;
  font-size: 14px;
  color: #252525;
}