.rbs-order-page{
    max-width:1100px;
    margin:40px auto;
    font-family:Montserrat,Helvetica,sans-serif;
    background:#fff;
}

.rbs-order-title{
    text-align:center;
    font-size:34px;
    text-transform:uppercase;
    margin-bottom:60px;
    color:#111;
        font-weight: bold;
}

.rbs-order-box,
.rbs-add-box{
    background:#fff;
    margin-bottom:30px;
}

.rbs-order-box h2,
.rbs-add-box h2{
    font-size:26px;
    color:#111;
    margin:0 0 18px;
    background:none;
    padding:0;
}

.rbs-order-table{
    width:100%;
    border-collapse:collapse;
}

.rbs-order-table th,
.rbs-order-table td{
    border:1px solid #eee;
    padding:12px;
    font-size:14px;
    text-align:center;
}

.rbs-order-table th{
    font-weight:700;
    background:#fff;
}

.rbs-empty-row td{
    text-align:left;
    color:#555;
}

.rbs-grand-total{
    text-align:right!important;
    font-weight:700;
}

.rbs-add-grid{
    display:grid;
    grid-template-columns:170px 220px 170px 70px 170px 180px;
    gap:8px;
    align-items:center;
}

.rbs-add-grid select,
.rbs-add-grid input{
    height:42px;
    padding:8px 12px;
    border:1px solid #ddd;
    background:#f3f3f3;
    font-size:14px;
    box-sizing:border-box;
}

.rbs-rate-wrap{
    text-align:center;
    font-size:12px;
    line-height:1.2;
}

.rbs-rate-wrap small{
    display:inline;
    color:#111;
}

.rbs-rate-wrap strong{
    display:block;
    color:#111;
    font-size:13px;
}

#rbs-add-order{
    height:42px;
    border:0;
    background:#e10d0c;
    color:#fff;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
}

.rbs-remove-item{
    border:0;
    background:#111;
    color:#fff;
    border-radius:50%;
    width:22px;
    height:22px;
    cursor:pointer;
    font-size:0;
}

.rbs-remove-item:before{
    content:"×";
    font-size:14px;
}

.rbs-bottom-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:60px;
    border:1px solid #111;
    padding:20px;
}

.rbs-primary,
.rbs-secondary{
    border:0;
    padding:25px 30px;
    cursor:pointer;
    font-size:28px;
    font-weight:bold;
}

.rbs-primary{
    background:#e10d0c;
    color:#fff;
}

.rbs-secondary{
    background:#fff;
    color:#111;
    text-align:left;
    font-size:32px;
}

@media(max-width:992px){
    .rbs-add-grid{
        grid-template-columns:1fr;
    }

    .rbs-bottom-buttons{
        grid-template-columns:1fr;
    }

    .rbs-order-table{
        display:block;
        overflow:auto;
    }

    .rbs-primary,
    .rbs-secondary{
        font-size:20px;
    }
}