.gems_wheel_container {
	max-width: 600px;
	width: calc(100% - 40px);
}
.gems_wheel_container.game_main {
	padding: 10px;
}
.wheel-container {
	position: relative;
	padding: 8.5px 0;
	margin-bottom: 22px; 
}
.wheel-container .wheel, .wheel-container .wheel2 {
    background-image: url("../img/games/wheel/wheel.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    margin: 7.5px auto;
    width: 270px;
    height: 270px;
    z-index: 15;
    position: relative; 
}

.wheel-container .wheel, .wheel-container .wheel2 {
    will-change: transform; 
}
.wheel-container .wheel-mask {
    background-image: url("../img/games/wheel/wheel_mask.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    width: 300px;
    height: 300px;
    z-index: 10;
    position: absolute;
    top: 1px;
    left: 0;
    right: 0; 
}
.wheel-container .wheel-pointer {
    background-image: url("../img/games/wheel/wheel_pointer.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    width: 60px;
    height: 40px;
    z-index: 20;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0; 
}
.wheel-container .wheel-center {
    background-image: url("../img/games/wheel/wheel_center.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    z-index: 20;
    position: absolute;
    top: 135px;
    left: 0;
    right: 0; 
}
.game_wheel_result {
	padding: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	background-color: rgba(255, 255, 255, 0.6);
	transition: opacity 300ms ease-in-out, z-index 300ms ease-in-out;
	opacity: 0;
	top: 0px;
}
.game_wheel_result.showing {
    opacity: 1;
	z-index: 30;
}
.game_wheel_result .profit {
	top: calc(50% - 0.5em);
	left: 0;
    position: absolute;
    right: 0;
	font-size: 50px;
    font-weight: 700;
	text-align: center;
	text-shadow: 2px 2px 2px #333;
	color: #FFF;
}
#wheel-main {
  position: relative;
  z-index: 3;
  width: 300px;
  margin: 0 auto 10px;
  padding-top: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
}

