/* Headings bold mono */
.brotchen-plan-table-wrap h3,
.brotchen-plan-table-wrap .preorder-inputs-wrap > div:first-child,
.demoko-preorder-admin h3 {
  font-family: "Rubik Mono One", sans-serif !important;
  font-weight: 400;
}

/* Rubik */
.brotchen-plan-table-wrap,
.brotchen-plan-table-wrap *,
.demoko-preorder-admin,
.demoko-preorder-admin *,
.preorder-inputs-wrap,
.preorder-inputs-wrap * {
  font-family: "Rubik", sans-serif !important;
  font-weight: 400;
}

/* Inputs*/
.preorder-qty-input {
  font-family: "Rubik", sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
}

.demoko-brotchen-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}

.demoko-brotchen-table th,
.demoko-brotchen-table td {
    border: 1px solid #eee;
    padding: 8px 12px;
    text-align: left;
}

.demoko-brotchen-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.demoko-brotchen-table tr:nth-child(even) td {
    background: #fafafa;
}

.demoko-brotchen-table input[type="number"] {
    width: 48px;
    padding: 3px 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-align: center;
}

.demoko-brotchen-table input[type="number"]:focus {
    border-color: #0073aa;
    outline: none;
}

.demoko-brotchen-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2em;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px #0001;
}

.demoko-brotchen-table th,
.demoko-brotchen-table td {
    padding: 16px 14px;
    vertical-align: middle;
    border-bottom: 1px solid #ececec;
    font-size: 1rem;
}

.demoko-brotchen-table tr:last-child td {
    border-bottom: none;
}
.demoko-brotchen-table tr> th:nth-child(1){
    padding-left: 14px;
}
.demoko-brotchen-table th {
    background: #f7faf7;
    font-weight: 600;
    font-size: 1.05em;
    color: #444;
}

.brotchen-summary-img {
    width: 80px;
    height: 80px!important;
    object-fit: cover;
    border-radius: 12px!important;
    box-shadow: 0 1px 4px #0001!important;
    background: #fafafa;
    display: block;
}

.brotchen-summary-container {
    position: relative;
}

.brotchen-summary-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.brotchen-loader-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #d6d6d6;
    border-top: 5px solid #a4d65e;
    border-radius: 50%;
    animation: brotchen-spin 1s linear infinite;
}

@keyframes brotchen-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}