.map-filter {
    background-color: var(--white);
    width: 100%;
    margin: 20px 0 30px auto;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    overflow: visible;
    --inputsize: 2rem;
}

@media only screen and (min-width: 1080px) {
    .map-filter {
        width: 80%;
    }
}

.map-filter::before {
    content: "";
    width: 30px;
    height: 30px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: var(--white);
    position: absolute;
    bottom: 100%;
    right: 10%;
}

.map-filter::after {
    content: "m";
    background-color: var(--grey-dark-30);
    border-radius: 50px;
    color: var(--black);
    width: calc(var(--inputsize) * 2);	
    height: calc(var(--inputsize) * 2);
    font-family: "default";
    font-size: 27px;
    text-align: center;
    line-height: calc(var(--inputsize) * 2);
    position: absolute;
    top: 0;
    left: 0;
}


.map-filter-field {
    justify-content: space-evenly;
    /* height: 2rem; */
    margin: 0 !important;
}

.map-filter-field form {
    margin: 0;
}

.map-filter-field label {
    display: flex;
    text-transform: uppercase;
    color: var(--grey-dark);
    font-weight: 500;
    line-height: var(--inputsize);
}
.map-filter-field input[type="radio"] {
    width: var(--inputsize);
    height: var(--inputsize);
}

.map-filter-field input[type="radio"]::after {
    background-color: var(--white);
    border-color: var(--black);
    border-radius: 8px;
    border-width: 2px;
    width: var(--inputsize);
    height: var(--inputsize);
}

.map-filter-field input[type="radio"]::before {
    background-color: var(--primary);
    border-radius: 6px;
    width: 70%;
    height: 70%;
    /* width: 2rem;
    height: 2rem; */
}
