.table {
    display: table;
}
.row {
    display: table-row;
}
.col {
    display: table-cell;
}
.bold {
    font-weight: bold;
}
.table div {
    font-size: 0.95em;
}
.bottomborder {
    border-bottom: 1px solid black;
}
.topborder {
    border-top: 1px solid black;
}
#map {
    width: 100%;
    height: 100vh;
    background: black;
}
input {
    font-size: 0.95em;
}
.inputwrap {
    display: table;
    margin: auto;
    font-size: 0.95em;
    margin-top: 5px;
    margin-bottom: 5px;
}
.pl10 {
    padding-left: 10px;
}
.mb10 {
    margin-bottom: 10px;
}
h3 {
    margin: 0.5em;
}
@keyframes blink {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}
.waiting-dots span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}
.waiting-dots span:nth-child(2) {
    animation-delay: .2s;
}
.waiting-dots span:nth-child(3) {
    animation-delay: .4s;
}

#sidebar {
    z-index: 6000;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column nowrap;
    width: 300px;
    background: #00000080;
    height: 100%;
}

#app {
    overflow: scroll;
    border: 1px solid #ffffff00;
    padding: 0.5em;
    box-sizing: border-box;
}
#info {
    display: none;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #00000080;
    width: 300px;
    z-index: 3000;
    font-size: 0.6em;
}
