﻿#cartOffcanvas {
    color: #3c090e;
    font-family: Montserrat-Medium;
}

.ViewCartTitle {
    background-color: #3c090e;
    color: #fff;
}

.toggle-switch .active {
    background-color: #fff;
    color: #3c090e;
}

.EditItemQtnBtn, .DltItemBtn, #EmptyCart {
    border: none;
    padding: 4px;
    margin-left: 4px;
}

.ItemQtn {
    width: 26px;
    height: 28px;
    vertical-align: middle;
    border: none;
    outline: none;
    text-align: center;
}

#AddItem {
    color: #fad65c;
    background-color: #3c090e;
    padding: 7px;
    width: auto;
    border-radius: 7px;
    display:none;
}

#tipContainer {
    display: flex;
}

#tipInput {
    position: relative;
    float: left;
}

.accordion-button:not(.collapsed) {
    color: #3c090e;
}

#tipApply {
    padding: 5px;
    background: black;
    color: #fff;
    cursor: pointer;
}

.CheckOutBtn {
    padding: 7px;
    background-color: #fff;
    color: #3c090e;
    border: 2px solid #3c090e;
    width:100%;
}

    .CheckOutBtn:hover {
        background-color: #3c090e;
        color: #fff;
        transition: 0.3s ease-in-out;
    }

.DcrItemQtnBtn, .IcrItemQtnBtn {
    border: none;
}

.button-group label {
    padding: 9px;
    background-color: rgba(221, 210, 210, 0.521);
    border-radius: 10%;
    cursor: pointer;
    color: black;
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: clamp(16px, 3vw, 18px);
}

.button-group input[type="radio"]:checked + label {
    background-color: #000;
    color: #fff;
}

.button-group input[type="radio"] {
    display: none;
}

.button-group {
    display: flex;
    gap: 5px;
}

input[type=radio] {
    appearance: none;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: 1px solid #a1211f;
    border-radius: 50%;
    background-clip: content-box;
    padding: 2px;
}

.DcrItemQtnBtn, .IcrItemQtnBtn, .EdtItemBtn {
    width: 17px;
    outline: none;
    border: none;
    padding: 0px;
    background: transparent;
    margin: 0px 4px;
}
#offcanvasCartContent.loading::after, #orderTypeModal.loading::after, #toppingsArea.loading::after, #ViewCartContainer.loading::after {
    content: "";
    width: 32px;
    height: 32px;
    border: 3px solid #ccc;
    border-top-color: #3c090e;
    border-radius: 50%;
    animation: spin1 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin1 {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}