:root {
    --CartBoxSize: 350px;
    --MenuItemSize: 100px;
    --YellowColor: #D4AF37;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: none;
  outline:none;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

.res_header {
    width: 100%;
    float: left;
    height: 325px;
    background-image: url('../images/top_bg.jpg');
    background-size: cover;
    position: relative;
    background-position: center;
    display: flex;
}
.res_body {
    width: 100%;
    float: left;
}
.res_footer {
    width: 100%;
    float: left;
}
.res_top_info {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.res_top_logo {
    width: 130px;
    height: 130px;
    position: relative;
    background-color: rgb(255,255,255,0);
    border-radius: 10px;
}

.res_top_logo img {
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    max-width:95%;
    max-height:95%;
    margin:auto;
}
.res_top_name {
    width: 100%;
    float: left;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}
.restaurant_info {
    width: 100%;
    float: left;
    text-align: center;
    color:#fff;
}
.restaurant_info path {
    fill:#fff;
}
.food_menu_bar {
    width: 100%;
    float: left;
    background-color: #f4f5f8;
    position:sticky;
    top:0px;
    z-index:10;
}

.fm_srch {
    width: 200px;
    float: left;
    position: relative;
}

    .fm_srch svg {
        position: absolute;
        left: 8px;
        top: 11px;
    }

    .fm_srch .form-control {
        padding-left: 28px;
    }

.food_menu_inner {
    width: 100%;
    float: left;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0px;
}
    .food_menu_inner a {
        color: #3b3b3b;
        text-decoration: none;
        font-weight: bold;
        padding: 5px 10px;
        position: relative;
        background-color: var(--YellowColor);
        border-radius: 10px;
        font-size: 13px;
    }


        .food_menu_inner a.menu_active,
        .food_menu_inner a:hover {
            background-color: #ccc;
            color: #3b3b3b;
        }
            .food_menu_inner a.menu_active:before,
            .food_menu_inner a:hover:before {
                content: "";
                position: absolute;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid #cccccc;
                width: 0px;
                height: 0px;
                bottom: -10px;
                left: 0px;
                right: 0px;
                margin: auto;
            }
            .fm_middle_section {
                width: 100%;
                float: left;
                padding-top: 20px;
            }

.food_menu_list {
    width: calc(100% - var(--CartBoxSize));
    float: left;
    padding-right:20px;
}

.fm_cart {
    width: var(--CartBoxSize);
    float:left;
    border:1px solid #ccc;
    border-radius:10px;
    position:sticky;
    top:55px;
    z-index:9;
}
.food_menu_list,
.fm_cart {
   min-height:300px;
}
.menu_item {
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
}
    .menu_item:hover {
        cursor:pointer;
        background-color:#f4f5f8;
    }
    .menu_item_left {
        width: calc(100% - var(--MenuItemSize));
        float: left;
        padding-left:10px;
    }
.menu_item_right {
    width: var(--MenuItemSize);
    height: var(--MenuItemSize);
    position: relative;
    float: left;
    background-color: #f4f5f8;
}
    .menu_item_right img {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
    }
.menu_item_name {
    width: 100%;
    float: left;
    font-weight:bold;
}
.menu_item_price {
    width: 100%;
    float: left;
    font-weight: bold;
    color: #7b7b7b;
    display:flex;
}
.menu_disc_amt {
    font-weight: normal;
    font-size: 11px;
    margin-top: 5px;
}
.menu_item_det {
    width: 100%;
    float: left;
    line-height: 17px;
    padding: 5px 0px;
}
.menu_cart_btn {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 4px;
    top: 3px;
    margin: auto;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #dfdfdf;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fml_indv {
    width: 100%;
    float: left;
}
.fml_header {
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    background: rgb(255, 255, 255);
    background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgb(199 199 199 / 84%) 100%);
    border-radius: 5px;
    padding: 5px 10px;
}
.fmc_header {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 10px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(199 199 199 / 84%) 100%);
    border-radius: 10px 10px 0px 0px;
}
.cart_container {
    width:100%;
    float:left;
    padding:5px 5px;
}
.cart_table {
    width: 100%;
    float: left;
}
.cart_table tr td:nth-child(1) {
    width: 70px;
}
    .cart_table tr td:nth-child(2) {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        height: auto;
        align-content: space-between;
        padding: 5px;
    }
    .cart_table tr td {
        padding:5px 0px;
    }
    .cart_table tr {
        border-bottom:1px solid #ccc;
        position:relative;
    }
    .cart_table tr:last-child {
        border-bottom: 0px;
    }
    .cart_prod {
        width: 70px;
        height: 70px;
        float: left;
        position: relative;
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #f4f5f8;
        overflow: hidden;
    }
.cart_prod img {
   position:absolute;
   top:0px;
   bottom:0px;
   left:0px;
   right:0px;
   margin:auto;
   max-width:100%;
   max-height:100%;
}
.c_prod_name {
    width: 100%;
    float: left;
    line-height: 16px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size:14px;
}
.c_prod_var_outer {
    width: 100%;
    float: left;
    line-height: 16px;
    margin-bottom: 5px;
    font-size: 11px;
}
.c_prod_var {
    margin-right: 3px;
    position: relative;
}

.c_prod_count {
    width: 7rem;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
}
    .c_prod_count button {
        border: 0px;
        outline: 0px;
        width: 5rem;
        height: 2.1rem;
        font-size: 11px;
    }
.delete_cartItem {
    float: left;
    margin-left: 1.2rem;
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.c_prod_variant {
    width:100%;
    float:left;
}
.c_prod_name .item_name {
    font-weight:bold;
}
.c_prod_variant div {
    width: auto;
    float: left;
    margin-right: 5px;
    color: #3f3f3f;
    font-style: italic;
    font-size: 12px;
    margin-top: 2px;
}
.c_prod_count button:hover {
    background-color: #f8f8f8;
}
    .c_prod_count input[type=number] {
        width: 100%;
        float: left;
        -moz-appearance: textfield;
        border: 0px;
        box-shadow: none;
        outline: none;
        text-align: center;
        height: 18px;
    }
    .c_prod_count input::-webkit-outer-spin-button,
    .c_prod_count input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
.c_prod_amt {
    width: 100%;
    float: left;
    text-align:right;
}
.cart_table_bottom {
    border-bottom:0px !important; 
}
    .cart_table_bottom td {
        height: unset !important;
        text-align: right;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }
.cart_table_bottom td:nth-child(1) {
    padding-right:20px;
}
.cart_table_bottom_total {
    font-weight:bold;
}
.cart_table_bottom_red {
    color:#d71920;
}
.cart_footer {
    width: 100%;
    float: left;
    text-align: right;
    padding:5px;
    padding-top:0px;

}
.cart_height {
    height: calc(100vh - 250px);
    width: 100%;
    float: left;
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-height {
    height: calc(100vh - 250px);
    width: 100%;
    float: left;
    overflow-x: hidden;
    overflow-y: auto;
}
.cart_footer button {
    width: 100%;
    float: left;
}
.black_button,
.black_button:hover,
.black_button:focus {
    border-color: #ddd;
    background-color: #000;
    color: var(--YellowColor);
}
.order_place_btn {
    border-radius:15px;
}
.fm_footer_device {
    display: none;
    position: absolute;
    z-index: 999999;
    left: 0px;
    bottom: 0px;
}
.fm_footer_menu {
    display: none;
    position: absolute;
    z-index: 999999;
    left: 0px;
    bottom: 0px;
}

.cart_close {
    display:none;
}
.origin_price {
   position:relative;
}
    .origin_price:before {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin: auto;
        width: 100%;
        height: 2px;
        background-color: #d71920;
        transform: rotate(-15deg);
    }
    .disc_price {
    }
.cart_height::-webkit-scrollbar {
    width: 5px;

}

.cart_height::-webkit-scrollbar-track {
    background-color: #f7f9fc;
    border-radius: 100px;
}

.cart_height::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 100px;
}
.order_place_bg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 99;
    display: none;
}
.order_place_block {
    position: fixed;
    top: 80px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-color: #fff;
    width: 500px;
    height: 650px;
    border: 1px solid #ccc;
    z-index: 999;
    display: none;
}

.fmi_block_bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 9;
    display: none;
}
.fmi_block {
    position: absolute;
    top: 80px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-color: #fff;
    width: 500px;
    height: 650px;
    border: 1px solid #ccc;
    z-index: 9;
    display: none;
}
.fmi_height {
    width:100%;
    float:left;
    height:100%;
    overflow:auto;
}
::-webkit-scrollbar {
    width: 6px;
    height:6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #555;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #727A81;
    }
.order_place_close,
.fmi_close {
    position: absolute;
    right: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    top: 2px;
    z-index: 9;
}
.fmi_close {
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fmi_name {
    width: 100%;
    float: left;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.fmi_item_image {
    width:100%;
    float:left;
    position:relative;
    height:300px;
    background-color:#f4f5f8;
}
    .fmi_item_image img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .srch_prod_info {
        display: flex;
        gap: 5px;
        width: 100%;
        float: left;
    }

.srch_p_rev {
    display: flex;
    align-items: center;
    color: #6a6a67;
    font-size: 14px;
}

.srch_p_rat {
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000 !important;
}


    .srch_p_rat svg {
        padding: 2px;
        width: 16px;
    }

        .srch_p_rat svg path {
            fill: #fff;
        }
.better_color {
    background-color: #ffc3bd;
}

    .better_color svg {
        background-color: #ff3722;
    }

.ok_color {
    background-color: #ffdbbd;
}

    .ok_color svg {
        background-color: #ff8622;
    }

.good_color {
    background-color: #6eff9a;
}

    .good_color svg {
        background-color: #2ca01c;
    }
.fmi_inner {
    width:100%;
    float:left;
    padding:10px 10px;
    font-size:14px;
}
.fmi_price {
    width: 100%;
    float: left;
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f4f5f8;
    padding: 5px 15px;
    border-radius: 4px;
}
.fmi_info {
    width: 100%;
    float: left;
    line-height: 17px;
    margin-bottom: 15px;
}
.fmi_new_price {
    width: auto;
    float: left;
    font-size: 30px;
    font-weight: bold;
}
.menu_old_price,
.fmi_old_price {
    width: auto;
    float: left;
    position: relative;
    font-weight: bold;
    color: #a5a5a5;
    margin: 0px 10px;
}
    .menu_old_price:before,
    .fmi_old_price:before {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin: auto;
        width: 100%;
        height: 2px;
        background-color: #d71920;
        transform: rotate(-15deg);
    }
.fmi_disc_price {
    width: auto;
    float: left;
}
    .fmi_old_price,
    .fmi_disc_price {
        padding-bottom:7px;
    }
.variant-group {
    background-color:#f4f5f8;
}
.fmi_variation,
.variant-group,
.topping-group {
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
}
    .fmi_var_head,
    .variant-group h5,
    .topping-group h5 {
        width: 100%;
        float: left;
        font-weight: bold;
        font-size: 1rem;
    }
.fmi_var_opt_container,
.variant-options {
    width: 100%;
    float: left;
}
.fmi_var_opt,
.form-check {
    width: 100%;
    float: left;
}
    .fmi_var_opt label,
    .form-check-label {
        width: 100%;
        float: left;
        display: flex;
        cursor: pointer;
    }
        .fmi_var_opt label .fm_var_name, .variant_name_modal, .topping_name_modal {
            width: 100%;
            float: left;
            margin-left: 5px;
            font-size: var(--bs-body-font-size) !important;
            color: var(--bs-body-color) !important;
        }
        .fmi_var_opt label .fm_var_price,
        .variant_price_modal,
        .form-check-label span:nth-child(2){
            width: 100%;
            float: left;
            text-align: right;
            font-weight: bold;
        }
#variantContainer,
#toppingContainer {
    width: 100%;
    float: left;
}
.fmi_ins {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.fmi_ins_header {
    width: 100%;
    float: left;
    font-weight: bold;
    font-size: 16px;
}
.fmi_ins_info {
    width: 100%;
    float: left;
}
.fmi_ins textarea {
    resize:none;
    height:200px;
}

.orp_block {
    width: 100%;
    float: left;
    background-color: #f4f5f8;
    border-radius: 4px;
    margin-bottom: 15px;
}

.orp_header {
    width: 100%;
    float: left;
    font-weight: bold;
    padding-bottom: 0px !important;
}

.orp_header,
.orp_info {
    padding: 10px 15px;
}

.orp_info {
    width: 100%;
    float: left;
    padding-top: 0px;
}

.op_table {
    width: 100%;
    float: left;
}

    .op_table td {
        padding: 5px 0px;
    }
#orderSummery_table tr td:first-child {
    width:65%;
}
#orderSummery_table tr td:last-child {
   text-align:right;
}


.op_border_top {
    border-top: 1px solid #ccc;
}

    .op_border_top td {
        padding-top: 10px;
    }
.otp_page {
    width: 100%;
    float: left;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 2px 2px 8px #ccc;
    margin: 15px 0px;
}
    .otp_page label {
        font-weight: bold;
        font-size: 13px;
    }
    
.otp_padd {
    padding:20px;
}
.ot_count_holder {
   width:100%;
   float:left;
}.ot_count {
    width:auto;
    margin:auto;
    border:1px solid #ccc;
    box-shadow:2px 2px 8px #ccc;
}
    .ot_count h1 {
        text-align: center;
        font-size:18px;
        margin-top: 20px;
        text-transform:uppercase;
    }
#countdown {
    font-size: 10px;
    font-weight: bold;
}
    #countdown ul {
        padding-inline-start: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap:10px;
    }
    #countdown ul li {
     border:1px solid #ccc;
     background-color:#f4f5f8;
     border-radius:10px;
    }
.popular_block {
    width: auto;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 7;
    background-color: var(--YellowColor);
    border-radius: 8px 0 0 0;
    font-size: 10px;
    padding: 3px 5px;
    font-weight: bold;
    text-transform: uppercase;
}
.modal {
    z-index:999999;
}
.menu_cart_btn {
    background-color:#fff !important;
    color:black !important;
}
@media(max-width:800px) {
    .menu_item {
        padding:0px;
        border:0px;
        border-radius:0px;
        min-height:215px;
    }

    .no-image-cart {
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        padding: 1.3rem;
        min-height:unset !important;
    }
        .no-image-cart .menu_item_name {
            text-overflow: unset;
            display: unset;
            line-height:16px;
        }
        .fm_middle_section .row {
            display: unset;
        }
            .fm_middle_section .row .col-md-6 {
                float:left;
            }
            .show_cart {
                /* display:none !important; */
            }
    .cart_footer button {
        height: 43px;
    }
    .fm_cart {
        display: none;
        position: fixed;
        bottom: 0px;
        top: 0px;
        width: 100%;
        left: 0px;
        background-color: #fff;
        border-radius: 0px;
        z-index: 9999;
    }

    .food_menu_list {
        width: 100%;
        margin-bottom: 4rem;
        padding-right:0px;
    }

    .fm_srch {
        width: calc(100% - 20px);
        float: left;
        position: absolute;
        top: -38px;
    }

    .food_menu_inner {
        overflow: auto hidden;
    }

        .food_menu_inner a {
            white-space: nowrap;
        }

    .res_top_logo {
        width: 60px;
        height: 60px;
    }
    .res_top_name {
        font-size: 20px;
        line-height: 22px;
    }
    .res_header {
        height:210px;
    }
        .fm_footer_device {
            width: calc(100% - 20px);
            float: left;
            position: fixed;
            bottom: 8px;
            left: 10px;
            background-color: #000;
            color: var(--YellowColor);
            display: flex;
            padding: 11px;
            align-items: center;
            justify-content: space-between;
            border-radius: 15px;
            z-index:999;
        }
    .fm_footer_menu {
        width: calc(100% - 20px);
        float: left;
        position: fixed;
        bottom: 8px;
        left: 10px;
        background-color: #000;
        color: #fff;
        display: none;
        padding: 10px 25px;
        align-items: center;
        justify-content: space-between;
        border-radius: 15px;
    }
        .fm_footer_menu > span {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            font-size: 10px;
        }
            .fm_footer_menu > span svg {
                font-size:19px;
            }
            .cart_close {
                float: right;
                color: #d71920;
                display: block;
                font-size: 21px;
                background-color: #fff;
                padding: 3px 5px;
                border-radius: 4px;
                box-shadow: inset gray 0px 0px 41px -13px;
            }
    .food_menu_list .fml_indv .col-md-6 {
        width: 50%;
    }
    .menu_item_left {
        width:100%;
        padding-left:0px;
    }
    .menu_item_right {
        width:100%;
    }
    .menu_item_det {
        height: auto;
        text-align: justify;
    }
    .menu_item_name {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .fmi_block {
        width:100%;
        top:0px;
        height:100vh;
    }
    .order_place_block {
        width: 100%;
        top: 0px;
        height: 100vh;
    }
    .orp_block {
        width: 100%;
        float: left;
        background-color: #f4f5f8;
        border-radius: 4px;
        margin-bottom:15px;
    }
    .orp_header {
        width: 100%;
        float: left;
        font-weight: bold;
        padding-bottom:0px !important;
    }
    .orp_header,
    .orp_info {
        padding: 10px 15px;
    }
    .orp_info {
        width: 100%;
        float: left;
       padding-top:0px;
    }
    .op_table {
        width:100%;
        float:left;
    }
        .op_table td {
            padding:5px 0px;
        }
        .op_table td:last-child {
            width: 65px;
            text-align: right;
        }
    .op_border_top {
        border-top: 1px solid #ccc;
    }
    .op_border_top td {
        padding-top:10px;
    }
}




.ot_count_holder li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

.ot_count_holder li span {
    display: block;
    font-size: 4.5rem;
}

.emoji {
    display: none;
    padding: 1rem;
}

    .emoji span {
        font-size: 4rem;
        padding: 0 .5rem;
    }

@media all and (max-width: 768px) {
    .cart_height {
        height: calc(100vh - 150px);
    }

    .modal-height {
        height: calc(100vh - 250px);
    }

    h1 {
        font-size: calc(1.5rem * var(--smaller));
    }

    li {
        font-size: calc(1.125rem * var(--smaller));
    }

        li span {
            font-size: calc(3.375rem * var(--smaller));
        }

    .menu_item_right {
        width: 12rem;
        height: 12rem;
    }

    .menu_item_right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}