.w-20 {
	width: 20% !important;
}

.w-25 {
	width: 25% !important;
}

.w-40 {
	width: 40% !important;
}

.w-50 {
	width: 50% !important;
}

.w-75 {
	width: 75% !important;
}

.collapse {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: max-height .5s cubic-bezier(0, 1, 0, 1);
}

.collapse.show {
	max-height: 999rem;
	transition: max-height .5s ease-in-out;
}