Hide close button on desktop (floating badge)

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

.es-close-button-container {
  display: none;
}

@media(max-width: 440px) {
  .es-close-button-container {
    display: block;
  }
}