
a {
  color: #ac5f62;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
font-weight: 600;
}

.header-menu-nav .logo-img img, .header-menu-nav-mobile .logo-img img {
  width: 70px;
  height: 70px;
}

#restaurant_headings_container, #restaurant_search_div, #mobile_nav {
background-color: #dfdfdf;
}

#page_header .navbar {
padding: 10px;
font-family: 'Rubik', sans-serif;
font-size: 11px;
text-transform: uppercase;
border-bottom: none;
box-shadow: 3px 4px 8px rgba(0,0,0,0.4);
}

#page_header .navbar-top {
padding: 10px;
font-family: 'Rubik', sans-serif;
line-height: 25px;
color: #FFFFFF;
}

#page_header .navbar-top a {
color: #FFFFFF;
}

#page_header .navbar-nav {
margin-top: 20px;
}

#page_header .navbar-nav a {
font-size: 18px;
font-weight: 600;
}

#page_header .nav > li > a:hover,
#page_header .nav > li > a:focus {
background-color: #19a0a1;
}

#page_header .navbar-toggle:hover {
background-color: #cbcbcb;
}

.navbar-default {
  background-color: #ffffff;
  border-color: #2a2a2a;
}

.navbar-default .navbar-nav > li > a {
  color: #2a2a2a;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #333;
  color: #ffffff;
}


/* social icons */
#social-icons {
float: left;
margin: 8px 10px 0;
}

#social-icons a.social {
  overflow: hidden;
  zoom: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  margin: 0 0 0 6px;
  width: 26px;
  height: 26px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: inline-block;
  float: left;
  text-index: -9999px;
     background: url('../images/social-icons-black.png') no-repeat top left;
}

#social-icons a.social:hover {
    overflow: hidden;
  zoom: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: .8;
  -khtml-opacity: .8;
  opacity: .8;
  margin: 0 0 0 6px;
  width: 26px;
  height: 26px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: inline-block;
  float: left;
  text-index: -9999px;

}

#social-icons a.social.facebook{ background-position: 0 0; width: 26px; height: 26px; }
#social-icons a.social.foursquare{ background-position: -31px 0; width: 26px; height: 26px; }
#social-icons a.social.google{ background-position: -62px 0; width: 26px; height: 26px; }
#social-icons a.social.tripadvisor{ background-position: -93px 0; width: 26px; height: 26px; }
#social-icons a.social.twitter{ background-position: -124px 0; width: 26px; height: 26px; }
#social-icons a.social.urbanspoon{ background-position: -155px 0; width: 26px; height: 26px; }
#social-icons a.social.yelp{ background-position: -186px 0; width: 26px; height: 26px; }
#social-icons a.social.instagram{ background-position: -217px 0; width: 26px; height: 26px; }
#social-icons a.social.vimeo{ background-position: -248px 0; width: 26px; height: 26px; }
#social-icons a.social.pinterest{ background-position: -279px 0; width: 26px; height: 26px; }
#social-icons a.social.linkedin{ background-position: -310px 0; width: 26px; height: 26px; }
#social-icons a.social.youtube{ background-position: -341px 0; width: 26px; height: 26px; }


#social-icons a.social:hover.facebook{ background-position: 0 0; width: 26px; height: 26px; }
#social-icons a.social:hover.foursquare{ background-position: -31px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.google{ background-position: -62px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.tripadvisor{ background-position: -93px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.twitter{ background-position: -124px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.urbanspoon{ background-position: -155px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.yelp{ background-position: -186px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.instagram{ background-position: -217px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.vimeo{ background-position: -248px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.pinterest{ background-position: -279px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.linkedin{ background-position: -310px 0; width: 26px; height: 26px; }
#social-icons a.social:hover.youtube{ background-position: -341px 0; width: 26px; height: 26px; }



#global-cart > i.fa.fa-shopping-bag {
margin-top: 1px;
  margin-left: 4px;
  justify-content: center;
  display: flex;
  position: relative;
}


/* css3 animations */
.transition-slideup {
animation-name: transition-slideup;
-webkit-animation-name: transition-slideup;

animation-duration: 1s;
-webkit-animation-duration: 1s;

animation-timing-function: ease;
-webkit-animation-timing-function: ease;

visibility: visible !important;
}

@keyframes transition-slideup {
0%   { transform: translateY(100%); }
50%  { transform: translateY(-8%); }
65%  { transform: translateY(4%); }
80%  { transform: translateY(-4%); }
95%  { transform: translateY(2%); }
100% { transform: translateY(0%); }
}

@-webkit-keyframes transition-slideup {
0%   { -webkit-transform: translateY(100%); }
50%  { -webkit-transform: translateY(-8%); }
65%  { -webkit-transform: translateY(4%); }
80%  { -webkit-transform: translateY(-4%); }
95%  { -webkit-transform: translateY(2%); }
100% { -webkit-transform: translateY(0%); }
}



/* content */
#page_content #carousel {
position: relative;
left: 0px;
width: 100%;
margin-bottom: 0px;
}

#page_content #carousel .background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;

background-repeat: no-repeat;
background-position: center center;
background-size: cover;
/*  background-image: url('../images/carousel-1.jpg');*/
z-index: -1;
}

#page_content .content-shadow {
width: 315px;
height: 12px;
background: url('../images/bg-shadow.png') no-repeat 10px 0px;
}



/* search form */
#page_content #search-container {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
align-self: flex-end;
flex-direction: column;
justify-content: center;
}




/* custom bootstrap overrides */
form .input,
form .textarea {
position: relative;
display: block;
font-weight: 400;
}

form .icon-prepend {
position: absolute;
top: 6px;
left: 5px;
width: 30px;
color:#A2A2A2;
padding: 5px;
font-size: 14px;
font-style: normal;
line-height: 22px;
text-align: center;
border-right: 1px solid #BDBDBD;
}

form .icon-append {
position: absolute;
top: 6px;
right: 5px;
width: 30px;
color:#A2A2A2;
font-size: 14px;
font-style: normal;
line-height: 22px;
text-align: center;
border-left: 1px solid #BDBDBD;
}

form .input input {
width: 100%;
padding: 10px 10px;
color: #404040;
border-width: 1px;
border-style: solid;
border-color: #BDBDBD;
background: #fff;
font: 14px/18px 'Open Sans',Helvetica,Arial,sans-serif;
}

form .icon-prepend + input, form .icon-prepend + textarea {
padding-left: 40px;
}

form .icon-append + input, form .icon-append + textarea {
padding-left: 10px;
padding-right: 40px;
}



/* general declarations */
.content {
padding: 20px 30px;
font-family: 'Rubik', sans-serif;
background-color: #FFFFFF;
border: 1px solid #BCBCBC;
}

.content h3 {
color: #19a0a1
}

.section {
margin: 30px 0px;
border-top: 1px dashed #333333;
}

.section h2 {
color: #19a0a1;
}

.section p, .section ul li {
font-size: 16px;
}

h3.section-title {
margin-bottom: 0px;
}

.section-title {
clear: both;
position: relative;
margin: 10px 0 20px;
padding: 0;
font-family: 'BebasNeueRegular', sans-serif;
font-size: 50px;
font-weight: normal;
line-height: 50px;
border: none;
}

.section-title:after {
position: absolute;
display: block;
top: 28px;
width: 100%;
height: 1px;
margin-left: 0;
content: '';
background: #888888;
z-index: 1;
}

.section-title span {
position: relative;
display: inline-block;
width: auto;
margin: 0 auto;
margin-bottom: 10px;
padding: 5px 15px;
color: #2c3e50;
color: #19a0a1;
background-color: #FFFFFF;
text-align: center;
text-transform: uppercase;
z-index: 2;
}

.section-image {
width: 100%;
height: 300px;
box-shadow: 0px 2px 6px rgba(0,0,0,0.75);
border: 4px solid #FFFFFF;
overflow: hidden;
}

.section-image img {
width: 100%;
}

.spacer {
display: inline-block;
margin: 0px 10px;
}

.border-left {
border-left: 1px solid #BDBDBD;
}

.pixel-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: transparent url('../images/pixel-overlay.png');
}

.divider {
display: block;
height: 14px;
margin: 5px 0px;
/*  background: url('../images/divider.png') repeat-x;*/
}

.shadow {
position: relative;
}

.shadow-inner {
position: absolute;
top: -40px;
padding: 0px;
height: 60px;
width: 100%;
background: url('../images/shadow.png') no-repeat scroll 0 0 / 100% auto rgba(0, 0, 0, 0);
z-index: -2;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #333;
}


/* panel */

.panel {
/*    background-color: #d7d7d7;*/
}


/* new header */

.container-fluid { padding:0 10px;}
.header-bar {position:fixed; width:100%; z-index:99999; transition: all ease 0.4s; -webkit-transition: all ease 0.4s; -moz-transition: all ease 0.4s; top:0;}
.header-bar.nav-up { top:-80px!important;}
.navbar-default { background-color: rgba(255,255,255,1); border:none; box-shadow:0 20px 50px -20px rgba(0, 0, 0, 0.1)!important;}
.navbar-brand { height:auto; padding: 9px 15px;}
.navbar-nav { float:right; margin: 15px 0;}
.navbar-nav .cart-amount { position: absolute; }
.navbar-brand>img { max-height: 54px;}
.navbar-default .navbar-nav>li>a { color:#000; font-size:15px; text-transform:uppercase; font-weight:600; padding:10px;}
.navbar-default .navbar-nav>li>a:hover { color:#777; }


.navbar-default .navbar-nav>li>a.get-our-app:hover {
  color: #414151;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px;
}

li.app-links {
    margin-left: -10px;
    margin-top: -2px;
}



img.app-dl {float:left; height: 45px;}
img.app-dl:hover { opacity: .9; }

.navbar-default .navbar-nav>li.order-now-btn>a { background-color:#19a0a1; color:#fff; padding: 10px 18px; margin-right:10px; margin-left: 15px;}
.navbar-default .navbar-nav>li.dropdown a.dropdown-toggle { border-radius:50px; -webkit-border-radius:50px; -moz-border-radius:50px; background-color:#19a0a1; color:#fff;}

.navbar-default .navbar-nav>li.order-now-btn>a:hover, .navbar-default .navbar-nav>li.dropdown a.dropdown-toggle:hover { background-color:#fb7535;}
.h60 { height: 60px; }
.cart-btn { padding: 8px 0px!important; color: #000!important; border: 2px solid #000; border-radius: 50px; margin-left: 10px; width: 40px; height:40px; text-align: center;}
.cart-btn:hover { color:#19a0a1!important; background-color:#333!important; border: 2px solid #19a0a1!important; }
.login-mobile { display:none;}

.navbar-default .navbar-nav>li.get-our-app>a { color: #19a0a1; }
.navbar-default .navbar-nav>li.get-our-app>a:hover { color: #a9a9b3; }
#page_header .navbar-nav a span { display: inline-block; }






/* user admin */

.account_navigation .panel-body .nav-pills li:hover {
  border-right: 2px solid #333;
}



/* dlcore */


.restaurant-info-page-dlc .order_restaurant--restaurant_column .order_restaurant--restaurant_headings.panel.panel-default .order_restaurant--restaurant_menu_heading_panel_body .restaurant_heading .menu-items-toggle .order_restaurant--menu_item_row_container .order_restaurant--menu_item_container .order_restaurant--menu_item .order_restaurant--menu_item_name {
  color: #1d1d1d;
}

.restaurant-info-page-dlc .order_restaurant--restaurant_about_panel_body .order_restaurant--deliverclub_restaurant_panel-table .order_restaurant--open_hours {
  color: #000;
}

.restaurant_menu_info {
color: #000;
}

.restaurant-info-page-dlc .order_restaurant--restaurant_about_panel_body .show-more, .restaurant-info-page-dlc .order_restaurant--restaurant_about_panel_body .show-less {
  color: #000;
}



/* grid */

#header-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 56vh 12vh 12vh 20vh;
grid-template-areas:
  "tagline ."
  "searchbar ."
  "giving ."
  "cuisine applinks";
}
/* tagline */

.tagline {
grid-area: tagline;
display: flex;
align-items: flex-end;
justify-content: flex-start;
padding-left: 50px;

}

.tagline h1 {
color: #FFFFFF;
font-family: 'Heebo', sans-serif;
font-size: 50px;
font-weight: bold;
line-height: 60px;
text-shadow: 3px 3px 5px #333333;
margin-bottom: 0px;
}

.tagline h1 span {
 color: #19a0a1;
 display: block;
 text-transform: uppercase;
 font-size: 70px;
}

/* searchbar */

.searchbar {
grid-area: searchbar;
display: flex;
justify-content: flex-start;
align-items: center;
padding-left: 50px;
position:relative;
}

#address_form {
flex: 1;
}

.searchbar input[type='text'] {
flex-grow: 1;
height:60px;
background-color:#fff;
border:none;
box-shadow:5px 5px 20px 0 rgba(0,0,0,0.4)!important;
font-size:17px;
color:#313140;
font-weight:500;
background-image:url(/editable/images/user/image/searchbar_pin.png);
background-repeat:no-repeat;
background-position: 10px 10px;
background-size: 25px;
padding-left: 60px;
padding-right: 30px;
}
.searchbar input[type='text']:focus {
box-shadow:0 0 10px 0 rgb(151, 162, 162)!important;
}
.searchbar .searchbutton {
position: absolute;
right: 5px;
top: 5px;
background-color: #000;
color: #fff;
border: none;
padding: 11px 15px;
line-height: 14px;
font-size: 12px;
border-radius: 4px;
font-weight: 600;
text-transform: uppercase;
}

.searchbar .searchbutton:hover {
background-color: #333;
}

#address_form {
position: relative;
}




/* giving */

.giving {
grid-area: giving;
display: flex;
justify-content: flex-start;
align-items: flex-start;
padding-left: 50px;
}

.giving p {
margin-top: 1px;
}

.giving a {
font-size: 1.2em;
color: #19a0a1;
font-weight: 800;
}

/* cuisine */

.cuisine {
grid-area: cuisine;
display: flex;
justify-content: flex-start;
align-items: flex-start;
padding-left: 50px;
}

.cuisine p {
margin-top: 15px;
color: #19a0a1;
font-family: 'Rubik', sans-serif;
}

.cuisine a {
color: #19a0a1;
font-size: 1.2em;
}

.cuisine .cuisine-btn {
font-weight: 800;
border: 2px solid #fff;
padding: 10px 25px;
border-radius: 50px;
-webkit-border-radius: 50px;
background: #000;
}

.cuisine .cuisine-btn span {
color: #19a0a1;
font-size: 1.7em;
position: relative;
margin-left: 10px;
vertical-align: middle;
}


/* applinks */

.applinks {
grid-area: applinks;
display: flex;
justify-content: flex-end;
align-items: flex-start;
padding-right: 50px;
 flex-direction: row;
flex-wrap: wrap;

}



.applinks h2 {
color: #FFFFFF;
font-family: 'Heebo', sans-serif;
font-size: 50px;
font-weight: bold;
line-height: 60px;
text-shadow: 3px 3px 5px #333333;
margin-bottom: 0px;
display: inline-block;
}


.applinks img {
height: 80px;
margin-right: 8px;

}

.applinks a {
transition: transform .3s;
}

.applinks a:hover {
transform: scale(1.1);
}

.applinks img:hover {
height: 80px;
margin-right: 8px;
}

.applinks img:hover {

}

/* testimonials */
.testimonials {
  width: 100%;
  float: left;
  padding: 150px 0 0;
  position: relative;
  text-align: center;
}
.testimonials h3 {
  color: #000000;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 23px 0;
}
.testimonials h4 { color:#858594; font: 400 26px; font-weight:400; text-align: center;}
.testimonial-header { width:100%; float:left; margin-top: 0px;}
.owl-carousel { float:left; width:60%;}
p.description { font-size:17px; color:#202020;}
p.rating{ margin:0 0 10px;}
.testimonial-title { color:#212121; font-size:22px; font-weight:400; text-transform:capitalize; font-family: 'Rubik', sans-serif; }
.testimonial p { margin-top:0;}
.testimonial { padding:0 80px;}
.testimonial:after { transform:rotate(180deg); -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); bottom:0; top:auto; right:30px; left:auto;}
.testimonial-content img {width: 25px;}



/* main-content */

#main-content {
  padding: 50px 0;
  background-color: #bdbdbd;
  /*background: -webkit-linear-gradient(45deg,#d8d8d8 0%,#d8d8d8 5%,#dadada 5%,#dadada 10%,#e1e1e1 10%,#e1e1e1 50%,#dadada 50%,#dadada 90%,#e1e1e1 90%,#e1e1e1 95%,#d8d8d8 95%, #d8d8d8 100%); */
  background: -webkit-linear-gradient(45deg,#19a0a1 0%,#19a0a1 5%,#dadada 5%,#dadada 10%,#e1e1e1 10%,#e1e1e1 50%,#dadada 50%,#dadada 90%,#19a0a1 90%,#19a0a1 95%,#d8d8d8 95%, #d8d8d8 100%);
  color: #000;
}

.main-content-text h2 {
  line-height: 1.5em;
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.4em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  padding-left: 5px;
  background: -webkit-linear-gradient(45deg,#19a0a1 0%,#19a0a1 90%, rgba(0,0,0,0) 90%, rgba(0,0,0,0) 100% );
}

.main-content-text p {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.main-content-text-icon-left {
float: left;
padding: 10px 10px 10px 0px;
}


.main-content-text-icon-right {
float: right;
padding: 10px 0px 10px 10px;
}


/* restaurant thumbs */


.restaurant-thumbs {
display: flex;
flex-wrap: wrap;
align-content: flex-start;
justify-content: space-between;
margin: 75px 0 5px;
}

.restaurant-thumbs a {
flex-grow: 1;
flex-wrap: wrap;
width: calc(100% / 7);
margin: 5px;
border:1px solid #ddd; transition: all ease 0.2s; -webkit-transition: all ease 0.2s; -moz-transition: all ease 0.2s; padding:10px;
}

.restaurant-thumbs a:hover  {
box-shadow:0 5px 27px 0 rgba(0,0,0,0.1)!important; -webkit-box-shadow:0 5px 27px 0 rgba(0,0,0,0.1)!important; -moz-box-shadow:0 5px 27px 0 rgba(0,0,0,0.1)!important;
}

.restaurant-thumbs img {
width: 80%;
margin: 0 10%;

}

.view-all {
display: flex;
justify-content: center;
margin-bottom: 50px;
}

.view {  color: #333333; font-weight: 500; border: 1px solid #D6D6D6; padding: 10px 25px; border-radius: 50px; -webkit-border-radius:50px; -moz-border-radius:50px; margin: 20px 0; display: inline-block;}
.view:hover { background-color:#333; color:#19a0a1; border-color:#333;}


/* city-list */

#locations {
background: -webkit-linear-gradient(45deg,#333 0%,#333 5%,#19a0a1 5%,#19a0a1 10%,#333 10%,
      #333 90%,#19a0a1 90%,#19a0a1 95%,#333 95%, #333 100%);

padding: 50px 0;
font-family: 'Rubik', sans-serif;
}

#city-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 20px;
  flex-flow: row wrap;

}

#city-list div {
  padding: 0 15px;
}

h2.city-header {
  color: #19a0a1;
  margin: 25px 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  font-family: 'Rubik', sans-serif;
}

#city-list p {
  color: #fff;
  line-height: 1.2;
  font-size: 1.2em;
  text-align: center;
  font-family: 'Rubik', sans-serif;
}

#city-list a {
  color: #fff;
}

#city-list a:hover {
color: #19a0a1;
}

/* driver/partner */

#driver-partners {
margin: 75px 0 20px;
}

/*  img hover */

/* Common style */
.grid figure {

  overflow: hidden;
  margin: 10px 1%;
  max-width: 100%

  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: inline-block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}



.grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.grid figure h2 span {
  font-weight: 800;
  color: #19a0a1;
  text-shadow: 3px 3px 5px #333333;
}

.grid figure h3 {
color: #19a0a1;
text-shadow: 3px 3px 5px #333333;
}

.grid figure h2,
.grid figure h3,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** hover *****/
/*---------------*/

figure.effect-hover img {
  max-width: none;
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px,0, 0);
  transform: translate3d(-40px,0,0);
}

figure.effect-hover figcaption {
  text-align: left;
}

figure.effect-hover figcaption > div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  height: 50%;
}

figure.effect-hover h2,
figure.effect-hover h3,
figure.effect-hover p {
  -webkit-transform: translate3d(0,40px,0);
  transform: translate3d(0,40px,0);
  font-family: 'Rubik', sans-serif;
}

figure.effect-hover h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
   color: #19a0a1;
text-shadow: 3px 3px 5px #333333;
}

figure.effect-hover p, figure.effect-hover h3 {
  color: rgba(255,255,255,1);
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}

figure.effect-hover h3 {
color: #19a0a1;
text-shadow: 3px 3px 5px #333333;
}

figure.effect-hover:hover img,
figure.effect-hover:hover p,
figure.effect-hover:hover h3 {
  opacity: 1;
}

figure.effect-hover:hover img,
figure.effect-hover:hover h2,
figure.effect-hover:hover h3,
figure.effect-hover:hover p {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

figure.effect-hover:hover p, figure.effect-hover:hover h3 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}


/* order by phone */

#order-by-phone {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #dadada;
padding: 35px 0;
}

#order-by-phone p {
color: #333;
font-size: 1.8em;
margin-bottom: 5px;
font-weight: bold;
text-transform: capitalize;
font-family: 'Rubik', sans-serif;
}

#order-by-phone h2 {
color: #333;
font-size: 2.6em;
margin: 0px;
font-weight: bold;
font-family: 'Rubik', sans-serif;
}

#how_works_icons:hover{
color: #19a0a1;
} 

/* page footer */
#page_footer .sectionbox {
padding: 20px 0px;
}
#page_footer .sectionbox p {
margin-top: 20px;
}

#page_footer .sectionbox ul.footer-nav {
margin-left: 0px;
}

#page_footer .sectionbox ul.footer-nav.browseby {
margin-left: -15px;
}


#page_footer .sectionbox a.view-more-footer {
color:#19a0a1;
margin-top: 0px;
font-weight: bold;
}

a.view-more-footer span {
font-size: .8em;
margin-left: 3px;
}


/* cusine modal */
.cuisine-modal {
background-color: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
position: absolute;
top: 20px;
display: none;
justify-content: center;
align-items: center;
}

.cuisine-modal-contents {
height: 80vh;
width: 70vw;
text-align: center;
padding: 50px 20px 20px 20px;
position: relative;
border-radius: 4px;
background: url('../images/cuisine-modal-bg.jpg') no-repeat;
background-size: contain;
background-color: rgba(255,255,255,0.9);
overflow-y: auto;
overflow-x: hidden;
}

.cuisine-close-modal {
position: absolute;
top: 0;
right: 10px;
font-size: 42px;
color: #333;
transform: rotate(45deg);
cursor: pointer;
}

.cuisine-close-modal:hover {
  color: #666;
}

.cuisine-list-modal {
padding: 50px 50px 50px 300px;
}


.cuisine-list-modal p {
font-family: 'Rubik', sans-serif;
text-align: center;
}

.cuisine-list-modal a {
cursor: pointer;
}



/* user admin */
.account_navigation {
background: #fff;
}

.account_navigation .panel-body .nav-pills li.active {
  border-right: 2px solid #333;
}

/* media queries */


/*Home-Css*/
body .site-logo a, body .site-logo img {
  max-height: 104px;
  max-width: inherit;
}
ul.navigation {
  margin: 0;
}
body .header-links ul > li {
  margin: 0 0 0 32px;
}
body .header-links ul > li.cart {
  margin-left: 10px;
}
body .header-links ul > li > a {
  color: #23253a;
  letter-spacing: 0.2px;
  padding: 0;
  text-decoration: none;
}
body .header-links ul > li > a:hover {
  color: #9b7f2b;
}
body .header {
  padding: 25px 100px;
}
body .header-links ul > li > a.cart-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #23253a;
  color: #fff !important;
  line-height: 37px;
  font-size: 22px;
  background-color: #23253a;
}
body .header-links ul > li > a.cart-btn:hover {
  opacity: 1;
  color: #23253a !important;
}
body .cart-btn:hover {
  background-color: #ffffff !important;
}
body .header-links ul > li {
  vertical-align: middle;
}
body .header-links ul > li.order-now a {
  color: #fff;
  padding: 9px 20px 11px;
  margin-right: 0;
  background: #9b7f2b;
  height: 44px;
  position: relative;
  text-decoration: none;
  border: 2px #9b7f2b solid;
}
body .header-links ul > li.order-now a:hover
{
background: none !important;
color: #9b7f2b;
}
body .cart-btn {
  margin-left: 0;
}
body .header-links ul > li.order-now a:after {
  content: "";
  background: url(../images/arrow-white.png) no-repeat;
  width: 19px;
  height: 13px;
  display: inline-block;
  position: absolute;
  right: 20px;
  margin: 3px 0 0 0;
transition:All 0.3s ease;
-webkit-transition:All 0.3s ease;
-moz-transition:All 0.3s ease;
-o-transition:All 0.3s ease;
}
body .header-links ul > li.order-now a:hover:after
{
right: 15px;
}
body .banner .banner-slider-bg {
  background-position:center;
  height: 800px;
  background-color:  transparent;
  background-size: cover;
}
body .banner::before {
display: none;
}
/*Home-Css-End*/
/*Home page 25 start*/
@font-face {
  font-family: 'Littlemarch';
  src: url('../fonts/LittlemarchRegular.woff2') format('woff2'),
      url('../fonts/LittlemarchRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.banner-outer {
padding: 200px 0 200px;
background: url(../images/banner-bg.png) no-repeat right top;
background-size: contain;
position: relative;
}
.banner-outer::before {
content: "";
position: absolute;
left: 70px;
top: 200px;
height: 32px;
width: 32px;
background: #7a9c3e;
border-radius: 50px;
-webkit-border-radius: 50px;
}
.banner-outer::after {
content: "";
position: absolute;
left: 10%;
bottom: 6%;
height: 101px;
width: 23px;
background: url(../images/green-dots.png) no-repeat center;
background-size: contain;
}
.banner-left {
width: 580px;
text-align: center;
}
.banner-left #curved2 {
font-size: 25.45px;
color: #1d1d1d;

}
.banner .banner-content .banner-left h1 {
  font-size: 76px;
  color: #1d1d1d;
  font-weight: 600;
  margin-top: -36px;
}
.banner .banner-content .banner-left h1 samp {
  font-family: 'Rubik', sans-serif;
  line-height: 54px;
  display: block;
  text-transform: uppercase;
  letter-spacing: -3.5px;
}
.banner .banner-content .banner-left h1 span {
font-size: 54.11px;
color: #7a9c3e;
font-family: 'Playfair Display', serif;
font-weight: 900;
font-style: italic;
}
.background-outer {
background: url(../images/total-bg.png) no-repeat center bottom;
background-size: cover;
min-height: 400px;
overflow: hidden;
}
.applink-outer {
text-align: center;
padding: 40px 0 165px;
position: relative;
}
.applink-outer::before {
height: 138px;
width: 138px;
background: #7a9c3e;
border-radius: 50%;
content: "";
position: absolute;
right: 20px;
top: 0;
}
.applink-outer::after {
width: 422px;
height: 719px;
background: url(../images/applink-plate.png) no-repeat center left;
background-size: contain;
content: "";
position: absolute;
left:00px;
top: 5%;
}
.app-links-inner p {
color: #1d1d1d;
margin: 0;
font-size: 24.67px;
}
.app-links-inner h2 {
color: #1d1d1d;
font-size: 44px;
margin: 0;
padding: 20px 0 50px;
}
.app-links-inner h2 span {
font-family: 'Littlemarch';
background: url(../images/applink-heading.png) no-repeat center;
background-size: contain;
color: #fff;
padding: 13px 29px 12px;
    font-weight: normal;
}
.delivered-heading {
  font-size: 110px;
  color: #9b8029;
  font-family: 'Littlemarch';
  font-weight: normal;
}
.banner-left .serach-section-box .baner-form-field.form-control {
width: 100%;
font-size: 18px;
color: #1d1d1d;
border-radius: 50px;
padding: 10px 42px 10px 55px;
border: none;
background: #fff url(../images/search-icon.png) no-repeat center left 25px;
box-shadow: 0 0 10px rgba(0,0,0,0.4) !important;
height: 62px;
margin: 30px 0 0;
}
.banner-left .baner-form-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
opacity: 1;
color: #1d1d1d;
}
.banner-left .baner-form-field::-moz-placeholder { /* Firefox 19+ */
opacity: 1;
color: #1d1d1d;
}
.banner-left .baner-form-field:-ms-input-placeholder { /* IE 10+ */
opacity: 1;
color: #1d1d1d;
}
.banner-left .baner-form-field:-moz-placeholder { /* Firefox 18- */
opacity: 1;
color: #1d1d1d;
}
.banner-inner {
padding: 40px 0 0 0;
}
.banner-inner a {
color: #1d1d1d;
font-size: 18px;
font-family: 'Rubik', sans-serif;
}
.btn-search.baner-form-btn {
  height: 64px;
  color: #fff;
  width: 100%;
  border: none;
  font-size: 18px;
  margin: 27px 0 00;
  text-transform: uppercase;
  font-weight: 600;
  background: url(../images/right-arrow.png) no-repeat center right 50px, #fff url(../images/banner-button-bg.png) no-repeat center/ 100% 100%;
  position: relative;
  top: 0;
  right: 0;
  border-radius: 0;
}
.btn-search.baner-form-btn:hover {
  background: url(../images/right-arrow.png) no-repeat center right 50px, #fff url(../images/banner-button-bg-h.png) no-repeat center/ 100% 100%;
}
.app-links-inner img {
margin: 0 11px 0;
}
.how-order-inner
{
background: url(../images/how-order-bg.jpg) center no-repeat;
padding: 53px 10% 44px;
text-align: center;
border-radius: 30px;
-webkit-border-radius: 30px;
position: relative;
background-size: cover;
}
.how-order-inner::after {
content: "";
position: absolute;
right: -90px;
bottom: -70px;
height: 206px;
width: 206px;
background: url(../images/how-order-leaf.png) no-repeat center;
background-size: contain;
}
.how-order-inner h3 {
  font-size: 44px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  padding: 0 0 9px;
  text-transform: capitalize;
}
.how-order-inner p {
font-size: 22.67px;
color: #fff;
padding: 0 0 40px;
}
.how-order-inside {
padding: 0 0px 0;
display: flex;
display: -webkit-flex;
justify-content: center;
-webkit-justify-content: center;
text-align: center;
}
.how-order-spacing {
width: 33.33%;
padding: 0 60px 0;
}
.how-order-icon {
background: #fff;
height: 170px;
width: 170px;
display: inline-block;
position: relative;
border-radius: 50%;
padding: 35px 0 0 0;
}
.how-order-count {
position: absolute;
font-size: 54.11px;
height: 70px;
width: 70px;
background: #7a9c3e;
text-align: center;
color: #fff;
top: 0px;
font-family: 'Playfair Display', serif;
font-weight: 900;
font-style: italic;
left: -30px;
border-radius: 50px;
line-height: 0.9;
padding: 0 0 0 11px;
}
.how-order-spacing span {
display: inline-block;
width: 100%;
padding: 12px 0 0 0;
font-size: 14px;
line-height: 20px;
color: #fff;
font-weight: 500;
}
.testimonial-outer {
padding: 75px 0 50px;
text-align: center;
}
.testimonial-outer h3 {
font-size: 44px;
color: #2e2e2e;
margin: 0;
font-weight: 500;
padding: 0 0 1px;
}
.testimonial-outer span {
color: #7a9c3e;
display: inline-block;
width: 100%;
font-size: 21.8px;
padding: 4px 0 0;
}
.testimonial-slide-outer {
  padding: 72px 18% 0;
  position: relative;
  min-height: 331px;
}
.testimonial-slide-outer p {
font-size: 31px;
line-height: 44px;
color: #2e2e2e;
font-family: 'Rubik', sans-serif;
margin: 0 0 61px;
font-style: italic;
}
.testimonial-slide-outer h4 {
  font-size: 32.05px;
  color: #404040;
  margin: 0 0 6px 0;
}
.testimonial-slide-outer img {
display: inline-block !important;
}
.testimonial-arrow a {
position: absolute;
top: 16%;

}
.testimonial-arrow a.left{
left: -150px;
}
.testimonial-arrow a.right{
right: -150px;
}
.drive-with-outer .driver,
.drive-with-outer .partner {
background: url(../images/driver-us.png) no-repeat center !important;
background-size: cover !important;
height: 384px;
border-radius: 28px;
overflow: hidden;
}
.drive-with-outer .partner {
 background: url(../images/restaurant-signup.png) no-repeat center !important;
background-size: cover !important
}
.drive-with-outer .partner-content {
position: absolute;
bottom: 108px;
right: 0px;
width: 100%;
text-align: center;
}

.drive-with-outer {
padding-top: 80px;
position: relative;
}
.drive-with-outer::before {
content: "";
position: absolute;
right: 0%;
top: 10%;
width: 38px;
height: 79px;
background: url(../images/half-ring.png) no-repeat center;
background-size: contain;
}
.drive-with-outer::after {
content: "";
position: absolute;
right: 5%;
bottom: 18%;
width: 101px;
height: 23px;
background: url(../images/black-dots.png) no-repeat center;
background-size: contain;
}
.drive-with-outer .partner-content h4 {
text-shadow: none;
font-size: 48px;
text-align: center;
margin: 0;
font-weight: 500;
font-family: 'Rubik', sans-serif;
margin: 0 0 0px;
}
.drive-with-outer .partner-content .click-here {
font-size: 15px;
border: none;
letter-spacing: 0.6px;
width: 350px;
padding: 18px;
background: url(../images/drive-button-bg.png) no-repeat center;
}
.drive-with-outer .partner-content .click-here:hover
{
color: #fff;
text-decoration: none;
 background: url(../images/drive-button-bg-hover.png) no-repeat center;
}
.drive-with-outer .partner-content h4 br
{
display: none;
}


#page_footer.footer.feast-footer {
padding: 0;
position: relative;
}
.feast-footer::before {
content: "";
position: absolute;
right: 70px;
top: 20%;
height: 32px;
width: 32px;
background: #7a9c3e;
border-radius: 50px;
-webkit-border-radius: 50px;
}
.feast-footer::after {
content: "";
position: absolute;
left: 5%;
top: 6%;
height: 101px;
width: 23px;
background: url(../images/green-dots.png) no-repeat center;
background-size: contain;
}
#page_footer.footer.feast-footer .row
{
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
}
#page_footer.footer.feast-footer .sectionbox {
padding: 00px 0px;
float: left;
width: 50%;
}
#page_footer.footer.feast-footer h6 {
color: #f24419;
font-size: 21.81px;
font-weight: 600;
padding: 0 0 13px;
}
#page_footer.footer.feast-footer li {
margin: 0px 0 4px 0px;
line-height: 24px;
font-size: 15px;
color: #a9b1b4;
font-weight: 600;
}
#page_footer.footer.feast-footer li a
{
color: #a9b1b4;
}
#page_footer.footer.feast-footer li img {
margin: 0 7px 0 0;
}
#page_footer.footer.feast-footer .footer-delivery-hours li 
{
color: #0e0e0e;
margin: 0;
}
#page_footer.footer.feast-footer .footer-delivery-hours li span{
color: #a9b1b4;
display: inline-block;
margin: 0 0 15px 0;
}
#page_footer.footer.feast-footer .footer-get-connect
{
text-align: center;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
}
#page_footer.footer.feast-footer .footer-get-connect .sectionbox
{
float: none;
text-align: left;
display: inline-block;
}
#page_footer.footer.feast-footer .footer-delivery-hours .sectionbox
{
float: right;
}
.copyright-outer {
background: url(../images/copyright-bg.png) repeat-x;
margin: 40px 0 0 0;
padding: 20px 0;
}

.app-links-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner-left #curved2 span {
font-size: 25.45px;
color: #1d1d1d;
 height: 200px;
position: absolute;
width: 20px;
left: 0;
top: 0;
transform-origin: bottom center;
}
.char1 {
transform: rotate(6deg);
}
.char2 {
transform: rotate(12deg);
}
.char3 {
transform: rotate(18deg);
}
.char4 {
transform: rotate(24deg);
}
.char5 {
transform: rotate(30deg);
}
.char6 {
transform: rotate(36deg);
}
.char7 {
transform: rotate(42deg);
}
.char8 {
transform: rotate(48deg);
}
.char9 {
transform: rotate(54deg);
}
.char10 {
transform: rotate(60deg);
}
.char11 {
transform: rotate(66deg);
}
.char12 {
transform: rotate(72deg);
}
.char13 {
transform: rotate(78deg);
}
.char14 {
transform: rotate(84deg);
}
.char15 {
transform: rotate(90deg);
}
.char16 {
transform: rotate(96deg);
}
.char17 {
transform: rotate(102deg);
}
.char18 {
transform: rotate(108deg);
}
.char19 {
transform: rotate(114deg);
}
.char20 {
transform: rotate(120deg);
}
.char21 {
transform: rotate(126deg);
}
.char22 {
transform: rotate(132deg);
}
.char23 {
transform: rotate(138deg);
}
.char24 {
transform: rotate(144deg);
}
.banner-left .serach-section-box {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.banner-slider {
  padding-top: 0;
}
.custom-form-page {
  padding: 55px 0 80px !important;
}
.custom-form-page h3.section-title {
  margin-bottom: 22px !important;
  font-size: 40px;
}
.custom-form-page h3.section-title:after {
  display: none;
}

/*Home page 25 end*/

.banner-left form:focus-within .serach-section-box .baner-form-field.form-control {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.modal .modal-dialog .modal-content .modal-header {
  color: #ec2426;
}
.modal .modal-dialog .modal-content .modal-header h3 {
  font-size: 24px;
}
.modal-content {
  border-radius: 25px;
}
#login-modal .modal-dialog {
  width: 540px;
}
.modal .modal-dialog .modal-content .modal-header {
  background: none;
}
.modal .modal-dialog .modal-content .modal-header .modal-title, .modal .modal-dialog .modal-content .modal-header h3 {
  line-height: 76px;
  padding: 0 !important;
  margin: 0 !important
}
.modal .modal-dialog .modal-content .modal-header {
  height: 76px;
}
.modal-header {
  border-bottom: 1px solid #eeeeee;
}
.modal .modal-dialog .modal-content .modal-header .close {
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  transform: translate(0,-50%);
  width: 40px;
  height: 40px;
  /*background-color: #ec2426;*/
  opacity: 1;
  display: inline-block;
  border-radius: 50%;
  margin: 0;
  color: #bdbdbd;
  text-shadow: none;
  line-height: 41px;
}
.modal .modal-dialog .modal-content .modal-header .close i {
  position: relative;
  top: 1px;
}
.modal .modal-dialog .modal-content .modal-header .close i.icon.ion-close {
  position: relative;
  top: 1px;
}
.modal .modal-dialog .modal-content .modal-body {
  max-height: calc(100vh - 150px - 50px);
  width: 100%;
  overflow-y: auto;
  padding: 24px 63px 30px;
}
#login-modal .login_modal_tabs li {
  width: 49%;
  text-align: center;
  font-size: 13px;
  color: #b3b3b3;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 27px;
  text-transform: uppercase;
}
#login-modal .login_modal_tabs li.active {
  color: #333333;
  background-color: #8db24b;
  border-color: #8db24b;
}
#login-modal .login_modal_tabs li:last-child {
  float: right;
}
#login-modal .login_modal_tabs a {
  color: #b3b3b3;
}
#login-modal .modal-dialog .modal-body .panel input {
  border-color: #dbd8d5;
}
form .form-group .form-control {
  border-radius: 32px;
  font-family: 'Rubik', sans-serif;
}
.nav-tabs {
  border-bottom: none;
}
.become-featured-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform .5s ease;
  transition: transform .5s ease;
}
.become-partner-col:hover .become-featured-img img, .become-partner-col:hover .become-featured-img img {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
}
div#enter-address:hover {
  cursor: pointer;
}
.app-links-inner a:hover img {
  opacity: 0.7;
}
#login-modal .modal-dialog .modal-body .panel hr {
  display: none;
}
.btn-primary {
  /*color: #ffffff;
  background-color: #ff5303;
  border-color: #ff5303;*/
  border-radius: 32px !important;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  background-color: #9b7f2b;
  border-color: #9b7f2b;
}
form button, form a {
  font-size: 14px;
  /* font-weight: normal; */
}
.alert {
  border-radius: 35px;
}
.alert-info {
  background-color: #ff5303;
  border-color: #ff5303;
  color: #fff;
}
.alert-danger {
  background: none;
  border-color: #0067fe;
  color: #0067fe;
}
b.error_msg {
  font-weight: normal;
}
.alert p {
  font-size: 13px;
  padding: 4px 40px;
  text-align: left;
  line-height: 20px;
}
.alert-danger a {
  color: #fff;
  text-decoration: underline;
}
div#account_registration_form {
  padding-bottom: 0;
}
#login-modal .panel.panel-default {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {font-size: 24px;}
/*.modal .modal-dialog .modal-content .modal-header .close:hover {
  background-color: #7a9c3e;
}*/
.header-menu-nav .logo-img img, .header-menu-nav-mobile .logo-img img {
    width: auto;
    height: 72px;
    margin: 3px 0 0 0;
}
body .header-wrap {
  position: relative;
}
body.home-page .header-wrap {
  position: absolute;
}
#filters-modal .restaurant-filters-panel .modal-content {
  height: 100%;
  border-radius: 0;
}
#filters-modal .restaurant-filters-panel .modal-content .modal-body {
  padding: 24px 20px 30px;
}
.custom-checkbox span {
  font-size: 14px;
}
.header-height {
  display: none;
}
.home-page .header-height {
  display: block;
}
#page_container.dlc_page_container {
  padding-bottom: 70px;
}
/*.container-fluid.nav-info-wrapper.bg-nav-info {
  position: absolute;
  width: 100%;
  left: 0;
  margin: 0;
  padding: 20px 25px;
}*/
.container-fluid.nav-info-wrapper.bg-nav-info .row {
  display: block;
  height: auto;
  padding: 0;
}
.row.bg-nav-info.restaurants-cards-row {
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.bg-closed-restaurants {
  background: none;
}
.restaurants-cards-container h4 {
  margin: 20px 0 0 0;
}
.restaurants-closed-container .currently-closed-nav h4 {
  font-size: 19px;
  line-height: 18px;
  font-family: 'Rubik', sans-serif;
  color: #1d1d1d;
  margin-bottom: 24px;
  font-weight: 600;
}
.restaurant-card-wrapper .restaurant-card {
  border: 1px solid #e0e0e1;
  width: 100%;
  position: relative;
  background-color: #FFF;
  padding: 12px 12px 4px;
  border-radius: 18px;
}
.restaurant-card-wrapper.is-closed .restaurant-card-backdrop {
  display: none;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-image {
  height: 134px;
  border-radius: 18px;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-info-wrapper > div img {
  border-radius: 50%;
  object-fit: cover;
}
.restaurant-card-wrapper.is-closed .restaurant-card-closed-info {
  display: block;
  bottom: auto;
  top: 22px;
  margin: 0;
  width: 86.6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 135px;
  padding: 24px 0;
  background-color: rgba(0,0,0,0.6);
  border-radius: 18px;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-info-wrapper {
  height: 80px;
}
.restaurant-card-wrapper.is-closed .restaurant-card-closed-info p {
  font-size: 15px;
}
.restaurant-card-wrapper.is-closed .restaurant-card-closed-info .preorder-btn p {
  text-transform: uppercase;
  font-weight: 500;
}
.restaurant-card-wrapper .restaurant-card-closed-info .preorder-btn {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  border: 2px #ffffff solid;
  width: 190px;
  margin: 0 auto;
  height: 50px;
  /*background-color: #f25311;*/
  border-radius: 32px;
}
.restaurant-card-wrapper.is-closed .restaurant-card-closed-info .preorder-btn p {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 1px;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-info-wrapper .restaurant-card-info .restaurant-card-title {
  color:#000000;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 20px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-info-wrapper .restaurant-card-info .restaurant-card-cuisine {
  font-size: 13px;
  color: #818181;
  font-family: 'Rubik', sans-serif;
}
.restaurant-card-wrapper .restaurant-card .restaurant-card-info-wrapper .restaurant-card-info {
  padding-left: 10px;
}
.nav-info-wrapper .row .filters-wrapper {
  border: 1px solid #d2d2d2;
}
.row.checkout-page-addresses.bg-nav-info.information_page {
  margin-top: 50px;
  padding: 0 20px;
}
div#page_container .col-md-8 .panel.panel-default {
  background: none;
}
/*body div#page_container.dlc_container_custom {
  width: 100%;
  max-width: 100%;
  padding: 30px 15px 55px !important;
}*/
.app-links-inner a {
  display: inline-block;
}
.privacy-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 21px;
}
.privacy-content h2 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {


#page_header .navbar-collapse.pull-right {
  float: left !important;
}

#page_header .navbar-collapse.pull-right li {
  display: block;
}

.fa-4x {
  font-size: 35px;
}

.navbar-nav {
  float: left;
}

.navbar-toggle {
  margin-top: 0px !important;
}

.navbar-default .navbar-toggle {
border-color: #3d3d3d;
color: #000000;
background-color: #ffffff;
float: right;
height: 40px;
border-radius: 3px;
top: 15px;
  right: 0px;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #333;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
  color: #444;
}

#page_content #search-container #search-form {
margin-top: 6%;
}

.navbar-default .navbar-toggle {
  border-color: #888888;
  color: #fff200;
}

#page_header .navbar-toggle:hover {
background-color: #d2d2d2;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #d2d2d2;
  color: #888888;
}

#page_header .navbar-nav a {
  margin-top: 0px;
}

#page_header .navbar-header {
  font-size: 16px;
}

.navbar-default .navbar-toggle {
  border-color: #333;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #333;
}


#header-grid {
display: grid;
grid-template-columns: 1fr;
padding: 0 15px;
grid-template-rows: 35vh 12vh 3vh 10vh 15vh;
grid-template-areas:
  "tagline"
  "searchbar"
  "giving"
  "cuisine"
  "applinks";
}
/* tagline */

.tagline {
grid-area: tagline;
display: flex;
align-items: flex-end;
justify-content: flex-start;
padding-left: 0px;
margin-bottom: 50px;
}
/* searchbar */

.searchbar {
grid-area: searchbar;
display: flex;
justify-content: center;
padding-left: 0px;
position:relative;
}

.searchbar input[type='text'] {
  font-size: 12px;
}


.searchbar .searchbutton {
top: 5px;
}


.searchbar{ margin: 10px 0 20px;}
.searchbar .searchbutton { position: static; width: 100%; margin-top:5px;}
.searchbar .searchbutton br { display:none;}
.searchbar input[type='text'] { padding: 0 10px 0 40px;}



.giving {
grid-area: giving;
display: flex;
justify-content: flex-start;
align-items: center;
padding-left: 0px;
}


.cuisine {
grid-area: cuisine;
display: flex;
justify-content: flex-start;
align-items: center;
padding-left: 0px;
}


.applinks {
grid-area: applinks;
display: flex;
justify-content: flex-start;
align-items: center;
padding-right: 0px;

}

#main-content {
  background: -webkit-linear-gradient(45deg,#19a0a1 0%,#19a0a1 5%,#dadada 5%,#dadada 10%,#e1e1e1 10%,#e1e1e1 50%,#dadada 50%,#dadada 95%,#19a0a1 95%,#19a0a1 100%);
}


.restaurant-thumbs a {
width: calc(100% / 3);
}

.testimonial { padding: 0 10px;}
.testimonial-header { width: 100%;  text-align: center; margin-bottom: 30px;}
.owl-carousel { width: 100%;}
.testimonials h3 { color:#212121; font-size:30px; font-weight:800; text-align: center; }
.testimonials h4 { color:#858594; font: 400 20px 'Raleway'; font-weight:400; text-align: center;}


.cuisine-modal-contents {
height: 80vh;
width: 90vw;
background: rgba(255,255,255,0.9);
}

.cuisine-list-modal {
padding: 15px;
}

#locations {
  background: #333;
}

h2.city-header {
  font-size: 2em;
}

figure.effect-hover figcaption > div {
  height: 100%;
}

#order-by-phone p {
font-size: 1.4em;
}

#order-by-phone h2 {
font-size: 2em;
}

#page_footer {
margin-bottom: 60px;
}


#page_footer .sectionbox {
min-height: 220px;
}

/*Home-page*/
body {
margin: 0;
}
#page_footer.footer.feast-footer .row .col-xs-6 {
width: 100%;
}
#page_footer.footer.feast-footer .sectionbox {
width: 100%;
min-height: auto;
}
#page_footer.footer.feast-footer .footer-get-connect {
border-left: 0px solid #e7e7e7;
border-right: 0px solid #e7e7e7;
}
.useful-links .sectionbox:nth-child(2) h6 {
display: none;
}
.applink-outer::before {
height: 18px;
width: 18px;
}
#page_footer #copyright {
font-size: 12px;
}
.banner-outer::after {
left: 3%;
bottom: 6%;
height: 61px;
width: 15px;
}
.app-links-inner h2 span {
display: inline-block;
}
.applink-outer::after {
width: 82px;
height: 259px;
}
.feast-footer::after {
left: 1%;
top: 3%;
height: 61px;
display: none;
width: 13px;
}
.feast-footer::before {
right: 20px;
top: 20%;
height: 22px;
width: 22px;
}
#page_footer.footer.feast-footer h6 {
font-size: 17.81px;
padding: 0 0 6px;
}
.drive-with-outer .partner-content h4 {
font-size: 34px;
}
.testimonial-slide-outer p {
font-size: 17px;
line-height: 25px;
margin: 0 0 22px;
}
.copyright-outer {
  background: url(../images/copyright-bg.png) repeat-x;
  margin: 16px 0 55px 0;
  padding: 20px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
#page_footer #copyright small {
width: 100%;
margin: 3px 0;
}
#page_footer.footer.feast-footer {
  margin: 0;
  text-align: center;
}
.testimonial-arrow a.left {
left: -60px;
}
.testimonial-arrow a.right {
right: -60px;
}
.testimonial-arrow a {
width: 40px;
}
.testimonial-slide-outer h4 {
font-size: 24.05px;
}
.drive-with-outer .partner-content {
left: 0;
}
.testimonial-slide-outer img {
display: inline-block !important;
max-width: 100%;
}

.drive-with-outer .partner-content .click-here {
font-size: 13px;
width: 270px;
padding: 13px;
background-size: contain !important;
float: none;
display: inline-block;
}
.drive-with-outer::after {
display: none;
}
.drive-with-outer {
padding-top: 50px;
}
#page_footer.footer.feast-footer .row .col-xs-6 {
width: 100%;
}
.banner-left #curved2 {
font-size: 16.45px;
}
.banner .banner-content .banner-left h1 {
  font-size: 39px;
  margin-top: -22px;
  margin-bottom: 0;
}
.banner .banner-content .banner-left h1 span {
font-size: 34.11px;
}
.delivered-heading {
font-size: 59px;
}
.banner-left .baner-form-field {
padding: 7px 42px 7px 55px;
height: 49px;
margin: 20px 0 0;
font-size: 15px;
}
.baner-form-btn {
height: 49px;
font-size: 18px;
margin: 15px 0 00;
}
.banner-inner a {
font-size: 15px;
}

.app-links-inner p {
font-size: 20.67px;
}
.banner-inner {
padding: 23px 0 0 0;
}
.banner-left {
width: 260px;
}
.banner-outer {
padding: 102px 0 70px;
}
.app-links-inner h2 {
font-size: 27px;
padding: 10px 0 30px;
}
body .header {
padding: 10px 14px;
}
.banner-outer::before {
display: none;
}
body .site-logo a, body .site-logo img {
max-height: 64px;
max-width: inherit;
}
body .header-links ul > li.order-now a {
  padding: 10px 47px 4px 22px;
  height: 36px;
}
body .header-links ul > li.order-now a:after {
  margin: 1px 0 0 0;
}
body .header-links ul > li > a {
font-size: 14px;
}
body .header-links ul > li {
margin: 0 0 0 22px;
}
body .header-links ul > li > a.cart-btn {
width: 35px;
height: 35px;
line-height: 33px;
font-size: 18px;
}
.how-order-inner {
padding: 43px 6% 34px;
}
.how-order-spacing {
padding: 0 20px 30px;
width: 100%;
}
.how-order-inside {
flex-wrap: wrap;
}
.how-order-icon {
height: 150px;
width: 150px;
padding: 25px 0 0 0;
}
.testimonial-outer h3 {
font-size: 33px;
}
.testimonial-outer {
padding: 55px 40px 43px;
text-align: center;
}
.testimonial-outer span {
font-size: 15.8px;
}

.how-order-inner::after {
right: -40px;
bottom: -50px;
height: 126px;
width: 126px;
}
.how-order-count {
font-size: 33.11px;
height: 45px;
width: 46px;
left: -20px;
padding: 0 0 0 11px;
}
.how-order-inner p {
font-size: 18.67px;
padding: 0 0 27px;
}
.how-order-inner h3 {
font-size: 32px;
}
.testimonial-slide-outer {
padding: 32px 9% 0;
min-height: 166px;
}
.app-links-inner img {
margin: 10px 2px 0;
width: 120px;
}
.applink-outer {
padding: 20px 0 85px;
}


body .header-links ul > li {
margin: 0 0 10px 0px;
}
.header-links > ul.navigation {
  top: 0 !important;
  border-top: none !important;
  margin: 0px 0px !important;
  padding: 15px 0px !important;
}
.header-links > ul > li.cart {
display: block !important;
margin: 10px 0 0 0px !important;
}
.nav-btn {
display: block;
width: 25px;
float: right;
cursor: pointer;
}
.navigation.nav-open {
display: block !important;
}
.nav-btn span {
float: left;
height: 2px;
width: 100%;
margin: 2.7px 0;
background: #2e2e2e;
}
#page_footer.footer.feast-footer .footer-get-connect .sectionbox {
  text-align: center;
}
.banner-slider {
  padding-top: 0;
}
body .banner .banner-slider-bg {
  background-position: right top;
  height: 298px;
  background-color: #fff;
  /* background-size: contain; */
}
body .banner-left {
  width: 100%;
  margin-bottom: 15px;
}
body .banner .banner-content {
  margin-top: 35px;
}
.drive-with-outer .driver, .drive-with-outer .partner {
  height: 320px;
}
.banner-left .serach-section-box .baner-form-field.form-control {
  font-size: 15px;
  text-align: left;
      margin: 12px 0 0;
      height: 50px;
}
.btn-search.baner-form-btn {
  height: 54px;
  font-size: 18px;
  margin: 12px 0 00;
}
.header-wrap .nav-toggle {
  background: url(../images/menu-icon.png) no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: 32px;
  background-position: center;
}
/*Home-page-End*/
.custom-form-page h3.section-title {
  margin-bottom: 15px;
  margin-top: 0;
}
.section-title {
  font-size: 38px;
  line-height: normal;
}
.custom-form-page {
  padding: 8px 0 45px !important;
}
.row.bg-nav-info.restaurants-cards-row {
  margin-top: 0;
}
div#page_container {
  padding: 40px 0 55px 0 !important;
}
.order-page div#page_container .col-md-8 {
  width: 100%;
}
body #navigation-modal .modal-body .nav-pills li a, body #navigation-modal .modal-body .nav-pills li.active a {
  color: #ed6d23;
}
body #navigation-modal .modal-header {
  background-color: #ed6d23;
  border-color: #ed6d23;
  color: #fff;
}
body #navigation-modal .modal-header > i {
  color: #FFFFFF;
}
body #navigation-modal .modal-header .modal-title {
  color: #fff;
  line-height: 19px;
}
body #navigation-modal .modal-header .close {
  color: #fff;
}
body #login-modal .login_modal_tabs li a {
  padding: 10px 6px;
}
.footer-top-right .footer-nav li img {
  width: 44px;
}
.footer-top-right {
  width: 42%;
}
.footer-top-left {
  width: 58%;
}
}


@media (max-width: 639px) {
body .banner .banner-slider-bg {
  height: 342px;
}
.banner-slider {
  padding-top: 0;
}
.drive-with-outer .driver, .drive-with-outer .partner {
  height: 257px;
}
.drive-with-outer .partner-content {
  bottom: 74px;
}
.testimonial-slide-outer {
  min-height: 186px;
}
}

@media (max-width: 479px) {
.section-title {
  font-size: 34px;
}
}

@media (min-width: 768px) and (max-width: 991px) {


#page_header .navbar-collapse.pull-right {
  float: left !important;
}


#page_footer {
margin-bottom: 60px;
}

.restaurant-thumbs a {
width: calc(100% / 5);
}

.main-content-text p {
  min-height: 200px;
}

.cuisine-modal {
width: 90%;
}

.cuisine-modal-contents {
height: 80vh;
width: 90vw;
background: rgba(255,255,255,0.9);
}

.cuisine-list-modal {
padding: 25px;
}

#main-content {
  background: -webkit-linear-gradient(45deg,#19a0a1 0%,#19a0a1 5%,#dadada 5%,#dadada 10%,#e1e1e1 10%,#e1e1e1 50%,#dadada 50%,#dadada 95%,#19a0a1 95%,#19a0a1 100%);
}

.searchbar .searchbutton {
  top: 5px;
}

.searchbar input[type='text'] {
  font-size: 14px;
}

.main-content-text h2 {
  font-size: 1.2em;
}

figure.effect-hover figcaption > div {
  height: 80%;
}

/*Home-page*/
body {
margin: 0;
}
#page_footer.footer.feast-footer .row .col-xs-6 {
width: 33.33%;
}
#page_footer.footer.feast-footer .sectionbox {
width: 80%;
}
.useful-links .sectionbox:nth-child(2) h6 {
display: none;
}
.applink-outer::before {
height: 48px;
width: 48px;
}
#page_footer #copyright {
font-size: 12px;
}
.banner-outer::after {
left: 3%;
bottom: 6%;
height: 61px;
width: 15px;
}
.applink-outer::after {
width: 142px;
height: 369px;
}
.feast-footer::after {
left: 1%;
top: 3%;
height: 61px;
display: none;
width: 13px;
}
.feast-footer::before {
right: 20px;
top: 20%;
height: 22px;
width: 22px;
}
#page_footer.footer.feast-footer h6 {
font-size: 17.81px;
padding: 0 0 6px;
}
.drive-with-outer .partner-content h4 {
font-size: 34px;
}
.testimonial-slide-outer p {
font-size: 22px;
line-height: 31px;
margin: 0 0 22px;
}
.testimonial-arrow a.left {
left: -60px;
}
.testimonial-arrow a.right {
right: -60px;
}
.banner-left #curved2 {
font-size: 16.45px;
}
.banner .banner-content .banner-left h1 {
font-size: 39px;
margin-top: -20px;
}
.banner .banner-content .banner-left h1 span {
font-size: 34.11px;
}
.delivered-heading {
font-size: 59px;
}
.banner-left .baner-form-field {
padding: 7px 42px 7px 55px;
height: 49px;
margin: 20px 0 0;
}
.baner-form-btn {
height: 49px;
font-size: 18px;
margin: 15px 0 00;
}
.banner-inner a {
font-size: 15px;
}

.app-links-inner p {
font-size: 20.67px;
}
.banner-inner {
padding: 23px 0 0 0;
}
.banner-left {
width: 370px;
}
.banner-outer {
padding: 102px 0 70px;
}
.app-links-inner h2 {
font-size: 27px;
padding: 10px 0 30px;
}
body .site-logo a, body .site-logo img {
max-height: 64px;
max-width: inherit;
}
body .header-links ul > li.order-now a {
  padding: 10px 42px 5px 17px;
  height: 36px;
}
body .header-links ul > li > a {
font-size: 12px;
}
body .header-links ul > li {
  margin: 0 0 0 0px;
}
body .header-links ul > li > a.cart-btn {
width: 35px;
height: 35px;
line-height: 33px;
font-size: 18px;
}
.how-order-inner {
padding: 43px 6% 34px;
}
.how-order-spacing {
padding: 0 30px 0;
}
.how-order-icon {
height: 150px;
width: 150px;
padding: 25px 0 0 0;
}
.how-order-inner::after {
right: -40px;
bottom: -50px;
height: 126px;
width: 126px;
}
.how-order-count {
font-size: 33.11px;
height: 45px;
width: 46px;
left: -20px;
padding: 0 0 0 11px;
}
.how-order-inner p {
font-size: 18.67px;
padding: 0 0 27px;
}
.how-order-inner h3 {
font-size: 34px;
}
.testimonial-slide-outer {
padding: 32px 9% 0;
    min-height: 185px;
}
body .banner .banner-slider-bg {
  height: 532px;
}
body .site-logo a, body .site-logo img {
  max-height: 75px;
}
.banner-slider {
  padding-top: 22px;
}
.drive-with-outer .driver, .drive-with-outer .partner {
  height: 315px;
}
.banner-left .serach-section-box .baner-form-field.form-control {
  font-size: 16px;
  height: 54px;
}
.btn-search.baner-form-btn {
  height: 55px;
}
body .header-links ul > li.order-now a:after {
  right: 16px;
  margin: 2px 0 0 0;
  background-size: 16px;
}
/*Home-page-End*/
}
@media (min-width: 992px){
.all-restaurants {
  padding: 40px 15px !important;
}

}

@media (min-width: 992px) and (max-width: 1199px) {

figure.effect-hover figcaption > div {
  height: 80%;
}

.searchbar .searchbutton {
  top: 5px;
}

#main-content {
  background: -webkit-linear-gradient(45deg,#19a0a1 0%,#19a0a1 5%,#dadada 5%,#dadada 10%,#e1e1e1 10%,#e1e1e1 50%,#dadada 50%,#dadada 95%,#19a0a1 95%,#19a0a1 100%);
}

.main-content-text h2 {
  font-size: 1.2em;
}

#page_footer {
margin-bottom: 60px;
}

/*Home-page*/
.applink-outer::before {
height: 88px;
width: 88px;
}
.banner-outer::after {
left: 3%;
bottom: 6%;
height: 61px;
width: 15px;
}
.applink-outer::after {
width: 212px;
height: 499px;
}
.feast-footer::after {
left: 1%;
top: 3%;
height: 61px;
width: 13px;
}
.feast-footer::before {
right: 20px;
top: 20%;
height: 22px;
width: 22px;
}
#page_footer.footer.feast-footer h6 {
font-size: 17.81px;
padding: 0 0 6px;
}
.drive-with-outer .partner-content h4 {
font-size: 39px;
}
.testimonial-slide-outer p {
font-size: 25px;
line-height: 35px;
margin: 0 0 31px;
}
.banner-left #curved2 {
font-size: 18.45px;
}
.banner .banner-content .banner-left h1 {
font-size: 52px;
margin-top: -22px;
}
.banner .banner-content .banner-left h1 span {
font-size: 42.11px;
}
.delivered-heading {
font-size: 80px;
}
.banner-left {
width: 430px;
}
.banner-outer {
padding: 200px 0 100px;
}
.app-links-inner h2 {
font-size: 37px;
}
body .header-links ul > li {
margin:0 0 0 7px;
}
body .banner .banner-slider-bg {
  height: 512px;
}
body .site-logo a, body .site-logo img {
  max-height: 75px;
}
.banner-slider {
  padding-top: 22px;
}
.drive-with-outer .driver, .drive-with-outer .partner {
  height: 315px;
}

}

@media (min-width: 1401px) and (max-width:1500px) {
body .banner .banner-slider-bg {
  height: 732px;
}
}

@media (min-width: 1201px) and (max-width:1400px) {
body .banner .banner-slider-bg {
  height: 732px;
}
}

@media (min-width: 1200px) and (max-width:1350px) {
.applink-outer::before {
height: 88px;
width: 88px;
}
.banner-outer::after {
left: 3%;
bottom: 6%;
height: 61px;
width: 15px;
}
.applink-outer::after {
width: 212px;
height: 499px;
}
.feast-footer::after {
left: 1%;
top: 3%;
height: 61px;
width: 13px;
}
.feast-footer::before {
right: 20px;
top: 20%;
height: 22px;
width: 22px;
}
.banner .banner-content .banner-left h1 {
  font-size: 66px;
}
.delivered-heading {
  font-size: 90px;
}
}