.wrap_whole_wheel {padding-top: 0 !important;}
.wrap_whole_wheel .wheel_title {
    position: absolute;
    color: #fff;
    top: -70px;
    text-align: center;
    width: 100%;
    font-size: var(--gtt-font-size-xl);
}
.wrap_whole_wheel .wheel_title span {}
/* .wrap_whole_wheel .wheel_actions {text-align: center;margin-top: 30px;position: relative;}
.wrap_whole_wheel .wheel_actions button {
    font-size: var(--gtt-font-size);
    background: var(--gtt-primary-color);
    color: #fff;
    border: 0;
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
} */

/* wheel_foot */
.wrap_whole_wheel .wheel_foot {
    color: #fff;
    text-align: center;
    margin-top: 25px;
    font-size: var(--gtt-font-size);
}
.wrap_whole_wheel .wheel_foot span {/* font-weight: 600; *//* color: var(--gtt-primary-color); */}

#wrap_wheel {
	margin-top: 8px;
	position: relative;
	width: 450px;
	height: 450px;
	background-image: url("/images/lucky_wheel/wheel_border.png");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28), 0 0px 5px 5px rgba(0, 0, 0, 0.2);
}

#wrap_wheel {
	border-radius: 50%;
}

#wheel_moc {
	width: 30px;
	height: 58px;
	z-index: 2;
	background-image: url("/images/lucky_wheel/wheel_moc.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	margin-top: -1px;
}

#wheel_content {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 430px;
	height: 430px;
}

#wheel_canvas {
	display: block;
	width: 100%;
	height: 100%;
}

#wheel_shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at center, #00000000 60%, #000 90%);
}

#wheel_spin {
	font: 1.5em/0 sans-serif;
	user-select: none;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 20%;
	height: 20%;
	background: #fff;
	color: #fff;
	box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	transition: 0.7s;
	padding: 0;
}
#wheel_spin.disable-click:after {
	content: "";
	background: url("../../images/icons/lock.png") center no-repeat;
	background-size: contain;
	position: absolute;
	height: 35px;
	width: 35px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#wheel_spin #reload_oldest_achieved_reward {}