@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');



body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
	background: #fff;
	color: #595959;
}

a:hover {text-decoration: none;}

::selection {
    color: white;
    background: teal;
}

::-webkit-selection {
    color: white;
    background: teal;
}

::-moz-selection {
    color: white;
    background: teal;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    display: inline-block;
    padding: 5px 0px 0px 13px;
    font-size: 20px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

/*--------------------------
    Home-page start
--------------------------*/


/*-- top-header area start --*/

.main-header {
    background-image: url(img/mhb2.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.main-header.home {
    background-image: url(img/mhb.jpg)!important;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-header {
    border-bottom: 1px solid #a4a4a4;
    padding-bottom: 10px;
}

.top-header-left ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top-header-left ul li {
    display: inline-block;
    font-weight: 500;
    margin-right: 40px;
    color: #a4a4a4;
}

.top-header-left ul li:last-child {
    margin-right: 0px;
}

.top-header-left ul li span {
    display: inline-block;
    color: #c5641b;
    font-weight: 600;
    font-size: 30px;
    position: relative;
    top: 5px;
    margin-right: 10px;
}

.top-header-right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: 15px;
}

.top-header-right ul li {
    display: inline-block;
    color: #c5641b;
    font-size: 18px;
    font-weight: 500;
    margin-right: 40px;
}

.top-header-right ul li:last-child {
    margin-right: 0;
}

.top-header-right ul li a {
    display: inline-block;
    color: #a4a4a4;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.top-header-right ul li a:hover {
    color: #c5641b;
}

/*-- top-header area end --*/


/* -- header-area start -- */
.header-area {
    padding: 4px 0px;
}

.navbar {
    padding: 0px;
}

.navbar-brand img {
    width: 120px;
}

.main-menu-part ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu-part ul li {
    float: left;
}

.main-menu-part ul li a {
    display: block;
    padding: 0px 0px 0px 16px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    margin-right: 30px;
}

.main-menu-part ul li:last-child a {
    margin-right: 0;
}

.main-menu-part ul li a:hover {
    color: #c5641b;
}

.hamburger {
  padding: 10px 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: 0px!important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #c5641b;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* -- header-area end -- */


/*-- demand area start --*/



.demand-wrapper h3 span {
    color: #c5641b;
}

.demand-wrapper p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
}

.demand {
    padding-top: 150px;
    padding-bottom: 150px;
}

/*-- demand area end --*/


/*-- h-form area start --*/
.h-form-time {
    background-color: #E9E9E9;
    display: inline-block;
    border-radius: 5px;
    float: left;
}

.h-form-time label {
    display: inline-block;
    padding-right: 8px;
    margin-bottom: 0;
    padding-left: 20px;
}

.h-form-time select {
    display: inline-block;
    margin-bottom:0;
    background-color: transparent;
    border: none;
    outline: none;
    border-right:1px solid #999;
    padding: 10px 0px;
    padding-right: 40px;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image: url(img/lay.png);
    background-repeat: no-repeat;
    background-position: right 13px top 20px;
    color: #000;
    font-weight: 500;

}

.h-form-time input[type="date"] {
    border: none;
    background-color: transparent;
   position: relative;
}

#datearea {
    border-right: 1px solid transparent;
    padding: 0px 0px;
}

.App .h-form-wrapper h6 {
    display: none;
}
.search-form .h-form-wrapper h6 {
    display: none;
}

select.last-select {
    border-right: none;
}

.h-search {
    display: inline-block;
}

.h-search input {
    border:none;
    outline: none;
    background-color: #E9E9E9;
    width: 150px;
    padding: 11px 0;
    padding-left: 40px;
    border-radius: 5px;
    background-image: url(img/sea.png);
    background-repeat: no-repeat;
    background-position: top 14px left 12px;
    background-size: 18px;
    padding-right: 20px;
}

.h-search input::placeholder {
    color: #000;
    font-weight: 500;
}

.input-clock-group input {
    border:none;
    background-color: transparent;
    color: #000;
    font-weight: 500;
    width: 72px;
}

#timearea {
    width: 150px;
    text-align: left;
    border-right: 1px solid #999;
}

.popover {
    left: 419.617px!important;
}

.h-form-wrapper .searcbtn {
    display: inline-block;
    background-color: #C5641B;
    font-weight: bold;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 4px 35px;
    border-radius: 5px;
    cursor: pointer;
    padding-bottom: 10px!important;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    float:right;
}

.h-form-wrapper .searcbtn:hover {
    opacity: .7;
}

.h-form {
    padding-bottom: 60px;
}
.batable .h-form.bt-form-home {
    background: #fff!immportant;
}

.batable .ab.mb-3.input-group {
    display: none;
}

.batable button.searcbtn {
    display: none !important;
}

.batable .h-form.bt-form-home {
    background: #fff!important;
    padding-bottom: 25px;
     padding-top: 0px;
    height: 100px;
}
.batable .mb-3.input-group .form-control {
    padding-left: 11px !important;
}

.batable .input-group-prepend {
    display: none;
}
.batable .h-form-wrapper.text-center form ul li:nth-of-type(2), .batable .h-form-wrapper.text-center form ul li:nth-of-type(1), .batable .h-form-wrapper.text-center form ul li:nth-of-type(3) {
    width: 50%;
}
.batable .h-form-wrapper.text-center form ul {
    padding: 0px;
}
.batable .h-form-wrapper.text-center form ul li input {
    width: 100%!important;
    border: 1px solid;
}
.batable .h-form-wrapper.text-center form ul li .mb-3.input-group {
    box-shadow: 0px 0px 0px!important;
    border: 1px solid #ccc!important;
    border-radius: 0px;
}

.batable .h-form-wrapper.text-center form ul li input {
    border: 0px;
}
.batable .h-form-wrapper.text-center form ul li span.rc-time-picker.form-control {
    padding: 0px;
    border: 0px;
    border-radius: 0px !important;
}
.batable .h-form-wrapper.text-center form ul li span.rc-time-picker.form-control input.rc-time-picker-input {
    height: 36px;
    border-radius: 0px!important;
}
.batable select.form-control {
    border: 0px !important;
}
.batable .text-center {
    text-align: left !important;
}
/*-- h-form area end --*/


/*-- feature area start --*/

.feature {
    padding: 100px 0;
    background-image: url(img/fbg.png);
    background-repeat: no-repeat;
    background-size: 162px 380px;
    background-position: right 0px top -66%;
}

.feature-heading {
    margin-left: 120px;
    margin-bottom: 100px;
}

.feature-heading h2 {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 45px;
}

.feature-heading p {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
}

.fslide-one {
    position: relative;
}

.book-link {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
}

.book-link a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: #C5641B;
    font-weight: 600;
    transform: scale(0);
    padding: 0px 10px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.fslide-one:hover a {
    transform: scale(1);
}

.fslide-one h2 {
    color: #fff;
    /*margin-top: -50px;*/
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

#box-one img {
    box-shadow: inset 0px -51px 8px -5px rgba(0,0,0,0.75);
}

.feature-slider {
     margin-left: 120px;
}

.owl-nav .owl-prev {
    float: left;
    margin-right: 20px;
}

.owl-nav .owl-prev span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #999;
    border-radius: 50%;
    color: #999;
    padding: 0px 7px;
    font-size: 18px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    cursor: pointer;
}

.owl-nav .owl-prev span:hover {
    background-color: #c5641b;
    color: #fff;
    border: 2px solid #c5641b;
}

.owl-nav .owl-next span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #999;
    border-radius: 50%;
    color: #999;
    padding: 0px 9px;
    font-size: 18px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    cursor: pointer;
}

.owl-nav .owl-next span:hover {
    background-color: #c5641b;
    color: #fff;
    border: 2px solid #c5641b;
}

.owl-nav {
    position: relative;
    top: -50px;
    left: -120px;
    display: none;
}
/*-- feature area end --*/


/*-- why area start --*/

.why {
    background-image: url(img/wbg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: 24px;
}

.why-header {
    padding-top: 150px;
    padding-bottom: 70px;
}

.why-header h3 {
    font-size: 54px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.why-header h2 {
    font-size: 54px;
    font-weight: 600;
    color: #c5641b;
    text-transform: uppercase;
}

.money {
    background-color: #fff;
    text-align: right;
    color: #000;
    padding: 10px;
    padding-right: 20px;
    position: relative;
    left: 55px;
}

.money h6 {
    font-weight: 600;
}

.money p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.use {
    background-color: #E1BFA4;
    margin-top: 50px;
    text-align: right;
    color: #000;
    padding: 10px;
    padding-right: 20px;
}

.use h6 {
    font-weight: 600;
}

.use p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.reserve {
    background-color: #E1BFA4;
    color: #000;
    padding: 10px;
    padding-left: 20px;
    position: relative;
    left: -50px;
}

.reserve h6 {
    font-weight: 600;
}

.reserve p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.touch {
    background-color: #fff;
    color: #000;
    padding: 10px;
    padding-left: 20px;
    margin-top: 50px;
}

.touch h6 {
    font-weight: 600;
}

.touch p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.why-img img {
    display: block;
    width: 100%;
    margin-top: 40px;
}
/*-- why area end --*/

/*-- news area start --*/
.news {
    background-image: url(img/nw.png);
    background-repeat: no-repeat;
   background-size: cover;
   background-position: bottom;
}

.news-wrapper {
    padding: 120px 0;
    padding-bottom: 100px;
}

.news-wrapper h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 45px;
}

.news-wrapper p {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.news-wrapper a {
    display: inline-block;
    color: #fff;
    background-color: #C5641B;
    padding: 7px 70px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.news-wrapper a:hover {
    opacity: .7;
}

/*-- news area end --*/

/*-- for area start --*/

.for {
    background-image: url(img/b.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding-bottom: 150px;
    padding-top: 150px;
}

.for-heading h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 600;
}

.for-heading p {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.for-heading {
    margin-bottom: 80px;
}

.for-gellary-one-left img {
    display: block;
    width: 100%;
}

.for-one-cnt {
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}

.for-one-heading {
    float: left;
}

.for-one-heading h5 {
    color: #000;
}

.for-one-heading p {
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
}

.for-one-link {
    float: right;
}

.for-one-link a {
    display: inline-block;
    background-color: #C5641B;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 16px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.for-one-link a:hover {
    opacity: .7;
}

.for-gellary-one-right img{
    display: block;
    width: 100%;
    height: 300px;
}

.for-two-heading h5 {
    margin-bottom: 0;
}

.for-two-heading p {
    line-height: 1.1;
}

.for-gellary-two-left img {
    display: block;
    width: 100%;
}

.for-gellary-two {
    margin-top: 30px;
}


/*-- for area end --*/

/*-- client area start --*/

.client {
    padding: 80px 0;
}

.client-heading h2 {
    color: #000;
    font-weight: 600;
    margin-bottom: 60px;
    font-size: 45px;
}

.cone-para {
    background-color: #f9efe8;
    padding: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    box-shadow: 8px 8px 0px 3px rgba(234,224,217,1);
    margin-bottom: 40px;
    margin-right: 10px;
    margin-left: 10px;

}

.cone-para::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-color: #f9efe8;
    position: absolute;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 46%;
    transform: rotate(44deg);
    bottom: -11px;
    box-shadow: 8px 3px 0px 3px rgba(234,224,217,1);
}

.cone-para p {
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}

.cone-img img {
    display: block;
    width: 70px!important;
    height: 70px;
    margin: 0 auto;
}

.cone-img p {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 80px;
}

.client .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    border:2px solid #C5641B;
    background-color: #fff;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #C5641B;
}

/*-- client area end --*/

/*-- footer area start --*/

.footer {
    background-image: url(img/fobg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    padding-bottom: 30px;
}

.footer-one a img {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.footer-two h5 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-two {
    border-right: 1px solid #fff;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-two p {
    color: #fff;
}

.footer-two p:last-child {
    padding-bottom: 30px;
    margin-bottom: 0;
}

.footer-three h5 {
    margin-bottom: 10px;
}

.footer-three p:last-child {
    padding-bottom: 3px;
}

.footer-four {
    border-right: 0;
    padding-right: 0;
}


/*-- footer area end --*/


/*-- copy area start --*/

.copy-wrapper p {
    font-size: 16px;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
}

.copy-wrapper {
    padding: 15px 0;
}

/*-- copy area end --*/







/*--------------------------
    Home-page end
--------------------------*/













/*--------------------------
    book-a-table start
--------------------------*/

.book-header {
    padding: 30px 0;
    margin-bottom: 40px;
}

/*-- bt-gellary area start --*/


.book-table-main {
    background-color: #F4F4F4;
    padding-top: 30px;
}

.bt-form {
    padding-bottom: 40px;
}

.btg-one img {
    display: block;
    width: 100%;
    position: relative;
    border-right: 2px solid #fff;
}

.btg-one p img {
    display: inline-block;
    width: 30px;
    margin-top: -10px;
    margin-right: 10px;
    border: none;
}

.btg-one p {
    position: absolute;
    bottom: 10px;
    left: 40px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

.btg-two img {
    display: block;
    width: 100%;
    border-right: 2px solid #fff;
    height: 304px;
}

.btg-three img {
    display: block;
    width: 100%;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    height: 152px;
}

.btg-four img {
    border-right: 0;
    border-bottom: 2px solid #fff!important;
}

.btg-four img {
    border-bottom: 0;
}

.btg-five img {
    border-bottom: 0;
    border-right: 0;
}

.btg-six img {
    border-bottom: 0;
}

/*-- bt-gellary area end --*/


/*-- b-the area start --*/

.b-the-wrapper {
    background-color: #fff;
    padding: 20px 25px;
    padding-bottom: 30px;
}

.b-the-left h4 {
    color: #000;
    font-weight: 500;
    font-size: 30px;
    margin-top: 10px;
}

.b-the-left p {
    margin-bottom: 0;
    color: #8d8d8d;
}

.b-the-right h4 {
    display: inline-block;
    background-color: #84DD78;
    color: #fff;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
    padding: 0px 12px;
    border-radius: 6px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.b-the-right p {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
}

.b-the-right a {
    display: inline-block;
    background-color: #C5641B;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 8px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.b-the-right a:hover {
    opacity: .7;
}

.b-the {
    margin-bottom: 15px;
}

/*-- b-the area end --*/


/*-- b-menu aera start --*/

.b-menu {
    padding-bottom: 70px;
}

.b-menu-left {
    background-color: #fff;
    border-radius: 6px;
    padding-bottom: 20px;
}

.b-menu-left .tab_wrapper > ul li {
    text-transform: inherit;
    font-size: 20px;
    font-weight: 500;
    color: #515151;
    border: none;
    border-right: 2px solid #e5e5e5;
    padding-top: 13px;
    padding-bottom: 13px;
}

.b-menu-left .tab_wrapper > ul li:last-child {
    border-right: 0;
}

.b-menu-left .tab_wrapper > ul li.active::after{
    display: none;
}

.b-menu-left .tab_wrapper > ul li.active {
    color: #000;
    font-weight: bold;
}

.b-menu-left .tab_wrapper .content_wrapper {
    border: none;
}

.b-menu-left .tab_wrapper > ul {
    border-bottom :2px solid #e5e5e5;
}

.b-menu-left .tab_wrapper {
    margin: 0;
}

.booking p {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.form-booking label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #515151;
}

.form-booking input {
    display: block;
    width: 100%!important;
    padding: 6px 12px;
    color: #8b8b8b;
    outline: none;
    border: none;
    border: 1px solid #e2e2e2;
    background-image: url(img/arr.png);
    background-repeat: no-repeat;
    background-position: right 4px top 10px;
}

.form-booking select {
    display: block;
    width: 100%;
    padding: 6px 12px;
    color: #8b8b8b;
    outline: none;
    border: none;
    border: 1px solid #e2e2e2;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image: url(img/arr.png);
    background-repeat: no-repeat;
    background-position: right 4px top 10px;
}

.babu {
    left: 31%!important;
}

.form-booking {
    width: 100%!important;
}

.bguest p {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    margin-top: 40px;
}

.b-guest-one label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #515151;
}

.b-guest-one input {
    display: block;
    width: 100%!important;
    padding: 6px 12px;
    color: #8b8b8b;
    outline: none;
    border: none;
    border: 1px solid #e2e2e2;
    margin-bottom: 20px;
}

.b-guest-number label {
    display: block;
}

.b-guest-one input#b-code {
    display: none;
    width: 50px!important;
}

.b-guest-one input#b-number {
    display: inline-block;
    width: 100%!important;
    float: right;
}

.b-guest-link a {
    display: inline-block;
    background: #C5641B;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.b-guest-link a:hover {
    opacity: .7;
}

.b-page-one-img {
    float: left;
}

.b-page-one-img img {
    display: inline-block;
    width: 85px;
    height: 85px;
    margin-right: 10px;
}

.b-page-one-para {
    float: left;
}

.b-page-one-para h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.b-page-one-para p {
    margin-bottom: 0;
    font-size: 13px;
    color: #8d8d8d;
}

.b-page-one-rating {
    text-align: right;
    display: none;
}

.b-page-one-rating h5 {
    display: inline-block;
    background-color: #84DD78;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 0px 10px;
    padding-bottom: 5px;
    border-radius: 6px;
    margin-bottom: 5;
}

.b-page-one-rating  p {
    margin-bottom: 0;
    font-size: 13px;
    color: #8d8d8d;

}

.b-page-one {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 6px;
}

.b-page-one-wrapper {
    overflow: hidden;
    padding: 10px!important;
    /* padding-bottom: 20px!important;
    border-bottom: 1px solid #eaeaea */
}
.b-page-one-wrapper-address {
    overflow: hidden;
    padding: 10px!important;
    padding-bottom: 20px!important;
    border-bottom: 1px solid #eaeaea;
    padding-top: 7px !important;
}
.b-page-one-wrapper-address img {
    float: left;
    padding-right: 10px;
}
.b-page-link a {
    display: inline-block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #c5641b;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.b-page-link a:hover {
    opacity: .7;
}

.b-page-link a span {
    display: inline-block;
    margin-left: 20px;
}

.b-page-two {
    margin-bottom: 0;
}


/*-- b-menu aera end --*/



/*--------------------------
    book-a-table end
--------------------------*/














/*--------------------------
    restaruent page start
--------------------------*/


.rview-one {
    padding: 0px 25px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 40px;
    padding-bottom: 60px;
}

.rview-one h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.rview-one p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.res-contant {
    margin-top: -8px;
}

.review-two {
    padding: 20px 25px;
}

.tab-two {
    padding: 0!important;
}

.review-three {
    border-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

.r-menu-left {
    padding-bottom: 0;
}

.r-maps {
    padding: 30px;
    padding-bottom: 52px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.r-maps iframe {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

.r-maps h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px
}

.r-maps p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.r-maps-para {
    padding: 30px;
    padding-bottom: 93px;
    border-right: 1px solid #e5e5e5;
}

.r-maps-para h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.r-maps-para p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.r-more {
    padding: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 122px;
}

.r-more h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 14px;
}

.r-more ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.r-more ul li {
    margin-bottom: 5px;
}

.r-more ul li span{
    display: inline-block;
    color: #40AE48;
    font-size: 14px;
    margin-right: 10px;
}




/*--------------------------
    restaruent page end
--------------------------*/







/*--------------------------
    search page start
--------------------------*/



/*-- spagination start --*/

.spagi-right span#pnumnber {
    display: inline-block;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}

.spagi-right ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 5px;
}

.spagi-right ul li {
    display: inline-block;
}

.spagi-right ul li a {
    display: inline-block;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 18px;
    border-right: 1px solid #ece7e7;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.spagi-right ul li a:hover {
    color: #84DD78;
}

.spagi-right ul li:first-child a {
    color: #C5641B;
}

.spagi-right ul li:first-child a:hover {
    color: #84DD78;
}

.spagi-right ul li:last-child a {
    color: #C5641B;
    border-right: 0;
}

.spagi-right ul li:last-child a:hover {
    color: #84DD78;
}

.spagi {
    margin-top: 30px;
    padding-bottom: 60px;
}


/*-- spagination end --*/









/*--------------------------
    search page end
--------------------------*/

div#timearea label {
    background: #fff;
    padding: 2px 1px 0px 0px;
    text-align: center;
    width: 17%;
    float: left;
    border: 1px solid #ccc;
    border-radius: 5px 0px 0px 5px;
    border-right: 0px;
}
span.rc-time-picker.xxx {
    width: 83%;
}
div#timearea input {
    width: 82%;
    border-radius: 0px 5px 5px 0px;
}
.b-menu-left.r-menu-left {
	padding: 10px;
}
.b-menu-left.r-menu-left .nav.nav-tabs a {
	color: #000;
}
.b-menu-left.r-menu-left .tab-content {
	padding: 12px;
}
.b-menu-left.r-menu-left .tab-content .booking p {
	border-bottom: 1px solid #eee;
	padding: 12px;
	font-size: 15px;
}
.rc-time-picker {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
.rc-time-picker * {
  box-sizing: border-box;
}
.rc-time-picker-clear {
  position: absolute;
  right: 6px;
  cursor: pointer;
  overflow: hidden;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  top: 3px;
  margin: 0;
}
.rc-time-picker-clear-icon:after {
  content: "x";
  font-size: 12px;
  font-style: normal;
  color: #aaa;
  display: inline-block;
  line-height: 1;
  height: 20px;
  width: 20px;
  transition: color 0.3s ease;
}
.rc-time-picker-clear-icon:hover:after {
  color: #666;
}
.rc-time-picker-input {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 4px 7px;
  height: 28px;
  cursor: text;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.rc-time-picker-input[disabled] {
  color: #ccc;
  background: #f7f7f7;
  cursor: not-allowed;
}
.rc-time-picker-panel {
  z-index: 1070;
  width: 170px;
  position: absolute;
  box-sizing: border-box;
}
.rc-time-picker-panel * {
  box-sizing: border-box;
}
.rc-time-picker-panel-inner {
  display: inline-block;
  position: relative;
  outline: none;
  list-style: none;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
  line-height: 1.5;
}
.rc-time-picker-panel-narrow {
  max-width: 113px;
}
.rc-time-picker-panel-input {
  margin: 0;
  padding: 0;
  width: 100%;
  cursor: auto;
  line-height: 1.5;
  outline: 0;
  border: 1px solid transparent;
}
.rc-time-picker-panel-input-wrap {
  box-sizing: border-box;
  position: relative;
  padding: 6px;
  border-bottom: 1px solid #e9e9e9;
}
.rc-time-picker-panel-input-invalid {
  border-color: red;
}
.rc-time-picker-panel-select {
  float: left;
  font-size: 12px;
  border: 1px solid #e9e9e9;
  border-width: 0 1px;
  margin-left: -1px;
  box-sizing: border-box;
  width: 56px;
  max-height: 144px;
  overflow-y: auto;
  position: relative;
}
.rc-time-picker-panel-select-active {
  overflow-y: auto;
}
.rc-time-picker-panel-select:first-child {
  border-left: 0;
  margin-left: 0;
}
.rc-time-picker-panel-select:last-child {
  border-right: 0;
}
.rc-time-picker-panel-select ul {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}
.rc-time-picker-panel-select li {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  width: 100%;
  height: 24px;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.rc-time-picker-panel-select li:hover {
  background: #edfaff;
}
li.rc-time-picker-panel-select-option-selected {
  background: #f7f7f7;
  font-weight: bold;
}
li.rc-time-picker-panel-select-option-disabled {
  color: #ccc;
}
li.rc-time-picker-panel-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}
.demand-wrapper.text-center {
    background: rgba(256,256,256,0.7);
    max-width: 558px;
    margin: 0 auto;
    width: 100%;
    padding: 14px;
    border-radius: 5px;
}
.demand-wrapper h3 {
    color: #000;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 0;
}
.demand-wrapper p {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-style: normal;
}
.h-form.bt-form-home {
    background: #000000;
    padding-bottom: 25px;
    padding-top: 25px;
    height: 100px;
}
.alert-show {
  display: block!important;
}
.alert-hide {
  display: none!important;
}
.b-guest-link .StripeCheckout {
    overflow: hidden;
    display: inline-block;
    background: linear-gradient(rgb(40, 160, 229), rgb(1, 94, 148));
    border: 0px;
    padding: 1px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px;
    cursor: pointer;
    visibility: visible;
    user-select: none;
}

.b-guest-link .StripeCheckout span {
    background-image: linear-gradient(rgb(125, 197, 238), rgb(0, 140, 221) 85%, rgb(48, 162, 228));
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    position: relative;
    padding: 0px 12px;
    display: block;
    height: 30px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px;
    border-radius: 4px;
}
.Booking-confrmation {
    padding: 15px;
    text-align: center;
}
.Booking-confrmation h2 {
    margin-top: 17px;
    font-size: 43px;
}
.Booking-confrmation h3 {
    font-size: 21px;
    margin-top: 25px;
    font-style: italic;
    margin-bottom: 60px;
}
.row.no-gutters.rest-gallery {
    height: 305px;
    overflow: hidden!important;
}
.rest-gallery .btg-one img {
    display: block;
    position: relative;
    border-right: 2px solid #fff;
    height: 305px;
    width: 100%!important;
    object-fit: cover;
}
.autocomplete-dropdown-container {
  border-bottom: honeydew;
  border-left: honeydew;
  border-right: honeydew;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border-radius: 0 0 2px 2px;
}

.autocomplete-dropdown-container .suggestion-item {
  text-align: left;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.h-form..bt-form-home .h-search {
    width: 232px;
}
.h-form .h-search {
    width: 214px;
}
.h-search input {
    width: 100%!important;
}
.h-form.bt-form {
    height: 90px;
}
.Booking-loader {
    text-align: center;
    height: 270px;
}

.order-status {
    text-align: CENTER;
}

.order-status h2 {
    width: 600px;
    /* background: red; */
    margin: 0 auto;
    padding-top: 60px;
    margin-top: 0px;
    padding-bottom: 60px;
}

.order-status h2 span .approved-order {
    color: #00ff0a!important;
}

span.approved-order {
    color: #40a718;
    font-size: 38px;
}
span.reject-order {
    color: #dc1111;
}

.search-form .h-form.bt-form-home {
    background: #000000;
}

/*------------------------
contact page start
-------------------------*/

.main-contactform h4{
  text-align: center;
    padding-bottom: 32px;
    color: #5f5c5c;
}
.main-contactform p {
    font-size: 16px;
    padding-bottom: 32px;
}
.main-contactform label {
    font-weight: 500px;
    font-weight: 500;
    color: #5f5c5c;
}
.main-contactform .btn-primary {
  color: white;
  font-weight: 500;
  background: #e0a57a;
  border-color: #ce9062;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #dc9967;
}
.main-contactform .btn-primary:hover{
  color: white;
  font-weight: 500;
  background: #e0a57a;
  border-color: #ce9062;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #dc9967;
}
.main-contact {
    margin-bottom: 105px;
    margin-top: 20px;
}
.contactus-heading h4{
  text-align: center;
  padding-bottom: 32px;
  color: #5f5c5c;
}
.contactus-heading h5 {
    padding-top: 15px;
    text-align: center;
}
.mobile-no {
    margin-top: 20px;
}
.mobile-no p {
  text-align: center;
  font-weight: 500;
  color: #5f5c5c;

}
.mobileinfo {
    font-weight: 400;
    color: #ef9c5d;
}
.contact-social {
  margin-top: 90px;
  text-align: center;
}
.social-link ul{
  list-style-type: none;
      margin-top: 41px;
}
.social-link ul li{
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-right: 40px;
}
.social-link li i {
    margin-top: 15px;
}
a#controlled-tab-example-tab-overview {
    display: none;
}

/* a#controlled-tab-example-tab-reviews {
    display: none;
} */
span.restaurant-phone h6 {
    float: left;
    padding-right: 10px;
    font-size: 17px !important;
}


span.restaurant-address h6 {
    float: left;
    padding-right: 10px;
    font-size: 17px !important;
}
a.btn.menu-button {
    color: #fff;
    background-color: #c5641b;
    font-weight: 700;
}
.social-link ul li a{
  display: inline-block;
  color: #000;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
}
.social-link ul li a:hover {
    color: #000;
}
li.circle {
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 50%;
    display: table;
    margin: 0 auto;
    background-color: #E39940;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    position: relative;
    float: left;
    border: 1px solid #E39940;
    width: 50px;
    height: 50px;
}
/*------------------------
contact page start
-------------------------*/

/*------------------------
About page start
-------------------------*/
.about-story h3{
  margin-bottom: 3px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;

    color: #5e5e5e;
}

.story-reserve, .story-about, .story-comment{
  font-size: 12px;
    padding: 0px 0 10px 0;
    display: inline-block;
    color: #979797;
    margin-right: 20px;
  }

  .story-reserve a{
    color: #dc7b13;
  }

  .story-about a{
    color: #dc7b13;
  }

  .story-comment a{
    color: #dc7b13;
  }

  .story-reserve i {
    padding: 0 10px 0 0;
}

.story-about i {
  padding: 0 10px 0 0;
}
.story-comment i {
  padding: 0 10px 0 0;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #dc7b13;
    margin: 30px 0;

}
blockquote h3{
  font-size: 17.5px;
  color: #ccc !important;
  font-weight: 400 !important;
}

.about-solution h3{
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;

    color: #5e5e5e;
}
.about-develope h3{
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;

    color: #5e5e5e;
}
.about-growing h3{
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;

    color: #5e5e5e;
}
.story-line hr{
    border-top: 2px solid #ccc;
    margin-bottom: 120px;
    margin-top: 92px;
}
.about-mission {
    padding-left: 43px;
}
.about-mission hr {
    background-color: #dc7b13;
        margin-top: 0px;
}
.about-mission h3{
  font-size: 20px;
  color: #5e5e5e;
}
.contact-submit h1 {
  text-align: center;
  color: #28a745;
  font-weight: 600;
}

.contact-submit {
    max-width: 651px;
    width: 100%;
    border-radius: 5px;
    padding-top: 39px;
    padding-bottom: 43px;
    margin-top: 163px;
}
.contact-loader {
    text-align: center;
    height: 273px;
    margin-top: 120px
}
span.Header-loggedInEmail {
    display: none!important;
}
.Header-accountBar {
    display: none !important;
}
@media(max-width:500px){
  .top-header {
    display: none;
}
.row.bg-row {
    background-image: none !important;
}
.modal-content.sign-in-form .clearfix .signupbtn {
    padding: 9px 48px !important;
}
.row.no-gutters.rest-gallery {
    height: 200px;
    overflow: hidden!important;
}
.rest-gallery .btg-one img {
    display: block;
    position: relative;
    border-right: 2px solid #fff;
    height: 200px;
    width: 100%!important;
}
.collapse.show {
    display: block;
    background: #c5641b;
}
.collapse.show ul li {
    width: 100%;
    text-align: center;
    padding: 11px;
    border-bottom: 1px solid #b9acac;
}
.main-menu-part ul li a:hover {
    color: #ffffff!important;
}
.h-form-time {
    float: none!important;
    width: 100%!important;
}

.h-form.bt-form-home {
    height: auto!important;
}

div#datearea {
    padding: 10px!important;
}

div#timearea {
    width: 340px;
    max-width: 100%;
    padding: 7px!important;
    float: none;
}

label#time {}

div#timearea label {
    padding: 10px!important;
}

span.rc-time-picker.xxx input {
    padding: 10px!important;
    height: auto!important;
}

.h-form .h-search {
    width: 100%!important;
}
#datearea label {
	background: #fff;
	width: 46px;
	padding-top: 10px;
	height: 43px;
	padding-left: 15px;
	border-radius: 5px 0px 0px 6px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	vertical-align: middle;
}
#datearea input, #datearea select {
	border: 1px solid #ccc;
	padding-top: 7px;
	padding-bottom: 8px;
	width: 79%;
	vertical-align: middle;
	border-left: 0px;
	padding-left: 11px;
	border-radius: 0px 5px 5px 0px;
}
#timearea input {
	float: left;
	padding: 13px !important;
	width: 90% !important;
}
#timearea {
	border: 0px !important;
	margin-left: 14px;
}
#datearea {
	border: 0px;
}
.h-form.bt-form{
  height: auto!important;
}
#timearea .rc-time-picker-clear {
	right: 30px!important;
	width: 25px!important;
	height: 25px!important;
	top: 12px;
}
#timearea .rc-time-picker-clear i::after {
	font-size: 20px !important;
	width: 25px!important;
	height: 25px!important;
}
.react-datepicker__input-container input {
    width: 100%!important;
    /* padding: 10px; */
    border: none!important;
}

.react-datepicker-wrapper {
    width: 78%!important;
    background: #fff!important;
    border: 1px solid #cccccc!important;
    border-radius: 0px 5px 5px 0px!important;
    padding: 1px!important;
}
.h-form.bt-form ul, .h-form.bt-form-home ul {
    list-style: none;
    display: block!important;
    margin: 0px!important;
}
.h-form.bt-form ul, .h-form.bt-form-home ul {
	padding: 0 !important;
}
.h-form.bt-form ul .react-datepicker-wrapper, .h-form.bt-form-home ul .react-datepicker-wrapper {
	width: 86% !important;
}
.ab.mb-3.input-group div:nth-child(2) {
	width: 85%;
}
span.rc-time-picker.xxx {
    width: 100% !important;
}
#bookingform label {
  display: block;
  margin-top: 10px;
}
.rc-time-picker-input {
  width: 100% !important;
}
.b-guest-one.b-guest-number #b-number {
    width: 78% !important;
}
.react-datepicker__input-container {
    display: block!important;
}
.form-control:disabled, .form-control[readonly] {
    background: #fff!important;
}
}
.h-form.bt-form .h-search {
    width: 200px;
}
.h-form.bt-form ul, .h-form.bt-form-home ul {
    list-style: none;
    display: flex;
}
.react-datepicker-wrapper {
    float: left;
    width: 150px;
}
.h-form.bt-form ul li, .h-form.bt-form-home ul li {
    margin-left: 10px;
}

.h-form.bt-form ul li .mb-3.input-group, .h-form.bt-form-home ul li .mb-3.input-group {
    box-shadow: 1px 1px 2px #000;
    border-radius: 4px;
}
#bookingform .rc-time-picker-input {
    font-size: 15px;
    padding: 7px;
    height: auto;
}
.autocomplete-dropdown-container .suggestion-item {
  //max-width: 200px;
  padding: 5px!important;
}
.autocomplete-dropdown-container .suggestion-item--active {
  padding: 5px!important;
}
.autocomplete-dropdown-container {
    max-width: 200px!important;
    overflow: hidden!important;
    text-align: left!important;
}
@media(min-width:992px) and (max-width:1199px){
.h-form.bt-form-home {
  height: auto!important;
}
.h-form.bt-form-home ul {
  display: block!important;
  padding: 0px!important;
}
.h-form.bt-form-home ul li {
  width: 32% !important;
  text-align: center!important;
  float: left!important;
}
.mb-3.input-group > div:nth-child(1) {
	width: 8% !important;
}
.mb-3.input-group > div:nth-child(2) {
	width: 92% !important;
}
.mb-3.input-group > div:nth-child(2) input {
  border: 0px !important;
  border-radius: 0px !important;
}
.mb-3.input-group span input {
  border: 0px !important;
}
.searcbtn {
  margin: 0px !important;
  float: left !important;
  width: 100%!important;
}
.react-datepicker__input-container {
    width: 100%!important;
}
}
@media(min-width:767px) and (max-width:992px){
.h-form.bt-form-home {
  height: auto!important;
}
.react-datepicker__input-container {
    width: 100%!important;
}
.h-form.bt-form-home ul {
  display: block!important;
  padding: 0px!important;
}
.h-form.bt-form-home ul li {
  width: 48% !important;
  text-align: center!important;
  float: left!important;
}
.mb-3.input-group > div:nth-child(1) {
	width: 11% !important;
}
.mb-3.input-group > div:nth-child(2) {
	width: 89% !important;
}
.mb-3.input-group > div:nth-child(2) input {
  border: 0px !important;
  border-radius: 0px !important;
}
.mb-3.input-group span input {
  border: 0px !important;
}
.searcbtn {
  margin: 0px !important;
  float: left !important;
  width: 100%!important;
}
}
@media(min-width:500px) and (max-width:767px){
.h-form.bt-form-home {
  height: auto!important;
}
.row.bg-row {
    background-image: none !important;
}
.row.no-gutters.rest-gallery {
    height: 200px;
    overflow: hidden!important;
}
.rest-gallery .btg-one img {
    display: block;
    position: relative;
    border-right: 2px solid #fff;
    height: 200px;
    width: 100%!important;
}
.h-form.bt-form-home ul {
  display: block!important;
  padding: 0px!important;
}
.h-form.bt-form-home ul li {
  width: 48% !important;
  text-align: center!important;
  float: left!important;
}
.mb-3.input-group > div:nth-child(1) {
  width: 16% !important;
}
.mb-3.input-group > div:nth-child(2) {
  width: 84% !important;
}
.mb-3.input-group > div:nth-child(2) input {
  border: 0px !important;
  border-radius: 0px !important;
}
.mb-3.input-group span input {
  border: 0px !important;
}
.searcbtn {
  margin: 0px !important;
  float: left !important;
  width: 100%!important;
}
.react-datepicker__input-container {
    width: 100%!important;
}
}
.close-icon {
	border:1px solid transparent;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
  outline: 0;
  cursor: pointer;
}
.close-icon:after {
	content: "X";
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	z-index:1;
	right: 35px;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 2px;
	border-radius: 50%;
	text-align: center;
	color: white;
	font-weight: normal;
	font-size: 12px;
	box-shadow: 0 0 2px #E50F0F;
	cursor: pointer;
}
.close-icon::after {
	background: #ccc;
	color: #000;
	border-radius: 0px;
	box-shadow: 0px 0px 0px !important;
	font-size: 14px;
	right: 0px;
	top: ;
	top: 0px;
	padding: 10px;
	height: auto;
	width: auto;
	border-radius: 0px 5px 5px 0px;
}
.close-icon:hover::after {
	opacity: 0.8;
}
button.close-icon {
    margin: 0px;
    padding: 0px;
}
.top-header-left {
    display: none;
}
.col-md-4.contactus-heading .mobile-no, .col-md-4.contactus-heading h4, .col-md-4.contactus-heading h5 {
    display: none;
}
.emptyData{
  margin-bottom: 600px;
}
.col-md-6.restaurant-info {
    min-height: 700px;
}
.col-md-6.restaurant-info {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}
@media(max-width:1380px){
  .header-menu ul li {
    font-size: 12px;
}

.header-menu.col-md-10 {
    float: right;
}

ul.menu-link {
    float: right;
}
.col-md-6.restaurant-info {
    min-height: 700px;
    max-width: 80%;
    margin: 0 auto!important;
    flex: auto!important;
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}
}
.middle-404 {
    width: 100%;
    margin: 0 auto;
    max-width: 1284px;
    margin-top: -39px!important;
}
.middle-404 img {
    text-align: center;
    width: 100%;
}
.row .rest-loader {
    width: 200px;
    margin: 0 auto;
}
p.restdes {
    width: 100%;
    max-width: 203px;
}
h2.rest-home-name {
    background: #c5641b;
    padding: 10px;
}
.client.testimonials
{
  display: none;
}
.b-page-one-para {
    max-width: 200px;
}
/* Login page start */
.modal-content.sign-in-form .container {
  padding: 30px 80px 10px 80px;
}
.modal-content.sign-in-form h1 {
  text-align: center;
}
.modal-content.sign-in-form {
}
.modal-content.sign-in-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e2e2;
}
.modal-content.sign-in-form .form-control{
  height: 48px !important;
border-radius: 0px !important;
padding-top: 10px !important;
padding-bottom: 10px !important;
}
.modal-content.sign-in-form .email-field, .modal-content.sign-in-form .password-field {
  margin-bottom: 20px;
}
.modal-content.sign-in-form label {
  font-weight: 300;
}
.modal-content.sign-in-form .clearfix {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.modal-content.sign-in-form .clearfix .signupbtn {
padding: 9px 100px;
font-size: 20px;
border: 2px solid #c5641b;
background: #c5641b;
color: #fff;
border-radius: 13px;
font-weight: bold;
}
.modal-content.sign-in-form .clearfix .signupbtn:hover {
  background: none;
  color: #c5641b;
}
.modal-content.sign-in-form .Forgot-password {
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #000 !important;
font-family: sans-serif;
}
.modal-content.sign-in-form .create-account-btn {
  background: #e8e8e8;
  text-align: center;
  padding: 10px;
}
.modal-content.sign-in-form .create-account-btn p {
  margin: 0px;
}
.modal-content.sign-in-form .create-account-btn p a {
  color: #c5641b;
  text-transform: uppercase;
  font-weight: 600;
}
.row.bg-row {
  background-image: url('./img/bg.jpg');
  padding-top: 70px;
  padding-bottom: 70px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 5px;
  margin-bottom: 45px;
}
.modal-content.sign-in-form {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 0px 5px #cccc;
  border: 0px;
}

/* Login page end */
/* Register page start */
form.modal-content.sign-in-form h1 {
    color: #c5641b;
    font-family: auto;
    font-weight: bolder;
    /* font-size: 34px; */
}
p.already-account {
    text-align: center;
}

a.sign-in {
    color: #000 !important;
    text-decoration: underline;
}
/* Register page end */

.coupon-code {
    list-style: none;
    padding: 0px;
    margin-top: -25px;
    margin-bottom: 25px;
}
.coupon-code li{
  padding: 15px;
  background: #fff4ec;
  margin-bottom:10px;

}
.coupon-code p {
	font-size: 14px;
	margin-bottom: 0px;
	color: #000;
	font-weight: 600;
}
.coupon-code p b {
	color: #000;
}
.coupon-code a {
  border: 1px solid #c5641b;
  padding: 4px;
  display: block;
  text-align: center;
  background: #c5641b;
  color: #fff;
  border-radius: 5px;
  margin-top: 5px;
}
.coupon-code .buy-now-btn:hover {
  background: none;
  text-decoration: none;
  color: #c5641b;
}
.coupon-code .coupon-img{
	margin-top: 11px;
}

.load-more-coupon-box {
  box-shadow: 0px 0px 2px #ece;
}
.load-more-coupon-box .load-more-coupon {
	font-size: 14px;
	padding: 5px;
	color: #c5641b;
	text-align: center;
}
.coupn_area .form-group .form-check .form-check-label {
  /* background: #c56442; */
  padding: 10px 16px;
  width: 40%;
  border-radius: 4px;
  color:;
  font-size: 14px;
  color: #000;
  /* text-shadow: 2px 2px 2px #000; */
  border: 1px solid;
}
.coupn_area .form-group .form-check .form-check-input {
  margin-top: 24px;
}
@media(max-width:500px){
  ul.coupon-code {
    text-align: center;
}
}

/* register page start */
.signup-page {
    margin-top: 50px;
}
/* register page end */

button.org-btn-create.btn.btn-primary {
    /* text-align: center; */
    /* padding-left: 50%; */
    margin-left: 40%;
}

h4.login-error {
    color: red;
    text-align: center;
     padding-bottom: 20px;
}
h6.signup-error {
    color: red;
}


html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

section#Resgistration_page h2 {
    color: #000;
    font-weight: bold;
    font-size: 30px;
}
section#Resgistration_page .wlc_bg_col h2 {
    color: #fff;
}
section#Resgistration_page .wlc_heading {
    font-size: 25px;
    color: #fcdb80;
    margin-bottom: 0px;
}
section#Resgistration_page .row.row-eq-height {
    align-items: center;
	height: 100vh;
}
section#Resgistration_page{
	background-image:url(images/regbg.jpg);
	    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	height: 100vh;
}
.form_r-btn {
    background: #fecc21;
    font-size: 19px!important;
    display: block!important;
    width: 100%;
    padding: 11px!important;
    border-radius: 0px!important;
    margin-top: 15px;
}
.form_r-btn i, .form_L-btn i {
    margin-left: 20px;
}
section#Resgistration_page label {
    margin-bottom: 0px;
}
.form_L-btn {
    background: #fff;
    border-radius: 0px!important;
    padding: 10px!important;
    font-size: 19px!important;
    width: 200px;
    color: #000;
	margin-top: 15px;
}
.form_r-btn:hover, .form_L-btn:hover {
    color: #000;
    opacity: 0.8;
}
#Resgistration_page .already {
  display: none;
}
@media(max-width:574px){
  section#Resgistration_page {
    background: none!important;
}

section#Resgistration_page .wlc_bg_col h2 {
    color: #000!important;
}

section#Resgistration_page .wlc_heading {
    color: #000!important;
}
footer {
}

.footer-logo {
    text-align: center;
}

.footer-follow h5 {
    text-align: center;
}

.footer-follow ul {
    width: 115px;
    margin: 0 auto!important;
}

.footer-address {
    width: 168px;
    margin: 0 auto;
    margin-top: -33px;
}

.footer-nav {
    margin: 0 auto;
    width: 361px;
}

.footer-nav ul {
    margin: 0!important;
    padding: 0px!important;
}
section#Restaurant_banner_section {
    background: none!important;
    padding: 0px!important;
}
#Restaurant_banner_section .R_donate a.donate_btn {
    padding: 4px!important;
}
.col-lg-9.banner_right-side .row.bottom_row {
    float: left;
}

.col-lg-9.banner_right-side .row.bottom_row .col-lg-3 {
    width: 33%;
    float: left;
    height: 85px;
}

.col-lg-9.banner_right-side .row.bottom_row .col-lg-3.donatemob {
    display: none!important;
}
.col-lg-3.lastmob {border-right: none!important;}

.pprise h6 {
    color: #000!important;
    font-size: 18px!important;
}

.pprise p {
    color: #000!important;
    font-size: 13px!important;
}

.pamout span {
    color: #000!important;
}
.R_title {
    text-align: center;
    padding-left: 0px!important;
    padding-right: 0px!important;
    margin: 0px!important;
}
#Resgistration_page .col-md-6.text-center.wlc_bg_col {
    display: none;
}
#Resgistration_page .already {
  display: block;
}
#Resgistration_page .already {
    text-align: center!important;
    width: 100%;
    margin-top: 18px;
}
#Restaurents_details {
  margin-top: 0px!important;
}
.pizza1 {
    margin-top: 25px;
}

section#Restaurant_banner_section {
    margin-bottom: -20px!important;
}
.main-link.sticky-top.normal {
    left: 0!important;
}

.col-lg-3.col-md-4.menuhome {
    background: #ffc600;
    padding: 0px!important;
}

.col-lg-3.col-md-4.menuhome ul {
    margin: 0px!important;
}

.col-lg-3.col-md-4.menuhome .main-link.sticky-top.normal {
    margin-bottom: 0px!important;
}
.col-lg-3.col-md-4.menuhome .main-link.sticky-top.top {
    padding: 0px!Important;
}
section#Resgistration_page {
    margin-top: 20px;
}

#showmobile .menuhome, #showmobile .menulists {
  display: none;
}
#showmobile .mobilecart {
  display: block;
}
#hidemobile .menuhome, #hidemobile .menulists {
  display: block;
}
.cart_details #hidebtn {
    display: none;
}
.cart-mobile-view-button.text-center a {
    background: #000!important;
    color: #fff!important;
    bottom: 15px!important;
    border-radius: 6px;
}
.footer-address span {
    font-size: 14px!important;
}
.col-md-6.col-lg-6.mobleft {
    float: left;
    width: 49%;
}

.col-md-6.col-lg-3.mobright {
    float: left;
    width: 50%;
    margin-top: 55px;
}
.col-md-6.col-lg-6.mobleft {
    float: left;
    width: 49%;
}

.col-md-6.col-lg-3.mobright {
    float: left;
    width: 50%;
    margin-top: 55px;
}

.offerslist {}

.offerslist ul {
    display: grid!important;
    width: 100%;
    margin-top: 38px!important;
    margin-bottom: -30px!important;
    text-align: left;
    max-width: 100%!important;
}

.offerslist li {
    display: block;
    margin-left: 19px!important;
}
}
div#Restaurents_details h6 {font-weight: 600;}

div#Restaurents_details .main-link.sticky-top a {
    font-weight: 600;
}
.pamout.show_button span {
    font-weight: 600!important;
}

#Restaurant_banner_section .row.bottom_row b {
    line-height: 1!important;
}
.pamout span {
    color: #000!important;
}
.col-lg-12.claimnow a.btn {
    background: #000;
    color: #fff;
}
.count.button_box .addbutton {
    background: #000!important;
    color: #fff!important;
}
.count {
    background: #000!important;
}
.offerslist {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.offerslist li img {width: 26px;margin-left: 10px;}

.offerslist li {
    /* width: 200px; */
    margin: 0 auto;
    background: #000;
    color: #fff;
    margin-top: 15px;
    padding: 8px 15px 8px 15px;
    list-style:none;
}

.offerslist ul {
    display: flex;
    max-width: 525px;
    margin: 0 auto;
    width: 100%;
}


.offerslist li span {
    float: left;
    line-height: 1;
}
span.line2 img {
    margin-top: 3px;
    cursor: pointer;
}
.main1.profile {
    padding-top: 0px!Important;
}
.offerslist ul {
    margin-top: 22px!important;
}
div#modal4 .modal-content .modal-body {
    text-align: center;
}
div#modal4 .modal-content .modal-body h5 {border-bottom: 1px solid #ccc;padding-bottom: 8px;}
div#modal4 .modal-content .modal-body ul {
    list-style: none;
}
div#modal4 .modal-content .modal-body .codecontent {
    border-bottom: 1px solid #ccc;
    padding: 8px;
}
div#modal4 .modal-content .modal-body {
    font-size: 18px;
    padding: 0;
}
div#modal4 .modal-content .modal-body ul.couponinfo li {
    border-bottom: 1px solid #ccc;
    width: auto;
    display: inline-block;
    padding: 7px;
}
div#modal4 .modal-content .modal-body ul.couponinfo {
    margin-top: 23px;
}
div#modal4 .modal-content .modal-body span.cpcode {
    border: 2px dotted #ffc600;
    padding: 5px 10px;
    display: inline-block;
    margin-left: 9px;
    font-weight: 800;
}
div#modal4 {
    margin-top: 149px;
}
div#modal4  button.close-butn.btn.btn-secondary {
    background-color: #000 !important;
    border-color: #000 !important;
    text-align: center;
    margin: 0 auto;
    border-radius: 0px!important;
}
ul.couponinfo {
    margin-left: 0px!important;
    padding: 0px!important;
}
button.search-btn.hideit {
    display: none!important;
}
a.search-btn.hideit {
    display: none;
}
.banner-txt a.search-btn {
    background: #000;
    color: #fff!important;
    padding: 17px 25px!important;
    border-width: 0;
    font-weight: bold;
    font-size: 24px;
    float: left;
}
.retaurent-img {
    min-height: 190px;
}
#Restaurents_details {
  margin-top: 0px!important;
}
@media(min-width:500px){
  .col-lg-12.imagebox .pizza-photo {
    float: left;
    height: 135px;
    width: 190px;
    /*border: 1px solid #ccc;*/
    margin-right: 11px;
}

.col-lg-12.imagebox {
    /*border: 1px solid #ccc;*/
    margin-top: 10px;
    padding: 12px;
    padding-bottom: 0px;
}

.col-lg-12.imagebox .pizza-photo img {
    width: 100%;
    height: auto;
}

.col-lg-12.imagebox .pamout span {
    padding: 0px!important;
}
}
span.checkload span.loadernew img {
    width: 24px;
    margin-right: -40px;
}
.retaurent-name {
    overflow: hidden;
}
.modal-footer button.add-butn.btn.btn-success {
    color: #000!important;
}
.cart_details .img-spinner {
    display: none;
}

div#loading-cart .img-spinner {
    display: block!important;
    width: 80px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    margin: 0 auto;
    text-align: center;
    left: 96px;
}


div#loading-cart {bottom: 0;background-color: rgb(97 94 85 / 52%);z-index: 999999; */opacity: 0.5;pointer-events: none;}
div#loading-cart .corn {
    opacity: 0.4;
}

div#loading-cart .cart_listing {
    opacity: 0.4;
}

div#loading-cart .cart_checkout {opacity: 0.4;}
.checkout-main div#loading-cart .img-spinner {
    left: 150px!important;
}

div#loading-cart .row.checkout-cart-banner {
    opacity: 0.4;
}

div#loading-cart .row.main-checkout-row {
    opacity: 0.4;
}

div#loading-cart .row.Apply-Coupon {
    opacity: 0.4;
}

div#loading-cart .row.Bill-Details {
    opacity: 0.4;
}
.checkout-main-left-sidebar .img-spinner {
    display: none;
}
.col-md-4.orderdetails h2 {
    text-align: center;
}

h2.ordersuccess {
    border-bottom: 1px solid #000;
    margin-bottom: 21px;
}

.col-md-4.orderdetails {
    background: #dad9d9;
    padding: 10px;
}
@media(max-width:500px){

  .col-lg-3 .R_donate {
    padding-top: 2px;
    width: 244px;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
}
.row.bottom_row.profile {
    top: 73px;
}
.row.bottom_row.profile .col-lg-3 {
    width: 100%!important;
    padding: 0!important;
    height: 60px!important;
}

.row.bottom_row.profile {
    height: 190px;
}

.main1.profile {
    padding-top: 71px!important;
}
a.search-btn.show-it {
    font-size: 13px!important;
    padding: 6px!important;
    padding-top: 18px!important;
}
.filter .btn {
    float: right;
    font-size: 18px;
    font-weight: bold;
    background: #fecc21!important;
}

.filter {
    /* background: red; */
    height: 42px;
    border: 1px solid #dedede;
}
.row.checkout-main {
    margin-top: -27px!important;
}

.Apply-Coupon-input button.btn.btn-secondary {
    width: 65px!important;
}
.Delivery-box {
    margin-top: 38px;
}
}
#invoiceholder .rolls{
  border-bottom: 1px solid #eeeeee;
  padding-top :20px;
  padding-bottom:20px;
    padding-left: 30px;
  padding-right: 30px;
}
#invoiceholder .roll-left{
  text-align: left;
}
#invoiceholder .roll-center{
text-align: center;
}
#invoiceholder .roll-right{
text-align: right;
}
#invoiceholder .fa-angle-down{
  font-size: 16px;
  padding-right: 3px;
}

#invoiceholder .vl {
  border-right: 2px solid #eeeeee;
}
#invoiceholder .vx{
  text-align: left;
  padding-left: 10%!important;
}
#invoiceholder .address{
  background-color: #F1F3F4;
}
#invoiceholder .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
  height: 20%;
  padding-bottom: 30px;
}
/*img{
  height:100px;
  width: 100px;
}
*/#invoiceholder .align-item{
  text-align: left;
  padding-left: 42%!important;
}
#invoiceholder h1{
  font-size: 1.5em;
  color: #444;
}
#invoiceholder #message{
  border-bottom: 1px solid #eeeeee;
  padding-top :20px;
   padding-bottom:20px;
}
#invoiceholder #message h3{
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
}
#invoiceholder #message .row{
    padding-left: 30px;
  padding-right: 30px;
}
#invoiceholder .order-serial{
  text-align: left;
}
#invoiceholder .order-placed{
  text-align: right;
}
#invoiceholder h2{font-size: .9em;}
#invoiceholder h3{
  font-size: 1.2em;
  font-weight: 300;
  line-height: 2em;
}
#invoiceholder p{
  font-size: .75em;
  color: #666;
  line-height: 1.2em;
  font-weight: 600;
}
#invoiceholder a {
    text-decoration: none;
    color: #00a63f;
}

#invoiceholder{
  width:100%;
  height: 100%;
  padding: 50px 0;
  background-image: url("/images/Background.png");
}
#invoice{
  position: relative;
  margin: 0 auto;
  width: 750px;
  background: #FFF;
}
#invoice-top{
  background-color:  #ffcc00;
  font-size: 24px;
  padding: 30px 30px 10px 30px;
}
#invoice-top p {
   color: black;
}

[id*='invoice-']{
  padding: 20px;
}

#modal1 {
  max-width: 600px;
}
#modal1 .modal-body {
}
#modal1 .modal-body h4 {
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  padding-top: 2px;
  padding-bottom: 10px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding-top: 9px;
}
#modal1 .modal-body > .rowcontent {
  display: block;
  width: 100%;
}
#modal1 .modal-body .modal-required {
  background: #000;
  display: inline-block;
  padding: 2px 12px 2px 34px;
  margin-left: -23px;
  border-radius: 0px 12px 0px 0px;
  color: #ffc600;
}
#modal1 .modal-body .col-md-6 code {
  font-size: 16px !important;
  color: #222 !important;
  letter-spacing: 0.5px;
}
#modal1 .modal-body .col-md-6 code input:checked ~ code {
  height: 14px;
  border: 1px solid #000 !important;
  color: red !important;
  background: red;
}
#modal1 .modal-footer {
  display: block;
}
#modal1 .total-butn.btn.btn-success {
  margin: 0;
  color:#000!important;
}
#modal1 .close-butn.btn.btn-secondary {
  float: right;
  margin-left: 20px;
}
#modal1 .add-butn.btn.btn-success {
  float: right;
  order: 2;
  color:#000;
}
#modal1 .modal-footer button {
  font-size: 16px;
  padding: 6px 16px;
  box-shadow: 2px 3px 7px #ccc;
}
#modal1 .rowcontent {
  height: 554px;
  overflow-y: scroll;
  scrollbar-color: #222 #5D5D5D;
  scrollbar-width: thin;
  margin-right: 10px;
  margin-top: 15px;
  overflow-x: hidden;
}
#modal1 .rowcontent::-webkit-scrollbar-track {
    border-radius: 3px;
    padding: 2px 0;
    background-color: #222;
}
#modal1 .rowcontent::-webkit-scrollbar {
    width: 4px;
}
#modal1 .rowcontent::-webkit-scrollbar-thumb {
    border-radius: 3px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #5D5D5D;
}


#invoiceholder .effect2
{
  position: relative;
}

@media screen and (max-width: 767px) {
    #invoiceholder h1 {
        font-size: .9em;
    }
    #invoice {
        width: 100%;
    }
    #message {
        margin-bottom: 20px;
    }
    [id*='invoice-'] {
        padding: 20px 10px;
    }
}
.pprise {
    padding-top: 0px!important;
}

.pprise p {
    font-size: 14px;
}
.row.checkout-main {
    margin-top: 0px!important;
}
@media(max-width:500px){
  .offerslist li {
    width: 282px!important;
    font-size: 14px;
    padding: 9px!important;
    margin-left: 0px!important;
}
}
div#invoice-top h3 {
    font-size: 28px!important;
}

#invoiceholder #message h3 {
    font-size: 25px;
    font-weight: 900;
}

div#invoiceholder .row h6 strong {
    font-size: 18px;
}
p.modal-price {
    color: #000;
}

.rowhead.row {
    display: flex;
}

.rowhead.row .col-md-3 .modal-price {margin-top: -9px;}

.rowhead.row {
    border-bottom: 1px solid #e9ecef;
    width: 103%;
}
div#disablescroll {
    height: auto!important;
}

div#disablescroll .cooking-instruction.row {width: 90%;padding: 10px;}

div#disablescroll .cooking-instruction.row .col-md-12 {
    margin-left: 5px;
}
span.addon-content.white {
    color: #fff!important;
}
button.add-butn.btn.btn-success.loading {
    width: 174px;
}
button.add-butn.btn.btn-success.loading .checkload {
    float: left;
    margin-left: 10px;
}
.back-to-menu.text-center a {
    color: #fff!important;
}
div#disablescroll {
    overflow-y: revert!important;
}
div#disablescroll .show-grid.row {
    margin: 0 auto;
}
.show-grid.row {
    padding-left: 20px!important;
}
#noexternalmenu .tab-wrapper .tab-button:nth-child(2) {
    display: none;
}
.outletshop .R_donate.booktable.internal {
    display: none;
}
.main1.profile.externalbooking .tab-button:nth-child(3) {
    display: none;
}
.activeshop .R_donate.booktable.external {
    display: none;
}
a.signup-btn {
    color: #fff!important;
    cursor: pointer;
}
.retaurent-name {
  cursor: pointer;
}
.retaurent-img {
  cursor: pointer;
}
.dt-donate2 {
	display:none;
}
@media(max-width:500px){
  .row.bottom_row.profile {
    position: relative!important;
    width: 100%!important;
    max-width: 100%!important;
    clear: both;
    float: right;
}

.main1.profile {
    width: 100%!important;
    max-width: 100%!important;
    float: left;
}

.row.bottom_row.profile {
    margin: 0 auto;
    top: 20px!important;
}
.row.top_r-row.hoursrow {
    height: 140px;
}
.pizza1 {
    padding-top: 70px!important;
}
}
.notlogged {
    text-align: center;
    margin: auto;
    top: 50%;
    position: fixed;
    align-items: normal;
    vertical-align: middle;
    left: 50%;
}
.offerdetails {
    bottom: -25px;
    position: absolute;
    background: #fecc21;
    width: 100%;
    text-align: center;
}

section#banner {
    background-image: url(/images/home-bg.jpg)!important;
    background-size: 100% 100%!important;
}
section#banner {
    min-height: 650px;
}

header {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    align-items: center;
    align-self: center;
}

.banner-content {
    width: 100%;
    padding-top: 160px!important;
    color: #fff;
    display: flex;
    position: relative!important;
}
.dinereservebanner .banner-txt h2 {
    font-size: 97px;
    line-height: 1;
    margin-top: 50px;
}
.dinereservebanner .find-food .find-icon {
    background: #e3731f;
}
.dinereservebanner button.search-btn {
    background: #e3731f!important;
}
.dinereservebanner .banner-txt p {
    color:#e3731f!important;
}

.login-btns a {
    background: none!important;
    border: 1px solid #e3731f!important;
    color: #fff!important;
    font-size: 15px;
    padding: 5px 15px 5px 15px!important;
}

.login-btns svg {
    display: none!important;
}

.login-btns a:hover {background: #fff!important;color: #000!important;text-decoration: none!important;border-color: #fff!important;}

.col-4.s-restaurants .card {
    background-image: url(/images/service1.png);
    margin: 10px;
    background-size: 100% auto;
    background-position: bottom center;
    border-radius: 10px;
}

.col-4.s-cafes .card {
    background-image: url(/images/service2.png);
    margin: 10px;
    background-size: 100% auto;
    background-position: bottom center;
    border-radius: 10px;
}

.col-4.s-pubs .card {
    background-image: url(/images/service3.png);
    background-size: 100% auto;
    background-position: bottom center;
    margin: 10px;
    border-radius: 10px;
}

.row.row-cols-1.row-cols-md-2.g-3.something-row .col-4 .card {
    min-height: 200px;
    text-align: center;
}

.container.something {
    margin-top: 50px;
    margin-bottom: 50px;
}

.row.row-cols-1.row-cols-md-2.g-3.something-row .col-4 .card h5.card-title {
    position: absolute;
    margin: 0 auto;
    bottom: 30px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.row.row-cols-1.row-cols-md-2.g-3.something-row .col-4 .card
 p.card-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    color: #f77d21;
}

span.rest-close a {
    background: #e3731f;
    color: #fff;
    padding: 10px;
}

span.rest-close a:hover {
    text-decoration: none;
}

footer {
    background-color: #000;
    color: #fff;
}
footer a {
    color: #fff!important;
}
footer .footer-follow ul li a img {
    width: 28px;
    border-radius: 5px;
    margin-right: 11px;
}
footer .footer-follow ul li a {
    letter-spacing: 1px;
    font-weight: 100!important;
}
footer .footer-address img {
    margin-right: 20px;
    margin-left: 15px;
}
.footer-nav {
    background: #000;
    color: #fff;
}
footer  .footer-logo {
    margin-top: 20px;
}
section#cities {
    background: transparent!important;
}
/*
========================
Header area start
========================
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300i,400,400i,500,500i,700,700i,900,900i&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #000;
}


a:hover {
    text-decoration: none;
}
::selection {
    color: white;
    background: #ff3c00;
}

::-webkit-selection {
    color: white;
    background: #ff3c00;
}

::-moz-selection {
    color: white;
    background: #ff3c00;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    display: inline-block;
    padding: 5px 0px 0px 13px;
    font-size: 20px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.scrolltotop:hover {
    background: #ff3c00;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

.carousel-caption h4 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.carousel-indicators {
  z-index: 1 !important;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    max-width: 576px;
    margin: auto;
    background: #fff;
    padding: 30px;
    color: #000;
    border-radius: 5px;
}
.autocomplete-container{
    position: absolute;
    background:#fff;
    border-radius:10px;
    border: 2px solid #ffc600;
    padding:10px;
    left: 30px;
    color:#000;
    right: 30px;
    margin-top: 8px;
    z-index: 9999 !important;
}
.autocomplete-container .suggestion-item {
    padding:10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

  .autocomplete-container .suggestion-item--active {
    padding:10px;
    background: #ffc600;
}

.carousel-caption form {
    border: 1px solid #ddd;
}

.carousel-caption input[type="text"] {
    width: 65%;
    border: none;
    background: #fff;
    padding: 8px 8px;
}

.carousel-caption input[type="submit"] {
    width: 30%;
    border: none;
    float: right;
    background: #ff3c00;
    padding: 8px 8px;
    cursor: pointer;
    color: #fff;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px;
    border-radius: 50%;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    background-color: #FFF;
    cursor: pointer;
}
.carousel-indicators.active , .carousel-indicators li:hover{
  background-color: #ff3c00 !important;
}

.carousel-indicators .active {
    background-color: #ff3c00 !important;
}
.carousel-control-next, .carousel-control-prev {
    display: none;
}
.header-area {
    padding: 10px 0;
    position: absolute;
    z-index: 99999999999;
    width: 100%;
}

.header-left img {
    /* width: 235px; */
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
}

.header-left img:hover {
    opacity: 0.8;
}
.header-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: right;
}

.header-right ul li {
    float: left;
}

.login {
  background: #fff;
  color: #000;
  padding: 7px 18px;
  display: inline-block;
  border-radius: 5px;
  font-size: 20px;
  padding-bottom: 10px;
  /* vertical-align: middle; */
  border: none;
}

.signup {
  background: #ff3c00;
color: #fff;
padding: 7px 18px;
display: inline-block;
border-radius: 5px;
margin-left: 10px;
font-size: 20px;
padding-bottom: 10px;
border: none
}
.signup:hover{
    color: #fff !important;
}

.fade.modal.show {
    background: rgba(256,256,256,0.8);
}
.login .modal-content {
    position: relative;
    padding: 1px 30px 10px 30px;
    text-align: center;
    background: #e9ecef;
    border-radius: 0px;
    border: none;
}
.login .modal-footer {
    border-top: none !important;
}
.login .modal-header {
    border-bottom: none !important;
}

.login .form-text {
    font-size: 15px;
    color: #000;
    text-align: left;
}
.login .close {
    color: #000 !important;
    opacity: unset !important;
}
.login-form-button .btn-success {
    color: #fff !important;
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
}
.login_icon img {
    /* width: 150px; */
    padding-top: 20px;
    padding-bottom: 20px;
}
div#modal3 .modal-footer button.close-butn {
  background-color: #000 !important;
  border-color: #000 !important;
  border-radius: 0px;

}
.login .form-check {
    text-align: left;
}
.login .form-check-label {
    color: #000 !important;
    font-size: 16px;

}
.login .form-control {
    margin-top: 1.25rem;
}
.login .form-check-input {
    margin-top: 12px !important;

}
p.modal-required {
    margin-bottom: 0px !important;
    /* margin-top: 15px; */
    color: red;
}
.login .login_icon {
    color: #fff;
    /* font-size: 60px; */
    background: #fff!important;
    opacity: 1!important;
}
.login .modal-dialog {
    margin-top: 165px !important;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #f5f5f5;
}

button.close.btn.btn-primary:hover {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #f5f5f5;
}
button.headertwo_login:hover {
    border-color: whitesmoke;
}
button.headertwo_signup:hover {
    border-color: whitesmoke;
}
.register .modal-dialog {
    margin-top: 165px !important;
}

.search-dishes {
    margin-top: 100px;
    margin-bottom: 40px;
}

.header-right a {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.header-right a:hover {
      color: #000;
}
.hungry-heading{
    color: #ff3c00;
    font-weight: bold;
}
.Hungary-form {
    border: 1px solid #a6a6a6;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    margin-top: 50px;
  }
  .Hungary-form .search-bar-container {
    width: 75%;
    display: inline-block;
  }
  .Hungary-form input[type="submit"] {
    padding: 15px;
    width: 25%;
    border-radius: 0px 10px 10px 0px;
  }

.Hungary-form .search-input-container .clear-button {
    background: #ff3c00;
    padding: 15px;
    float: right;
    border-radius: 10px 0px 0px 10px;
    margin-top: -10px;
    color: #fff;
    border-color: #ff3c00;
}
  .search-input-container {
    padding: 10px;
  }
  .search-input-container .search-input {
    width: 73% !important;
  }
  .search-input-container .Locate-button {
    background: none;
    border: 0px;
    color: #fff;
  }
  .footer-subscribe input[type="submit"] {
	border-radius: 0px 10px 10px 0px;
}
.footer-subscribe{
    border: 1px solid #a6a6a6;
    padding: 5px;
    border-radius: 10px;
}
.carousel-caption.d-none.d-md-block p {
    font-weight: 600 ;
  }

.services-area {
    background-image: url(/img/bg-grey1.png);
    display: none;
}

.services-bg {
     padding: 30px 0;

    background: url(/img/bg-grey1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}
.service-item {
    text-align: center;
    /* margin: 80px 0; */
    margin: 40px 0;
    padding: 10px 30px 10px 30px;
    box-sizing: border-box;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.service-item .service-item-inner {
   /* padding: 50px 15px 50px 15px; */
   padding: 15px 15px 15px 15px;
}
.service-item .service-item-inner:hover {
    background: #fff;
}
.__react_component_tooltip.type-error {
    background-color: #fff !important;
    z-index: 999 !important;
}
span.maintenance-content {
    color: #ff3c00 !important;
}
.service-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.service-details h5 {
    font-weight: 16px;
    font-weight: bold;
}

.services-bg {
    background: url(/img/bg-white.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

.apps-area {
    background: url(/img/bg-past2.png);
    background-position: center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

.apps-bg {
    background: url(/img/bg-past.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
     padding: 60px 0;
}


.apps-content h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 42px;
    color: #FFF;
    line-height: 40px;
}
.apps-content P{
    color: #fff;
    font-size: 21px;
    margin-top: 25px;
}
/* .apps-content {
    padding-top: 20px;
    padding-bottom: 20px;
} */
.app-links {
    width: 100%;
    margin-top: 60px;
}

.google-link {
    width: 50%;
    float: left;
}

.google-link img {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.google-link img:hover,
.iphone-link img:hover {
    opacity: 0.8;
}

.iphone-link {
    width: 48%;
    margin-left: 2%;
    float: right;
}

.n-restaurants-area {
    padding: 60px 0;
    background: #fff;
}

.p-restaurants-area h4,
.n-restaurants-area h4 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
}
.n-restaurants-area p {
    text-align: center;
    margin-top: 5px;
    color: #b9b6b6;
    font-size: 17px;
    /* font-weight: 500; */
}
.view-allres {
    font-size: 16px;
    margin-top: 20px;
    text-align: right;
    display: block;
    font-weight: bold;
    color: #ff3c00;
}

.res-list {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.res-details {
    padding: 20px 10px;
    text-align: left;
    overflow: hidden;
    padding-bottom: 10px;
}
.res-details h5 {
    margin: 0;
}
.res-details h5 a {
    margin: 0;
    font-size: 18px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    font-weight: 600;
    color: #080808;
}

.res-details h5 a:hover {
    opacity: 0.7;
}

.res-details p {
    margin-bottom: 20px;
    font-size: 14px;
  color: #a5a5a5;
}
/* .price .delivery-time {
    display: none;
} */
.res-details .price {
    width: 50%;
    float: left;
    /* display: none; */
}
.ratings-part {
    /* display: none; */
}
.col-6.restaurant-rating {
    display: none;
}
.res-details .rating {
    width: 50%;
    float: left;
    text-align: right;
    display: none;
}

.res-details span {
  font-size: 16px;
display: block;
color:#242424;
font-weight: 600;
}

.res-details span i {
    color: #fac917;
    font-size: 14px;
}

.p-restaurants-area {
    background: #ebebeb;
    padding: 60px 0;
    display: none;
}

.p-restaurants-area .res-list {
    background: #fff;
}

.res-list img {
    display: block;
    margin: auto;
    width: 253px;
    height: 165px;
}

.subscribe {
    padding: 40px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.contact h4,
.subscribe h4 {
    font-weight: bold;
    margin-bottom: 20px;
}

.subscribe p {
    margin-bottom: 20px;
    padding-right: 40px;
}

.subscribe form {
    border: 1px solid #ddd;
}

.subscribe form input[type="email"] {
    padding: 12px;
    width: 79%;
    border: none;
    float: left;
    border-radius: 5px;
    outline: none;
}
.address-form {
    padding-top: 25px;
}
.bd-example #carouselExampleCaptions ol.carousel-indicators {
    z-index: 1px !important;
}
.subscribe form input[type="submit"] {
    padding: 14px 5px;
    width: 21%;
    outline: none;
    font-size: 14px;
    border: none;
    background: #ff3c00;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    color: #fff;
    font-weight: 600;
}

.subscribe form input[type="submit"]:hover {
    opacity: 0.8;
}

.contact a {
    text-decoration: none;
    color: #444;
}

.copyright-area {
    background: #ebebeb;
    padding: 15px 0;
}

.copyright p {
    margin: 0;
    text-align: center;
}
.contact {
    padding-left: 170px;
}
.copyright-area .social {
    text-align: right;
}

.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
    padding-right: 78px;
}

.social ul li {
    float: left;
}

.social ul li i {
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    margin-left: 10px;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
    transition: .2s all ease;
    -webkit-transition: .2s all ease;
    -moz-transition: .2s all ease;
}

.social ul li .fa-twitter {
    background: #55ACEE;
}

.social ul li .fa-facebook-f {
    background: #45619D;
}

.social ul li .fa-google-plus-g {
    background: #D73D32;
}

.social ul li .fa-instagram {
    background: #2A5B83;
}

.social ul li .fa-linkedin-in {
    background: #0077B5;
}

.social ul li i:hover {
   opacity: 0.8;
}

.footer-logo img {
    transition: .2s all ease;
    -webkit-transition: .2s all ease;
    -moz-transition: .2s all ease;
    width: 235px;
}
.row.cart-below.sticky-top {
    top: 318px;
}
.corn.sticky-top {
    top: 44px;
}
.footer-logo img:hover {
    opacity: 0.8;
}
.Thanku-contacting {
    padding-top: 190px;
    padding-bottom: 190px;
    text-align: center;
}

.sticky-top.cart.Right-side-cart-view {
    padding-right: 0px !important;
    top: 80px !important;
}
.main-link.sticky-top {
    top: 85px !important;
}
/*-- theader area start --*/
.therader {
    padding: 8px 0;
}

.theader-wrapper p {
    margin-bottom: 0;
}

.theader-wrapper p span {
    color: #9e9e9e;
}

.header-area2 {
    padding: 0px 0px;
    background: #F5F5F5;
}

.navbar2 {
    padding: 0px;
}

.navbar-brand2 img {
    width: 150px;
}


.main-menu-part2 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu-part2 ul li {
    float: left;
}

.main-menu-part2 ul li a {
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
}

.main-menu-part2 ul li:nth-last-of-type(2) a {
    padding: 0px;
    /*background: #E9E9E9;*/
    /* margin-left: 40px; */
    border-radius: 6px;
    border:none;
    /*margin-top: 16px;*/
    margin-right: 5px;
}

.main-menu-part2 ul li:nth-last-of-type(1) a {
    padding: 0px;
    /*background:#E9E9E9;*/
    border-radius: 6px;
    border:none;
    /*margin-top: 16px;*/
    /*background-color: #ff3c00;*/
}

.main-menu-part2 ul li a:hover {
    opacity: .7;
}

.hamburger {
  padding: 10px 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: 0px!important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* -- header-area end -- */

/*-- banar area start --*/
.banar {
    /* background-image: url(/img/banner1-black.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0;
    background-color: #171a29;
    margin-top: 53px;
}

.bn-left {
    overflow: hidden;
}

.bnl-one {
    float: left;
    margin-right: 8px;
}

.bnl-one img {
    display: block;
}

.bnl-two {
    margin-top: 8px;
}

.bnl-two p {
    color: #d0d0d0;
    margin-bottom: 25px;
    font-size: 13px;
    margin-top: 15px;
}

.bnl-two span {
    color: #5b5b5b;
}

.bnr-one {
    overflow: hidden;
    background: rgba(255, 255, 255,.8);
    display: flex;
}
.bnl-one img {
    height: 191px;
}

.bnro-left {
    width: 50%;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    padding: 25px 0;
}

.bnro-left span {
    display: inline-block;
    color: #FAC917;
}
.bnl-one img {
    /* box-shadow: 5px 5px 4px #f9f9f9; */
    margin: 13px;
    border-radius: 5px;
}
.bnl-two h2 {
    /* text-shadow: 6px 4px 4px #8a6d64; */
    font-style: italic;
    line-height: 32px;
}
.col-lg-6.hidden-bn-right .bn-right {
    /* box-shadow: 5px 5px 5px #696969; */
    background:#fff;
    border-radius: 5px;
    overflow: hidden;
}
.col-lg-6.hidden-bn-right .bn-right p {
    color: #000;
    font-style: italic;
}
.row.checkout-main {
    margin-top: 65px;
}
.bnro-left span.reating {
    color: #222;
    font-weight: 500;
    margin-left: 5px;
    text-align: left;
    width: 38%;
}

.bnro-left p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 4px;
}

.bnro-right {
    width: 50%;
    border-bottom: 1px solid #d0d0d0;
    padding: 25px 0;
}

.bnro-right p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

.bnro-right h6 {
    margin-bottom: 0;
}

.bnr-two {
    overflow: hidden;
    display: flex;
    background: rgba(255, 255, 255,.8);
}

.bnrt-left {
    width: 50%;
    border-right: 1px solid #d0d0d0;
    padding-top: 10px;
    padding: 25px 0px;
}

.bnrt-right {
    width: 50%;
    padding: 20px 0px;
}

.bnrt-left h6 {
    margin-bottom: 0;
}

.bnrt-left p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

.bnrt-right h6 {
    margin-bottom: 0;
}

.bnrt-right p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

/*-- main1 area start --*/

.main1 {
    padding-top: 55px;
    padding-bottom: 55px;
}

.main-link ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-link ul li {
    border-top: 1px solid #eee;
}

.main-link ul li:last-child {
    border-bottom: 1px solid #eee;
}

.main-link ul li a {
    display: inline-block;
    color: #222;
    padding: 10px 20px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    border-left: 4px solid transparent;

}

.main-link ul li.active-item a {
    font-weight: 600;
    border-left: 4px solid #ff3c00;
}

.main-link ul li a:hover {
    border-left: 4px solid #ff3c00;
    font-weight: 600;
}

.pizza1 h2 {
    padding-bottom: 8px;
    display: inline-block;
    padding-right: 30px;
    border-bottom: 3px solid #ff3c00;
    margin-bottom: 50px;
    font-size: 22px;
}

.pizza-img img {
    display: block;
    width: 100%;
}

.pizza-photo {
    height: 215px;
    overflow: hidden;
}

.pprise {
    padding: 15px 0;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

.pprise h6 {
    margin-bottom: 0;
}

.pprise p {
    font-size: 12px;
    margin-bottom: 0;
    color: #5a5a5a;
}

.pamout {
    background-color: #EBEBEB;
    overflow: hidden;
}

.pamout span {
    display: inline-block;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    padding-left: 20px;
    padding-top: 10px;
}

.pamout a {
    display: inline-block;
    float: right;
    color: #000;
    background-color: #ff3c00;
    padding: 8px 35px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
button.addbutton {
    display: inline-block;
    float: right;
    color: #fff;
    font-weight: 600;
    background-color: #ff3c00;
    padding: 8px 35px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.pamout a:hover {
    opacity: .7;
}

.count {
    float: right;
    background: #ff3c00;
    padding: 5px;
}

.count input {
    width: 30px;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
}

.count button {
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}
.handle-counter {
    color: #fff;
    font-weight: 600;
}
.counter-minus {
    font-size: 20px!important;
}

.ppara {
    margin-bottom: 40px;
    border: 2px solid #eee;
}

#last-pizza {
    height: 140px;
}

#last-pizza img {
    margin-top: 25px;
}

.pizza1 {
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
}

.pizza2 {
    margin-top: 40px;
}

.pprise3 {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 0;
}

#last-prize3 {
    border-bottom: 0;
}

#countted {
    padding: 0;
}

#pamut-number span {
    padding-top: 5px;
    padding-left: 10px;
}

.cart h2 {
    margin-bottom: 14px;
}

.corn {
    /* border: 2px solid #eee;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden; */
}
select#tip-select {
    padding: 0px;
    height: 50%;
}
.sub.sticky-top{
  top: 564px;
}
.Empty-cart.sticky-top {
    top: 58px;
}
.cart-below-form.sticky-top{
  top : 470px;
}
p.cart-addon {
    font-size: 11px;
    font-weight: 700 !important;
    line-height: 10px;
}
select#tip-select-checkout {
    padding: 0px;
    width: 100%;
    height: 50%;
}
.row.cart-below {
    padding-left: 20px;
}
.cart-below-form .form-group {
    margin-bottom: 0px !important;
}
.row.cart-below-form {
    padding-left: 30px;
    max-width: 100%;
}
.local_delivery.form-group {
    margin-bottom: 20px !important;
}
.cart-below-form .form-check-label {
    font-weight: 500 !important;
}
.delivery-form {
    width: 100%;
}
.delivery-form .form-label {
    display: block;
}
.delivery-form .form-check {
    width: 71%;
    float: left;
}
.delivery-form small.text-muted.form-text {
    display: inline-block;
    float: right;
    font-weight: 500;
}
.cart-below-form .form-label {
    font-size: 18px !important;
    font-weight: 500 !important;
}
.corn-contant p {
    margin-bottom: 0;
    font-weight: 600;
    margin-bottom: 6px;
}

.corn {
    border: 2px solid #eee;
    height: 228px;
    overflow: auto;
    margin-bottom: 20px
}

.corn-contant {
    padding: 15px;
}

.subtotal h6 {
    float: left;
    font-weight: 600;
    margin-bottom: 4px;
}

.subtotal span {
    font-weight: 600;
    float: right;
}

.subtotal p {
    overflow: hidden;
    clear: both;
    margin-bottom: 0;
    color: #5a5a5a;
}

.subtotal {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 10px 81px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.checkout .deliverymsg {
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 0;
    border: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
div#modal3 {
    margin-top: 149px;
}

.checkout a:hover {
    opacity: .7;
}


#footer {
    border-top: 1px solid #ddd;
}



.search-area form {
    width: 100%;
    display: block;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 2px 5px 15px rgba(0,0,0,.2);
    border-radius: 8px;
    overflow: hidden;
}

.search-area form input {
    width: 75%;
    display: inline-block;
    padding: 10px 15px;
    background: transparent;
    border: none;
    float: left;
}

.search-area form input[type="submit"] {
    width: 20%;
    display: inline-block;
    padding: 10px 15px;
    background: #ff3c00;
    border: none;
    color: #fff;
    float: right;
    border-radius: 0px 8px 8px 0px;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
    cursor: pointer;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.search-area form input[type="submit"]:hover {
    opacity: 0.8;
}

img.restaurant-image {
    width: 100%;
    display: block;
    margin: auto;
    height: 169px;
    border: 1px solid #ddd;
    border-bottom: none;
}

.restaurant-content {
    padding: 15px;
}
.restaurant-content p {
    height: 22px;
    overflow: hidden;
}

.coupon-part {
    padding: 5px 15px;
    background: #E8E8E8;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.coupon-part img {
    width: 15px;
    display: inline-block;
    margin-right: 5px;
}

.coupon-part a {
    font-size: 13px;
    color: #080808;
}

.restaurant-bdr {
 border: 1px solid #ddd;
}

.restaurant-item:hover .coupon-part {
    background: #ff3c00;
}

.restaurant-content h4 {
    margin: 0;
}

.restaurant-content h4 a {
    color: #080808;
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.restaurant-content h4 a:hover {
    opacity: 0.7;
}

.restaurant-content p {
    margin: 0;
    color: #5A5A5A;
    font-size: 15px;
    text-transform: capitalize;
}

/* .ratings-part {
    padding: 10px 0 0;
} */

.ratings-part span {
    display: block;
    color: #5A5A5A;
    font-size: 15px;
}

.rating-last {
    text-align: right;
    margin-top: -10px;
    float: right;
    display: block;
    width: 100%;
}
.dv-star-rating.dv-star-rating-non-editable {
    float: right;
}
.bnro-left .dv-star-rating.dv-star-rating-non-editable {
    display: inherit !important;
    overflow: auto;
    /* border: 2px solid; */
    text-align: left;
    float: left;
    width: 60%;
    padding: 0px;
}
.bnro-left .dv-star-rating.dv-star-rating-non-editable label {
    margin-bottom: 0px;
}
 .dv-star-rating.dv-star-rating-non-editable i {
    color: #ff3c00;
}
.ratings-part img {
    display: block;
    float: right;
    max-width: 100%!important;
}

.res-part-top h2 {
    display: inline-block;
    padding-bottom: 14px;
    border-bottom: 3px solid #ff3c00;
    line-height: 21px;
}

.res-part-top {
    margin-bottom: 30px;
}
input.btn.filter-btun.btn-lg {
    border-radius: 0px!important;
    color: #000;
}

.restaurant-item {
    margin-bottom: 30px;
}




.res-footer {
    margin-top: 80px;
}
code {
    color: #0c0c0c !important;
    word-break: break-word;
    font-size: 17px !important;
    /* font-weight: 600; */
    font-family: sans-serif !important;
    line-height: 33px !important;
}

hr.product-line {
    width: 63% !important;
    border-top: 2px solid #ff3c00 !important;
}
.product-name {
    text-align: center;
}
.modal-price {
    padding-top: 10px;
    padding-left: 51px;
    font-weight: 600;
    color: grey;
}

.total-butn.btn.btn-success {
    margin-right: 166px;
    color: #fff !important;
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
    font-weight: 600;
}

button.repeat-last.btn.btn-success {
    margin-right: 115px;
    background-color: #ff3c00;
    font-weight: 600;
}
button.Ichosse.btn.btn-secondary{
    background-color: #ff3c00;
    font-weight: 600;
}
button.add-butn.btn.btn-success {
    color: #fff !important;
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
    font-weight: 600;
    border-radius: 0px;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
}
.menuLoader {
    text-align: center;
    width: 100%;

}

.filter .form-titles {
    padding-left: 15px;
    width: 85%;
    float: left;
    padding-top: 8px;
}
.filter .btn {
    background-color: #fff;
    font-weight: bold;
}
.filter button.btn:focus {
    border: 0px;
    box-shadow: 0px 0px 0px;
}

.data-not-found {
    width: 100%;
    text-align: center;
    padding-top: 10%;
}

.data-not-found h3 {
    font-size: 35px;
}
.count img {
    width: 30px;
    margin-left: 10px;
}
.filter_show {
  display: block;
}
.filter_hide {
  display: none;
}
.count {
    min-width: 60px;
    text-align: center;
}

/* checkout area start */
/*-- con-get area start --*/
.con-get-heading h3 {
    font-weight: 400;
    margin-bottom: 50px;
}
.con-form form label {
    font-weight: 500;
    font-size: 16px;
}

.con-form form input {
    margin-bottom: 25px;
    padding: 8px 20px;
    box-shadow: 0px 2px 2px -2px rgba(0,0,0,.5);
}

.con-form form input::placeholder {
    color: #767676;
}

.con-form form input:focus {
    box-shadow: none;
}

.con-form form textarea {
    color: #767676;
    box-shadow: 0px 2px 2px -2px rgba(0,0,0,.5);
}

.con-form form textarea:focus {
    box-shadow: none;
}

.con-form form button {
    border: none;
    outline: none;
    background-color: #ff3c00;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 50px;
    margin-top: 50px;
    cursor: pointer;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.con-form form button:hover {
    opacity: .7;
}

.con-form {
    position: relative;
}

.con-form:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 140px;
    height: 155px;
    background-image: url(/img/conf.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: -26px;
    right: -75px;
    z-index: -100;
}

.con-get {
    background-image: url(/img/confo.png);
    background-repeat: no-repeat;
    padding: 60px 0;
    background-position: bottom right;
    margin-top: 60px;
}
/*-- con-get area end --*/

/*
========================
Header area start
========================
*/



.service-item:hover {
    background: #fff;
}



.copyright p {
    margin: 0;
}


/*-- main1 area start --*/
.Distance-area {
            display: flex;
          justifyContent: center;
          flexWrap: wrap;
          margin-top: 10px;
          margin-bottom: 10px;
}

.restaurant-item > img {
    width: 100%;
    display: block;
    margin: auto;
}


/*---- Checkout Start ----*/

.pamout.checkout {
    background-color: rgba(0,0,0,0);
    margin-bottom: 20px;
    width: 100%;
}
 .pamout.checkout p {
    display: inline-block;
    margin: 0px;
    padding-left: 12px;
    width: 62%;
    font-weight: 500;
}
.main-checkout-row {
    margin-top: 15px;
    margin-bottom: 15px;
}
.col-lg-4.col-md-4.left-panel {
    padding: 34px;
    background: whitesmoke;
}
.row.Apply-Coupon {
    background: #fff;
    padding: 25px;
}
.Apply-Coupon-icon {
    width: 10%;
    display: inline-block;
    float: left;
}
.Apply-Coupon-input {
    width: 89%;
    display: inline-block;
}
.Apply-Coupon-input input {
    width: 62%;
}
span.Coupon-Applied {
    border: 1px solid #ccc;
    margin-top: 17px;
    display: none;
    padding: 14px;
    text-align: center;
}
.show-grid.row {
    /* margin-left: 20px; */
    padding-left: 10px;
    padding-top: 20px;
}
.Help-box a h4 {
    color: black;
}
.Apply-Coupon-input button.btn.btn-secondary {
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.Apply-Coupon-icon img {
    width: 100%;
}
.Apply-Coupon-field input {
    border: 0px;
    background: none;
    padding-left: 20px;
    color: #000;
}
.Apply-Coupon-field input::placeholder {
    color: #000 !important;
    opacity: 1;
}
.Apply-Coupon-field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
}
.Free-Delivery-icon{
     width: 10%;
    display: inline-block;
    float: left;
}
.Free-Delivery-field img {
    width: 100%;
}
.Free-Delivery-field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 11px 15px;
    margin-top: 15px;
}
.Free-Delivery-txt {
    width: 89%;
    display: inline-block;
    padding-left: 21px;
}
.Free-Delivery-txt p {
    margin: 0px;
    margin-bottom: -10px;
}
.Free-Delivery-txt span {
    font-size: 12px;
}
.row.Bill-Details {
  background: #fff;
  padding: 25px 12px;
  margin-top: 25px;
}
.row.Bill-Details ul {
  list-style: none;
  padding: 0px;
}
.row.Bill-Details ul li {
  width: 100%;
  margin-top: 10px;
}
.row.Bill-Details ul li span {
  float: right;
}
.map-iframe {
    margin-bottom: 30px;
}
.map-iframe iframe{
    webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}

/* The container */
.address-form .Loc-form .radio-checkout-form-btn {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.address-form .Loc-form .radio-checkout-form-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.address-form .Loc-form .radio-checkout-form-btn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
padding: 10px;
border: 1px solid #eee;
font-size: 18px;
min-height: 53px;
padding-top: 15px;

}
.address-form .Loc-form .radio-checkout-form-btn:hover input ~ .checkmark {
  background-color: #ff3c00;
}
.address-form .Loc-form .radio-checkout-form-btn input:checked ~ .checkmark {
  background-color: #ff3c00;
}
.address-form .Loc-form .radio-checkout-form-btn {
    width: 100%;
    float: left;
    text-align: center;
color: #000;
}
.address-form .Loc-form .radio-checkout-form-btn .checkmark img {
    width: 30px;
    float: left;
    margin-top: -3px;
}
.address-form .Loc-form .row.radio-checkout-form-row .col-md-4 {
    padding: 0;
}
.address-form .Loc-form .row.radio-checkout-form-row {
    padding: 15px;
    height: 80px;
}
.address-form form input {
    padding: 10px;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}
span.phone-error {
    color: red;
    font-size: 12px;
}
.main-contant.load img {
    width: 200px;
    /* text-align: center; */
    padding-top: 100px;
}

.main-contant.load {
    text-align: center;
}
#AddressForm select {
    padding: 10px;
    height: auto;
}
.address-form .Loc-form-btn {
    background-color: #ff3c00 !important;
    background-image: none !important;
    border: 0px;
    color: #fff;
    font-weight: 500;

    float: right;
    margin-left: 0px;
    margin-top: 0px;
    padding: 13px 15px;
}
/* button.StripeCheckout.Loc-form-btn {
    float: right;
    margin-left: 0px;
    margin-top: 0px;
    padding: 13px 15px;
} */
.address-box .Loc-form-btn {
    padding: 15px;
    background-color: #ff3c00 !important;
    background-image: none !important;
    border: 0px;
    color: #fff;
    font-weight: 500;
    margin-left: 16%;
}
.address-box ul {
    list-style-type: none;
}
.address-box ul li {
    font-size: 14px;
    font-weight: 600;
}
.address-box ul li i {
    float: right;
    font-size: 24px;
}
.address-box input[type="radio"] {
    margin-top: 6px;
    position: absolute;
}
/* .address-form .Loc-form-btn {
    border-radius: 0px !important;
    padding: 0px!important;
    margin-top: 1px !important;
} */
.address-form .Loc-form-btn span{
  background: #ff3c00 !important;
  height: auto!important;
  padding: 9px 15px!important;
  border-radius: 0px!important;
}
.address-box .Loc-form-btn span{
    background: #ff3c00 !important;
}
.address-form .Loc-form .Loc-form-btn:hover {
    opacity: 0.7;
}
.cart-mobile-view-button {
  display: none;
}
.address-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
}
.Delivery-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
  font-family: sans-serif;
}
.Delivery-box h6 {
    font-family: sans-serif;
    padding-top: 13px;
    font-weight: 600;
}
.Delivery-box i {
    float: right;
    width: 33%;
}
.Delivery-box i {
    float: right;
    width: 33%;
}
.Help-box h4 {
    padding-top: 10px;
}
.Delivery-box p {
    font-size: 14px;
}
.Delivery-box p span {
    font-weight: 600;
}
.Help-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
  text-align: center;
}
.Help-box p {
    font-size: 26px;
    display: block;
    margin-bottom: 0;
    color: #85c99d;
}
.Help-box i {
    font-size: 52px;
    color: #999;
}
.address-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.col-md-2.credit-icon i {
    padding-top: 15px;
}
p.secure-content {
    display: inline;
}
.address-box p {
  color: #6c6b6b;
  margin-bottom: 35px;
}
.cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 52px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.address-box .deliver-btn {
  background: #ff3c00;
  padding: 16px;
  text-align: center;
  color: #000;
  font-size: 16px;
  margin-bottom: 0px;
  color: #fff;
font-weight: 500;
}

.top-right-logo img {
    width: 67px;
    height: 67px;
}

h2.inner {
    background-color: #ff3c00;
    color: #000;
    margin: -25px 0px 25px -15px;
    padding: 12px 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

small.text-muted.checkout-text.form-text {
     padding-left: 5%;
}
small.text-muted.cart-text.form-text {
    padding-left: 28%;
    width: 13%;
}
.show_button .loader_box {
    display: none!important;
}
.show_loader .button_box {
    display: none!important;
}

/* .stripe-button-el {
    background-image: none !important;
    background-color: #ff3c00 !important;
  }

  .stripe-button-el span {
    background-image: none !important;
    background-color: #ff3c00 !important;
  } */
/*---- Checkout End ----*/



/* checkout area end */

/* thankyou page start */

.Booking-confirmation {
    margin-top: 45px;
    margin-left: 400px;
    margin-bottom: 75px;
}

/* thankyou page end */
/* Banner style start */
.therader {
    display: none;
}

/* .bn-right {
    display: none;
} */
.bnl-two {
    color: #fff;
}
.col-lg-6.hidden-bn-right {
    width: 10% !important;
    /* display: none; */
}
.bn-wrapper .col-lg-6 {
    margin: auto;
}
/* Banner two style end */

/* filter style start */

a.btn_map {
    display: none !important;
}
a.btn_map {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: #fff;
    background: #555;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    outline: none;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 25px;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a#filters_col_bt {
    display: block;
    color: #444;
    font-weight: 600;
}
.pull-right {
    float: right!important;
}
a:hover, a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}
.collapse.in {
    display: block;
}
.filter_type h6 {
    border-top: 1px solid #ddd;
    margin: 15px 0;
    padding: 15px 0 0 0;
}

.irs-with-grid {
    height: 60px;
}

.irs {
    height: 40px;
}
/* filter style end */
/* .handle-counter .type-error {
    width: 255px;
    left: 15px!important;
    background-color: #1f1f1f!important;
    top: 130px!important;
    opacity: 1;
    padding: 0px!important;
}*/

.handle-counter .type-error .addon-content {
    color: #fff;
    font-size: 14px;
    padding: 8px;
    font-style: italic;
}
div#handleCounter3 .__react_component_tooltip.type-error {
    background: #000 !important;
    color: #fff !important;
    width: 287px !important;
    z-index: 99999 !important;
      padding: 0px!important;
      opacity: 1;
}
/* filter style start */
.rating-form .icon_star::before {
  content: "\2605";
  color: #ccc;
  background: ;
}
.rating-form .icon_star {
  padding: 0px;
}
.rating-form .icon_star.voted:before {
  color: #FC0;
}

.rating-form {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-top: 0px;
}
.rating-form .form-titles {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 12px;
}
input.btn.filter-btun {
    background-color: #ff3c00;
    color: #fff;
    margin-top: 15px;
    /* margin-left: 60px; */
    /* text-align: center; */
}
.rating-form .form-check-label {
  font-size: 14px;
}
/* filter style end */

h6.Tip-Amount-text {
    padding-top: 5px;
}
/* sign up form start */
form.signup-content {
    margin-top: 140px;
    margin-bottom: 140px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 0px 5px #3e3a3acc;
    border: 0px;
}

button.register-form-button.btn.btn-primary {
    background-color: #ff3c00;
    border-color: #ff3c00;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    /* padding-top: 5px; */
    margin-top: 5px;
    margin-bottom: 30px;
}

.signup-content label.form-label {
    font-weight: 500;
}
form.signup-content .container {
    padding: 30px 80px 10px 80px;
}
form.signup-content h1 {
    text-align: center;
    color: #ff3c00;
    font-weight: bolder;
    padding-bottom: 35px;
    /* padding-top: 0px; */
}
button.register-form-button.btn.btn-primary:hover {
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
}
.thanku_registration {
    margin-top: 196px;
    margin-bottom: 153px;
    text-align: center;
    /* font-size: 20px; */
}
form.signup-content p {
    color: red;
    text-align: center;
}
.loader-border {
width: 155px;
margin: auto;
padding: 5px;
box-shadow: 0px 0px 22px #000;
}
.menu-loader-border {
width: 145px;
margin: auto;
padding: 5px;
box-shadow: 0px 0px 22px #000;
}
/* sign up form end */
/* city area start */
.row.city-area ul {
    list-style-type: none;
}
.All-city {
    background-color: #000;
    color: #fff;
}
.All-city h4 {
    color: gray;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 60px;
    margin-top: 35px;
    padding-bottom: 15px;
}
.All-city ul li {
    padding: 8px;
}
.All-city ul {
    margin-bottom: 60px;
}

/* city area end */

.StripeElement.StripeElement--invalid {
    width: 482px !important;
}
form.ElementsApp.is-invalid .is-focused {
  width: 500px !important;
}
form.ElementsApp .is-focused {
  width: 500px !important;
}
.StripeElement.StripeElement--empty {
    width: 500px !important;
}

.__PrivateStripeElement {
    padding: 20px;
    border: 1px solid rgba(0,0,0,.1) !important;
}

iframe {
    padding: 3px !important;
    /* border: 1px solid rgba(0,0,0,.1); */
}

input.__PrivateStripeElement-input {
    border: 1px solid rgba(0,0,0,.1) !important;
}
label.card-section {
    width: 100%!important;
}
label.card-section label {
    width: 100%;
    display: block;
}
label.card-section label .StripeElement {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%!important;
}
.restaurants-part {
    margin-top: 150px;
}
.filter {
    border: 1px solid #ddd;
    margin-top: 150px;
}
.search-area {
    padding: 60px 0;
    display: none;
}
.p-restaurants-area h4, .n-restaurants-area h4 {
    text-align: center;
    margin-bottom: 0px;
}
.row.new-restaurants {
    margin-top: 45px;
}
.cooking-instruction.row {
    margin-top: 25px;
}
.cooking-instruction h5 {
    font-weight: 600;
}
span.stripe-error {
    color: red;
    font-size: 17px;
    font-weight: 600;
}
.donation-confirmation {
    margin-top: 150px;
    margin-bottom: 150px;
}
.order-detail {
    margin-bottom: 70px;
}
.order-detail #countted {
    padding: 0;
    padding-top: 3px;
    padding-bottom: 3px;
}
.title hr {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 2px solid #000;
    margin-left: 258px;
    margin-right: 258px;
}
.DonationTermLabel label.form-check-label {
    font-size: 15px !important;
}
.DonationTermLabel.form-check a {
    color: black;
}
.__react_component_tooltip.show.place-top.type-dark {
/* top:330px !important;
left:49px !important; */
top:319px !important;
left:13px !important;
}
._3B2qG.place-order-btn {
    margin-left: 85px;
    /* text-align: center; */
}
.dt-donateinbox.donation-btn {
    margin-right: 25%;
}
.checkout-loader img {
    width: 117px;
    background-color: #ffc600;
    /* text-align: center; */
}

.checkout-loader {
    text-align: center;
    padding-top: 50%;
}
@media(max-width:959px){
  .carousel-caption {
    width: 354px!important;
    font-size: 14px!important;
    height: 128px!important;
    /* padding: 5px!important; */
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 30%;

}
.total-butn.btn.btn-success {
  margin-right: 25px !important;
}
.Booking-confirmation {
    margin-top: 120px;
    margin-left: 219px;
    margin-bottom: 120px;
}
.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 45px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.address-form .Loc-form-btn span {
    color: #000!important;
    font-size: 17px;
}
.row.checkout-cart-banner h5 {
    margin-top: 20px;
}

.top-right-logo img {
    border-radius: 50%;
    border: 2px solid #000;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    width: 100%;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Help-box a h4 {
    color: black;
}
.cart h2 {
    text-align: center;
    font-size: 30px !important;
}
.res-details .price {
    /* display: none; */
}
.ratings-part {
    /* display: none; */
}
.show-grid.row {
    padding-left: 10px;
    padding-top: 20px;
}

h3.product-name {
    font-size: 22px;
    float: left;
}

.show-grid.row .col-md-9 {
    width: 85%;
    float: left;
}

.show-grid.row .col-md-3 {
    width: 15%;
    float: left;
}
.res-details .rating {
    display: none;
}
.pizza-photo img {
    display: none;
}
.bn-right {
    /* display: none; */
}
.bnl-two {
    color: #fff;
}
h2.sticky-top.cart-heading {
    display: none;
}
.checkout-cart-banner .col-md-3 {
    width: 30%;
}
.checkout-cart-banner .col-md-9 {
    width: 70%;
}
.delivery-form .form-group {
    display: block;
    width: 100%;
    clear: both;
}
h2.inner {
    margin: 0px;
    margin-bottom: 20px;
}
.row.cart-below .col-md-6 {
  width: 50%;
}
.pamout.checkout p {
    display: inline-block;
    margin: 0px;
    padding-left: 0px;
    width: 60%;
    font-weight: 500;
}
.Apply-Coupon-input {
    font-size: 14px;
}
.Apply-Coupon-field input {
    width: 61%;
}
.checkout-cart-banner.col-md-9 {
    width: 70%;
}
.corn.sticky-top {
    display: none;
}

.row.cart-below.sticky-top {
    display: none;
}

.row.cart-below-form.sticky-top {
    display: none;
}

.sub.sticky-top {
    display: none;
}
.cart-mobile-view-button {
  display: block;
  position: fixed;
    bottom: 5px;
    width: 91%;
    z-index: 9999;
}
.carousel-caption h3 {
    font-size: 14px!important;
}

.Hungary-form {
    margin-top: 8px!important;
}
.Hungary-form .search-input-container .clear-button {
    padding: 10px !important;
    margin-top: -1px !important;
}
.Hungary-form .search-bar-container {font-size: 11px!important;}

.search-input-container {
    padding: 0px!important;
}

.Hungary-form input[type="submit"] {
  padding: 9px!important;
  margin-right: -3px !important;
}
.carousel-item.active img {
    min-height: 265px;
}
}
@media(max-width:500px){
  .main-link.sticky-top ul {
    display: flex !important;
    overflow-y: scroll !important;
    white-space: nowrap !important;
    padding-bottom: 10px !important;
}
.delivery-extra-info.form-group{
  margin-top: 10px;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
    margin-bottom: 30%;
}
/* .loader {
    width: 100px;
    text-align: center;
} */
/* .loader img {
  width: 100% !important;
} */
.main-link ul li a:hover {
  font-weight: 600;
background-color: #000;
color: #fff;
border: none;
}
.res-list img {
    display: block;
    margin: auto;
    width: 334px;
    height: 165px;
}
.main-link.sticky-top.top {
    position: fixed;
    top: 0px!important;
    background: #ffc600;
    width: 100%;
    padding: 14px;
    left: 0;
}
.main-link.sticky-top {
    background: #ffc600;
    margin-bottom: 10px;
}
.main-link ul li a {
    margin-top: 10px!important;

}
.main-link ul li {
  border-top: none!important;
}
  button.Locate-button {
    font-size: 10px!important;
}
.filter_show {
  display: none!important;
}
.filter_hide {
  display: block!important;
}
/* .bn-right {
    display: none;
} */
.col-lg-6.hidden-bn-right {
    width: 100%!important;
}
.banar {
    margin-top: 37px;
}
.cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 123px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 140px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #ff3c00;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.total-butn.btn.btn-success {
  margin-right: 25px !important;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    width: 100%;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Help-box a h4 {
    color: black;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 0px !important;
    width: 100%;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Booking-confirmation {
    margin-top: 120px;
    margin-left: 54px;
    margin-bottom: 120px;
}
.show-grid.row {
    padding-left: 10px;
    padding-top: 20px;
}

h3.product-name {
    font-size: 22px;
    float: left;
}

.show-grid.row .col-md-9 {
    width: 85%;
    float: left;
}

.show-grid.row .col-md-3 {
    width: 15%;
    float: left;
}
.cart h2 {
    text-align: center;
    font-size: 30px !important;
}
.bnl-two {
  color : #fff;
}
.res-details .price {
    /* display: none; */
}
.res-details .rating {
    display: none;
}
.ratings-part {
    /* display: none; */
}
.checkout-cart-banner .col-md-3 {
    width: 30%;
}
.checkout-cart-banner .col-md-9 {
    width: 70%;
}
.delivery-form .form-group {
    display: block;
    width: 100%;
    clear: both;
}
h2.inner {
    margin: 0px;
    margin-bottom: 20px;
}
.pamout.checkout p {
    width: 60%;
}
.row.cart-below .col-md-6 {
  width: 50%;
}
.Apply-Coupon-field input {
    width: 61%;
}
.Apply-Coupon-input {
    font-size: 14px;
}
.checkout-cart-banner.col-md-9 {
    width: 70%;
}
h2.sticky-top.cart-heading {
    display: none;
}
.row.cart-below.col-md-6 {
    width: 50%;
}

.corn.sticky-top {
    display: none;
}

.row.cart-below.sticky-top {
    display: none;
}

.row.cart-below-form.sticky-top {
    display: none;
}

.sub.sticky-top {
    display: none;
}
.cart-mobile-view-button {
  display: block;
  position: fixed;
    bottom: 5px;
    width: 91%;
    z-index: 9999;
}
input[type="submit"] {
    font-size: 8px!important;
}
.carousel-item.active img {
    min-height: 300px;
}
.carousel-caption {
  width: 250px!important;
  font-size: 14px!important;
  height: 128px!important;
  padding: 5px!important;
}
.search-input-container .search-input {
  width: 55% !important;
}
.Hungary-form {
    margin-top: -10px!important;
}
.Hungary-form .search-input-container .clear-butto {
    width: 10px !important;
    height: -1px !important;
    padding-top: 10px !important;

}

.Hungary-form .search-input-container .clear-button {
    padding: 6px !important;
    margin-top: 0px !important;
}

.Hungary-form a input[type="submit"] {
    padding: 10px !important;
    margin-right: -1px !important;
}
ul.pagination li {
    border: 1px solid #dee2e6 !important;
    padding: 10px !important;
    border-right: 0px !important;
}

.carousel-item img {
    width: auto !important;
    height: 326px;
}
.pizza-photo img {
    display: none;
}

}
/* @media(min-width:768px){
  .checkout a {
    display: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 0;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
} */
.res-list .res-details h5 {
    margin-top: 0px!important;
    margin-bottom: 10px!important;
    /* text-align: center; */
    min-height: 48px;
}

.restaurant-bdr .restaurant-content h4 {
    font-size: 17px;
    /* text-align: center; */
    min-height: 25px;
}
@media(min-width:800px){
  .main-link.sticky-top {
      height: 80vh;
      overflow: auto;
  }

}

@media all and (max-width: 992px) and (min-width: 767px){
.col-lg-4.col-md-4.left-panel.checkout-main-left-sidebar {
	max-width: 100% !important;
	flex: 0 0 45% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar {
	width: 100% !important;
	flex: 0 0 55% !important;
	max-width: 100% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar .col-md-8 {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar .col-md-4 {
	max-width: 100% !important;
	flex: 0 0 100% !important;
	margin-top: 30px !important;
}

}

@media(max-width:400px){

  .cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff3c00;
    padding: 8px 98px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
    margin-bottom: 30%;
}
.filter_show {
  display: none!important;
}
.filter_hide {
  display: block!important;
}
button.close-butn.btn.btn-secondary {
    margin-right: -3px;
}

button.add-butn.btn.btn-success {
    margin-right: -14px;
}

.total-butn.btn.btn-success {
    margin-right: -3px !important;
}
.address-form .Loc-form-btn span {
    background: #ff3c00 !important;
    height: auto!important;
    padding: 9px 4px!important;
    border-radius: 0px!important;
}
small.text-muted.cart-text.form-text {
    /* padding-left: 66px; */
}
}

@media(max-width:1280px){
  .total-butn.btn.btn-success {
    margin-right: 144px;
    color: #fff !important;
    background-color: #ff3c00 !important;
    border-color: #ff3c00 !important;
    font-weight: 600;
}
output#output {
  padding-left: 25px !important;
}
.filter .form-titles {
    padding-left: 15px;
    width: 85%;
    float: left;
    padding-top: 8px;
}
}
@media(max-width:1200px){
.col-lg-6.hidden-bn-right {
    width: 100% !important;
    /* display: none; */
}
output#output {
  padding-left: 25px !important;
}
.filter .form-titles {
    padding-left: 15px;
    width: 73%;
    float: left;
    padding-top: 8px;
}
}


.service-item-inner .service-details p {
  line-height: 20px;
}
.service-item-inner {
    padding-bottom: 0px !important;
}
.service-item-inner img {
  height: 110px;
}
.service-item-inner .service-details {
  margin-top: 30px;
}
.res-list .res-details a h5 {
	font-weight: 600;
	color: #000;
	margin-bottom: 10px !important;
	/* min-height: auto !important; */
  min-height: 62px !important;
  border-bottom: 1px dotted #ccc;
padding-bottom: 13px;
}
.price span:nth-child(2) {
	color: #ff3c00;
	font-weight: 400;
}
.res-details {
    padding-left: 18px!important;
    padding-top: 14px!important;
    min-height: 144px;
}
.res-list {
	border: 3px solid #eee!important;
	padding: 5px;
}
.view-all-btn {
	margin-top: 40px;
}
.view-all-btn .view-allres {
	text-align: center;
	width: 222px;
	border: 3px solid #eee;
	margin: auto;
	padding: 9px 10px 11px 10px;
	font-weight: 600;
	color: #000;
}
.view-all-btn .view-allres:hover, .view-all-btn.Pop-btn .view-allres:hover {
	background: #ff3c00;
	border-color: #ff3c00;
	color: #fff;
}
.view-all-btn.Pop-btn .view-allres {
	width: 250px;
	border-color: #000;
}
.restaurant-item {
  border: 3px solid #eee;
  padding: 5px;
}
.restaurant-item .restaurant-bdr {
  border: 0px;
  min-height: 120px;
}
.restaurant-item .restaurant-bdr h4 {
  font-weight: 600;
color:#000;
margin-bottom: 10px;
border-bottom: 1px dotted #ccc;
padding-bottom: 13px;
}
.btn.filter-btun.btn-lg {
	width: 100%;
	padding: 2px 4px 5px 4px;
	font-weight: 600;
}
.footer-area {
    border-top: 1px solid #E5E5E5;
}
.pprise h6 {
    margin-bottom: 3px;
}
.pamout.show_button {
	background: none;
	border-top: 1px solid #eee;
}
.pamout span {
	padding: 0px;
	padding-left: 13px;
	padding-top: 6px;
	font-weight: 500;
}
.count {
	float: right;
	padding: 0px;
}
.pprise {
	border-top: 0px;
	padding-left: 15px;
  padding-top: 10px;
  /* height: 83px; */
  height: 125px;
}
.count.button_box .addbutton.closed{
  	background: #eee;
    color: #000;
}
.count.button_box .addbutton {
	padding: 5px 20px;
	font-weight: 300;
}
button.available-for-sale {
    padding: 5px 20px;
    font-weight: 300;
    background-color: grey;
}
.pamout span {
	padding-top: 4px;
	padding-left: 15px;
}

.term-condition {
    margin-top: 130px;
    margin-bottom: 50px;
}
.title {
    text-align: center;
    margin-bottom: 50px;
}
.row.return-policy {
    margin-top: 20px;
}
h5.custom-heading.return {
    border-bottom: 2px solid black;
    width: 124px;
}
.legal ul {
    list-style: none;
}
.legal h6 {
    font-weight: bolder;
}

.legal {
    padding-left: 22px;
    margin-bottom: 32px;
}
.legal ul li a {
    color: #000;
}
.copyright p a {
    color: #000;
}
.col-6.price.full-width {
    width: 100%!important;
    max-width: 100%!important;
    flex: none!important;
}
.loading-row {
    opacity: 0.6;
}


.row.cart-below .col-md-6 h6 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 15px;
    /* text-align: right!important; */
}
/*h6.additionfee {
  min-height: 63px;
}*/
.row.cart-below .col-md-6.cartamt {
    text-align: right;
    padding-right: 22px;
}
.row.cart-below select#tip-select {
    display: block!important;
    width: 90%;
    margin-left: 10%;
}
label.card-section {
    margin-top: 40px;
}
.home-heading {
  font-size: 35px!important;
font-style: italic;
font-variant: small-caps;
font-weight: 500!important;
margin-top: 64px;
color: #ffc600;
}
.home-heading-2 {
  font-size: 20px!important;
color: #000!important;
}

.restaurant-item img {
    height: 210px;
    width: 100%;
}
.Hungary-form > a {
    width: 25%;
}
.loader-img .img-fluid {
    max-width: 100%;
    height: auto;
    width: 100%;
}
ul.fourth-column li img {
    width: 200px;
}
ul.fourth-column li {
    text-align: center;
    margin-bottom: 10px;
}

.row.donation-main {
    margin-top: 100px;
}
.donation-form {
  padding-top: 25px;
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  border-radius: .3rem;
  margin-bottom: 2rem;
}

.donation-form .Loc-form-btn span {
    background: #ff3c00 !important;
    height: auto!important;
    padding: 9px 15px!important;
    border-radius: 0px!important;
}
.donation-form .Loc-form-btn {
    background-color: #ff3c00 !important;
    background-image: none !important;
    border: 0px;
    color: #fff;
    font-weight: 500;
    float: right;
    margin-left: 0px;
    margin-top: 0px;
    padding: 13px 15px;
}
.sticky-top.cart.Right-side-cart-view h6 {
    font-size: 13px!important;
    font-weight: normal;
    margin-bottom: 3px!important;
}
.delivery-form label {
    font-size: 13px!important;
}








/* custom css */

/*
========================
Header area start
========================
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300i,400,400i,500,500i,700,700i,900,900i&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

@import url('https://fonts.googleapis.com/css?family=Cabin&display=swap');

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@1,600&display=swap');


@media (min-width: 992px){
.container {
    max-width: 1200px!important;
}}

@media (min-width: 1200px){
.container {
    max-width: 1200px!important;
	}}


.dt-donate {
    color: #fff;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.dt-donate2 {
    float: right;
}

.dt-donate3 {
    display: inline-block;
    height: 32px;
    width: 83px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    line-height: 30px;
    position: relative;
    text-align: center;
    background-color: #ffc600;
}

.dt-donate3:hover {
    background-color: #d6aa10;
}

.dt-type {
    color: #686b78;
    font-size: 13px;
}

.bd-example {
	width: 100%;
	float: left;
	position: relative;
			border-bottom: 5px solid #ffc600!important;
	background-color: rgb(255, 127, 39);
}


@media (min-width: 1551px){


.dt-right {
	width: 50%;
	float: right;
}
.dt-left {
	width: 50%;
	float: left;
	padding-right: 115px;
}
}

@media (max-width: 1550px){


.dt-right {
	width: 40%;
	float: right;
}
.dt-left {
	width: 60%;
	float: left;
	padding-right: 115px;
}
}

@media (max-width: 1100px){


.dt-right {
	width: 20%;
	float: right;
}
.dt-left {
	width: 80%;
	float: left;
	padding-right: 115px;
}
}

.dt-cart {
	background-color: #f1eeee;
	min-height: 200px;
	padding: 15px;
			border-radius: 15px!important;
}

.dt-cart h4 {
	text-align: center;
	color: #c1adad;
	font-size: 20px;
}



._3B2qG {
	position: relative!important;
    color: #fff!important;
    font-size: 13px;
    border-top: 0px solid #e9e9eb;
    padding-top: 7px;
	padding-bottom: 7px;
    margin-top: 14px;
	background-color: #ffc600;
	float: left;
	width: 49%;
			margin-bottom: 10px!important;
}


.dt-donateinbox {
	position: relative!important;
    color: #fff!important;
    font-size: 13px;
    border-top: 0px solid #e9e9eb;
    padding-top: 7px!important;
	padding-bottom: 7px!important;
    margin-top: 14px!important;
	background-color: #48c479;
	float: right;
	width: 49%;
	margin-bottom: 10px!important;
}

.restaurant-content .dt-boxessurround {
	display: none;
}

.restaurant-content:hover .dt-boxessurround {
	display: block!important;
}

.restaurant-content .dt-donateinbox a {
	color: #fff;

}

.restaurant-content .dt-donateinbox:hover {
	background-color: #37985d;

}
.restaurant-content ._3B2qG a {
	color: #fff;
}

.restaurant-content ._3B2qG:hover {
	background-color: #ecbd17;
}



._2ECk4 a:hover {
    color: #fff!important;
}

._24tlh {
    text-align: center;
    float: none;
    display: block;
    margin: 0 auto;
    width: 100px;
}

._2ECk4 {
    color: #fff;
    float: none;
    text-transform: uppercase;
    font-weight: 600;
}



._2FMT0 {
    color: #fff;
    padding: 3.5px 7px 4px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    background-color: #25c703;
}

._23BlT, .rZ-gh {
    position: absolute;
    content: "";
    border-style: solid;
}

._23BlT {
    left: 0;
    bottom: -6px;
    border-width: 3px;
    border-color: #207b0c #207b0c transparent transparent;
}

._23BlT, .rZ-gh {
    position: absolute;
    content: "";
    border-style: solid;
}


.rZ-gh {
    right: -4px;
    top: 0;
    border-width: 8px 4px;
    bottom: 0;
    border-color: #25c703 transparent;
}

._22D_E {
    position: relative;
    display: inline-block;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 2px;
    margin-left: 10px;
}


._1G3G4 {
    float: right;
    margin-top: -3px;
}

._3L1X9 {
    display: inline-block;
    height: 30px;
    width: 83px;
    border: 1px solid #d4d5d9;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    line-height: 30px;
    position: relative;
    text-align: center;
    background-color: #ffc600;
}

._1RPOp:hover {
    position: relative;
    background-color: #d0a512;
}

._1RPOp {
    color: #fff;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

._3Hy2E {
    position: absolute;
    right: 2px;
    top: -5px;
    transform-origin: -6px 6px;
    transform: rotate(0);
    cursor: pointer;
}

._2WdfZ {
    animation: _1sXH- .2s ease;
    opacity: 0;
    transform: translateZ(0);
}

._1ds9T {
    position: absolute;
    right: 0;
    top: 0;
    width: 33.33333%;
    display: inline-block;
    opacity: 1;
    transform: translateZ(0);
    cursor: pointer;
    font-size: 150%;
    font-weight: 600;
}

._4aKW6 {
    display: none!important;
}

._20vNm {
    animation: _3TzA_ .2s ease;
    opacity: 0;
    transform: translateZ(0);
}


._29Y5Z {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.33333%;
    display: inline-block;
    opacity: 1;
    transform: translateZ(0);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.5rem;
}

._2zAXs {
    position: absolute;
    left: 33.33333%;
    top: 0;
    width: 33.33333%;
    display: inline-block;
    opacity: 1;
    transform: translateZ(0);
    cursor: pointer;
}

._2quy- {
    animation: _1TAw_ .2s ease;
    opacity: 0;
    transform: translate3d(0,-7.5px,0);
}


._1C1Fl {
    color: #7e808c;
    font-size: 10px;
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-weight: 500;
    top: 35px;
    pointer-events: none;
}

._1bfQ9 {
    position: absolute!important;
    left: 25px;
    top: 10px;
}

.dt-resthours {
    position: relative;
	float: left;
	width: auto;
	text-align: center;
	font-size: 13px;
	margin-left: 50px;
	padding: 5px 10px;
	background-color: #ffffff3b;
    }

.dt-resthours span {
	font-size: 14px;
	font-weight: 700;
}

.dt-rest1 {
    overflow: visible;
    position: relative;
    pointer-events: auto;
}

.dt-rest2 {
    display: -ms-flexbox;
    justify-content: space-between;
}

.dt-rest3 {
    display: flex;
}

.dt-rest4 {
    color: inherit;
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    transition: opacity .2s ease-in-out;
    opacity: 0;
    top: 47px;
    width: 100%;
    z-index: -1;
}

.dt-rest5 {
    max-width: 538px;
    margin: 0;
    font-weight: 500;
    font-size: 30px;
	padding-top: 10px;
}

.dt-rest6 {
    opacity: 1;
    transition: opacity .2s ease-in-out;
	float: left!important;
}


.dt-rest7 {
   color: inherit;
    font-weight: 600;
    font-size: 16px;
}


.dt-rest8 {
    margin-right: 6px;
    font-size: 12px;
    position: relative;
    top: -1px;
}

.dt-rest9 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: inherit;
    opacity: .7;
    font-size: 15px;
    max-width: 538px;
}

.dt-rest10 {
    margin-top: 8px;
}

.dt-rest11 {
    display: inline-block;
	color: inherit;
    opacity: .7;
    font-size: 15px;
}

.dt-rest12 {
    margin-top: 12px;
}

.dt-rest13 {
    display: inline-block;
}

.dt-rest14 {
    margin-top: 21px;
}

.dt-rest15:first-child {
    padding-left: 0;
    padding-right: 35px;
}

.dt-rest15b:first-child {
    padding-left: 0;
    padding-right: 35px;
}

.dt-rest15 {
    padding: 0 35px;
    border-right: 1px solid hsla(0,0%,100%,.2);
	display: inline-block;
}


.dt-rest15b {
    padding: 0 35px;
    border-right: 0px solid hsla(0,0%,100%,.2);
	display: inline-block;
}


.dt-rest16 {
    color: inherit;
    opacity: .7;
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
}
.dt-rest17 {
    text-transform: capitalize;
}

.dt-rest18 {
    text-transform: lowercase;
}

.dt-coupon2 {
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: none;
}

.fa {
    display: inline-block;
    font-size: 10px!important;
}

.dt-bottom {
    color: #686b78;
    font-size: 13px;
    visibility: hidden;
    border-top: 1px solid #e9e9eb;
    padding-top: 14px;
    margin-top: 14px;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 14px;
}

.dt-coupon {
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	color: #331b13;
  display: none;
}

.dt-badge {
    font-size: 16px;
    width: 20px;
    height: 16px;
    margin-right: 4px;
    transform: rotate3d(0);
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.dt-infobox2 {
    border-top: 1px solid #e9e9eb;
    padding-top: 14px;
    margin-top: 12px;
    color: #8a584b;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
		width: 100%;
	color: #8a584b;
	font-size: 14px;
    line-height: 1.2;
}


.dt-ratingstar {
    font-size: 10px;
    margin-right: 4px;
    position: relative;
    top: -1px;
}


[class*=" icon-"], [class^=icon-] {
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dt-infobox {
    margin-top: 12px;
    font-size: 12px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #535665;
	align-items: center;
	 display: flex;
}

.icon-offer-filled:before {
    content: "\E921";
}



.dt-rating {
    height: 20px;
    width: 43px;
    padding: 0 5px;
    font-weight: 400;
}

.dt-ratingcolor {
    background-color: #48c479;
    color: #fff;
}

.dt-info {
    font-size: 12px;
    -ms-flex-pack: justify;
    justify-content: space-between!important;
    color: #535665;
	width: 100%;
}

.dt-info, .dt-rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.w-100 {
    width: 100%!important;
    height: 435px!important;
    overflow: hidden!important;
    object-fit: cover!important;
	float: right;
}

.main-menu-part2 ul li a {
    display: block;
    padding: 30px 35px!important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 0px solid #e8e8e8!important;
}

button.headertwo_login {
background-color: #ffffff!important;
	    border-right: 0px solid #e8e8e8!important;
    padding: 30px 35px!important;
}

.bnl-one img {
border: 0px #D4D4D4 solid!important;
	margin-right: 20px!important;
	border-radius: 0px!important;
}

.banar {
    padding: 30px 0!important;
    background-color: #331b13!important;
	margin-top: 0px!important;
	position: relative!important;
	color: #ffffff!important;
}

.bnl-two p {
    color: #ffffff!important;
}

.navbar-brand2 img {
    width: 200px!important;
}

.ppara {
background-color: #fbfbfb!important;
}

.res-details, .restaurant-content {
    padding-left: 0px!important;
	    padding-right: 0px!important;
}

.res-details span, .ratings-part span {
    font-size: 14px!important;
    display: block;
    color: #ffc600!important;
    font-weight: 400!important;
}

.res-list .res-details a h5, .restaurant-item .restaurant-bdr h4 {
    font-weight: 600;
    color: #000!important;
    margin-bottom: 0px !important;
    /* min-height: auto !important; */
    border-bottom: 1px dotted #ccc;
    padding-bottom: 13px;
	font-size: 16px!important;
}

.res-details .price {
    width: 70%!important;
}

.res-list:hover, .restaurant-item:hover {
    border-color: #d3d5df!important;
    box-shadow: 0 7px 5px 0 rgba(0,0,0,.2)!important;
		background-color: #ffffff!important;
}

.res-list, .restaurant-item {
	padding: 15px 15px 0px!important;
    border: 0px solid #fff!important;
    contain: content!important;
	background-color: #fbfbfb!important;
}

.footer-area {
	background-color: #ffffff!important;
}

.rating-form {
	background-color: #ffffff!important;
}

.restaurants-part, .filter {
    margin-top: 60px!important;
}


.header-area2 {
    padding: 0px 0px;
	background-color: #ffffff!important;
	border-bottom: 1px solid #ddd!important;
	position: relative!important;
}

.view-all-btn .view-allres {
	background-color: #ffffff!important;
}

.view-all-btn .view-allres:hover, .view-all-btn.Pop-btn .view-allres:hover {
    background: #ffc600!important;
	color: #ffffff!important;
}


.n-restaurants-area {
    background: #fbfbfb!important;
}

.search-input-container {
    padding: 0px!important;
}

.Hungary-form input[type="submit"] {
    padding: 0px!important;
    border-radius: 0px!important;
}

h3.hungry-heading{
  color: #fff;
font-weight: bold!important;
font-size: 1.6rem!important;
font-family: 'Roboto', sans-serif!important;
line-height: 3.5rem;
}

.res-part-top h2, .pizza1 h2 {
    font-weight: 500!important;
	font-family: 'Roboto', sans-serif!important;
	font-size: 26px!important;
	padding-right: 30px!important;
}

.dt-title h4{
	margin-top: 25px;
}

.dt-reco {
    text-align: center;
    float: left;
    position: relative;
    width: 100%;
}

.dt-reco h2 {
	text-align: center;
    padding-bottom: 0px;
    border-bottom: 0px solid #ffc600;
    line-height: 21px;
	margin-top: 60px;
}

.container .dt-title h4{
	font-family: 'Crimson Text', serif!important;
	font-size: 35px!important;
    text-align: center!important;
}

.container .dt-title h6 {
    text-align: center!important;
    margin-bottom: 0px!important;
	font-weight: normal!important;
	font-family: 'Roboto', sans-serif!important;
	font-size: 23px!important;
	line-height: 35px!important;
	color: #867d7d!important;
}

.carousel-caption {
    border-radius: 0px!important;
	background: rgb(255, 127, 39)!important;
	padding-top: 20px!important;
}

.carousel-caption input[type="submit"] {
font-weight: 600!important;
}

@media (max-width: 959px){

	.carousel-caption h3 {
		font-size: 2.5rem!important;
	}


.carousel-caption {
      position: relative!important;
	margin: 120px auto 0px!important;
	width: 95%!important;
	float: left!important;
    z-index: 10;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    color: #fff!important;
    text-align: left!important;
    color: #fff!important;
    border-radius: 0px!important;
	right: inherit!important;
    bottom: inherit!important;
	height: auto!important;
    left: inherit!important;
}

	.dt-right {
display: none;
	}

.dt-left {
	position: relative;
	width: 100%!important;
	float: left;
	padding: 20px;
}

	.carousel-caption {
    position: relative;
		margin: 0px auto!important;}


	.search-input-container .search-input {
    width: 100% !important;
}

	.header-left img {
    width: 200px!important;
}

	.res-list img {
    display: block!important;
    margin: auto!important;
    width: 100%!important;
    height: 200px!important;
    overflow: hidden!important;
}

	.Hungary-form input[type="submit"] {
   padding: 0px!important;
    border-radius: 0px!important;
}
	input[type="submit"] {
    font-size: 12px!important;
}
	.subscribe p {
    margin-bottom: 20px;
    padding-right: 00px!important;
}

	.legal ul {
 margin-left: -70px!important;
}

h3.hungry-heading{
  color: #fff;
font-weight: bold!important;
font-size: 1.6rem!important;
font-family: 'Roboto', sans-serif!important;
line-height: 3.5rem;
}
}

.Hungary-form {
    margin-top: 25px!important;
}


body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fbfbfb!important;
    color: #000;
}




a:hover {
    text-decoration: none;
}
::selection {
    color: white;
    background: #ffc600;
}

::-webkit-selection {
    color: white;
    background: #ffc600;
}

::-moz-selection {
    color: white;
    background: #ffc600;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    display: inline-block;
    padding: 5px 0px 0px 13px;
    font-size: 20px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.scrolltotop:hover {
    background: #ffc600;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}


@media screen and (max-width: 991px) and (min-width: 768px){

	.carousel-caption h3 {
		font-size: 2.5rem!important;
	}
.carousel-caption {
    position: relative!important;
    right: 0!important;
    bottom: 0%!important;
    left: 0!important;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
    padding: inherit!important;
    color: #fff!important;
    border-radius: 0px!important;
}

	.carousel-caption h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.carousel-indicators {
  z-index: 1 !important;
}


.carousel-caption form {
    border: 1px solid #ddd;
}

.carousel-caption input[type="text"] {
    width: 65%;
    border: none;
    background: #fff;
    padding: 8px 8px;
}

.carousel-caption input[type="submit"] {
    width: 30%;
    border: none;
    float: right;
    background: #ffc600;
    padding: 8px 8px;
    cursor: pointer;
    color: #fff;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px;
    border-radius: 50%;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    background-color: #FFF;
    cursor: pointer;
}
.carousel-indicators.active , .carousel-indicators li:hover{
  background-color: #ffc600 !important;
}

.carousel-indicators .active {
    background-color: #ffc600 !important;
}
.carousel-control-next, .carousel-control-prev {
    display: none;
	}


	.Hungary-form input[type="submit"] {
    padding: 0px!important;
    border-radius: 0px!important;
}

h3.hungry-heading{
  color: #fff;
font-weight: bold!important;
font-size: 1.6rem!important;
font-family: 'Roboto', sans-serif!important;
line-height: 3.5rem;
}

.res-part-top h2, .pizza1 h2 {
    font-weight: 500!important;
	font-family: 'Roboto', sans-serif!important;
	font-size: 26px!important;
	padding-right: 30px!important;
}

.dt-title h4{
	margin-top: 25px;
}
}


@media (max-width: 1368px){


.carousel-caption {
    position: relative;
	/* margin: 120px auto 0px; */
   margin: 40px auto 0px;
	width: 85%;
	float: right;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    background: #fff;
    color: #fff;
    border-radius: 5px;
	right: inherit!important;
    bottom: inherit!important;
    left: inherit!important;
	}
}

@media (max-width: 1714px){


.carousel-caption {
    position: relative;
	/* margin: 120px auto 0px; */
  margin: 40px auto 0px;
	width: 85%;
	float: right;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    background: #fff;
    color: #fff;
    border-radius: 5px;
	right: inherit!important;
    bottom: inherit!important;
    left: inherit!important;
	}
}

@media (min-width: 1715px){


.carousel-caption {
    position: relative;
	/* margin: 120px auto 0px; */
  margin: 40px auto 0px;
	width: 75%;
	float: right;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    background: #fff;
    color: #fff;
    border-radius: 5px;
	right: inherit!important;
    bottom: inherit!important;
    left: inherit!important;
	}
}


.carousel-caption h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.carousel-indicators {
  z-index: 1 !important;
}


.carousel-caption form {
    border: 1px solid #ddd;
}

.carousel-caption input[type="text"] {
    width: 65%;
    border: none;
    background: #fff;
    padding: 8px 8px;
}

.carousel-caption input[type="submit"] {
    width: 30%;
    border: none;
    float: right;
    background: #ffc600;
    padding: 8px 8px;
    cursor: pointer;
    color: #fff;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px;
    border-radius: 50%;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    background-color: #FFF;
    cursor: pointer;
}
.carousel-indicators.active , .carousel-indicators li:hover{
  background-color: #ffc600 !important;
}

.carousel-indicators .active {
    background-color: #ffc600 !important;
}
.carousel-control-next, .carousel-control-prev {
    display: none;
	}




.header-area {
    padding: 10px 0;
    position: relative;
    z-index: 99999999999;
    width: 100%;
}

.header-left img {
    /* width: 235px; */
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
}

.header-left img:hover {
    opacity: 0.8;
}
.header-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: right;
}

.header-right ul li {
    float: left;
}

.login {
  background: #fff;
  color: #000;
  padding: 7px 18px;
  display: inline-block;
  border-radius: 5px;
  font-size: 20px;
  padding-bottom: 10px;
  /* vertical-align: middle; */
  border: none;
}

.signup {
  background: #ffc600;
color: #fff;
padding: 7px 18px;
display: inline-block;
border-radius: 5px;
margin-left: 10px;
font-size: 20px;
padding-bottom: 10px;
border: none
}
.signup:hover{
    color: #fff !important;
}

.fade.modal.show {
    background: rgba(256,256,256,0.8);
}
.login .modal-content {
    position: relative;
    padding: 1px 30px 10px 30px;
    text-align: center;
    background: #e9ecef;
    border-radius: 0px;
    border: none;
}
.login .modal-footer {
    border-top: none !important;
}
.login .modal-header {
    border-bottom: none !important;
}

.login .form-text {
    font-size: 15px;
    color: #000;
    text-align: left;
}
.login .close {
    color: #000 !important;
    opacity: unset !important;
}
.login-form-button .btn-success {
    color: #fff !important;
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
}
.login_icon img {
    /* width: 150px; */
    padding-top: 20px;
    padding-bottom: 20px;
}

.login .form-check {
    text-align: left;
}
.login .form-check-label {
    color: #000 !important;
    font-size: 16px;

}
.login .form-control {
    margin-top: 1.25rem;
}
.login .form-check-input {
    margin-top: 12px !important;

}
p.modal-required {
    margin-bottom: 0px !important;
    /* margin-top: 15px; */
    color: red;
}
.login .login_icon {
    color: #fff;
    /* font-size: 60px; */
    background: #fff!important;
    opacity: 1!important;
}
.login .modal-dialog {
    margin-top: 165px !important;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #f5f5f5;
}

button.close.btn.btn-primary:hover {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #f5f5f5;
}
button.headertwo_login:hover {
    border-color: whitesmoke;
}
button.headertwo_signup:hover {
    border-color: whitesmoke;
}
.register .modal-dialog {
    margin-top: 165px !important;
}

.search-dishes {
    margin-top: 100px;
    margin-bottom: 40px;
}

.header-right a {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.header-right a:hover {
      color: #000;
}
.hungry-heading{
    color: #ffc600;
    font-weight: bold;
}

.Hungary-form {
    border: 1px solid #a6a6a6;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    margin-top: 50px;
  }
  .Hungary-form .search-bar-container {
    width: 75%;
    display: inline-block;
  }
  .Hungary-form input[type="submit"] {
    padding: 15px;
    width: 25%;
    border-radius: 0px 10px 10px 0px;
  }
  .Hungary-form a input[type="submit"] {
    width: 100%;
    padding: 8px!important;
}
.Hungary-form .search-input-container .clear-button {
    background: none;
    padding: 8px;
    float: right;
    border-radius: 10px 0px 0px 10px;
    margin-top: 0px;
    color: #fff;
    border: none;
}
  .search-input-container {
    padding: 10px;
  }
  .search-input-container .search-input {
    width: 73% !important;
  }
  .search-input-container .Locate-button {
    background: none;
    border: 0px;
    color: #fff;
  }
  .footer-subscribe input[type="submit"] {
	border-radius: 0px 10px 10px 0px;
}
.footer-subscribe{
    border: 1px solid #a6a6a6;
    padding: 5px;
    border-radius: 10px;
}
.carousel-caption.d-none.d-md-block p {
    font-weight: 600 ;
  }

.services-area {
    background-image: url(/img/bg-grey1.png);
    display: none;
}

.services-bg {
     padding: 30px 0;

    background: url(/img/bg-grey1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}
.service-item {
    text-align: center;
    /* margin: 80px 0; */
    margin: 40px 0;
    padding: 10px 30px 10px 30px;
    box-sizing: border-box;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.service-item .service-item-inner {
   /* padding: 50px 15px 50px 15px; */
   padding: 15px 15px 15px 15px;
}
.service-item .service-item-inner:hover {
    background: #fff;
}
.__react_component_tooltip.type-error {
    background-color: #fff !important;
    z-index: 999 !important;
}
span.maintenance-content {
    color: #ffc600 !important;
}
.service-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.service-details h5 {
    font-weight: 16px;
    font-weight: bold;
}

.services-bg {
    background: url(/img/bg-white.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

.apps-area {
    background: url(/img/bg-past2.png);
    background-position: center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

.apps-bg {
    background: url(/img/bg-past.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
     padding: 60px 0;
}


.apps-content h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 42px;
    color: #FFF;
    line-height: 40px;
}
.apps-content P{
    color: #fff;
    font-size: 21px;
    margin-top: 25px;
}
/* .apps-content {
    padding-top: 20px;
    padding-bottom: 20px;
} */
.app-links {
    width: 100%;
    margin-top: 60px;
}

.google-link {
    width: 50%;
    float: left;
}

.google-link img {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.google-link img:hover,
.iphone-link img:hover {
    opacity: 0.8;
}

.iphone-link {
    width: 48%;
    margin-left: 2%;
    float: right;
}

.n-restaurants-area {
    padding: 60px 0;
    background: #fff;
}

.p-restaurants-area h4,
.n-restaurants-area h4 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
}

.view-allres {
    font-size: 16px;
    margin-top: 20px;
    text-align: right;
    display: block;
    font-weight: bold;
    color: #ffc600;
}

.res-list {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.res-details {
    padding: 20px 10px;
    text-align: left;
    overflow: hidden;
    padding-bottom: 10px;
}
.res-details h5 {
    margin: 0;
}
.res-details h5 a {
    margin: 0;
    font-size: 18px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    font-weight: 600;
    color: #080808;
}

.res-details h5 a:hover {
    opacity: 0.7;
}

.res-details p {
    margin-bottom: 20px;
    font-size: 14px;
  color: #a5a5a5;
}
/* .price .delivery-time {
    display: none;
} */
.res-details .price {
    width: 50%;
    float: left;
    /* display: none; */
}
.ratings-part {
    /* display: none; */
}
.col-6.restaurant-rating {
    display: none;
}
.res-details .rating {
    width: 50%;
    float: left;
    text-align: right;
    display: none;
}

.res-details span {
  font-size: 16px;
display: block;
color:#242424;
font-weight: 600;
}

.res-details span i {
    color: #fac917;
    font-size: 14px;
}

.p-restaurants-area {
    background: #ebebeb;
    padding: 60px 0;
    display: none;
}

.p-restaurants-area .res-list {
    background: #fff;
}

.res-list img {
    display: block;
    margin: auto;
    width: 253px;
    height: 165px;
}

.subscribe {
    padding: 40px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.contact h4,
.subscribe h4 {
    font-weight: bold;
    margin-bottom: 5px;
	color: #ffc600;
	font-size: 20px;
}

.subscribe p {
    margin-bottom: 20px;
    padding-right: 40px;
	font-size: 15px!important;
}

.subscribe a {
	color: #ffc600!important;
	font-size: 15px;
}

.subscribe form {
    border: 1px solid #ddd;
}

.subscribe form input[type="email"] {
    padding: 12px;
    width: 79%;
    border: none;
    float: left;
    border-radius: 5px;
    outline: none;
}
.address-form {
    padding-top: 25px;
}
.bd-example #carouselExampleCaptions ol.carousel-indicators {
    z-index: 1px !important;
}
.subscribe form input[type="submit"] {
    padding: 14px 5px;
    width: 21%;
    outline: none;
    font-size: 14px;
    border: none;
    background: #ffc600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    color: #fff;
    font-weight: 600;
}

.subscribe form input[type="submit"]:hover {
    opacity: 0.8;
}

.contact a {
    text-decoration: none;
    color: #444;
}

.copyright-area {
    background-color: #331b13!important;
    padding: 15px 0;
	color: #fff;
}

.copyright p a {
	color: #ffc600!important;
}

.copyright p {
    margin: 0;
    text-align: center;
}
.contact {
    padding-left: 170px;
}
.copyright-area .social {
    text-align: right;
}

.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
    padding-right: 78px;
}

.containter a {
	color: #ffc600!important;
}

.social ul li {
    float: left;
}

.social ul li i {
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    margin-left: 10px;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
    transition: .2s all ease;
    -webkit-transition: .2s all ease;
    -moz-transition: .2s all ease;
}

.social ul li .fa-twitter {
    background: #55ACEE;
}

.social ul li .fa-facebook-f {
    background: #45619D;
}

.social ul li .fa-google-plus-g {
    background: #D73D32;
}

.social ul li .fa-instagram {
    background: #2A5B83;
}

.social ul li .fa-linkedin-in {
    background: #0077B5;
}

.social ul li i:hover {
   opacity: 0.8;
}

.footer-logo img {
    transition: .2s all ease;
    -webkit-transition: .2s all ease;
    -moz-transition: .2s all ease;
    width: 235px;
}
.row.cart-below.sticky-top {
    top: 318px;
}
.corn.sticky-top {
    top: 44px;
}
.footer-logo img:hover {
    opacity: 0.8;
}
.Thanku-contacting {
    padding-top: 190px;
    padding-bottom: 190px;
    text-align: center;
}

.sticky-top.cart.Right-side-cart-view {
    padding-right: 0px !important;
    top: 80px !important;
}
.main-link.sticky-top {
    top: 85px !important;
}
/*-- theader area start --*/
.therader {
    padding: 8px 0;
}

.theader-wrapper p {
    margin-bottom: 0;
}

.theader-wrapper p span {
    color: #9e9e9e;
}

.header-area2 {
    padding: 0px 0px;
    background: #F5F5F5;
}

.navbar2 {
    padding: 0px;
}

.navbar-brand2 img {
    width: 150px;
}


.main-menu-part2 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu-part2 ul li {
    float: left;
}

.main-menu-part2 ul li a {
    display: block;
    padding: 25px 35px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #585353;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
}

.main-menu-part2 ul li:nth-last-of-type(2) a {
    padding: 0px!important;
    /*background: #E9E9E9;*/
    /* margin-left: 40px; */
    border-radius: 6px;
    border:none;
    /*margin-top: 16px;*/
    margin-right: 5px;
}

.main-menu-part2 ul li:nth-last-of-type(1) a {
    padding: 0px!important;
    /*background:#E9E9E9;*/
    border-radius: 6px;
    border:none;
    margin-top: 6px!important;
    /*background-color: #ffc600;*/
}

.main-menu-part2 ul li a:hover {
color: #ffc600!important;
}

.hamburger {
  padding: 10px 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: 0px!important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* -- header-area end -- */

/*-- banar area start --*/
.banar {
    /* background-image: url(/img/banner1-black.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0;
    background-color: #171a29;
    margin-top: 53px;
}

.bn-left {
    overflow: hidden;
}

.bnl-one {
    float: left;
    margin-right: 8px;
}

.bnl-one img {
    display: block;
}

.bnl-two {
    margin-top: 8px;
}

.bnl-two p {
    color: #d0d0d0;
    margin-bottom: 25px;
    font-size: 13px;
    margin-top: 15px;
}

.bnl-two span {
    color: #5b5b5b;
}

.bnr-one {
    overflow: hidden;
    background: rgba(255, 255, 255,.8);
    display: flex;
}
.bnl-one img {
    height: 191px;
}

.bnro-left {
    width: 50%;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    padding: 25px 0;
}

.bnro-left span {
    display: inline-block;
    color: #FAC917;
}
.bnl-one img {
    /* box-shadow: 5px 5px 4px #f9f9f9; */
    margin: 13px;
    border-radius: 5px;
}
.bnl-two h2 {
    /* text-shadow: 6px 4px 4px #8a6d64; */
    font-style: italic;
    line-height: 32px;
}
.col-lg-6.hidden-bn-right .bn-right {
    /* box-shadow: 5px 5px 5px #696969; */
    background:#fff;
    border-radius: 5px;
    overflow: hidden;
}
.col-lg-6.hidden-bn-right .bn-right p {
    color: #000;
    font-style: italic;
}
.row.checkout-main {
    margin-top: 65px;
}
.bnro-left span.reating {
    color: #222;
    font-weight: 500;
    margin-left: 5px;
    text-align: left;
    width: 38%;
}

.bnro-left p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 4px;
}

.bnro-right {
    width: 50%;
    border-bottom: 1px solid #d0d0d0;
    padding: 25px 0;
}

.bnro-right p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

.bnro-right h6 {
    margin-bottom: 0;
}

.bnr-two {
    overflow: hidden;
    display: flex;
    background: rgba(255, 255, 255,.8);
}

.bnrt-left {
    width: 50%;
    border-right: 1px solid #d0d0d0;
    padding-top: 10px;
    padding: 25px 0px;
}

.bnrt-right {
    width: 50%;
    padding: 20px 0px;
}

.bnrt-left h6 {
    margin-bottom: 0;
}

.bnrt-left p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

.bnrt-right h6 {
    margin-bottom: 0;
}

.bnrt-right p {
    color: #5b5b5b;
    margin-bottom: 0;
    font-size: 14px;
}

/*-- main1 area start --*/

.main1 {
    padding-top: 55px;
    padding-bottom: 55px;
}

.main-link ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-link ul li {
    border-top: 1px solid #eee;
}

.main-link ul li:last-child {
    border-bottom: 1px solid #eee;
}

.main-link ul li a {
    display: inline-block;
    color: #222;
    padding: 5px 20px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    border-left: 4px solid transparent;
    font-size: 14px;
}

.main-link ul li.active-item a {
    font-weight: 600;
    border-left: 4px solid #ffc600;
}

.main-link ul li a:hover {
    border-left: 4px solid #ffc600;
    font-weight: 600;
}

.pizza1 h2 {
    padding-bottom: 8px;
    display: inline-block;
    padding-right: 30px;
    border-bottom: 0px solid #ffc600;
    margin-bottom: 20px;
    font-size: 22px;
}

.pizza-img img {
    display: block;
    width: 100%;
}

.pizza-photo {
    height: 215px;
    overflow: hidden;
}

.pprise {
    padding: 15px 0;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

.pprise img {
    margin-bottom: 10px!important;
}

.pprise h6 {
    margin-bottom: 0;
}

.pprise p {
    font-size: 12px;
    margin-bottom: 0;
    color: #5a5a5a;
}

.pamout {
    background-color: #EBEBEB;
    overflow: hidden;
}

.pamout span {
    display: inline-block;
    font-size: 16px;
    color: #717482;
    font-weight: 600;
    padding-left: 20px;
    padding-top: 10px;
}

.pamout a {
    display: inline-block;
    float: right;
    color: #000;
    background-color: #ffc600;
    padding: 8px 35px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
button.addbutton {
    display: inline-block;
    float: right;
    color: #fff;
    font-weight: 600;
    background-color: #ffc600;
    padding: 8px 35px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.pamout a:hover {
    opacity: .7;
}

.count {
    float: right;
    background: #ffc600;
    padding: 5px;
}

.count input {
    width: 30px;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
}

.count button {
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}
.handle-counter {
    color: #fff;
    font-weight: 600;
}
.counter-minus {
    font-size: 20px!important;
}

.ppara {
    margin-bottom: 20px;
    border: 0px solid #eee;
}

#last-pizza {
    height: 140px;
}

#last-pizza img {
    margin-top: 25px;
}

.pizza1 {
    border-bottom: 0px solid #eee;
    margin-bottom: 15px;
}

.pizza2 {
    margin-top: 40px;
}

.pprise3 {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 0;
}

#last-prize3 {
    border-bottom: 0;
}

#countted {
    padding: 0;
}

#pamut-number span {
    padding-top: 5px;
    padding-left: 10px;
}

.cart h2 {
    margin-bottom: 14px;
}

.corn {
    /* border: 2px solid #eee;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden; */
}
select#tip-select {
    padding: 0px;
    height: 50%;
}
.sub.sticky-top{
  top: 564px;
}
.Empty-cart.sticky-top {
    top: 58px;
}
.cart-below-form.sticky-top{
  top : 470px;
}
p.cart-addon {
    font-size: 11px;
    font-weight: 700 !important;
    line-height: 10px;
}
select#tip-select-checkout {
    padding: 0px;
    width: 100%;
    height: 50%;
}
.row.cart-below {
    padding-left: 20px;
}
.cart-below-form .form-group {
    margin-bottom: 0px !important;
}
.row.cart-below-form {
    padding-left: 30px;
    max-width: 100%;
}
.local_delivery.form-group {
    margin-bottom: 20px !important;
}
.cart-below-form .form-check-label {
    font-weight: 500 !important;
}
.delivery-form {
    width: 100%;
}
.delivery-form .form-label {
    display: block;
}
.delivery-form .form-check {
    width: 71%;
    float: left;
}
.delivery-form small.text-muted.form-text {
    display: inline-block;
    float: right;
    font-weight: 500;
}
.cart-below-form .form-label {
    font-size: 18px !important;
    font-weight: 500 !important;
}
.corn-contant p {
    margin-bottom: 0;
    font-weight: 600;
    margin-bottom: 6px;
}

.corn {
    border: 2px solid #eee;
    height: 228px;
    overflow: auto;
}

.corn-contant {
    padding: 15px;
}

.subtotal h6 {
    float: left;
    font-weight: 600;
    margin-bottom: 4px;
}

.subtotal span {
    font-weight: 600;
    float: right;
}

.subtotal p {
    overflow: hidden;
    clear: both;
    margin-bottom: 0;
    color: #5a5a5a;
}

.subtotal {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 10px 81px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.checkout .deliverymsg {
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 0;
    border: none;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
div#modal3 {
    margin-top: 149px;
}

.checkout a:hover {
    opacity: .7;
}


#footer {
    border-top: 1px solid #ddd;
}

.search-area {
    padding: 60px 0;
}

.search-area form {
    width: 100%;
    display: block;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 2px 5px 15px rgba(0,0,0,.2);
    border-radius: 8px;
    overflow: hidden;
}

.search-area form input {
    width: 75%;
    display: inline-block;
    padding: 10px 15px;
    background: transparent;
    border: none;
    float: left;
}

.search-area form input[type="submit"] {
    width: 20%;
    display: inline-block;
    padding: 10px 15px;
    background: #ffc600;
    border: none;
    color: #fff;
    float: right;
    border-radius: 0px 8px 8px 0px;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
    cursor: pointer;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.search-area form input[type="submit"]:hover {
    opacity: 0.8;
}

img.restaurant-image {
    width: 100%;
    display: block;
    margin: auto;
    height: 169px;
    border: 1px solid #ddd;
    border-bottom: none;
}

.restaurant-content {
    padding: 15px;
}
.restaurant-content p {
    height: 22px;
    overflow: hidden;
}

.coupon-part {
    padding: 5px 15px;
    background: #E8E8E8;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.coupon-part img {
    width: 15px;
    display: inline-block;
    margin-right: 5px;
}

.coupon-part a {
    font-size: 13px;
    color: #080808;
}

.restaurant-bdr {
 border: 1px solid #ddd;
}

.restaurant-item:hover .coupon-part {
    background: #ffc600;
}

.restaurant-content h4 {
    margin: 0;
}

.restaurant-content h4 a {
    color: #080808;
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.restaurant-content h4 a:hover {
    opacity: 0.7;
}

.restaurant-content p {
    margin: 0;
    color: #5A5A5A;
    font-size: 15px;
    text-transform: capitalize;
}

/* .ratings-part {
    padding: 10px 0 0;
} */

.ratings-part span {
    display: block;
    color: #5A5A5A;
    font-size: 15px;
}

.rating-last {
    text-align: right;
    margin-top: -10px;
    float: right;
    display: block;
    width: 100%;
}
.dv-star-rating.dv-star-rating-non-editable {
    float: right;
}
.bnro-left .dv-star-rating.dv-star-rating-non-editable {
    display: inherit !important;
    overflow: auto;
    /* border: 2px solid; */
    text-align: left;
    float: left;
    width: 60%;
    padding: 0px;
}
.bnro-left .dv-star-rating.dv-star-rating-non-editable label {
    margin-bottom: 0px;
}
 .dv-star-rating.dv-star-rating-non-editable i {
    color: #ffc600;
}
.ratings-part img {
    display: block;
    float: right;
    max-width: 100%!important;
}

.res-part-top h2 {
    display: inline-block;
    padding-bottom: 0px;
    border-bottom: 0px solid #ffc600;
    line-height: 21px;
	color: #000;
}

.res-part-top {
    margin-bottom: 30px;
}

.restaurant-item {
    margin-bottom: 30px;
}




.res-footer {
    margin-top: 80px;
}
code {
    color: #0c0c0c !important;
    word-break: break-word;
    font-size: 17px !important;
    /* font-weight: 600; */
    font-family: sans-serif !important;
    line-height: 33px !important;
}

hr.product-line {
    width: 63% !important;
    border-top: 2px solid #ffc600 !important;
}
.product-name {
    text-align: center;
}
.modal-price {
    padding-top: 10px;
    padding-left: 51px;
    font-weight: 600;
    color: grey;
}

.total-butn.btn.btn-success {
    margin-right: 166px;
    color: #fff !important;
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
    font-weight: 600;
}

button.repeat-last.btn.btn-success {
    margin-right: 115px;
    background-color: #ffc600;
    font-weight: 600;
}
button.Ichosse.btn.btn-secondary{
    background-color: #ffc600;
    font-weight: 600;
}
button.add-butn.btn.btn-success {
    color: #fff !important;
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
    font-weight: 600;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
}
.menuLoader {
    text-align: center;
    width: 100%;

}
.menuLoader img {
  width: 30%;
}
.filter {
    border: 1px solid #ddd;
}

.filter .form-titles {
    padding-left: 15px;
    width: 85%;
    float: left;
    padding-top: 8px;
}
.filter .btn {
    background-color: #fff;
    font-weight: bold;
}
.filter button.btn:focus {
    border: 0px;
    box-shadow: 0px 0px 0px;
}

.data-not-found {
    width: 100%;
    text-align: center;
    padding-top: 10%;
}

.data-not-found h3 {
    font-size: 35px;
}
.count img {
    width: 30px;
    margin-left: 10px;
}
.filter_show {
  display: block;
}
.filter_hide {
  display: none;
}
.count {
    min-width: 60px;
    text-align: center;
}

/* checkout area start */
/*-- con-get area start --*/
.con-get-heading h3 {
    font-weight: 400;
    margin-bottom: 50px;
}
.con-form form label {
    font-weight: 500;
    font-size: 16px;
}

.con-form form input {
    margin-bottom: 25px;
    padding: 8px 20px;
    box-shadow: 0px 2px 2px -2px rgba(0,0,0,.5);
}

.con-form form input::placeholder {
    color: #767676;
}

.con-form form input:focus {
    box-shadow: none;
}

.con-form form textarea {
    color: #767676;
    box-shadow: 0px 2px 2px -2px rgba(0,0,0,.5);
}

.con-form form textarea:focus {
    box-shadow: none;
}

.con-form form button {
    border: none;
    outline: none;
    background-color: #ffc600;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 50px;
    margin-top: 50px;
    cursor: pointer;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.con-form form button:hover {
    opacity: .7;
}

.con-form {
    position: relative;
}

.con-form:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 140px;
    height: 155px;
    background-image: url(/img/conf.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: -26px;
    right: -75px;
    z-index: -100;
}

.con-get {
    background-image: url(/img/confo.png);
    background-repeat: no-repeat;
    padding: 60px 0;
    background-position: bottom right;
    margin-top: 60px;
}
/*-- con-get area end --*/

/*
========================
Header area start
========================
*/



.service-item:hover {
    background: #fff;
}



.copyright p {
    margin: 0;
}


/*-- main1 area start --*/
.Distance-area {
            display: flex;
          justifyContent: center;
          flexWrap: wrap;
          margin-top: 10px;
          margin-bottom: 10px;
}

.restaurant-item > img {
    width: 100%;
    display: block;
    margin: auto;
}


/*---- Checkout Start ----*/

.pamout.checkout {
    background-color: rgba(0,0,0,0);
    margin-bottom: 20px;
    width: 100%;
}
 .pamout.checkout p {
    display: inline-block;
    margin: 0px;
    padding-left: 12px;
    width: 62%;
    font-weight: 500;
}
.main-checkout-row {
    margin-top: 15px;
    margin-bottom: 15px;
}
.col-lg-4.col-md-4.left-panel {
    padding: 34px;
    background: whitesmoke;
}
.row.Apply-Coupon {
    background: #fff;
    padding: 25px;
}
.Apply-Coupon-icon {
    width: 10%;
    display: inline-block;
    float: left;
}
.Apply-Coupon-input {
    width: 89%;
    display: inline-block;
}
.Apply-Coupon-input input {
    width: 62%;
}
span.Coupon-Applied {
    border: 1px solid #ccc;
    margin-top: 17px;
    display: none;
    padding: 14px;
    text-align: center;
}
.show-grid.row {
    /* margin-left: 20px; */
    padding-left: 10px;
    padding-top: 20px;
}
.Help-box a h4 {
    color: black;
}
.Apply-Coupon-input button.btn.btn-secondary {
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
    color: #000 !important;
    font-weight: 600 !important;
    border-radius: 0px;
    width: 93px;
}

.address-form .Loc-form-btn span {
    color: #000!important;
}
.Apply-Coupon-icon img {
    width: 100%;
}
.Apply-Coupon-field input {
    border: 0px;
    background: none;
    padding-left: 20px;
    color: #000;
}
.Apply-Coupon-field input::placeholder {
    color: #000 !important;
    opacity: 1;
}
.Apply-Coupon-field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
}
.Free-Delivery-icon{
     width: 10%;
    display: inline-block;
    float: left;
}
.Free-Delivery-field img {
    width: 100%;
}
.Free-Delivery-field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 11px 15px;
    margin-top: 15px;
}
.Free-Delivery-txt {
    width: 89%;
    display: inline-block;
    padding-left: 21px;
}
.Free-Delivery-txt p {
    margin: 0px;
    margin-bottom: -10px;
}
.Free-Delivery-txt span {
    font-size: 12px;
}
.row.Bill-Details {
  background: #fff;
  padding: 25px 12px;
  margin-top: 25px;
}
.row.Bill-Details ul {
  list-style: none;
  padding: 0px;
}
.row.Bill-Details ul li {
  width: 100%;
  margin-top: 10px;
}
.row.Bill-Details ul li span {
  float: right;
}
.map-iframe {
    margin-bottom: 30px;
}
.map-iframe iframe{
    webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}

/* The container */
.address-form .Loc-form .radio-checkout-form-btn {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.address-form .Loc-form .radio-checkout-form-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.address-form .Loc-form .radio-checkout-form-btn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
padding: 10px;
border: 1px solid #eee;
font-size: 18px;
min-height: 53px;
padding-top: 15px;

}
.address-form .Loc-form .radio-checkout-form-btn:hover input ~ .checkmark {
  background-color: #ffc600;
}
.address-form .Loc-form .radio-checkout-form-btn input:checked ~ .checkmark {
  background-color: #ffc600;
}
.address-form .Loc-form .radio-checkout-form-btn {
    width: 100%;
    float: left;
    text-align: center;
color: #000;
}
.address-form .Loc-form .radio-checkout-form-btn .checkmark img {
    width: 30px;
    float: left;
    margin-top: -3px;
}
.address-form .Loc-form .row.radio-checkout-form-row .col-md-4 {
    padding: 0;
}
.address-form .Loc-form .row.radio-checkout-form-row {
    padding: 15px;
    height: 80px;
}
.address-form form input {
    padding: 10px;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}
span.phone-error {
    color: red;
    font-size: 12px;
}
.main-contant.load img {
    width: 200px;
    /* text-align: center; */
    padding-top: 100px;
}

.main-contant.load {
    text-align: center;
}
#AddressForm select {
    padding: 10px;
    height: auto;
}
.address-form .Loc-form-btn {
    background-color: #ffc600 !important;
    background-image: none !important;
    border: 0px;
    color: #fff;
    font-weight: 500;

    float: right;
    margin-left: 0px;
    margin-top: 0px;
    padding: 13px 15px;
}
/* button.StripeCheckout.Loc-form-btn {
    float: right;
    margin-left: 0px;
    margin-top: 0px;
    padding: 13px 15px;
} */
.address-box .Loc-form-btn {
    padding: 15px;
    background-color: #ffc600 !important;
    background-image: none !important;
    border: 0px;
    color: #fff;
    font-weight: 500;
    margin-left: 16%;
}
.address-box ul {
    list-style-type: none;
}
.address-box ul li {
    font-size: 14px;
    font-weight: 600;
}
.address-box ul li i {
    float: right;
    font-size: 24px;
}
.address-box input[type="radio"] {
    margin-top: 6px;
    position: absolute;
}
/* .address-form .Loc-form-btn {
    border-radius: 0px !important;
    padding: 0px!important;
    margin-top: 1px !important;
} */
.address-form .Loc-form-btn span{
  background: #ffc600 !important;
  height: auto!important;
  padding: 9px 15px!important;
  border-radius: 0px!important;
}
.address-box .Loc-form-btn span{
    background: #ffc600 !important;
}
.address-form .Loc-form .Loc-form-btn:hover {
    opacity: 0.7;
}
.cart-mobile-view-button {
  display: none;
}
.address-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
}
.Delivery-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
  font-family: sans-serif;
}
.Delivery-box h6 {
    font-family: sans-serif;
    padding-top: 13px;
    font-weight: 600;
}
.Delivery-box i {
    float: right;
    width: 33%;
}
.Delivery-box i {
    float: right;
    width: 33%;
}
.Help-box h4 {
    padding-top: 10px;
}
.Delivery-box p {
    font-size: 14px;
}
.Delivery-box p span {
    font-weight: 600;
}
.Help-box {
  background: #f5f5f5;
  padding: 15px 15px;
  margin-bottom: 20px;
  text-align: center;
}
.Help-box p {
    font-size: 26px;
    display: block;
    margin-bottom: 0;
    color: #85c99d;
}
.Help-box i {
    font-size: 52px;
    color: #999;
}
.address-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.col-md-2.credit-icon i {
    padding-top: 15px;
}
p.secure-content {
    display: inline;
}
.address-box p {
  color: #6c6b6b;
  margin-bottom: 35px;
}
.cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 52px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.address-box .deliver-btn {
  background: #ffc600;
  padding: 16px;
  text-align: center;
  color: #000;
  font-size: 16px;
  margin-bottom: 0px;
  color: #fff;
font-weight: 500;
}

.top-right-logo img {
    width: 67px;
    height: 67px;
}

h2.inner {
    background-color: #ffc600;
    color: #000;
    margin: -25px 0px 25px -15px;
    padding: 12px 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

small.text-muted.checkout-text.form-text {
     padding-left: 5%;
}
small.text-muted.cart-text.form-text {
    padding-left: 28%;
    width: 13%;
}
.show_button .loader_box {
    display: none!important;
}
.show_loader .button_box {
    display: none!important;
}

/* .stripe-button-el {
    background-image: none !important;
    background-color: #ffc600 !important;
  }

  .stripe-button-el span {
    background-image: none !important;
    background-color: #ffc600 !important;
  } */
/*---- Checkout End ----*/



/* checkout area end */

/* thankyou page start */

.Booking-confirmation {
    margin-top: 45px;
    margin-left: 400px;
    margin-bottom: 75px;
}

/* thankyou page end */
/* Banner style start */
.therader {
    display: none;
}

/* .bn-right {
    display: none;
} */
.bnl-two {
    color: #fff;
}
.col-lg-6.hidden-bn-right {
    width: 10% !important;
    /* display: none; */
}
.bn-wrapper .col-lg-6 {
    margin: auto;
}
/* Banner two style end */

/* filter style start */

a.btn_map {
    display: none !important;
}
a.btn_map {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: #fff;
    background: #555;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    outline: none;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 25px;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a#filters_col_bt {
    display: block;
    color: #444;
    font-weight: 600;
}
.pull-right {
    float: right!important;
}
a:hover, a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}
.collapse.in {
    display: block;
}
.filter_type h6 {
    border-top: 1px solid #ddd;
    margin: 15px 0;
    padding: 15px 0 0 0;
}

.irs-with-grid {
    height: 60px;
}

.irs {
    height: 40px;
}
/* filter style end */
/* .handle-counter .type-error {
    width: 255px;
    left: 15px!important;
    background-color: #1f1f1f!important;
    top: 130px!important;
    opacity: 1;
    padding: 0px!important;
}*/

.handle-counter .type-error .addon-content {
    color: #fff;
    font-size: 14px;
    padding: 8px;
    font-style: italic;
}
div#handleCounter3 .__react_component_tooltip.type-error {
    background: #000 !important;
    color: #fff !important;
    width: 287px !important;
    z-index: 99999 !important;
      padding: 0px!important;
      opacity: 1;
}
/* filter style start */
.rating-form .icon_star::before {
  content: "\2605";
  color: #ccc;
  background: ;
}
.rating-form .icon_star {
  padding: 0px;
}
.rating-form .icon_star.voted:before {
  color: #FC0;
}

.rating-form {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-top: 0px;
}
.rating-form .form-titles {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 12px;
}
input.btn.filter-btun {
    background-color: #ffc600;
    color: #fff;
    margin-top: 15px;
    /* margin-left: 60px; */
    /* text-align: center; */
}
.rating-form .form-check-label {
  font-size: 14px;
}
/* filter style end */

h6.Tip-Amount-text {
    padding-top: 5px;
}
/* sign up form start */
form.signup-content {
    margin-top: 140px;
    margin-bottom: 140px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 0px 5px #3e3a3acc;
    border: 0px;
}

button.register-form-button.btn.btn-primary {
    background-color: #ffc600;
    border-color: #ffc600;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    /* padding-top: 5px; */
    margin-top: 5px;
    margin-bottom: 30px;
}

.signup-content label.form-label {
    font-weight: 500;
}
form.signup-content .container {
    padding: 30px 80px 10px 80px;
}
form.signup-content h1 {
    text-align: center;
    color: #ffc600;
    font-weight: bolder;
    padding-bottom: 35px;
    /* padding-top: 0px; */
}
button.register-form-button.btn.btn-primary:hover {
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
}
.thanku_registration {
    margin-top: 196px;
    margin-bottom: 153px;
    text-align: center;
    /* font-size: 20px; */
}
form.signup-content p {
    color: red;
    text-align: center;
}
.loader-border {
width: 155px;
margin: auto;
padding: 5px;
box-shadow: 0px 0px 22px #000;
}
.menu-loader-border {
width: 145px;
margin: auto;
padding: 5px;
box-shadow: 0px 0px 22px #000;
}
/* sign up form end */
/* city area start */
.row.city-area ul {
    list-style-type: none;
}
.All-city {
    background-color: #331b13;
    color: #d0c5c5;
    font-size: 13px;
}
.All-city h4 {
    color: gray;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 60px;
    margin-top: 35px;
    padding-bottom: 15px;
}
.All-city ul li {
    padding: 2px;
}
.All-city ul {
    margin-bottom: 60px;
}

/* city area end */

.StripeElement.StripeElement--invalid {
    width: 482px !important;
}
form.ElementsApp.is-invalid .is-focused {
  width: 500px !important;
}
form.ElementsApp .is-focused {
  width: 500px !important;
}
.StripeElement.StripeElement--empty {
    width: 500px !important;
}

.__PrivateStripeElement {
    padding: 20px;
    border: 1px solid rgba(0,0,0,.1) !important;
}

iframe {
    padding: 3px !important;
    /* border: 1px solid rgba(0,0,0,.1); */
}

input.__PrivateStripeElement-input {
    border: 1px solid rgba(0,0,0,.1) !important;
}
label.card-section {
    width: 100%!important;
}
label.card-section label {
    width: 100%;
    display: block;
}
label.card-section label .StripeElement {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%!important;
}
.restaurants-part {
    margin-top: 150px;
}
.filter {
    border: 1px solid #ddd;
    margin-top: 150px;
}
.search-area {
    padding: 60px 0;
    display: none;
}
.p-restaurants-area h4, .n-restaurants-area h4 {
    text-align: center;
    margin-bottom: 0px;
}
.row.new-restaurants {
    margin-top: 45px;
}
.cooking-instruction.row {
    margin-top: 25px;
}
.cooking-instruction h5 {
    font-weight: 600;
}
span.stripe-error {
    color: red;
    font-size: 17px;
    font-weight: 600;
}
.row.pagination-content {
    margin-top: 25px;
    margin-bottom: 25px;
}
.pagination {
  margin: 15px auto;
  display: flex;
  list-style: none;
  outline: none;
  float: right;
  position: relative;
}
.pagination > .active > a{
  background-color: #ffc600 ;
  border-color: #ffc600 ;
  color: #fff;
}
.pagination > li > a{
  border: 1px solid #ffc600 ;
  padding: 5px 10px;
  outline: none;
  cursor: pointer;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
  background-color: #ffc600 ;
  border-color: #ffc600;
  outline: none ;
}
.pagination > li > a, .pagination > li > span{
  color: #ffc600
}
.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span{
  border-radius: unset
}
.infinite-scroll-component {
    overflow: hidden !important;
}
.delivery-extra-info.form-group {
    margin-top: 115px;
}
@media(max-width:959px){
  .carousel-caption {
    width: 354px;
    font-size: 14px;
    height: 128px;
    /* padding: 5px!important; */
}
.delivery-extra-info.form-group{
  margin-top: 10px;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 30%;

}
.total-butn.btn.btn-success {
  margin-right: 25px !important;
}
.Booking-confirmation {
    margin-top: 120px;
    margin-left: 219px;
    margin-bottom: 120px;
}
.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 45px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    width: 100%;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Help-box a h4 {
    color: black;
}
.cart h2 {
    text-align: center;
    font-size: 30px !important;
}
.res-details .price {
    /* display: none; */
}
.ratings-part {
    /* display: none; */
}
.show-grid.row {
    padding-left: 10px;
    padding-top: 20px;
}

h3.product-name {
    font-size: 22px;
    float: left;
}

.show-grid.row .col-md-9 {
    width: 85%;
    float: left;
}

.show-grid.row .col-md-3 {
    width: 15%;
    float: left;
}
.res-details .rating {
    display: none;
}
.pizza-photo img {
    display: none;
}
.bn-right {
    /* display: none; */
}
.bnl-two {
    color: #fff;
}
h2.sticky-top.cart-heading {
    display: none;
}
.checkout-cart-banner .col-md-3 {
    width: 30%;
}
.checkout-cart-banner .col-md-9 {
    width: 70%;
}
.delivery-form .form-group {
    display: block;
    width: 100%;
    clear: both;
}
h2.inner {
    margin: 0px;
    margin-bottom: 20px;
}
.row.cart-below .col-md-6 {
  width: 50%;
}
.pamout.checkout p {
    display: inline-block;
    margin: 0px;
    padding-left: 0px;
    width: 60%;
    font-weight: 500;
}
.Apply-Coupon-input {
    font-size: 14px;
}
.Apply-Coupon-field input {
    width: 61%;
}
.checkout-cart-banner.col-md-9 {
    width: 70%;
}
.corn.sticky-top {
    display: none;
}

.row.cart-below.sticky-top {
    display: none;
}

.row.cart-below-form.sticky-top {
    display: none;
}

.sub.sticky-top {
    display: none;
}
.cart-mobile-view-button {
  display: block;
  position: fixed;
    bottom: 5px;
    width: 91%;
    z-index: 9999;
}
.carousel-caption h3 {
    font-size: 14px;
}

.Hungary-form {
    margin-top: 8px!important;
}
.Hungary-form .search-input-container .clear-button {
    padding: 10px !important;
    margin-top: -1px !important;
}
.Hungary-form .search-bar-container {font-size: 11px!important;}

.search-input-container {
    padding: 0px!important;
}


.carousel-item.active img {
    min-height: 265px;
}
}
@media(max-width:500px){
  .main-link.sticky-top ul {
    display: flex !important;
    overflow-y: scroll !important;
    white-space: nowrap !important;
    padding-bottom: 10px !important;
}
.delivery-extra-info.form-group{
  margin-top: 10px;
}
.restaurant-content .dt-boxessurround {
	display: block !important;
}
.col-3.last-col {
    max-width: 28%;
    float: left;
    margin-left: 50px;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
    margin-bottom: 30%;
}
/* .loader {
    width: 100px;
    text-align: center;
} */
/* .loader img {
  width: 100% !important;
} */
.main-link ul li a:hover {
  font-weight: 600;
background-color: #000;
color: #fff;
border: none;
}
.res-list img {
    display: block;
    margin: auto;
    width: 334px;
    height: 165px;
}

  button.Locate-button {
    font-size: 10px!important;
}
.filter_show {
  display: none!important;
}
.filter_hide {
  display: block!important;
}
/* .bn-right {
    display: none;
} */
.col-lg-6.hidden-bn-right {
    width: 100%!important;
}
.banar {
    margin-top: 37px;
}
.cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 123px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.checkout a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 140px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.back-to-menu.text-center {
    margin-top: 14px;
    float: left;
}
.back-to-menu a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 15px 23px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.total-butn.btn.btn-success {
  margin-right: 25px !important;
}
button.headertwo_login {
    border-width: 0px;
    display: block;
    width: 100%;
    padding: 12px 0px !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Help-box a h4 {
    color: black;
}
button.headertwo_signup {
    border-width: 0px;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 0px !important;
    width: 100%;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    border-right: 1px solid #e8e8e8;
    background-color: #d0d0d003;
}
.Booking-confirmation {
    margin-top: 120px;
    margin-left: 54px;
    margin-bottom: 120px;
}
.show-grid.row {
    padding-left: 10px;
    padding-top: 20px;
}

h3.product-name {
    font-size: 22px;
    float: left;
}

.show-grid.row .col-md-9 {
    width: 85%;
    float: left;
}

.show-grid.row .col-md-3 {
    width: 15%;
    float: left;
}
.cart h2 {
    text-align: center;
    font-size: 30px !important;
}
.bnl-two {
  color : #fff;
}
.res-details .price {
    /* display: none; */
}
.res-details .rating {
    display: none;
}
.ratings-part {
    /* display: none; */
}
.checkout-cart-banner .col-md-3 {
    width: 30%;
}
.checkout-cart-banner .col-md-9 {
    width: 70%;
}
.delivery-form .form-group {
    display: block;
    width: 100%;
    clear: both;
}
h2.inner {
    margin: 0px;
    margin-bottom: 20px;
}
.pamout.checkout p {
    width: 60%;
}
.row.cart-below .col-md-6 {
  width: 50%;
}
.Apply-Coupon-field input {
    width: 61%;
}
.Apply-Coupon-input {
    font-size: 14px;
}
.checkout-cart-banner.col-md-9 {
    width: 70%;
}
h2.sticky-top.cart-heading {
    display: none;
}
.row.cart-below.col-md-6 {
    width: 50%;
}

.corn.sticky-top {
    display: none;
}

.row.cart-below.sticky-top {
    display: none;
}

.row.cart-below-form.sticky-top {
    display: none;
}

.sub.sticky-top {
    display: none;
}
.cart-mobile-view-button {
  display: block;
  position: fixed;
    bottom: 5px;
    width: 91%;
    z-index: 9999;
}
.carousel-item.active img {
    min-height: 300px;
}

.Hungary-form {
    margin-top: -10px!important;
}
.Hungary-form .search-input-container .clear-butto {
    width: 10px !important;
    height: -1px !important;
    padding-top: 10px !important;

}

.Hungary-form .search-input-container .clear-button {
    padding: 6px !important;
    margin-top: 0px !important;
}

.Hungary-form a input[type="submit"] {
    padding: 10px !important;
    margin-right: -1px !important;
}
ul.pagination li {
    border: 1px solid #dee2e6 !important;
    padding: 10px !important;
    border-right: 0px !important;
}

.carousel-item img {
    width: auto !important;
    height: 326px;
}
.pizza-photo img {
    display: none;
}

}
/* @media(min-width:768px){
  .checkout a {
    display: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 0;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
} */
.res-list .res-details h5 {
    margin-top: 0px!important;
    margin-bottom: 10px!important;
    /* text-align: center; */
    min-height: 48px;
}

.restaurant-bdr .restaurant-content h4 {
    font-size: 17px;
    /* text-align: center; */
    min-height: 25px;
}
@media(min-width:800px){
  .main-link.sticky-top {
      height: 80vh;
      overflow: auto;
  }
  .restaurant-content .dt-boxessurround {
  	display: none;
  }

  .restaurant-content:hover .dt-boxessurround {
  	display: block!important;
  }

}

@media all and (max-width: 992px) and (min-width: 767px){
.col-lg-4.col-md-4.left-panel.checkout-main-left-sidebar {
	max-width: 100% !important;
	flex: 0 0 45% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar {
	width: 100% !important;
	flex: 0 0 55% !important;
	max-width: 100% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar .col-md-8 {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}
.col-lg-8.col-md-4.checkout-main-right-sidebar .col-md-4 {
	max-width: 100% !important;
	flex: 0 0 100% !important;
	margin-top: 30px !important;
}

}

@media(max-width:400px){
  .restaurant-content .dt-boxessurround {
  	display: none;
  }

  .restaurant-content:hover .dt-boxessurround {
  	display: block!important;
  }
  .cart-mobile-view-button a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ffc600;
    padding: 8px 98px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20%;
    margin-bottom: 30%;
}
.filter_show {
  display: none!important;
}
.filter_hide {
  display: block!important;
}
button.close-butn.btn.btn-secondary {
    margin-right: -3px;
}

button.add-butn.btn.btn-success {
    margin-right: -14px;
}

.total-butn.btn.btn-success {
    margin-right: -3px !important;
}
.address-form .Loc-form-btn span {
    background: #ffc600 !important;
    height: auto!important;
    padding: 9px 4px!important;
    border-radius: 0px!important;
}
small.text-muted.cart-text.form-text {
    /* padding-left: 66px; */
}
}

@media(max-width:1280px){
  .total-butn.btn.btn-success {
    margin-right: 144px;
    color: #fff !important;
    background-color: #ffc600 !important;
    border-color: #ffc600 !important;
    font-weight: 600;
}
.restaurant-content .dt-boxessurround {
	display: block!important;
}
ul.fourth-column li img {
    width: 130px;
}
output#output {
  padding-left: 25px !important;
}
.filter .form-titles {
    padding-left: 15px;
    width: 85%;
    float: left;
    padding-top: 8px;
}
}
@media(max-width:1200px){
.col-lg-6.hidden-bn-right {
    width: 100% !important;
    /* display: none; */
}
output#output {
  padding-left: 25px !important;
}
.filter .form-titles {
    padding-left: 15px;
    width: 73%;
    float: left;
    padding-top: 8px;
}
}


.service-item-inner .service-details p {
  line-height: 20px;
}
.service-item-inner {
    padding-bottom: 0px !important;
}
.service-item-inner img {
  height: 110px;
}
.service-item-inner .service-details {
  margin-top: 30px;
}
.res-list .res-details a h5 {
	font-weight: 600;
	color: #000;
	margin-bottom: 10px !important;
	/* min-height: auto !important; */
  min-height: 62px;
  border-bottom: 1px dotted #ccc;
padding-bottom: 13px;
}
.price span:nth-child(2) {
	color: #ffc600;
	font-weight: 400;
}
.res-details {
    padding-left: 18px;
    padding-top: 14px!important;
    min-height: 144px;
}

.view-all-btn {
	margin-top: 40px;
}
.view-all-btn .view-allres {
	text-align: center;
	width: 222px;
	border: 3px solid #eee;
	margin: auto;
	padding: 9px 10px 11px 10px;
	font-weight: 600;
	color: green!important;
}
.view-all-btn .view-allres:hover, .view-all-btn.Pop-btn .view-allres:hover {
	background: #ffc600;
	border-color: #ffc600;
	color: #fff;
}
.view-all-btn.Pop-btn .view-allres {
	width: 250px;
	border-color: #000;
}
.restaurant-item {
  border: 3px solid #eee;
  padding: 5px;
}
.restaurant-item .restaurant-bdr {
  border: 0px;
  min-height: 120px;
}
.restaurant-item .restaurant-bdr h4 {
  font-weight: 600;
color:#000;
margin-bottom: 0px;
border-bottom: 0px dotted #ccc;
padding-bottom: 0px;
	text-align: left;
}
.btn.filter-btun.btn-lg {
	width: 100%;
	padding: 2px 4px 5px 4px;
	font-weight: 600;
}
.footer-area {
    border-top: 1px solid #E5E5E5;
}
.pprise h6 {
    margin-bottom: 3px;
}
.pamout.show_button {
	background: none;
	border-top: 1px solid #eee;
	padding-top: 10px;
}
.pamout span {
	padding: 0px;
	padding-left: 13px;
	padding-top: 6px;
	font-weight: 500;
}
.count {
	float: right;
	padding: 0px;
}
.pprise {
	border-top: 0px;
	padding-left: 15px;
  padding-top: 10px;
  /* height: 83px; */
  height: auto;
}
.count.button_box .addbutton.closed{
  	background: #eee;
    color: #000;
}
.count.button_box .addbutton {
	padding: 5px 20px;
	font-weight: 300;
}
.pamout span {
	padding-top: 0px;
	padding-left: 15px;
}

.term-condition {
    margin-top: 130px;
    margin-bottom: 50px;
}
.title {
    text-align: center;
    margin-bottom: 50px;
}
.row.return-policy {
    margin-top: 20px;
}
h5.custom-heading.return {
    border-bottom: 2px solid black;
    width: 124px;
}
.legal ul {
    list-style: none;
}
.legal h6 {
    font-weight: bolder;
	color: #ffc600;
	    margin-bottom: 0px!important;
}

.legal {
    padding-left: 22px;
    margin-bottom: 10px;
	font-size: 13px;
}
.legal ul li a {
    color: #000;
}
.copyright p a {
    color: #000;
}
.col-6.price.full-width {
    width: 100%!important;
    max-width: 100%!important;
    flex: none!important;
}
form.filter_show, .form-check-label {
    font-size: 14px!important;
}

.DonationAmount .form-check-label {
    font-size: 16px!important;
}
.donation-form h2 {
    text-transform: capitalize;
}
#near-retaurent .retaurent-name, #near-retaurent .retaurent-img {
    cursor: pointer;
}
.row.bottom_row .col-lg-4 {
    border-right: 1px solid #fff;
    padding: 5px;
}
.col-lg-4 .R_donate {padding-top: 2px;width: 249px;text-align: center;margin: 0 auto;font-size: 25px;}
#Restaurant_banner_section .row.bottom_row.profile {
    background: #fff!important;
}
.col-lg-4 .R_donate {padding-top: 2px;width: 244px;text-align: center;margin: 0 auto;font-size: 25px;}

.R_donate.booktable a {
    background: #000!important;
    color: #fff!important;
    text-align: center;
}
section#Restaurant_banner_section {
    background-repeat: no-repeat;
    background-size: cover;
}

.tab-wrapper {display: flex;border-bottom: 2px solid #fecc21;}

.tab-button {
    float: left;
}

.tab-button {
    padding: 10px;
    text-align: center;
    margin-right: 10px;
    background: #fee396;
    color: #000;
    width: 172px!important;
}

.r-a-t {
    background: #eaeaea;
    min-height: 300px;
    border: 2px solid #fecc21;
}

.tab-wrapper:nth-child(2) {
}

.tab-button.active {
    background: #fecc21!important;
}
.tab-button:hover {
    cursor: pointer;
}
.panel-wrapper {
    padding: 10px;
}

.rview-one {
    padding: 0px 25px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 40px;
    padding-bottom: 60px;
}

.rview-one h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.rview-one p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.res-contant {
    margin-top: -8px;
}

.review-two {
    padding: 20px 25px;
}

.tab-two {
    padding: 0!important;
}

.review-three {
    border-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

.r-menu-left {
    padding-bottom: 0;
}

.r-maps {
    padding: 30px;
    padding-bottom: 52px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.r-maps iframe {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

.r-maps h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px
}

.r-maps p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.r-maps-para {
    padding: 30px;
    padding-bottom: 93px;
    border-right: 1px solid #e5e5e5;
}

.r-maps-para h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.r-maps-para p {
    color: #515151;
    margin-bottom: 0;
    line-height: 1.4;
}

.r-more {
    padding: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 50px;
}

.r-more h6 {
    color: #000;
    font-weight: 600;
    margin-bottom: 14px;
}

.r-more ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.r-more ul li {
    margin-bottom: 5px;
}

.r-more ul li span{
    display: inline-block;
    color: #40AE48;
    font-size: 14px;
    margin-right: 10px;
}
.panel-wrapper {
    background: #fff;
    min-height: 516px!important;
}

.panel-wrapper .R_donate a.btn {
    background: #fecc21;
    width: 100%;
    display: block;
    padding: 13px;
}

.panel-wrapper .R_donate.booktable a.btn {
    background: #000000;
    width: 100%;
    display: block;
    padding: 13px;
}


.viewmenu.row {
    padding-top: 49px;
}
.col-lg-6.col-md-6 .rview-one, .col-lg-6.col-md-6 .r-maps {
    border: none;
    text-align: center;
}
.col-lg-6.col-md-6 .r-maps iframe {
    width: 100%;
    height: 300px;
    border: 2px solid #ccc!important;
}
.rview-one.first {
    border-bottom: 1px solid #e4dfcd!important;
}
.claimnow .R_donate a.btn {
    background: #fecc21;
    width: 100%;
    display: block;
    padding: 13px;
    color: #000;
    border-radius: 0px!important;
}
.col-lg-4.claimnow .R_donate.orderfood {
    text-align: right!important;
    float: right;
    margin-top: 13px;
}
.col-lg-12.claimnow .R_donate.orderfood {
    width: 262px;
    text-align: center;
    margin: 0 auto;
    margin-top: 29px;
}
.no-booknow .r-a-t .tab-wrapper .tab-button:nth-child(3) {
    display: none;
}
.r-more.downloadapp img {width: 197px;}


.r-a-t {
    border: 0px;
    background: #fff;
}
.r-a-t .tab-wrapper {
    border-bottom: 1px solid #ccc;
    padding-top: 20px;
    padding-left: 12px;
    padding-right: 12px;
}

.r-a-t .tab-wrapper .tab-button {
    background: none;
}
.r-a-t .tab-wrapper .tab-button.active {
    background: none!important;
    border: 1px solid #ccc;
    border-bottom: 3px solid #fff;
    margin-bottom: -2px;
    border-radius: 5px 5px 0px 0px;
}


@font-face {
  font-family: Proxima Nova bd;
  src: url(/webfonts/Proxima-Nova-Bold.otf);
}
@font-face {
  font-family: Proxima Nova Rg;
  src: url(/webfonts/ProximaNova-Regular.otf);
}
img{
	max-width:100%;
}
body{
	font-family: Proxima Nova Rg!important;
	font-weight:normal;
}
header{
	padding:10px 0;
}
.login-btns {
    text-align: right;
}
a.login-btn {
    color: inherit;
    padding: 10px 15px;
    display: inline-block;
    margin-right: 10px;
}
a.login-btn i{
	margin-right:5px;
}
a.signup-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 15px;
    display: inline-block;
}
a.signup-btn i {
    margin-left:15px;
}
a.offer-btn {
    color: inherit;
    padding: 6px 25px;
    display: inline-block;
    margin-right: 10px;
    background: #ffc600;
}
a.search-btn {
    color: inherit;
    padding: 10px 15px;
    display: inline-block;
    margin-right: 10px;
}
div#logo img {
    width: 165px;
    margin-top: 5px;
}
.banner-img-sec .row {
    margin: 0;
}
.banner-img-sec .col-sm-6 {
    padding: 0;
}
.banner-img-sec img{
	width:100%;
}
section#banner {
    background: #ffc600;
	    position: relative;
}
.banner-content {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 100px;
}
.banner-txt h2 {
    font-weight: bold;
    font-size: 42px;
	margin-bottom:0;
}
.banner-txt p {
    font-size: 25px;
    color: #000;
}
span.find-icon {
    display: inline-block;
    background: #fecc21;
    padding: 17px 15px;
    float: left;
}
.find-food .search-input {
    height: 69px;
    border-width: 0;
    float: left;
    width: 52%;
    padding-left: 14px;
}
button.search-btn {
    background: #000;
    color: #fff;
    padding: 17px 25px;
    border-width: 0;
    font-weight: bold;
    font-size: 24px;
    float: left;
}
.find-food {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.banner-bottom {
    position: absolute;
    display: inline-block;
    width: 100%;
    bottom: 0;
	text-align: center;
}
span.choose-icon {
    margin-right: 10px;
}
span.tick-icon {
    margin-left: 10px;
}
span.choose-icon img {
    height: 32px;
}
.banner-bottom-text {
    padding: 20px 0;
}
.banner-bottom .container .col-md-4:last-child {
    border-right: 1px solid #fff;
}
.banner-bottom .col-md-4 {
    background: #ffc600;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
      color: black;
    }


    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: 1;
    }

    .slick-active {
      opacity: 1;
    }

    .slick-current {
      opacity: 1;
    }
section#looking-something {
    padding: 100px 0 0px;
	margin-bottom:70px;
}
section#looking-something .smething-slider {
	padding: 0px 0 70px;
   border-bottom:1px solid #ddd;
}
section#looking-something h2, #near-retaurent h2 {
    font-weight:bold;
}
.smething-slider {
    margin-top: 30px;
}
.slick-slider{
    margin-left: -18px;
    margin-right: -10px;
}
.slide-area {
    text-align: center;
}
.slide-area h4 {
    font-size:18px;
	margin-top:10px;
	color: #000;
}
.restaurent-box {
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
}
.retaurent-img {
    width: 45%;
    float: left;
}
#near-retaurent h2 {

    margin-bottom: 40px;
}
.retaurent-txt {
    padding-left: 20px;
    width: 55%;
    float: left;
}
.rating-rest {
    text-align: right;
    padding: 5px 5px 0;
}
.rating-rest i {
    color: #ffc106;
}
.retaurent-name h3 {
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 2px;
}
.retaurent-name h3 a{
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 2px;
}
span.rest-time img {
    height: 17px;
    margin-right: 10px;
    float: left;
    margin-top: 2px;
}
span.rest-close img{
	    height: 16px;
    margin-right: 10px;
    float: left;
    margin-top: 2px;
}
span.rest-close {
    float: right;
 right: 0;
}
.time-close {
    position: absolute;
    width: 55%;
    bottom: 0;
    padding-left: 20px;
    right: 0;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    padding-right: 10px;
}
.rest-badge {
    width: 125px;
    display: inline-block;
    position: absolute;
    left: -9px;
    top: 5px;
    padding: 5px 5px;
    text-align: center;
    font-weight: bold;
}
.rest-badge.best-seller {
    background: #fecc21;
}
.rest-badge.best-seller:before{
	    border-right: 10px solid #d8b026;
}
.rest-badge:before {
    content: "";
    border-right: 10px solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    bottom: -10px;
}
.rest-badge.popular-seller {
    background: #383636;
	color:#fff;
}
.rest-badge.popular-seller:before{
	    border-right: 10px solid #0e0e0e;
}
.rest-badge.recmend-seller {
    background: #ff7800;
}
.rest-badge.recmend-seller:before{
	    border-right: 10px solid #bb5f0d;
}
section#near-retaurent {
    margin-bottom: 100px;
}
section#cities {
    background: #ffc600;
    padding: 90px;
}
section#cities h2{
	font-weight:bold;
}
.cities-list {
    margin-top: 20px;
}
.cities-list ul {
    margin: 0px;
	list-style:none;
	padding:0;
}
.cities-list ul li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}
.cities-list ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/li-tick.png);
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: 12px;
    top: 7px;
}
footer{
	padding: 50px 0 20px;
}
.footer-logo img {
	width:170px;
}
.footer-subscribe h5 {
    font-weight: bold;
}
.footer-subscribe form {
    display: inline-block;
    width: 100%;
}
button.subs-submit {
    background: #febb04;
    border-width: 0;
    height: 45px;
    font-weight: bold;
    width: 27%;
}
input.subs-input {
    background: #f6f6f6;
    border-width: 0;
    padding-left: 10px;
    height: 45px;
    float: left;
    width: 73%;
}
.footer-subscribe {
    padding-top: 30px;
}
.footer-logo {
    margin-top: 70px;
}
.footer-follow ul{
	list-style:none;
	margin:20px 0 0;
	padding:0;
}
.footer-follow {
    padding: 0 20%;
}
.footer-follow ul li{
	margin-bottom:20px;
}
.footer-address {
    padding-top: 30px;
}
.footer-address p {
    display:inline-block;
	width:100%;
	margin-bottom:15px;
}
.footer-address span {
    float:left;
}
.footer-address img {
    float: left;
    margin-top: 5px;
    margin-right: 10px;
}
.footer-nav {
    border-top: 1px solid #ddd;
    padding: 15px 0;
    text-align: center;
}
.footer-nav ul{
	list-style:none;
	line-height:1;
}
.footer-nav a {
    color: inherit;
    padding: 0 10px;
    text-decoration: none;
}
.footer-nav ul li {
    display: inline-block;
    position: relative;
}
.footer-nav ul li:after {
    content: "";
    right: 0;
    width: 1px;
    height: 14px;
    background: #000;
    position: absolute;
    top: 3px;
}
.footer-nav ul li:last-child:after {
	width:0;
}
footer .col-md-6 {
    border-right: 1px solid #ddd;
}
footer .col-md-6:last-child {
    border-right: 0px solid #ddd;
}
.retaurent-img img{
	width:100%;
}
button.btn-order-ahead {
    position: absolute;
    right: 0;
    background: #fecc21;
    border-width: 0;
    width: 55%;
    bottom: 3px;
    padding: 10px;
	display:none;
}
.resto-order:hover button.btn-order-ahead{
	display:block;
}
.resto-order {
    position: relative;
}


/*--------------------------------------------------- Restaurant Page ----------------------------------------*/


#Restaurant_banner_section {
    background: #ffc600;
    padding-top: 50px;
    padding-bottom: 50px;
}
#Restaurant_banner_section .row .banner_left-side {
    border: 1px solid #fff;
    max-width: 25%;
    margin-right: 2%;
    padding: 0px;
	min-height: 220px;
}
#Restaurant_banner_section .row .banner_right-side {
    border: 1px solid #fff;
    max-width: 73%;
    vertical-align: middle;
}
#Restaurant_banner_section .row .banner_right-side p {
    margin-bottom: 0px;
}
#Restaurant_banner_section .row .banner_right-side .R_title h2 {
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 27px;
    color: #000;
}
#Restaurant_banner_section .row .banner_right-side .R_title {
    padding-top: 15px;
    padding-bottom: 15px;
	padding-left: 15px;
}
#Restaurant_banner_section .row.top_r-row {
    background: #fee396;
    text-align: center;
}
#Restaurant_banner_section .row.top_r-row .col-lg-6:first-child {
    border-right: 1px solid #fff;
}
#Restaurant_banner_section .R_hours {
    padding-top: 15px;
    padding-bottom: 15px;
}
#Restaurant_banner_section .R_hours p {
    font-size: 14px;
    color: #000;
    line-height: 16px;
}
#Restaurant_banner_section .R_hours b {
    font-size: 20px;
    color: #000;
    line-height: 19px;
}
#Restaurant_banner_section .R_offer {
    padding-top: 24px;
}
#Restaurant_banner_section .row.bottom_row {
    background: #fee396;
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-align: center;
    color: #000;
}
#Restaurant_banner_section .row.bottom_row .col-lg-3 {
    border-right: 1px solid #fff;
    padding: 5px;
}
#Restaurant_banner_section .row.bottom_row .col-lg-3 p {
    line-height: 12px;
    font-size: 13px;
}
#Restaurant_banner_section .row.bottom_row .col-lg-3:last-child {
    border-right: 0px;
}
#Restaurant_banner_section .row.bottom_row b {
    font-size: 19px;
    letter-spacing: 1px;
}
#Restaurant_banner_section .R_donate a.donate_btn {
    background: #fecc21;
    width: 100%;
    display: block;
    padding: 13px;
}
#Restaurant_banner_section .R_order,
#Restaurant_banner_section .R_time,
#Restaurant_banner_section .R_rating {
    padding-top: 5px;
    padding-bottom: 5px;
}
#Restaurant_banner_section .R_donate a.donate_btn i.fas.fa-long-arrow-alt-right {
    margin-left: 20%;
}
#Restaurant_banner_section .R_donate a.donate_btn:hover {
    opacity: 0.8;
}
#Restaurant_banner_section .col-lg-12.addrss p {
    padding-left: 15px;
}
#Restaurant_banner_section .col-lg-12.addrss p img {
    width: 13px;
    margin-right: 6px;
    margin-top: -4px;
}
#Restaurant_banner_section .retaurent-banner_img img {
    width: 100%;
    height: 100%!important;
    position: absolute;
}
#Restaurents_details {
    margin-top: 70px;
}
#Restaurents_details h2.headings {
    color: #000;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 15px;
}
#Restaurents_details .category_section ul {
    list-style: none;
	padding: 0px;
}
#Restaurents_details .category_section ul li a {
    color: #000000c7;
    font-size: 25px;
    padding: 12px;
    width: 100%;
    display: block;
    font-weight: 100!important;
}
#Restaurents_details .cart_details {
    border: 1px solid #ccc;
}
#Restaurents_details .cart_heading h4 {
    padding: 15px;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
}
#Restaurents_details .cart_addons {
    min-height: 200px;
    border-bottom: 1px solid #ccc;
}
#Restaurents_details .cart_details ul {
    list-style: none;
    padding: 0px;
}
#Restaurents_details .cart_details ul li {
    padding-left: 15px;
    padding-right: 15px;
    overflow: auto;
}
#Restaurents_details .cart_details ul li span.right_side {
    float: right;
}
#Restaurents_details .cart_addons a.addons_btn {
    background: #eee;
    padding: 8px 24px;
    display: block;
}
#Restaurents_details .cart_listing {
    margin-top: 10px;
}
#Restaurents_details .cart_listing ul li {
    border-bottom: 1px solid #ccc;
    padding-top: 7px;
    padding-bottom: 7px;
}
#Restaurents_details .cart_listing ul li li.add_tips select {
    border: 0px!important;
}
#Restaurents_details .cart_listing ul li select {
    border: 0px;
}
#Restaurents_details .cart_checkout h4 {
    font-size: 20px;
}
#Restaurents_details .cart_checkout button.checkout_btn {
    width: 100%;
    padding: 0px;
    border: 0px;
}
#Restaurents_details .cart_checkout {
    padding: 15px;
    padding-top: 0px;
}
#Restaurents_details .cart_checkout ul li {
    padding: 0px;
}
#Restaurents_details .cart_checkout button.checkout_btn a {
    color: #000;
    padding: 10px;
    display: block;
    font-size: 22px;
    background: #ffc600;
    width: 100%;
}





/*-------------------------------Offer page----------------------------------*/

#Offers_page {
    margin-top: 40px;
}
#Offers_page .row.page_header_row {
    border: 2px solid #ffeebe;
}
#Offers_page .row.page_header_row .col-lg-3 {
    border-right: 2px solid #ffeebe;
}
#Offers_page .row.page_header_row h2 {
    font-size: 22px;
    margin: 0px;
    padding: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}
#Offers_page .row.page_content_row {
    background: #ffeebe;
    padding: 60px 45px 45px 45px;
}
#Offers_page .row.page_content_row .restaurent-box {
    background: #fff;
	border: 0px;
	margin-bottom: 0px;
}
#Offers_page .row.page_content_row .restaurent-box .retaurent-img img {
    max-width: 120px;
    margin-top: 40px;
}
#Offers_page .row.page_content_row .restaurent-box .retaurent-img {
     min-height: 200px;
    text-align: center;
    border-right: 2px solid #ffeebe;
}
#Offers_page .row.page_content_row .restaurent-box .time-close.combo_dropdown {
    background: #fde39b;
    border: 0px;
    font-size: 16px;
    color: #000;
}
#Offers_page .row.page_content_row .restaurent-box .time-close.combo_dropdown img {
    width: 24px;
}
#Offers_page .row.page_content_row .restaurent-box .time-close.combo_dropdown img.down_arrow {
    width: 16px;
    float: right;
    margin-top: 8px;
}
#Offers_page .row.page_content_row .order_details .row {
    background: #fff;
    padding-top: 25px;
    margin-bottom: 15px;
}
#Offers_page .row.page_content_row .order_details .row ul {
    list-style: none;
    padding: 0px;
 }
#Offers_page .row.page_content_row .order_details .row ul li {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 7px;
    padding-left: 30px;
    position: relative;
}
#Offers_page .row.page_content_row .order_details .row ul li:last-child {
    border-bottom: 0px;
}
#Offers_page .row.page_content_row .order_details .row ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/li-tick.png);
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: 12px;
    top: 7px;
 }
 #Offers_page .row.page_content_row .order_details .row .col-md-12 {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ccc;
}
#Offers_page .row.page_content_row .order_details .row .col-md-12 button.ord_btn {
    background: #fecc21;
    padding: 12px 40px;
    border: 0px;
    font-weight: 600;
    font-size: 18px;
}
#Offers_page .row.page_content_row .order_details {
	display:none;
}


/*------------------------------------------------------------------- Responsive ------------------------------------------------*/

@media screen and (max-width:1500px) {
.banner-img-sec img {
    max-width: unset;
    width: auto;
    min-height: 500px;
    max-height: 500px;
}
.banner-img-sec {
    overflow: hidden;
}
}
@media screen and (max-width:990px) {
footer .col-md-6 {
    border-right: 0px solid #ddd;
	margin-bottom:40px;
}
.banner-bottom .container {
    width: 100%;
    max-width: 100%;
}
}
@media screen and (max-width:767px) {
.banner-bottom {
    position: static;
}
.banner-img-sec {
    overflow: hidden;
    display: none;
}
.banner-content {
    position: static;
    width: 100%;
    top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}
.retaurent-img {
    width: 100%;
    float: left;
}
.retaurent-txt {
    padding-left: 20px;
    width: 100%;
    float: left;
}
.time-close {
    position: static;
    width: auto;
    bottom: 0;
    padding-left: 20px;
    right: 0;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    padding-right: 10px;
    margin-left: -20px;
}
.footer-follow {
    padding: 0;
}
.footer-nav ul li {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
button.btn-order-ahead {
    position: static;
    right: 0;
    background: #fecc21;
    border-width: 0;
    width: 100%;
    bottom: 3px;
    padding: 10px;
    display: block;
    margin-bottom: 30px;
}
.restaurent-box {
    margin-bottom: 0px;
    display: inline-block;
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
}
.resto-order {
    position: relative;
    margin-bottom: 30px;
}
}

@media screen and (max-width:574px) {
span.find-icon img {
    width: 17px;
}
span.find-icon {
    display: inline-block;
    background: #fecc21;
    padding: 14px 15px;
    float: left;
}
.find-food .search-input {
    height: 52px;
    border-width: 0;
    float: left;
    width: 52%;
    padding-left: 14px;
}
button.search-btn {
    background: #000;
    color: #fff;
    padding: 17px 10px;
    border-width: 0;
    font-weight: bold;
    font-size: 13px;
    float: left;
}
.banner-txt h2 {
    font-weight: bold;
    font-size: 34px;
    margin-bottom: 0;
}
.banner-txt p {
    font-size: 18px;
    color: #000;
}
.smething-slider {
    margin-top: 75px;
}
.footer-logo {
    margin-top: 0px;
}
.footer-subscribe {
    padding-top: 0px;
}
section#cities {
    background: #ffc600;
    padding: 50px 0;
}
a.signup-btn i {
    margin-left: 5px;
}
a.signup-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 12px;
    display: inline-block;
	font-size: 14px;
}
a.login-btn {
    color: inherit;
    padding: 10px 11px;
    display: inline-block;
    margin-right: 0;
	font-size: 14px;
}
.login-btns {
    text-align: right;
    margin-top: 6px;
}
div#logo img {
    width: 165px;
    margin-top: 5px;
    min-width: 160px;
}
section#looking-something {
    padding: 50px 0 0px;
    margin-bottom: 50px;
}
section#looking-something .smething-slider {
    padding: 0px 0 40px;
    border-bottom: 1px solid #ddd;
}
.cities-list {
    margin-top: 0px;
}
section#Restaurant_banner_section .row {
    display: block!important;
}

#Restaurant_banner_section .row .banner_left-side {
    width: 100%!important;
    max-width: 100%!important;
}

#Restaurant_banner_section .row .banner_right-side {
    max-width: 100%!important;
    width: 100%;
}
}
.banner-txt h2 {
    color: #fff!important;
    font-size: 46px;
}
.banner-bottom-text {
    color: #000!important;
    font-size:17px;
}
.R_donate.orderfood.viewrestaurant {
    display: none;
}

.outletshop .R_donate.orderfood.viewmenu {
    display: none;
}

.outletshop .R_donate.orderfood.viewrestaurant {
    display: block!important;
}
.R_donate.orderfood.hideit {
    display: none;
}
.col-lg-3.hideit {
    display: none;
}
@media(max-width:500px){
  #modal1 .modal-footer {
    display: flex;
}

#modal1 .modal-footer button {
    font-size: 13px;
    float: left;
}

}
.reg-form form {
    padding: 10px;
}

.reg-form a.nav-link.active {
    font-weight: 600;
    color: #000;
}
.reg-form a.nav-link {
    color: #000;
}
.owl-carousel .owl-item img {
    height: 290px;
    width: 100%;
}

h2.rest-home-name {
    height: 60px;
}

header {
    padding: 10px 0
}

.login-btns {
    text-align: right
}

a.login-btn {
    color: inherit;
    padding: 10px 15px;
    display: inline-block;
    margin-right: 10px
}

a.login-btn i {
    margin-right: 5px
}

a.signup-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 15px;
    display: inline-block
}

a.signup-btn i {
    margin-left: 15px
}

a.offer-btn {
    padding: 6px 25px;
    background: #ffc600
}

a.offer-btn,a.search-btn {
    color: inherit;
    display: inline-block;
    margin-right: 10px
}

a.search-btn {
    padding: 10px 15px
}

div#logo img {
    width: 165px;
    margin-top: 5px
}

.banner-img-sec .row {
    margin: 0
}

.banner-img-sec .col-sm-6 {
    padding: 0
}

.banner-img-sec img {
    width: 100%
}

section#banner {
    background: #ffc600;
    position: relative
}

.banner-content {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 100px
}

.banner-txt h2 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 0
}

.banner-txt p {
    font-size: 25px;
    color: #000
}

span.find-icon {
    display: inline-block;
    background: #fecc21;
    padding: 17px 15px;
    float: left
}

.find-food .search-input {
    height: 69px;
    border-width: 0;
    float: left;
    width: 52%;
    padding-left: 14px
}

button.search-btn {
    background: #000;
    color: #fff;
    padding: 17px 25px;
    border-width: 0;
    font-weight: 700;
    font-size: 24px;
    float: left
}

.find-food {
    margin-top: 30px
}

.banner-bottom,.find-food {
    display: inline-block;
    width: 100%
}

.banner-bottom {
    position: absolute;
    bottom: 0;
    text-align: center
}

span.choose-icon {
    margin-right: 10px
}

span.tick-icon {
    margin-left: 10px
}

span.choose-icon img {
    height: 32px
}

.banner-bottom-text {
    padding: 20px 0
}

.banner-bottom .container .col-md-4:last-child {
    border-right: 1px solid #fff
}

.banner-bottom .col-md-4 {
    background: #ffc600;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff
}



section#banner {
    background-image: url(/img/home-bg.jpg)!important;
    background-size: 100% 100%!important;
    min-height: 650px
}

header {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    align-items: center;
    align-self: center
}

.banner-content {
    padding-top: 160px!important;
    color: #fff;
    display: flex;
    position: relative!important
}

.dinereservebanner .banner-txt h2 {
    font-size: 97px;
    line-height: 1;
    margin-top: 50px
}

.dinereservebanner .find-food .find-icon {
    background: #e3731f
}

.dinereservebanner button.search-btn {
    background: #e3731f!important
}

.dinereservebanner .banner-txt p {
    color: #e3731f!important
}

.login-btns a {
    background: none!important;
    border: 1px solid #e3731f!important;
    color: #fff!important;
    font-size: 15px;
    padding: 5px 15px!important
}

.login-btns svg {
    display: none!important
}

.login-btns a:hover {
    background: #fff!important;
    color: #000!important;
    text-decoration: none!important;
    border-color: #fff!important
}


.search-bar-container {
    width: 320px;
    float: left;
    background: #fff
}

button.Locate-button img {
    width: 20px;
    margin-top: 22px;
    margin-right: 4px
}

button.Locate-button {
    text-align: right;
    float: right
}

a.search-btn input {
    background: #000;
    color: #fff;
    padding: 17px 25px;
    border-width: 0;
    font-weight: 700;
    font-size: 24px;
    float: left
}

a.search-btn {
    float: left;
    margin: 0!important;
    padding: 0!important
}

button.clear-button {
    float: right;
    margin-top: 17px;
    margin-right: 3px;
    border: none
}

.login-btns {
    margin-top: 30px
}

.login-btns a {
    font-size: 18px;
    padding: 10px 50px!important;
    transition: all .8s
}

.login-btns a.login-btn {
    color: #000!important;
    border-color: #fff!important;
    overflow: hidden;
    position: relative
}

.login-btns a.signup-btn {
    color: #e3731f!important
}

a.signup-btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    top: 0;
    right: -100%;
    z-index: -1;
    transition: .8s
}

a.signup-btn {
    position: relative;
    overflow: hidden
}

.login-btns a:hover {
    background: transparent!important
}

a.signup-btn:hover:after {
    right: 0;
    transition: .8s
}

.login-btns a.login-btn:before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .8s
}

.login-btns a.login-btn:hover:before {
    left: -100%;
    transition: .8s
}

.login-btns a.login-btn:hover {
    color: #e3731f!important;
    border-color: #e3731f!important
}

.login-btns a.signup-btn:hover {
    border-color: #fff!important;
    color: #000!important
}

.search-bar-container {
    width: 320px;
    float: left;
    background: #fff
}

button.Locate-button img {
    width: 20px;
    margin-top: 22px;
    margin-right: 4px
}

button.Locate-button {
    text-align: right;
    float: right
}
.main-header.transparent {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    align-items: center;
    align-self: center;
    background-image: none!important;
}

.find-food {
    display: none;
}

.retaurent-img img {
    width: 100%
}

button.btn-order-ahead {
    position: absolute;
    right: 0;
    background: #fecc21;
    border-width: 0;
    width: 55%;
    bottom: 3px;
    padding: 10px;
    display: none
}

.resto-order:hover button.btn-order-ahead {
    display: block
}

.resto-order {
    position: relative
}

.retaurent-txt {
    padding-left: 20px;
    width: 55%;
    float: left
}

.rating-rest {
    text-align: right;
    padding: 5px 5px 0
}

.rating-rest i {
    color: #ffc106
}

.retaurent-name h3,.retaurent-name h3 a {
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 2px
}

span.rest-time img {
    height: 17px
}

span.rest-close img,span.rest-time img {
    margin-right: 10px;
    float: left;
    margin-top: 2px
}

span.rest-close img {
    height: 16px
}

span.rest-close {
    float: right;
    right: 0
}
.retaurent-img img {
    height: 190px;
    width: 260px;
    -o-object-fit: cover;
    object-fit: cover
}

.retaurent-name a {
    color: #000
}

.retaurent-name a:hover {
    text-decoration: none
}

span.rest-time a {
    color: #000
}

span.rest-time a:hover {
    text-decoration: none
}

.R_donate a,a.donate_btn:hover {
    color: #000
}

.time-close {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border-top: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 10px 10px 20px
}

.rest-badge {
    width: 125px;
    display: inline-block;
    position: absolute;
    left: -9px;
    top: 5px;
    padding: 5px;
    text-align: center;
    font-weight: 700
}

.rest-badge.best-seller {
    background: #fecc21
}

.rest-badge.best-seller:before {
    border-right: 10px solid #d8b026
}

.rest-badge:before {
    content: "";
    border-right: 10px solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    bottom: -10px
}

.rest-badge.popular-seller {
    background: #383636;
    color: #fff
}

.rest-badge.popular-seller:before {
    border-right: 10px solid #0e0e0e
}

.rest-badge.recmend-seller {
    background: #ff7800
}

.rest-badge.recmend-seller:before {
    border-right: 10px solid #bb5f0d
}
.why {
    background-color: #f4f4f4!important;
}

  .h-form.bt-form-home form-control {
    display: block;
    width: 100%;
    padding: 9px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0px 5px 5px 0px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

  .h-form.bt-form-home .rc-time-picker-input {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: -9px 12px;
    height: 28px;
    cursor: text;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  }


  .h-form.bt-form-home .rc-time-picker-clear {
    position: absolute;
    right: 16px;
    cursor: pointer;
    overflow: hidden;
    width: 20px;
    height: 22px;
    text-align: center;
    line-height: 34px;
    top: 3px;
    margin: 0;
  }
  .search-form.listrs {
      margin-top: -40px;
      padding: 4px;
      background: #c5641b;
  }

  .contact.page {
      padding-left: 0px!important;
  }
  .errormsg {
      color: red;
  }

  .listrs .b-page-one {
 	background-color: #fff;
 	margin-bottom: 20px;
 	border-radius: 6px;
 	height: 220px;
 }

  .listrs .input-group-text {
 	display: -webkit-box;
 	display: -ms-flexbox;
 	display: flex;
 	-webkit-box-align: center;
 	-ms-flex-align: center;
 	align-items: center;
 	padding: .375rem .75rem;
 	margin-bottom: 0;
 	font-size: 1rem;
 	font-weight: 400;
 	line-height: 1.5;
 	color: #fff;
 	text-align: center;
 	white-space: nowrap;
 	background-color: #c5641b;
 	border-radius: .25rem;
 }
  .listrs .input-group-prepend {
 	margin-right: -1px;
 	height: 41px;
 }
  .listrs select.form-control:not([size]):not([multiple]) {
 	height: calc(2.45rem + 2px) !important;
 }
 .listrs .form-control {
 	display: block;
 	padding: .375rem .75rem;
 	font-size: 1rem;
 	line-height: 1.5;
 	color: #495057;
 	background-color: #fff;
 	background-clip: padding-box;
 	border: 1px solid #ced4da;
 	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
 	height: 41px;
 	border-radius: 0px 5px 5px 0px;
 }


 .booktablepage .b-menu-left.r-menu-left {
  	padding: 25px;
 }

 .booktablepage .bguest {
   	padding: 0px 35px 0px 29px;
 }

 .booktablepage .bguest p {
 	color: #fff !important;
 	font-weight: 500;
 	font-size: 18px;
 	margin-top: 0px;
 }

 .booktablepage .b-guest-link {
 	margin-left: 25px;
 	margin-top: 10px;
 	margin-bottom: 30px;
 }

 .booktablepage .b-guest-one input {
 	display: block;
 	width: 100% !important;
 	padding: 6px 12px;
 	color: #fff;
 	outline: none;
 	border: none;
 	border: 1px solid #e2e2e2;
 	margin-bottom: 20px;
 	background: #000;
 }

 .booktablepage .b-guest-one label {
 	font-size: 16px;
 	font-weight: 500;
 	margin-bottom: 5px;
 	color: #fff;
 }

 .booktablepage .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
 	color: #fff !important;
 	background-color: #c5641b;
 	border-color: #dee2e6 #dee2e6 #fff;
 	color: #fff;
 }

 .booktablepage .tab-content {
 	margin-top: 50px;
 }

 .booktablepage .b-menu-left {
 	background-color: #000;
 	border-radius: 6px;
 	padding-bottom: 20px;
 }

 .booktablepage .b-menu-left.r-menu-left .nav.nav-tabs a {
 	color: #fff;
 }

 .booktablepage .batable .h-form.bt-form-home {
 	background: #000 !important;
 	padding-bottom: 25px;
 	padding-top: 0px;
 	height: 100px;
 	color: #fff;
 }

 .booktablepage .rc-time-picker-input {
 	background: #000 !important;
 }

 .booktablepage .b-guest-link .StripeCheckout span {
 	background: #c5641b;
 	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 	position: relative;
 	display: block;

 	color: rgb(255, 255, 255);
 	font-weight: 500;
 	padding: 5px 30px;
 }

  .booktablepage .b-guest-link .StripeCheckout span {
 	background: #c5641b;
 	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 	position: relative;
 	display: block;
 	color: rgb(255, 255, 255);
 	font-weight: 500;
 	padding: 5px 30px;
 	border: none;
 	height: 41px;
 }

 .booktablepage .nav-tabs {
   	border-bottom: 1px solid #dee2e6;
   	margin-left: 34px;
   	margin-right: 48px;
 }

 .booktablepage .h-form.bt-form-home .rc-time-picker-input {
 	width: 100%;
 	position: relative;
 	display: inline-block;
 	padding: -9px 12px;
 	height: 28px;
 	cursor: text;
 	font-size: 12px;
 	line-height: 1.5;
 	color: #495057 !important;
 	background-color: #000 !important;
 	border: 1px solid #d9d9d9;
 	border-radius: 4px;
 	transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
 }

 .booktablepage .form-control {
 	display: block;
 	width: 100%;
 	padding: .375rem .75rem;
 	font-size: 1rem;
 	line-height: 1.5;
 	color: #495057;
 	background-color: #000;
 	background-clip: padding-box;
 	border: 1px solid #ced4da;
 	border-radius: .25rem;
 	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
 }

 .booktablepage .h-form.bt-form-home .rc-time-picker-clear {
 	cursor: pointer;
 	text-align: center;
 	line-height: 27px;
 	margin-right: -11px;
 }

 .booktablepage .b-page-one:hover {
   background-color: #000;
   color: #fff;
 }

 .booktablepage .batable .h-form-wrapper.text-center form ul li span.rc-time-picker.form-control {
 	padding: 0px;
 	border: 0px;
 	border-radius: 5px !important;
 	background-color: #fff !important;

 }

 .booktablepage .batable .h-form-wrapper.text-center form ul li span.rc-time-picker.form-control input.rc-time-picker-input {
 	height: 36px;
 	border-radius: 9px !important;
 	background-color: #fff !important;
 	color: #fff;
 	border: none;
 }
 .booktablepage .batable .mb-3.input-group .form-control {
 	padding-left: 11px !important;
 	border-radius: 5px !important;
 }
 .booktablepage .b-guest-one input {
 	display: block;
 	width: 100% !important;
 	padding: 6px 12px;
 	color: #fff;
 	outline: none;
 	border: none;
 	border: 1px solid #e2e2e2;
 	margin-bottom: 20px;
 	background: #000;
 	border-radius: 5px;
 }

 .booktablepage .batable .mb-3.input-group .form-control {
 	padding-left: 11px !important;
 	border-radius: 5px !important;
     	background-color: #fff !important;
 }
 .booktablepage .b-guest-one input {
 	display: block;
 	width: 100% !important;
 	padding: 6px 12px;
 	color: #000;
 	outline: none;
 	border: none;
 	border: 1px solid #e2e2e2;
 	margin-bottom: 20px;
 	background: #000;
 	border-radius: 5px;
      	background-color: #fff !important;
 }

 .booktablepage .batable .h-form-wrapper.text-center form ul li .mb-3.input-group {
 	box-shadow: none !important;
 	border: 1px solid #fff !important;
 	border-radius: 5px;
 	background-color: #fff;
 }

 .Booking-confrmation {
     color: #fff!important;
 }

 .cost-per-person {
      color: #fff;
      margin-top: 34px;
      border: 3px solid #c5641b;
      padding: 15px 10px 5px 5px;
      border-radius: 5px;
  }
  p.email_error.error {
      color: red;
      font-size: 16px;
      margin-left: 28px;
      margin-top: -25px;
  }
  .adminSignup {
      min-height: calc(100vh - /* height of your header and footer */);
  }

  .signup-form {
      max-width: 400px;
      width: 100%;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .signup-error {
      color: red;
      font-size: 12px;
      margin-top: 5px;
  }
  .Login p.email_error.error {
      margin-left: auto;
      margin-top: -12px;
  }

  .pymntbtn a {
    text-align: right;
    float: right;
    margin-top: 10px;
}
li.signupbtn {
    background: #c5641b;
    padding-right: 15px;
    border-radius: 5px;
    border: 2px solid #c5641b;
}

li.signupbtn:hover {
    background: none!important;
    border: 2px solid #c5641b;
}
button.hamburger.hamburger--squeeze.navbar-toggler {
    background: #fff!important;
    padding: 8px 5px 0px 5px;
    opacity: 1;
}
.approve {
    text-align: left;
    float: left;
}

.approve button {
    font-size: 21px;
    background: green;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 13px;
    margin-left: 0px;
}
.top-header-right ul {
    display: flex;
    width: max-content;
}

.top-header-right ul li.signupbtn a {
    color: #fff!important;
    opacity: 1;
    padding: 3px;
}

.top-header-right ul li.signupbtn {
    padding: 1px!important;
    margin-top: -5px;
}
.col-md-6.offerlist {
    margin-left: 0px!important;
    padding: 0!important;
    font-size: 18px;
    font-weight: 600;
    color: #000!important;
}

.col-md-6.offerlist p {
    color: #000;
}

span.restaurant-phone {
    color: #fff!important;
}

span.restaurant-address {color: #fff!important;}
.approvedone .approve {
    display: none;
}

span.approvedsuccess {
    color: green;
    font-size: 23px;
    text-align: center;
    margin: 0 auto;
}

.approve.deleterest button {
    background: red!important;
    cursor: pointer;
}

.approve button {cursor: pointer;}
.Login.success-signup {
    font-size: 25px;
    text-align: center;
    height: 559px;
}

.admin_body {
 width: 100%;
 background-color: #fff !important;
 height: auto;
}

.admin_body .restaurant-info {
 background-color: #c5641b !important;
 margin-top: 40px;
 padding: 30px 20px;
 margin-bottom: 40px;
 color: white;
 box-shadow: 0 0 20px #000;
}

.admin_body .approve.deleterest button {
 background: red !important;
 cursor: pointer;
 padding: 10px 20px 10px 20px;
 margin-left: 11px;
 font-weight: 500;
 font-size: 16px;
}
.admin_body .approve.deleterest button {
 background: red !important;
 cursor: pointer;
 padding: 10px 20px 10px 20px;
 margin-left: 11px;
 font-weight: 500;
 font-size: 16px;
 margin-top: 15px;
 margin-bottom: 15px;
}

.admin_body .form-control {
 display: block;
 width: 100%;
 padding: .375rem .75rem;
 font-size: 1rem;
 line-height: 1.5;
 color: #495057;
 background-color: #fff;
 background-clip: padding-box;
 border: 1px solid #ced4da;
 border-radius: .25rem;
 transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
 padding: 10px;
 margin: 0px;
}

.admin_body button.org-btn-create.btn.btn-primary {
 / text-align: center; /
 / padding-left: 50%; /
 margin-left: 0% !important ;
}

.admin_body .form-group {
 margin-bottom: 0px;
}


.admin_body .restaurant-info h1 {
 text-align: center;
 padding-bottom: 10px;
 font-family: sans-serif;
 margin-bottom: 0px;
 margin-top: 40px;
}

.admin_body .restaurant-info {
 background-color: #e6d8cd;
 margin-top: 40px;
 padding: 36px 20px;
 margin-bottom: 40px;
 box-shadow: 0 0 20px #000;
 padding-top: 50px !important;
}

.admin_body .btn {
 display: inline-block;
 font-weight: 400;
 text-align: center;
 white-space: nowrap;
 vertical-align: middle;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 border: 1px solid transparent;
 padding: 10px 20px 10px 20px;
 font-size: 1rem;
 line-height: 1.5;
 border-radius: .25rem;
 transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}






/* Admin Page Css */

.admin_body .row {
    margin-left: 0px;
    margin-right: 0px;
}
.admin_body {
    display: flex;
}
.admin_body .row:first-child {
    flex: 0 0 25%;
}
.admin_body .row:last-child {
    flex: 0 0 75%;
}
.admin_body .header-logo.col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    border-bottom: 1px dashed #c5641b78;
    padding: 10px 10px 30px 10px;
}
.admin_body .header-menu.col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
}
.admin_body .header-menu.col-md-10 ul.menu-link {
    padding-left: 0px;
}
.admin_body .header-menu.col-md-10 ul.menu-link li {
    padding: 0px;
    margin: 0px;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.admin_body .header-menu.col-md-10 ul.menu-link li a {
    padding: 10px;
    display: block;
    position: relative;
    z-index: 7;
}
.admin_body .header-menu.col-md-10 ul.menu-link li a, .admin_body .header-menu.col-md-10 ul.menu-link li a span {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.admin_body .header-menu.col-md-10 ul.menu-link li:last-child {
    background: transparent;
}
.admin_body .header-menu.col-md-10 ul.menu-link li > span {
    font-size: 18px;
    font-weight: 400;
    padding: 10px!important;
    display: block;
    color: #fff;
    border: 2px solid;
}
.admin_body .header-menu.col-md-10 ul.menu-link li > span:hover {
    background: #c5641b;
    border-color: #c5641b;
}
.admin_body .header-menu.col-md-10 ul.menu-link li a:before {
    content: "";
    position: absolute;
    width: 2%;
    height: 100%;
    background: #c5641b;
    top: 0px;
    z-index: -1;
    transition: 0.5s all;
     left: 0px;
}
.admin_body .header-menu.col-md-10 ul.menu-link li a:hover:before {
    width: 100%;
}
.admin_body .header-menu.col-md-10 ul.menu-link li a:hover span {
    color: #fff;
}
.admin_body .col-md-6.restaurant-info {
    max-width: 86%;
}
.admin_body .col-md-6.restaurant-info table.table tr th {
    border: 1px solid #fff!important;
    text-align: center;
    font-size: 14px;
    padding: 7px;
    background: #000000;
    vertical-align: middle;
}
.admin_body .col-md-6.restaurant-info table.table tr td {
    border: 1px solid #fff!important;
    text-align: center;
    font-size: 14px;
    padding: 7px;
}
@media(max-width:600px){
    .admin_body {
        display: block;
    }
}
.admin_body .RestaurantInfo-confrmation {
    margin: 0 auto;
    background: #c5641b;
    color: #fff;
    background-color: #c5641b !important;
    margin-top: 40px;
    padding: 30px 20px;
    margin-bottom: 40px;
    color: white;
    flex: 100% 0;
}
.admin_body .ResturantInfo-loader {
    margin: 0 auto;
    background: #c5641b;
    color: #fff;
    background-color: #c5641b !important;
    margin-top: 40px;
    padding: 30px 20px;
    margin-bottom: 40px;
    color: white;
    flex: 100% 0;
    max-width: 550px!important;
}
