.leaflet-control-attribution.leaflet-control {
    /* hide leaflet attribution */
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

#crosshair {
    left: calc(50% - 10px);
    top: calc(50% - 40px);
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 10000;
    text-align: center;
    font-weight: normal;
    font-size: 32px;
    color: #FF0000;
    text-shadow: 1px 1px 3px #fff;
}

.main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1 1 auto; /* Grow, shrink, and base size on content */
    /*min-height: 50vh;*/
}

#map {
    width: 100%;
    height: 100%;
}

.splitter {
    height: 8px;
    background: #e0e0e0;
    cursor: row-resize;
    flex: none;
}

.nearbyStops-container {
    flex: 0 auto; /* Don't grow, don't shrink, size to content */
    background: #fff;
    overflow-y: auto;
    display: none; /* Hide when empty */
}

.nearbyStops-container:not(:empty) {
    display: block; /* Show when has content */
    /*max-height: 50vh; /* Maximum height of 50% viewport height */
}


