/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal--in { opacity: 1; transform: translateY(0); }

/* Modal */
.modal.hidden { display: none; }
.modal { display: block; }

/* Navbar scrolled */
.nav--scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.06); background-color: rgba(255,255,255,.86); }

/* Chat */
.chat-hidden { display:none; }
.chat-bubble { max-width: 75%; }

/* line-clamp (no plugin) */
.line-clamp-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
