body {
    margin: 0;
    font-family: 'BentonSans', sans-serif;
    font-size: .80em;
    background: #ffffff
}

*{
    box-sizing: border-box;
}

.world-map {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 1em;
    position: relative;
}

.world-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gsl_card {
    width: 100%;
    max-width: 675px;
    top: 0%;
    left: 20%;
    margin: 0 auto;
    padding: 1em;
    position: absolute;
}

.pin {
    background: #990000;
    position: absolute;
    width: 0.7em;
    height: 0.7em;
    border-radius: 50%;
}

.pin::before {
    content: '';
    background: #990000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation:
        pulse 1.3s ease in-out infinite;
}

.pin span {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 3em;
    padding: 0.3em 0.6em;
    font-size: 0.9em;
}

.tex {
    top: 57.5%;
    left: 22.5%;
    transition: transform .2s;
}

.tex:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
    z-index: 0;
  }

  .ecu {
      top: 69%;
      left: 27.5%;
      transition: transform .2s;
  }
  
  .ecu:hover {
      -ms-transform: scale(1.5); /* IE 9 */
      -webkit-transform: scale(1.5); /* Safari 3-8 */
      transform: scale(1.5); 
      z-index: 1;
    }

    .hon {
        top: 63%;
        left: 25%;
        transition: transform .2s;
    }
    
    .hon:hover {
        -ms-transform: scale(1.5); /* IE 9 */
        -webkit-transform: scale(1.5); /* Safari 3-8 */
        transform: scale(1.5); 
        z-index: 2;
      }

    .gua {
        top: 62%;
        left: 24%;
        transition: transform .2s;
    }

    .gua:hover {
        -ms-transform: scale(1.5); /* IE 9 */
        -webkit-transform: scale(1.5); /* Safari 3-8 */
        transform: scale(1.5);
        z-index: 3;
    }

.bra {
    top: 71.5%;
    left: 37.5%;
    transition: transform .2s;
}

.bra:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
    z-index: 4;
  }


    .pulse {
        animation: pulse-animation 2s infinite;
      }
      
      @keyframes pulse-animation {
        0% {
          box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
        }
        100% {
          box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        }
      }


  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 175px;
    background-color: #243142;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 0;
    width: 150px;
    bottom: 100%;
    left: 50%;
    margin-left: -75px; /* Use half of the width (120/2 = 60), to center the tooltip */
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  .tooltip .tooltiptext::after {
    content: " ";
    font-size: 0.6em;
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }

  