Those that use the default MyListing Add Listing flow will notice the Listing Type boxes flip on hover. Some like this. Some don’t.
This code snippet is for those that just want the boxes to be clickable and not flip.
.face.ac-back-side {
display: none !important;
}
.face.ac-front-side:hover {
-webkit-transform: rotateX(0deg) !important;
transform: rotateX(0deg) !important;
}