.mku-pulldownheader {
	display: inline-block;
	cursor: pointer;

	&::after {
		display: inline-block;
		font-family: 'Material Icons';
		font-weight: normal;
		font-style: normal;
		font-size: 24px;
		line-height: 1;
		letter-spacing: normal;
		text-transform: none;
		white-space: nowrap;
		word-wrap: normal;
		direction: ltr;
		-webkit-font-feature-settings: 'liga';
		-webkit-font-smoothing: antialiased;
		content: "\e313";
		transition: 300ms ease 0s transform;
		vertical-align: bottom;
		margin-left: 0.5rem;
	}

	&.on::after {
		transform: rotate(-180deg);
	}

}

.mku-pulldownmenu {
	display: block;
	transform: scaleY(0);
	overflow: hidden;
	transform-origin: top;

	&.mku-mh0 {
		transition: 300ms all 0s ease;
		max-height: 0;

		&.on {
			display: block;
			transform: scaleY(100%);
			max-height: attr(pulldown-max-height px);
		}
	}

}