
.content {
    overflow: hidden;
    height: auto;
    width: 100%;
    transition: max-height 1s linear;
}

.content.is-collapsed {
    max-height: 0;
    transition:max-height 1s linear;
}


