/* styles-law-accordion-behavior */
/* accordion behavior backup */

.panel,
.panel-nested {
	max-height: 0;
	box-shadow: none;
	overflow: hidden;
	transition: max-height .2s ease-out !important;
}

.panel-nested:last-child {
	border-bottom: none;
}

.panel.show,
.panel-nested.show {
	opacity: 1;
	max-height: 500px;
	transition: max-height .2s ease-in !important;
}