.ob-ab-test-toners-hide .ob-hb-toners {
  display: none;
}

.ob-ab-test-toners-hide #ob-expand-button {
  display: none;
}

.ob-expand-button {
  display: flex;
  justify-self: center;
  align-items: center;
  margin: 6px auto;
  cursor: pointer;
}

.ob-expand-button[aria-expanded='true'] .ob-expand-button--icon {
  transform: rotate(180deg);
}

.ob-expand-button--text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 140%;
  letter-spacing: 0;
}

.ob-expand-button--icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#ob-product-description:has( + .ob-expand-button) {
  overflow: hidden;
  position: relative;
  transition: max-height .3s ease;
  max-height: 690px;
}

#ob-product-description:has( + .ob-expand-button)::after {
  content: "";
  background: linear-gradient(0deg, #F3F3F5 25%, #f3f3f500 100%);
  bottom: 0;
  height: 50px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

#ob-product-description:has( + .ob-expand-button[aria-expanded='true'])::after {
  display: none;
}
