Add shadow to review cards on hover

Add this code to the Custom CSS field on the Style tab of your Reviews widget’s settings:

.es-review-container {
overflow: visible;
}

.es-review-background-container {
transition: box-shadow .5s ease;
}


.es-review-background-container:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}