.stilecht_googlemaps_widget {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

#map {
    min-height: 550px;
}

.map_filter {
    margin-bottom: 1rem;
}

.map_filter .filter {
    background-color: transparent;
    border: 1px solid #E72E76;
    overflow: hidden;
    float: left;
    border-radius: 30px;
    margin-right: 15px;
}

.map_filter .filter label {
    float: left;
    line-height: 100%;
    padding: 0.5rem 2rem;
    margin: 0;
    cursor: pointer;
    color: #E72E76;
    font-weight: 600;
}

.map_filter .filter label span {
    text-align: center;
    padding: 3px 0;
    display: block;
}

.map_filter .filter label input {
    position: absolute;
    display: none;
    color: #E72E76 !important;
}

/* selects all of the text within the input element and changes the color of the text */
.map_filter .filter label input + span{color: #E72E76;}


/* This will declare how a selected input will look giving generic properties */

.map_filter .filter:has(input:checked) {
    background-color: #E72E76;
}

.map_filter .filter input:checked + span {
    color: #ffffff;
    background-color: #E72E76;
}
