  html,body{
    height: 100%;
    
  }
  body { margin:0; padding:0; position: relative; overflow-x: hidden; }

  #container-gray-map{
    position: relative;
    /*border:1px solid green; */
    width:100%;
    height: 650px;
    margin-top: 60px;
  }
  .wrap-map{
    position: absolute; 
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    visibility: inherit;
  }
  #map { 
    position: absolute; 
    top: 0; 
    bottom: 0;  
    width:100%;   
    cursor: grab;
        
  }
  #scimapsLink{
    position: absolute;
    bottom: 0;
    right: 4px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    padding: 0px 8px;
    background: rgb(27 27 27 / 62%);
    cursor: pointer;
  }
  #scimapsLink a{
    color: rgba(255,255,255,1);
    font-size: 14px;
  }  
  #scimapsLink a:hover{
    text-decoration: underline;
    color: rgba(255,255,255,0.85);
  }
  #legend{        
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;    
    background: rgb(255 255 255 / 95%);
    border-radius: 3px;
  }
  
  #legend ul{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #legend li{
    display: flex;
    flex-direction: row;
    align-items: center;    
    padding-bottom: 14px;
    line-height: 100%;       
  }
  #legend li:last-child{
    padding-bottom: 0;
  }
  #legend .leg{
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border-radius: 50%;
  }
  #gov{
    background: rgb(234, 201, 93);
  }
  #health{
    background: rgb(107, 140, 187);
  }
  #universities{
    background: rgb(127, 201, 174);
  }
  #companies{
    background: rgb(228, 113, 103);
  }  
  #non-profit{
    background: rgb(172, 146, 236);
  }
  #map .maplibregl-canvas-container{
    height: 100%;
    /*border: 1px solid yellow;*/
    position: relative;
  }
  #map canvas.maplibregl-canvas{
    

  }

  #map .maplibregl-popup{
    position: absolute;
    top: 0;
    
    background: #fff;
    /*padding: 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-top: -10px;   */
    border-radius: 3px;  
    margin-top: -5px;   
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);

  }
 
  #map .maplibregl-popup-content {
    position: relative;
    padding: 10px;  
    font-size: 14px;
    text-align: left;    

    /*border: 1px solid red;*/

  }
  #map .maplibregl-popup-content *{
    color: #000000;
  }
 .maptoolh{
    font-weight: 800;
    font-size: 20px;
}
  #map .maplibregl-popup-close-button,
  #map .maplibregl-popup-close-button:focus{
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    outline: none;
    width: 32px;
    height: 24px;
    font-size: 14px;
    color: #808080;
  }
  #map .maplibregl-popup-close-button:hover{
    opacity: 0.7;
    cursor: pointer;
  }
  #map .maplibregl-popup-tip {
    border: 10px solid transparent;
    height: 0;
    width: 0;
    z-index: 1;
    align-self: center;
    border-bottom: none;
    border-top-color: #fff;
    position: absolute;
    /*bottom: -8px;*/
    bottom: 0;
}

.mytooltip{        
    background: #ffffff;
    padding: 20px;
    position: absolute;
    border: 1px solid green; 
    
}
#overlay{
 pointer-events: none;
 /*border:1px solid blue; */
 position:absolute; 
 width: 100%; 
 height: 100%; 
 overflow: hidden;
 display: flex;
align-items: center;
}