body {
    margin: 0;
    padding: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.marker {
    background-image: url('../img/map_globe_icon.png');
    /* background-color: brown; */
    background-size: cover;
    width: 30px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.mapboxgl-popup .mapboxgl-popup-anchor-bottom {
    max-width: 350px !important;
    color: black;
}

.g_vt_card .group_title p {
    display: -webkit-box;
    line-height: 1.3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #505050;
    font-size: 11px;
}

.g_vt_card .group_title {
    color: #000;
}

.leaflet-popup-content h5 {
    color: #303c5e;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-title {
    color: #303c5e;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

.mapboxgl-popup-content {
    width: 301px;
    padding: 0;
}

.mapboxgl-popup-close-button{
    display: none;
}

.card-img-block {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.main-loading {
    display: none;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}
  #loadingOverlay {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
  }
  
  .spinner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;  
    }
  
  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin-bottom: 10px;
  }
  
  .loading-text {
    font-size: 16px;
    color: #a4a4a4;
  }
  