/* READ MORE BUTTON */

.product-desc .collapsed {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding-top: 1.2em;
  margin-top: 1em;
  margin-bottom: 15px;
  --mask: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0) 95%,
      rgba(0, 0, 0, 0) 0) 100% 50% / 100% 100% repeat-x;

  -webkit-mask: var(--mask);
  mask: var(--mask);
  /* max-height: 200px !important; */
}
  
.collapsible {
  margin: 1em 0 1.5em;
  overflow: hidden;
  transition: .2s;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding-top: 1.2em;
}

#samples ~ .product-desc div {
  margin-top: 0;
}
  
.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 8px solid #595959;
  transition: 0.3s;
  margin-top: 0.3em;
}
  
.read-more {
  display: flex;
  align-items: center;
  column-gap: 1em;
  cursor: pointer;
  margin: 1em 0 1.5em;
}
  
.read-more h2 {
  font-size: 1.07em;
}