.uc_image_reveal * { 
margin: 0; 
padding: 0; 
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box; 
box-sizing: border-box; 
}
.uc_image_reveal{
position: relative;
}
.uc_image_reveal_box{
position: relative;
overflow: hidden;
margin: 0 auto;
}
.uc_image_reveal_box img{
width: 100%;
object-fit: cover;
}
.uc_image_reveal_box .uc_overlay{
position: absolute;
right: 0;
top: 0;
background: #fff;
width: 100%;
height: 100%;
transition: ease-in-out all 0.5s;
}
.uc_image_reveal_box .uc_overlay.uc_reveal{
width: 0;
}