@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;600;900&display=swap');
:root {
    --main-color: #C30E2D;
    --sec-color: #DBA507;
    --white: #fff;
    --black: #000;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}


button.addtocart:disabled {
    background-color: #ccc; /* Gray background for disabled button */
    color: #666; /* Text color for disabled button */
    cursor: not-allowed; /* Show 'not allowed' cursor */
    position: relative;
  }

  /* Add custom text when button is disabled */
  button.addtocart:disabled::after {
    content: " (Not Available)";
    color: #666; /* Color for the added text */
    font-weight: bold;
    margin-left: 5px; /* Space between original text and added text */
  }
  
  
  
#addonModal .product_box h3 {
    font-size: 15px;
    color: #000;
    text-align: center;
    font-family: 'Exo';
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #E3F2FC;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

body {
    background-image: url('../site-bg.png');
    font-family: 'Exo', sans-serif;
    font-weight: 300;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.stores br {
    display: none;
}
.stores span {
    display: block;
}
    body:before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        background-color: #00000091;
        width: 100%;
        height: 100%;
        z-index: -1;
    }



.main {
    background-color: var(--white);
    margin: 15px;
    border-radius: 36px;
    padding: 15px;
    display: flex;
    height: 96vh;
    box-shadow: 0px 0px 128px 56px var(--black)00024;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
h3.title {
    color: #EE1B24;
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 12px;
}
a.btn {
    background-color: var(--sec-color);
    color: var(--black);
    font-weight: 600;
    max-width: 200px;
    width: 100%;
    border-radius: 20px;
}

    a.btn.sec {
        background-color: var(--main-color);
        color: var(--white);
    }

.row.flex {
    display: flex;
    align-items: center;
}

img {
    max-width: 100%;
}
/* .map_img {
    border-radius: 23px;
    height: 600px;
    width: 100%;
    object-fit: cover;
} */
#pickip_delivery.hide, #select_store.hide {
    transition: 0.6s all;
    left: 15px;
    -webkit-transform: translate(-0%, -100%) scale(0.6);
    transform: translate(-0%, -100%) scale(0.6);
    position: absolute;
    width: 100%;
}

#select_store, #food_items {
    transition: 0.6s all;
    left: 15px;
    -webkit-transform: translate(-0%, 100%) scale(0.6);
    transform: translate(-0%, 100%) scale(0.6);
    position: absolute;
}

    #select_store.show, #food_items.show {
        transition: 0.6s all;
        left: 0px;
        -webkit-transform: translate(-0%, 0%) scale(1);
        transform: translate(-0%, 0%) scale(1);
        position: unset;
    }

#search_loation, #filter {
    border-radius: 20px;
    border: 1px solid var(--main-color);
    padding: 4px 12px;
    font-size: 15px;
    max-width: 400px;
    width: 100%;
}

.stores span {
    font-size: 14px;
}

.stores:hover:before {
    opacity: 9;
}

.stores:before {
    background-color: var(--main-color);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
}

.stores {
    background-color: #D6DAE0;
    margin-bottom: 10px;
    transition: 0.1s all;
    padding: 15px 10px;
    border-radius: 12px;
    margin-top: 10px;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

    .stores h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0px;
        color: #000;
    }

.delivery .btn {
    background-color: var(--main-color);
    margin-top: 16px;
    border-radius: 20px;
    color: #fff;
}

.sidebar {
    border-right: 1px solid #c8c9ca;
    padding-right: 20px;
    position: sticky;
    top: 0px;
}

.scroll {
    max-height: 540px;
    overflow-y: auto;
    padding-right: 10px;
}

.sidebar ul li:hover > a {
    color: var(--white);
    background-color: var(--main-color);
}

.sidebar ul {
    padding-left: 0px;
    margin-top: 1rem;
}

    .sidebar ul li a {
        list-style: none;
        background-color: #f7f7f7;
        margin-top: 3px;
        padding: 8px 10px;
        display: block;
        text-decoration: none;
        color: #000000;
        font-weight: 500;
    }

.scroll ul li a {
    border-radius: 25px;
    padding-left: 15px;
    margin-right: 10px;
}

.stores:hover, .stores:hover h5 {
    color: #fff;
}

td.title .text-muted {
    font-size: 12px;
    margin-left: 5px;
    color: #000;
}

.details_header > div {
    margin-right: 10px;
    border-right: 0px solid;
    padding-right: 10px;
}

.details_header h4 {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 700;
}

.details_header span {
    font-size: 14px;
}

.details_header {
    display: flex;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 10px 20px;
    border-radius: 14px;
    position: sticky;
    top: 0px;
    z-index: 1;
}

.header_btns {
    padding-top: 10px;
}

    .header_btns .btn:focus {
        outline: unset;
        box-shadow: unset;
        background-color: var(--main-color);
        color: var(--white);
    }

    .header_btns .btn {
        display: inline;
        padding: 8px 32px;
        font-size: 14px;
        margin-right: 5px;
    }

.details_header .cart {
    border-right: unset;
}

.header_btns p {
    display: inline-block;
    margin: 0px;
}

.cart i {
    font-size: 30px;
    color: var(--main-color);
    margin-right: 10px;
    padding-right: 10px;
}

.cart span {
    border-left: 1px solid;
    padding-left: 10px;
}

.cartCount {
    font-size: 11px !important;
    font-weight: 600;
    position: absolute;
    top: 12px;
    left: 42px;
    background: #2bd156;
    line-height: 21px;
    padding: 0 0px;
    height: 20px;
    min-width: 20px;
    color: white;
    text-align: center;
    border-radius: 24px;
    padding-left: 1px !important;
}

.cart {
    display: flex;
    align-items: center;
}

div#food_items {
    justify-content: unset;
}

.product_box {
    display: grid;
    overflow: hidden;
    position: relative;
    width: 23.5%;
    padding: 18px;
    margin-top: 0.4em;
    border-radius: 14px;
    outline: 2px solid var(--main-color)38;
    outline-offset: -4px;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
}

.variable-box a:hover {
    font-weight: 600;
}

.variable-box a {
    display: block;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #f7f7f752;
    padding-top: 2px;
    padding-bottom: 2px;
    text-decoration: none;
    font-size: 14px;
}

.variable-box {
    position: absolute;
    left: 0px;
    padding: 7px 14px;
    top: 0px;
    background-color: var(--main-color);
    width: 66%;
    display: none;
    height: 100%;
}

    .variable-box.active {
        left: 0%;
    }

.product_content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5%;
}

.product_box h3 {
    font-size: 17px;
    color: #EE1B24;
    margin-top: 9px;
    margin-bottom: 2px;
    text-transform: capitalize;
    font-family: 'Exo',  sans-serif;
}
.back_box {
    display: flex;
    align-items: center;
}
.back_box ul li {
    display: inline-block;
}
.back_box ul {
    list-style: none;
    padding-left: 0px;
}
.back_box ul li:hover a {
    background-color: unset;
    color: #EE1B24;
}
.back_box ul li a {
    font-weight: 300;
}
.back_box ul li i {
    color: #EE1B24;
}
.product_box img {
    border-radius: 10px;
}

.product_box p {
    margin-bottom: 4px;
    font-size: 15px;
}

.product_box .price {
    font-weight: 600;
}

.tdr-popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000d4;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: 0.1s all;
}

    .tdr-popup .row.tdr-stiky {
        position: sticky;
        bottom: 0px;
        background-color: #fff;
        border-top: 1px solid;
        border-bottom: 1px solid;
        padding-top: 5px;
        padding-bottom: 5px;
    }

.tdr-popup-content {
    position: relative;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 630px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 7px solid #ffffff;
    padding-bottom: 0px;
}
textarea#specialInstructions {
    margin-bottom: 15px;
}
table.table-cart.cartTable {
    max-height: 290px;
    height: 100%;
    overflow-y: scroll;
    display: block;
    padding-bottom: 20px;
    padding-right: 10px;
}
table.table-cart.cartTable {
    margin-bottom: 8px;
    border-bottom: 2px solid;
}

.tdr-popup-content img {
    max-width: 350px;
    width: 100%;
    border-radius: 15px;
}

.size_btn button:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.size_btn button:before {
    content: "";
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    WIDTH: 100%;
    height: 100%;
    transition: 0.5s all;
    z-index: -1;
    border-radius: 8px;
}

.size_btn button {
    background-color: var(--main-color)b0;
    color: var(--white);
    border: 0px solid;
    border-radius: 9px;
    padding: 8px 10px;
    position: relative;
    transition: 0.3s all;
    overflow: hidden;
    z-index: 1;
}

.size_btn {
    display: flex;
    justify-content: space-between;
}

.form_items label {
    font-weight: 600;
    font-size: 15px;
}
td.actions img {
    cursor: pointer;
    width: 16px;
    margin-right: 8px;
}
.tdr-popup h6 {
    color: var(--main-color);
    text-transform: capitalize;
}

small.xs {
    font-size: 14px;
    position: relative;
    top: -2px;
}

.toppings_box span:last-child {
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
    border-radius: 22px;
}
b {
    font-weight: 500;
}
.toppings .tdr_price {
    font-weight: 800;
    color: var(--main-color);
}

.toppings p {
    margin-bottom: 0px;
    font-weight: 600;
}

.toppings {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    padding-top: 5px;
}

.toppings_box span:first-child {
    margin: 5px;
}

button.btn.add_to_cart:hover {
    background-color: #327400;
    color: #fff;
}

.itemHeader {
    font-weight: 600;
    margin-bottom: 7px;
    display: block;
    margin-top: 8px;
    color: #000;
    font-size: 18px;
}

.toppings_box {
    display: flex;
    align-items: center;
}

.add_item {
    background-color: #46cd34;
    color: var(--white);
    padding: 2px 14px;
    border-radius: 23px;
    cursor: pointer;
}

button.btn:hover {
    background-color: var(--sec-color);
    color: var(--main-color);
    border: 1px solid;
}

button.btn {
    background-color: var(--main-color);
    border-radius: 8px;
    color: var(--white);
    border: 1px solid var(--main-color);
    padding: 5px 18px;
    width: 100%;
}

    button.btn.red:hover {
        background-color: var(--main-color);
        border-color: var(--main-color);
        color: var(--white);
    }

    button.btn.red {
        background-color: red;
        border-color: red;
    }

input#quant {
    width: 60px;
    padding: 0px;
    text-align: center;
}

.tdr-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    color: var(--white);
    font-size: 35px;
    cursor: pointer;
}

.toppings_box {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    display: block;
}

    .toppings_box img {
        cursor: pointer;
        width: 23px;
        margin-right: 0px;
    }

        .toppings_box img.active {
            outline: 4px double #153e60;
            box-sizing: content-box;
            border-radius: 29px;
        }

        .toppings_box img.right_half {
            transform: rotate(180deg);
        }

.form_items label {
    margin-left: 4px;
    margin-right: 4px;
}

.form_group input {
    width: 17px;
    position: absolute;
    right: 0px;
    top: 7px;
}

.form_group {
    position: relative;
    border-bottom: 1px solid #0000001f;
    padding-top: 2px;
    padding-bottom: 2px;
}

.form_items h5 {
    margin-bottom: 10px;
    margin-top: 10px;
}
/*----cart*/
.cart_box {
    width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    background-color: #000000ad;
    padding: 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: 0.2s all;
    border-radius: unset;
}
.cart-box {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    background-color: #f7f7f7;
    border-left: 5px solid var(--main-color);
    padding-left: 15px;
    border-radius: 20px 0px 0px 20px;
    padding-top: 15px;
    padding-right: 15px;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

    .cart_box.active {
        -webkit-transform: scale(1);
        transform: scale(1);
        left: 0%;
    }

.cart {
    cursor: pointer;
    position: relative;
}
    /* .cart:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    transform: scale(0);
    border-radius: 33px;
    transition: 0.3s all;
} */

.cart-empty h3 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}
.cart-empty img {
    width: 66px;
    margin-right: 14px;
}
.cart-empty {
    position: absolute;
    background-color: #ffffff;
    align-items: center;
    top: 65px;
    border: 1px solid #c7c7c7ee;
    right: 0px;
    width: 287px;
    border-radius: 10px;
    display: none;
    padding: 15px;
    justify-content: center;
}
.cart-empty.active {
display: flex;

}

    .cart.active:before {
        animation: cart_animatiom 0.3s;
    }

@keyframes cart_animatiom {
    from {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    to {
        transform: scale(0);
    }
}
.swal2-styled.swal2-confirm {
    background-color: #EE1B24;
}
.cart_box table.table-cart.cartTable {
    width: 100%;
}

.cart_box td.title {
    width: 70.6%;
}

.cart_box td.title a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.cart_box .table-cart.cartTable tr {
    border-bottom: 1px solid var(--black);
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 2px;
}

/* #food_items.active:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: #000000d1;
    z-index: 2;
} */

.location_inner {
    box-shadow: 1px 1px 13px 1px #00000024;
}
div#storess {
    display: flex;
    max-width: 900px;
    margin: auto;
    width: 100%;
    margin-top: 18px;
}
div#select_store {
    background-image: url('../images/bg-map.png');
    background-size: cover;
    background-position: left bottom;
}
div#select_store:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7db;
    z-index: -1;
}
div#storess select {
    margin: 0px 8px;
    border-radius: 4px;
    border: 1px solid black;
    box-shadow: 1px 1px 21px -10px #00000091;
    visibility: visible !important;
    -webkit-appearance: listbox !important;
}

div#cartSummary {
    background-color: var(--main-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    padding-right: 0px;
    font-weight: 700;
}

    div#cartSummary .col-8 {
        color: var(--white) !important;
        font-weight: 700;
    }

    div#cartSummary .table-cart.cartTable tr {
        border-bottom: 1px solid var(--black);
        padding-bottom: 10px;
        padding-top: 4px;
        display: block;
        padding-bottom: 5px;
        display: flex;
        justify-content: space-between;
    }

.cart_box a.panel-cart-action.btn.checkout {
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 10px;
    margin-top: 7px;
    width: 100%;
    display: block;
    margin-left: auto;
}
    .cart_box a.panel-cart-action.btn.checkout:hover {
        background-color: #07cd6b;
    }
.cart_box td.price {
    font-weight: 600;
    color: var(--black);
}
div#myTabContent {
    padding-bottom: 3rem;
}
.cart_box .cart-close {
    text-align: right;
    color: red;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    width: 100%;
    left: 0px;
    padding-right: 20px;
    z-index: 999;
}

.location_boxs:last-child {
    border-bottom: unset;
}

.location_boxs {
    border-bottom: 1px solid var(--sec-color);
    margin-top: 20px;
    cursor: pointer;
    position: relative;
}

.location_inner {
    text-align: left;
    background-color: var(--white);
    box-shadow: 1px 1px 6px 4px var(--black)00040;
    border-radius: 16px;
    padding: 1px 15px;
    width: 100%;
    z-index: 99;
    transition: 0.3s all;
}
/* .location_inner.active {
    visibility: visible;
    opacity: 9;
} */
.location_boxs p {
    font-size: 15px;
}

.location_boxs h4 {
    font-size: 16px;
    font-weight: 700;
}

.location_boxs:hover:before, .location_boxs.active:before {
    color: var(--main-color);
}

.location_boxs:before {
    content: "\f336";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-88%);
    transform: translateY(-88%);
    font-size: 18px;
    font-weight: 900;
    color: #c7c6c6;
}

span.span_active {
    text-decoration: underline;
    cursor: pointer;
}

.nav-tabs .nav-link {
    color: var(--main-color);
    font-weight: 600;
    margin-right: 5px;
    border-radius: 18px 18px 0px 0px;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: var(--white);
        background-color: var(--main-color);
        border-color: var(--main-color) var(--main-color) var(--main-color);
        border-radius: 18px 18px 0px 0px;
    }

.nav-tabs {
    border-bottom: 1px solid var(--main-color);
}

    .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
        border-color: var(--main-color);
        isolation: isolate;
        border-radius: 18px 18px 0px 0px;
    }

span.\32 x.active {
    background-color: #153e60;
    color: #fff;
}

.topping_click input:checked + label img {
    box-sizing: border-box;
    filter: unset;
}

.toppings_box img {
    cursor: pointer;
    width: 23px;
    margin-right: 0px;
    filter: invert(1) drop-shadow(0px 0px 1px black);
}

.topping_click input:checked + label img.empty {
    filter: none;
}

img.empty {
    filter: grayscale(1);
}

.toppings_box input {
    visibility: hidden;
}

input[type="checkbox"]:checked + label span {
    background-color: #007137;
    color: #fff;
}


.delivery label, .delivery input {
    display: block;
    width: 100%;
}

.delivery {
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: #000000b5;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    backdrop-filter: blur(0px);
    display: none;
}

    .delivery form {
        max-width: 350px;
        width: 100%;
        padding: 15px;
        border-radius: 22px;
        background-color: #fff;
        border: 2px solid #F8A90E;
        box-shadow: 0 0 17px 0 #0000007a;
        position: fixed;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.tdr-overlay:before {
    content: "X";
    color: #fff;
    left: 7px;
    position: relative;
    font-weight: 600;
    top: 0px;
    font-size: 18px;
}

.tdr-overlay {
    position: fixed;
    background-color: red;
    width: 25px;
    height: 25px;
    top: 15px;
    right: 15px;
    border-radius: 5px;
    cursor: pointer;
}

div#cartSummary > div .text-muted {
    color: #fff !important;
}

div#cartSummary > div {
    color: #fff !important;
    font-weight: 300 !important;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) scale(0.4);
    }

    10% {
        transform: translate(-1px, -2px) scale(0.3);
    }

    20% {
        transform: translate(-3px, 0px) scale(0.1);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.cart.shake i {
    animation: shake 0.5s;
    animation-iteration-count: forword;
}

.back_box .back_btn, .home_btn {
    width: 27px;
    font-size: 22px;
    border-right: 1px solid;
    margin-right: 7px;
    cursor: pointer;
    color: var(--main-color);
}

.back_box {
    display: flex;
}

.show-category {
    display: none;
}

button.btn.btn-success.btn-number {
    background-color: #327400;
    border-color: #327400;
}

.scroll li.active > a {
    background-color: var(--main-color);
    color: var(--white);
}

button.addtocart:hover i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.addtocart i {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

button.addtocart {
    font-size: 12px;
    font-weight: 600;
    background-color: unset;
    color: var(--main-color);
    border: 0px;
    text-transform: uppercase;
    text-align: left;
    border-top: 1px solid;
    text-align: center;
    border-bottom: 1px solid;
}

#addressList li:hover {
    background-color: var(--sec-color) !important;
}

#addressList {
    left: 0px;
}

    #addressList li {
        background-color: var(--main-color) !important;
        height: unset;
        line-height: 22px !important;
        padding: 4px 14px !important;
        font-size: 15px;
        font-family: 'Exo', sans-serif;
    }

.tdr-close i {
    color: #fff;
    right: 0px;
    background-color: red;
    border-radius: 50%;
    font-size: 26px;
}

i.addtocart.fad.fa-times-circle {
    position: absolute;
    right: -22px;
    color: red;
    top: 6px;
    font-size: 20px;
}

.sidebar input#filter {
    display: none;
}
/*-----time popup css*/
.modal-content {
    border-radius: 20px;
    padding: 15px;
}

h3.modal-title {
    font-size: 20px;
    color: var(--main-color);
}

.modal-header {
    padding: 8px 2px;
    margin-bottom: 10px;
}

.select_location {
    display: flex;
    justify-content: space-around;
}

    .select_location li.active {
        background-color: var(--main-color);
    }

    .select_location li a {
        color: #fff;
        text-decoration: none;
    }

    .select_location li {
        padding: 4px 25px;
        display: block;
        background-color: #9d9d9d;
        border-radius: 30px;
        margin-bottom: 10px;
        width: 44%;
        text-align: center;
    }

.select_location {
    display: flex;
    justify-content: space-around;
}

.location-box.active, .location-box:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.location-box {
    background-color: #9d9d9d;
    color: #fff;
    border-radius: 19px;
    margin-top: 12px;
    padding-top: 11px;
    padding-bottom: 1px;
    cursor: pointer;
}

.flex {
    display: flex;
}

.time-box {
    border-top: 1px solid;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 15px;
    margin-top: 10px;
}

button#doneLocationBtn {
    width: 100%;
    margin-top: 10px;
}

/*------checkout page css*/
div#checkout_page {
    position: fixed;
    background-size: 200px;
    overflow: hidden;
    top: 0px;
    width: 100%;
    z-index: 99999;
    right: 0px;
    height: 100vh;
    visibility: hidden;
}

.checkout-box {
    width: 35%;
    margin-left: auto;
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    height: 100%;
    padding: 25px 15px;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    background-size: 200px;
    background-position: right bottom;
    overflow-y: auto;
    border-left: 5px solid var(--main-color);
    border-radius: 34px 0px 0px 34px;
}

button.close.checkout-panel {
    background-color: #f7f7f7;
    color: #ed3237;
    cursor: pointer;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 0px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: normal;
    border: unset;
    font-size: 28px;
    font-weight: 900;
}

div#checkout_page h4 {
    font-size: 20px;
}

.payment-form .flex {
    display: flex;
    justify-content: space-between;
}

.three .form-control {
    width: 32% !important;
}

div#payment-box label {
    margin-right: 20px;
    font-weight: 600;
    cursor: pointer;
}

    div#payment-box label input {
        margin-right: 4px;
        position: relative;
        top: 2px;
    }

.flex input.form-control {
    width: 48%;
}

textarea#instructions {
    margin-bottom: 11px;
}

form.payment-form input {
    margin-bottom: 14px;
}

.card-box > div:first-child {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 5px;
    justify-content: space-between;
    margin-bottom: 14px;
    background-color: #f7f7f7;
}

input.card_number {
    background-image: url("../images/card.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 8px center;
    padding-left: 43px;
}

input.cvv {
    width: 15%;
}

.tip label {
    padding: 4px 16px;
    cursor: pointer;
    margin-bottom: 0px;
}

.tip input[type=radio]:checked:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--sec-color);
    z-index: -1;
    color: #fff;
    visibility: visible;
}

.card-box input {
    background-color: transparent;
    border: unset;
}

.tip {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    background-color: var(--main-color);
    border-radius: 27px;
}

    .tip div {
        border-radius: 27px;
        background-color: var(--main-color);
        color: #fff;
        cursor: pointer;
        z-index: 0;
        position: relative;
        overflow: hidden;
    }

div#payment-card-box input {
    margin-bottom: 0px;
}

.tip input[type=radio] {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

button#placeOrder {
    border-radius: 30px;
    background-color: var(--sec-color);
    display: block;
    width: 100%;
    border: unset;
}

input#tipAmount {
    border-radius: 26px;
    border: 2px solid #109D59;
    padding: 2px 10px;
    position: absolute;
    text-align: center;
    top: 0px;
    left: 0px;
    display: none;
    background-color: #f7f7f7;
}

#hideAmount {
    border-radius: 26px;
    border: 2px solid #109D59;
    padding: 2px 10px;
    position: absolute;
    text-align: center;
    top: 0px;
    height: 32px;
    right: 0px;
    display: none;
}

.input-group.mb-3 > div {
    width: 48%;
}

.input-group {
    justify-content: space-between;
}

input#postal_code {
    border: 1px solid #ced4da;
    background-color: #fff;
}

ul#addressList li:hover {
    background-color: var(--main-color) !important;
    color: #fff !important;
}

ul#addressList li {
    background-color: transparent !important;
    color: #000 !important;
    height: unset;
    font-family: 'Nunito Sans';
    font-weight: 600;
}

ul#addressList {
    padding-left: 0px;
    background-color: #fff !important;
    color: #fff !important;
    border-radius: 6px;
    top: 38%;
    width: 90%;
    left: 5%;
}

div#preloader {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffffdb;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    div#preloader img {
        max-width: 300px;
        width: 100%;
        margin: auto;
        display: block;
    }

.copyright a {
    text-decoration: none;
    color: var(--main-color);
}

.copyright {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    width: 100%;
    text-align: center;
    color: #000;
    font-weight: 600;
    left: 0px;
    z-index: 99;
}

div#categoryData ul li ul {
    padding-left: 26px;
}

#addonModal .modal-dialog {
    max-width: 1000px;
}

a.checkout.btn {
    margin-top: 10px;
}

#addonModal a.panel-cart-action.btn.checkout {
    width: 100%;
    display: block;
    margin: auto;
}

.tdr-popup {
    z-index: 9999;
}

.home_btn {
    border-color: #000;
    margin-right: 6px;
    display: block;
    width: 33px !important;
}

div#select_store {
    justify-content: flex-start;
}

button.coupon_btn {
    border-radius: 20px;
    height: 36px;
    padding: 0px 22px;
    text-transform: capitalize;
    background-color: var(--sec-color);
    border: 2px solid;
    color: #fff;
    width: 30%;
    min-width: 150px;
}

input#txtCoupon {
    width: 100%;
    border-radius: 22px;
}

.form-control:focus {
    box-shadow: unset;
    border-color: var(--sec-color);
}

li.item-header.sub_items:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: -11px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

li.item-header.sub_items {
    margin-left: 25px;
    list-style: none;
    color: var(--sec-color);
    position: relative;
}

.card-box > div:first-child {
    background-color: unset;
    border: unset;
    flex-wrap: wrap;
}
.card-input-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}
.card-input-box.cn {
    width: 100%;
}
.card-input-box.exp, .card-input-box.sqc {
    width: 48%;
}
.card-input-box input {
    background-color: #fff;
    width: 100%;
    padding-left: 10px;
    height: 37px;
    border: 1px solid #cbcbcb;
    border-radius: 3px;
}
.card-input-box {
    margin-top: 10px;
}
input#card_number {
    padding-left: 60px;
}
@media only screen and (min-width: 767px) {
    h4.title.xs-show {
        display: none;
    }
    .sidebar input#filter {
        display: block;
    }

    div#pickip_delivery {
        background-image: url('https://a1poutineandwings.ca/images/I7-A1.jpg');
        background-size: auto;
        background-repeat: no-repeat;
        background-position: right center;
    }
}

@media only screen and (max-width: 767px) {
    input#txtCoupon {
        width: 100%;
    }

    button.coupon_btn {
        width: 40%;
    }

    .main {
        height: 100%;
    }

    .copyright {
        bottom: 120px;
    }

    span.xs-hide {
        display: none;
    }

    a.btn.change_location_btn {
        width: 40px;
        height: 40px;
        line-height: 27px;
    }

    .header_btns p span {
        font-size: 13px !important;
    }

    a.btn.order_time_btn {
        max-width: 100%;
        width: 85%;
        margin-right: 0px !important;
        font-size: 13px;
    }




    .checkout-box {
        width: 100%;
        border: unset;
        border-radius: unset;
    }

    .tip label {
        padding: 1px 16px;
        cursor: pointer;
        margin-bottom: 0px;
        font-size: 12px;
        line-height: 25px;
    }
    .details_header .pickup_or_delivery, .details_header .header_btns {
        /* transition: 0.1s all; */
    }
    .details_header.active .pickup_or_delivery, .details_header.active .header_btns {
        visibility: hidden;
        /* position: absolute; */
        /* transition: 0.1s all; */
        /* z-index: -999; */
        height: 0px;
    }

    .nav-tabs .nav-link {
        padding: 5px 12px;
        font-weight: 600;
        font-size: 15px;
    }

    div#pickip_delivery {
        background-color: #ffffffdb;
    }

    div#top {
        position: sticky;
        top: 0px;
        box-shadow: 1px 2px 11px -4px #00000082;
    }

    div#top {
        position: sticky;
        bottom: 0px;
        box-shadow: 1px 2px 11px -4px #00000082;
    }

    .show-category {
        text-align: center;
        border: 1px solid #c30e2d;
        padding: 7px 3px;
        position: sticky;
        border-radius: 8px;
        top: 58px;
        z-index: 1;
        background-color: #ffffff;
        display: block;
        /* box-shadow: 1px 1px 14px -5px #0000007d; */
    }
    .tdr-popup-content img {
        width: 100%;
        max-width: unset;
    }
    div#food_items {
        padding-bottom: 8rem;
    }

    .tdr-close {
        right: 5px;
        top: 2px;
        z-index: 111;
    }

    .store_detail {
        padding-right: 126px !important;
    }

    .cart {
        position: absolute;
        right: 0px;
    }

    #pickip_delivery.hide, #select_store.hide {
        left: 0px;
    }

    div#pickip_delivery {
        justify-content: center;
    }

    body {
        background-image: url('../images/bg_mobile.JPG');
        background-size: contain;
    }

    .main {
        margin: 0px;
        border-radius: 0px;
        justify-content: start;
        height: 100vh;
        padding: 0px;
        padding-top: 10px;
    }

    .product_box {
        width: 49%;
    }

    .variable-box {
        width: 85% !important;
    }

    .product_box h3 {
        font-size: 16px;
    }

    .product_box p {
        font-size: 14px;
    }

    .details_header {
        position: unset;
        margin-bottom: 10px;
        flex-direction: column;
        padding: 10px;
    }
    /* .location_inner {
    left: 15px;
    width: 80%;
    box-shadow: 1px 1px 12px -1px;
    top: 166px;
} */
    iframe {
        display: none;
    }

    a.btn {
        display: inline-block !important;
        width: 47%;
        padding: 7px 4px !important;
    }

    a.top {
        text-decoration: none;
        color: #000;
        font-weight: 700;
    }

    #food_items .sidebar {
        border-right: 0px;
        position: fixed;
        top: 0px;
        background-color: #fff;
        z-index: 999;
        padding: 15px;
        width: 80%;
        box-shadow: 1px 1px 12px 1px;
        left: -100%;
        height: 100%;
    }

    #select_store .sidebar {
        padding: 0px;
        border: unset;
    }

    .cart_box {
        margin: 0px;
        border-radius: unset;
        height: 100vh;
        width: 100%;
        overflow-x: auto;
    }
}

.panel-cart-content .flex {
    position: relative;
}


.remove_coupon_btn {
    font-size: 0px;
    position: absolute;
    right: 0px;
    border-radius: 26px;
    border: 1px solid;
    width: 33px;
    height: 33px;
    top: 0px;
}

    .remove_coupon_btn:before {
        content: "\f00d";
        font-size: 14px;
        font-family: 'Font Awesome 5 Pro';
    }

input#txtCoupon {
    line-height: 0.5;
    font-size: 14px;
}
.toppings p {
    width: 50%;
}
.tdr_price.text-muted {
    font-weight: 300;
    text-align: left !important;
    width: 70%;
    color: #000 !important;
}

@media only screen and (max-width: 767px) {
    button.coupon_btn {
        width: 40%;
        min-width: unset;
    }

    .remove_coupon_btn {
        right: 0px;
    }
}
span.x {
    position: relative;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    button#saveBtn {
        margin-bottom: 3rem;
    }
    .checkout-box {
        height: 90%;
        border-bottom: 5px solid #C30E2D;
    }
}
