
.subz-woo-term-description {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.subz-woo-term-description.expanded .subz-woo-term-description-content p:last-child {
  margin-bottom: 0px !important;
}
.subz-woo-term-description.collapsed {
  max-height: 105px;
}
.subz-woo-term-description.expanded {
  max-height: 40000px;
}
.subz-woo-term-description-content {
  margin: 0;
  padding: 0;
}
.subz-woo-term-description.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
}
.subz-toggle-read-more-button {
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  color: var(--bt-color-link-default, #cf303a) !important;
}
.subz-toggle-read-more-button:hover {
  color: var(--bt-color-link-hover, #d5495b) !important;
}
.subz-woo-term-description.collapsed
  + .subz-toggle-read-more-button
  .subz-toggle-read-less-text,
.subz-woo-term-description.expanded
  + .subz-toggle-read-more-button
  .subz-toggle-read-more-text {
  display: none;
}
@media (max-width: 990px) {
  .subz-toggle-read-more-button {
    margin-bottom: 36px;
  }
}
