#shop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#shop-formular {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
}

#Produkte-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.produkt-bereich-container, .pd-bereich-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.produkt {
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    min-height: 50px;
    width: 100%;
    padding: 5pt 0pt;
}

.produkt * {
    box-sizing: border-box;
}

.produkt p {
    margin: 0;
}

.produkt-preis, .produkt-name {
    padding: 0pt 5pt;
    margin: 0;
    display: flex;
    margin: 0;
}

.produkt-name {
    width: 50%;
    align-items: center;
}

.produkt-preis {
    width: 20%;
    justify-content: start;
    align-items: center;
}

.produkt-input-container {
    display: flex;
    justify-content: center;
}

.produkt-input {
    width: 30%;
    border-radius: 5pt;
    height: 100%;
}

.personal-data-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

.lieferbedingungen-content {
    text-align: center;
}

.halb-input-container {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5px;

    margin: 5px 0;
}

.halb-input {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    min-height: 120px;
    gap: 0;
}

.halb-input label {
    box-sizing: border-box;
    flex: 1;
    display: flex;
    width: 100%;
}

.halb-input input {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
}

.halb-input select {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
}

#AGB-checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.AGB-checkbox-inhalt {
    padding: 0pt 10pt;
}

.anschrift {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bestellbutton {
    background-color: black;
    color: white;
    border-radius: 8px;
    border: 0;
    padding: 10px 24px;
}

@media (max-width: 1024px) {

#shop-formular {
    width: 98%;
}

.produkt-name {
    width: 60%;
}

.produkt-preis {
    width: 30%;
}

.produkt-input-container {
    width: 10%;
    justify-content: end;
}

.produkt-input {
    width: 100%;
}
}