
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body,
html {
  height: 100%;
  margin: 0;
  /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
  /*font-family: Arial, Helvetica, sans-serif;*/
  
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  
  font-size: 12px;
  /*background: #D6DDE9;*/
}

* {
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

/* NAVBAR STYLING STARTS */
.navbar {
  z-index: 1000;
  position: fixed;
  margin: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background-color: black;
  color: #fff;
}
.nav-links a {
  color: #fff;
}
/* LOGO */
.logo a {
  color: #fff;
  font-size: 20px;
}
/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  /*font-size: 18px;*/
}
.menu li:hover {
  background-color: #4c9e9e;
  border-radius: 5px;
  transition: 0.3s ease;
}
.menu li {
  padding: 5px 14px;
}
/* DROPDOWN MENU */
.join-us {
  position: relative;
  border: 1px solid green;
  border-radius: 5px;
}
.dropdown {
  background-color: rgb(1, 139, 139);
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 24px;
  left: 0;
  text-align: left;
}
.dropdown li + li {
  margin-top: 10px;
}
.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}
.dropdown li:hover {
  background-color: #4c9e9e;
}
.join-us:hover .dropdown {
  display: block;
}
/*RESPONSIVE NAVBAR MENU STARTS*/
/*HAMBURGER MENU*/
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}
/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: black;
    right: 0;
    left: 0;
    text-align: center;
    padding: 10px;
  }
  .menu li:hover {
    display: inline-block;
    background-color: #4c9e9e;
    transition: 0.3s ease;
  }
  .menu li + li {
    margin-top: 12px;
  }
  input[type="checkbox"]:checked ~ .menu {
    display: block;
  }
  .hamburger {
    display: block;
  }
  .dropdown {
    top: 24px;
    left: 0;
    transform: translateX(35%);
  }
  .dropdown li:hover {
    background-color: #4c9e9e;
  }
}

.container {
  width: 100%;
}
.content {
  width: 100%;
  margin-top: 88px;
}

.save-button { 
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  /*font-size: 16px;*/
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.save-button:hover {
  background-color: black;
  color: white;
}

.save-button button {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  /*font-size: 16px;*/
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

form.search-location {
  padding: 5px 10px;
  margin-bottom: 5px;
  width: 40%;
}
form.search-location input[type="text"] {
  padding: 7px;
  font-size: 16px;
  border: 1px solid rgb(24, 27, 24);
  background: #f1f1f1;
  border-radius: 8px;
  width: 100%;
}
.content-label {
  font-size: 18px;
  font-weight: bolder;
  padding: 5px 10px;
}
.content-description {
  padding: 5px 10px 20px;
}
.row-data {
  width: 100%;
  padding: 3px;
  height: auto;
  margin-bottom: 30px;
  background-color: rgb(255, 255, 255);
}

.content h3 {
  /* text-align: center;*/
  font-size: 20px;
}
.step-card h5 {
  font-size: 16px;
}

.step-card {
  color: rgb(0, 0, 0);
  width: 20%;
  margin: 20px;
  padding: 10px;
  text-align: center;
}
/*.card-image1{
    height: 150px;
    background:url('../images/image1.jpg');
}
.card-image2{
    height: 150px;
    background:url('../images/image1.jpg');
}
.card-image3{
    height: 150px;
    background:url('../images/image1.jpg');
}
.card-image4{
    height: 150px;
    background:url('../images/image1.jpg');
}
*/
.card-icons {
  font-size: 120px;
  color: rgb(248, 107, 64);
}
.more-paragraph {
  padding: 25px;
  text-align: center;
  color: rgb(0, 0, 0);
}
.footer {
  color: whitesmoke;
  background-color: rgb(26, 26, 23);
  text-align: center;
  padding: 10px;
  display: inline-block;
  width: 100%;
}
p.footer-description {
  font-size: 12px;
}
.social {
  font-size: 16px;
}
.social-links {
  padding: 10px;
}
.social-links a {
  text-decoration: none;
  padding: 8px;
  color: whitesmoke;
}
a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
.hotel-card h5 {
  font-size: 18px;
}
.hotel-card {
  width: 300px;
  padding: 25px;
  display: inline-table;
  text-align: center;
  margin: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
}
.hotel-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.gas-station-card {
  width: 270px;
  padding: 25px;
  display: inline-table;
  text-align: center;
  margin: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
}
.gas-station-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.gas-station-card h5 {
  font-size: 18px;
  line-height: -12;
  margin: 7px;
}
.location {
  margin: 5px;
}
.mini-service {
  margin: 2px;
  display: inline-table;
  text-align: center;
  width: 100px;
  height: 100px;
}
.mini-service span {
  font-size: 15px;
  font-weight: 500;
}
.mini-service-card h5 {
  font-size: 18px;
}
.mini-service-card {
  width: 80px;
  padding: 25px;
  display: inline-table;
  background: #203864;
  margin: 15px;
  height: 80px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 200px;
}
.mini-service-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.status-chip {
  background: green;
  height:25px;
  padding: 4px 8px;
  color: white;
  border-radius: 50px;
}
.hotel-logo-big {
  width: 100px;
}
.delivery {
  color: rgb(255, 255, 255);
}
.closed {
  background: red;
}
.icon-star {
  color: rgb(114, 94, 94);
  font-size: 16px;
}
.rate {
  color: rgb(54, 218, 54);
  font-size: 16px;
}
.hotel-profile {
  color: white;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}
.hotel-profile h3 {
  line-height: 4px;
}
.hotel-info {
  font-size: 12px;
  padding: 8px;
  color: white;
}
.hotel-info span {
  padding: 8px;
}
.hotel-info .status-chip {
  padding: 4px 8px;
}
.menu-item {
  display: flex;
}
.menu-promo {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  background-color: rgb(230, 228, 228);
  width: 100%;
  height: 80px;
  padding: 5px;
}
.menu-promo::-webkit-scrollbar {
  height: 4px;
}
.menu-promo::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.menu-promo::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.promo-item {
  padding: 2px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 150px;
  height: 70px;
  margin-left: 2px;
  text-align: center;
  display: inline-block;
}
.promo-item p {
  line-height: -6;
  font-size: 12px;
  font-weight: bold;
}
.promo-item .icon-heart {
  font-size: 16px;
}
.promo-amount {
  padding: 5px 10px;
  display: inline;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(9, 160, 9);
  color: white;
}
.remove {
  font-size: 16px;
  float: right;
  color: grey;
}
.remove:hover {
  color: black;
}
.menu-offers {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: rgb(230, 228, 228);
  width: 100%;
  height: 200px;
  padding: 5px;
  margin-top: 10px;
  text-align: center;
}

.menu-offers::-webkit-scrollbar {
  height: 6px;
}
.menu-offers::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.menu-offers::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.offer-item {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 180px;
  width: 300px;
  color: white;
  display: inline-block;
  position: relative;
  margin-left: 15px;
}
.offer-item-background {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.offer-item-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.offer-category {
  padding: 14px 20px;
  font-weight: bold;
  text-align: right;
  font-size: 18px;
  color: white;
}
.discount-offer {
  padding: 55px 18px 0px 0px;
  text-align: right;

  color: rgb(133, 224, 153);
}
.offer-discount {
  text-align: right;
  padding: 3px 18px;
}
.discount-percent {
  padding: 2px 10px;
  font-size: 30px;
  font-weight: bolder;
}
.offer-description {
  padding: 2px 20px;
  color: white;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
}
.offer-more-description {
  padding: 14px 20px;
  color: white;
}
.offer-more-description a {
  text-decoration: none;
  float: right;
  color: whitesmoke;
}
.offer-actual-price {
  font-weight: bold;
}
.food-content {
  display: flex;
}
.food-menu {
  width: 60%;
  min-height: 400px;
  max-height: 800px;
  background-color: rgb(230, 228, 228);
  margin: 10px;
}
.food-menu-header {
  padding: 15px;
  font-weight: bold;
  width: 100%;
  height: 45px;
}
.food-menu-pane {
  padding: 5px;
  min-height: 150px;
  max-height: 355px;
  overflow: scroll;
  overflow-x: hidden;
}
.food-menu-pane::-webkit-scrollbar {
  width: 8px;
}
.food-menu-pane::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.food-menu-pane::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}

.food-menu-items {
  width: 100%;
  min-height: 40px;
  display: flex;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  padding-top: 13px;
  margin-top: 2px;
}
.food-menu-items:hover {
  background-color: #ccc;
  transition: 0.4s;
}
.has-pointer {
  cursor: pointer;
  font-size: 16px;
}
.menu-item-data {
  padding-left: 10px;
}
.cart {
  width: 40%;
  height: 480px;
  background-color: rgb(230, 228, 228);
  margin: 10px;
  padding: 5px;
}
.cart-pop {
  display: none;
  width: 100%;
}
.top-cart{
  z-index: 2000;
}
.cart-pop .cart {
  width: 40%;
  bottom: 80px;
  position: fixed;
  right: 0;
  border-radius: 4px;
}
.cart-header {
  background: rgb(230, 228, 228);
  width: 100%;
  font-weight: bold;
  height: 45px;
  padding: 15px;
}
.cart-items {
  width: 100%;
  height: 38px;
  display: flex;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-top: 2px;
}
.actions {
  margin-left: auto;
  margin-right: 0;
}
.menu-amount {
  padding: 3px 10px 3px 10px;
}
.order-title {
  text-align: center;
  font-size: 20px;
  padding: 10px;
}
.payment-button {
  padding: 8px 20px;
  width: 50px;
  background-color: black;
  color: aliceblue;
  text-decoration: none;
  border-radius: 5px;
}
.payment-button:hover {
  background-color: red;
}

.up-cart {
  margin-bottom: 5px;
  min-height: 250px;
  max-height: 280px;
  overflow: scroll;
  overflow-x: hidden;
}
.up-cart::-webkit-scrollbar {
  width: 8px;
}
.up-cart::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.up-cart::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.down-cart {
  height: 40px;
  text-align: center;
}

.payment-method {
  background-color: white;
  border: 2px solid #ccc;
  height: 35px;
  width: 80px;
  margin: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
.payment-content {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: rgb(230, 228, 228);
  width: 100%;
  height: 60px;
  padding: 5px;
  margin-top: 2px;
  text-align: center;
}

.payment-content::-webkit-scrollbar {
  height: 6px;
}
.payment-content::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.payment-content::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.payment-method:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  background: rgb(230, 228, 228);
}
.payment-details {
  background-color: rgb(230, 228, 228);
  width: 94%;
  height: 300px;
  border-radius: 10px;
  text-align: center;
  margin: 1% 3%;
  padding: 15px;
}
.checkout-button{
  width:50px; padding:4px 12px;background:black; color:white; border-radius:4px;cursor:pointer;
}
.header {
  text-align: center;
}
.pay-button {
  padding: 8px 68px;
  width: 100%;
  background-color: black;
  color: aliceblue;
  text-decoration: none;
}
.pay-button:hover {
  background-color: red;
}
.down {
  height: 20px;
  margin-top: 30px;
}
.pay-logo {
  width: 100%;
}
.form-row {
  display: flex;
  padding: 5px;
  justify-content: center;
}
.form-input {
  margin-left: 10px;
  width: 180px;
}
.form-label {
  width: 70px;
  text-align: right;
}
.form-input input[type="text"] {
  padding: 3px;
  background: #f1f1f1;
  border-radius: 3px;
}
.promo-item .icon-plus2 {
  font-size: 30px;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #0c4164;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #266894;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  font: 700 18px/1 "lato", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

.gas-station-mobile-card {
  border-radius: 4px;
  height: 55px;
  margin-bottom: 8px;
  padding: 4px 12px;
  line-height: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 10px;
  width: 95%;
}

.gas-station-mobile-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

div.logo-round-mobile-card {
  /*background-color: #bbb;*/
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
  float: left;
  margin-right: 10px;
  text-align: center;
  padding: 8px;
}

div.company-name {
  margin: 8px 12px;
  font-weight: bold;
  font-size: 14px;
}
div.right-icon {
  font-size: 16px;
  float: right;
  top: 0;
  margin-bottom: 5px;
}

.card-location {
  margin-top: 15px;
}
.mobile-view {
  display: none;
}
.gas-preview {
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2) inset;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  /*height: 80px;*/
}
.gas-preview::-webkit-scrollbar {
  height: 4px;
}
.gas-preview::-webkit-scrollbar-track {
  background-color: grey;
  border-radius: 100px;
}
.gas-preview::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.small-size-card {
  display: inline-block;
  margin: 5px;
  width: 80px;
  height: 80px;
  border: 2px solid green;
  padding: 10px;
}
.medium-size-card {
  display: inline-block;
  background: white;
  margin: 5px;
  width: 160px;
  height: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.medium-size-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.sample-gas {
  height: 200px;
}
.title4 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 5px;
}
.medium-size-card-footer {
  background: #d5dde9;
  padding-top: 3px;
  height: 30px;
  border-top: 1px solid green;
}
.left {
  display: inline-block;
  font-size: 14px;
  width: 110px;
  height: 20px;
  border-right: 1px solid green;
}
.right {
  padding-left: 3px;
  display: inline-block;
  font-size: 14px;
  height: 20px;
}

.open-cart-btn {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  padding: 5px;
  padding-top: 18px;
  font-size: 23px;
  background: rgb(0, 0, 0);
  box-shadow: 0 6px 8px 0 rgb(11, 255, 52);
  color: white;
  position: fixed;
  margin-left: auto;
  /* margin-right: auto;*/
  left: 0;
  right: 30px;
  bottom: 30px;
  text-align: center;
  border: 2px solid green;
}
.open-cart-btn:hover {
  transition: 0.3s ease;
  border: 2px solid greenyellow;
}

.toast-notification {
  width: 300px;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  background: green;
  color: white;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
}
.success-status{
  background: green;
}
.failed-status{
  background: red;
}

.min-card {
  padding: 8px;
  background-color: white;
  border: 2px solid #ccc;
  height: 100px;
  width: 150px;
  margin: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  display: inline-block;
}
.customer-card {
  padding: 8px;
  background-color: white;
  border: 2px solid #ccc;
  height: 100px;
  width: 150px;
  margin: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  display: inline-block;
}
.larger-card {
  padding: 8px;
  background-color: white;
  border: 2px solid #ccc;
  height: 300px;
  width: 400px;
  margin: 3 px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  float: right;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}
.active,
.accordion:hover {
  background-color: #ccc;
}

.payment-progress-status {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 90%;
  margin-right: 2px;
  left: 0;
  position: absolute;
  text-align: center;
  z-index: 103;
}
.process-status {
  font-size: 26px;
}
.process-loader {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.restaurant-card {
  background-color: rgb(255, 255, 255);
  width: 325px;
  margin: 5px;
  margin-bottom: 20px;
  border-radius: 6px;
  min-height: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  float: left;
  position: relative;
}
.restaurant-name {
  margin-top: 8px;
  margin-bottom: 0px;
  padding: 0 16px;
}
.restaurant-category {
  margin-top: 2px;
  margin-bottom: 0px;
  padding: 0 16px;
}
.restaurant-distance-p {
  color: white;
}
.pic {
  width: 100%;
  height: 160px;
}
.image {
  width: 100%;
  height: 100%;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  object-fit: cover;
}
.cicle {
  position: absolute;
  top: 135px;
  right: 35px;
  z-index: 3;
  width: 50px;
  height: 50px;
  padding: 1px 8px;
  font-size: 12px;
  background-color: rgba(0, 128, 0, 0.7);
  text-align: center;
  border-radius: 100px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.categories-card {
  width: 70px;
  height: 70px;
  background-color: rgb(255, 255, 255);
  border-radius: 100px;
  text-align: center;
  margin: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border: 3px solid #f4983e;
  display: inline-block;
}
.category-p {
  margin-top: 3px;
}
.category-image {
  width: 100%;
  height: 64px;
  border-radius: 100px;
}
.ribbon-rate {
  width: 25px;
  height: 35px;
  position: absolute;
  bottom: 200px;
  left: 24px;
  z-index: 3;
}
.rate-ribbon {
  width: 100%;
  height: 35px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.dark-background-overlay {
  width: 100%;
  height: 160px;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  z-index: 2;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.popular {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: 100px;
  background-color: rgb(241, 241, 241);
  display: flex;
  text-align: center;
}
.popular::-webkit-scrollbar {
  height: 4px;
}
.popular::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 100px;
}
.popular::-webkit-scrollbar-thumb {
  background-color: coral;
  border-radius: 100px;
}
.info {
  margin-left: 12px;
  padding: 4px 8px;
}
.found-location {
  padding: 4px 16px;
  text-align: center;
  color: green;
}
.found-location .icon-map-marker {
  font-size: 18px;
}
.ads-menu {
  background-color: rgb(230, 228, 228);
  width: 100%;
  height: 200px;
  padding: 5px;
  margin-top: 10px;
  text-align: center;
}
.ads-item {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 190px;
  width: 95%;
  color: white;
  display: inline-block;
}
.card-extra-description {
  display: flex;
}
.pop-model {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
.modal-content {
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: rgb(230, 228, 228);
  position: fixed;
  padding: 8px;
  bottom: 0;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}
/* The Close Button */
.pop-model-close-action {
  float: right;
  padding: 8px;
  font-size: 16px;
  font-weight: lighter;
  padding: 2px;
}
.pop-model-close-action:hover,
.pop-model-close-action:focus {
  color: white;
  border-radius: 10px;
  font-weight: lighter;
  text-decoration: none;
  background-color: black;
  cursor: pointer;
}
.modal-header {
  padding: 2px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
}

.autocomplete {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.merchant-form-details {
  font-size: 14px;
}




.validate_message{
  color: red;
  font-weight: normal;
  font-size: 12px;
  display: none;
}








.background{
  background-color: rgb(209, 207, 207);
  padding: 3px;
  margin-bottom: 20px;
}
.offer-content{
  width: 100%;
  border-radius: 5px;
}
.card-detail{
  padding: 10px 0;
  width: 330px;
  text-align: left;
}

.offer-header{
  margin: 5px;
}
.offer-details{
  margin: 5px;
  background-color: rgb(211, 206, 206);
  padding: 3px;
  margin-bottom: 20px;
}
.detail{
  margin: 5px;
}
.amount{
  float: right;margin-left: 10px;
}


.selected-option{
  height: 15px;
  width: 15px;
  border-radius: 100px;
  background-color: tomato;
  border: solid white 1px;
  color: white;
  font-size: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  bottom: 40px;
  left: 70px;
  display: none;
}
.option-icon{
  padding:  2px;
  margin-top: 5px;
}
.derivery-option{
  margin: 7px;
}
.pay{
  border-radius: 5px;
  margin-left: 5px;
  background-color: black;
  color: white;
  padding: 3px 10px;
}
.pay:hover{
  background-color: tomato;
}














.footer-container{
	max-width: 1170px;
	margin:auto;
}
.footer-row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer1{
	background-color: #24262b;
    padding: 70px 0;
    display: inline-block;
    width: 100%;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links2 a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links2 a:hover{
	color: #24262b;
	background-color: #ffffff;
}

.unavailable-content{
  padding: 20px 30px;
  color:rgb(124, 119, 119);
  text-align: center;
}
.unavailable-content .icon-glass, .icon-cutlery, .icon-flag2, .message-icon {
  font-size: 30px;
  padding-bottom: 10px;
}


.myForm{
  width:90vw;
  max-width:400px;
  border:1px solid #ddd;
  padding:10px;
  display:flex;
  flex-direction:column;
  border-radius:5px;
}

label.float-component{
  margin-bottom:10px;
  position:relative;
 /* border-bottom:1px solid #ddd;*/
}
input.float-input{
  width:100%;
  padding:15px 5px 3px 2px;
  margin-top:5px;
  background-color: #E6E4E4;
  /*border:none;
  outline:none;*/
}
input.float-input::placeholder{
  opacity:0;
}
span.floated-text{
  background-color: #E6E4E4;
  padding: 1px 5px;
  border-radius: 4px;
  position:absolute;
  top:-13px;
  left:13px;
  transform:translateY(30px);
  font-size:14px;
  transition-duration:300ms;
}

label.float-component:focus-within > span.floated-text,
input.float-input:not(:placeholder-shown) + span.floated-text{
  color:black;
  font-size: 12px;
  transform:translateY(5px);
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}



/* Extra small devices (phones, 700px and down) */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .gas-station-card {
    width: 95%;
    justify-content: left;
  }
  .mobile-view {
    display: block;
  }
  .pc-view {
    display: none;
  }
  form.search-location {
    width: 80%;
  }
  form.search-location input[type="text"] {
    width: 100%;
  }

  .restaurant-card {
    width: 97%;
  }
  .card-detail{
    width: 100%;
  }
}
/* Extra small devices (phones, 700px and down) */
@media only screen and (max-width: 700px) {
  .isVisible {
    display: none;
  }
  .cart-pop .cart {
    width: 95%;
  }
  .food-menu {
    width: 100%;
  }
  .row-component {
    width: 100%;
    height: 450px;
  }
}
@media only screen and (max-width: 400px) {
  .cart {
    width: 400px;
  }
}

@media only screen and (max-width: 330px) {
  .row-component {
    height: 500px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
