section .error-message {
	background: #f8d7da;
	color: #721c24;
	padding: 2rem;
	border-radius: 0.5rem;
	margin: 2rem 0 0 0;
	display: none;
}
section .view-area-wrapper {
	width: 100%;
	position: relative;
	margin-top: 2rem;
}
section .view-area {
	display: block;
	width: 100%;
	cursor: grab;
	border-radius: 0.5rem;
	user-select: none;
	aspect-ratio: 1/1;
}
section .view-area:active {
	cursor: grabbing;
}
section .view-area-wrapper.loading::after {
	content: "Loading...";
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(0, 0, 0, .8);
	border-radius: 0.5rem;
}
section .slider-content .input-wrapper.text {
	width: 15rem;
	min-width: 15rem;
}