
 
  .trip-advisor-float {
  position: fixed;
  top: 220px;
  right: 20px;
  z-index: 9999;
  width: 150px;
    min-width: 150px;
    height: 197px;
        min-height: 197px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.trip-advisor-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}
 
/* Mobile-specific styling */
@media screen and (max-width: 1178px) {
  .trip-advisor-float {
      top: 80px;
    width: 100px;
    height: 131px;
  }
}


.trip-advisor-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}
