.ucl-single-cat {
	position: relative;
	max-width: 210px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 25px 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 10px 50px 0px #e4e7ee;
	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: #f85c70;
}

.ucl-cat-icon {
	position: relative;
    display: block;
    font-size: 50px;
    line-height: 90px;
    color: #93959e;
    transition: all 500ms ease;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

.ucl-absolute-link {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ucl-cat-title h3 {
	display: block;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 13px;
	position: relative;
	transition: all 500ms ease;
}

.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 {
    box-shadow: 0px 10px 50px 0px rgb(248 92 112 / 30%);
}

.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  {
	color: #FFF !important;
}

.ucl-single-cat:hover .ucl-cat-count span  {
	color: #fff;
	background-color: rgba(255,255,255,0.2);
	position: relative;
}