.applet {
	align-items: center;
	background-color: #fffafa;
	border-radius: 5px;
	box-shadow: 1px 1px 2px gray;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 300px;
}

@media screen and (min-width: 640px) {
	.applet {
		align-items: center;
		background-color: #fffafa;
		border-radius: 5px;
		box-shadow: 1px 1px 2px gray;
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		width: 600px;
	}
}

.vert_flex {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.horiz_flex {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.lbl_in {
	gap: 5px;
}

input[type=range] {
	max-width: 85px;
}

