html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* #map{
    height: 94vh;
} */

.menu-options{
    position: absolute;
    top: 0;
    z-index: 10;
    left: 0;
    right: 0;
    width: 72vw;
    margin: 0 auto;
}

.selection-options{
    /* background-color: #f1f1f1; */
    background-color: #e0e0e0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    /* border: solid 1px #005da947;
    border-top: unset; */
    box-shadow: 0px 1px 2px 1px #343a406e;
}

.btn.btn_markers{
    padding: 2px 10px;
    border-radius: 20px;
    background-color: #fff;
    border: solid 1px #999;
    font-size: 15px;
    display: flex;
    align-items: center!important;
    justify-content: center!important;
}

.btn_markers>img{
    width: 18px;
}

.btn_markers.selected{
    color: #fff;
    background-color: #005da9;
    border: solid 1px #fff;
}

.options_container{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.options_container::-webkit-scrollbar {
    height: 5px;
}
.options_container::-webkit-scrollbar-thumb {
    background: #005da9;
}
.options_container::-webkit-scrollbar-track {
    background: #e9ecef;
}
.search_address{
    font-size: 14px;
}

.c-white{
    color: #fff;
}

.input-group-prepend {
    /* background-color: #E0E0E0; */
    background-color: #005da9;
}
@media (max-width: 991px) {
    .menu-options{
        width: 99.5vw;
        right: 1px;
        left: 1px;
    }

    .btn.btn_markers {
        padding: 4px 10px;
    }

    .btn_markers>img {
        width: 20px;
    }
}

button.gm-ui-hover-effect:focus{
    outline: transparent !important;
}