.scratchit {
	position:relative;

}
.scratchit > canvas {
	border: 0px solid black;
	cursor: crosshair;
	border-radius: 20px;
}

.scratchit > canvas,
.scratchit > img + img {
	position: absolute;
	top: 0;
	/*left: 0;*/
	left: 50%;
	transform: translate(-50%, 0%);
}
.scratchit,
.scratchit * {
	-moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}