.hotelstars {
  cursor: pointer;
}

.hotelstars .hotelstarsmessage{
  visibility: hidden;
  width: 280px;
  background-color: rgb(124, 142, 64, 0.9);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  border-color: #fff;	
  padding: 7px 5px;
  position: absolute;
  z-index: 1000;
  left: 10%;
  margin-top: -85px;	
  opacity: 0;
  transition: opacity 0.3s;
}

.hotelstars:hover .hotelstarsmessage {
  visibility: visible;
  opacity: 1;
}