/*================================= comoon css =================================*/
body{
    font-family: 'Roboto', sans-serif !important;
    background-color:#fff;
    touch-action: manipulation;
}
body, a, p, button{
    font-family: 'Roboto', sans-serif !important;
}
footer#footer {
    display: none;
}
.customer-view-design .border-normal-radius {
    border-radius: 3px !important;
}
.customer-view-design .section-heading h2:after, .customer-view-design .section-heading h3:after{
    display:none
}
.customer-view-design .page-content, .customer-view-design .content-wrapper  {
    display: block !important;
    flex-grow: unset !important;
    flex-direction: unset !important;
}
.customer-view-design .modal-dialog.modal-dialog-centered.customize-list.modal-lg.m-0.position-relative {
    max-width: 100%;
}
/*================================= 3  Inputs ( #input ) =================================*/
input::-webkit-outer-spin-button,   
input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0;}
::-webkit-input-placeholder {color:#343434; font-style:normal;}
:-moz-placeholder {color:#343434; font-style:normal;}
::-moz-placeholder {color:#343434; font-style:normal;}
:-ms-input-placeholder {color: #343434; font-style:normal;}

button::-moz-focus-inner {border: 0}
:focus {outline:none;}
::-moz-focus-inner {border:0;}

input[type=number] {-moz-appearance:textfield}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0}

input[type=submit]{padding:12px 20px; background:red; font-weight:normal; color:#fff; display:block; margin:0 auto}
input[type=submit] , input[type=button]{cursor:pointer; border:0}
input:focus{outline:none;}
body textarea{resize:none; height:270px; font-size:18px; font-style:italic; color:#656565; line-height:31px; border-color:#b7b7b7; }

input[type="text"], input[type="tel"], input[type="password"], input[type="date"], input[type="email"], input[type="number"], textarea{background:#fff;  border: 0; border-bottom: 1px solid #e1e1e1; border-radius:0;  width:100%; box-shadow:none; -webkit-appearance:none; color:#000; padding:0px;}

input[type="text"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, textarea:focus {
background:transparent}

form label{color: #006db7; font-size: 16px; display: block; font-weight: 900; margin-bottom:10px; text-transform:unset}

input:required{box-shadow:none}
.user-select-none{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
.modal .close_btn {
    position: absolute;
    top: -2%;
    right: -2%;
    background: #f5b71a;
    padding: 5px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal .close_btn i {
    position: relative;
    bottom: 5px;
    right: 6px;
    top: auto;
}
.modal .close_btn i.flaticon-close:before {
    font-size: 11px !important;
    color: #000;
}
/* project custom checkbox */
.custom-check-m {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  button:focus{outline: none;}
  
  /* Hide the browser's default checkbox */
  .custom-check-m input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  label.custom-check-m .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
  }
  /* When the checkbox is checked, add a blue background */
  .custom-check-m input:checked ~ .checkmark {
    background-color: #f5b71a;
    border-color: #f5b71a;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom-check-m input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom-check-m .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  i.flaticon-sugar:before {
    color: #fff !important;
}
 .add-on-name label.custom-check-m{ font-size: 16px; }
/*.add-on-name .custom-check-m .checkmark:after {left: 6px; top: 2px;}
.add-on-name .custom-check-m input:checked ~ .checkmark{border-color: #f5b71a;} */
/* -- Custom Radio -- */
.radio-label {
    display: flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /* font-size: 18px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .radio-content {
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
  }
  .radio-label:hover input ~ .radio-content {
    background-color: #fff;
  }
  .radio-label input:checked ~ .radio-content {
    background-color: #fff;
    border-color:#f5b71a;
  }
  .radio-content:after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f5b71a;
  }
  .radio-label input:checked ~ .radio-content:after {
    display: block;
  }
/*input:required:focus{background-color: rgba(223, 73, 73, 0.2); border: 1px solid #df4949; box-shadow:none} */

*{-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}

/*================================= 4 Global Styles (#glob) =================================*/
h2, h3, h5, h4, h6, p{
    font-family: 'Roboto', sans-serif !important;
}
.icon-margin-none:before{
    margin-left:0px !important;
}
hr{}
/* for main title  Spiced Love*/
h1{
    font-family: 'DM Sans', sans-serif !important;
    font-size:35px; 
    font-weight:700;
}
/* section title */
h2{
    font-size: 25px;
}
/* dishes title */
h3{
    font-size:20px;
    text-transform: capitalize;
}
h4{}
.customer-view-design h5{font-size:18px;}
/* Price title */
h6{
    font-size:18px;
}
.font-v-small{
    font-size:12px;
}
p{
    font-size:16px;
    color:#767676;
}
.white-space-nowrap{
    white-space: nowrap;
}
.font-small{
    font-size:15px;
    font-weight: 400;
}
.line-height-normal{
    line-height:normal;
}
.object-center{
    object-position:center !important;
}
a:focus, a:hover{outline:none; text-decoration:none;}
/* flaticon font size */
i:before, .img-flag, .lang-btn-header{  
    font-size: 18px !important;
    margin-left: 15px !important;
    color:#000;
}
.form-group{position: relative;}
input:placeholder-shown + .form-control-placeholder, 
 textarea:placeholder-shown + .form-control-placeholder {
    top: 0px;
     color: #868686;
     font-size: 15px;
     font-weight: 300;
     margin-bottom: 0;
}
 input + .form-control-placeholder, 
 .form-control:focus + .form-control-placeholder, 
 textarea + .form-control-placeholder, 
 textarea.form-control:focus + .form-control-placeholder {
    position: absolute;
     transition: all 0.2s linear;
     -webkit-transition: all 0.2s linear;
     -moz-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
     top:-17px;
     font-size: 13px;
     margin-left: 0;
     color: #f7b715;
	 font-weight: 300;
	 text-transform: capitalize;
}

textarea + .form-control-placeholder, 
textarea.form-control:focus + .form-control-placeholder {
    top: -22px;
 }
 .select2-selection--single{
    border-radius: 0;
 }
 #loading-opacity {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 1;
    background-color: #ffffffa6;
    z-index: 99999;
    text-align: center;
}

#loading-image,
.spinner {
    position: relative;
    top: 300px;
    left: 0px;
    font-size: 60px;
    z-index: 100;
    color: #f7b715;
}
#loading-image, .spinner:before {
    margin: 0px !important;
    font-size: 59px !important;
}
/*================================= Custom class for colors background =================================*/
.lang-btn-header{
    font-size: 16px !important;
}
.text-light-black{
    color:#040707 !important;
}
.text-light-grey{
    color:#767676;
}
.text-green{
    color:#00923f;
}
.text-yellow, .language-band a{
    color:#f5b71a !important;
}
.text-black{
    color:#000 !important;
}
.text-dark-grey{
    color:#888888;
}
.bg-yellow{
    background-color:#f5b71a;
}
.bg-black{
    background-color:#000;
}
.bg-green{
    background-color:#00923f;
}
.bg-grey{
    background-color:#e1e1e1;
}
.bg-light-white{
    background-color:#f7f7f7;
}
.border-dash{
    border-bottom-style: dashed;
}
.btn-radius{
    border-radius:30px;
}
.custom-border{
    border-top: 15px solid #f7f7f7;
}
.custom-border-bottom{
    border-bottom: 15px solid #f7f7f7;
}
.border-normal-radius{
    border-radius:3px;
}
.font-medium{
    font-weight: 500;
}
.font-light{
    font-weight: 300;
}
.font-regular, p.text-light-black{
    font-weight: 400;
}
.max-content{
    width: max-content;
}
/********************************* all page css ********************************/
#add-sub-user .modal-dialog{
    max-width: 800px;;
}
/*=============== dropdown css ===============*/
span.select2-selection.select2-selection--single {
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}
.select2-selection--single .select2-selection__rendered{
    padding-bottom: 4px;
    padding-left: 0;
    font-size: 15px;
    color: #888;
    font-weight: 300;
}
.select2-selection--single{
    padding-top: 0px;
    padding-bottom: 0;
}
.customer-view-design .select2-container{
    top: -2px !important;
}
.customer-view-design .select2-selection--single .select2-selection__rendered{
    font-size: 15px !important;
    padding-bottom: 0px;
}
.select2-selection--single .select2-selection__arrow:after{
    top: 35%;
    right: 0;
    font-size: 18px;
    color: #000;
}
.select2-results__option[aria-selected=true]{
    background-color: #f5b71a;
}
/*=============== dropdown css ===============*/
.not-available{ /* add this class if menu item is not available */
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
} /* add this class if menu item is not available */
.btn-black{
    width: fit-content;
    width: -moz-fit-content;
}
.btn-yellow {
    padding: 7px 20px;
    font-size: 16px;
    -webkit-box-shadow: -1px 1px 5px 2px rgba(20,14,20,0.11);
    -moz-box-shadow: -1px 1px 5px 2px rgba(20,14,20,0.11);
    box-shadow: -1px 1px 5px 2px rgba(20,14,20,0.11);
}
.btn-border{
    padding: 4px 18px;
}
.round-btn{
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 7px !important;
    border:0;
}
.icon-btn{
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.veg-icon{
    width: 25px;
    height: 25px;
    border-color:#00923f;
    position: relative;
    display: none; /* Monyoo CR phase 2 - Veg Nonveg need to remove */
}
.veg-icon .round{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.non-veg-icon{
    width: 25px;
    height: 25px;
    border-color:red;
    position: relative;
    display: none; /* Monyoo CR phase 2 - Veg Nonveg need to remove */
}
.non-veg-icon .round{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.header-logo{
    width: 30%;
}
/* project switch veg or nonveg */
.type-switch .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0;
  }
  .type-switch .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .type-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .type-switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -2px;
    bottom: 0;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: -1px 0px 5px 1px rgba(20, 14, 20, 0.11);
    -moz-box-shadow: -1px 0px 5px 1px rgba(20, 14, 20, 0.11);
    box-shadow: -1px 0px 5px 1px rgba(20, 14, 20, 0.11);
  }
  
  .type-switch input:checked + .slider {
    background-color: #00923f;
  }
  
  .type-switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  .type-switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .type-switch .slider.round {
    border-radius: 34px;
  }
  
  .type-switch .slider.round:before {
    border-radius: 50%;
  }
  .menu-itmes img {
    height: 200px;
    object-fit: cover;
}

.menu-icon i:before{
   margin:0px !important;
}
.veg-icon i:before {
    margin: 0px !important;
    position: relative;
    color: #00923f;
}
.non-veg-icon i:before {
    margin: 0px !important;
    position: relative;
    color: red;
}
img.video-icon {
    height: 35px !important;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 9;
}
/*=============== quantity design ===============*/
#customize-modal {
    overflow-y: auto;
}
form.quantity {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    /* position: absolute; */
    top: -3px;
    right: 10px;
    display: none;
}
.cart-quantity form.quantity{
    display: flex;
    justify-content: flex-end;
    margin: 0;
    position: absolute;
    top: -3px;
    /* right: 10px; */
    display: none;
    left: 50%;
    transform: translate(-50%, -0%);  
}
form.quantity .qa-content{
    border: 1px solid #e1e1e1;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    float: right;
}
form.quantity .value-button {
    max-width: 20px;
    padding: 2px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color:#00923f;
    cursor: pointer;
}
form.quantity input.number {
    width: -webkit-fill-available;
    max-width: 20px;
    margin: 0;
    text-align: center;
    /* font-size: 9px; */
    font-size: 10px;
    color: #fff;
    background-color: #00923f;
    border-color: #00923f;
    font-weight: 500;
    border: 0;
}
.add-quantity {
    height: 25px;
}
.menu-image-box.small-items img.small-video-icon {
    position: absolute;
    height: 25px;
    width: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

/*=============== quantity design ===============*/

/* menu listing */
.fancy-collapse-panel .panel-default > .panel-heading {
    padding: 0;
    
    }
    .fancy-collapse-panel .panel-heading a {
    display: inline-block;
    width: 100%;
    position: relative;
    text-decoration: none;
    }
    .fancy-collapse-panel .panel-heading a:after {
        position: absolute;
        right: 5px;
        font-size: 14px;
        font-weight: 400;
        top: 60%;
        line-height: 1;
        margin-top: -10px;
        font-family: Flaticon;
        content: "\f11b";
        color: #040707;
    }
    
    .fancy-collapse-panel .panel-heading a.collapsed:after {
        content: "\f11c";
    }
    .listing-menu .menu-image-box img{
        height: 149px;
        width: 155px;
        margin: 0 auto;
        object-fit: cover;
        /* object-position: right; */
    }
    .subtitle {
        margin: 0 0 2em 0;
      }
      .fancy {
        line-height: 0.5;
        text-align: center;
      }
      .fancy span {
        display: inline-block;
        position: relative;  
      }
      .fancy span:before,
      .fancy span:after {
        content: "";
        position: absolute;
        height: 5px;
        border-bottom: 1px solid #00923f;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
      }
      .fancy span:before {
        right: 100%;
        margin-right: 15px;
      }
      .fancy span:after {
        left: 100%;
        margin-left: 15px;
      }

/* ------------------------ JAY CSS START ------------------------ */
      
/* Language selector popup */

.modal-backdrop.show{
    opacity: 0.4; 
    position: fixed;
}
.lang-slider{
    max-width: 250px; 
    height: 40px;
}
.lang-round{
    border: 1px solid #e1e1e1; 
    border-radius: 20px;
}
.lang-content{
    position: relative; 
    display:flex;
}
.lang-content label{
    width: 50%; 
    border-radius:20px; 
    transition: 0.1s linear; 
    position: relative; 
    text-align: center; 
    font-size:16px; 
    color: #000; 
    margin: 0; 
    padding: 7px 15px;
}
.lang-content input[type="radio"]{
    display:none;
}
.lang-content input[type="radio"]:checked + label{
    background: #000; 
    color: #f5b71a;
}
.round-btn i:before{
    margin: 0 !important;
    font-size: 14px !important;
}

/* VIDEO POPUP */
.video-model{
    background-color: #000;
}
.video-model .modal-content{
    background-color: transparent !important; 
    border: none !important; 
    box-shadow: none !important;
}
.video-model .model-header{
    position: absolute; 
    width: 100%; 
    top: 0; 
    left: 0; 
    right: auto; 
    bottom: auto;
    z-index: 10;
}
.video-model .model-footer{
    position: absolute; 
    width: 100%; 
    bottom: 0%; 
    left:0;
}
.video-model i:before{
    color:#fff; 
    margin: 0 !important;
}
.custom-seekbar{
    cursor: pointer; 
    border-radius: 4px; 
    height: 5px; 
    margin-bottom: 10px; 
    outline: none; 
    background: #666; 
    overflow: hidden; 
    position: relative; 
    width: 75%;
}
.custom-seekbar span{
    background-color: #f5b71a; 
    position: absolute; top: 0; 
    left: 0; 
    height: 2px; 
    width: 0px;
}
.custom-seekbar span:after{
    content: ""; 
    height: 100%; 
    width: 5px; 
    background-color:#fff; 
    position: absolute; 
    border-radius: 50%; 
    right: 0; 
}
.custom-seekbar:hover, .custom-seekbar>span{height: 7px;}
.play-btn{
    border: transparent; 
    outline: transparent; 
    background: transparent;
}
.play-btn i:before{
    color:#fff; 
    font-family: Flaticon; 
    font-size: 20px !important; 
    font-style: normal; 
    margin: 0 !important;
}
.play-btn i.playicon:before{content: "\f10d";}
.play-btn i.pauseicon:before{content: "\f111";}
.video-model .embed-responsive{
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-model .embed-responsive img{top:50%; display: block;}
.video-icon-content{
    display: block;
    height: 25px;
    width: 25px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
/* .video-model .embed-responsive:hover img{display: block;} */
.video-model .modal-content{
    height: 100%;
}

/*Item cusomization page*/
.customize-title a:before{font-size: 10px; margin: 0;}
.customize-section form label{font-weight: 400; text-transform: none;}
.cutomize-item .menu-image-box img{top:0;}
.cutomize-item form.quantity{display: flex;}
.cutomize-item form.quantity .qa-content{margin: 0;}
.custom-footer{box-shadow: 0px 0 10px #e1e1e1;}
/*Custom Radio Button*/
.custom-radio .custom-control-input:checked~.custom-control-label::before{
    background-color: #fff; 
    border: 2px solid #f5b71a;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after{
    background-image: none; 
    width: 10px;
    background: #f5b71e;
    border-radius: 50%;
    top: 0.3rem !important;
    left: -1.55rem;
}
.custom-control-label::before{
    background-color: #fff;  
    border: 2px solid #eee;
}
.custom-radio .custom-control-label::after{
    height: 10px;
}
/*Custom Check Box*/
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-image: none;
    content:"\f10f";
    font-family: Flaticon;
    font-size: 10px;
    font-style: normal;
    left: -1.55rem;
    top:.25rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background-color: #f5b71a;
    border: 2px solid #f5b71a;
}
/*Payment*/
.payment-method{
    min-height: 50px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    box-shadow: rgb(136, 136, 136) 0px 0px 5px;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}
.payment-method img {
    width: 20%;
    margin: 0px auto;
}
.method-select-section input[type="radio"]:checked ~ label.payment-method {
    border-width: 2px;
    border-style: solid;
    border-color: rgb(245, 183, 25);
    border-image: initial;
    outline: none;
}
.right-colon:after {
    content: ":";
    position: absolute;
    right: 0;
    left: auto;
}
.order-placed-img img {
    width: 20%;
    height: auto;
    margin: 0 auto;
    padding: 5px;
}
.thanks-model .close i::before {
    font-size: 12px !important;
    margin: 0 5px !important;
}
.thanks-model .close {
    position: absolute;
    top: 5px;
    right: 10px;
}
.payment-title .payment-title-content::before{
    margin: 0 10px 0 0 !important;
    content: "\f11e"; 
    font-family: Flaticon; 
    font-size: 20px; 
    font-style: normal; 
}
.payment-title .payment-title-content::after{
    margin: 0 0 0 10px !important; 
    content: "\f11f"; 
    font-family: Flaticon; 
    font-size: 20px; 
    font-style: normal; 
    display: none;
}
/* .cart-check label.custom-check-m .checkmark {
    top: 0;
} */
/* ------------------------ JAY CSS END ------------------------ */
.search-band{
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 9;
    top:0px;
}
.search-band i:before{
    margin: 0px !important;
    color: #888888;
    font-size: 14px !important;
}
.search-band p {
    font-size: 10px;
    color: #f5b71a;
    letter-spacing: 0.6px;
    font-weight: 400;
}
.search-band input{
    font-size:13px;
    font-weight: 500;
    width:auto;
}
.search-band .name-remove{
    position: absolute;
    right:20px;
}
.search-result-header .name-remove{
    right:0px;
}
.search-result-header .search-icon{
    top: 0;
    left: -18px;
}
.search-band .name-remove i:before, .search-header .search-content .name-remove i:before, .search-result-header .name-remove i:before{
    color:#000;
    font-size:10px !important;
}
.menu-image-box img {
    position: relative;
    top: 6px;
}
.badge {
    right: -3px;
    top: -1px;
    max-width: 10px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
.cart-content i:before {
    font-size: 22px !important;
}
.repeate-list .modal-content{
    bottom: 0;
    border-radius: 0;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
.repeate-list .model-header {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
.modal-dialog.modal-dialog-centered.repeate-list{
    max-width: 100% !important;
    min-height: 100%;
}
.modal .repeate-list {
    background: rgba(0, 0, 0, 0.5);
}
.cart-header i:before {
    margin: 0px !important;
    font-size: 14px !important;
    position: relative;
    left: -2px;
}
.payment-title i:before {
    margin: 0px !important;
    font-size: 14px !important;
}
.cart.listing-menu img {
    height: 60px !important;
    width: 55px  !important;
    object-position: center  !important;
}
form.instaruction input::placeholder, form.custom-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: 888888;
    font-size:15px;
    font-weight:300;
  }
  
  form.instaruction input:-ms-input-placeholder,   form.custom-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: 888888;
    font-size:15px;
    font-weight:300;
  }
  
  form.instaruction input::-ms-input-placeholder,  form.custom-form input::-ms-input-placeholder { /* Microsoft Edge */
    color: 888888;
    font-size:15px;
    font-weight:300;
  }
  .other-detail input{
    width: 100%;
  }
  /* checkbox design */
  .custom-check .custom-control-label::before{
    width: 1.20rem;
    height: 1.20rem;
    top: 4px
  }
  .custom-check
  .custom-check label.custom-control-label {
    font-size: 17px;
}
.custom-check .custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    left: -1.55rem;
    top: 0.45rem;
}
.error {
    color: red;
    font-weight: 300;
    font-size: 14px;
    text-transform: inherit;
    display: block;
}
.custom-footer h2 {
    font-size: 20px;
}
.order-header i:before {
    margin: 0px !important;
}
.track.left-content:after{
    /* content: "";
    top: 0;
    position: absolute;
    right: 11px;
    height: 100%;
    width: 0 !important;
    border-right: 1px solid #e1e1e1;
    border: dashed 1px #e1e1e1;
    z-index: -1; */
    content: "";
    top: 0;
    right: 11px;
    position: absolute;
    width: 0 !important;
    z-index: -1;
    border-radius: 3px;
    color: white;
    height: inherit;
    padding: 10px;
    background-image: linear-gradient(to right, #ba68c800 60%, transparent 50%), linear-gradient(to right, #ba68c800 60%, transparent 60%), linear-gradient(to bottom, #e1e1e1 60%, transparent 60%), linear-gradient(to bottom, #ba68c800 60%, transparent 60%);
    background-position: right;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
}
.status {
    position: absolute;
    top: 0;
    right: 0px;
    background: #f5b71a;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
 .status i:before {
    margin: 0px !important;
    font-size: 12px !important;
    position: relative;
    left: 1px;
    top: 1px;
}
.status-complete{
    background-color:#e1e1e1 !important;
}
.status-rejected{
    background-color:#e54436 !important;
}
.status.status-complete i:before {
    color: #888;
}
.status.status-rejected i:before{
    color:#fff;
    left: 0px;
    top: -1px;
    font-size: 10px !important;
}
.repeate-list .veg-icon i:before{
    position: relative;
    top: 3px;
}
/*===================== image and text alignment same css =====================*/
.menu-result .veg-icon {
    top: -1px;
}
.menu-result .menu-image-box img{
    position: relative;
    top: 3px;
}
/*===================== image and text alignment same css =====================*/
.video-overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: ' ';
    border-radius: 6px;
    z-index: 9;
}
.menu-image-box.small-items .video-overlay:before{
    top: 4px;
}
.video-model i:before{
    margin-left:0px !important;
}
/********************************* arabic css start ********************************/
.text-right .header-top-content i:before, .text-right .cart-content i:before, .text-right .search-result-header .name-remove i:before{
    margin-left: 0px !important;
    margin-right: 15px !important;
}
.text-right .fancy-collapse-panel .panel-heading a:after{
    left: 5px;
    right: auto;
}
body.text-right .badge {
    right: 11px;
    left: auto;
}
.text-right .cart-content.after-search .badge {
    right: auto;
    left: 11px;
}
.text-right .custom-check .custom-control-label::before, .text-right .search-result-header .search-icon{
    right: 0;
    left:auto;
}
.text-right  .custom-check .custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    right: 3px;
}
.text-right .search-band .name-remove{
    left: 20px;
    right: auto;
}
.text-right .cart-quantity form.quantity{
    /* left: auto; */
    transform: translate(-0%, -0%);
    right: 0;
}
.text-right .custom-check-m{
    padding-right: 35px;
}
.text-right .status{
    left: 8%;
    right: auto;
}
.text-right .track.left-content:after{
    right: auto;
    left: 4%;
}
.text-right .customize-choice-content .radio-label{padding-left: 0; padding-right: 35px;}
.text-right .customize-choice-content .radio-label .radio-content{right:0; left:auto;}
.text-right .custom-check-m{padding-left: 0; padding-right: 35px;}
.text-right .custom-check-m .checkmark{right: 0; left: auto;}
.text-right .thanks-model .close{left:0; right:auto;}
.text-right .right-colon:after{left:0; right: auto;}
.text-right .cutomize-item form.quantity{left:10px; right:auto;}
.text-right .payment-title .payment-title-content::after{display: inline;}
.text-right .payment-title .payment-title-content::before{display: none;}
.text-right .video-control.d-flex{direction: ltr;}
.cart-quantity {
    position: relative;
    top: 7px;
}
.customer-view-design p, .customer-view-design span, .customer-view-design a, .a:hover, button, button:hover, .buy-now {
    font-size: 13px !important;
}
label.radio-label span, .add-on-selection label.custom-check-m span {
    font-size: 16px !important;
    color: #000;
    font-weight: 400;
}
/* Monyoo CR phase 2 - Restaurant details to keep as non mandatory - START */
/* Update for customer details section in add/edit property form */
.customer-details label.radio-label span {
    font-size: 15px !important;
    color: #040707 !important;
    font-weight: 300;
    text-transform: none;
}
/* Monyoo CR phase 2 - Restaurant details to keep as non mandatory - END */
.custom-footer h2 span {
    font-size: 20px !important;
}
.text-right .total-footer-section h2 {
    order: 1;
}
.switch-candy label {
    padding: 0 !important;
    font-size: 10px !important;
}
.switch-toggle.switch-candy, .switch-light.switch-candy > span{
    box-shadow: none !important;
}
.payment-method-content .form-check img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.payment-method-content .form-check{
    padding: 0;
    margin-bottom: 10px !important;
}
.payment-method-content .uniform-checker, .payment-method-content .uniform-checker input, .payment-method-content .uniform-checker span, .payment-method-content .uniform-choice, .payment-method-content .uniform-choice input, .payment-method-content .uniform-choice span {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border-color: #e1e1e1;
}
.payment-method-content .uniform-choice span:after {
    top: 0 !important;
    left: 0 !important;
    width: 50px;
    height: 50px;
    border-radius: 0;
    border-width: 1px;
    border-color: #f7b715;
}
.paydiv.online-payment-content.payment4 .col-3 {
    padding: 0;
    display: flex;
    justify-content: center;
}
#send-otp-form .otp{
    direction: ltr;
}
.upayments.badge {
    right: -3px;
    top: -1px;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
/* Monyoo CR phase 2 - Remove check box and change text - START */
.cart-check label.custom-check-m {
    padding-left: 0;
    cursor: default;
}
/* Monyoo CR phase 2 - Remove check box and change text - END */

/* Monyoo CR phase 2 - Horizontal scrolling for items on customer homepage - START */
.menu-items .owl-prev, .menu-items .owl-next { top: 33% !important; }
/* Monyoo CR phase 2 - Horizontal scrolling for items on customer homepage - END */

/********************************* arabic css end ********************************/

/********************************* Mobile Potrait #MP ********************************/
@media screen and (max-width: 480px) and (orientation: portrait) {

}

@media only screen and (min-width : 400px) and (max-width: 575px) {
    .status{
        right: 9%;
    }
    .text-right .status{
        left: 10%;
        right:auto
    }
    .track.left-content:after{
        right: 17%;
    }
    .text-right .track.left-content:after{
        left: 5%;
        right:auto;
    }
}
/********************************* arabic css end ********************************/
@media only screen and (min-width : 320px) and (max-width: 330px) {
     .status{
        right: -9px;
    }
    .track.left-content:after{
        right: 2px;
    }
    .text-right .status{
        left: 0;
        right: auto;
    }
    .text-right .track.left-content:after{
        right: auto;
        left: -5%;
    }
    .search-result .block-content {
        padding-top: 1px;
    }
    .search-result .veg-icon i:before{
        top: 1px;
    }
    .repeate-list .veg-icon i:before {
        position: relative;
        top: 7px;
    }
    .customer-view-design input:placeholder-shown + .form-control-placeholder{
        top: 0px !important;
    }
    .customer-view-design p, .customer-view-design span, .customer-view-design a, .a:hover, button, button:hover, .buy-now {
        font-size: 11px !important;
    }
    .menu-image-box img{
        top: 0px;
    }
    .track.left-content h5 {
        max-width: 80px;
    }
}
/********************************* safari iphone  ********************************/
@media only screen and (min-width : 300px) and (max-width: 320px) {
    .info-item .col-4.col-md-3{
        -ms-flex: 40% !important;
        flex: 40% !important;
        max-width: 40% !important;
    }
    .info-item .col-8.col-md-9{
        -ms-flex: 60% !important;
        flex: 60% !important;
        max-width: 60%;
    }
    .cutomize-item .menu-image-box img {
        top: 0px !important;
    }
    h3 {
        font-size: 11px !important;
    }
    h1{
        font-family: 'DM Sans', sans-serif !important;
        font-size:25px; 
        font-weight:700;
    }
    .customer-view-design h5{
        font-size:15px !important;
    }
    .custom-check .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
        left: -1.65rem;
        top: 4px;
    }
    .btn-yellow{
        padding: 5px 15px;
        font-size: 14px;
    }
    .customize-text {
        font-size: 9px !important;
    }
    /* section title */
    .customer-view-design h2{
        font-size:18px;
    }
    /* dishes title */
    .customer-view-design h3{
        font-size: 15px;
    }
    p{
        font-size: 14px;
    }
    .font-small{
        font-size: 13px;
        font-family: 'Roboto', sans-serif !important;
    }
    .veg-icon{
        width: 14px;
        height: 12px;
        top: 2px;
    }
    .veg-icon .round{
        width: 4px;
        height: 4px;
    }
    .menu-itmes img{
        height: 100px;
    }
    .menu-icon i:before{
        font-size: 8px !important;
        position: relative;
        top: -4px;
    }
    .icon-btn{
        width: 10px;
        height: 15px;
    }
    .btn-border {
        padding: 4px 15px;
        font-size: 10px;
    }
    .veg-icon i:before, .non-veg-icon i:before{
        font-size: 12px !important;
    }
    .listing-menu .menu-image-box img{
        height: 60px;
        width: 75px;
    }
    .veg-icon{
        top: -2px !important;
    }
    img.video-icon{
        height: 25px !important;
    }
    form.quantity .value-button{
        padding: 0px 8px;
    }
    form.quantity input#number{
        max-width: 16px;
    }
    form.quantity{
        top: 0;
    }
    .add-quantity {
        height: 20px;
    }
    .menu-image-box img {
        top: 3px;
    }
    .custom-check label.custom-control-label{
        font-size: 13px;
    }
    .custom-check .custom-control-label::before {
        width: 1.0rem;
        height: 1.0rem;
        top: 2px;
    }
    .footer.custom-footer h2 {
        font-size: 16px;
    }
    form label{
        font-size: 13px;
    }
    .custom-check-m{
        font-size: 12px;
    }
    label.custom-check-m .checkmark{
        height: 18px;
        width: 18px
    }
    .custom-check-m .checkmark:after{
        left: 6px;
        top: 2px;
    }
    .text-right .status{
        left: -3%;
    }
    .text-right .track.left-content:after{
        right: auto;
        left: -9%;
    }

}
/********************************* safari iphone  ********************************/
@media only screen and (min-width : 320px) and (max-width: 575px) {
    .cart-header h2 {
        font-size: 18px !important;
    }
    .summary-detail-form h5 {
        font-size: 15px;
    }
    h1{
        font-family: 'DM Sans', sans-serif !important;
        font-size:25px; 
        font-weight:700;
    }
    .fancy-collapse-panel .block-content {
        padding: 1px 0px;
    }
    .customer-track-order h5{
        font-size:15px !important;
    }
    h5{
        font-size:15px;
    }
    .custom-check .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
        left: -1.65rem;
        top: 4px;
    }
    .customer-view-design .btn-yellow{
        padding: 5px 20px;
    }
    .customer-view-design .customize-text {
        font-size: 9px !important;
    }
    .menu-item-detail .cart-customize{
        position: relative;
        left: 10px;
    }
    /* section title */
    .customer-view-design h2{
        font-size:18px;
    }
    /* dishes title */
    .customer-view-design h3{
        font-size: 15px;
    }
    .customer-view-design p{
        font-size: 14px;
    }
    .font-small{
        font-size: 13px;
        font-family: 'Roboto', sans-serif !important;
    }
    .veg-icon{
        width: 14px;
        height: 12px;
        top: 1px;
    }
    .veg-icon .round{
        width: 4px;
        height: 4px;
    }
    .menu-itmes img{
        height: 100px;
    }
    .menu-icon i:before{
        font-size: 8px !important;
        position: relative;
        top: -4px;
    }
    .icon-btn{
        width: 18px;
        height: 18px;
    }
    .btn-border {
        padding: 4px 15px;
        font-size: 10px;
    }
    .non-veg-icon i:before, .veg-icon i:before{
        font-size: 12px !important;
        font-weight: 700;
    }
    .listing-menu .menu-image-box img{
        height: 60px;
        width: 75px;
        margin: 0 auto;
    }
    .cutomize-item .menu-image-box img {
        top: 3px;
    }
    img.video-icon{
        height: 25px !important;
    }
    form.quantity .value-button{
        padding: 0px 8px;
    }
    form.quantity input#number{
        max-width: 16px;
    }
    form.quantity{
        top: 0;
    }
    .add-quantity {
        height: 20px;
    }
    .menu-image-box img {
        top: 0px;
    }
    .custom-check label.custom-control-label{
        font-size: 13px;
    }
    .custom-check .custom-control-label::before {
        width: 1.0rem;
        height: 1.0rem;
        top: 2px;
    }
    .footer.custom-footer h2 {
        font-size: 16px;
    }
    form label{
        font-size: 13px;
    }
    .customer-view-design .custom-check-m, .customer-view-design .custom-check-m span{
        font-size: 12px !important;
    }
    .customer-view-design label.custom-check-m .checkmark{
        height: 18px;
        width: 18px
    }
    .customer-view-design .custom-check-m .checkmark:after{
        left: 6px;
        top: 2px;
    }
    
    .payment-title .payment-title-content::before, .payment-title .payment-title-content::after{font-size: 14px;}
    .payment-title .payment-title-content::before{ margin: 0 5px 0 0 !important;}
    .payment-title .payment-title-content::after{ margin: 0 0 0  5px !important;}
    .payment-method p{width: 90%; margin: 0 auto;}
    .video-model i:before{font-size: 12px !important;}

    .track.left-content h5 {
        max-width: 80px;
    }
}

@media only screen and (min-width : 576px) and (max-width: 767px) {
    h1{
        font-family: 'DM Sans', sans-serif !important;
        font-size:25px; 
        font-weight:700;
    }
    /* section title */
    .customer-view-design h2{
        font-size:16px;
    }
    /* dishes title */
    .customer-view-design h3{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
    .menu-itmes img{
        height: 130px;
    }
    .menu-icon i:before{
        font-size: 10px !important;
        position: relative;
        top: -3px;
    }
    .icon-btn{
        width: 20px;
        height: 20px;
    }
    .menu-image-box img {
        top: 3px;
    }
 .status{
        right: 8%;
    }
    .track.left-content:after{
        right: 15%;

    }
    .text-right form.quantity{
        left: 10px;
        right:auto;
    }
    .repeate-list .veg-icon i:before{
        top: 0px;
    }
}

@media only screen and (min-width : 768px) and (max-width: 992px) {
    .header-logo{
        width: 20%;
    }
    .non-veg-icon, .veg-icon{
        width: 25px;
        height: 22px;
        top: 2px;
    }
    .veg-icon .round, .non-veg-icon .round{
        width: 8px;
        height: 8px;
    }
    /*language popup*/
    
    #langSelect.modal .switch-content {padding: 0.8rem;}
    img.video-icon{
        top: 50%;
    }
    .font-v-small {
        font-size: 16px;
    }
    .cart-header i:before{
        font-size: 20px !important;
    }
    .status{
        right: 8%;
    }
    .track.left-content:after{
        right: 15%;

    }
    body.text-right form.quantity{
        left: 10px;
        right:auto;
    }
  

}
@media only screen and (min-width : 992px) and (max-width: 1024px) {
    h3{
        font-size: 27px;
    }
    .header-logo{
        width: 20%;
    }
    img.video-icon{
        top: 29%;
    }
    .font-v-small {
        font-size: 16px;
    }
    .cart-header i:before{
        font-size: 20px !important;
    }
    .text-right form.quantity{
        left: 10px;
        right:auto;
    }
}
 .font-right{
    direction: ltr !important;
}