body {
    background-color: rgb(247, 247, 247);
}


.featured-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Products --- */

.list-group-item,
.form-control {
    background-color: white !important;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .product-image {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
}

.quantity-left-minus {
    padding: 8px 9px 4px 9px;
}

.quantity-right-plus {
    padding: 8px 10px 4px 10px;
}

@media (max-width: 600px) {
    .quantity-left-minus {
        padding: 4px 4px 2px 4px;
    }

    .quantity-right-plus {
        padding: 4px 5px 2px 5px;
    }
}

.quantity-left-minus:hover,
.quantity-right-plus:hover {
    background-color: black;
}

/* --- Datepicker --- */

#datepicker {
    border: 1px solid #dee2e6;
    padding: 16px;
    border-radius: 8px;
    background-color: white;
}

.disabled-date,
td.disabled.day {
    color: #d9d4d4 !important;
    background-color: #f1f1f170 !important;
}

.today,
.clear {
    border: 1px solid #dee2e6 !important;
}

.day.today {
    background: #dcdcdc !important;
    border-color: #fff !important;
}


.active.day {
    background: #000 !important;
}

/* --- Order Summary --- */
hr.dashed {
    border: none;
    height: 1px;
    background: #000;
    background: repeating-linear-gradient(90deg, #000, #000 6px, transparent 6px, transparent 12px);
    margin-top: 8px;
    margin-bottom: 8px;
}

.card-text {
    margin-bottom: 4px;
}

.card-text.grey {
    color: #9c9c9c;
}

.order-summary-item-not-available {
    color: red;
}

.order-summary-item-not-available .card-text.product-name::after {
    content: "An diesem Tag nicht verfügbar und wird nicht berücksichtigt";
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.order-summary-item-not-available .card-text.product-price {
    text-decoration: line-through;
}



/* --- Customer Form --- */
input::placeholder {
    color: #b7b7b7 !important;
}