.ucl-single-cat {
	position: relative;
	width: 16rem;
	height: 16rem;
	margin: 1rem;
	background: #fff;
	padding: 0rem;
	border: 4px dashed #cacaca;
	transition: all 500ms ease;
}

.ucl-single-cat:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 0%;
	left: 0px;
	top: 0px;
	right: 0px;
	transition: all 500ms ease;
	background-color: #E6F4F1 !important;
}

.ucl-cat-icon {
	position: relative;
	display: block;
	font-size: 50px;
	line-height: 90px;
	color: #93959e;
	transition: all 500ms ease;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	object-fit: fill;
	padding: 0.6rem;
}
.ucl-cat-icon img {
	width:100%;
	height: 100%;
}

.ucl-absolute-link {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ucl-cat-title {
	display: block;
	font-size: 18px;
	line-height: 26px;
	position: absolute;
	bottom: -0.4rem;
	right: 0.3rem;
	background-color: white;
	transition: all 500ms ease;
	font-family: "Oxygen Mono", monospace;
}
.ucl-cat-title h3 {
	margin: 0rem;
	padding: 0rem 0.4rem;
}
.ucl-cat-count {
	position: absolute;
	top: 0.8rem;
	left: 1rem;
}
.ucl-cat-count span {
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	color: #93959e;
	background: #f2f2f5;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: all 500ms ease;
}

.ucl-cat-icon i {
	display: inline-flex;
}


.ucl-single-cat:hover:before {
	height: 100%;
}

.ucl-single-cat:hover .ucl-cat-icon i  {
	color: #FFF;
}

.ucl-single-cat:hover .ucl-cat-title h3  {
}

.ucl-single-cat:hover .ucl-cat-count span  {
	color: #fff;
	background-color: rgba(255,255,255,0.2);
	position: relative;
}