@charset "utf-8";
/* CSS Document */
#rotateBlock
{
    position:fixed;
    bottom:5px;
    display:inline-block;
    text-align:center;
    cursor:pointer;
}



input[type="checkbox"]#autoRotate + label::before {
	background: #ffffff;
	border: none;
	opacity: 0;
}

input[type="checkbox"]#autoRotate + label::after {
	opacity: 0;
}


input[type="checkbox"]#autoRotate:checked + label::before {
	background: #ffffff;
	border: none;
	opacity: 0;
}

input[type="checkbox"]#autoRotate:checked + label::after {
	opacity: 0;
}



input[type="checkbox"]#autoRotate+label{
  cursor:pointer;
  width:50px;
  height:50px;
  display:none;
  background-image: url(../img/3dRotateIconOff.png);
  background-position: left center;
  background-repeat: no-repeat;
  border:none;
}

input[type="checkbox"]#autoRotate:checked+label{
  background-image: url(../img/3dRotateIconOn.png);
}