.tooltip-sphere {
  position: absolute;
  display: none; /* ocultos por defecto */
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  max-width: 220px;
}

.tooltip-country-name{
  text-transform: uppercase;
  font-size: 1rem;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;

} 
.tooltip-country-name img{
 width: 35px;
 height: auto;
 margin-right: 10px;
}
.tooltip-country-data{
  padding: 10px;
  font-size: 1rem;
  display: block;
}
#select-country{
  max-width: 300px;
  width: 100%;
  height: 60px;
  position: relative;
  z-index: 3;
}

#globe { 
    display: block;
  cursor: grab; 
    width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 600px; */
  height: auto;
  transform-origin: 50% 50%;
}
.land { 
  transition: fill 0.3s, filter 0.3s; 
}
.land:hover { 
cursor: pointer;
}
#country-title{
  position: absolute;
  font-size: 11vw;
  line-height: 9vw;
  text-transform: uppercase;
  color: #9a9a9a;
  z-index: 1;
  font-weight: 900;
}

@media (max-width: 768px) {
  #country-title {
    position: static;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  #tooltip {
    position: fixed;
    top: 5% !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 90%;
  }
}