.content-with-toggle {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.2s ease;
}

.content-with-toggle.show {
  max-height: 2000px;
  opacity: 1;
}