body {
    background: #f5f6f8;
}


/*
|--------------------------------------------------------------------------
| Login
|--------------------------------------------------------------------------
*/

.login-page {
    min-height: 100vh;

    display: flex;

    align-items: center;
}


.login-card {
    border: 0;

    border-radius: 16px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08);
}


/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/

.navbar-brand {
    font-weight: 700;
}


/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/

.pos-card {
    border: 0;

    border-radius: 12px;

    box-shadow:
        0 2px 15px rgba(0, 0, 0, .06);
}


/*
|--------------------------------------------------------------------------
| Menu image
|--------------------------------------------------------------------------
*/

.menu-image {
    width: 55px;

    height: 55px;

    object-fit: cover;

    border-radius: 8px;
}


/*
|--------------------------------------------------------------------------
| Select2
|--------------------------------------------------------------------------
*/

.select2-container {
    width: 100% !important;
}


.select2-container
.select2-selection--single {

    height: 44px !important;

    padding-top: 7px;

    border-color: #dee2e6 !important;
}


/*
|--------------------------------------------------------------------------
| Cart
|--------------------------------------------------------------------------
*/

.cart-image {
    width: 50px;

    height: 50px;

    object-fit: cover;

    border-radius: 8px;
}


/*
|--------------------------------------------------------------------------
| Total
|--------------------------------------------------------------------------
*/

.grand-total {
    font-size: 26px;

    font-weight: 700;
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 767px) {

    .cart-image {
        width: 40px;
        height: 40px;
    }

}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quantity-control button {
    width: 34px;
    height: 38px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 600;
}

.quantity-control input {
    width: 55px;
    height: 38px;
    text-align: center;
    padding: 4px;
    font-weight: 600;
}


/* Remove number input arrows */

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-control input {
    -moz-appearance: textfield;
}