/* Map Places */
.mapplaces_container {
    display: flex;
    flex-flow: column nowrap;

    height: 100%;
}
.mapplaces_search {
    display: flex;
    place-items: center;
    position: relative;
    align-self: center;

    min-width: 50%;
    margin: 0;
    margin-bottom: 1em;
}
.mapplaces_search.mapplaces_search--hide {
    display: none;
    padding: 0;
    margin: 0;
}
.mapplaces_searchBox {
    width: 100%;
    padding: 0.25rem;

    text-align: center;
}
.mapplaces_btnSearch {
    width: 30;
    height: 25;
    margin-left: 1rem;
    border: none;
    border-radius: 2px;

    background-color: #3e3e3e;
    background-image: url('../images/search.png');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
}
.mapplaces_btnSearch:hover {
    cursor: pointer;
    opacity: 0.8;
}
.mapplaces_searchBox:focus {
    outline: none;
    box-shadow: 0px 0px 3px -2px #2890b1;
}
.mapplaces_searchBox:focus + .mapplaces_searchList {
    display: block;
}
.mapplaces_searchList {
    position: absolute;
    display: none;
    top: calc(100% + 0.5em);
    left: 0;
    right: 0;
    z-index: 9999;

    margin: 0;
    padding: 0;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.mapplaces_searchList:is(:focus :active) {
    display: block;
}
.mapplaces_searchList > li {
    display: block;

    padding: 0.5em 0;
    line-height: 30px;
    overflow: hidden;

    color: #4d4c4c;
    white-space: nowrap;
    text-overflow: ellipsis;
    list-style: none;
    background: white;
}
.mapplaces_searchList > li + li {
    border-top: 1px solid #e6e6e6;
}
.mapplaces_searchList > li:hover {
    background-color: #fafafa;
    cursor: pointer;
}
.mapplaces_searchList > li::before {
    content: '';
    flex-shrink: 0;
    display: inline-block;

    width: 15px;
    height: 20px;
    margin: 5px 10px 0 7px;

    vertical-align: top;
    background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
    background-size: 34px;
    background-position-y: 120px;
}
.mapplaces_map {
    flex-grow: 1;
}

.mapIcon {
    background-image: url('../images/mapa.png');
    background-size: contain;
}
