@import url('https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap');

html {
  font-size: 12px;
}

@media (min-width: 1200px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: Rubik, 'Helvetica Neue', sans-serif;
  background: #fefcf9;
}

/* Layout */
.navbar {
  padding: 5px;
}

.navbar .logo img {
  width: 150px;
  /* height: 13px; */
}

@media (min-width: 1200px) {
  .navbar .logo img {
    width: 200px;
    /* height: 24px; */
  }
}

@media (max-width: 1199.98px) {
  .navbar .logo img {
    margin-top: 3px;
  }
}

.navbar .left {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .navbar .left {
    max-width: 530px;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
}

.navbar .back {
  border: none;
  padding: 10px 20px;
  align-self: center;
  background-color: transparent;
}

.navbar .back:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url('img/arrow-bottom-red.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navbar .dropdown-toggle:after {
  display: none;
}

.navbar .dropdown-menu {
  margin-top: 12px;
}

.navbar .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1199.98px) {
  .navbar {
    border-bottom: 1px solid #eaeaea;
  }

  .navbar .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .navbar {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    /* position: relative; */
    /* z-index: 1; */
    top: 0;
    /* overflow: hidden; */
  }

  .navbar .container-fluid {
    padding-top: 7px;
    padding-bottom: 7px;
    /* background-color: #e53935; */
  }
}

.search-form {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.search-form .input-with-icons {
  margin: 0 !important;
}

.search-form input {
  border-color: #ebebeb;
}

.search-form input::-webkit-input-placeholder {
  color: rgba(49, 50, 62, 0.28);
}

.search-form input::-moz-placeholder {
  color: rgba(49, 50, 62, 0.28);
}

.search-form input:-ms-input-placeholder {
  color: rgba(49, 50, 62, 0.28);
}

.search-form input::-ms-input-placeholder {
  color: rgba(49, 50, 62, 0.28);
}

.search-form input::placeholder {
  color: rgba(49, 50, 62, 0.28);
}

.search-form .icon-search {
  padding: 0;
  color: #9796a8;
}

.search-form .icon-close {
  color: #e53935;
  cursor: pointer;
  display: none;
}

@media (min-width: 1200px) {
  .search-form .icon-search {
    width: 16px;
    height: 16px;
  }
}

.notifications-counter {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: solid 2px #ffffff;
  background-color: #e53935;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  line-height: 0.83;
  text-align: center;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 6px;
}

@media (max-width: 1199.98px) {
  .notifications-counter {
    width: 8px;
    height: 8px;
    border-width: 1px;
    color: transparent;
    right: 12px;
    top: 9px;
  }
}

.navbar-menu {
  display: -webkit-box;
  display: flex;
}

@media (min-width: 1200px) {
  .navbar-menu {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }
}

.nav-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.nav-item button {
  font-weight: 500;
}

.navbar-toggler {
  border: none;
  margin-right: 3rem;
}

.navbar-toggler svg {
  width: 20px;
  height: 14px;
}

.container-fluid {
  padding: 20px;
}

.layout-minimal .navbar {
  box-shadow: none;
}

.layout-minimal .navbar .container-fluid {
  margin-right: auto;
}

.layout-minimal .navbar .search-form {
  display: none;
}

@media (min-width: 1200px) {
  .layout-minimal .navbar .left {
    max-width: initial;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 30px;
  }
}

@media (max-width: 1199.98px) {
  .layout-minimal .space {
    width: 25%;
    display: -webkit-box;
    display: flex;
  }
}

@media (min-width: 1200px) {
  .layout-minimal .space {
    display: none;
  }
}

.layout-minimal .logo {
  display: block;
}

@media (min-width: 1200px) {
  .layout-minimal .logo img {
    width: 190px;
    /* height: 30px; */
  }
}

.navbar-collapse:not(.show) .more {
  display: none;
}

.navbar-collapse .nav-link {
  color: #4d4d4d !important;
  font-size: 14px;
  padding: 14px 20px;
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 230px;
    z-index: 1010;
    -webkit-transition: left 0.5s ease-in-out;
    transition: left 0.5s ease-in-out;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .navbar-collapse .back {
    margin: 0;
    align-self: flex-start;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-collapse ul {
    margin-top: 30px;
    width: 100%;
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding-bottom: 10px;
  }

  .navbar-collapse .nav-item:not(:last-of-type) {
    border-bottom: solid 1px #efefef;
  }

  .navbar-collapse .nav-link {
    width: 100%;
  }

  .navbar-collapse .logout {
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .navbar-collapse .logout .nav-link {
    color: #e53935 !important;
  }
}

@media (min-width: 1200px) {
  .navbar-collapse .nav-link {
    color: #595959 !important;
    padding: 5px 8px;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: normal;
    text-align: right;
    text-transform: uppercase;
  }

  .navbar-collapse .nav-item {
    margin-right: 2rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse.show + .backdrop {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }
}

@media (max-width: 767.98px) {
  .popover-custom.show + .backdrop {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }
}

/*=== FOOTER === */
footer .logo img {
  width: 100px;
  /* height: 16px; */
}

@media (min-width: 1200px) {
  footer .logo img {
    width: 150px;
    /* height: 24px; */
  }
}

footer section {
  border-top: 0;
}

footer [data-toggle='collapse'] {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
}

footer [data-toggle='collapse'] .arrow {
  width: 10px;
  height: 11px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  background-image: url('img/right-arrow-gray.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}

footer [data-toggle='collapse'].collapsed .arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (min-width: 1200px) {
  footer [data-toggle='collapse'] .arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  footer [data-toggle='collapse'].collapsed .arrow {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

footer .accordion .card-header {
  position: relative;
  display: block;
}

footer .accordion .card-header h5 {
  line-height: 1.67;
  color: #595959;
  text-transform: uppercase;
  font-size: 1rem;
}

@media (max-width: 1199.98px) {
  footer .accordion .card-header h5 {
    text-align: center;
  }
}

footer .accordion .card-header .arrow {
  position: absolute;
  right: 40px;
  top: 12px;
}

@media (min-width: 1200px) {
  footer .accordion {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  footer .accordion .card {
    -webkit-box-flex: 0;
    flex: 0 1 20%;
    border-bottom: none !important;
  }

  footer .accordion .card-header {
    margin-bottom: 1rem !important;
  }

  footer .accordion .card-header,
  footer .accordion .card-body {
    padding: 0;
  }
}

.footer-menus {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.footer-menus .footer-menu {
  text-align: left;
}

.footer-menus .footer-menu h5 {
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  .footer-menus .footer-menu {
    -webkit-box-flex: 0;
    flex: 0 1 44%;
  }
}

@media (min-width: 1200px) {
  .footer-menus .footer-menu li {
    margin-bottom: 5px;
  }
}

.footer-menu {
  margin-bottom: 1rem;
}

.footer-menu h5 {
  line-height: 3;
  color: #595959;
  margin: 0;
  font-size: 1rem;
}

.footer-menu a {
  font-size: 12px;
  line-height: 2.17;
  color: #838383;
}

@media (max-width: 1199.98px) {
  .footer-menu {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .footer-menu a {
    font-size: 14px;
  }
}

.footer-bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 0px 20px !important;
}

.footer-bottom .socials {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.footer-bottom .socials > * {
  margin: 0 0.5rem;
}

.footer-bottom .socials svg {
  width: 20px;
  height: 20px;
  color: #d6d6d6;
}

.footer-bottom .socials svg:hover {
  color: #e53935;
}

@media (min-width: 1200px) {
  .footer-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row;
    padding: 20px 0;
  }

  .footer-bottom .socials {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .footer-bottom .socials svg {
    width: 30px;
    height: 30px;
  }

  .footer-bottom small {
    font-size: 12px;
  }
}

#popoverCart {
  width: 285px;
  max-width: initial;
  position: absolute;
  -webkit-transform: translate3d(-139px, 46px, 0px);
  transform: translate3d(-139px, 46px, 0px);
  top: -1000px;
  left: 0;
  will-change: transform;
}

#popoverCart.show {
  top: 0;
}

#popoverCart .popover-body {
  padding: 20px 24px;
}

#popoverCart .title {
  font-size: 12px;
  line-height: 2.5;
  color: rgba(17, 41, 65, 0.34);
  text-transform: uppercase;
}

#popoverCart li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
}

#popoverCart li:not(:last-of-type) {
  border-bottom: 1px solid #eeeeee;
}

#popoverCart .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.93;
  color: #4d4d4d;
}

#popoverCart .items {
  font-size: 14px;
  line-height: 1.93;
  color: #8f8f8f;
}

@media (max-width: 767.98px) {
  #popoverCart {
    -webkit-transform: translate3d(calc(-100vw + 80px), 10px, 0px);
    transform: translate3d(calc(-100vw + 80px), 10px, 0px);
    width: calc(100vw - 40px);
  }

  #popoverCart .btn {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  #popoverCart {
    top: 0 !important;
    right: 0 !important;
    left: initial !important;
    -webkit-transform: translateY(29px);
    transform: translateY(29px);
  }
}

/* Common styles */
p {
  color: #5e5e5e;
  line-height: 1.64;
}

small {
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  .page-title {
    text-align: center;
  }
}

.page-description,
.book-demo--description {
  font-size: 14px;
  text-align: center;
}

@media (min-width: 1200px) {
  .page-description,
  .book-demo--description {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }
}

.btn:not(.btn-link) {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-weight: 500;
}

.btn:not(.btn-link):not(.btn-sm) {
  height: 3.333rem;
}

.btn-link {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

button.alert {
  font-size: 13px;
  line-height: 2.08;
  color: #c7281b;
  text-transform: uppercase;
}

.btn svg {
  margin-right: 10px;
}

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

/* Forms */
.form-group {
  position: relative;
}

.form-control {
  line-height: 2.08;
  color: #acacac;
  height: 3.333rem;
  border-color: #e1e1e1;
}

textarea.form-control {
  line-height: initial;
}

.labeled-group {
  position: relative;
  margin-bottom: 0.75rem;
}

.labeled-group__danger {
  color: #299976;
  margin-top: 0.25rem;
  line-height: 13px;
  font-size: 13px;
}

.labeled-group .form-control {
  color: #454545;
}

.labeled-group label {
  font-weight: normal;
  text-transform: none;
  font-size: 1rem;
}

.labeled-group.floating .selectric-wrapper + label {
  top: 8px;
  font-size: 11px;
  opacity: 1;
  z-index: 10000;
}

.labeled-group.floating .selectric-wrapper .label {
  padding-top: 8px;
}

.labeled-group.floating .form-control {
  padding-top: 1.2rem;
}

.labeled-group.floating .form-control:focus ~ label,
.labeled-group.floating .form-control:not(:focus):valid ~ label {
  top: 6px;
  font-size: 11px;
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .labeled-group.floating .form-control:focus ~ label,
  .labeled-group.floating .form-control:not(:focus):valid ~ label {
    font-size: 8px !important;
  }
}

.labeled-group.floating label {
  color: #acacac;
  position: absolute;
  pointer-events: none;
  left: 0.9rem;
  top: 0.95rem;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.labeled-group:not(.floating) {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-flow: column-reverse;
}

@media (max-width: 1199.98px) {
  .labeled-group input::-webkit-input-placeholder {
    opacity: 0;
  }

  .labeled-group input::-moz-placeholder {
    opacity: 0;
  }

  .labeled-group input:-ms-input-placeholder {
    opacity: 0;
  }

  .labeled-group input::-ms-input-placeholder {
    opacity: 0;
  }

  .labeled-group input::placeholder {
    opacity: 0;
  }
}

.is-invalid {
  background-image: none !important;
}

.alert-danger {
  color: #e02020;
  background-color: #fdf3f3;
  border-color: #f0d5d5;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .alert-danger {
    font-size: 11px;
  }
}

.alert-info {
  color: #e53935;
  background-color: #ffc4c3;
  /* border-color: rgb(230, 146, 33); */
  box-shadow: rgba(230, 146, 33, 0.3) 0px 1px 5px 3px;
}

.alert-secondary {
  color: #454545;
  border-color: #e6e6e6;
  background-color: #fbfbfb;
}

.alert-primary {
  color: #454545;
  background-color: #fdf3f3;
  border-color: #f0d5d5;
  line-height: 1;
}

label {
  text-transform: uppercase;
  font-weight: 500;
  color: #57586e;
  font-size: 0.8rem;
}

label.disabled {
  font-weight: normal;
}

@media (min-width: 1200px) {
  label.disabled {
    color: #b3b3b3;
  }
}

input[disabled] {
  border-color: #f9f9f9;
  border-color: #ebebeb;
}

.input-with-icons {
  position: relative;
}

.input-with-icons .input-prepend {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  z-index: 1000;
}

.input-with-icons .input-append {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  z-index: 1000;
}

.input-with-icons.ii-left input {
  padding-left: 2.8rem;
}

.input-with-icons.ii-left .selectric .label {
  padding-left: 1.8rem;
}

.input-with-icons.ii-right input {
  padding-right: 2.8rem;
}

@media (min-width: 1200px) {
  .field-group {
    display: -webkit-box;
    display: flex;
  }

  .field-group > * {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
  }

  .field-group :first-child input {
    border-radius: 5px 0 0 5px;
  }

  .field-group :last-child input {
    border-radius: 0 5px 5px 0;
    border-left-width: 0;
  }
}

form button.btn-block svg {
  margin-left: 0.5rem;
}

textarea {
  resize: none;
}

.custom-checkbox {
  display: -webkit-box;
  display: flex;
}

.custom-control-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

/* Icons */
.icon {
  width: 1.333rem;
  height: 1.333rem;
}

.icon-search {
  width: 13px;
  height: 13px;
}

@media (min-width: 1200px) {
  .icon-cart {
    width: 24px;
    height: 27px;
    padding: 0;
  }
}

.icon-location-arrow {
  width: 1.083rem;
  height: 1.083rem;
}

.icon-location-point {
  width: 0.917rem;
  height: 1.083rem;
}

.icon-bottom-arrow {
  width: 0.917rem;
  height: 1.25rem;
}

.icon-top-arrow {
  width: 0.917rem;
  height: 1.25rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-right-arrow-fat {
  width: 1.167rem;
  height: 0.8rem;
}

.icon-calender,
.icon-clock {
  height: 1rem;
  width: 1rem;
}

.icon-warning {
  width: 17px;
  height: 15px;
  margin-right: 8px;
}

.icon-help {
  width: 18px;
  height: 18px;
}

#spriteIcon-heart path {
  fill: inherit;
}

.icon-heart,
.icon-heart-filled {
  width: 19px;
  height: 17.7px;
}

.icon-heart use {
  fill: none;
}

.icon-heart-filled use {
  fill: currentColor;
}

.icon-reset {
  width: 15px;
  height: 15px;
}

.icon-star,
.icon-star-empty {
  width: 14px;
  height: 14px;
}

.icon-close-circle {
  width: 30px;
  height: 30px;
}

.icon-close {
  width: 11.3px;
  height: 11.3px;
  color: #bcbcbc;
}

.icon-pencil {
  width: 18px;
  height: 18px;
}

.icon-upload {
  width: 22px;
  height: 20px;
  margin-right: 10px;
}

@media (max-width: 1199.98px) {
  .icon-upload {
    width: 19px;
    height: 17px;
  }
}

/* Utils */
@media (max-width: 1199.98px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Components */
.restaurants {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: -webkit-box;
  display: flex;
}

.restaurants li {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.restaurants li:not(:first-of-type) {
  margin-left: 1rem;
}

.restaurants.large li {
  width: 88px;
  height: 88px;
}

@media (max-width: 567px) {
  .restaurants.large li {
    width: 40px;
    height: 40px;
  }
}

.restaurants img {
  max-width: 100%;
}

img.restaurant {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
}

.cover .restaurants {
  position: absolute;
  bottom: 0;
  right: 0;
}

.meal-price {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 2.2;
  color: #3b3c3c;
}

.meal-price svg {
  margin-right: 5px;
}

.meal-card {
  position: relative;
  border-radius: 5px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
}

.meal-card .cover {
  position: relative;
}

.meal-card .like {
  color: #e53935;
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 10px;
}

.meal-card .like use {
  fill: #fff;
}

.meal-card .like.liked use {
  fill: currentColor;
}

.meal-card .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 1 !important;
}

@media (max-width: 1199.98px) {
  .meal-card .close .icon {
    right: 24px;
    height: 24px;
  }
}

.meal-card .info {
  padding: 20px 20px 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.meal-card .footer {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  text-align: center;
  border-top: 1px solid rgba(151, 151, 151, 0.14);
}

.meal-card .footer a {
  font-weight: 500;
  line-height: 2.25;
}

.meal-card .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 2rem;
  background-color: rgba(187, 142, 10, 0.6);
  visibility: hidden;
}

.meal-card .overlay .btn {
  height: 44px;
  line-height: 1;
}

.meal-card .overlay .btn-light {
  background-color: #fff;
  color: #e53935;
}

.meal-card .overlay .btn-primary {
  border-radius: 12px;
}

.meal-card:hover .overlay {
  visibility: visible;
}

.meal-card h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.31;
  color: #000;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delivery-info {
  padding: 15px;
}

.delivery-info button:not(:hover) {
  background-color: #fff;
}

@media (max-width: 1199.98px) {
  .order-form-inline {
    top: 56px !important;
  }
  .delivery-info {
    margin: 0px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .delivery-info svg {
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .delivery-info {
    text-align: center;
    border-radius: 0;
    border-width: 0 0 1px 0;
  }
}

.tags {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: flex;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.tags li {
  background-color: #f4f4f4;
  font-size: 0.8rem;
  line-height: 1.88;
  color: #5e5e5e;
  border-radius: 3px;
  padding: 2px 10px;
  white-space: nowrap;
}

.tags li:not(:last-of-type) {
  margin-right: 5px;
}

.tags .icon-close {
  color: #e53935;
  padding: 1px;
  margin-left: 10px;
  cursor: pointer;
}

.order-details .card-header {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}

.order-details .item-list {
  border-style: solid;
  border-color: #fafafa;
  border-width: 1px 0;
}

.order-details .item-list li {
  display: -webkit-box;
  display: flex;
  padding: 15px 0;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.order-details .item-list li:not(:last-child) {
  border-bottom: solid 1px #f3f3f3;
}

.order-details .item-list li > * {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.order-details .item-list li svg {
  margin-left: 1.5rem;
  cursor: pointer;
}

.order-details .total {
  margin-top: 1rem;
  padding-left: 33%;
}

.order-details .total li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-right: 10px;
}

.order-details .total li:last-child {
  padding-top: 15px;
  font-weight: 500;
  border-top: solid 1px #e8e8e8;
}

.counter {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.counter label {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: normal;
  margin: 0 10px;
  min-width: 20px;
  text-align: center;
}

.counter .plus,
.counter .minus {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #e53935;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .counter .plus,
  .counter .minus {
    width: 25px;
    height: 25px;
  }
}

.counter .plus {
  background-image: url('img/plus.svg');
}

.counter .minus {
  background-image: url('img/minus.svg');
}

.badge {
  padding: 5px 10px;
  margin-left: 0.5rem;
  font-size: 12.2px;
  font-weight: normal;
  border-radius: 12.2px;
}

.badge-primary {
  border: solid 0.9px rgba(187, 142, 10, 0.05);
  color: #e53935;
  background-color: rgba(187, 142, 10, 0.1);
}

.badge-secondary {
  background-color: #e3e3e3;
  color: #454545;
  padding: 5px 15px;
}

.total-footer {
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 31px 81px -15px rgba(51, 51, 51, 0.13);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 100;
}

.total-footer .container-fluid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.total-footer h4,
.total-footer .order-bk__toggler-info > span,
.total-footer .order-fq__toggler-info > span {
  font-size: 12px;
}

.total-footer .order-bk__toggler-info > span,
.total-footer .order-fq__toggler-info > span {
  color: #a0a0a0;
}

.total-footer .btn {
  font-size: 14px;
}

.order-form-inline:not(.show-form) .order-form {
  display: none;
}

.order-form-inline .delivery-info {
  display: none;
  width: 100%;
}
.order-form-inline.show-form {
  display: block;
  position: sticky;
  z-index: 2;
  display: block;
  top: 81px;
}

@media (min-width: 1200px) {
  .order-form-inline.show-form {
    display: block;
    z-index: 1;
    display: block;
    width: 100%;
  }
}

.load-container {
  display: none;
}

.card-placeholder {
  margin-bottom: 2rem;
}

@-webkit-keyframes shine-loading {
  0% {
    background-position: 200%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes shine-loading {
  0% {
    background-position: 200%;
  }

  100% {
    background-position: 0%;
  }
}

.card-placeholder .cover {
  position: relative;
}

.card-placeholder .image,
.card-placeholder .title,
.card-placeholder ul li {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#f5f7f9),
    color-stop(49%, #d6dce3),
    color-stop(#e0e5eb),
    color-stop(#e8ecf2),
    to(#f5f7f9)
  );
  background-image: linear-gradient(
    to left,
    #f5f7f9,
    #d6dce3 49%,
    #e0e5eb,
    #e8ecf2,
    #f5f7f9
  );
  background-size: 200% 100%;
  -webkit-animation: shine-loading 2s infinite linear;
  animation: shine-loading 2s infinite linear;
  border: solid 1px #ebebeb;
}

.card-placeholder .image {
  height: 174px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.card-placeholder .title {
  width: 220px;
  height: 20px;
  border-radius: 2px;
  margin-bottom: 11px;
}

.card-placeholder ul li {
  width: 134px;
  height: 17px;
  border-radius: 2px;
  margin-bottom: 11px;
}

.card-placeholder .restaurant {
  width: 44px;
  height: 44px;
  border: solid 1px rgba(150, 150, 150, 0.4);
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  bottom: 10px;
  right: 12px;
}

.word-carousel {
  position: relative;
  height: 85px;
  overflow: hidden;
  display: block;
}
.word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 0.3em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'><path d='M10,70 C120,90 240,20 360,60 C440,85 520,40 590,65' stroke='%23e69221' stroke-width='28' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  pointer-events: none;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  white-space: nowrap;
}

.carousel-item {
  flex: 0 0 auto;
  margin-right: 20px;
}

.carousel-item img {
  display: block;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* Move half the track width */
}
.autocomplete-open {
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
}

.word {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
  white-space: nowrap;
  /* Zigzag underline */
  /* text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #f97316;
  text-underline-offset: 7px; */
}

.word.active {
  opacity: 1;
  transform: translateY(0);
}
.home {
  background-color: #fdecec;
}

.trusted-teams img {
  width: 70px;
}

/* Custom pulse animation for slick arrows */
/* .slick-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  width: 8px;
  height: 8px;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.slick-arrow:hover::after {
  opacity: 1;
  animation: arrowPulse 0.8s infinite ease-in-out;
}

@keyframes arrowPulse {
  0% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(0%) scale(1.4);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
}

.landing-cta {
  background-color: #e53935;
  padding: 80px 40px;
  background-image: url('img/home/abstract-food.png');
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}

.landing-cta img {
  border-radius: 0px 100px 0 100px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  border: 10px solid #fff;
}

/* Button */
.landing-cta .btn-primary {
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: #fff !important;
  color: #e53935 !important;
  font-size: 16px;
  padding: 12px 15px !important;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: auto !important;
}

/* Cycle text */
.cycle-text {
  display: inline-block;
  animation: jumpFromTop 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: bolder;
  color: #000;
  font-size: 35px;
  position: relative;
  text-transform: capitalize;
}

.cycle-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 0.5em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'><path d='M10,70 C120,90 240,20 360,60 C440,85 520,40 590,65' stroke='white' stroke-width='28' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  pointer-events: none;
}

/* Arrow animation */
.arrow-animate {
  display: inline-block;
  animation: arrowSmooth 1.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes arrowSmooth {
  0% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(-6px);
  }
}

@keyframes jumpFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  55% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(0);
  }
  85% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE FIXES ====== */

/* Tablet adjustments */
@media (max-width: 991.98px) {
  .landing-cta {
    padding: 60px 30px;
    background-position: center top;
    background-size: cover;
    text-align: center;
  }

  .landing-cta .home--book-demo {
    text-align: center !important;
    margin-bottom: 30px;
  }

  .landing-cta img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 50px;
  }

  .cycle-text {
    font-size: 28px;
  }
  .cycle-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 0.5em;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'><path d='M10,70 C120,90 240,20 360,60 C440,85 520,40 590,65' stroke='white' stroke-width='28' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
    pointer-events: none;
  }
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .landing-cta {
    padding: 40px 20px;
  }

  .landing-cta .btn-primary {
    font-size: 14px;
    padding: 10px 14px !important;
  }

  .landing-cta img {
    max-width: 100%;
    border-radius: 30px;
    border-width: 6px;
  }
}

.fixed-bottom .fixed-bottom-inner {
  border-radius: 20px !important;
}

@media (min-width: 1200px) {
  .home section {
    border-top: 1px solid rgba(151, 151, 151, 0.17);
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 1199.98px) {
  .home h3 {
    font-size: 16px;
  }

  .home h2 {
    font-size: 20px;
  }
  .sticky-set {
    top: 60px;
  }
}

.home--title {
  line-height: 1.2;
}

.hero-image .image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image .image-wrapper img {
  object-fit: scale-down;
  object-position: center;
  height: 650px;
  display: block;
  border-radius: 20px;
}

.hero-image .image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  box-shadow: 0 0 0 9999px white;
  pointer-events: none;
}

.hero-image .image-wrapper {
  border-radius: 25px;
  overflow: hidden;
  height: 710px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .home--title {
    text-align: left;
    font-size: 65px;
  }
  .hero-image .image-wrapper img {
    object-position: top;
  }
  .hero-image .image-wrapper {
    height: 560px;
  }
}
@media (max-width: 768px) {
  .home--title {
    text-align: left;
    font-size: 40px;
  }
  .home--title .word-carousel {
    height: 1.5em;
  }
  .slick-arrow.slick-prev {
    display: none !important;
  }
  .slick-arrow.slick-next {
    display: none !important;
  }
  .slick-dots {
    display: none !important;
  }
  .delivery-info-form-padding-wrap .home--form {
    padding: 15px;
  }
  .home--book-demo {
    font-size: 25px !important;
  }
}

@media (min-width: 1200px) {
  .home--title {
    font-size: 60px;
    font-weight: 900;
  }
}

@media (min-width: 1200px) {
  .home--text {
    text-align: left !important;
    font-size: 19px !important;
  }
}

.home--book-demo {
  text-align: center;
}

.home--book-demo .link {
  color: #e53935;
}

.home--book-demo .btn {
  height: 3.333rem;
  padding: 10px 30px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .home--book-demo {
    font-size: 35px;
  }

  .home--book-demo .btn {
    width: 100%;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .home--book-demo {
    font-size: 30px;
  }

  .home--book-demo .link {
    color: #454545;
  }
}
.fixed-scroll-wrapper .fix-close-btn {
  transition: 0.3s all;
}
.fixed-scroll-wrapper .fix-close-btn:hover {
  background-color: #e53935 !important;
}

.fixed-scroll-style {
  background: #212529 !important;
  margin: 0px !important;
  padding: 0px !important;
}
.fixed-scroll-style .autocomplete-open .suggestion-item {
  color: #000;
}
.home--form {
  border-radius: 12px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 30px 30px 25px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.home--form button {
  font-size: 12px;
  gap: 5px;
  cursor: pointer;
  opacity: 1 !important;
}

.home--features-list {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.home--features-list.centered .home--feature {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
  -webkit-box-align: center;
  align-items: center;
}

.home--feature {
  margin-top: 2.5rem;
}

.home--feature h4 {
  line-height: 2.86;
  margin: 5px 0 0;
  font-size: 14px;
}

.home--feature p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .home--feature p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home--feature a {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

.home--feature a svg {
  width: 11px;
  height: 10px;
  margin-left: 8px;
}

.home--feature .feature-image {
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  justify-content: center;
}

.home--feature .feature-image img {
  max-width: 100%;
}

@media (max-width: 1199.98px) {
  .home--feature {
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .home--feature h4 {
    font-size: 16px;
  }
}

.home--picture {
  padding: 0;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}

@media (max-width: 1199.98px) {
  .home--picture {
    -webkit-box-ordinal-group: 3;
    order: 2;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
  }
}

@media (min-width: 1200px) {
  .home--picture {
    margin: 0;
    position: relative;
  }

  .home--picture img {
    max-width: 676px;
  }
}

@media (max-width: 1199.98px) {
  .home--form-top {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .home--form-top {
    position: relative;
    height: 240px;
  }

  .home--form-top > * {
    position: absolute;
    bottom: 0;
  }
}

.home--carousel {
  margin-bottom: 70px !important;
}

.home--carousel .meal-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  cursor: pointer;
  display: flex !important;
}

@media (min-width: 1200px) {
  .home--carousel .slide-caption {
    padding-bottom: 10px;
  }
  .home--carousel-title {
    font-size: 34px;
    font-weight: bolder;
  }
  .home--carousel .slick-slide {
    transition: 0.4s ease-in-out;
  }
  .home--carousel .slick-slide:hover {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  }

  .home--carousel .slick-slide:hover .slide-caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1199.98px) {
  .home--carousel-title {
    text-align: center;
  }
}

.home--feedback {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.home--feedback img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
}

.home--feedback .customer-name {
  font-size: 14px;
  line-height: 1.57;
}

.home--feedback p {
  font-size: 1rem;
  line-height: 1.5;
  color: #454545;
}

@media (min-width: 1200px) {
  .home--feedback {
    text-align: left;
    height: calc(100% - 20px);
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .home--feedback {
    height: calc(100% - 20px);
  }
}

.home--see-all {
  font-size: 12px;
  font-weight: 500;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .home--see-all {
    font-size: 14px;
  }

  .home--see-all img {
    width: 83px;
  }
}

.home--meals {
  position: relative;
  border-top: none !important;
  padding-top: 0 !important;
}

.home--meals .decoration-dots {
  position: absolute;
  right: 0;
  top: 40%;
}

.home--meals .decoration-bottom {
  position: absolute;
  right: 0;
  bottom: -160px;
}

.home--meals .slick {
  z-index: 1;
}

.home--bottom {
  position: relative;
}

.home--bottom .decoration-dots {
  position: absolute;
  right: -58px;
  top: 35px;
}

.home--bottom .decoration-bottom {
  position: relative;
  right: -130px;
  top: -10px;
  text-align: right;
  margin-bottom: 100px;
}

.decoration-bottom img {
  border-radius: 20px 0 0 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

@media (max-width: 1199.98px) {
  .home--bottom h2 {
    text-align: center;
  }
}

/* Book demo */
/* Common styles */
p {
  color: #5e5e5e;
  line-height: 1.64;
}

small {
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  .page-title {
    text-align: center;
  }
}

.page-description,
.book-demo--description {
  font-size: 14px;
  text-align: center;
}

@media (min-width: 1200px) {
  .page-description,
  .book-demo--description {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }
}

.btn:not(.btn-link) {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-weight: 500;
}

.btn:not(.btn-link):not(.btn-sm) {
  height: 3.333rem;
}

.btn-link {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

button.alert {
  font-size: 13px;
  line-height: 2.08;
  color: #c7281b;
  text-transform: uppercase;
}

.btn svg {
  margin-right: 10px;
}

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

.book-demo--title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.31;
}

@media (min-width: 1200px) {
  .book-demo--title {
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: -1.12px;
  }
}

@media (max-width: 1199.98px) {
  .book-demo--description {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .book-demo--features {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -15px;
  }

  .book-demo--features > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 30px);
    margin: 15px 15px;
  }
}

@media (max-width: 1199.98px) {
  .book-demo--form textarea {
    height: 175px;
  }
}

@media (max-width: 1199.98px) {
  .book-demo--feature {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .book-demo--feature {
    border-radius: 4px;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e9e9e9;
  }
}

.book-demo--feature .cover {
  position: relative;
}

.book-demo--feature .title {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.82;
  color: #ffffff;
}

.book-demo--feature .subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem 0;
}

@media (max-width: 1199.98px) {
  .book-demo--feature img {
    border-radius: 3px;
  }

  .book-demo--feature .title {
    font-size: 18px;
  }

  .book-demo--feature .subtitle {
    font-size: 14px;
  }
}

.book-demo--logos {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.book-demo--logos > *:nth-child(2n) {
  text-align: right;
}

@media (max-width: 1199.98px) {
  .book-demo--logos > * {
    margin: 10px;
    -webkit-box-flex: 0;
    flex: 0 0 40%;
  }
}

.book-demo--phone {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
}

@media (max-width: 1199.98px) {
  .book-demo--phone {
    margin-bottom: 20px;
  }
}

.book-demo--phone:focus-within {
  border-color: #d6ae3a;
  box-shadow: 0 0 0 0.2rem rgba(187, 142, 10, 0.25);
}

.book-demo--phone .delimiter {
  height: 25px;
  flex-basis: 1px;
  background-color: #e1e1e1;
  -webkit-box-flex: 0;
  flex-grow: 0;
}

.book-demo--phone .labeled-group {
  margin: 0;
}

.book-demo--phone input {
  border: none;
  height: 3.2rem;
  box-shadow: none !important;
}

.book-demo--phone label {
  left: 0.9rem;
}

.book-demo--phone > * {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.book-demo--phone > :last-of-type {
  -webkit-box-flex: 0;
  flex: 0 0 90px;
}

/* Made for you */
.made--order-form {
  background-color: #fbfbfb;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
}

@media (min-width: 1200px) {
  .made--order-form .row > * {
    -webkit-box-flex: 1;
    flex-grow: 1;
  }

  .made--order-form .row > *:nth-child(1) {
    max-width: 38%;
  }

  .made--order-form .row > *:nth-child(2) {
    max-width: 20%;
  }

  .made--order-form .row > *:nth-child(3) {
    max-width: initial;
  }

  .made--order-form .row > *:nth-child(4) {
    max-width: 12%;
  }
}

.made--header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
}

.made--header .btn-link {
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .made--header .btn {
    margin: 1rem;
  }
}

@media (min-width: 1200px) {
  .made--header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row;
  }

  .made--header .btn {
    margin-right: 2rem;
  }
}

@media (max-width: 1199.98px) {
  .made--section .show-more {
    margin-top: 2rem;
  }
}

.made--section-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
  align-content: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1rem;
}

.made--section-header .left,
.made--section-header .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.made--section-header h3 {
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .made--section-header h3 {
    font-size: 16px;
  }
}

.made--section-header .btn-link {
  font-size: 13px;
  height: 30px;
  line-height: 1;
}

.made--section-header .text-muted {
  font-size: 14px;
}

@media (min-width: 1200px) {
  .made--section-header .text-muted {
    margin-right: 1rem;
  }
}

.made--section-header .selectric {
  background-color: #fbfbfb;
  color: #6d6d6d;
}

.made--section-header .selectric .button {
  background-image: url('img/chevron.svg');
}

.made--section-header .selectric-scroll {
  max-height: 160px;
}

.made--section-header .help {
  cursor: pointer;
}

@media (min-width: 1200px) {
  .made--section-header .help {
    position: absolute;
    right: -2rem;
  }
}

@media (max-width: 1199.98px) {
  .made--section-header .left {
    -webkit-box-pack: center;
    justify-content: center;
  }

  .made--section-header .right {
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 1rem 0;
  }

  .made--section-header .right > * {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
  }

  .made--section-header .right .selectric-wrapper {
    flex-basis: 50%;
  }

  .made--section-header .right .help {
    text-align: right;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .made--section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row;
  }
}

.made--section-content.collapsed .more {
  display: none !important;
}

@media (min-width: 1200px) {
  .made--section-content .more.grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -15px;
    margin-top: -10px;
  }

  .made--section-content .more.grid > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(25% - 30px);
    margin: 10px 15px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .made--section-content .more.grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -15px;
  }

  .made--section-content .more.grid > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 30px);
    margin: 10px 15px;
  }
}

@media (max-width: 1199.98px) {
  .made--section-content .slick-track {
    padding-bottom: 0;
  }
}

@media (max-width: 1199.98px) {
  .made--section-content:not(.collapsed) .slick-slider {
    margin-bottom: 0;
  }

  .made--section-content:not(.collapsed) .slick-track {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-transform: none !important;
    transform: none !important;
    width: auto !important;
  }

  .made--section-content:not(.collapsed) .slick-arrow,
  .made--section-content:not(.collapsed) .slick-dots,
  .made--section-content:not(.collapsed) .slick-cloned {
    display: none !important;
  }
}

.made--meal ul:not(.restaurants) {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.93;
  color: #7b8591;
}

.made--meal ul:not(.restaurants) svg {
  margin-right: 0.75rem;
  color: #e53935;
}

.made--meal .footer {
  padding: 10px 0;
}

.made--meal .overlay {
  padding: 0 2rem 3.5rem;
}

.made--more-options {
  text-align: center;
}

.made--more-options button {
  width: 220px;
}

@media (max-width: 1199.98px) {
  .made--more-options button {
    font-size: 14px;
  }
}

.made--no-favorites {
  max-width: 640px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.made--no-favorites h4 {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.made--no-favorites > p {
  font-size: 12px;
}

.made--no-favorites svg {
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.made--no-favorites .alert {
  display: -webkit-box;
  display: flex;
  text-align: left;
}

.made--no-favorites .alert p {
  color: #454545;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .made--no-favorites img {
    width: 38px;
  }

  .made--no-favorites .alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .made--no-favorites h4 {
    font-size: 18px;
    line-height: 2.22;
    margin: 0;
  }

  .made--no-favorites > p {
    font-size: 16px;
  }

  .made--no-favorites svg {
    width: 16px;
    height: 16px;
  }
}

/* Detailed View */
.detailed-view h2 {
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.detailed-view .badge {
  padding: 3px 10px 3px 10px;
  margin-left: 0.5rem;
  font-size: 12.2px;
  font-weight: normal;
  color: #e53935;
  border-radius: 12.2px;
  border: solid 0.9px rgba(187, 142, 10, 0.05);
  background-color: rgba(187, 142, 10, 0.1);
}

.detailed-view button {
  font-size: 14px;
}

.detailed-view--cover {
  position: relative;
}

.detailed-view--cover .restaurants {
  position: absolute;
  right: 0;
  bottom: 0;
}

.detailed-view--header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 2rem 0;
  align-items: baseline;
}

.detailed-view--header .buttons {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 1199.98px) {
  .detailed-view--header h2 {
    max-width: 380px;
  }
  .detailed-view--header .buttons {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .desktop-hide {
    display: none !important;
  }
 
}

@media (max-width: 1199.98px) {
  .detailed-view--header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
   .resturant-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
  }
}

@media (max-width: 576px) {
   .resturant-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    
  }
  .resturant-header .store-hrs {
      font-size: 14px;
  }
}


.detailed-view--header .btn svg,
.detailed-view--header p svg {
  margin-right: 0.5rem;
}

.detailed-view--header .btn {
  padding-left: 1rem;
  padding-right: 1rem;
}

.detailed-view--header p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0.5rem 0;
}

@media (max-width: 1199.98px) {
  .detailed-view--header .stars {
    margin: 0.5rem 0;
  }

  .detailed-view--header .stars svg {
    width: 11px;
    height: 11px;
  }

  .detailed-view--header .buttons {
    margin-top: 2rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
  }

  .detailed-view--header .buttons button {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}

.detailed-view--info {
  padding: 0 1rem;
  border: solid 1px #e6e6e6;
  /* background-color: #fbfbfb; */
  display: -webkit-box;
  border-left: 0;
  border-right: 0;
  display: flex;
  justify-content: space-around;
}
@media (min-width: 1200px) {
  .entry {
    justify-content: center;
  }
  .detailed-view--info {
    height: 75px;
  }
}

@media (max-width: 1199.98px) {
  .detailed-view--info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.detailed-view--info .delimiter {
  width: 1px;
  background-color: #e6e6e6;
}

@media (max-width: 1199.98px) {
  .detailed-view--info .delimiter {
    width: auto;
    height: 1px;
    margin: 15px 0;
  }
}

.detailed-view--info .entry {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: center;
}

@media (min-width: 1200px) {
  .detailed-view--info .entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
  }
}

@media (max-width: 1200px) {
  .detailed-view--info .entry {
    justify-content: space-between;
  }
  .detailed-view--info .value {
    svg {
      width: 16px;
    }
  }
}

.detailed-view--info .title {
  line-height: 1.47;
  text-align: center;
  color: #343434;
}

.detailed-view--info .value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
  color: #454545;
  align-items: center;
}

@media (min-width: 1200px) {
  .detailed-view--meals {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -40px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .detailed-view--meals {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -20px;
  }
}

@media (max-width: 1199.98px) {
  .detailed-view--meals {
    margin-top: 3rem;
  }

  .detailed-view--meals h3,
  .detailed-view--meals h4 {
    font-size: 14px;
  }
}

.detailed-view--meals .detailed-view--group {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.detailed-view--meals .detailed-view--group h3 {
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .detailed-view--meals .detailed-view--group {
    margin: 20px 40px;
  }

  .detailed-view--meals .detailed-view--group:not(.multi) {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 80px);
  }

  .detailed-view--meals .detailed-view--group.multi h3 {
    margin: 0;
  }

  .detailed-view--meals .detailed-view--group.multi .items {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -40px;
    margin-top: -0.5rem;
  }

  .detailed-view--meals .detailed-view--group.multi .items > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 80px);
    margin: 20px 40px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .detailed-view--meals .detailed-view--group {
    margin: 20px 20px;
  }

  .detailed-view--meals .detailed-view--group:not(.multi) {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 40px);
  }

  .detailed-view--meals .detailed-view--group.multi h3 {
    margin: 0;
  }

  .detailed-view--meals .detailed-view--group.multi .items {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -20px;
    margin-top: -0.5rem;
  }

  .detailed-view--meals .detailed-view--group.multi .items > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 40px);
    margin: 20px 20px;
  }
}

@media (max-width: 1199.98px) {
  .detailed-view--meals .detailed-view--group {
    margin-bottom: 2rem;
  }

  .detailed-view--meals .detailed-view--group.multi .meal-card + .meal-card {
    margin-top: 2rem;
  }
}

.detailed-view--meals .meal-card {
  margin-bottom: 0;
}

.detailed-view--meals .meal-card .footer > * {
  -webkit-box-flex: 1;
  flex: 1 0 50%;
  padding: 7px 5px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.detailed-view--meals .meal-card .footer > :first-child {
  color: rgba(123, 133, 145, 0.69);
  border-right: 1px solid rgba(151, 151, 151, 0.14);
}

.detailed-view--meals .meal-card .footer a {
  padding: 5px;
}

.detailed-view--meals .additional-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 2.5rem;
  border-radius: 5.7px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  border: dashed 1.1px rgba(187, 142, 10, 0.3);
  background-color: rgba(253, 223, 220, 0.3);
  min-height: 400px;
}

.detailed-view--meals .additional-item p {
  font-size: 0.9rem;
  line-height: 1.93;
  color: rgba(128, 26, 18, 0.91);
}

@media (max-width: 1199.98px) {
  .detailed-view--meals .additional-item {
    margin-top: 2rem;
  }
}

.detailed-view--order-details {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.buttons .custom-pill {
  border-radius: 100px;
  padding: 6px 12px;
  line-height: normal;
  border: 1px solid transparent;
  height: auto !important;
  background-color: #f7f7f7;
  color: #e53935;
  outline: none;
}
.buttons .custom-pill .custom-color {
  color: #e53935;
}

.buttons .custom-pill:hover {
  border: 1px solid !important;
  background-color: #e53935;
  color: #fff;
}

.detailed-view--order-details .title {
  font-size: 12px;
  line-height: 2.5;
  color: rgba(17, 41, 65, 0.34);
}

.detailed-view--order-details .alert {
  display: -webkit-box;
  display: flex;
  line-height: 1.53;
  border-color: #e53935;
  background-color: #ffe2e0;
}

.detailed-view--order-details .alert svg {
  flex-shrink: 0;
  margin-right: 12px;
  margin-top: 3px;
}

.detailed-view--order-details .cart-empty {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.detailed-view--order-details .cart-empty p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.79;
  color: #454545;
  text-align: center;
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .detailed-view--order-details .cart-empty {
    min-height: 550px;
  }
}

@media (max-width: 1199.98px) {
  .detailed-view--order-details .cart-empty {
    min-height: 390px;
  }

  .detailed-view--order-details .cart-empty img {
    width: 50px;
  }

  .detailed-view--order-details .cart-empty p {
    font-size: 12px;
  }
}

.detailed-view--additional {
  background-color: #fbfbfb;
  border-top: 1px solid #eaeaea;
  padding-top: 90px;
  padding-bottom: 90px;
}

.detailed-view--additional:not(.show) {
  display: none;
}

@media (max-width: 1199.98px) {
  .detailed-view--additional {
    padding-bottom: 0;
  }
}

.detailed-view--additional .header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.detailed-view--additional .header .restaurants li {
  height: 51px;
  width: 51px;
  border: 1px solid #e8e8e8;
}

.detailed-view--additional .header .restaurants li[data-tab] {
  cursor: pointer;
}

.detailed-view--additional .header .restaurants li.active {
  border-color: #e53935;
}

.detailed-view--additional .header .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.detailed-view--additional .header .selectric-wrapper {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

@media (min-width: 1200px) {
  .detailed-view--additional .header .restaurants {
    padding-right: 0;
  }

  .detailed-view--additional .header .restaurants li {
    border-width: 2px;
    width: 66px;
    height: 66px;
  }

  .detailed-view--additional .header .right {
    flex-basis: 250px;
  }
}

@media (max-width: 1199.98px) {
  .detailed-view--additional .header {
    margin-bottom: 3rem !important;
  }

  .detailed-view--additional .header,
  .detailed-view--additional .header .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .detailed-view--additional .header .right {
    width: 100%;
  }

  .detailed-view--additional .header .selectric-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
}

.detailed-view--additional-section {
  margin-bottom: 50px;
}

.detailed-view--additional-section .card-header {
  text-transform: uppercase;
  color: #5e5e5e;
  font-size: 14px;
}

.detailed-view--additional-section .card-body {
  padding: 0;
}

@media (max-width: 1199.98px) {
  .detailed-view--additional-section .badge {
    font-size: 10px;
  }
}

.detailed-view--additional-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 25px;
}

.detailed-view--additional-item:not(:last-of-type) {
  border-bottom: solid 1px #ebebeb;
}

.detailed-view--additional-item h4 {
  font-size: 14px;
}

.detailed-view--additional-item .left,
.detailed-view--additional-item .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.detailed-view--additional-item .right {
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.detailed-view--additional-item .right .d-flex {
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  justify-content: center;
}

.detailed-view--additional-item img {
  width: 130px;
  height: 62px;
}

@media (max-width: 767.98px) {
  .detailed-view--additional-item {
    text-align: center;
  }

  .detailed-view--additional-item,
  .detailed-view--additional-item .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .detailed-view--additional-item .right {
    width: 100%;
  }

  .detailed-view--additional-item h4 {
    margin-top: 10px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .detailed-view--additional-item img {
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .detailed-view--additional-item .tags {
    margin: 0.4rem 0;
  }

  .detailed-view--additional-item p {
    margin: 0;
  }

  .detailed-view--additional-item img {
    margin-right: 20px;
  }

  .detailed-view--additional-item h4 {
    font-size: 15px;
  }
}

/* Search */
.search {
  padding-bottom: 10rem;
}

@media (max-width: 1199.98px) {
  .search h2 {
    font-size: 20px;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .search h2 {
    font-size: 32px;
  }
}

.search--filters {
  border-bottom: solid 1px #e9e9e9;
}

.search--filters label {
  color: #5e5e5e;
}

@media (max-width: 1199.98px) {
  .search--filters .flex-grow-0 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .search--filters label {
    display: block;
    text-align: center;
    font-size: 12px;
  }
}

.search--filters .btn {
  background-color: #fff;
  border-color: #cfc8c8;
  color: #4d4d4d;
  font-weight: normal;
  height: 36px !important;
  padding: 0 1rem;
  cursor: pointer;
}

.search--filters .btn.active {
  background-color: #e53935 !important;
  color: #fff !important;
}

.search--filters .btn-group {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .search--filters .btn-group {
    width: 100%;
  }
}

.search--filters .selectric {
  border-color: #cfc8c8;
  font-size: 14px;
}

.search--filters .selectric .label {
  line-height: 34px;
  height: 34px;
}

.search--filters .selectric-items {
  min-height: 310px;
}

.search--filters .selectric-items ul {
  padding: 10px !important;
}

.search--filters .tags {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  margin-top: 0;
}

.search--filters .tags li {
  margin-bottom: 5px;
}

@media (max-width: 1199.98px) {
  .search--filters .tags li {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .search--filters .form-group {
    position: initial;
  }

  .search--filters .tags {
    z-index: 1;
    left: 5px;
    margin: 0;
  }

  .search--filters #cuisines {
    left: 10px;
  }
}

.search--results {
  display: table;
}

@media (max-width: 1199.98px) {
  .search--results {
    width: 100%;
  }
}

.search--result-group {
  font-size: 12px;
  line-height: 2.25;
  margin-bottom: 2rem;
}

.search--result-group .name {
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .search--result-group > div {
    width: 100%;
    display: table;
  }

  .search--result-group div.name {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .search--result-group {
    display: table-row;
    font-size: 14px;
    line-height: 1.93;
  }

  .search--result-group .name {
    display: table-cell;
    padding-right: 4rem;
  }

  .search--result-group > div {
    display: table-cell;
    padding-top: 2rem;
  }
}

.search--result-item {
  color: #7b8591 !important;
  display: table-row;
}

.search--result-item:hover span {
  background-color: #f9f9f9;
}

.search--result-item span {
  display: table-cell;
  padding: 0.25rem 0;
}

.search--result-item:first-of-type span {
  padding-top: 0.5rem;
}

@media (min-width: 1200px) {
  .search--result-item span:not(:last-of-type) {
    padding-right: 4rem;
  }

  .search--result-item span:first-of-type {
    padding-left: 1rem;
  }

  .search--result-item span:last-of-type {
    padding-right: 1rem;
  }
}

.search--no-results h2 {
  font-size: 16px;
}

.search--no-results h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.search--no-results .alert {
  text-align: left;
  padding: 20px;
}

@media (max-width: 1199.98px) {
  .search--no-results img {
    width: 54px;
  }
}

@media (min-width: 1200px) {
  .search--no-results {
    max-width: 494px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .search--no-results h2 {
    font-size: 28px;
  }

  .search--no-results p {
    font-size: 18px;
  }
}

/* Menu Builder */
.menu-builder--pictures .picture {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 103px 0;
  background-color: #f4f4f4;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.menu-builder--pictures .picture .img-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.menu-builder--pictures .picture img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.menu-builder--pictures .btn {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: normal !important;
  text-transform: none;
  z-index: 1;
  cursor: pointer;
}

.menu-builder--pictures .img-wrapper + .btn {
  background-color: #fff !important;
  border: none;
}

.menu-builder--pictures .img-wrapper + .btn:hover {
  color: #e53935;
}

@media (max-width: 1199.98px) {
  .menu-builder--pictures > * {
    margin-bottom: 1rem;
  }

  .menu-builder--pictures .picture {
    padding: 50px 20px;
  }

  .menu-builder--pictures .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    width: 100%;
  }
}

.menu-builder--preset > .card-header {
  color: #5e5e5e;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .menu-builder--preset > .card-header {
    text-align: center;
    font-size: 14px;
  }
}

.menu-builder--preset > .card-footer {
  background-color: #fff;
}

@media (max-width: 1199.98px) {
  .menu-builder--preset > .card-footer .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .menu-builder--preset > .card-footer .row > :last-of-type button {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1199.98px) {
  .menu-builder--preset-details > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.menu-builder--preset-details textarea {
  height: 111px;
  resize: none;
}

.menu-builder--preset .accordion {
  padding: 0;
}

.menu-builder--preset .accordion .card {
  border-color: #ebebeb !important;
}

.menu-builder--preset .accordion .card-header {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: #fbfbfb;
  border-bottom: 1px solid #ebebeb;
}

.menu-builder--preset .accordion .card-header h5 {
  font-size: 12px;
  line-height: 2.14;
}

@media (min-width: 1200px) {
  .menu-builder--preset .accordion .card-header h5 {
    font-size: 14px;
  }
}

.menu-builder--preset .accordion .card-header .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.menu-builder--preset .accordion .card-header .items-count {
  font-size: 12px;
  line-height: 2.5;
  color: #5e5e5e;
  margin-right: 40px;
}

.menu-builder--preset .accordion .card-header .arrow {
  display: inline-block;
  width: 11px;
  height: 15px;
  background-image: url('img/arrow-bottom-red.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.menu-builder--preset .accordion .card-header.collapsed .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu-builder--preset .accordion .card-body {
  min-height: 280px;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .menu-builder--preset .accordion .card-body {
    min-height: 460px;
  }
}

.menu-builder--placeholder {
  -webkit-box-flex: 1;
  flex: 1 1 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 4.5rem;
}

.menu-builder--placeholder p {
  font-size: 12px;
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 1200px) {
  .menu-builder--placeholder {
    font-size: 14px;
  }
}

.menu-builder--restaurant {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 6px 15px;
  border-radius: 5px;
  background-color: #f4f4f4;
}

.menu-builder--restaurant label {
  font-size: inherit;
  color: inherit;
  text-transform: none;
}

.menu-builder--restaurant .labeled-group {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .menu-builder--restaurant .w-50 {
    width: auto !important;
  }
}

.menu-builder--restaurant img {
  width: 39px;
  height: 39px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
}

@media (min-width: 1200px) {
  .menu-builder--restaurant img {
    width: 66px;
    height: 66px;
  }
}

.menu-builder--meals-title {
  font-size: 12px;
  padding: 10px 0;
  color: #5e5e5e;
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  .menu-builder--meals-title {
    font-weight: normal;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .menu-builder--meals-title {
    border-bottom: solid 1px #e1e1e1;
  }
}

@media (min-width: 1200px) {
  .menu-builder--meals {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -10px;
  }

  .menu-builder--meals > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 20px);
    margin: 10px 10px;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .menu-builder--meals {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -10px;
  }

  .menu-builder--meals > * {
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 20px);
    margin: 10px 10px;
  }
}

@media (max-width: 1199.98px) {
  .menu-builder--meals .meal-card {
    text-align: center;
  }

  .menu-builder--meals .meal-price,
  .menu-builder--meals .tags {
    -webkit-box-pack: center;
    justify-content: center;
  }

  .menu-builder--meals .info .btn {
    display: block;
    margin: 1rem auto 0;
    font-size: 14px;
    font-weight: 500;
  }
}

.menu-builder--preset-meal {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
  font-size: 12px;
}

.menu-builder--preset-meal .left,
.menu-builder--preset-meal .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.menu-builder--preset-meal img {
  width: 130px;
  height: 62px;
  margin-right: 15px;
}

.menu-builder--preset-meal h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

.menu-builder--preset-meal .close {
  margin-left: 15px;
}

@media (max-width: 1199.98px) {
  .menu-builder--preset-meal .meal-price {
    font-size: 1rem;
  }
}

/* Checkout */
.checkout label {
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
}

.checkout textarea {
  height: 120px;
}

.checkout .alert {
  font-size: 10px;
  line-height: 1.5;
}

.checkout .alert a {
  font-weight: 500;
}

@media (min-width: 1200px) {
  .checkout h3 {
    font-size: 18px;
  }

  .checkout .alert {
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .checkout h2 {
    text-align: center;
  }
}

.checkout--options-fields .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .checkout--options-fields {
    padding: 1rem 0 2rem;
  }

  .checkout--options-fields .custom-control {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .checkout--options-fields {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .checkout--options-fields .left {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
}

.checkout--order-details {
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  .checkout--order-details {
    font-size: 12px;
  }
}

.checkout--order-details .card-footer {
  background-color: #fff;
}

@media (max-width: 1199.98px) {
  .checkout--order-details .card-footer {
    padding-top: 3rem !important;
  }
}

@media (max-width: 1199.98px) {
  .checkout--order-details .card-footer .floating label {
    font-size: 10px !important;
  }

  .checkout--order-details .card-footer .selectric .label {
    height: 48px;
    line-height: 48px;
  }
}

.checkout--order-details .total li {
  padding-right: 0.5rem;
}

.checkout--order-details .item-list {
  border-color: #ebebeb;
}

.checkout--order-details .item-list .heading {
  background-color: #fbfbfb;
  font-weight: 500;
}

.checkout--order-details .item-list .heading img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: solid 1px #e5e5e5;
  background-color: #ffffff;
}

@media (max-width: 1199.98px) {
  .checkout--order-details .item-list .heading img {
    height: 38px;
    width: 38px;
  }
}

.checkout--order-details .item-list li {
  border-color: #ebebeb !important;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.checkout--order-details .item-list.wide li {
  padding-left: 2rem;
  padding-right: 2rem;
}

.checkout--order-details .item-list:not(.wide) {
  border-top-width: 0;
}

.checkout-completed--loading {
  min-height: calc(100vh - 120px);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-bottom: 5vh;
}

.checkout-completed--loading img {
  max-width: 100%;
}

.checkout-completed--content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 60px;
}

.checkout-completed--content a {
  font-weight: 500;
}

.checkout-completed--content h2 {
  font-size: 14px;
  line-height: 1.5;
}

.checkout-completed--content p {
  font-size: 12px;
}

@media (max-width: 1199.98px) {
  .checkout-completed--content img {
    width: 46px;
  }

  .checkout-completed--content button,
  .checkout-completed--content a {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .checkout-completed--content {
    margin-top: 110px;
    padding: 60px;
    border-radius: 5px;
    border: solid 1px #e9e9e9;
    width: 620px;
  }

  .checkout-completed--content h2 {
    font-size: 28px;
  }

  .checkout-completed--content p {
    font-size: 18px;
  }
}

/* Password Reset */
@media (max-width: 1199.98px) {
  .password-reset form {
    padding-top: 50px;
  }

  .password-reset h3 {
    font-size: 16px;
  }

  .password-reset a,
  .password-reset button {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .password-reset .navbar-menu {
    display: none;
  }

  .password-reset .navbar .container-fluid {
    -webkit-box-pack: center;
    justify-content: center;
  }

  .password-reset .container-fluid {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .password-reset form {
    padding: 70px;
    margin-top: 120px;
    width: 485px;
    border-radius: 2px;
    border: solid 1px #ededed;
  }
}

/* Specific modals */
.modal--sign-in .form-footer {
  display: -webkit-box;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (max-width: 1199.98px) {
  .modal--sign-in .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .modal--sign-in .form-footer a {
    margin-top: 10px;
    font-size: 14px;
  }

  .modal--sign-in button {
    font-size: 14px;
  }
}

.modal--edit-qty {
  padding: 0;
  display: -webkit-box;
  display: flex;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.modal--edit-qty .left,
.modal--edit-qty .right {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding: 20px 35px;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty .left,
  .modal--edit-qty .right {
    padding: 20px;
  }
}

.modal--edit-qty .left {
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
}

@media (min-width: 1200px) {
  .modal--edit-qty .left {
    max-width: calc(100% - 512px);
  }
}

.modal--edit-qty .right {
  background-color: #f4f4f4;
  flex-basis: 512px;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty .right {
    background-color: #fbfbfb;
  }
}

.modal--edit-qty .left .badge {
  font-size: 14px;
  margin: 15px 0 0;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

.modal--edit-qty .left .badge b {
  font-size: 17px;
  margin-right: 5px;
}

.modal--edit-qty textarea {
  height: 100px;
  padding-top: 10px;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty {
    padding-top: 10px;
  }

  .modal--edit-qty h2 {
    font-size: 20px !important;
  }

  .modal--edit-qty .left .d-flex {
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .modal--edit-qty .left .restaurant {
    width: 43px;
    height: 43px;
  }

  .modal--edit-qty .left .badge {
    font-size: 12px;
  }

  .modal--edit-qty .left .badge b {
    font-size: 14px;
  }

  .modal--edit-qty .slick {
    padding-bottom: 50px;
  }

  .modal--edit-qty .slick-next,
  .modal--edit-qty .slick-prev {
    bottom: 0;
  }
}

.modal--edit-qty h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.modal--edit-qty .preview img {
  border-radius: 5px;
  max-width: 100%;
}

.modal--edit-qty .subtitle {
  font-size: 14px;
  line-height: 1.43;
  color: #5e5e5e;
  margin-bottom: 8px;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty .subtitle {
    font-size: 12px;
  }
}

.modal--edit-qty .right .list-group-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  padding: 20px;
  border-color: #ebebeb;
}

@media (min-width: 1200px) {
  .modal--edit-qty .right .list-group-item .badge {
    font-weight: 500;
  }
}

@media (max-width: 1199.98px) {
  .modal--edit-qty .right .list-group-item span {
    display: block;
    font-size: 12px;
  }

  .modal--edit-qty .right .list-group-item .badge {
    margin-left: 0;
    font-size: 10px;
  }
}

.modal--edit-qty .total {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.modal--edit-qty .total .entry {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.modal--edit-qty .total .title {
  color: rgba(77, 77, 77, 0.6);
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  .modal--edit-qty .total .title {
    font-size: 12px;
  }
}

@media (max-width: 1199.98px) {
  .modal--edit-qty button.btn {
    font-size: 14px;
  }
}

.modal--quick-view {
  display: -webkit-box;
  display: flex;
  padding: 0;
}

.modal--quick-view .left,
.modal--quick-view .right {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

.modal--quick-view .restaurants {
  padding-left: 0;
  padding-right: 0;
}

.modal--quick-view .restaurants li {
  border: solid 1px rgba(151, 151, 151, 0.35);
  width: 66px;
  height: 66px;
}

.modal--quick-view .left {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 30px;
}

.modal--quick-view .left hr {
  width: 100%;
  border-color: #f2f2f2;
}

.modal--quick-view .right {
  flex-basis: 52%;
  padding: 25px 10px 10px 0;
}

.modal--quick-view h2 {
  margin: 0;
  font-size: 28px;
}

.modal--quick-view .stars {
  padding-top: 5px;
  padding-bottom: 5px;
}

.modal--quick-view .stats {
  color: #5e5e5e;
  font-size: 14px;
  margin-top: 5px;
}

.modal--quick-view .stats > :first-child {
  margin-right: 20px;
}

.modal--quick-view .stats svg {
  margin-right: 5px;
}

.modal--quick-view .stats b {
  color: #454545;
}

.modal--quick-view .meals {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  margin: 0 -15px;
  margin: 0;
  height: 572px;
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  background-color: #fbfbfb;
  overflow-y: auto;
  padding: 10px 15px;
}

.modal--quick-view .meals > * {
  -webkit-box-flex: 0;
  flex: 0 0 calc(50% - 30px);
  margin: 15px 15px;
}

.modal--quick-view .meals h3 {
  font-size: 16px;
}

.modal--quick-view .meal-card {
  box-shadow: none;
}

.modal--quick-view .meal-card .info {
  padding: 10px 0;
}

.modal--quick-view .meal-card h4 {
  font-size: 14px;
  margin: 0;
}

.modal--quick-view .meal-card .tags {
  margin: 10px 0;
}

.modal--quick-view .meal-card .tags li {
  font-size: 10px;
  margin-bottom: 5px;
}

.modal--quick-view .qty {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}

.modal--quick-view .qty span {
  color: rgba(123, 133, 145, 0.69);
}

@media (min-width: 1200px) {
  .modal--sign-up {
    padding: 4rem 5rem;
  }
}

.setting-page-title {
  color: #343434;
  margin-top: 20px;
}
