

.designPanel {
	position: absolute;
	top: 3rem;
	left: calc(50% - 192px);
	width: 384px;
	box-shadow: 0px 30px 40px 40px rgba(108, 108, 108, 0.523);
	display: none;
	border: 1px solid #7e7e7e;
	opacity: 0;
	z-index: 0;
}

.designHd{
	font-size: 120%;
	height: 40px;
	background-color: var(--panelHdBck);
}

.closeDesign {
	float: right;
	height: inherit;
}

.closeDesign img {
	width: auto;
	height: inherit;
	background-color: var(--closeImgBck);
}

.designTitle {
	float: left;
	font-family: "robotoCondensed";
	font-weight: 800;
	width: 330px;
	color: white;
	padding-left: 12px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#designContainer {
	position: relative;
	overflow-y: hidden;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

#designFrame {
	font-size: 1em;
	line-height: 140%;
	text-align: left;
	box-sizing: border-box;
	padding: 0 16px;
	width: calc( 100% + var(--scrollbarWidth) );
	overflow-y: scroll;
	/*** to ensure momentum scrolling in IOs: */
	-webkit-overflow-scrolling: touch;
	background-color: white;
}

#designFrame h2 {
	font-family: 'robotoCondensed';
	letter-spacing: 0.1px;
	margin-top: 0.75em;
	font-size: 1.2em;
}

#designFrame p {
	font-family: 'sourceSerifPro';
	margin-bottom: 0.4em;
	font-size: 1.1rem;
	line-height: 1.75rem;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.pic {
	float: right;
	width: 160px; /* 10em; */
	height: 160px; /* 10em; */
	margin-top: 16px; /* 1em; */
}

