.toggle-widget-content-wrapper {
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

section.open .toggle-widget-content-wrapper {
    height: max-content;
    max-height: 100%;
}