#shop_wrapper {
    display: flex;
    flex-direction: row;
    justify-content:center;
    background-color: var(--color_logo);
    margin-bottom: 15px;
}

#shop_wrapper_items {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 30px;
    justify-content:center;
    padding-left: 7vw;
    padding-right: 7vw;
    margin-bottom: 15px;

}

#shop_filter {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 10px;
}

#oeffnungszeiten_infobox_extra {
    margin-bottom: 10px;
    display: none;
}


#shop_filter .eingabefeld {
    padding: 0 5px;
}

.item_infos_menge_warenkorb .eingabefeld {
    background-color: var(--color_logo);
    color: white;
    padding: 0 2px;
}

.item_infos_menge_warenkorb .eingabefeld:hover {
    background-color: var(--color_logo);
    color: white;
    padding: 0 2px;
}



#shop_select {
    width: 155px;
}

#shop_suche {
    width: 85px;
}

.shop_item {
    width: 180px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.shop_item_bild {
    width: 180px;
    height: 200px;
    background-size: cover;
}

.shop_item_sorte {
    margin-bottom: 10px;
}

.shop_item_preis {
    margin-bottom: 10px;
}

.shop_item_menge {
    margin-bottom: 10px;
    display: flex;
    gap:10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 7px;
    font-size: small;
}

.circle_red {
    width: 10px;
    height: 10px;
    border: 1px solid red;
    background-color: red;
    margin-right: 5px;
    border-radius: 50%;
}

.circle_green {
    width: 10px;
    height: 10px;
    border: 1px solid green;
    background-color: green;
    margin-right: 5px;
    border-radius: 50%;
}

.circle_yellow {
    width: 10px;
    height: 10px;
    border: 1px solid yellow;
    background-color: yellow;
    margin-right: 5px;
    border-radius: 50%;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 150px;
      -webkit-appearance: none;
      background-color: var(--color2);
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 15px;
      -webkit-appearance: none;
      color: var(--color2);
      margin-top: -1px;
    }
    
    input[type='range']::-webkit-slider-thumb {
      width: 15px;
      -webkit-appearance: none;
      height: 15px;
      cursor: grab;
      background: orangered;
      box-shadow: -150px 0 0 150px var(--color_logo);
    }

}
/** FF*/
input[type="range"]::-moz-range-progress {
  background-color:  var(--color_logo); 
}
input[type="range"]::-moz-range-track {  
  background-color: var(--color2);
}
/* IE*/
input[type="range"]::-ms-fill-lower {
  background-color: var(--color_logo); 
}
input[type="range"]::-ms-fill-upper {  
  background-color: var(--color2);
}




@media(max-width: 800px) {
    #shop_wrapper_items {
        row-gap: 50px;
        column-gap: 10px;

    }
}