/*
  Leaflet.BeautifyIcon, a plugin that adds colorful iconic markers for Leaflet by giving full control of style to end user, It has also ability to adjust font awesome
  and glyphicon icons
  (c) 2016-2017, Muhammad Arslan Sajid
  http://leafletjs.com
*/
.beautify-marker {
    text-align: center;
    font-weight: 700;
    font-family: monospace;
    position:absolute;
}

.beautify-marker.circle {
    border-radius: 100%;
}

.beautify-marker.circle-dot, .beautify-marker.doughnut {
    border-radius: 100%;
}

.beautify-marker.marker {
    border-top-left-radius: 50%;
    border-top-right-radius: 50% 100%;
    border-bottom-left-radius: 100% 50%;
    border-bottom-right-radius: 0%;
    /* rotating 45deg clockwise to get the corner bottom center */
    transform: rotate(45deg); 
    
}

.beautify-marker.marker > * {
    /* rotating 45deg counterclock to adjust marker content back to normal */
    transform: rotate(-45deg);
}


/* Added */
.map-container {
    position: relative; 
    z-index: 2; 
}  

.leaflet-container {
    background-color: transparent; 
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
} 

.leaflet-container a.leaflet-popup-close-button {
    display: none !important; 
} 

.leaflet-popup-tip-container {
    overflow: visible; 
} 

.leaflet-left .leaflet-control {
    margin-left: 0;
}

.leaflet-top .leaflet-control {
    margin-top: 0;
} 

.leaflet-control-container {
    display: none !important; 
} 

.leaflet-popup-content a {
    text-decoration: none; 
} 

.leaflet-popup-tip-container {
    display: none !important;
} 

.beautify-marker { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 

.beautify-marker .fa {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
    font-weight: 600;
    font-size: 19px; 
    line-height: 32px; 
} 

.beautify-marker:nth-of-type(1) .fa:before {
    content: "1"; 
}
.beautify-marker:nth-of-type(2) .fa:before {
    content: "2"; 
}
.beautify-marker:nth-of-type(3) .fa:before {
    content: "3"; 
}
.beautify-marker:nth-of-type(4) .fa:before {
    content: "4"; 
}
.beautify-marker:nth-of-type(5) .fa:before {
    content: "5"; 
}
.beautify-marker:nth-of-type(6) .fa:before {
    content: "6"; 
}
.beautify-marker:nth-of-type(7) .fa:before {
    content: "7"; 
}
.beautify-marker:nth-of-type(8) .fa:before {
    content: "8"; 
}
.beautify-marker:nth-of-type(9) .fa:before {
    content: "9"; 
} 
.beautify-marker:nth-of-type(10) .fa:before {
    content: "10"; 
} 
.beautify-marker:nth-of-type(11) .fa:before {
    content: "11"; 
} 
.beautify-marker:nth-of-type(12) .fa:before {
    content: "12"; 
} 
.beautify-marker:nth-of-type(13) .fa:before {
    content: "13"; 
} 
.beautify-marker:nth-of-type(14) .fa:before {
    content: "14"; 
} 
.beautify-marker:nth-of-type(15) .fa:before {
    content: "15"; 
} 
.beautify-marker:nth-of-type(16) .fa:before {
    content: "16"; 
} 
.beautify-marker:nth-of-type(17) .fa:before {
    content: "17"; 
} 
.beautify-marker:nth-of-type(18) .fa:before {
    content: "18"; 
} 
.beautify-marker:nth-of-type(19) .fa:before {
    content: "19"; 
} 
.beautify-marker:nth-of-type(20) .fa:before {
    content: "20"; 
}  