.tab-button {}

.tab-button.active {
    opacity: 1;
}

.tab-content {
    opacity: 0;
    height: 0px;
    transition: 200ms linear;
}

.tab-content.active {
    opacity: 1;
    height: auto;
}