#layout_mobile_navigation{
    display: grid;
    grid-template-columns: repeat(5, calc(calc(100% - 1.667em) / 5));
    gap: 0.333em;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 120%);
    background-color: #fff;
    height: 3.556em;
    width: calc(100% - 0.889em);
    border-radius: 1.556em 1.556em 0px 0px;
    -webkit-box-shadow: 0px -3px 6px 0px var(--shadowLightgray); 
    box-shadow: 0px -3px 6px 0px var(--shadowLightgray);
    transition: transform 0.3s ease;
    justify-content: space-between;
    padding: 0.667em 0.889em;
    box-sizing: border-box;
    z-index: 10000;
}

#layout_mobile_navigation > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    cursor: pointer;
}

#layout_mobile_navigation > * span:not(.cartIcon) {
    font-size: 0.611em;
}

#layout_mobile_navigation > * svg {
    width: 1.622em;
    --svgColor: var(--gray);
}


#layout_mobile_navigation > *.active svg * {
    fill: var(--primaryColor) !important;
}

#layout_mobile_overlay {
		display: none;
		position: fixed;
		bottom: 3.556em;
		left: 0;
		overflow: auto;
		background-color: #ffffff;
		z-index: 1000;
		transition: bottom 0.25s ease-out;
        width: 100%;
        height: calc(calc(100% - 3.556em) - 3em);
        box-sizing: border-box;
        z-index: 10000;
        padding: 1.111em 1.444em;
}

#layout_mobile_overlay.active {
    display: block;
}

#layout_mobile_head_schliessen{
    top: 0;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #fff;
    min-height: 10px;
    z-index: 10001;
    display: flex;
    justify-content: space-between;
    height: 3em;
    align-items: center;
    padding: 0 1em;
    box-sizing: border-box;
    display: none;
    -webkit-box-shadow: 0px 3px 6px 0px var(--shadowLightgray);
    box-shadow: 0px 3px 6px 0px var(--shadowLightgray);
}

#layout_mobile_head_schliessen .left {
    cursor: pointer;
    background-color: var(--softWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 1.5em;
    height: 1.5em;
    padding: 0.1em;
    box-sizing: border-box;
    border-radius: 50%;
}

#layout_mobile_head_schliessen .left svg {
    --svgColor: #000;
}

.searchBarFormMobile input{
    display: none;
}

.searchBarFormMobile{
    position: relative;
    margin: 1em 0;
    margin-top: 0;
    padding: 0;
    width: 100%;
}

.searchBarFormMobile input[type="search"]{
    display: block;
    border: solid 1px #000;
    box-sizing: border-box;
    padding: 0.8em;
    border-radius: 22px;
    padding-left: 3.3em;
    width: 100%;
}
.searchBarFormMobile::before{
    content: "";
    background-image: url('/bilder/icons/colorSeperate/search_primaryColor.svg');
    width: 20px;
    height: 20px;
    background-size: 20px; 
    position: absolute;
    left: 17px;
    top: 50%;               
    transform: translateY(-50%);
}

#layout_mobile_head_ueberschrift{
    display: none;
}


@media (max-width: 500px) {
    #layout_mobile_navigation{
        transform: translate(-50%, 0);
    }

    #layout_mobile_head_ueberschrift{
        display: block;
    }

    #layout_mobile_overlay_menu {
        flex-direction: column;
        height: 100%;
    }

    #layout_mobile_overlay_menu .itemDropDownListWrapper, #layout_mobile_overlay_menu .itemDropDownList, #layout_mobile_overlay_menu .itemDropDownListItem {
        width: 100%;
        gap: 2.222em;
    } 

    #layout_mobile_overlay_menu .itemDropDownListWrapper {
        margin: unset;
    }
}

#layout_mobile_filter_ort {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
}

#layout_mobile_filter_ort > * {
    flex-grow: 1;
}