.hotspot-info-reveal{
    width: 60px;
  height: 60px;
  background-color: #005984;
  border-radius: 50%;
  margin-left: 0;
  text-align: center;
  cursor: pointer;
  transition: height .3s ease-in-out,
              width .3s ease-in-out,
              border-radius .3s ease-in-out,
              margin .3s ease-in-out;
}

.hotspot-info-reveal > img {
  width: 35px;
  margin: 15px 0;
}

.hotspot-info-reveal:hover {
  width: 180px;
  height: auto;
  border-radius: 5px;
  margin-left: -50px;
}

.hotspot-info-reveal:hover .reveal-content {
  opacity: 1;
  pointer-events: all;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity .3s ease-in-out .3s;
}

.hotspot-info-reveal:hover .reveal-content img {
  width: 160px;
  opacity: 1;
  transition: width .3s ease-in-out .4s,
              opacity .3s ease-in-out .4s;
}

.hotspot-info-reveal:hover .reveal-content p {
  margin-top: 10px;
  opacity: 1;
  transition: margin .3s ease-in-out .6s,
              opacity .3s ease-in-out .6s;
}

.reveal-content {
    color: #005984;
  width: 180px;
  /*height: 160px;*/
  padding: 10px;
  background-color: #fff;
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition: opacity .01s ease-in-out;    
   
}

.reveal-content a{
    color: #005984;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.reveal-content a:hover {
    color: #005984;
    text-decoration: none;
}

.reveal-content a:link {
  text-decoration: none;
}

.reveal-content a:visited {
  text-decoration: none;
}

.reveal-content a:hover {
  text-decoration: none;
}

.reveal-content a:active {
  text-decoration: none;
}

.reveal-content img {
  width: 120px;
  opacity: 0;
  transition: width .01s ease-in-out,
              opacity .01s ease-in-out;
}

.reveal-content p {
  margin: 10px 0;
  color: #2d2d2d;
  margin-top: -20px;
  opacity: 0;
  transition: margin .01s ease-in-out,
              opacity .01s ease-in-out;
}



