html,
body {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: rgba(250, 250, 250, 1);
	font-family: "Courier New", Courier, monospace !important;
	font-size: 18px;
}
canvas {
	margin: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}

.cnvHor {
	width: 100% !important;
	height: unset !important;
}
.cnvVer {
	width: unset !important;
	height: 100% !important;
}
#title {
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	padding: 0.5em;
}
#plotterSettings {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	z-index: 100;
	justify-content: center;
	align-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.4s all ease-in-out;
	max-height: 100vh;
}
#plottDialog {
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 0.1em;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: stretch;
	border-radius: 1em;
	max-height: 100%;
}

#plottDialog fieldset {
	margin: 0.5em;
	padding: 0.5em;
	border: none;
	border-bottom: 1px solid grey;
}
#plottDialog button {
	font-family: "Courier New", Courier, monospace !important;
	font-weight: 800;
	font-size: 1.5vh;
	padding: 0em;
	padding-top: 1em;
	padding-bottom: 1em;

	/* margin-bottom: -2em; */
	width: 100%;
	box-sizing: border-box;
	cursor: pointer;
	border-radius: 0.1em;
	background-color: #ffffffc2;
	transition: 0.5s all ease-in-out;
}
#plottDialog button:hover {
	background-color: white;
}

.description {
	margin: 1.5em;
}

svg {
	display: none;
}
