.panel-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-collapse.in {
  max-height: 800px; /* Big enough to show the full content */
}
