.build-anim-prep {
    overflow: hidden;
    opacity: 0;
    height: 0;
}

/* Define the expand animation */
/*@keyframes expand {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}*/

/* Define the fade-in animation */
@keyframes build-anim-fade-in {
    0% {
        opacity: 0;
        height: 0;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

/* Define the fade-out animation */
@keyframes build-anim-fade-out {
    0% {
        opacity: 1;
        height: 100%;
    }

    100% {
        opacity: 0;
        height: 0;
    }
}


.build-anim-fade-in {
    animation-name: build-anim-fade-in;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.build-anim-fade-out {
    animation-name: build-anim-fade-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}