.styleBottomGraphic {
	margin-left: calc(100% - var(--bottomGraphicWidth)) !important;
	margin-bottom: 0 !important;
	box-sizing: border-box;
	width: var(--bottomGraphicWidth) !important;
}

.state-false .styleBottomGraphic {
	padding: 0; margin: 0;
}
.styleBottomGraphic {
	opacity: 0; max-height: 0;
	transform: translateY(20px);
	/* should do some tweeking for the below */
	transition:
	opacity var(--baseAnimationLength),
	max-height var(--baseAnimationLength) cubic-bezier(1,0,0,1),
	padding var(--baseAnimationLength),
	margin var(--baseAnimationLength),
	transform var(--baseAnimationLength);
	overflow: hidden;
}
.state-true .styleBottomGraphic {
	opacity: 1; max-height: 50vh;
	transform: translateY(0px);
}

.styleBottomGraphic { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
