.cate-thumb{
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 6px 15px;
border-radius: 3px;
overflow: hidden;
background: #ee1d24;
}
.cate-thumb *{
position: relative;
z-index: 9;
}
.cate-thumb::after{
transition: .3s all ease-in-out;
-webkit-transition: .3s all ease-in-out;
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
content: "";
transform: translateX(-100%);
left: 0;
background: rgb(255,198,13);
background: -moz-linear-gradient(left, rgba(255,198,13,1) 0%, rgba(240,71,34,1) 100%);
background: -webkit-linear-gradient(left, rgba(255,198,13,1) 0%,rgba(240,71,34,1) 100%);
background: linear-gradient(to right, rgba(255,198,13,1) 0%,rgba(240,71,34,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc60d', endColorstr='#f04722',GradientType=1 );
}
.catering-slider-thumb .slick-current .cate-thumb::after{
transform: translateX(0);