html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Verdana, "Courier New", Tahoma;
    font-size: 12px;
    /* Vars para ajuste de tela*/
    --panel-width: 350px;
    --filter-heigth: 220px
}

.panel-left {
    float: left;
    width: var(--panel-width);
    height: 100vh;
}

.panel-right {
    float: right;
    width: calc(100% - var(--panel-width));
    height: 100vh;
    border-left: solid 1px #ccc;
}

.filters {
    width: 100%;
    height: var(--filter-heigth);
    background-color: rgb(255, 255, 255);
    border-bottom: solid 1px #ccc;
}

.filter_contents {
    height: 100%;
}

.filter_header {
    padding: 5px;
    width: 100%;
    height: 35px;
    font-size: 15px;
    border-bottom: solid 1px #ccc;
}

.filter_header .title {
    margin: 0 0 0 10px;
    float: left;
}

.filter_body {
    padding: 10px;
    width: 100%;
}

.city-state {
    margin-top: 5px;
}

.categories {
    margin-top: 10px;
}

.apply {
    margin: 12px 0 0 0;
}

.apply-loading {
    display: none;
    float: left;
    margin-top: -5px;
}

.apply-loading .text {
    padding-left: 5px;
    margin-bottom: -5px;
}

.apply-loading .bar {

}

.apply-btn {
    float: right;
}

.list {
    display: inline-flex;
    padding: 10px;
    width: 100%;
    height: calc(100% - var(--filter-heigth));
}

.list-body{
    width: 100%;
    overflow-x: auto;
}

.unit {
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.unit:hover{
    background-color: #4abaff !important;
}

.unit.yes {
    background-color: rgb(255, 246, 212);
}

.unit.no {
    background-color: #e8e8e8;
}


.box-map {
    position: relative;
    width: 100%;
    height: 100vh;
}

.curtain {
    display: none;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 123, 255, 0.3);
    z-index: 1;
}

.map {
    width: 100%;
    height: 100%;
}

/**
    InfoWindow
 */
.gm-style-iw-c, .gm-style-iw-t::after {
    top: -5px !important;
}

.gm-style-iw-c {

}

.iw-box {
    display: block;
    padding: 10px;
    font-size: 15px;
    color: #999;
}

.iw-content {
    display: block;
}

.iw-header {
    display: block;
}

.iw-body {
    display: block;
}

.iw-footer {
    display: block;
}

.iw-header div {
    float: left;
}

.field {
    font-weight: bold;
}

.value {
    color: #009c95;
    font-size: 20px;
    line-height: 15px;
    padding-bottom: 10px;
}

.field, .value {
    float: left;
}

.value {
    margin-left: 5px;
}

.clear {
    clear: both;
}

.specialties-names {
    font-size: 15px;
    font-style: italic;
    text-align: justify;
}

.gm-ui-hover-effect {
    display: none !important;
    visibility: hidden !important;
}

.box-map {
    overflow: hidden;
}

.hr-lb {
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 1;
    transform: rotate(90deg);
}

.hr-lt {
    position: absolute;
    bottom: 50%;
    z-index: 1;
    width: 100%;
}