:root {
    --bmo-primary-color: #382e89;
    --bmo-light-color: #ffd7c6;
    --bmo-light-bg-color: #f4f3ff;
    --bmo-secondary-color: #ee2706;
    --bmo-border-radius: 10px;
    --bmo-vertical-space: 24px;
    --bmo-vertical-space-sm: 16px;
    --bmo-space: 24px;
    --bmo-space-sm: 16px;
}

.bmo-row,
ul.bmo-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.bmo-row>*,
ul.bmo-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.bmo-col-sm-6,
li.bmo-col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
}

.bmo-shadow {
    box-shadow: 0 0.25rem 1.75rem rgba(65, 69, 75, 0.1);
}

/**
* Sidebar Cart
* Start
*/

.bmo .text-right {
    text-align: right;
}

.bmo .bmo-cart-item-name {
    font-size: .9rem;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 8px;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bmo .bmo-menu-description {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.bmo .flex-column {
    flex-direction: column !important;
}

.bmo .bmo-d-flex {
    display: flex !important;
}

.bmo .bmo-cart-price {
    font-weight: 600;
    margin-bottom: 12px;
}

.bmo .bmo-cart-qty {
    display: flex;
}

.bmo .bmo-cart-qty-btn {
    border: none;
    background-color: #f3f3f3;
    border-radius: 5px;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    padding: 0;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.bmo .bmo-cart-qty-btn .icon-trash {
    color: red;
}

.bmo .bmo-cart-qty-input {
    width: 28px;
    background-color: #fff;
    border: none;
    font-size: .85rem;
    padding: 0px 1px;
    outline: none;
    text-align: center;
}

.bmo .bmo-cart-content {
    width: 75%;
}

.bmo .bmo-cart-total {
    margin-top: 24px;
    font-size: 14px;
}

.bmo .bmo-sidebar-middle {
    margin-top: 24px;
    max-height: calc(100vh - 395px);
    height: calc(100vh - 395px);
    overflow: auto;
    padding-right: 10px;
    border-bottom: 1px solid #eeeeee;
}

.bmo .bmo-cart-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.bmo .bmo-mini-cart-content .justify-content-between {
    justify-content: space-between !important;
}

.bmo-sidebar-footer .bmo-btn-secondary {
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 7px;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    text-transform: none;
    display: block;
    text-align: center;
}

.bmo .bmo-sidebar-middle::-webkit-scrollbar {
    width: 8px;
}

.bmo .bmo-sidebar-middle::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #e2e2e2;
    box-shadow: none;
    margin-right: 20px;
}

.bmo .bmo-sidebar-middle::-webkit-scrollbar-thumb {
    background: #140075;
    border-radius: 20px;
}

.bmo .bmo-sidebar-middle::-webkit-scrollbar-thumb:hover {
    background: #140075;
}

.bmo .bmo-sb {
    font-weight: 600;
}

.bmo .bmo-cart-grand-total {
    font-size: 1rem;
}

.bmo .bmo-cart-choice {
    font-size: 0.8rem;
}

/**
* Sidebar Cart
* End
*/