/* //=== MODAL DLG ===// */

#busyDiv {
        display: none;
        z-index: 100;
        position: absolute;
        width: 150px;
        height: 180px;
        margin: auto;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
}

#successDiv {
        z-index: 12;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
}

#hinweisBox {
        z-index: 12;
        position: absolute;
        width: 400px;
        height: auto;
        padding: 20px;
        border: 10px inset red;
        background-color:white;
        top: 30%;
        left: 50%;
        box-shadow: 0px 0px 50px black ;
        transform: translate(-50%, -50%);
}

#hinweisTitel {
        border-bottom: 1px red solid;
        margin-bottom: 10px;
}

#hinweisDiv {
        display: none;
        background-color: rgba(0,  0,  0, 0.07);
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(2px);
        z-index: 100;
}

#hinweisBox#data {
        display: none;
        width: 100%;
}

#okBtn {
        float: right;
        width: 100px;
}

#cancelBtn {
        /* display: none; */
        float: left;
        width: 100px;
}

/* PRODUKTE */

p.produktname {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: 'Open Sans Bold';
        font-size: 15px;
        text-align: center;
        font-weight: bold;
        margin: 0px;
}

p.erscheint {
        font-family: 'Open Sans';
        font-size: 14px;
        text-align: center;
        margin: 0px;
        text-align: center;
}

.preisSelect {
        width: 120px;
        margin-left: 15px;
        margin-right: 15px;
        background-color: #f5f5f5;
        border: .5px solid #d2d2d2;
}

.form-group {
        margin-bottom: 5px;
        text-align: center;
}

p {
        text-align: center;
}

.einProdukt {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
}

.einProdukt:hover {
        /* transform: scale(1.1);
        transition: transform 0.3s ease-in-out; */
}

.einProdukt .beschreibung {
        width: 80%;
        position: absolute;
        border-radius: 10px;
        bottom: 10px;
        padding: 4px;
        background-color: white;
        box-shadow: 5px 5px 23px -3px #000000;
}

.warenkorb {
        position: relative;
        cursor: pointer;

}
.wrap23 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
}

.preis {
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
}

.preis-select {
        text-align: right;
}

.warenkorbIcon,.entfernenIcon {
        width: 32px;
        border: none;
}

.warenkorbIcon:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease-in-out;
}

.produkt-preis {
        font-family: 'Open Sans Bold';
        font-size: 15px;
        text-align: center;
        font-weight: bold;
        margin: 0px;
}