/* Image styles */
.reviewsWidgetWidget {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999999999;
  font-size: 16px;
  text-align: center;
  background: white;
  border-radius: 4px;
  font-weight: bold;
  font-family: sans-serif;
  box-shadow: 0px 0px 16px #1a237e;
  padding: 0; /* Reset padding */
  margin: 0; /* Reset margin */
  width: 300px; /* Adjust width to fit content */
  height: 180px; /* Adjust height for image display */
  overflow: hidden; /* Ensure no content overflow */
  display: flex; /* Center content */
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Changes the cursor to a pointer to indicate clickability */
}
.reviewsWidgetWidget img {
  object-fit: contain;
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: 20; /* Lower z-index by default */
  transition: opacity 1s ease-in-out; /* Smooth transition */
}

/* Active image (new image that will be visible) */
.reviewsWidgetWidget img.new {
  opacity: 1; /* Fade into view */
  z-index: 1; /* Behind the fading-out image */
}

/* Old image that fades away */
.reviewsWidgetWidget img.old {
  opacity: 0; /* Fade out */
  z-index: 2; /* On top while fading out */
}