@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {border:inherit !important;}

.leaflet-touch .leaflet-bar a{margin:8px 0 !important; color:#000f9f !important;}



#map {
    height: 30rem;
    background-color: #ADE0FF;
    padding: 0px;
    margin:0px;
}

.city-tooltip {
    background-color: white;
    border: 1px solid #333;
    padding: 6px;
    font-size: 12px;
}

#search-container {
   position: inherit;
    left: inherit;
    z-index: 1000;
}

#province-dropdown,
#city-dropdown {
    margin-bottom: inherit;
}

#search-input {
    padding: 5px;
}

.city-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000f9f;
    opacity: 1;
}

.text-06rem{font-size:0.6rem;}


.pulsating-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin: .2rem 0;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    z-index: 215;
}


.pulsating-circle {
    background: radial-gradient(circle, rgba(0,15,159,1) 0%, rgba(9,9,121,0.5) 44%, rgba(0,212,255,0.1) 85%);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}




.dummy-marker {
    display: none;
}

.leaflet-bottom {
    display: none;
}

#result-card {
display: none;
position: relative;
left: 50%;
transform: translateX(-50%);
text-align: center;
}

#card-title {

}

#card-content {

}

.leaflet-marker-icon.pulsating-circle-inner.leaflet-zoom-animated.leaflet-interactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    translate: -38%;
}

a.leaflet-control-zoom-in {
    outline: solid;
}

a.leaflet-control-zoom-out {
    outline: solid;
}
@media (max-width:768px){
    #map {
    height: 25rem;
    }
}