body {
    height: 100%;
}

#map {
    height: calc(100vh - 60px);
}

#station {
    z-index: 1000;
    display: none;
    position: absolute;
    background: #fff;
    top: 60px;
    left: 0px;
    height: calc(100vh - 100px);
    overflow-y: scroll;
    margin: 20px;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0;
}

.indicator {
    width: 50px;
    margin-right: 0.5em;
}


@media only screen and (max-width: 720px) {
    #station {
        height: calc(50vh - 40px);
        top: inherit;
        right: inherit;
        bottom: 0px;
        width: calc(100% - 40px);
    }

    #map {
        /*height: calc(50vh - 60px);*/
    }
}
