#stellplätze{
    margin-left: 15px;
    scroll-behavior: smooth;
    overflow: scroll;
    box-sizing: border-box;
    width: 85%;
    height: 100dvh;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#stellplätze::-webkit-scrollbar {
    display: none;
}

.closeFilter{
    width: 30px;
    height: 30px;
    filter: invert(0.6);
}

.close, .close:hover, .close:focus, .close:active {
    background: none;
    box-shadow: none;
    border: none;
    color: var(--main-text-color);
}

.suchleiste{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 10%;
}

.suchleiste>button{
    border-radius: var(--main-border-radius-big);
    height: 50px;
    margin-right: 10px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#suchausgabe{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#suchausgabe::-webkit-scrollbar {
    display: none;
}

#search{
    width: 50%;
    border-radius: var(--main-border-radius-big);
    height: 50px;
    margin-right: 10px;
}

.searchIcon{
    width: 50px;
    height: 50px;
}

.uebersicht{
    display: flex;
    flex-grow: 1;
    height: fit-content;
    overflow: scroll;
    margin: 10px;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#uebersicht::-webkit-scrollbar {
    display: none;
}

#artsuche{
    border-radius: var(--main-border-radius-big);
    height: 50px;
    margin-right: 10px;  
    border: 1px solid var(--main-border-color);
}

.filter1{
    background-color: var(--farbe-1);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter2{
    background-color: var(--farbe-2);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter3{
    background-color: var(--farbe-3);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter4{
    background-color: var(--farbe-4);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter5{
    background-color: var(--farbe-5);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter6{
    background-color: var(--farbe-6);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter7{
    background-color: var(--farbe-7);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter8{
    background-color: var(--farbe-8);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter9{
    background-color: var(--farbe-9);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter10{
    background-color: var(--farbe-10);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter11{
    background-color: var(--farbe-11);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter12{
    background-color: var(--farbe-12);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter13{
    background-color: var(--farbe-13);
    filter: invert(0);
    border-radius: var(--main-border-radius);
}

.filter{
    position: fixed;
    top: 10%;
    right: 5%;
    width: 30%;
    max-height: 80%;
    overflow-y: auto;
    background-color: var(--main-background-karte);
    border: 1px solid var(--main-border-color);
    border-radius: var(--main-border-radius);
    box-shadow: var(--main-box-shadow);
    padding: var(--main-margin-s);
    z-index: 10000;
    display: none;
}

/* From Uiverse.io by Yaya12085 */ 
.radio-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--main-text-color);
    flex-wrap: wrap;
    flex: 1;
}

.radio-tile{
    color: var(--main-text-color-light);
}

.radio-inputs > * {
    margin: 6px;
}

.radio-input:checked + .radio-tile {
    border-color: var(--main-accent);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--main-text-color);
}

.radio-input:checked + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--main-accent);
    border-color: var(--main-border-color-ratings);
}

.radio-input:checked + .radio-tile .radio-icon {
    fill: var(--main-accent);
}

.radio-input:checked + .radio-tile .radio-label {
    color: var(--main-text-color);
}

.radio-input:focus + .radio-tile {
    border-color: var(--main-border-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
}

.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 80px;
    border-radius: 0.5rem;
    border: 2px solid var(--main-border-color);
    background-color: var(--main-bg-color-karte);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

.radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid var(--main-border-color);
    background-color: var(--main-bg-color-karte);
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}

.radio-tile:hover {
    border-color: var(--main-border-color-ratings);
}

.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.radio-icon svg {
    width: 2rem;
    height: 2rem;
    fill: #494949;
}

.radio-label {
    color: var(--main-text-color-light);
    transition: 0.375s ease;
    text-align: center;
    font-size: 12px;
}

.radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.euroIcon{
    width: 80px;
    height: 80px;
}

.filterbutton{
    padding: 20px 5px;
}

.nonInvert{
    filter: invert(0) !important;
}

#filterheader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.osm-container{
    margin: 20px;
    margin-right: 30px;
    width: 55%;
    border: 1px solid var(--main-border-color);
    border-radius: var(--main-border-radius);
    box-shadow: var(--main-box-shadow);
    float: left;
}

/*Large Desktop, TV, etc.*/
@media screen and (min-width: 1200px){

}

/*Tablet landscape, laptop, Desktop*/
@media screen and (min-width: 992px) and (max-width: 1199px){ 

}

@media screen and (max-width: 1152px) and (min-width: 769px) {
    .filter{
        width: 45%;
        right: 5%;
        top: 10%;
        max-height: 80%;
        overflow-y: auto;
    } 
}

/*Tablet portrait*/
@media screen and (min-width: 767px) and (max-width: 991px) { 

}

/*mobile landscape*/
@media screen and (min-width: 480px) and (max-width: 766px){
    .suchleiste{
        flex-wrap: wrap;
        margin-right: 20% !important;
        gap: 5px;
    }
    #stellplätze{
        width: 100%;
        float: left;
        height: 20%;
        aspect-ratio: 4/3;
        width: 95%;
        float: left;
        overflow: visible;
        margin-bottom: 60px;
    }
    .osm-container{
        height: 60%;
        margin: 0;
        margin-bottom: 10px;
        margin-right: 10px;
        width: 100% !important;
    }
    .uebersicht{
        flex-direction: column ;
        overflow: visible;
        height: 100%;
        width: 100%;
    }
    .start{
        margin-bottom: 80px;
    }
    .filter{
        width: 60%;
        right: 5%;
        top: 10%;
        max-height: 80%;
        overflow-y: auto;
    } 
}

@media screen and (max-width: 479px){
    .suchleiste{
        flex-wrap: wrap;
        margin-right: 10% !important;
        gap: 5px;
    }
    #stellplätze{
        width: 100%;
        float: left;
        height: 20%;
        aspect-ratio: 4/3;
        width: 95%;
        float: left;
        overflow: visible;
        margin-bottom: 60px;
    }
    .osm-container{
        height: 60%;
        margin: 0;
        width: 100% !important;
        margin-bottom: 10px;
        margin-right: 10px;
    }
    .uebersicht{
        flex-direction: column;
        overflow: visible;
        height: 100%;
    }
    .start{
        margin-bottom: 80px;
    }
    .filter{
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        top: 10%;
        max-height: 80%;
        overflow-y: auto;
    }
    .searchIcon{
        width: 30px;
        height: 30px;
    }
}