#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.6);
    /* dark transparent */
    backdrop-filter: blur(6px);
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: all;
    /* block clicks below */
}

.spinner {
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #070707;
    /* bright cyan */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(135, 136, 136, 0.5);
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#changeOrderType .item-detail-container {
    background: rgb(240, 238, 238);
    width: 100%;
    padding: 10px 10px 3px;
    font-weight: bolder;
    border-radius: 7px;
    margin: 1px;
}

#item-timing-detail {
    font-weight: 500;
    font-size: 14px;
}

/* When checkbox is checked */
.form-check-input:checked {
    background-color: black;
    border-color: black;
    box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
}

/* Optional: focus style (when user tabs to it) */
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
    outline: none;
}

.swal2-popup .swal2-styled {
    margin-top: 10px !important;
    font-size: 14px;
    min-height: 35px;
    min-width: 90px;
}

.swal2-success-fix {
    display: none;
}

.swal2-popup {
    display: flex;
    flex-direction: column !important;
    justify-content: space-around;
}

.swal2-popup.swal2-toast .swal2-content {
    font-size: 14px;
    text-align: center !important;
}

.swal2-popup.swal2-toast .swal2-title {
    margin-top: 5px;
    max-width: 100% !important;
    font-size: 16px;
    text-align: center !important;
    /* text-align: left; */
}

body.swal2-toast-shown>.swal2-container.swal2-center {
    width: 98vw;
}

.swal-wide {
    width: 440px !important;
    /* height: 225px; */
    /* height: 250px; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swal2-toast {
    display: flex;
    flex-direction: column;
}

.product-detail-box {
    border: 1px solid #cccccc;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px;
}

.submenu-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Desktop: show 3 lines */
@media (min-width: 768px) {
    .submenu-description {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    .product-detail-container {
        margin-top: 50px;
    }
}

/* Mobile: show 2 lines */
@media (max-width: 767px) {
    .submenu-description {
        line-clamp: 2;
        -webkit-line-clamp: 2;
    }

    .product-detail-container {
        margin-top: 40px;
    }
}

.basket-item-seperator {
    width: 83%;
    border-bottom: 2px dotted #e9e8e8;
}

#delivery-type-value {
    text-transform: capitalize;
}

.blink-loop {
    animation: blink 2s infinite;
}

@keyframes blink {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.checkout-container {
    display: none;
}

.payment-options {
    cursor: pointer;
    outline: none;
    display: none;
    border: none;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    margin: 0 5px;
    height: 45px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(36, 34, 34);
    border: 1px solid rgb(220, 216, 216);
}

.payment-options.active,
.payment-btn,
.final-checkout-btn {
    background-color: #000000;
    border: 2px solid #000000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.payment-options:hover {
    background: #000000;
    color: #ffffff;
}

.payment-options-container {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 429px) {
    .payment-options {
        margin: 2px;
        /* width: 90%; */
    }

    .payment-options-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.cash-tick,
.card-tick {
    display: none;
}

.delivery-charges-container,
.service_charges_container {
    display: none;
}

.delivery-details {
    display: none;
}

.coupon-container {
    display: none;
}

.coupon-text {
    font-weight: 500;
    font-size: 13px;
}

.error {
    font-family: "Poppins", sans-serif;
    color: rgb(242, 94, 61);
    display: block;
    /* text-align: center; */
    font-size: 11px;
    font-weight: 600;
}

.no-item-error,
.min-value-error,
.no-item-error {
    font-size: 11px !important;
    line-height: 1.3;
}

.sm-show-container {
    display: block;
}

.md-show-container {
    display: none;
}

/* md and larger (≥768px) */
@media (min-width: 768px) {
    .sm-show-container {
        display: none;
    }

    .md-show-container {
        display: block;
    }
}

/* cards payment box */
.btns-box {
    padding-right: 10px;
    padding-left: 10px;
}

#payByCard1 {
    background-color: #ffffff;
    border: 1px solid #F25E3D;
    color: #F25E3D;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

#payByCard1:hover {
    box-shadow: #F25E3D 0px 1px 5px 0px !important;
}

.payByCard1Text {
    color: #F25E3D;
    margin-bottom: 5px;
    margin-top: 5px;
}

#payByCard2 {
    background-color: #ffffff;
    border: 1px solid #F25E3D;
    color: #F25E3D;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

#payByCard2:hover {
    box-shadow: #F25E3D 0px 1px 5px 0px !important;
}

.payByCard2Text {
    color: #F25E3D;
    margin-bottom: 5px;
    margin-top: 5px;
}

#payByCard3 {
    background-color: #ffffff;
    border: 1px solid #635BFF;
    color: #635BFF;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

#payByCard3:hover {
    box-shadow: #635BFF 0px 1px 5px 0px !important;
}

.paymentIcons {
    width: 20px;
    margin-right: 5px;
}

.payByCard3Text {
    color: #635BFF;
    margin-bottom: 5px;
    margin-top: 5px;
}

/* cards payment box */

/* stripe loader code start */
#loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    /* min-height: 100vh; */
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    background-color: #000;
    z-index: 999;
    opacity: 0.5;
}

.loading-text {
    color: #ffffff;
    position: absolute;
    left: 46%;
    top: 56%;
    z-index: 4;
}

.loading-icon {
    border-top: 5px solid #222222;
    border-right: 5px solid #222222;
    border-bottom: 5px solid #222222;
    border-left: 5px solid #767676;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    z-index: 4;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* stripe loader code end */