:root {
    --base: #00bcd4;
    --escuro: #333;
    --claro: #e9e9e9;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#pagina {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

#mapa {
    background-color: gray;
    width: 100%;
}

#areatab {
    display: flex;
    flex-direction: row;
    background-color: var(--claro);
    height: 190px;
    min-height: 190px;
}

#txt_tabela {
    background-color: var(--claro);
    height: 100%;
    font-size: smaller;
    max-height: 110px;
    min-width: 150px;
    max-width: 200px;
    overflow-y: hidden;
    overflow-x: hidden;
}

#conteiner0a {
    display: flex;
    background: var(--claro);
    height: 40px;
    min-height: 40px;
    overflow-x: hidden;
}

#conteiner0b {
    display: flex;
    flex: 10;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: hidden;
}

#logo {
    color: white;
    background: var(--base);
    text-shadow: 1px 1px 2px black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

#util {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

#pesquisaRapida {
    background: var(--claro);
    flex: 1;
}

#barraLateral {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    background-color: var(--claro);
    overflow-y: hidden;
    overflow-x: hidden;
}

.conteudobarralateral {
    margin-top: 0px;
    border: 0px;
    line-height: 90%;
}

#hamburger {
    background: var(--base);
    top: 0;
    right: 0;
    line-height: 25px;
    padding: 0px 10px 0px 10px;
    color: white;
    border: 0;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    z-index: 10000000000000;
}

@media (max-width: 550px) {

    #logo,
    #barraLateral {
        display: none;
    }
}

/* lista autocompletar */
.ui-autocomplete {
    height: 300px;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

ul.ui-autocomplete {
    z-index: 402;
}

.ui-accordion {
    overflow-x: hidden;
    overflow-y: scroll;
}

.ui-state-active,
.ui-widget,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
.ui-button,
.ui-button:active,
.ui-state-active,
.ui-state-active,
.ui-state-hover,
.ui-state-visited,
.ui-state-focus,
.ui-accordion-header,
.ui-accordion-header-active {
    border: none;
}

.tabulator {
    font-size: 12px;
    background: var(--claro);
}

.tabulator .tabulator-header .tabulator-col {
    background: var(--base);
    color: var(--claro);
    text-shadow: 1px 1px 2px black;
}

.tabulator .tabulator-header {
    border-bottom: 0px;
}

.tabulator .tabulator-header,
.tabulator .tabulator-header .tabulator-col {
    background-color: var(--base);
}

.leaflet-container {
    background: #E6E6E6;
}

.leaflet-default-icon-path {
    background-image: url(images/marker-icon.png);
}

.leaflet-control-layers-toggle {
    background-image: url(images/layers.png);
}

.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(images/layers-2x.png);
}

.leaflet-control-draw-measure {
    background-image: url(images/measure-control.png);
}