
.error-container {
	background-color: rgb(182, 103, 103);
	padding: 20px;
	border: rgb(201, 60, 60);
}
.piano-keyboard {
	position: relative;
	/* height: 100%; */
	min-height: 140px;
	width: 100%;
}
.white-note {
	display: flex;
	justify-content: center;
	float: left;
	position: relative;
	cursor: pointer;
	color: black;
	height: 98%;
	border-radius: 0 0 5px 5px;
	box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.8) inset, -2px -5px 3px #ccc inset, 0 0 3px rgba(0, 0, 0, 0.5);
}
.white-note-pressed {
	box-shadow: 2px 0 3px rgba(0, 0, 0, 0.2) inset, -5px -1px 20px rgba(0, 0, 0, 0.2) inset, 0 0 3px rgba(0, 0, 0, 0.5);
}
.black-note {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	height: 65%;
	width: 65%;
	left: 68%;
	z-index: 1;
	color: white;
	border-radius: 0 0 3px 3px;
	box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.2) inset, 0 -5px 2px rgba(0, 0, 0, 0.5) inset,
		0 2px 4px rgba(0, 0, 0, 0.5);
}
.black-note-pressed {
	box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.2) inset, 0 -1px 2px rgba(0, 0, 0, 0.2) inset,
		0 1px 2px rgba(0, 0, 0, 0.2);
}
.key-group {
	align-self: flex-end;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.8vw;
	font-size: 1.2vw;
}
.key-text {
	margin-top: 0.8vw;
}
.key-text-on-black-note {
	margin: 0.8vw 0;
	margin-top: 1vw;
}
.key-text-vertical {
	transform: rotate(-90deg);
}
.key-input {
	text-align: center;
	width: 2em;
	color: inherit;
	font-size: 1vw;
}
.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}


/*# sourceMappingURL=polygonjs_editor_components.5ef305b085b39bbea7a9.css.map*/