body {
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
}
#map-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
#info {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255,255,255,0.8);
    padding: 8px;
    border-radius: 8px;
}
#gen-info-btn {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    border-radius: 12px;
    background-color: rgba(196,196,196,0.6);
    background-image: url("../img/info.svg");
}
#gen-info-btn:hover {
    background-color: rgba(196,196,196,1.0);
}
#pano-info  {
    width: 200px;
}
#messages-container {
    max-width: 33%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.message-error {
    margin: 5px;
    padding: 8px;
    background: repeating-linear-gradient(45deg, rgb(200,190,190), rgb(200,190,190) 10px, rgb(250,220,220) 10px, rgb(250,220,220) 20px);
    border-radius: 12px;
}
#dialog {
    display: flex;
    flex-flow: column nowrap;
    margin: 5px;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.8);
}
.dialog-hidden {
    display: none !important;
}
#dialog-text {
    margin: 8px;
}
.dialog-btn-container {
    display: flex;
    flex-flow: row nowrap;
    margin: 6px;
}
.dialog-btn {
    flex: 1 1 auto;
    margin: auto;
    padding: 5px;
    text-align: center;
    border-radius: 6px;
}
.dialog-btn-ok {
    margin-right: 2px;
    background-color: rgb(200,200,200);
}
.dialog-btn-ok:hover {
    background-color: rgb(150,150,200);
}
.dialog-btn-close {
    margin-left: 2px;
    background-color: rgb(200,200,200);
}
.dialog-btn-close:hover {
    background-color: rgb(180,180,180);
}
#filters-container {
    height: 48px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-flow: row nowrap;
}
#filters-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.6);
    background-image: url("../img/filter.svg");
    z-index: 10;
}
#filters-btn:hover {
    background-color: rgba(255,255,255,1.0);
}
#filters-panel {
    display: flex;
    overflow: hidden;
    line-height: 12px;
    margin-left: -48px;
    padding-left: 48px;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.6);
}
.filters-panel-hidden {
    display: none !important;
}
#filter-alt-high-btn {
    width: 48px;
    height: 18px;
    background-image: url("../img/filterHigh.svg");
    background-size: 48px 18px;
}
#filter-alt-mid-btn {
    width: 48px;
    height: 10px;
    background-image: url("../img/filterMid.svg");
    background-size: 48px 10px;
}
#filter-alt-low-btn {
    width: 48px;
    height: 18px;
    background-image: url("../img/filterLow.svg");
    background-size: 48px 18px;
}
.filter-pill {
    margin: auto;
    padding: 5px;
    border-radius: 5px;
    background-color: lightgray;
}
