.upgrade-bg {
	background-image: url('/assets/media/images/2600x1200/bg-5.png');
}
.dark .upgrade-bg {
	background-image: url('/assets/media/images/2600x1200/bg-5-dark.png');
}
/* -----------------------------
 * Utility helpers
 * --------------------------- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.left-5 {
	left: calc(var(--spacing) * 5);
}

.slider-wrap {
	display: flex;
}

.img-preview {
	height: 150px;
	margin-bottom: 20px;
}

.stl-canvas {
	width: 100%;
	height: 300px;
	background: #f9f9f9;
	border-radius: 15px;
}

.stock-row {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	align-items: center;
}

/* -----------------------------
 *  Disclosure / accordion
 * --------------------------- */
details {
	transition: all 0.3s;
}

details + details {
	margin-top: 20px;
}

details[open] {
	min-height: 50px;
}

summary {
	display: flex;
	justify-content: space-between;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
}

summary::-webkit-details-marker {
	display: none;
}

summary:focus {
	outline: none;
}

details p {
	color: #96999d;
	font-weight: 300;
}

.control-icon {
	fill: #000;
	pointer-events: none;
	transition: 0.3s ease;
}

.control-icon-close {
	display: none;
}

details[open] .control-icon-close {
	display: initial;
}

details[open] .control-icon-expand {
	display: none;
}

/* -----------------------------
 *  Modal & spinner
 * --------------------------- */

.close {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 28px;
	font-weight: bold;
	color: #aaa;
	cursor: pointer;
}

.loader {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading {
	width: 60px;
	height: 60px;
	border: 2px solid #ccc;
	border-radius: 50%;
	border-top-color: #1ecd97;
	border-left-color: #1ecd97;
	animation: spin 1s infinite ease-in;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* -----------------------------
 *  Other component styles
 * --------------------------- */
.add-piece {
	width: 25px;
	height: 25px;
	line-height: 0;
	font-size: 1.3em;
	border-radius: 50%;
	background: #4caf50;
	color: #fff;
	text-align: center;
	cursor: pointer;
	padding-left: 6.8px;
}

.ss-slider {
	width: 100%;
	margin-right: 20px;
}

.noUi-value {
	font-size: 10pt;
	margin-top: 10px;
}