﻿.loading {
    width: 100%;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s ease-in-out;
}

    .loading.show {
        max-height: 67px;
    }