.header-section {
    left:0;
}

#warenkorb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* align-items: center; */
    margin-bottom: 1rem;
    gap: 1rem;
}

#mappeAngebotWrap, #mappeAuswahlWrap {
    max-width: 500px;
    min-width: 250px;
}

#hilfe {
    max-width: 1200px;
    min-width: 250px;
}

#mappenAngebot button {
    margin-right: 1rem
}

#mappenAngebot .iconDiv {
    margin-left: 1rem
}

#tabelle {
    border: 1px solid grey;
    padding: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    max-width: 600px;
}

#tabelle .zeile, #warenkorb .zeile {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}

#tabelle .zeile:hover {
    background-color: #f0f0f0;
}

#tabelle .zeile.selected {
    background-color: var(--selectcolor);
    color: #fff;
}

.preisklassenTitel {
    display: flex;
    align-items: center;
}

.links {
    text-align: left;
    font-weight: bold;
}
.mitte {
    text-align: right;
}

.cell {
    padding: 0.5rem;
    border-bottom: 1px solid grey;
}

.head1 {
    font-weight: bold;
    font-size: 2rem;
    margin-left: 1rem;
    padding: 0;
    color: #000;
    margin-bottom: 4px;
    text-align: left;
    width: 100%;
}

.subhead {
    font-size: 1.5rem;
    margin-left: 1rem;
    padding: 0;
    color: #000;
    margin-bottom: 4px;
    text-align: center;
    width: 100%;
}

/* WARENKORB */
#meinWarenkorb {
    border: 1px solid grey;
    padding: 1rem;
    cursor: pointer;
}
#meinWarenkorb .wkRow {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 3rem;
   align-items: center;
    gap: 10px;
}

.wkRow .head {
    font-weight: bold;
    margin-block:  10px;
}

#bestellen {
    width: 100%;
    display: flex;
} 

#zurAdressEingabe {
  width: 100%;
}

.shopBtn {
    background-color: #f8721d;
    max-width: 100%;
    min-width: 2rem;
    color: #fff;
    border: none;
    padding-block: 0.5rem;
    padding-inline: 2rem;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.shopBtn:hover {
    background-color: #af6f01;
    color: #fff;
    cursor: pointer;
}

#adressBtnsDiv button {
    flex-grow: 1;
    min-width: 200px; /* Mindestbreite für die Buttons */
    margin-right: 10px; /* Abstand zwischen den Buttons */
    margin-bottom: 10px; /* Abstand unterhalb der Buttons */
}

#adressBtnsDiv {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

#lieferanschrift {
    width: 400px;
    display: none;
    position: absolute;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
        box-shadow: 5px 5px 23px -3px #000000;
}
.lieferbtns {
    justify-content: space-evenly;
    display: flex;
    padding: 1rem;
}

.lieferbtns div {
    width: 10rem;
    border-radius: 4px;
    cursor: pointer;
}

.lieferbtns div:hover {
    background-color: #f8721d;
    color: #fff;
}

.mappenTitel {
    display: flex;
    align-items: center;
}
#sumField {
    width: 400px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}