/* Component animations ======================================== */ .fade { opacity: 0; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; transition: height 0.35s ease; } .collapse.in { height: auto; }