.ferret-search{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	display:block;
	box-sizing:border-box;
}

.ferret-crate{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	display:block;
	overflow:hidden;
	
	user-select:none;
	-ms-user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	
	touch-action:none;
}

.ferret-item{
	width:10rem;
	height:10rem;
	position:absolute;
	
	background-color:#503314;
	background-size:cover;
	background-position:center;
	
	border-radius:50%;
	box-sizing:border-box;
	box-shadow:0em 0em 1em rgba(0,0,0,.9);
	
	transition:left .1s, top .1s, transform .1s;
	
	/*Text design*/
	color:#fff;
	text-align:center;
	font-size:1em;
	text-decoration:none;
	text-shadow:1px 1px 1px #000;
	
	/*Center the item*/
	transform:translate(-50%,-50%) scale(1,1);
	user-select:none;
	
	/*Center the content*/
	display:flex;
	justify-content:center;
	align-items:center;
	
	user-select:none; /* Standard syntax */
	-webkit-user-select:none; /* Safari 3.1+ */
	-moz-user-select:none; /* Firefox 2+ */
	-ms-user-select:none; /* IE 10+ */
	user-drag:none;
	-webkit-user-drag: none;
}

.ferret-item-target{
	pointer-events:none;
	transition:none;
}

.ferret-item-hide{
	opacity:.1;
	pointer-events:none;
}