/**
 * Botiga Collapse
 */
 
.botiga-collapse {
    max-height: 0;
    overflow: hidden;
    transition: all 300ms;
    &.active {
        max-height: none;
    }
}