.dcw-wrap {
	--dcw-primary: #8e44ad;
	max-width: 420px;
	margin: 0 auto;
	text-align: center;
	font-family: inherit;
}
.dcw-wrap .dcw-header {
	margin-bottom: 16px;
}
.dcw-wrap .dcw-title {
	font-size: 24px;
	margin: 0 0 4px;
	color: var(--dcw-primary);
}
.dcw-wrap .dcw-subtitle {
	margin: 0;
	color: #555;
}
.dcw-wrap .dcw-stage {
	position: relative;
	width: 320px;
	height: 320px;
	margin: 0 auto 16px;
}
.dcw-wrap .dcw-wheel {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	border: 6px solid #fff;
	box-shadow: 0 0 0 4px var(--dcw-primary), 0 10px 30px rgba(0,0,0,.25);
	transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
	transform: rotate(0deg);
	overflow: hidden;
}
.dcw-wrap .dcw-label {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 0;
	transform-origin: 0 0;
	display: flex;
	align-items: center;
}
.dcw-wrap .dcw-label span {
	display: inline-block;
	max-width: 90px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
/*	text-shadow: 0 1px 2px rgba(0,0,0,.5);  */
	margin-left: 14px;
	line-height: 1.2;
}
.dcw-wrap .dcw-pointer {
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 24px solid #2c2c2c;
	z-index: 5;
}
.dcw-wrap .dcw-spin-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--dcw-primary);
	color: #fff;
	border: 4px solid #fff;
	font-weight: 700;
	letter-spacing: .05em;
	font-size: 14px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,.3);
	z-index: 6;
}
.dcw-wrap .dcw-spin-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}
.dcw-wrap .dcw-status {
	min-height: 24px;
	color: #444;
	font-size: 14px;
}
.dcw-wrap .dcw-result-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}
.dcw-wrap .dcw-result-modal[hidden] {
	display: none;
}
.dcw-wrap .dcw-result-inner {
	background: #fff;
	border-radius: 10px;
	max-width: 360px;
	width: 90%;
	padding: 28px 24px;
	position: relative;
	text-align: center;
}
.dcw-wrap .dcw-result-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}
.dcw-wrap .dcw-result-code {
	display: inline-block;
	margin: 14px 0;
	padding: 10px 16px;
	border: 2px dashed var(--dcw-primary);
	border-radius: 6px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
}
.dcw-wrap .dcw-copy-btn {
	display: inline-block;
	margin-left: 8px;
	padding: 4px 10px;
	font-size: 12px;
	cursor: pointer;
	border: 1px solid var(--dcw-primary);
	background: #fff;
	color: var(--dcw-primary);
	border-radius: 4px;
}
