
.dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.dropdown-list.open {
  max-height: 300px;
}

