[data-state="open"] .collapsible_collapsible-content__01kHo {
  animation: collapsible_slideDown__gv5ml 200ms ease-out;
}

[data-state="closed"] .collapsible_collapsible-content__01kHo {
  animation: collapsible_slideUp__Ux0Vp 200ms ease-out;
}

@keyframes collapsible_slideDown__gv5ml {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--radix-collapsible-content-height);
    opacity: 1;
  }
}

@keyframes collapsible_slideUp__Ux0Vp {
  from {
    height: var(--radix-collapsible-content-height);
    opacity: 1;
  }
  to {
    height: 0;
    opacity: 0;
  }
}

