@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
body h1, h2, h3, h4, h5, h6, p{
  font-family: 'Montserrat', sans-serif;
}
.no-padding{
  padding: 0;
}
body{
    height: 100vh;
    background-color: #f7f7f7cf;
}
.h-100-vh{
    height: 100vh;
}
.h-80{height: 80%;}
.h-35{height: 35%;}
.f-10{font-size: 10px;}
.f-12{font-size: 12px;}
.f-14{font-size: 14px;}
.f-16{font-size: 16px;}
.f-18{font-size: 18px;}
.bg-div{background-color: #daa520;}
.color-1{color: #daa520;}
.fw-semibold{font-weight: 600;}
.bg-1{background-color: #f8f8f8;}
.divider-dashed{
  border-bottom: 1px dashed #00000073;
  padding-bottom: 8px;
}

/******Updated******/
.cm-shadow {
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    border: none;
    border-radius: 12px;
}
.cm-shadow a{
  text-decoration: none;
}
.cm-shadow .card-body {
    padding: 15px;
}
.remove-height .products, .cm-margin-b{
  height: auto;
  margin-bottom: 70px;
}
.remove-height{height: auto;}
.restaurant-view .title a{font-size: 14px;}
.restaurant-view .btn{font-size: 12px;}

/************************
 **********FILTER*******/
.filter-box{
  margin: 15px 0;
  background-color: white;
  border-radius: 50px;
  padding: 20px 0px;
  box-shadow: rgb(0 0 0 / 10%) 0px 2.5px 10px;
  border-radius: 40px;
}
.filter-box .nav-link, .filter-box .nav-tabs{
  border: none;
  background-color: unset !important;
}
.filter-box .tab-content{
      padding: 20px 5px;
}
.f-heading{
  font-size: 12px;
  font-weight: bold;
  color: #000;
  padding: 5px;
  margin-bottom: 0;
}
.f-box span{
  font-size: 13px;
  padding: 5px;
}
.text-orange{
  color: #e1ac47 !important;
}

.price-slider{
  position: relative;
  width: 90%;
  padding-top: 35px;
  margin: auto;
}
.price-slider-div .fa-rupee-sign{font-size: 12px;}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}
.slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}
input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background-color: #e1ac47;
  cursor: pointer;
  margin-top: -5px;
  pointer-events: auto;
  border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
  border: none;
}
input[type="range"]::-ms-thumb {
  appearance: none;
  height: 15px;
  width: 15px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #3264fe;
}
.values {
  background-color: #e1ac47;
  width: 32%;
  position: relative;
  margin: auto;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
}
.values:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-top: 8px solid #e1ac47;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  margin: auto;
  bottom: -7px;
  left: 0;
  right: 0;
}
.cooktime-div .filter-radio{
  display: inline-block;
  text-align: center;
}
.cooktime-div label{
  display: block;
}
.cooktime-div .checkmark{
  left: 0;
  right: 0;
  margin: auto;
  top: 8px;
}
.checkmark {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 19px;
  width: 19px;
  border-radius: 50px;
  border: 1px solid #0003;
  background-color: #fff;

}
.filter-radio{position: relative;}
.filter-radio label{padding-left: 3px;cursor: pointer;font-size:11px;}
.filter-radio input:checked ~ .checkmark {
  background-color: #28c564;
  border: 1px solid #28c564;
}
.filter-radio input[type="radio"] {

}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter-radio input:checked ~ .checkmark:after {
  display: block;
}
.filter-radio .checkmark:after {
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.filter-radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border-radius: 50%;
  width: 18px;
  height: 18px;

  border: 1px solid #28c564;
  transition: 0.2s all linear;

  position: relative;
  top: 4px;
}

/*input[type="radio"]:checked + label > .fa-check-circle-o:before { content: "\f05d"; }*/
.filter-radio input:checked {

}
.btn-check:focus+.btn, .btn:focus{box-shadow: unset;}
.add-btn-cart{padding: 0px 12px;}


.cm-icon{
    color: rgb(157 102 63 / 83%);
    background-color: rgb(255 255 255);
    border: 1px solid rgb(255 255 255);
    box-shadow: 0px 0px 10px 0px #6f4e3742;
    margin: 5px;
    border-radius: 8px;
    -webkit-box-align: center;
    align-items: center;
    pointer-events: auto;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
}
.bg-img{
  background-image: url('images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: -1;
}
.bg-img-none{background-image: linear-gradient(#fff, #fff);display: none;}
.home-div{
  position: absolute;
  bottom: 40px;
}
.accordion-body {
    padding: 10px;
}
.cm-btn{
  display: block;
  margin: 20px auto;
  background-color: rgb(111, 78, 55);
  border-radius: 100px;
  height: 45px;
  width: 170px;
  line-height: 42px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-align: center;
  box-shadow: rgb(0 0 0 / 30%) 0px 2.5px 4px;
  transition: 0.5s;
}
.cm-btn:hover{
  color: rgb(255, 255, 255);
}
.footer-logo{
  display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}
.rl-heading{
  color: rgb(165, 42, 42);
    font-size: 30px;
    font-weight: bold;
    text-decoration-line: underline;
}

/*******Product*********/
.swiper-img-div{
  background-color: white;
  margin: auto;
  margin-top: 8px;
  border-radius: 53px;
  height: 40px;
  width: 40px;
  line-height: 35px;
}
.swiper-active{
  background-color: #e1ac47 !important;
  transition: 0.5s;
}
.swiper-slide{
  background-color: #ffffff;
  border-radius: 50px;
  box-shadow: rgb(0 0 0 / 10%) 0px 2.5px 5px;
}
.swiper-slide h6{
    color: #000;
    padding: 3px 0;
    font-size: 9px;
    cursor: pointer;
    min-height: 30px;
    margin-bottom: 5px;
}
.swiper-slide img{
  border-radius: 6px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.heading{
    font-size: 12px;
    font-weight: bold;
    color: #000;
    padding: 5px;
}
.title, .title a{
  color: #000;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 2px;
  text-decoration: none;
}
.desc{
    font-size: 9px;
    margin-bottom: 0px;
}
.desc a{color: #a52a2a;}
.price{
    margin-bottom: 0px;
    font-size: 12px;
    color: #e1ac47;
    font-weight: 700;
}
.cm-product-box .box-child{width: 100%;}
.cm-product-box{padding: 4px 10px;position: relative;}
.cm-rating{
    position: absolute;
    right: 50px;
    top: 15px;
    font-size: 9px;
    color: #df7100;
}
.cm-info .cm-rating{
  position: unset;
  font-size: 11px;
}
.cm-info{
  position: absolute;
  right: 25px;
  top: 10px;
  color: #df7100;
  cursor: pointer;
  font-size: 14px;
}
.customize .form-check{
  margin-bottom: 2px;
  min-height: 0;
}
.customize label{font-size: 9px;}
.cust-title{
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  background-color: #e1ac47;
  width: 90px;
  margin: auto;
  border-radius: 4px;
  font-size: 9px;
}
.cust-btn{
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #fff;
    color: #e1ac47;
    width: 50px;
    margin: auto;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}
.product-desc{
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 90px;
  background-color: #040418d4;
  color: #fff;
  padding: 15px;
  font-size: 10px;
  border-radius: 40px 0 40px 40px;
  z-index: 9;
  text-align: justify;
  font-weight: 500;
}
.desc-close{
    position: absolute;
    right: -4px;
    top: -9px;
    font-size: 12px;
    background-color: #e1ac47;
    padding: 3px 8px;
    border-radius: 40px;
    cursor: pointer;
}
.products{
  /*height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 15px;*/
    display:flex;
    flex-direction:column;
    height:calc(100vh - 190px);
    margin-top: 20px;
}
.child-scroll{
  flex-grow:1;
  height: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 58px;
}
.search-input{
  border-radius: 50px;
  border: navajowhite;
  margin: 11px 0;
  box-shadow: rgb(0 0 0 / 4%) 0px 2.5px 4px;
  padding: 10px 25px;
  font-size: 11px;
  width: 85%;
}
.search-icon {
  position: absolute;
  top: 13px;
  left: 8px;
  font-size: 11px;
}
.cm-filter{
  float: right;
  padding: 8px;
  cursor: pointer;
}
.products .box{
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 2.5px 4px;
    border-radius: 40px;
}
.box-child{
  padding: 0px 25px 0px 0;
}
.products img{
    width: 90px;
    height: 90px;
    border-radius: 40px 0px 0 40px;
    padding: 10px;
}
.child-scroll::-webkit-scrollbar {
  width: 7px;
}
.child-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #00000085;
}
.child-scroll::-webkit-scrollbar-thumb {
  background-color: #00000085;
  outline: 1px solid #a52a2a4a;
}
.modal-content{border-color: rgb(255 188 19 / 33%);}
.pd-btn, .pd-btn:hover, .pd-btn:focus{
  background-color: rgb(165, 42, 42);
  color: #fff;
  border-color: rgb(165, 42, 42);
  transition: 0.5s;
  text-transform: uppercase;
  box-shadow: none;
}
.pd-btn:hover{letter-spacing: 2px;}
.cm-instruction{
    height: 20px;
    font-size: 9px;
    width: 100%;
    border-color: #d9d9d9;
    margin-top: 5px;
}
textarea:focus-visible {
  box-shadow: none;
  outline: none;
}
.checkoutPopup{
  position: fixed;
  bottom: 11px;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  background: #e1ac47;
  border-radius: 50px;
  box-shadow: #54411c 0 10px 20px -10px;
  text-align: center;
  color: #fff;
  width: 100px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.5s;
  z-index: 9;
}
.checkoutPopup:hover{
  letter-spacing: 1px;
}
.card{margin-bottom: 10px;}
.jain-check input{
  top: 1px;
  position: relative;
  width: 10px;
  height: 10px;
}

/******SPICY LEVEL*****/
.bg-jain{
  background-color: #f76300;
  color: #fff;
  box-shadow: 0 0 14px 2px #24870852;
}
.confirmDiv .products{height: auto;}
.confirmDiv .qty .bg-gold{
  font-size: 11px;
  background-color: #e1ac47 !important;
  border-radius: 40px;
  padding: 5px 10px;
}
.spicy-level{position: relative;}
.spicy-level span img{
    width: 35px;
    height: 30px;
    border-radius: 0;
    padding: 1px;
    cursor: pointer;
}
.spicy-box{
    position: absolute;
    background-color: #ffffff;
    width: 65px;
    padding: 5px;
    box-shadow: 0 0 12px 2px #daa520b3;
    left: 40px;
    top: 0;
    right: -23px;
    margin: auto;
    z-index: 9;
    text-align: center;
    border-radius: 8px;
}
.spicy-img h5{
    margin-bottom: 0;
    font-size: 9px;
    padding-left: 4px;
    padding-top: 2px;
    text-transform: uppercase;
}
.spicy-box label{    margin: 5px 0;}
.spicy-box label input{top: 5px; position: relative;width: 15px;width: 15px;height: 15px;}
.quick-instruction{
  width: 100%;
  border-color: #e7e7e7;
  border-radius: 8px;
  padding: 10px;
  margin: 15px 0 10px;
  font-size: 11px;
}

/*.confirm-spicy-box{border-radius: 60px;}*/
.confirm-spicy-box{padding: 10px 0;}
.confirm-spicy-box .nav-tabs{padding: 5px 10px 0px;border-bottom: none;}
.confirm-spicy-box .nav-link.active {
    color: #ffffff;
    background-color: #e1ac47;
    border-color: #dee2e6 #dee2e6 #fff;
}
.confirm-spicy-box .nav-link{color: #000;border-radius: 40px;}
.confirm-spicy-box .form-check-input:checked {
    background-color: #e1ac47;
    border-color: #e1ac47;
}
.confirm-spicy-box .form-check-input:focus{box-shadow: none;}

.callTowaiter{
    position: fixed;
    top: 49%;
    right: -3px;
    background-color: #0aa344;
    color: #fff;
    padding: 10px;
    border-radius: 15px 0 0 15px ;
    font-size: 18px;
    box-shadow: 0 0 30px 15px #041e0e38;
    z-index: 9;
}
.myOrderBtn{
    position: fixed;
    top: 59%;
    right: -3px;
    background-color: #ba930d;
    color: #fff;
    padding: 10px;
    border-radius: 15px 0 0 15px ;
    font-size: 18px;
    box-shadow: 0 0 30px 15px #041e0e38;
    z-index: 9;
}
#placePopup i{
  font-size: 46px;
  color: #0e8b3d;
  padding: 10px;
}
#placePopup .modal-body{padding: 30px;}

/*********Cart***********/
.badge-og{
  background-color: #dbba66;
    border-radius: 40px;
}
.cart .products img{
  width: 65px;
  height: 65px;
}
.cart .modal-content, .confirmDiv .modal-content{background-color: #f8f8f8;}
.cm-cart-item{
    color: #6f4e37;margin: 0;
    display: inline-block;
    padding: 0 5px;
}
.cm-cart-item span{
    background-color: brown;
    color: #fff;
    height: 22px;
    width: 22px;
    display: inline-block;
    line-height: 22px;
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.cart-p-price{
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 9px;
    color: #000;
    font-weight: 600;
}
.cm-tl-qty{
  position: absolute;
  top: 0;
  right: 0px;
  background-color: #d1e7dd;
  color: #000;
  font-size: 9px;
  padding: 2px;
  border-radius: 50px;
  font-weight: 600;
}
.form-control:focus, .input-group .btn:focus{
  box-shadow: none;
  border: 1px solid #e6e6e6;
}
.cm-cart-model .modal-title{
  font-size: 12px;
}
.btn-close{
  position: absolute;
  right: 7px;
  top: 7px;
  font-size: 13px;
}
.cm-cart-model .modal-header{
  display: block;
}
.cm-cart-h-price, .cm-cart-h-qty{
  font-size: 9px;
    letter-spacing: 1px;
}
 table td, table th{
  font-size: 9px;
}
.cm-input-qty{
  width: 65px;
  float: right;
  background-color: #daa520;
  border-radius: 40px;
}
.input-number{
  font-size: 13px;
  padding: 0;
  background-color: #daa520;
  border: none;
  color: #fff;
}
.btn-number {
    padding: 1px 5px;
    font-size: 9px;
    color: #fff;
}
.input-group-btn .btn{font-size: 10px;}
.input-group-btn .btn:hover{color: #ffffffb3;}
.modal-header, .modal-body{padding: 10px;}


.cm-cat-type{
    text-decoration: none;
    box-shadow: 0px 0px 10px 0px #6f4e3742;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    margin: 0 2px;
    font-weight: 600;
}
.cm-cat-type:hover{}
.cm-cat-bg-j{background-color: #fff;color: green;}
.cm-cat-bg-s{background-color: rgb(247 148 49);color: #fff;}
.cm-cat-bg-v{background-color: green; color: #fff;}
.cm-cat-bg-n{background-color: red; color: #fff;}
.cm-cat-bg-e{background-color: #a33520; color: #fff;}

.accordion-button{
  padding: 5px;
  font-size: 9px;
  border-radius: 4px;
  margin: 12px 0;
  box-shadow: 0px 0px 10px 0px #6f4e3742;
}
.accordion-button:focus{
  box-shadow: none;
}
.fa-cart-plus, .fa-home, .fa-arrow-left{
  color: #000;
}

.accordion-item{
  border: none;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px #6f4e3742;
}
.cm-view-more .accordion-body {padding: 0;}
.cm-view-more .accordion-item{box-shadow: none;}
.cm-view-more .accordion-button{
  width: 105px;
  margin: auto;
  margin-top: 10px;
}
.live-icon{
  padding: 0 10px;
}
.no-padding{padding: 0;}


/***********Live order page**********/
.live-menu{
  height: 500px;
  width: 100%;
  display: none;
  position:absolute;
  bottom:0;
  z-index: 9;
  background-color: #f8f8f8;
  margin-top: 20px;
}
.live-status{
  position: absolute;
  right: 20px;
  font-size: 9px;
  text-transform: uppercase;
}
.live-bill{
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0px 0px 20px 2px #daa52038;
}
.live-bill p{
  color: #000;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 12px;
}
.live-footer-box{
  background-color: #fff;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 11px;
  z-index: 9;
}
.btn-gold{
  background-color: #e1ac47;
  border-color: #e1ac47;
  color: #fff;
  border-radius: 50px;
}
.table .badge{background-color: #e1ac47;}
input:focus-visible {
 outline: none;
}
.live-repeat-input{
  width: 30px;
  border: none;
  text-align: center;
}
table p{margin: 0;}
.repeat-btn{
  padding: 1px 10px;
  cursor: pointer;
  font-size: 11px !important;
}
.btn-check:focus+.btn-outline-success, .btn-outline-success:focus{box-shadow: none;}
.timer{display: inline-block;}
.modal-backdrop{background-color: #0000003b;}
.repeat-success-div h3{
  color: #6f4e37;
  font-size: 16px;
}
.repeat-success-div .fa-smile{
  color: #198754;
}
#endMealPopup .modal-dialog{
    margin: 0;
    padding:20px;
}
.skip-btn{
  width: 100px;
}
.skip-div{margin-top: 5px;z-index: 9;}
#endMealPopup .row{
  width: 100%;
  margin: auto 0px;
}
#endMealPopup .products{
    height: auto;
    margin-top: 0;
}
p{margin: 0;}
.modal-dialog{pointer-events: all;}

.active-btn{
  animation: UpDown 1s linear infinite;
}

.repeat-col{width: 95px;}
/* Button */
.cm-button {
  text-align: center;
  padding: 3px 5px;
  text-decoration: none;
  color: #000;
  border-radius: 50px;
  border: 1px solid #e1ac47;
  background-color: #f3e5cc;
}
.cm-button:hover {color: #fff;}

/* Blue Background */
.blue-active {
  -webkit-animation: blue 2s infinite;
  -moz-animation: blue 2s infinite;
  -o-animation: blue 2s infinite;
  animation: blue 2s infinite;
}
/* Blue Shadow */
@-moz-keyframes blue {
  0%, 100% {
    -moz-box-shadow: 0px 0px 8px 1px rgb(225 172 71 / 79%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);
    box-shadow: 1px 0px 4px 4px rgb(255 0 0 / 82%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);
  }

  50% {
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 130, 196, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 130, 196, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes blue {
  0%, 100% {
    -webkit-box-shadow: 0px 0px 8px 1px rgb(225 172 71 / 79%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);
    box-shadow: 1px 0px 4px 4px rgb(255 0 0 / 82%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);
  }

  50% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 130, 196, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 130, 196, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);
  }
}

@-o-keyframes blue {
  0%, 100% {box-shadow: 0px 0px 8px 1px rgb(225 172 71 / 79%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);}

  50% {box-shadow: 0px 0px 0px 0px rgba(0, 130, 196, 0), inset 0px 0px 0px rgba(255, 255, 255, 0);}
}

@keyframes blue {
  0%, 100% {box-shadow: 0px 0px 8px 1px rgb(225 172 71 / 79%), inset 0px 0px 10px rgba(255, 255, 255, 0.5);}
  50% {box-shadow: 0px 0px 0px 0px rgb(25 135 84 / 42%), inset 0px 0px 0px rgba(255, 255, 255, 0);}
}




/*********Product details*********/
.meal-typ-fltr img{
  width: 18px;
  height: 15px;
}
.meal-typ-fltr .mtf-box{
  border: 1px solid #000;
  margin: 1px;
  width: 30px;
  height: 30px;
  line-height: 27px;
  border-radius: 40px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.mf-veg-current{
  background-color: #00b63a;
  border-color: #00b63a !important;
}
.mf-veg-current img, .mf-nveg-current img, .mf-jain-current img{filter: invert(1);}
.mf-nveg-current{
  background-color: #f33939;
  border-color: #f33939 !important;
}
.mf-jain-current{
  background-color: #f7bd4e;
  border-color: #f7bd4e !important;
}

.tg-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 18px;
  float: right;
  margin-left: 5px;
}
.tg-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.tg-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.tg-slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .tg-green {
  background-color: #28c564;
}
input:checked + .tg-red {
  background-color: #e12929;
}
input:focus + .tg-slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .tg-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.tg-slider.tg-round {
  border-radius: 34px;
}
.tg-slider.tg-round:before {
  border-radius: 50%;
}



.product-details h5{
  font-size: 12px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0;
}
.product-details .card-text{font-size: 9px;}
.carousel{
  padding: 25px;
  background-color: #fff;
}
.carousel-indicators [data-bs-target]{
  background-color: #daa520;
}
.carousel-indicators button{
  width: 15px !important;
  height: 15px !important;
  border-radius: 50px;
  border: none !important;
}
.product-details .cm-cat-type{
  height: 22px;
  width: 22px;
  line-height: 22px;
  font-size: 12px;
}
.product-details .card{/*background-color: unset;*/}
.alert{
  padding: 5px;
  font-size: 9px;
  margin-bottom: 0;
  margin-top: 10px;
}
.card-body{padding: 10px;}
.f-9{
  font-size: 9px;
}
.rating-color{
  color: #df7100;
}
.btn{font-size: 14px;}
.color-brown{color: rgb(165, 42, 42);}
a:hover{
  color: #b58500;
}

/*********Feedback page**********/
.frm-input{
    font-size: 9px;
    margin: 10px 0;
}
.feedback .feedback-form{
    padding: 20px;
    box-shadow: 0 0 12px 2px #0000002e;
    border-radius: 5px;
}
.frm-input:focus {
    border-color: #dde1e5;
}




/********Invoice**********/
.invoice-div h3, .invoice-div p, .invoice-div th, .invoice-div td, .invoice-head{color: #6f4e37;}
.invoice-div h3, .invoice-head{font-size: 12px;}
.invoice-div p, .invoice-div th, .invoice-div td {font-size: 9px;}
.invoice-div .card{margin-bottom: 20px;}
.invoice-div .download-invoice{
  font-size: 12px;
  color: rgb(165, 42, 42);
  margin-bottom: 10px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .rl-heading{display: none;}
}

.submited-box a{color: rgb(165, 42, 42);}
.feedback h2{
  font-size: 14px;
  color: #545454;
  padding-bottom: 5px;
}
.feedback h3{
  font-size: 11px;
  color: #545454;
}
.rating-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rating-component .status-msg {
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}

.rating-component .status-msg strong {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

.rating-component .stars-box {
  -ms-flex-item-align: center;
  align-self: center;
}

.rating-component .stars-box .star {
  color: #ccc;
  cursor: pointer;
}

.rating-component .stars-box .star.hover {
  color: #ff5a49;
}

.rating-component .stars-box .star.selected {
  color: #ff5a49;
}

.feedback-tags {
  min-height: 119px;
}

.feedback-tags .tags-container {
  display: none;
}

.feedback-tags .tags-container .question-tag {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.feedback-tags .tags-box {
  display: -webkit-box;
  display: -ms-flexbox;
  text-align: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.feedback-tags .tags-container .make-compliment {
  padding-bottom: 20px;
}

.feedback-tags .tags-container .make-compliment .compliment-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.feedback-tags
  .tags-container
  .make-compliment
  .compliment-container
  .fa-smile-wink {
  color: #ff5a49;
  cursor: pointer;
  font-size: 40px;
  margin-top: 15px;
  -webkit-animation-name: compliment;
  animation-name: compliment;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.feedback-tags
  .tags-container
  .make-compliment
  .compliment-container
  .list-of-compliment {
  display: none;
  margin-top: 15px;
}

.feedback-tags .tag {
  border: 1px solid #1987546b;
  border-radius: 5px;
  color: #222;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 10px;
}

.feedback-tags .tag.choosed {
  background-color: #ff5a49;
  color: #fff;
}

.list-of-compliment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-of-compliment ul li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-left: 20px;
  min-width: 90px;
}

.list-of-compliment ul li:first-child {
  margin-left: 0;
}

.list-of-compliment ul li .icon-compliment {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ff5a49;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 70px;
}

.list-of-compliment ul li .icon-compliment i {
  color: #ff5a49;
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-of-compliment ul li.actived .icon-compliment {
  background-color: #ff5a49;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-of-compliment ul li.actived .icon-compliment i {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}




.submited-box {
  display: none;
  padding: 20px;
}

.submited-box .loader,
.submited-box .success-message {
  display: none;
}

.submited-box .loader {
  border: 5px solid transparent;
  border-top: 5px solid #4dc7b7;
  border-bottom: 5px solid #ff5a49;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: auto;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}


/*********************************
 *******Book Table Page **********/
.bt-box-div{
  background-image: url('images/bg-001.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: inherit;
}
.bt-box{
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
  border: 0;
  background-color: #fff;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 5px;
  /*padding: 0 20px 20px;*/
  box-shadow: 0 0 20px 1px #68686842;
}
.bt-logo{
  width: 100px;
  padding: 0 0px 20px;
}
.bt-orange {
    color: #fff;
    background-color: #e87121;
    border-color: #e87121;
    transition: 0.5s;
}
.bt-choco {
    color: #fff;
    background-color: #b78455;
    border-color: #b78455;
    transition: 0.5s;
}
.bt-primary{
  color: #b78455;
}
.bt-orange:focus{
  box-shadow: none;
}
.bt-orange:hover {
  color: #fff;
  opacity: 0.8;
}
.bt-alert{
  background-color: #b78455;
  color: #fff;
  padding: 20px;
  border-bottom-left-radius: 60% 20px;
  border-bottom-right-radius: 60% 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.bt-alert h5{
  text-transform: uppercase;
  margin-bottom: 0;
}
.bt-box-1{
  background-color: #d0833c0f;
  margin: 15px;
  padding: 15px;
  border: 1px dashed #b78455;
  border-radius: 4px;
}
.cm-bd-box{
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: 0 0 20px 1px #68686842;
  background-color: #fff;
  padding-bottom: 1px;
}
.bt-box-1 .spinner-grow{
  width: 20px;
  height: 20px;
}
.bt-box-1 .alert{font-size: 10px;}
.bt-status{
  display: inline-block;
  padding: 7px 10px;
  border-radius: 40px;
}
.bt-box-1 img{
  background-color: #fff;
  border-radius: 60px;
}
.bt-circle{
  color: #709829;
  font-size: 50px;
}
.table-code{
  border: 2px dashed #b78455;
  font-size: 30px;
  padding: 0 40px;
  color: #b78455;
  font-weight: 700;
}
.cm-bt-padding{
  padding: 20px;
  background-color: #c0c0c00d;
  margin: 15px;
  border-radius: 5px;
  border: 2px solid #b7845573;
  border-bottom: 4px solid #b78455;
}


/**********paymrnt method**********/
.pay-active{
  border: 2px solid rgb(225 172 71);
}
.upi-box, .cash-box{cursor: pointer;}
.pay-div .form-control, .map-box .form-control{
  border: 1px solid #e6e6e6;
}
.cash-box img, .upi-box img{width: 45px;}


/********OTP Page*********/
.digit-group input {
  width: 30px;
  height: 40px;
  /*background-color: #18182a;*/
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  color: #000;
}
.digit-group .splitter {
  padding: 0 5px;
  color: #000;
  font-size: 24px;
}
.triangle-up {
  position: absolute;
  top: -25px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 25px solid #e1ac47;
}
.take-away-box .triangle-up{left: 5px;}
.delivery-box .triangle-up{right: 5px;}
#offcanvasAddress .addIcon{
  display: block;
  padding: 0px 5px;
  border: 1px solid #00000069;
  border-radius: 8px;
  font-size: 20px;
  color: #daa520;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


@media only screen and (max-width: 767px) and (orientation : portrait) {
  .bt-box{margin: 20px;}
}
@media only screen and (max-width: 991px) and (orientation : landscape) {
  .bt-box-div{
    height: auto;
  }
  .bt-box{
    position: inherit;
    -webkit-transform: inherit;
    transform: inherit;
  }
}



@-webkit-keyframes compliment {
  1% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  75% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes compliment {
  1% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  50% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  75% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.addressScrollBox {
    height: 120px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px;
}
.fp-main-card {
    background-color: #00b63a;
    border-radius: 0;
}

.fp-time-view {
    background-color: #0e9d3c;
    color: #fff;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 22px;
}