@charset "UTF-8";
/* CSS Document */

.myBox{
	margin:-10px 5px;
	display:inline-block;
	width:20px;
	cursor:pointer;
	height:20px;
	border:1px solid #eee;
	border-radius:20px;
	transition:box-shadow 0.3s linear 0s;
	background:#ddd;	
	box-shadow:none;	
	font-size:small;
}
.myBox > span {
	display:inline-block;
 	width:20px;
	margin-left:0px;
	height:20px;
	background:#fff;
	border:0px solid rgba(0,0,0,0.1);
	box-sizing:border-box;
	border-radius:100%;
	box-shadow:0px 2px 5px rgba(0,0,0,0.2);
	transition: margin 0.3s ease 0s;
}
.myBox-disabled{
	opacity:0.3;
	cursor:default !important;
}