.dismissable {
    overflow-y: hidden;
	max-height: 1000px;
	transition-property: all;
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(0, 1, 0.5, 1);

    &.dismissed {
        padding: 0;
        margin: 0;
        max-height: 0;
        border-bottom: 0 !important;
    }
}