@import url("https://fonts.googleapis.com/css2?family=Koulen&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

@font-face {
  font-family: Coegit;
  src: url(../fonts/Coegit.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #000000;
}

:root {
  --brand-color: #b71968;
  --secondary-color: #c4d059;
  --heading-font: Coegit, Helvetica, sans-serif;
  --heading-font-color: #c4d059;
  --body-font: Open Sans, Helvetica, sans-serif;
  --body-font-color: #666666;
  --section-bg-white: #ffffff;
  --section-bg-grey: #f8f8f8;
  --section-bg-brand: #c4d059;
  --section-color-white: #ffffff;
  --container-bg: #ffffff;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
}

header {
  position: sticky;
  top: 0;
  background-color: rgb(255 255 255 / 95%);
  border-bottom: 1px solid #00000017;
  z-index: 101;
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
}

p,
a,
span {
  font-family: var(--body-font);
}

.z-portal-listing header {
  position: static;
}

/*.hide {
  display: none;
}*/

.handle {
  display: none;
}

.z-portal-listing .handle,
.individual-page .handle {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 35px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  top: 30px;
}

.z-portal-listing nav {
  max-width: 1280px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  max-width: 980px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  max-width: 200px;
}

nav ul {
  display: none;
}

.z-portal-listing nav ul,
.individual-page nav ul {
  list-style-type: none;
  display: flex;
}
nav ul li {
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li a {
  padding: 5px;
  text-transform: capitalize;
}

nav ul li a:hover {
  border-bottom: 4px solid var(--brand-color);
}

.zuppler-navbar {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .zuppler-navbar {
    flex-direction: row;
    width: 100%;
  }

  .z-portal-listing nav ul,
  .individual-page nav ul {
    display: none;
    transition: 0.3s;
    width: 100%;
    background-color: var(--section-bg-grey);
  }

  .z-portal-listing .show,
  .z-portal-listing .handle,
  .individual-page .show,
  .individual-page .handle {
    display: block;
  }
}

@media (max-width: 480px) {
  #zuppler-navigation-left {
    width: 100%;
  }
}

section {
  background-color: var(--section-bg-white);
}

.section-title {
  font-size: 48px;
  color: var(--secondary-color);
}

.content-container {
  max-width: 1280px;
  padding: 80px 20px;
  margin: 0 auto;
}

.separator-centered {
  width: 60px;
  height: 5px;
  margin: 10px auto;
  background-color: var(--brand-color);
}

.separator-left {
  width: 60px;
  height: 5px;
  margin: 10px 0;
  background-color: var(--brand-color);
}

.whitespace {
  display: block;
  width: 100%;
  height: 25px;
}

.btn-primary {
  background-color: var(--brand-color);
  color: #ffffff;
  margin: 25px 10px;
  padding: 6px 20px;
  display: inline-block;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

/* HERO SECTION STYLES */

#hero-section {
  background-image: url(../images/tostones.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
}

.content-container.hero-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}

@media (max-width: 480px) {
  .content-container.hero-container {
    padding: 20px;
  }
}
.hero-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.searchbar,
.cuisine-service-filter {
  width: 100%;
  max-width: 600px;
  margin: 10px auto 0;
}
.cuisine-service-filter {
  display: flex;
}
div#z-portal-CuisinesDropdown-1,
div#z-portal-Service-1 {
  flex: 1;
}
.cuisines-trigger,
.portal-service .split-selector .option {
  background-color: var(--brand-color) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  border-radius: 5px;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-right: 10px;
}
.portal-service .split-selector .option {
  margin-right: 10px !important;
}

.cuisines-trigger:hover,
.portal-service .split-selector .option:hover,
.portal-service .split-selector .option.selected {
  background-color: var(--secondary-color) !important;
}

.hero-title {
  font-size: 48px;
}

.hero-text {
  font-size: 21px;
}

/* ORDERING STYLES */

.z-portal-listing #ordering-section {
  background-color: var(--section-bg-white);
}

#ordering-section {
  background-color: var(--section-bg-grey);
}

.z-portal-listing .content-container.ordering-container {
  padding: 0 20px;
}

/* HOW TO ORDER STYLES */

#how-to-order {
}

.how-to-order-container h2 {
  text-align: center;
  color: var(--secondary-color);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 20px 0;
}

.how-to-order-container .steps div {
  text-align: center;
}
.steps h3 {
  font-size: 28px;
}

.steps div p {
  padding: 20px 0;
}

.how-to-order-container .steps img {
  max-width: 60px;
}

@media (min-width: 768px) {
  .steps > div:not(.steps > div:last-child) {
    border-right: 1px solid;
  }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ORDER COMMISARY STYLES */

#order-commissary {
  background-color: var(--section-bg-grey);
}

.order-commissary-container {
  max-width: 800px;
  text-align: center;
}

.order-commissary-container img {
  max-width: 200px;
}

/*  ABOUT SECTION STYLES */

.content-container.about-container {
  display: flex;
}

.about-image {
  flex: 1;
  align-self: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-verbiage {
  padding: 0 20px;
  flex: 1;
  text-align: center;
}

.about-verbiage h2 {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .content-container.about-container {
    flex-direction: column;
  }
  .about-verbiage {
    padding: 20px 0;
  }
}

/* SERVICES STYLES */

#partner-with-us {
  position: relative;
}

.signup-container {
  padding-top: 20px;
}

.signup-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.drive-with-us,
.restaurant-sign-up,
.deliver-alcohol {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
/* .deliver-alcohol:before {
  content: "* Certain Cities & States Applicable";
  position: absolute;
  color: #fff;
  right: 10px;
  bottom: 0;
  z-index: 10;
} */

.service-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: var(--secondary-color);
}

.sign-up-overlay p {
  text-align: right;
  position: absolute;
  color: #fff;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  line-height: normal;
}

.drive-background {
  background-image: url(../images/driver-bg.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}
.restaurant-background {
  background-image: url(../images/restaurant-bg.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}

.alcohol-background {
  background-image: url(../images/alcohol-bg.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}

.sign-up-overlay {
  background-color: rgb(0 0 0 / 58%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drive-with-us:hover .drive-background,
.restaurant-sign-up:hover .restaurant-background,
.deliver-alcohol:hover .alcohol-background {
  transform: scale(1.2);
}

.drive-with-us a,
.restaurant-sign-up a,
.deliver-alcohol a {
  display: block;
  padding: 60px;
  font-size: 26px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 1px 1px 6px black;
  font-family: "Koulen", Helvetica, sans-serif;
  font-size: 36px;
}

@media (max-width: 768px) {
  .signup-box {
    grid-template-columns: 1fr;
  }
}

#partner-with-us .signup-box {
  grid-template-columns: 1fr 1fr;
}

.partner-background {
  background-image: url(../images/partner.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}
.driver-background {
  background-image: url(../images/driver.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}

.suggest-background {
  background-image: url(../images/restaurant.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.8s;
  height: 100%;
}

.drive-with-us:hover .partner-background,
.restaurant-sign-up:hover .driver-background,
.deliver-alcohol:hover .suggest-background {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #partner-with-us .signup-box {
    grid-template-columns: 1fr;
  }
}

/* APP SECTION STYLES */

.z-portal-listing .app-banner {
  display: block;
}
.app-banner {
  display: none;
}

.app-banner {
  background-color: var(--section-bg-brand);
  width: 100%;
  text-align: center;
  padding: 10px;
}

.app-banner a {
  color: var(--section-bg-white);
  font-weight: 600;
  font-size: 14px;
}

#apps {
  background-color: var(--section-bg-brand);
}

.app-wrapper {
  display: flex;
}

.phone-image {
  flex: 1;
  text-align: center;
}

.phone-image img {
  max-width: 230px;
}

.app-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.btns-wrapper {
  display: flex;
  padding: 20px 0;
}

.app-btns h2 {
  font-size: 42px;
  color: #fff;
}

.app-btns h3 {
  color: #fff !important;
  font-size: 32px;
  letter-spacing: 1px;
}

a.app-icon img {
  max-width: 230px;
}

@media (min-width: 768px) {
  #apps {
    height: 400px;
  }
  .app-wrapper {
    position: relative;
  }
  .phone-image {
    position: relative;
    bottom: 0;
  }
  .content-container.apps-container {
    padding: 20px 20px;
  }
  .app-btns {
    position: relative;
    top: 80px;
    display: block;
  }
}

@media (max-width: 768px) {
  .app-wrapper {
    flex-direction: column;
  }

  .app-btns {
    padding-top: 40px;
  }
  .app-btns h2 {
    font-size: 32px;
  }
  a.app-icon img {
    max-width: 150px;
  }
}

/* FOOTER STYLES */

footer {
  background-color: #111111;
  color: #fff;
  text-align: center;
  position: relative;
}

footer a {
  color: #b3b3b3;
}

.rmda-container {
  margin-bottom: 10px;
}

.rmda-container a img {
  max-width: 80px;
}

.footer-nav {
  margin: 0 0 30px;
}

.social-icons a {
  display: inline-block;
  margin: 20px 10px;
}
.footer-nav ul {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  max-width: 400px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-nav ul li {
  margin: 5px;
}

@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: column;
  }
}

/* ZUPPLER MENU STYLES */

.z-menu-category-title {
  font-size: 38px !important;
}

.z-menu-category-title,
.z-menu-item-price,
.item-title,
.cart-title,
.cartInfo-title {
  color: #3d9790 !important;
}

.z-menu-category-title::after {
  content: " ";
  display: block;
  width: 60px;
  height: 5px;
  margin: 10px auto;
  background-color: var(--brand-color);
}

.cart-orderInfo-order .zbutton {
  border: 1px solid #333333 !important;
}
.rest-delivery {
  display: none !important;
}

.zbutton-link-primary {
  color: var(--color-mid-contrast) !important;
}
.z-payment-screen .header-header + div span {
  font-size: 16px;
  line-height: 1.6em;
}

/* PORTAL STYLES */

.z-portal-listing .portal-breadcrumb {
  display: none !important;
}

.portal-results-toolbar {
  position: static !important;
}

.portal-breadcrumb {
  display: block !important;
  max-width: 980px;
  margin: 0 auto;
}

.portal-search input[type="text"] {
  margin: 10px 0 !important;
  height: 60px !important;
  border-radius: 5px !important;
}
.portal-search input[type="text"].hasFocus {
  border-color: var(--brand-color) !important;
}
.portal-search > div:nth-child(3) {
  top: 15px !important;
}
.portal-search > div:nth-child(2) {
  top: 12px !important;
}
#react-autowhatever-1 {
  top: 58px !important;
}

.portal-Queries-cell {
  padding: 10px 0;
}

.portal-restaurants {
  padding: 50px 0;
}

#hero-section,
#how-to-order,
#about-section,
#local-benefits,
#apps,
#partner-with-us,
#order-commissary,
footer,
.z-feedback-box {
  display: none;
}

.z-portal-listing #hero-section,
.z-portal-listing #how-to-order,
.z-portal-listing #about-section,
.z-portal-listing #local-benefits,
.z-portal-listing #apps,
.z-portal-listing #partner-with-us,
.z-portal-listing #order-commissary,
.z-portal-listing footer {
  display: block;
}

/* ath payment links styles */

.ath-payment-links a {
  display: inline-block;
  background-color: var(--color-mid-contrast);
  color: #fff !important;
  padding: 15px 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.ath-payment-links a:hover {
  opacity: 0.8;
}
