@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700|Give+You+Glory);

/*------------------------------------------------------------------
Theme Name: Foodpicky - Responsive Bootstrap Restaurants Directory template Online food ordering
Version: 1.0
Author: codenpixel.com
Contact: info@codenpixel.com
-------------------------------------------------------------------*/

/* Table of Content
*****************************************************


01. General Properties
- Styling
- Buttons
- Inputs
- Forms
02. Main Nav
03. Header
04. Food items
05. Pricing
06. Map


*/

:root {
  --primary: #08a19a;
  --primary-border: #166864;
  --alternative: #082939;
  --secondary: #aa4854;
  --white: #ffffff;
  --black: #062939;
  --danger:#e63b3b;
}

body {
  background: rgba(252, 251, 249, 0.68);
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  overflow-x: hidden;
}

/* ==========================
*   Typohraphy
============================*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--black);
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-border);
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
}


#header-login-restaurant_panel {
  color: var(--black);
}

#header-login-restaurant_panel:active {
  color: var(--black);
}

ul {
  list-style-type: none;
  padding: 0;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #eaebeb;
}

img.as-bg-image {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.upper-banner {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}

.banner-title {
  position: relative;
  z-index: 2;
  bottom: 100px;
}

/*==================================
* Bootstrap grid tweaks
*===================================*/

.container {
  max-width: 1270px;
  width: 94%;
}

.footer-last-section {
  padding: 0.4rem;
  display: grid;
  place-items: center;
  background-color: #008b72;
  min-height: 70px;
}

/* Remove space from columns */

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutter [class*='col-']:not(:first-child),
.row.no-gutter [class*='col-']:not(:last-child) {
  padding-right: 0;
  padding-left: 0;
}

/*==================================
* Just simple warppers
*===================================*/

.page-wrapper {
  padding-top: 58px;
  /* Used for inpper pages if navigation fixed to the top */
}

.inner-page {
  margin-top: 30px;
  margin-bottom: 50px;
}

/*==================================
* Foms
*===================================*/

.custom-control-input:checked~.custom-control-indicator {
  color: var(--white);
  background-color: var(--primary);
  margin-top: 0;
  padding: 10px;
  border-radius: 100%;
}

.custom-checkbox .custom-control-indicator {
  border-radius: 100%;
}

.custom-control-indicator {
  padding: 10px;
  background-color: var(--white);
  box-shadow: 0 0 1px 3px rgba(93, 92, 99, 0.05);
  border: 1px solid rgba(116, 135, 150, 0.23);
}

.custom-control-input:focus~.custom-control-indicator {
  -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem var(--primary);
  box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem var(--primary);
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0088'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.593.612-1.538-1.55l04.262.9747.2582.193z'/%3E%3C/svg%3E");
}

.custom-control-input:active~.custom-control-indicator {
  color: var(--white);
  background-color: var(--primary);
}

.custom-control-input:disabled~.custom-control-indicator {
  cursor: not-allowed;
  background-color: #eee;
}

.custom-control-input:disabled~.custom-control-description {
  color: #767676;
}

.custom-control {
  padding-left: 30px;
}

.form-control {
  border: 1px solid #eaebeb;
  border-radius: 2px;
}

.custom-select {
  line-height: 1;
}

/* ==========================
*   Buttons
============================*/

.form-control-lg,
.dropdown-menu,
.btn,
.btn-group-lg>.btn,
.btn-lg,
.img-rounded {
  border-radius: 2px;
}

.btn {
  transition: all 0.4s;
}

.btn-secondary {
  color: var(--black);
  background-color: rgba(252, 251, 249, 0.68);
  border-color: #eaebeb;
}

.theme-btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.theme-btn-dash {
  border: 2px dashed var(--primary);
  background-color: transparent;
  color: var(--primary);
}

.theme-btn-dash:hover,
.theme-btn,
.theme-btn.btn-lg:hover,
.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.theme-btn-dash:hover {
  border: 2px solid var(--primary);
  color: #fff;
}

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

.primary-color {
  color: var(--primary);
}

/* ==========================
*   Helpers
============================*/

.space-xs {
  padding-bottom: 15px;
  padding-top: 15px;
}

.space-sm {
  padding-bottom: 30;
  padding-top: 30px;
}

.space-md {
  padding-top: 90px;
  padding-bottom: 90px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.b-l {
  border-left: 1px solid #edeede;
}

.b-r {
  border-left: 1px solid #edeede;
}

.b-t {
  border-top: 1px solid #edeede;
}

.b-b {
  border-bottom: 1px solid #edeede;
}

.b-b-0 {
  border-bottom: none !important;
}

.b-t-0 {
  border-top: none !important;
}

.b-l-0 {
  border-left: none !important;
}

.b-r-0 {
  border-right: none !important;
}

.align-wrap {
  display: inline-table;
  min-height: 100%;
}

.align-vertical {
  display: table-cell;
  vertical-align: middle;
}

.font-white {
  color: #fff;
}

/* ============================
* PAGINATION
==============================*/

.page-item.disabled .page-link,
.page-item.disabled .page-link:focus,
.page-item.disabled .page-link:hover {
  border-color: #eaebeb;
}

.page-link {
  color: inherit;
  background-color: var(--white);
  border: 1px solid #eaebeb;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
  background-color: var(--primary);
  border-color: var(--primary-border);
}

/* ==========================
*   Header and navigation
============================*/

#header {
  position: fixed;
  width: 100%;
  border: 0;
  z-index: 9999;
}

.nav-fixed {
  position: fixed;
  width: 100%;
  z-index: 10;
}

.navbar {
  background-color: var(--white);
  /*padding: .95rem 1rem;*/
  border-radius: 0;
  padding: 5px 0px 5px 0px;
}

.navbar-nav .nav-item {
  padding-left: 10px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #f3f2f2;
}

.navbar-dark .navbar-toggler {
  background-image: none;
  border-color: transparent;
}

.leftspace {
  margin-right: 8px;
}

@media (max-width: 62em) {
  .navbar-nav {
    padding-top: 0.425rem;
    padding-left: 0.75rem;
  }

  .navbar-nav .nav-item {
    float: none;
  }

  .navbar-brand {
    float: right;
  }

  .navbar-brand,
  .navbar-nav .nav-item {
    display: block;
  }

  .navbar-nav .nav-item+.nav-item {
    margin-left: 0;
  }

  .dropdown-menu {
    position: relative;
    float: none;
    background-color: transparent;
  }

  .dropdown-menu a {
    color: var(--primary);
  }
}

.user-email-link {
  color: var(--primary-border)
}

.headroom--pinned {
  display: block;
}

.headroom--unpinned {
  display: none;
}

.navbar-fixed-top {
  position: fixed;
}

.navbar-toggler {
  padding: 4px 0;
  font-size: 1.25rem;
  line-height: 1;
  background: 0 0;
  border: 1px solid transparent;
  color: var(--primary);
  border-radius: 2px;
}

/********* top links part ***********/

.top-links {
  padding: 15px 0;
  border-bottom: 1px solid #eaebeb;
}

.top-links ul {
  margin-bottom: 0;
}

.link-item a {
  font-size: 12px;
  color: #414551;
}

.link-item.active span {
  background-color: var(--primary);
  color: #fff;
}

.links {
  display: block;
}

.links span {
  border: 1px solid #eaebeb;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  color: #3a3e47;
  font-weight: 600;
  display: inline-block;
  margin-right: 18px;
  text-align: center;
  line-height: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.links li:hover span {
  background-color: var(--secondary);
  color: #fff;
}

@media (max-width: 800px) {
  .top-links {
    display: none;
  }
}

/* ==========================
*   Hero
============================*/

.hero {
  padding-top: 8%;
  padding-bottom: 3%;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-family: 'Give You Glory', cursive;
  color: #fff;
  font-size: 3.6em;
  font-weight: 700;
}

.hero:before {
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(7, 6, 29, 0.37);
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
}

/* ==========================
*   Hero steps
============================*/

.step-item {
  display: inline-block;
  margin: 0 40px 0;
  position: relative;
}

.banner-form {
  margin-bottom: 60px;
  display: block;
  margin-top: 20px;
}

.step-item svg {
  display: inline-block;
  width: 34px;
  height: 34px;
}

.step-item img {
  display: block;
  margin: 0 auto 15px;
}

.step-item h4 {
  font-family: 'Give You Glory', cursive;
  color: #fff;
  font-size: 21px;
}

.step-item h4 span {
  /* color: var(--primary); */
  color: #fff;
}

.step1:after,
.step2:after {
  position: absolute;
  content: '';
  right: -58%;
  top: -20%;
  width: 130px;
  height: 32px;
  background: url(../images/arrow.png);
}

.step2:after {
  background: url(../images/arrow-dotted.png);
  height: 25px;
  right: -95%;
  top: -15%;
}

@media (max-width: 568px) and (min-width: 280px) {

  .step1:after,
  .step2:after {
    display: none;
  }

  .hero h1 {
    font-size: 2.2em;
    padding-top: 75px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .step-item {
    margin: 0 30px 0;
  }
}

/* ==========================
*   Detect location
============================*/

.location-match {
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
}

.location-match span {
  font-weight: 600;
}

.location-match a {
  color: var(--primary);
}

.location-match a:hover {
  color: #43434c;
}

/* ==========================
*  Popular block
============================*/

.popular {
  padding: 70px 0 90px;
  background-size: 100%;
}

.food-item-wrap {
  border: 1px solid #eaebeb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fafaf8;
}

.food-item p {
  font-size: 14px;
}

.food-item-wrap h5 a {
  color: #25282b;
  font-size: 21px;
  font-weight: 600;
}

.food-item-wrap .title h3 {
  font-size: 16px;
  margin-bottom: 35px;
  color: #414551;
  line-height: 21px;
  font-weight: 300;
}

.food-item-wrap .price {
  font-size: 21px;
  font-weight: 700;
  color: #000;
  margin-top: 4px;
  display: inline-block;
}

.food-item-wrap .product-name {
  margin-bottom: 20px;
}

.food-item-wrap .content {
  padding: 25px 15px 35px;
}

.food-item-wrap .restaurant-block {
  border-top: 1px solid #eaebeb;
  float: left;
  width: 100%;
}

.food-item-wrap .right-text {
  margin-left: 10px;
}

.food-item-wrap .right-text a {
  display: block;
}

.food-item-wrap .left {
  float: left;
  padding: 8px 15px;
}

.food-item-wrap .left img {
  padding-top: 3px;
}

@media (min-width: 320px) and (max-width: 568px) {
  .food-item-wrap .left {
    float: left;
    padding: 10px;
  }

  .food-item .left img {
    width: 45px;
  }

  .food-item-wrap .right-text {
    font-size: 13px;
  }
}

.food-item-wrap .right {
  padding: 10px 0;
}

.food-item-wrap .right-like-part {
  border-left: 1px solid #eaebeb;
  padding: 25px 15px;
  font-size: 13px;
}

@media (min-width: 280px) and (max-width: 580px) {
  .food-item-wrap .right-like-part {
    padding: 24px 10px;
    font-size: 10px;
  }
}

.food-item-wrap .right-like-part img {
  vertical-align: middle;
  margin-right: 5px;
}

.food-item-wrap .right-text a {
  color: #25282b;
  font-weight: 400;
}

.food-item-wrap .right-text span,
.food-item-wrap .right-like-part,
.food-item-wrap .right-like-part span {
  font-weight: 300;
  color: #748796;
}

.food-item-wrap .figure-wrap {
  position: relative;
  height: 210px;
}

.food-item-wrap .food-item-wrap figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.food-item-wrap .food-item-wrap figure img {
  width: 100%;
}

.food-item-wrap .figure-wrap:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  background: url(../images/zig-zag.png);
  width: 100%;
  height: 5px;
}

.food-item-wrap:hover h5>a,
.food-item-wrap:hover .right-text>a {
  color: var(--primary);
}

.food-item-wrap .figure-text {
  position: absolute;
  top: 0;
  padding: 13px 28px 18px 18px;
  width: 100%;
  height: 100%;
}

.food-item-wrap .figure-text .bottom {
  position: absolute;
  bottom: 25px;
  float: left;
  width: 87%;
}

.food-item-wrap .review {
  margin-top: 5px;
  font-size: 10px;
  text-transform: uppercase;
}

.food-item-wrap .distance {
  background: var(--primary);
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  padding: 0 10px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 20px;
}

.food-item-wrap .rating i {
  color: #ffd953;
  font-size: 16px;
}

.food-item-wrap .rating .fa-star-o {
  font-size: 17px;
}

.food-item-wrap .rating {
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.food-item-wrap .review {
  right: 30px;
  position: absolute;
  bottom: 30px;
}

.food-item-wrap .review a {
  color: #fff;
}

.food-item-wrap .left-sidebar,
.food-item-wrap .right-sidebar {
  width: 300px;
}

.food-item-wrap .lf-ghost {
  width: 395px !important;
  float: left;
}

@media (max-width: 543px) {}

@media (min-width: 544px) and (max-width: 767px) {
  .food-item-wrap .right-text {
    margin: 5px 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .food-item-wrap .right-like-part {
    width: 100%;
    padding: 5px 10px;
    background: #fff;
    border: 0;
    border-top: 1px solid #eaebeb;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .food-item-wrap .restaurant-block {
    text-align: center;
  }

  .food-item-wrap .left {
    float: none;
  }

  .food-item-wrap .pull-left {
    float: none;
  }

  .food-item-wrap .right-text span,
  .food-item-wrap .right-like-part,
  .food-item-wrap .right-like-part span {
    width: 100%;
  }

  .right-like-part.pull-right {
    background-color: var(--white);
    border: 0;
    border-top: 1px solid #eaebeb;
    padding: 10px;
  }

  .food-item-wrap .price-btn-block {
    text-align: center;
  }

  .food-item-wrap .price-btn-block .price {
    margin-bottom: 15px;
    display: block;
  }

  .food-item-wrap .price-btn-block .btn {
    float: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .food-item-wrap .left {
    padding: 10px;
    font-size: 11px;
    line-height: 20px;
  }
}

@media (min-width: 1200px) {}

/*============================================
* Modal
=============================================*/

.cart-addon .food-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ededed;
  padding: 2px 0 15px;
}

.cart-addon .food-item:last-of-type {
  border-bottom: none;
}

.cart-addon .food-item .item-img img {
  max-width: 70px;
}

.cart-addon .food-item .rest-descr {
  margin-left: 80px;
}

.cart-addon .food-item h6 {
  /* margin: 0 0 2px 0; */
}

.cart-addon .food-item h6 a {
  font-size: 16px;
  color: #4d4f56;
  display: block;
  margin: 4px 0 0 0;
  line-height: 20px;
}

.cart-addon .food-item .price {
  font-weight: 600;
  margin-top: 15px;
  display: block;
  color: #25282b;
}

.cart-addon .food-item .form-control {
  margin-top: 8px;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  right: 0;
  position: absolute;
  top: 0;
  background-color: var(--primary);
  opacity: 1;
  width: 30px;
  height: 30px;
  color: #fff;
  text-shadow: none;
  font-size: 14px;
  display: block;
}

button.close span {
  display: block;
  margin-top: -1px;
}

/*-----------------------------------
How it works section
-----------------------------------*/

.how-it-works {
  background-image: url(../images/city.png), url(../images/pattern.png);
  background-repeat: repeat-x, repeat;
  background-position: bottom, center;
  padding: 70px 0;
  position: relative;
}

.how-it-works:after {
  position: absolute;
  right: 20px;
  top: -30px;
  background: url(../images/peanuts.png);
  width: 150px;
  height: 51px;
  content: '';
}

.how-it-works .text-xs-center>h2 {
  color: #d8bea5;
  margin-bottom: 50px;
}

.how-it-works-wrap h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.how-it-works-wrap>p {
  font-weight: 300;
}

.how-it-works-steps {
  position: relative;
  padding: 0 2.1rem;
}

.how-it-works .how-middle {
  margin-top: 70px;
}

.how-it-works p.pay-info {
  font-size: 16px;
  color: #d8bea5;
  padding-bottom: 30px;
  padding-top: 5px;
  text-align: center;
}

.how-it-works h3 {
  color: #fff;
}

/*-----------------------------------
Steps
-----------------------------------*/

.how-it-works p {
  color: #9c9da5;
}

.step .icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 10px auto 20px;
  line-height: 78px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.step .icon:before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: 5px;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 38px;
  background-color: var(--primary);
  border-radius: 50%;
  font-size: 1.5em;
  font-family: 'Give You Glory', cursive;
  font-weight: 700;
  color: #fff;
}

.step .icon img,
.step .icon svg {
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
}

.how-it-works .step-2 {
  padding-top: 20%;
}

.col1:after {
  position: absolute;
  content: '';
  right: -21%;
  top: 15%;
  width: 185px;
  height: 34px;
  background: url(../images/arrow-big.png) no-repeat;
}

.col2:after {
  position: absolute;
  content: '';
  right: -16%;
  top: 11%;
  width: 175px;
  height: 34px;
  background: url(../images/arrow-big-dotted.png) no-repeat;
}

.how-it-works-solution {
  margin-bottom: 26px;
}

@media (max-width: 543px) {

  .col1:after,
  .col2:after {
    display: none;
  }
}

@media (min-width: 544px) and (max-width: 767px) {

  .col1:after,
  .col2:after {
    display: none;
  }
}

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

  .col1:after,
  .col2:after {
    display: none;
  }
}

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

  .col1:after,
  .col2:after {
    right: -30%;
  }
}

@media (min-width: 1200px) {}

/****** featured restaurants block *******/

.featured-restaurants {
  padding: 100px 0 20px;
  position: relative;
}

@media (min-width: 280px) and (max-width: 580px) {
  .featured-restaurants {
    padding: 50px 0 20px;
    position: relative;
  }

  .featured-restaurants .title-block {
    margin-bottom: 15px;
  }

  .featured-restaurants .title-block h4 {
    font-size: 21px;
  }
}

.featured-restaurants:before {
  position: absolute;
  top: -81px;
  left: 50px;
  background: url(../images/chilly.png);
  width: 103px;
  height: 151px;
  content: '';
}

@media (min-width: 280px) and (max-width: 580px) {
  .featured-restaurants:before {
    display: none;
  }

  .title-row {
    padding-top: 8px;
  }
}

.featured-restaurants .restaurant-wrap {
  border: 1px solid #eaebeb;
  border-radius: 3px;
  padding: 15px;
  background: #fafaf8;
  float: left;
  width: 100%;
}

.featured-restaurants .restaurant-logo {
  border-radius: 3px;
}

.featured-restaurants .restaurant-logo img {
  width: 95px;
  height: auto;
  border: 1px solid #eaebeb;
}

@media (min-width: 320px) and (max-width: 543px) {
  .restaurant-wrap {
    /* text-align:center */
  }

  .featured-restaurants .restaurant-logo img {
    width: 85px;
    margin-bottom: 15px;
  }
}

.featured-restaurants .restaurant-wrap h5 {
  margin-top: 5px;
  font-weight: 600;
}

.featured-restaurants .restaurant-wrap h5 a {
  color: #25282b;
}

.featured-restaurants .bottom-part {
  margin-top: 5px;
}

.featured-restaurants .cost,
.featured-restaurants .mins,
.featured-restaurants .ratings {
  font-size: 12px;
  display: inline-block;
}

.featured-restaurants .cost,
.featured-restaurants .mins {
  margin-right: 1rem;
}

.featured-restaurants .ratings span i {
  color: var(--primary);
}

.featured-restaurants .ratings .fa-star-o {}

.restaurants-filter ul li {
  display: inline-block;
  padding: 0 0.5rem;
}

.featured-restaurants .restaurants-filter ul li a {
  font-weight: 400;
  color: #414551;
  font-size: 16px;
  text-transform: capitalize;
}

.featured-restaurants .restaurants-filter ul li a:hover {
  color: #e8500e;
}

.resimage {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 320px) and (max-width: 480px) {
  .restaurants-filter {
    float: none;
  }

  .restaurants-filter ul li {
    padding: 0 0.5rem;
  }
}

.featured-restaurants .featured-restaurants h4 {
  margin-bottom: 45px;
}

.featured-restaurants .restaurant-listing {
  margin-bottom: 50px;
  margin-top: 25px;
}

.featured-restaurants .single-restaurant {
  margin-bottom: 30px;
}

.add-restaurants {
  background: #fafaf8;
  border: 1px solid #eaebeb;
  padding: 35px 10px 23px;
  border-radius: 2px;
  margin-top: 70px;
}

.add-restaurants .add-title {
  padding-top: 8px;
}

.add-restaurants p strong {
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 320px) and (max-width: 543px) {
  .featured-restaurants .restaurant-wrap {
    margin-bottom: 10px;
  }

  .add-restaurants {
    text-align: center;
  }

  .add-restaurants a.btn.theme-btn {
    display: block;
  }
}

@media (min-width: 544px) and (max-width: 767px) {}

@media (min-width: 768px) and (max-width: 991px) {
  .featured-restaurants .restaurant-wrap {
    text-align: center;
  }
}

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

@media (min-width: 1200px) {}

/*-----------------------------------
App section
-----------------------------------*/

.app-section {
  padding-top: 35px;
  position: relative;
}

.app-section:after {
  content: '';
  background: url(../images/city-2.png) center bottom;
  background-color: #8a8583;
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-repeat: repeat-x;
}

.app-wrap {
  position: relative;
  z-index: 2;
}

@media (min-width: 280px) and (max-width: 568px) {
  .app-wrap {
    padding-bottom: 30px;
  }
}

.app-wrap figure {
  margin: 0;
  text-align: center;
}

.app-wrap .left-text {
  padding-top: 110px;
}

.app-wrap .left-text h3,
.app-wrap .left-text p {
  color: #fff;
}

/* ==========================
*  Download app buttons
============================*/

.app-btn {
  color: #ffffff;
  float: left;
  margin-right: 15px;
  background: #33568a;
  margin-top: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 2px;
  transition: all 0.3s;
}

.app-btn i {
  font-size: 38px;
  line-height: 50px;
  margin: 0px;
  padding: 0 18px;
}

.app-btn .pull-right {
  padding: 8px 25px 8px 10px;
}

.app-btn .text {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.app-btn:hover,
.app-btn:active,
.app-btn:focus {
  color: #ffffff;
  background: #111111;
}

.android-button {
  background: #cc7318;
}

@media (min-width: 348px) and (max-width: 767px) {
  .app-section {
    padding: 55px 0;
  }

  .text-img-block figure {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .app-wrap .left-text {
    padding-top: 100px;
    font-size: 80%;
  }

  .app-btn i {
    font-size: 28px;
    line-height: 41px;
    margin: 0px;
    padding: 0 18px;
  }

  .app-btn {
    padding-right: 5px;
  }

  .app-btn .pull-right {
    padding: 7px 14px 0 5px;
  }

  .app-btn i {
    padding: 0 10px;
  }
}

/* ==========================
*  Footer
============================*/

footer {
  background-color: var(--alternative);
  padding: 75px 0;
  z-index: 1;
  position: relative;
}

/* .footer-paymentIcon img {
  width: 60px;
  height: 40px;
} */

.bottom-footer {
  padding-top: 25px;
}

.payment-options ul li {
  display: inline-block;
  margin-right: 8px;
}

footer h5 {
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 15px;
}

.footer-logo-block img {
  display: block;
  margin-bottom: 15px;
}

footer p,
footer,
footer span {
  font-weight: 300;
  color: var(--white);
}

.address h5 a {
  color: var(--primary);
  font-size: 26px;
  font-family: 'Give You Glory', cursive;
  margin-left: 20px;
  font-weight: 600;
}

.address h5 a:hover {
  color: #fff;
}

.popular-locations ul li {
  display: inline-block;
  width: 49%;
}

footer ul li {
  margin-bottom: 6px;
}

footer ul li a {
  color: var(--white);
  transition: all 0.3s;
}

.how-it-works-links {
  margin-bottom: 70px;
}

.address p {
  margin-bottom: 35px;
}

footer ul li a:hover {
  color: var(--primary);
}

footer li a {
  line-height: 20px;
  display: inline-block;
}

.payment-options ul {
  margin-top: 10px;
  float: left;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 768px) {
  .footer-logo-block {
    margin-bottom: 25px;
  }
}

/* ==========================
*  Inner pages
============================*/

.inner-page-hero {
  padding-top: 5%;
  padding-bottom: 5%;
  overflow: hidden;
  position: relative;
}

.overflow-visible {
  overflow: visible !important;
}

/********* profile banner part ***********/

.profile-banner figure img {
  width: 100%;
}

.image-wrap {
  border-radius: 2px;
  padding: 5px;
  float: left;
  background: #fff;
}

.image-wrap figure {
  background: #fff;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  float: left;
  margin-bottom: 0;
}

.image-wrap figure img {
  max-width: 100%;
  display: block;
}

.profile p {
  color: #fff;
}

.banner figure {
  margin-bottom: 0;
}

.profile-desc h6 a {
  font-size: 26px;
  line-height: 31px;
  color: #fff;
}

.profile .right-text {}

.profile-img {
  width: 21%;
}

.profile .right-text span {
  margin-bottom: 8px;
  display: block;
}

.profile-desc h6 {
  display: inline-block;
  margin-right: 3rem;
  margin-bottom: 10px;
}

.profile-desc a.btn {
  display: inline-block;
  padding: 3px 20px;
  background-color: var(--primary);
  vertical-align: text-bottom;
  font-size: 13px;
  color: #fff;
}

.profile-desc .right-text {
  width: 100%;
  border-right: 0;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.profile-desc .nav-item a {
  color: #fff;
}

.profile-desc .nav-item.ratings a span i {
  color: #ffd953;
  font-size: 16px;
}

@media (min-width: 320px) and (max-width: 768px) {
  .profile-desc .right-text {
    margin-top: 0;
  }

  .profile-desc h6 {
    margin-right: 0;
  }

  .image-wrap {
    padding: 1px;
    border-radius: 2px;
    margin-bottom: 20px;
  }

  .profile-desc a.btn {
    float: right;
    margin-top: 4px;
  }

  .image-wrap img {
    width: auto;
  }

  .profile-img {
    width: 100%;
  }

  .inner-page-hero {
    min-height: 177px;
    position: relative;
  }

  .inner-page-hero .profile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 !important;
  }

  .inner-page-hero .profile-desc {
    position: absolute;
    bottom: -30px;
    left: 15px;
    width: calc(100% - 30px);
    background-color: var(--white);
    padding-top: 5px;
  }

  .inner-page-hero .profile-desc .nav .nav-link {
    font-size: 12px;
  }

  .inner-page-hero .profile-desc .nav .nav-link .green-circle {
    font-size: 9px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    position: relative;
    top: -1px;
  }

  .profile-desc h6 a {
    color: #000;
    font-size: 20px;
    font-weight: 600;
  }

  .profile .nav-item .nav-link {
    color: #000;
  }

  .sidebar-title {
    background: transparent !important;
    padding-left: 0 !important;
  }

  .sidebar-title h6 {
    color: #000 !important;
  }

  .page-wrapper {
    background: #f2f2f4;
  }

  .sidebar {
    background: transparent !important;
    border: none !important;
  }

  .sidebar-title i {
    display: none;
  }

  .main-block>ul li:hover {
    background: transparent !important;
    color: #fff !important;
  }

  .main-block>ul li .cat-active {
    color: #fff !important;
    background: var(--primary) !important;
    border-radius: 8px;
    text-decoration: none !important;
  }

  .main-block ul li a {
    padding: 0px 8px 1px !important;
    font-size: 12px;
  }

  .menu-widget {
    background: transparent !important;
    border: none !important;
    margin-bottom: 0 !important;
  }

  .menu-widget .widget-heading {
    display: none;
  }

  .menu-widget .food-item {
    background-color: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    padding: 10px 30px 10px 10px !important;
  }

  .menu-widget .food-item .restaurant-logo {
    max-width: 45px !important;
    width: 45px;
  }

  .menu-widget .food-item .rest-descr {
    padding-left: 60px !important;
  }

  .menu-widget .food-item .rest-descr h6 {
    margin-bottom: 5px !important;
  }

  .food-item p {
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 0;
  }

  .menu-widget .food-item .item-cart-info {
    padding-left: 74px !important;
    padding-top: 0 !important;
    position: static;
  }

  .menu-widget .food-item .price {
    font-size: 13px;
    color: var(--primary) !important;
  }

  .menu-widget .food-item .item-cart-info .btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    color: transparent;
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
  }

  .menu-widget .food-item .item-cart-info .btn:after {
    content: '>';
    position: absolute;
    top: 5px;
    left: 4px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid #000;
    border-width: 2px 2px 0 0;
  }

  .btn-circle.btn-xl {
    width: 50px !important;
    height: 50px !important;
    padding: 0 4px 0 0 !important;
  }

  .widget-cart h6 {
    padding-left: 15px;
  }

  .widget-cart .widget-heading {
    margin-bottom: 15px;
  }

  .widget-cart .total {
    margin-left: 0 !important;
    text-align: center;
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .profile-desc .right-text {
    margin-top: 0;
  }
}

/********* breadcrumb part ***********/

.breadcrumb {
  background: transparent;
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
}

.breadcrumb ul li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}

.breadcrumb ul li:before {
  position: absolute;
  left: -25px;
  top: 0;
  content: '/';
}

.breadcrumb ul li:first-child:before {
  content: none;
}

.breadcrumb ul li a,
.breadcrumb ul li {
  color: #333366;
}

.breadcrumb ul,
.breadcrumb {
  margin-bottom: 0;
}

@media (min-width: 320px) and (max-width: 568px) {
  .breadcrumb ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
  }

  .breadcrumb ul li:before {
    display: none;
  }
}

.popular-result {
  margin-top: 40px;
}

.result-show .dropdown button {
  color: #333366;
  font-size: 14px;
  border: 0;
}

.result-show div i {
  margin-left: 10px;
  font-size: 22px;
  vertical-align: middle;
  color: #000;
}

.result-show {
  padding: 7px 0 10px;
  border-bottom: 1px solid #eaebeb;
  color: #333366;
  margin-bottom: 20px;
}

.result-show p {
  padding: 0;
  margin: 5px 0;
}

.sidebar {
  border: 1px solid #eaebeb;
  background: #fafaf8;
  border-radius: 3px;
}

.sidebar-inner {
  padding-left: 15px;
  padding-right: 15px;
}

.sidebar-inner .sidebar input,
.sidebar .input-group-btn .btn {
  height: 55px;
  border-left: 0;
  border-right: 0;
}

.widget {
  border: 1px solid #eaebeb;
  background: #fafaf8;
  border-radius: 3px;
  margin-bottom: 20px;
}

.widget-heading {
  padding: 15px;
  color: #fff;
  border-radius: 3px;
  border-bottom: 1px solid #eaebeb;
}

.menu-widget .widget-heading {
  border-bottom: none;
}

.widget-heading .widget-title {
  font-size: 16px;
  font-weight: 600;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.widget-heading .widget-title .btn {
  padding: 0px 24px;
}

.widget-delivery .col-xs-6 {
  padding: 25px 15px 20px;
  background: #fff;
  border-right: 1px solid #eaebeb;
  display: -webkit-inline-box;
  border-bottom: 1px solid #eaebeb;
}

.widget-delivery .col-xs-6:last-of-type {
  border-right: 1px solid transparent;
}

.sidebar .widget-delivery .col-xs-6 {
  border-bottom: none;
}

.sidebar-title {
  padding: 15px 15px 15px;
  background: var(--primary);
  float: left;
  width: 100%;
}

.sidebar-title h6 {
  float: left;
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.sidebar-title i {
  float: right;
  color: #fff;
  font-size: 15px;
  margin-top: 3px;
}

.main-block ul li {
  line-height: 28px;
  font-weight: 300;
  display: block;
  border-bottom: 1px solid #eaebeb;
  font-weight: 500;
  color: #414551;
}

.main-block ul li a {
  color: #414551;
  display: block;
  font-weight: 500;
  padding: 15px;
}

.main-block ul {
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.main-block ul li:hover {
  background: #fffdfd;
}

.main-block ul li:hover a {
  color: var(--primary);
}

.main-block ul:hover li:last-child {
  border-bottom: 1px solid transparent;
  border-bottom: 1px solid #eaebeb;
}

.main-block ul li:first-of-type {
  border-top: none;
}

a.more-link {
  padding-left: 15px;
  margin: 5px 0 25px;
  float: left;
}

.block {
  border-bottom: 1px solid #eaebeb;
  margin-top: 30px;
}

.main-block form ul li {
  padding: 15px;
}

.main-block .input-group input,
.main-block .input-group-btn {
  height: 55px;
  border-left: none;
}

/* Food items */

.menu-widget,
.widget {
  border: 1px solid #eaebeb;
  background: #fafaf8;
  border-radius: 2px;
  position: relative;
}

.widget-body {
  padding: 20px;
}

.panel {
  margin-bottom: 15px;
  border: 1px solid #dcdee3;
  border-radius: 3px;
  box-shadow: none;
}

.panel-heading {
  padding: 15px;
  border: none !important;
  border-radius: 0;
}

.panel-heading i {
  padding-right: 7px;
  font-size: 14px;
}

.panel-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  color: #25282b;
}

.panel-title a {
  color: #25282b;
}

.panel .panel-body {
  padding: 20px;
}

.list-check>li {
  line-height: 24px;
  position: relative;
  margin-bottom: 10px;
  padding-left: 23px;
}

.list-check>li:after {
  font-family: FontAwesome;
  position: absolute;
  top: 1px;
  left: 0;
  content: '\f05d';
  color: #7ab55c;
  font-size: 18px;
}

.menu-widget .food-item {
  padding: 15px;
}

.menu-widget .food-item:first-of-type {
  border-bottom: none;
}

.menu-widget .food-item .restaurant-logo {
  max-width: 100px;
  height: auto;
  display: block;
}

.menu-widget .food-item .restaurant-logo img {
  max-width: 100%;
  display: block;
}

.menu-widget .food-item:first-of-type {
  border-top: 1px solid #eaebeb;
}

.menu-widget .food-item:last-of-type {
  border-bottom: transparent;
}

.menu-widget .food-item.white {
  background-color: var(--white);
}

.menu-widget .food-item .rest-descr {
  padding-left: 115px;
  padding-top: 0;
}

.menu-widget .food-item .rest-descr h6 a {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.menu-widget .food-item .item-cart-info {
  padding-top: 20px;
}

.menu-widget .food-item .price {
  font-weight: 600;
  color: var(--black);
  position: relative;
  margin-top: 6px;
}

.order-row .form-control {
  border-radius: 0;
}

.order-row .title-row {
  margin-bottom: 10px;
}

.order-row .title-row a i {
  margin-top: 7px;
}

.order-row {
  border-bottom: 1px solid #eaebeb;
}

.order-row:last-of-type {
  border-bottom: none;
}

@media (max-width: 543px) {
  .widget-cart {
    margin: 20px auto;
    float: right;
    width: 100%;
  }
}

@media (min-width: 544px) and (max-width: 767px) {
  .widget-cart {
    margin: 20px auto;
    float: right;
    width: 66.666667%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .widget-cart {
    margin-top: 20px;
    float: right;
    width: 66.666667%;
  }
}

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

@media (min-width: 1200px) {}

a[aria-expanded='true'] .fa-angle-right {
  display: none;
}

a[aria-expanded='false'] .fa-angle-down {
  display: none;
}

/*==============================
*
* Rstaurants
*
==============================*/

.restaurant-entry {
  border: 1px solid #eaebeb;
  border-radius: 2px;
  margin-bottom: 20px;
}

.restaurant-entry .entry-logo {
  float: left;
  width: 110px;
  height: auto;
  border: 1px solid #eaebeb;
  border-radius: 2px;
  margin-top: 15px;
  margin-left: 15px;
  overflow: hidden;
}

.restaurant-entry .entry-logo img {
  max-width: 100%;
  display: block;
}

.restaurant-entry .entry-dscr {
  padding-left: 145px;
  margin-top: 15px;
}

.restaurant-entry .entry-dscr h5 a {
  color: var(--black);
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
}

.restaurant-entry .entry-dscr ul li {
  font-size: 12px;
  margin-top: 7px;
}

.restaurant-entry .right-review {
  padding: 15px 10px;
  border-left: 1px solid #eaebeb;
  min-height: 145px;
}

.restaurant-entry .right-review p {
  color: var(--black);
  font-weight: 500;
  margin: 0 0 10px;
}

.restaurant-entry .right-review .rating-block {
  color: var(--primary);
  background: transparent;
  border: none;
  padding: 5px 15px 5px;
}

@media (min-width: 320px) and (max-width: 991px) {
  .restaurant-entry .entry-logo {
    float: none;
    text-align: center;
    margin: 10px auto;
  }

  .restaurant-entry .entry-dscr {
    padding: 0 15px;
    text-align: center;
  }

  .restaurant-entry .right-review {
    padding: 15px 10px;
    border-left: transparent;
    border-top: 1px solid #eaebeb;
  }
}

/*==============================
* TAGS
==============================*/

.tags {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags li {
  float: left;
}

.tag {
  font-size: 14px;
  line-height: 26px;
  position: relative;
  height: 28px;
  margin: 0 10px 10px 0;
  padding: 0 20px 0 15px;
  -webkit-transition: all 0.4s;
  border: 1px solid #eaebeb;
  border-radius: 2px;
  background: var(--white);
  color: inherit;
  font-weight: normal;
}

.tag:after,
.tag:before {
  -webkit-transition: all 0.4s;
  background: var(--white);
}

.tag:before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
}

.tag:after {
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.tag:hover {
  color: var(--white);
  border-color: var(--primary-border);
  background-color: var(--primary);
}

/*==================================
* MAPS
*=================================*/

.pricing-page {
  background-image: url(../images/list.png);
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
}

.pricing-box {
  background-color: #fcfbf9;
  border-radius: 3px;
  border: 1px solid #ededed;
  padding: 60px 20px 0;
  margin-top: -80px;
  margin-bottom: 50px;
  text-align: center;
  color: #414551;
  position: relative;
  z-index: 2;
}

@media (min-width: 380px) and (max-width: 1170px) {
  .pricing-box {
    margin-top: 50px;
  }
}

.pricing-box .price {
  color: var(--secondary);
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.pricing-box .price .currency {
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  left: -20px;
  top: -7px;
}

.pricing-box h2 {
  font-size: 33px;
  font-weight: 600;
  margin: 15px 0 10px;
}

.pricing-box p {
  font-weight: 600;
}

.pricing-box ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-box ul li {
  padding: 8px 0;
}

.pricing-box .btn {
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  height: 50px;
  line-height: 32px;
  font-size: 16px;
  -webkit-transform: translateY(50%);
  -khtml-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.pricing-box .btn:hover {
  color: #fff;
}

.pricing-faq div {
  padding-top: 30px;
}

.pricing-faq h3 {
  font-size: 18px;
  font-weight: 600;
}

.pricing-faq p {
  margin: 30px 0;
}

.gl-page-content-section {
  padding-top: 69px;
}

/*==================================
* MAPS
*=================================*/

.map-wrapper {
  width: 43%;
  display: inline-block;
  overflow: hidden;
  float: left;
  position: fixed;
  z-index: 10;
}

.map-wrapper .search-map {
  width: 100%;
  height: 100%;
}

#map {
  height: 100vh;
}

#map-result-section {
  width: 57%;
  float: right;
  padding: 20px;
}

#map {
  width: 100%;
  height: 100vh;
}

.wwone__map-infobox {
  background: #fff;
  width: 260px;
  height: 340px;
}

.wwone__map-infobox__close {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  right: 0;
  top: 0;
  z-index: 9999;
}

.wwone__map-infobox__close span {
  color: #fff;
}

.wwone__map-infobox__close:hover {
  color: #fff;
  text-decoration: none;
}

.wwone__map-infobox__thumb {
  width: 100%;
  height: auto;
}

.wwone__map-infobox__badge {
  position: absolute;
  display: block;
  line-height: 25px;
  color: #fff;
  text-align: center;
  left: 10px;
  top: 10px;
  z-index: 9999;
  background: var(--primary);
  display: inline-block;
  padding: 0px 10px;
  margin-top: 5px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 13px;
}

.wwone__map-infobox__inner {
  background: #fff;
  width: 220px;
  position: relative;
  font-size: 14px;
  margin: 0;
  background-color: #fff;
  padding: 20px;
}

.wwone__map-infobox__inner:after {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 15px solid rgba(0, 0, 0, 0);
  border-top-color: #fff;
  left: 50%;
  margin-left: -15px;
  bottom: -30px;
}

.wwone__map-infobox__inner__heading {
  color: var(--primary);
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}

.wwone__map-infobox__inner__info {
  padding: 10px 0 20px 0;
  font-size: 12px;
  color: #748796;
}

.wwone__map-infobox__inner__info strong {
  width: 60px;
  display: inline-block;
  color: #25282b;
}

.wwone__map-infobox__inner__btn {
  background-color: var(--primary);
  padding: 6px 15px;
  border-radius: 3px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.wwone__map-infobox__inner__btn:hover {
  color: #fff;
}

@media (min-width: 897px) and (max-width: 970px) {
  .map-wrapper {
    width: 40%;
    display: inline-block;
  }

  #map-result-section {
    width: 60%;
  }
}

@media (min-width: 280px) and (max-width: 896px) {
  .map-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    max-height: 420px;
  }

  #map-result-section {
    width: 100%;
  }
}

/*! =========================================================
* bootstrap-slider.js
*
* Maintainers:
*		Kyle Kemp
*			- Twitter: @seiyria
*			- Github:  seiyria
*		Rohit Kalkur
*			- Twitter: @Rovolutionary
*			- Github:  rovolution
*
* =========================================================
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */

.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.slider.slider-horizontal {
  width: 100%;
  height: 20px;
}

.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -3px;
  top: 50%;
  left: 0;
}

.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}

.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -12px;
}

.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}

.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}

.slider.slider-vertical {
  height: 210px;
  width: 20px;
}

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}

.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}

.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}

.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}

.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}

.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}

.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#ffdfdfdf", endColorstr="#ffbebebe", GradientType=0);
}

.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#ffe5e5e5", endColorstr="#ffe9e9e9", GradientType=0);
  cursor: not-allowed;
}

.slider input {
  display: none;
}

.slider .tooltip.top {
  margin-top: -36px;
}

.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}

.slider .hide {
  display: none;
}

.slider-track {
  position: absolute;
  cursor: pointer;
  border-radius: 2px;
  background-color: #f0eff1;
}

.slider-selection {
  position: absolute;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: var(--primary);
}

.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#ff89cdef", endColorstr="#ff81bfde", GradientType=0);
}

.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-handle {
  position: absolute;
  top: 0;
  width: 23px;
  height: 23px;
  background-color: #ffffff;
  filter: none;
  box-shadow: 0 0 3px 3px rgba(93, 92, 99, 0.05);
  border: 1px solid #ededed;
}

.slider-handle.round {
  border-radius: 50%;
}

.slider-handle.triangle {
  background: transparent none;
}

.slider-handle.custom {
  background: transparent none;
}

.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}

.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#fff9f9f9", endColorstr="#fff5f5f5", GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}

.slider-tick.round {
  border-radius: 50%;
}

.slider-tick.triangle {
  background: transparent none;
}

.slider-tick.custom {
  background: transparent none;
}

.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}

.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#ff89cdef", endColorstr="#ff81bfde", GradientType=0);
  opacity: 1;
}

#ex2SliderVal {
  font-weight: 600;
  padding: 0 5px;
  color: #3a3e47;
}

.modal-title {
  font-size: 18px;
  padding-left: 15px;
  color: #4d4f56;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right .modal-dialog {}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.right .modal-dialog {
  height: 100vh;
}

.form-control:focus {
  border-color: var(--primary);
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

.modal-body input {
  font-size: 16px;
  padding-left: 12px;
}

.modal-header {
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #e5e5e5;
}

/*Left*/

.modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}

/*Right*/

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
}

.side-nav {
  margin-bottom: 10px;
}

.side-nav img {
  width: 100%;
}

.login-nav .btn {
  width: 100%;
}

.modal-open .top-header .navbar-brand {
  opacity: 0.5;
}

/* 29-04-2020 */

.cart-icon {
  margin-top: 6px;
}

.nav-cart-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
}

.nav-cart-icon svg {
  max-width: 100%;
  max-height: 100%;
  display: block;
  fill: var(--black);
}

.notify-counter {
  position: absolute;
  top: -6px;
  background: var(--primary);
  color: #fff;
  right: -7px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  font-size: 11px;
  font-weight: 700;
}

.order-row h5 {
  margin-top: 8px;
  padding: 0 20px;
}

.category-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-image {
  margin-right: 10px;
}

.category-image img {
  width: 55px;
}

.quantity-detail {
  margin-top: 10px;
  margin-bottom: 5px;
  display: block;
}

.modal-dialog {
  margin: 60px auto;
}

/* radio button styling starts */

.radio-container {
  display: block;
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  right: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #eee;
}

.radio-container:hover input+.checkmark {
  background-color: #ccc;
}

.radio-container input:checked+.checkmark {
  background-color: var(--primary);
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.radio-container input:checked+.checkmark:after {
  display: block;
}

.radio-container .checkmark:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* radio button styling ends */

.opening-content {
  color: #000;
  font-size: 15px;
}

.opening-content li {
  text-align: center;
  margin-bottom: 10px;
}

.opening-content li:last-child {
  margin-bottom: 0;
}

.opening-content span {
  color: #4d4f56;
  margin-bottom: 0 !important;
  display: inline-block;
  font-size: 13px;
}

#opening-hours-modal .modal-dialog {
  max-width: 220px;
}

.search-wrap h2,
.search-wrap p {
  color: #fff;
}

.thank-you-for-order {
  color: var(--primary)
}

#order-modal .modal-dialog {
  max-width: 572px;
}

.payment-option .widget-delivery {
  margin-bottom: 20px;
}

.quantity-radio-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.quantity-radio-wrap .form-control {
  margin-top: 0 !important;
}

.radio-wrapper .quantity-radio-wrap .price {
  margin-top: 0;
}

.category-wrapper .form-control {
  display: inline-block;
  width: calc(100% - 35px);
}

.category-wrapper .price {
  margin-top: 6px;
  font-weight: 600;
}

.bg_image {
  background-image: var(--bg_image);
  background-repeat: no-repeat;
  background-position: center;
}

.ErrorForm {
  border: 1px solid #f8031d !important;
}

.Errormsg {
  opacity: 1 !important;
  color: red !important;
}

.registerform {
  margin-bottom: 0.75rem;
}

/* order-list styling */

.order-img {
  max-width: 190px;
  height: auto;
}

.order-img img {
  max-width: 100%;
  display: block;
}

.order-name h3 {
  margin-bottom: 0;
}

.order-name h3,
.restra-location,
.order-date {
  text-transform: capitalize;
}

.order-expanded {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
}

.order-date,
.order-timings {
  text-transform: capitalize;
  font-weight: 600;
}

.order-date em,
.order-timings em,
.multiplier,
.multiplier em,
.paid-amount em {
  font-style: normal;
}

.order-id {
  text-transform: uppercase;
}

.order-again-desc {
  padding-top: 20px;
  margin-top: 25px;
  /* border-top: 1px dashed #ef3b0e; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.view-btn {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.button_bottom_style {
  opacity: -1;
}

/* order-list styling responsive*/

/* @media only screen and (max-width: 767px) and (min-width: 320px)  */
@media only screen and (max-width: 479px) {
  .main-block ul li {
    display: inline-block;
    border: none;
  }

  #myModalcart {
    margin-left: 12px;
    margin-right: 28px;
  }

  /** Mini cart ui **/
  .cart {
    display: none;
  }

  .button_bottom_style {
    opacity: 1;
    position: fixed;
    bottom: 10px;
    left: 20px;
    right: 20px;
    z-index: 10;
  }

  .cart_left_side {
    width: 86%;
    float: left;
  }

  .btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
  }

  .btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
  }

  .btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
  }

  .btn-group-lg>.btn,
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 0.3rem;
  }
}

@media only screen and (min-width: 768px) {
  .order-details {
    display: flex;
  }

  .order-img {
    margin-right: 20px;
  }

  .delivery-details {
    display: flex;
    justify-content: flex-end;
  }
}

.ribbon {
  width: 100px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

/* .ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #2980b9;
} */
.ribbon span {
  position: absolute;
  display: block;
  width: 187px;
  padding: 13px 0px;
  background-color: var(--primary);
  color: #fff;
  font: 12px/1 'Lato', sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.ribbon-top-right {
  right: 7px;

  z-index: 20;
}

/*
  .ribbon-top-right::before,
  .ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
  }
  .ribbon-top-right::before {
    top: 0;
    left: 0;
  }
  .ribbon-top-right::after {
    bottom: 0;
    right: 0;
  }
  */
.ribbon-top-right span {
  left: -36px;
  top: 21px;
}

.title-row span {
  padding-left: 20px;
}

.pld6 {
  padding-left: 21px;
}

.articlestext {
  width: 100%;
}

.gpo {
  border: solid 1px #c3b8b8;
  /* border-style: dashed; */
  padding: 7px;
}

#navbarDropdownMenuLink-55 {
  cursor: pointer;
}

.spacebtn {
  margin: 5px;
}

.cat-active {
  text-decoration: underline;
  text-decoration-color: blue;
}

a:active {
  color: 'green';
}

@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}

@media only screen and (min-width: 1200px) {
  .d-lg-block {
    display: block !important;
  }
}

.white-color-button:hover {
  border-radius: 20px !important;
  color: #fff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.white-color-button {
  border-radius: 20px !important;
  color: var(--primary) !important;
  background-color: #fff !important;
  border-color: var(--primary) !important;
}

.white-color-button:hover {
  border-radius: 20px !important;
  color: #fff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.hideservices {
  opacity: -1;
}

.loginf {
  position: relative;
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
}

.registerlink {
  color: var(--primary);
  font-weight: 500;
  padding: 5px;
  text-decoration-line: underline;
}

.loglink {
  padding: 6px;
  text-decoration-line: underline;
}

.inactiveLink {
  pointer-events: none;
  cursor: default;
}

.paybtn {
  border: solid 1px var(--primary);
  color: var(--primary);
  background-image: none;
  background-color: transparent;
  display: block;
  width: 100%;
  border-color: var(--primary);
  line-height: 2.25;
}

.paybtn:hover {
  background-color: var(--primary);
  color: #ffff;
}
.dangerButton {
  border: solid 1px var(--danger);
  color: red;
  background-image: none;
  background-color: transparent;
  display: block;
  width: 100%;
  border-color: var(--danger);
  line-height: 2.25;
}

.dangerButton:hover {
  background-color: var(--danger);
  color: #ffff;
}

.del {
  margin-top: 9px;
  margin-left: 13px;
}

.ct {
  margin-right: 28px;
}

.dwn {
  margin-top: 20px;
}

.rwbtm {
  border-top: 1px solid #e5e5e5;
}

.shiftRight {
  margin-left: 55px;
}

.summaryh {
  height: 100px;
}

.warning {
  background-color: #ffffcc;
  border-left: 6px solid #ffeb3b;
}

@media only screen and (min-width: 768px) {
  .textoptmobil {
    width: 200px;
    font-size: 13px;
    overflow-wrap: break-word;
    padding-top: 6px;
  }

  .text {
    border-left: 3px solid var(--primary);
    border-left-style: dashed;
  }

  .try {
    text-align: center;
    margin-bottom: 53px;
    margin-right: 25px;
    float: right;
  }
}

.askservice {
  margin-bottom: 50px;
  text-align: center;
}

.try {
  margin-bottom: 50px;
  text-align: center;
}

.deliverydate {
  margin-top: 20px;
}

.widinput {
  display: inline-block;
  width: calc(100% - 23px);
}

.catName {
  margin-left: 0px;
}

@media only screen and (min-width: 992px) {
  .forgotpass {
    margin: auto;
    width: 50%;
    padding: 10px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  .forgotpass {
    margin: auto;
    width: 50%;
    padding: 10px;
  }
}

@media only screen and (min-width: 320px) {
  .inlineorder {
    margin-top: -3px;
    font-size: 13px;
    margin-left: -12px;
  }

  .widget-body {
    padding: 5px;
  }

  .textoptmobil {
    width: 200px;
    font-size: 13px;
    overflow-wrap: break-word;
    padding-top: 6px;
  }

  .text.mbrow {
    margin-right: -27px;
    margin-left: -32px;
  }

  .text.radio-container {
    /* display: block; */
    position: relative;
    padding-right: 87px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .text.popiphone {
    margin-right: -15px;
    margin-left: -15px;
    padding: 2px;
  }

  .text.text-xs-center {
    text-align: center !important;
    padding: 5px;
  }
}

@media only screen and (min-width: 360px) {
  .test-heading {
    margin-right: 9px;
  }

  .textoptmobil {
    width: 200px;
    font-size: 13px;
    overflow-wrap: break-word;
    padding-top: 6px;
  }

  .text.mbrow {
    margin-right: -26px;
    margin-left: -32px;
  }

  .text.radio-container {
    /* display: block; */
    position: relative;
    padding-right: 87px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .text.popiphone {
    margin-right: -15px;
    margin-left: -15px;
    padding: 2px;
  }

  .text.text-xs-center {
    text-align: center !important;
    padding: 5px;
  }

  .text.inlineorder {
    margin-top: -3px;
    font-size: 13px;
    margin-left: -12px;
  }
}

@media (min-width: 1025px) {
  .test-heading {
    margin-right: -15px;
  }

  .inlineorder {
    margin-top: 6px;
    font-size: 13px;
    margin-left: -12px;
  }
}

@media (max-width: 1100px) {
  .footer-paymentIcon img {
    width: 44px;
    height: 35px;
  }
}

/* @media (max-width: 769px) {
  .footer-paymentIcon img {
    width: 50px;
    height: 35px;
  }
} */

@media (min-width: 320px) and (max-width: 480px) {
  .mobilword {
    width: 227px;
    font-size: 11px;
    overflow-wrap: break-word;
  }

  .alignright {
    font-size: 12px;
  }

  .alignleft {
    font-size: 12px;
  }

  #textbox {
    width: 100%;
  }

  .footer-paymentIcon img {
    width: 50px;
    height: 40px;
  }

  .payment-options ul li {
    /* margin-top: 10px; */
    margin-right: 24px;
    /* float: left; */
    /* width: 100%; */
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .mobilword {
    width: 230px;
    font-size: 11px;
    overflow-wrap: break-word;
  }

  .payopt {
    font-size: 15px;
  }

  .mbl {
    padding: 0px 0px;
  }

  .alignright {
    font-size: 12px;
  }

  .alignleft {
    font-size: 12px;
  }

  #textbox {
    width: 100%;
  }
}

.desk-checkout {
  width: 164px;
  font-size: 12px;
}

.Xpay {
  margin-top: -4px;
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
  #textbox {
    width: 91%;
  }
}

@media only screen and (min-width: 1025px) {
  #textbox {
    width: 91%;
  }
}

@media only screen and (min-width: 769px) {
  .alignright {
    width: 15%;
  }

  #textbox {
    width: 91%;
  }
}

.tr8s-button {
  min-width: 148px;
  height: 45px;
  box-shadow: 0 9px 29px rgba(94, 165, 160, 0.36);
  border-radius: 25px;
  background-color: rgb(21, 255, 0);
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
  padding: 12px 56px;
  display: inline-block;
}

.hom:hover {
  cursor: pointer;
}

.auth-form-title {
  color: #333333;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 9px;
  margin-top: 40px;
  margin-left: 14px;
}

.auth-form-text {
  color: #333333;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.26px;
  margin: 0 31px 36px 31px;
}

.auth-form-container {
  max-width: 500px;
  width: 100%;
  margin: auto;
  margin-bottom: 320px;
}

@media screen and (max-width: 1170px) {
  .auth-form-title {
    margin-top: 90px;
    margin-bottom: 30px;
    bottom: 31px;
  }
}

.p-checked {
  padding: 10px;
  background-color: var(--primary);
  box-shadow: 0 0 1px 3px rgba(93, 92, 99, 0.05);
  border: 1px solid rgba(116, 135, 150, 0.23);
}

.Aligner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Aligner-item {
  max-width: 50%;
}

.Aligner-item--top {
  align-self: flex-start;
}

.Aligner-item--bottom {
  align-self: flex-end;
}

/* Target Portrait and Landscape */
@media screen and (device-width: 412px) and (device-height: 823px) and (-webkit-device-pixel-ratio: 3.5) and (orientation: landscape) {
  .pixel-dev {
    font-size: 11px;
  }
}

@media (max-width: 826px) {
  .step2:after {
    display: none;
  }
}

.row-tr {
  display: flex;
}

.row-tr :nth-child(1) {
  width: 100%;
}

.row-tr :nth-child(2) {
  width: 15%;
}

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone 6+, 6s+, 7+, 8+ */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone X , XS, 11 Pro, 12 Mini */
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone 12, 12 Pro */
@media only screen and (min-device-width: 390px) and (max-device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone XR, 11 */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone XS Max, 11 Pro Max */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

/* iphone 12 Pro Max */
@media only screen and (min-device-width: 428px) and (max-device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

@media (max-width: 480px) {
  .row-tr :nth-child(2) {
    width: 42%;
  }

  .row-tr :nth-child(2) {
    width: 42%;
  }
}

.comments {
  overflow: auto;
  position: unset;
  z-index: 5;
  opacity: 1;
  padding: 10px 33px 19px;
  border: none;
  box-shadow: 0px 0px 2px #e1d4d4;
  border-radius: 12px;
  width: 80%;
  font-size: 13px;
  color: #4d4f56;
}

.comments:active {
  border: none;
}

.textarea:onclick {
  border: none;
}

textarea:focus {
  outline: none !important;
  border-color: #719ece;
  box-shadow: 0 0 10px #719ece;
}

.food-item {
  width: 20%;
}


.home-restaurant-card-details {
  height: 120px;
}

.footer-last-section-inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 70px */
}


@media (max-width: 567px) {
  .food-item {
    width: 100%;
  }

  img.as-bg-image {
    object-fit: cover
  }

  .footer-last-section-inner-container {
    flex-direction: column;
    /* height: 140px; */
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {

  .home-restaurant-card-details {
    flex-direction: column;
    font-size: 12px;
    height: 120px;
  }

  .food-item-wrap .figure-wrap {
    height: 140px;
  }
}

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

  footer h5 {
    font-size: 1.1rem;
  }

}

/* Flex Container */
.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

/* Justify Content */
.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

/* Align Items */
.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

/* Align Self */
.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

/* Flex Item */
.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-fill {
    flex: 1 1 auto;
}

/* Order */
.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

/* Responsive Classes */
@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }
}

@media (min-width: 768px) {
    .flex-md-column {
        flex-direction: column !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .order-md-2 {
        order: 2 !important;
    }
}

.cursor-pointer{
    cursor: pointer;
}


//checkbox css

input:checked[type="checkbox"]{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
input[type="checkbox"] {
  border-radius: .25em;
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0,0,0,.25);
    border-top-color: rgba(0, 0, 0, 0.25);
    border-right-color: rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(0, 0, 0, 0.25);
    border-left-color: rgba(0, 0, 0, 0.25);
}