* {
    padding: 0; margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
}

.loading-overlay-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.overlay-child {
    position: absolute;
    inset: 0;
}

.hidden {
    display: none !important;
}

#map-error {
    color: #f00;
}

#map-pending {
    background-color: rgba(0, 0, 0, 0.5);
}

#map-error, #map-pending {
    display: flex;
    justify-content: center;
    align-items: center;
}

#map {
    height: 100%;
    width: 100%;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.bg-site {
    background-color: #224abe !important;
}

.site-font-blue {
    color: #224abe !important;
}

.container-fluid {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px rgba(128, 128, 128, 0.1) solid;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.35) !important;
}

.sidebar-item.active {
    color: white;
    font-weight: 500 !important;
}