@charset "UTF-8";
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/**

The following colours are based on Mr D Food's brand and have been chosen by 
Wessel (wessel.booysen@takealot.com). Any UI, UX, theme or colour should be
discussed with him.

*/
/* base */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #060B0D;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  overflow-x: hidden;
}

img {
  border: 0;
  display: block;
}

h1, h2, h3, h4, h5, h6, p, form, input, ul, ol, li, header, nav, footer, section {
  list-style: none;
  margin: 0;
  padding: 0;
}

header, nav, footer, section {
  display: block;
}

textarea,
button,
input,
input[type=text],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  color: #8F8F8F;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}
textarea ::-webkit-input-placeholder,
button ::-webkit-input-placeholder,
input ::-webkit-input-placeholder,
input[type=text] ::-webkit-input-placeholder,
input[type=button] ::-webkit-input-placeholder,
input[type=submit] ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #8F8F8F;
}
textarea ::-moz-placeholder,
button ::-moz-placeholder,
input ::-moz-placeholder,
input[type=text] ::-moz-placeholder,
input[type=button] ::-moz-placeholder,
input[type=submit] ::-moz-placeholder { /* Firefox 19+ */
  color: #8F8F8F;
}
textarea :-ms-input-placeholder,
button :-ms-input-placeholder,
input :-ms-input-placeholder,
input[type=text] :-ms-input-placeholder,
input[type=button] :-ms-input-placeholder,
input[type=submit] :-ms-input-placeholder { /* IE 10+ */
  color: #8F8F8F;
}
textarea :-moz-placeholder,
button :-moz-placeholder,
input :-moz-placeholder,
input[type=text] :-moz-placeholder,
input[type=button] :-moz-placeholder,
input[type=submit] :-moz-placeholder { /* Firefox 18- */
  color: #8F8F8F;
}

textarea {
  resize: none;
  overflow: auto;
}

input:focus,
textarea:focus {
  outline: none;
}

table,
table td {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0;
}

a {
  font-family: "Mallory", sans-serif;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 6;
}

.btn-group {
  display: flex;
  padding: 16px 0;
}
.btn-group .img {
  width: 100%;
}
.btn-group.logged-out .btn {
  width: 100%;
  max-width: calc(50% - 8px);
}
.btn-group.logged-out .btn:first-child {
  margin: 16px 8px 16px 0;
}
.btn-group.logged-out .btn:last-child {
  margin: 16px 0px 16px 8px;
}
.btn-group.logged-in {
  width: 100%;
  max-width: 280px;
  margin: 0 10px;
  padding: 16px 16px 16px 16px !important;
}
.btn-group.cta {
  text-align: center;
  padding: 24px;
}
.btn-group.cta a {
  display: inline-block;
  margin-right: 20px;
  width: calc(50% - 12px);
  max-width: 160px;
}
.btn-group.cta a:last-child {
  margin-right: 0;
}
.btn-group.cta a img {
  width: 100%;
}

.btn.default {
  border-color: #060B0D;
}
.btn.yellow {
  background: #FAA902;
  color: #060B0D;
  border-color: #FAA902;
}

.flex {
  display: flex;
}

.page-body {
  flex-direction: column;
  margin-top: -3px;
}
.page-body #appshow {
  order: 1;
}
@media (min-width: 767px) {
  .page-body #appshow {
    order: 4;
  }
}
.page-body .restaurant-options {
  order: 2;
}
@media (min-width: 767px) {
  .page-body .restaurant-options {
    order: 2;
  }
}
@media (min-width: 767px) {
  .page-body .choices-main {
    order: 3;
  }
}
.page-body .restaurant-search {
  order: 3;
}
@media (min-width: 767px) {
  .page-body .restaurant-search {
    order: 4;
  }
}
.page-body .end-search {
  order: 6;
}
@media (min-width: 767px) {
  .page-body .end-search {
    order: 6;
  }
}

.bg-pac4 {
  background: #F0FAFF;
}

.row-title {
  width: 100%;
  color: #fff;
  z-index: 5;
  top: 0;
  text-align: center;
  padding: 48px 16px;
  margin-bottom: 0;
  position: relative;
  z-index: 6;
}
.row-title.black {
  color: #060B0D;
}

.row-title-subtitle {
  width: 100%;
  color: #fff;
  z-index: 5;
  top: 0;
  text-align: center;
  padding: 0 0 64px;
  margin: -32px 0 0;
  position: relative;
  z-index: 6;
  font-weight: 500;
}
.row-title-subtitle.black {
  color: #060B0D;
}

.hidden {
  display: none;
}

.loading {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.5), rgba(0, 0, 0, 0.5));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.5), rgba(0, 0, 0, 0.5));
}
.loading div {
  border: 16px solid #F2F2F2; /* Light grey */
  border-top: 16px solid #6DCEF5; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-generic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-generic .header-title {
  color: #fff;
}
.page-generic .header-subtitle {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  color: #fff;
  display: none;
}
@media (min-width: 767px) {
  .page-generic .header-subtitle {
    display: block;
  }
}
.page-generic .btn-group {
  justify-content: center;
  padding: 32px;
}
.page-generic .btn-group a {
  width: auto;
  padding: 17px 32px;
}

.snackme-header {
  background: #6DCEF5;
}
@media (min-width: 1023px) {
  .snackme-header {
    padding: 120px 0 109px !important;
  }
}
.snackme-header:before {
  display: none;
}
.snackme-header .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}
@media (min-width: 1023px) {
  .snackme-header .container {
    padding: 0;
  }
}
.snackme-header .header-img {
  display: none;
}
@media (min-width: 1023px) {
  .snackme-header .header-img {
    align-items: center;
    justify-content: center;
    display: flex;
  }
}
.snackme-header .header-img img {
  max-width: 970px;
  display: block;
  width: 100%;
}
.snackme-header .header-img-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
}
@media (min-width: 1023px) {
  .snackme-header .header-img-mobile {
    display: none;
  }
}
.snackme-header .header-img-mobile img {
  max-width: 970px;
  display: block;
  width: 100%;
}
.snackme-header .header-desc {
  max-width: 607px;
}
.snackme-header .header-desc p {
  text-align: center;
  color: #060B0D;
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 1023px) {
  .snackme-header .header-desc p {
    font-size: 21px;
    line-height: 32px;
  }
}
.snackme-header .header-desc h3 {
  font-weight: bold;
  text-align: center;
  color: #060B0D;
  font-size: 22px;
  line-height: 26px;
}
@media (min-width: 1023px) {
  .snackme-header .header-desc h3 {
    margin-bottom: 34px;
    font-size: 29px;
    line-height: 34px;
  }
}
.snackme-header .btn-group, .snackme-header .btn-group.cta {
  display: block;
  text-align: center;
  margin: 0 auto 24px;
}
@media (min-width: 1023px) {
  .snackme-header .btn-group, .snackme-header .btn-group.cta {
    margin: 0;
  }
}

.snackme-header-alt {
  background: #6DCEF5;
}
@media (max-width: 1023px) {
  .snackme-header-alt {
    padding: 160px 20px 40px !important;
  }
}
.snackme-header-alt:before {
  display: none;
}
.snackme-header-alt .container {
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1023px) {
  .snackme-header-alt .container {
    flex-direction: row;
    padding: 0 48px;
  }
}
.snackme-header-alt .gift-friends {
  width: 100%;
  max-width: 313px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snackme-header-alt .gift-friends .icon {
  max-width: 100%;
}
.snackme-header-alt .gift-details {
  width: 100%;
  max-width: 300px;
  padding: 15px 15px 45px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.240999);
  border-radius: 5px;
  margin-bottom: 24px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-details {
    padding: 33px 31px 83px;
    max-width: 313px;
    margin-bottom: 0;
  }
}
.snackme-header-alt .icon {
  width: 100%;
}
.snackme-header-alt .icon img {
  width: 100%;
  display: block;
  height: auto;
}
.snackme-header-alt .value {
  background: #F2F2F2;
  padding: 11px 35px;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #060B0D;
  border-radius: 100px;
  margin-bottom: 33px;
}
.snackme-header-alt .gift-to {
  color: #060B0D;
  opacity: 0.57;
  font-size: 13px;
  margin-bottom: 15px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-to {
    font-size: 16px;
    margin-bottom: 29px;
  }
}
.snackme-header-alt .gift-message {
  color: #060B0D;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 20px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-message {
    line-height: 30px;
    font-size: 23px;
    margin-bottom: 22px;
  }
}
.snackme-header-alt .gift-from {
  color: #060B0D;
  opacity: 0.57;
  font-size: 13px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-from {
    font-size: 16px;
  }
}
.snackme-header-alt .gift-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-desc {
    padding-left: 76px;
  }
}
.snackme-header-alt .gift-desc.showmobile {
  display: flex;
  margin-bottom: 40px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-desc.showmobile {
    display: none;
  }
}
.snackme-header-alt .gift-desc.showmobile h3 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 700;
}
.snackme-header-alt .gift-desc h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
  color: #060B0D;
  margin-bottom: 7px;
  text-align: center;
  width: 100%;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-desc h3 {
    display: flex;
    font-size: 37px;
    line-height: 44px;
    text-align: left;
  }
}
.snackme-header-alt .gift-desc .hidemobile {
  display: none;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-desc .hidemobile {
    display: block;
  }
}
.snackme-header-alt .gift-desc p {
  font-style: normal;
  font-weight: normal;
  color: #060B0D;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 37px;
  text-align: center;
}
@media (min-width: 1023px) {
  .snackme-header-alt .gift-desc p {
    text-align: left;
    font-size: 23px;
    line-height: 27px;
  }
}
.snackme-header-alt .btn-group, .snackme-header-alt .btn-group.cta {
  margin: 0 auto 24px;
}
@media (min-width: 1023px) {
  .snackme-header-alt .btn-group, .snackme-header-alt .btn-group.cta {
    margin: 0;
  }
}
.snackme-header-alt .btn-group a, .snackme-header-alt .btn-group.cta a {
  display: inline-block;
}

#main-nav {
  overflow: visible;
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease;
}
#main-nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#main-nav .nav-container .nav-bar {
  display: flex;
  flex-direction: row;
  width: 100%;
}
#main-nav .nav-container .nav-bar .spacer {
  flex-grow: 1;
}
#main-nav .nav-container .nav-bar .nav-quick-actions {
  margin-right: 20px;
  align-items: center;
}
#main-nav .nav-container .nav-bar .action {
  display: flex;
  font-weight: 700;
  text-decoration: none;
  color: black;
  align-items: center;
  border-radius: 6px;
  margin-right: 18px;
  text-align: center;
}
@media (max-width: 480px) {
  #main-nav .nav-container .nav-bar .action.drop-xs {
    display: none;
  }
}
@media (max-width: 767px) {
  #main-nav .nav-container .nav-bar .action.drop-sm {
    display: none;
  }
}
#main-nav .nav-container .nav-bar .action img {
  position: absolute;
}
#main-nav .nav-container .nav-ico {
  width: 48px;
  height: 40px;
  padding: 6px 12px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  z-index: 999;
  min-width: unset;
}
#main-nav .nav-container .nav-ico span {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: white;
  position: relative;
  transition: ease all 0.3s;
  opacity: 1;
}
#main-nav .nav-container .nav-ico.active {
  background: white;
}
#main-nav .nav-container .nav-ico.active span {
  background: #060B0D;
}
#main-nav .nav-container .nav-ico.active span:nth-child(2) {
  opacity: 0;
  height: 0px;
  width: 0;
  display: none;
}
#main-nav .nav-container .nav-ico.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 6px;
  margin: 0;
}
#main-nav .nav-container .nav-ico.active span:nth-child(3) {
  transform: rotate(45deg);
  top: -4px;
  margin: 0;
}
#main-nav .nav-container .site-logo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}
@media (min-width: 1023px) {
  #main-nav .nav-container .site-logo {
    width: 75px;
    height: 75px;
  }
}
#main-nav .nav-container .site-logo img {
  width: 100%;
  height: auto;
}
#main-nav .nav-container .modal-btn {
  width: auto;
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 999;
  border: none;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 32px;
  display: none;
}
#main-nav .nav-container .site-nav {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9;
  transition: ease-in-out all 0.3s;
  width: 100%;
  padding-bottom: 64px;
  padding-top: 64px;
}
@media (min-width: 767px) {
  #main-nav .nav-container .site-nav {
    height: 100%;
    max-width: 320px;
    margin-top: 0;
    padding: 64px 0 0;
  }
}
#main-nav .nav-container .site-nav li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 0;
}
#main-nav .nav-container .site-nav li.highlight {
  border-bottom: 2px solid #6DCEF5;
}
#main-nav .nav-container .site-nav li .ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-nav .nav-container .site-nav li a {
  font-size: 16px;
  color: #060B0D;
  text-decoration: none;
  padding: 15px 15px 15px 30px;
  width: 100%;
}
#main-nav .nav-container .site-nav.active {
  left: 0;
}
@media (min-width: 767px) {
  #main-nav .nav-container .site-nav.active {
    left: calc(100% - 320px);
  }
}
#main-nav .nav-container .site-nav .logged-out.btn-group {
  padding-left: 16px;
}
#main-nav .nav-container .site-nav .btn-group {
  max-width: 320px;
}
#main-nav .nav-container .site-nav .site-nav-footer-space {
  padding-top: 60px;
}
#main-nav .nav-container .user-profile-menu {
  border-bottom: 32px solid #F2F2F2;
}
#main-nav .nav-container .user-profile-menu ul > li {
  padding-left: 24px;
}
#main-nav .nav-container .user-profile-menu ul .user-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  padding-left: 24px;
  border-bottom: 16px solid #F2F2F2;
}
@media (min-width: 1023px) {
  #main-nav .nav-container .user-profile-menu ul .user-details {
    border-top: 16px solid #F2F2F2;
  }
}
#main-nav .nav-container .user-profile-menu ul .user-details:after {
  display: none;
}
#main-nav .nav-container .user-profile-menu ul .user-details .panel-title {
  border-bottom: 1px solid #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  color: #060B0D;
  width: 100%;
  padding: 13px 0;
}
#main-nav .nav-container .user-profile-menu ul .user-details .panel-meta {
  display: flex;
  width: 100%;
  padding: 22px 0;
  position: relative;
}
#main-nav .nav-container .user-profile-menu ul .user-details .panel-meta a {
  padding: 0 0 0 15px;
  display: flex;
  flex-direction: column;
}
#main-nav .nav-container .user-profile-menu ul .user-details .panel-meta a .profile-name {
  font-size: 16px;
  font-weight: 500;
}
#main-nav .nav-container .user-profile-menu ul .user-details .panel-meta a .profile-email {
  font-size: 13px;
  font-weight: 400;
  color: #8F8F8F;
}

.nav-scrolled #main-nav {
  background: white;
}

.saved-addresses {
  display: none;
  font-weight: 700;
}
.saved-addresses #saved_addresses {
  margin-top: calc(24px / 2);
}
@media (min-width: 769px) {
  .saved-addresses #saved_addresses {
    margin-top: calc(48px / 2);
  }
}
@media (min-width: 1100px) {
  .saved-addresses #saved_addresses {
    margin-top: calc(64px / 2);
  }
}
@media (min-width: 767px) {
  .saved-addresses {
    display: block;
  }
}
.saved-addresses .addresses {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
.saved-addresses .addresses .address {
  display: none;
  cursor: pointer;
  margin-right: 26px;
  color: black;
  text-decoration: none;
}
.saved-addresses .addresses .address:hover {
  opacity: 0.9;
}
.saved-addresses .addresses .address:hover .badge {
  top: -4px;
}
.saved-addresses .addresses .badge {
  top: 0;
  position: relative;
  opacity: 0.7;
  margin: 0 auto 10px auto;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border-width: 2px;
  border-color: black;
  border-style: solid;
  transition: all 0.3s ease;
}
.saved-addresses .addresses .badge.badge-couch {
  background: url("/img/vector/address_couch.svg") center center/23px no-repeat #FAA902;
}
.saved-addresses .addresses .badge.badge-desk {
  background: url("/img/vector/address_work.svg") center center/23px no-repeat #BC95D3;
}
.saved-addresses .addresses .badge.badge-otherhome {
  background: url("/img/vector/address_home2.svg") center center/23px no-repeat #97CB87;
}

#appshow {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
#appshow .col {
  position: relative;
  max-width: 100%;
}
@media (min-width: 769px) {
  #appshow .col {
    max-width: 50%;
  }
}
#appshow p {
  line-height: 1.4rem;
}
#appshow .col-right h5 {
  margin: 24px 0;
}
@media (min-width: 769px) {
  #appshow .col-right h5 {
    margin: 0;
  }
}
#appshow .col-right .appshow-caro-body {
  max-width: 220px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  #appshow .col-right .appshow-caro-body {
    margin: 0 auto 15px;
  }
}
#appshow .col-right .appshow-caro-body .slick-list {
  padding: 24px 32px 0 32px;
}
#appshow .col-right .appshow-caro-body .slick-list:after {
  background-image: url(../img/iphone/img-iphone-x-group.png);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center 0;
}
#appshow .col-right .appshow-caro-body .caro-image img {
  width: 100%;
  margin-left: -4px;
}
#appshow .col-right .appshow-caro-header h5 {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
#appshow .col-right .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 0;
}
#appshow .col-right .slick-dots li {
  margin: 0;
}
#appshow .col-right .slick-dots li button {
  width: 37px;
  height: 13px;
  border-radius: 6px;
  background: #B5E6FB;
  border: none;
  text-indent: -99999px;
  margin: 0 8px;
}
#appshow .col-right .slick-dots li.slick-active button {
  background: #23a5ee;
}
#appshow .col-left .caro-header {
  margin-bottom: 32px;
}
#appshow .col-left .col-cta {
  background-color: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.1215686275);
}
#appshow .col-left .col-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
@media (min-width: 450px) {
  #appshow .col-left .col-cta {
    padding: 32px;
  }
}
@media (min-width: 769px) {
  #appshow .col-left .col-cta {
    border-radius: initial;
    box-shadow: initial;
  }
}
#appshow .col-left .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
#appshow .col-left .btn-group a {
  display: inline-block;
  width: calc(45% - 8px);
  text-align: left;
  margin: 0 8px 8px 8px;
}
#appshow .col-left .btn-group a img {
  display: inline-block;
  max-width: 100%;
}
#appshow .col-left .btn-group a:nth-of-type(3) img {
  transform: scale(1.03);
}
@media (min-width: 769px) {
  #appshow .col-left .btn-group a {
    width: calc(55% - 8px);
  }
}
@media (min-width: 1100px) {
  #appshow .col-left .btn-group a {
    width: calc(47% - 8px);
  }
}

#appshow.fullWidthMobileOnly .col-right {
  display: none;
}
#appshow.fullWidthMobileOnly .col-left {
  margin: 0;
}
#appshow.fullWidthMobileOnly .col-left .col-cta {
  background-color: #6DCFF6;
  position: relative;
  padding: 24px 0;
  border-radius: initial;
  box-shadow: initial;
}
@media (max-width: 768px) {
  #appshow.fullWidthMobileOnly .col-left .col-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (min-width: 769px) {
  #appshow.fullWidthMobileOnly {
    display: none;
  }
}

.pos-1 #appshow {
  margin-top: -130px;
}
@media (min-width: 769px) {
  .pos-1 #appshow {
    margin-top: 0;
  }
}

.restaurant-options {
  position: relative;
  overflow: hidden;
}

.slider-bg {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.restaurant-header {
  background-position: 0 center !important;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 767px) {
  .restaurant-header {
    background-position: center !important;
    background-size: cover !important;
  }
}
@media (min-width: 767px) {
  .restaurant-header {
    background-position: 100% 0 !important;
    background-size: 900px auto !important;
  }
}
@media (min-width: 1023px) {
  .restaurant-header {
    background-size: auto 100% !important;
  }
}

.restaurant-nav-main {
  position: relative;
  z-index: 3;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 3em 0;
}
@media (min-width: 767px) {
  .restaurant-nav-main {
    flex-direction: row;
  }
}
@media (min-width: 1439px) {
  .restaurant-nav-main {
    background-size: auto 100%;
    background-position: 400px 0px;
  }
}
@media (min-width: 1538px) {
  .restaurant-nav-main {
    background-position: right 0px;
  }
}
@media (min-width: 1815px) {
  .restaurant-nav-main {
    background-size: 60%;
    background-position: right 0px;
  }
}
.restaurant-nav-main:before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(123, 126, 129, 0), rgba(6, 11, 13, 0.5490196078));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}
@media (min-width: 767px) {
  .restaurant-nav-main:before {
    transform: rotate(0);
  }
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left, .restaurant-nav-main .restaurant-right {
    width: 100%;
    max-width: 50%;
  }
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-right {
    width: 100%;
    max-width: calc(50% + 20px);
    position: relative;
    left: -10px;
  }
}
.restaurant-nav-main .restaurant-left {
  position: relative;
  padding: 32px;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left {
    padding: 102px 32px 119px;
  }
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left:before {
    content: "";
    background: #fff;
    position: absolute;
    width: 800px;
    height: 100%;
    top: 0;
    right: 0;
    transform: skew(0.058turn);
    z-index: 1;
  }
}
@media (min-width: 1023px) {
  .restaurant-nav-main .restaurant-left:before {
    width: 1200px;
  }
}
.restaurant-nav-main .restaurant-left .item-ico {
  position: relative;
  z-index: 2;
  display: none;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left .item-ico {
    display: block;
  }
}
.restaurant-nav-main .restaurant-left .item-ico svg {
  width: 120px;
  height: auto;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left .item-ico svg {
    width: 60px;
  }
}
@media (min-width: 1439px) {
  .restaurant-nav-main .restaurant-left .item-ico svg {
    width: 96px;
  }
}
.restaurant-nav-main .restaurant-left h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  font-weight: 700;
  padding: 16px 0;
  position: relative;
  z-index: 3;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left h3 {
    color: #060B0D;
    font-size: 24px;
    text-align: left;
  }
}
@media (min-width: 1023px) {
  .restaurant-nav-main .restaurant-left h3 {
    max-width: 84%;
    font-size: 32px;
    padding: 32px 0;
  }
}
@media (min-width: 1439px) {
  .restaurant-nav-main .restaurant-left h3 {
    font-size: 48px;
  }
}
@media (min-width: 1919px) {
  .restaurant-nav-main .restaurant-left h3 {
    padding: 51px 0 50px;
  }
}
.restaurant-nav-main .restaurant-left .restaurant-description {
  position: relative;
  text-align: left;
  z-index: 2;
}
.restaurant-nav-main .restaurant-left .restaurant-description .sub-title {
  color: #45484a;
  font-size: 16px;
  font-weight: 500;
  display: none;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .sub-title {
    display: block;
  }
}
@media (min-width: 1023px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .sub-title {
    max-width: 80%;
  }
}
@media (min-width: 1439px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .sub-title {
    font-size: 32px;
  }
}
.restaurant-nav-main .restaurant-left .restaurant-description .sub-title a {
  color: #45484a;
  font-weight: 500;
}
.restaurant-nav-main .restaurant-left .restaurant-description .cta {
  display: none;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .cta {
    color: #6DCEF5;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 35px 0 0;
  }
}
@media (min-width: 1439px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .cta {
    font-size: 40px;
  }
}
.restaurant-nav-main .restaurant-left .restaurant-description .cta .icon {
  margin: 0 0 0 16px;
}
.restaurant-nav-main .restaurant-left .restaurant-description .cta .icon svg {
  width: 32px;
  height: auto;
}
@media (min-width: 1439px) {
  .restaurant-nav-main .restaurant-left .restaurant-description .cta .icon svg {
    width: 48px;
  }
}
.restaurant-nav-main .restaurant-right {
  margin-top: auto;
}
.restaurant-nav-main .restaurant-right a {
  padding: 16px 10px 16px;
  color: #060B0D;
  font-size: 13px;
  font-weight: 400;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.32);
  min-height: 150px;
  max-width: 150px;
  margin: 16px auto 32px;
  transition: ease-in-out all 0.3s;
}
@media (min-width: 767px) {
  .restaurant-nav-main .restaurant-right a {
    max-width: 224px;
    min-height: 224px;
    margin: 16px auto 70px;
  }
}
.restaurant-nav-main .restaurant-right a img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  width: auto;
  margin-top: auto;
}
.restaurant-nav-main .restaurant-right a .item-name {
  margin-top: auto;
  text-align: center;
}
.restaurant-nav-main .restaurant-right .item-main {
  transition: ease-in-out all 0.3s;
  padding: 25px 0 0;
}
.restaurant-nav-main .restaurant-right .slick-center .item-logo {
  transform: scale(1.2);
}

.restaurant-search {
  padding: 80px 16px 16px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 767px) {
  .restaurant-search {
    display: none;
  }
}
.restaurant-search:before {
  background: #B5E6FB;
  width: 110%;
  height: 120px;
  content: "";
  position: absolute;
  top: -95px;
  left: -9px;
  z-index: 0;
  transform: rotate(-5deg);
}
.restaurant-search h2 {
  font-size: 32px;
  font-weight: 700;
  color: #060B0D;
  text-align: center;
  padding-bottom: 32px;
}
.restaurant-search h3 {
  font-size: 20px;
  font-weight: 700;
  color: #060B0D;
  text-align: center;
  padding-bottom: 16px;
}

.restaurant-inverted .restaurant-header {
  background-position: 0 center !important;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
}
@media (min-width: 767px) {
  .restaurant-inverted .restaurant-header {
    background-position: 0% 0 !important;
    background-size: 900px auto !important;
  }
}
@media (min-width: 1023px) {
  .restaurant-inverted .restaurant-header {
    background-size: 1100px auto !important;
  }
}
.restaurant-inverted .restaurant-nav-main {
  background-position: left 0;
}
@media (min-width: 767px) {
  .restaurant-inverted .restaurant-nav-main .restaurant-left {
    order: 2;
  }
}
.restaurant-inverted .restaurant-nav-main .restaurant-left:before {
  transform: skew(-0.02turn);
  transform-origin: 0 -311px;
  left: 0;
}
@media (min-width: 767px) {
  .restaurant-inverted .restaurant-nav-main .restaurant-right {
    order: 1;
  }
}

@media (max-width: 767px) {
  .search-form.mobile_active {
    position: fixed;
    top: 0px !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    overflow: scroll;
  }
  .search-form.mobile_active .mobile-close {
    position: relative;
    width: 100%;
    background: #6DCEF5;
    min-height: 64px;
  }
  .search-form.mobile_active .mobile-close .closer {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 25px;
    flex-direction: column;
    z-index: 999;
    transition: ease-in-out all 0.3s;
  }
  .search-form.mobile_active .mobile-close .closer span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #060B0D;
    margin: 0 0 4px;
    position: relative;
    transition: ease all 0.3s;
    opacity: 1;
  }
}
@media (max-width: 767px) and (min-width: 1023px) {
  .search-form.mobile_active .mobile-close .closer span:last-child {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .search-form.mobile_active .mobile-close .closer span:nth-child(1) {
    transform: rotate(-45deg);
    top: 2px;
    margin: 0;
  }
  .search-form.mobile_active .mobile-close .closer span:nth-child(2) {
    transform: rotate(45deg);
    top: 0;
    margin: 0;
  }
  .search-form.mobile_active .loc-ico {
    top: 84px;
  }
  .search-form.mobile_active .btn {
    padding: 16px 24px;
    top: 63px;
    box-shadow: none;
  }
  .search-form.mobile_active input {
    box-shadow: none;
  }
}
.search-form {
  position: relative;
  width: 92%;
  max-width: 368px;
}
@media (min-width: 767px) {
  .search-form {
    width: unset;
    max-width: 800px;
  }
}
.search-form .loc-ico {
  position: absolute;
  top: 20px;
  left: 15px;
}
.search-form input {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  border: 1px solid #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 110px 12px 40px;
}
@media (min-width: 767px) {
  .search-form input {
    padding: 21px 118px 21px 50px;
  }
}
.search-form .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  background-color: #FAA902;
  color: inherit;
  border: none;
  border-radius: 0px 50px 50px 0px;
  box-shadow: none;
  padding: 0 20px;
  min-width: initial;
  cursor: pointer;
}
.search-form .btn:hover {
  background-color: #fdbb32;
}
.search-form .btn:active {
  background-color: #FAA902;
}
.search-form .btn svg + span {
  display: none;
}
@media (min-width: 1023px) {
  .search-form .btn svg {
    display: none;
  }
  .search-form .btn svg + span {
    display: block;
  }
}
.search-form #searchResultMenu_primary, .search-form #searchResultMenu_secondary, .search-form #searchResultMenu_mobile {
  flex-direction: column;
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 0px 0 45px;
  display: none;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
  background: #fff;
}
.search-form #searchResultMenu_primary:after, .search-form #searchResultMenu_secondary:after, .search-form #searchResultMenu_mobile:after {
  content: "powered by";
  font-size: 12px;
  color: #060B0D;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: url(../img/images/google.png);
  background-repeat: no-repeat;
  background-size: 60px auto;
  background-position: 126px 15px;
  padding-right: 80px;
  height: 45px;
  width: 200px;
}
.search-form #searchResultMenu_primary.show, .search-form #searchResultMenu_secondary.show, .search-form #searchResultMenu_mobile.show {
  display: flex;
}
.search-form #searchResultMenu_primary .not-found, .search-form #searchResultMenu_secondary .not-found, .search-form #searchResultMenu_mobile .not-found {
  background: #ec1c24;
  position: absolute;
  width: 100%;
  height: 150%;
  z-index: 9;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.search-form #searchResultMenu_primary a, .search-form #searchResultMenu_secondary a, .search-form #searchResultMenu_mobile a {
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #F2F2F2;
}
.search-form #searchResultMenu_primary a.active, .search-form #searchResultMenu_secondary a.active, .search-form #searchResultMenu_mobile a.active {
  background: #F2F2F2;
}
.search-form #searchResultMenu_primary a .start, .search-form #searchResultMenu_secondary a .start, .search-form #searchResultMenu_mobile a .start {
  font-size: 16px;
  color: #060B0D;
  font-weight: 500;
  padding-bottom: 8px;
}
.search-form #searchResultMenu_primary a .end, .search-form #searchResultMenu_secondary a .end, .search-form #searchResultMenu_mobile a .end {
  font-size: 16px;
  color: #8F8F8F;
  font-weight: 400;
}

.restaurant-form {
  padding: 32px 0 0;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 480px) {
  .restaurant-form {
    flex-direction: row;
  }
}
.restaurant-form input {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  border: 1px solid #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  padding: 23px 22px;
  width: auto;
  flex-grow: 1;
}
.restaurant-form button {
  position: relative;
  height: auto;
  width: auto;
  margin: 16px 0 0 0;
  padding: 16px 50px;
}
.restaurant-form button:before {
  display: none;
}
@media (min-width: 480px) {
  .restaurant-form button {
    margin: 0 0 0 16px;
  }
}

.skew-left .col-right {
  order: 2;
}
.skew-left .col-left {
  order: 1;
}

.skew-right .col-right {
  order: 1;
}
.skew-right .col-left {
  order: 2;
}

.has2cols {
  align-items: center;
  justify-content: space-between;
}
.has2cols .col {
  margin-bottom: 32px;
}
.has2cols .col[class*=bg-] {
  position: relative;
  min-width: 260px;
  height: 260px;
  border-radius: 16px;
  background-position: center;
}
.has2cols:last-child {
  margin-bottom: 0;
}
.has2cols:last-child .col:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .has2cols {
    display: flex;
    margin-bottom: 48px;
  }
  .has2cols .col {
    margin-bottom: 0;
  }
  .has2cols .col:first-child {
    margin-right: 48px;
  }
  .has2cols.skew-right .col-right {
    margin-right: 48px;
  }
  .has2cols.skew-right .col-left {
    margin-right: 0;
  }
  .has2cols.skew-left .col-right {
    margin-right: 0;
  }
  .has2cols.skew-left .col-left {
    margin-right: 48px;
  }
}
@media (min-width: 1100px) {
  .has2cols .col[class*=bg-] {
    min-width: 500px;
    height: 500px;
  }
  .has2cols.skew-right .col-right {
    margin-right: 64px;
  }
  .has2cols.skew-left .col-left {
    margin-right: 64px;
  }
}
@media (min-width: 1400px) {
  .has2cols .col[class*=bg-] {
    min-width: 500px;
    height: 500px;
  }
  .has2cols.skew-right .col-right {
    margin-right: 80px;
  }
}
.has2cols .col-left .item-ico {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  .has2cols .col-left .item-ico {
    display: block;
  }
}
.has2cols .col-left .item-ico img {
  width: 60px;
  height: auto;
}
@media (min-width: 1023px) {
  .has2cols .col-left .item-ico img {
    width: 80px;
  }
}
@media (min-width: 1439px) {
  .has2cols .col-left .item-ico img {
    width: 96px;
  }
}
.has2cols .col-left .item-ico svg {
  width: 120px;
  height: auto;
}
.has2cols .col-left .item-description {
  position: relative;
  z-index: 2;
}
.has2cols .col-left .item-description .sub-title {
  font-weight: 400;
}
.has2cols .col-left .item-description .sub-title a {
  color: #45484a;
  font-weight: 500;
}
.has2cols .col-left.style-large {
  padding: 32px;
}
@media (min-width: 1023px) {
  .has2cols .col-left.style-large {
    padding: 120px 32px 160px !important;
  }
}
@media (min-width: 1439px) {
  .has2cols .col-left.style-large {
    padding: 204px 32px 204px !important;
  }
}
.has2cols.horiz-list {
  flex-wrap: wrap;
}
.has2cols.small.horiz-list {
  max-width: 700px;
}
.has2cols.medium.horiz-list {
  max-width: 1020px;
}
.has2cols.small.horiz-list, .has2cols.medium.horiz-list {
  margin: 0 auto;
}
.has2cols.small.horiz-list .col, .has2cols.medium.horiz-list .col {
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
  align-items: center;
  margin: 16px;
  max-width: calc(100% - 32px);
}
@media (min-width: 767px) {
  .has2cols.small.horiz-list .col, .has2cols.medium.horiz-list .col {
    max-width: calc(50% - 32px);
  }
}
.has2cols.small.horiz-list .icon, .has2cols.medium.horiz-list .icon {
  padding: 0 16px 0 0;
}
.has2cols.small.horiz-list p, .has2cols.medium.horiz-list p {
  font-size: 14px;
  color: #45484a;
  font-weight: 400;
}

.has3cols {
  display: flex;
  flex-wrap: wrap;
}
.has3cols .col {
  width: 100%;
  padding: 0;
  margin-bottom: 32px;
}
@media (min-width: 767px) {
  .has3cols .col {
    max-width: 33.333%;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) {
  .has3cols.ico-col .col {
    padding: 0 32px;
  }
}
.has3cols.ico-col .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
.has3cols.ico-col .col .icon img {
  width: 100%;
  max-width: 144px;
  height: auto;
}
.has3cols.ico-col .col h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0;
}
.has3cols.ico-col .col p {
  font-size: 16px;
  font-weight: 400;
  color: #45484a;
  text-align: center;
}
@media (min-width: 767px) {
  .has3cols.ico-col .col p {
    display: block;
  }
}
.has4cols {
  display: flex;
  flex-wrap: wrap;
}
.has4cols .col {
  width: 100%;
  padding: 0;
}
@media (min-width: 767px) {
  .has4cols .col {
    max-width: 25%;
  }
}
.has6cols {
  display: flex;
  flex-wrap: wrap;
}
.has6cols .col {
  width: 100%;
  max-width: 18%;
  padding: 0;
}
.banner-row {
  padding: 45px 16px 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
@media (min-width: 767px) {
  .banner-row {
    display: flex;
    padding: 110px 32px;
  }
}
.banner-row.show-all {
  display: flex;
}
.banner-row.show-all h1 {
  color: #fff;
}
@media (max-width: 767px) {
  .banner-row.show-all .restaurant-form {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .banner-row.show-all .restaurant-form button {
    margin: 20px 0 0;
  }
}
.banner-row.show-all .restaurant-form + .links {
  color: #fff;
  margin-top: 32px;
}
.banner-row h1 {
  font-size: 32px;
  color: #060B0D;
  text-align: center;
  padding: 0 0 32px;
}
@media (min-width: 767px) {
  .banner-row h1 {
    color: #fff;
    font-size: 40px;
  }
}
@media (min-width: 767px) {
  .banner-row h1 {
    font-size: 48px;
  }
}
@media (min-width: 1439px) {
  .banner-row h1 {
    font-size: 56px;
  }
}
.banner-row .row-description {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  max-width: 900px;
  text-align: center;
}
.banner-row .search-form {
  width: 100%;
  max-width: 700px;
  padding-bottom: 0;
}

.end-search.banner-row {
  overflow: visible;
}

.modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: #6DCEF5;
  display: none;
  overflow-y: scroll;
  padding: 0 16px;
}
@media (min-width: 1023px) {
  .modal {
    padding: 0;
    width: calc(100% + 15px);
  }
}
.modal.show {
  display: block;
}
.modal .container {
  margin-top: 60px;
  padding: 144px 0 0;
}
.modal .footer-nav .container {
  padding: 0;
}
.modal .footer-locations {
  background: #fff;
}
.modal .footer-locations .container {
  padding: 0;
}
.modal .form-submitted {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
  padding: 64px;
  margin: 32px 0 64px;
}
.modal .form-title {
  padding: 0;
  font-size: 40px;
  color: #060B0D;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding-bottom: 16px;
}
.modal .form-desc {
  font-size: 16px;
  font-weight: 400;
  color: #060B0D;
  text-align: center;
}
.modal .page-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24);
  margin: 32px 0;
  padding: 32px;
}
.modal .page-form h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 26px;
}
.has-page-nav {
  flex-direction: column;
}
@media (min-width: 767px) {
  .has-page-nav {
    flex-direction: row;
  }
}

.page-nav {
  width: 100%;
  max-width: 500px;
  padding: 64px 0 0;
  top: 100px;
}
@media (min-width: 767px) {
  .page-nav {
    height: 100vh;
    overflow: auto;
    position: sticky;
  }
}
.page-nav .page-nav-inner li a {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #060B0D;
  display: flex;
  margin: 0 15px 10px;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24);
  padding: 21px 32px;
  position: relative;
  align-items: center;
}
@media (min-width: 767px) {
  .page-nav .page-nav-inner li a {
    font-size: 24px;
    margin: 0 62px 32px;
  }
}
.page-nav .page-nav-inner li a .icon {
  position: absolute;
  right: 10px;
}
.page-nav .page-nav-inner li a .icon svg {
  width: 35px;
  height: auto;
}
.page-nav .page-nav-inner li .sub-nav {
  counter-reset: mdf-counter;
  padding: 0;
  height: 0;
  opacity: 0;
  transition: ease all 0.2s;
  overflow: hidden;
}
.page-nav .page-nav-inner li .sub-nav li {
  background: none !important;
}
.page-nav .page-nav-inner li .sub-nav li a, .page-nav .page-nav-inner li .sub-nav li button {
  border-radius: 0;
  box-shadow: none;
  padding: 21px;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 767px) {
  .page-nav .page-nav-inner li .sub-nav li a, .page-nav .page-nav-inner li .sub-nav li button {
    padding: 21px 62px;
    font-size: 20px;
  }
}
.page-nav .page-nav-inner li .sub-nav li a.active, .page-nav .page-nav-inner li .sub-nav li button.active {
  background: #F0FAFF;
}
.page-nav .page-nav-inner li .sub-nav li a:hover, .page-nav .page-nav-inner li .sub-nav li button:hover {
  cursor: pointer;
}
.page-nav .page-nav-inner li.active .sub-nav {
  height: auto;
  opacity: 1;
  padding-bottom: 48px;
}
.page-nav .page-nav-inner li.active .sub-nav li.active {
  background: #F0FAFF !important;
}

.page-content {
  border-left: 1px solid #F2F2F2;
}
.page-content .part {
  position: relative;
  background: #B5E6FB;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 64px;
}
.page-content .part:before, .page-content .part:after {
  background: #fff;
  height: 40px;
}
.page-content .part:before {
  transform: skew(0, 0.003turn);
  top: -30px;
}
.page-content .part:after {
  transform: skew(0, -0.003turn);
  bottom: -30px;
}
.page-content .part:first-of-type:before {
  display: none;
}
.page-content h2 {
  font-weight: 700;
  text-align: center;
}
.page-content h3 {
  padding: 0 32px 32px;
}
.page-content .introduction {
  padding: 0 0 32px;
  font-weight: 400;
  color: #060B0D;
}
.page-content ul {
  font-weight: 400;
  color: #060B0D;
  padding: 0 0 0 54px;
  padding: 0 32px 32px 64px;
}
.page-content ul li {
  margin-bottom: 32px;
  position: relative;
}
.page-content ul li:before {
  content: attr(data-ls);
  position: absolute;
  left: -34px;
  top: 0;
  font-weight: 700;
}
.page-content ul .l3 {
  padding: 32px 0 0;
}
.page-content ul .l3 li:before {
  position: relative;
  left: 0;
  padding: 0 32px 0 0;
}
.page-content ul .l4 {
  padding: 32px 0 0;
}
.page-content ul .l4 li:before {
  position: relative;
  left: 0;
  padding: 0 32px 0 0;
}

.beadcrumb {
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) {
  .beadcrumb {
    flex-direction: row;
  }
}
.beadcrumb a {
  font-size: 18px;
  color: #060B0D;
  align-items: center;
}
.beadcrumb a .icon {
  display: flex;
}
.beadcrumb .row-title {
  padding: 0;
  flex-grow: 1;
  text-align: center;
}

.v2-spacer {
  height: 163px;
  display: none;
}
@media (min-width: 318px) {
  .v2-spacer {
    height: 145px;
  }
}
@media (min-width: 356px) {
  .v2-spacer {
    height: 127px;
  }
}
@media (min-width: 391px) {
  .v2-spacer {
    height: 109px;
  }
}
@media (min-width: 677px) {
  .v2-spacer {
    height: 91px;
  }
}
@media (min-width: 900px) {
  .v2-spacer {
    height: 56px;
  }
}

.mrd-v2-banner {
  display: none;
  padding: 0.5rem;
  background: #6ECFF5;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.mrd-v2-banner .logo img {
  width: 40px;
}
.mrd-v2-banner .content {
  padding: 0 0.7rem;
  text-align: left;
  flex: 1;
  align-items: center;
}
@media (min-width: 900px) {
  .mrd-v2-banner .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.mrd-v2-banner .content div h4 {
  font-weight: 500;
  font-size: 15px;
}
.mrd-v2-banner .content div p {
  margin: 0.3rem 0;
}
@media (min-width: 900px) {
  .mrd-v2-banner {
    align-items: center;
  }
  .mrd-v2-banner .content div p {
    margin: 0;
  }
}
.mrd-v2-banner .content a {
  padding: 0.4rem 0.6rem;
  background: #ffffff;
  display: inline-flex;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.mrd-v2-banner .content a img {
  margin-left: 0.3rem;
}
.mrd-v2-banner.show ~ .v2-spacer {
  display: block;
}
.mrd-v2-banner.show ~ #main-nav {
  top: 163px;
}
@media (min-width: 318px) {
  .mrd-v2-banner.show ~ #main-nav {
    top: 145px;
  }
}
@media (min-width: 356px) {
  .mrd-v2-banner.show ~ #main-nav {
    top: 127px;
  }
}
@media (min-width: 391px) {
  .mrd-v2-banner.show ~ #main-nav {
    top: 109px;
  }
}
@media (min-width: 677px) {
  .mrd-v2-banner.show ~ #main-nav {
    top: 91px;
  }
}
@media (min-width: 900px) {
  .mrd-v2-banner.show ~ #main-nav {
    top: 56px;
  }
}

.page-header .profile-logo {
  padding: 0 0 24px;
}
.page-header .profile-logo .logo-container {
  position: absolute;
  background: #fff;
  width: 128px;
  height: 128px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  border-radius: 6px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1100px) {
  .page-header .profile-logo .logo-container {
    top: initial;
    bottom: -18px;
  }
}
.page-header .profile-logo .logo-container img {
  width: 100%;
}
.page-header .profile-tags li a {
  font-size: 14px;
  color: #8F8F8F;
  font-weight: 500;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.page-header .profile-tags li a:before {
  content: "•";
  padding: 0 8px 0 0;
}
.page-header .profile-tags li a:hover {
  text-decoration: underline;
}
.page-header .profile-tags li:first-child a {
  padding: 0 8px 0 0;
}
.page-header .profile-tags li:first-child a:before {
  display: none;
}

.seo-area-greeting-headers .greeting-header {
  background-size: cover;
}
.seo-area-greeting-headers .greeting-inner {
  background-size: 0 0;
  padding: 203px 0 32px;
}
@media (min-width: 767px) {
  .seo-area-greeting-headers .greeting-inner {
    padding: 203px 0;
    background-size: cover;
    background-position: right 0;
  }
}
@media (min-width: 1023px) {
  .seo-area-greeting-headers .greeting-inner {
    padding: 224px 0;
  }
}
@media (min-width: 1439px) {
  .seo-area-greeting-headers .greeting-inner {
    padding: 0 0;
  }
}
@media (min-width: 1919px) {
  .seo-area-greeting-headers .greeting-inner {
    padding: 0 0;
  }
}
.seo-area-greeting-headers .greeting-inner:before {
  display: none;
}
.seo-area-greeting-headers .greeting-title {
  padding: 0 33px;
  display: flex;
  align-items: center;
}
.seo-area-greeting-headers .greeting-title h2 {
  max-width: 500px;
}
.area-suburb {
  position: relative;
  overflow: hidden;
}
.area-suburb .col-left {
  position: relative;
  padding: 44px 16px;
}
@media (min-width: 1023px) {
  .area-suburb .col-left {
    padding: 89px 0;
  }
}
@media (min-width: 1439px) {
  .area-suburb .col-left {
    padding: 132px 64px 132px 32px;
  }
}
.area-suburb .col-left h3.item-title {
  color: #060B0D;
  font-size: 24px;
  padding: 0 0 36px;
}
@media (min-width: 1023px) {
  .area-suburb .col-left h3.item-title {
    font-size: 32px;
  }
}
@media (min-width: 1023px) {
  .area-suburb .col-left h3.item-title {
    font-size: 56px;
  }
}
.area-suburb ul {
  flex-wrap: wrap;
  max-width: 550px;
  margin: 0;
  padding: 0;
}
.area-suburb ul li {
  width: 100%;
  max-width: 50%;
  display: flex;
  align-items: center;
}
.area-suburb ul li:before {
  content: "•";
  position: relative;
  font-size: 45px;
  color: #6DCEF5;
  padding: 0 22px 0 0;
}
.area-suburb ul li a {
  font-size: 16px;
  color: #060B0D;
  font-weight: 500;
  text-decoration: none;
}
@media (min-width: 1439px) {
  .area-suburb ul li a {
    font-size: 24px;
  }
}
.area-suburb ul li.last-child:before {
  display: none;
}
.area-suburb ul li.last-child a {
  text-decoration: underline;
}

@media (min-width: 767px) {
  .profile-header-mb-cta {
    display: none;
  }
}
.profile-header-mb-cta.alt-profile-header .greeting-cta {
  padding: 16px;
}
.profile-header-mb-cta.alt-profile-header .greeting-cta h3 {
  padding: 0 0 10px;
}
.profile-header-mb-cta .greeting-cta {
  background: #fff;
  padding: 75px 16px 16px;
  margin: 0 16px 16px;
  border-radius: 16px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 3;
}
.profile-header-mb-cta .greeting-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #060B0D;
}
.profile-header-mb-cta .greeting-cta .btn-group a {
  width: auto;
  display: flex;
  align-items: center;
}
.profile-header-mb-cta .greeting-cta .btn-group a img {
  width: 100%;
  height: auto;
}
.profile-header-mb-cta .greeting-cta .btn-group a svg {
  width: auto;
  height: 39px;
}
.profile-header-mb-cta .greeting-footer {
  background: #6DCEF5;
  align-items: center;
  padding: 16px;
  position: relative;
}
.profile-header-mb-cta .greeting-footer:before {
  top: -100%;
}
.profile-header-mb-cta .greeting-footer .ico, .profile-header-mb-cta .greeting-footer .greeting-meta {
  position: relative;
  z-index: 2;
}
.profile-header-mb-cta .greeting-footer .greeting-meta {
  padding: 0 0 0 16px;
}
.profile-header-mb-cta .greeting-footer .greeting-meta h3 {
  font-size: 18px;
  font-weight: 700;
  color: #060B0D;
  text-align: left;
  padding: 0;
}
.profile-header-mb-cta .greeting-footer .greeting-meta h4 {
  font-size: 18px;
  font-weight: 400;
  color: #060B0D;
  text-align: left;
  padding: 0;
}

#careers_header {
  min-height: 0;
  background-size: auto 100% !important;
  background-position: center 0 !important;
}
@media (min-width: 769px) {
  #careers_header {
    background-size: cover !important;
    background-position: center !important;
  }
}
#careers_header.small-header {
  padding: 150px 0 64px;
}
@media (min-width: 1400px) {
  #careers_header.small-header {
    padding: 150px 0;
  }
}
#careers_header.small-header .search-form {
  margin-top: 20px;
}
@media (min-width: 1023px) {
  #careers_header.small-header .search-form {
    margin-top: 40px;
  }
}
#careers_header.small-header .search-form .btn.icon {
  width: 55px;
  position: absolute;
  top: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 1100px) {
  #careers_header.small-header .search-form .btn.icon {
    right: -35px;
  }
}
#careers_header.small-header .search-form .btn.icon:before {
  display: none;
}
#careers_header.small-header .search-form .btn.icon svg {
  display: block;
}
#careers_header.small-header .search-form .btn.icon svg circle, #careers_header.small-header .search-form .btn.icon svg line {
  stroke: #000;
}
#careers_header #results {
  flex-direction: column;
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 0px 0 45px;
  margin: 4px 0 0;
  box-shadow: 0 2px 9px -1px;
  display: none;
  background: #fff;
}
#careers_header #results.show {
  display: block;
}
#careers_header #results a {
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #F2F2F2;
  font-size: 16px;
  color: #060B0D;
  font-weight: 500;
  padding-bottom: 8px;
  text-decoration: none;
}

.career-skew {
  overflow: hidden;
  padding: 32px 0 0;
}
@media (min-width: 769px) {
  .career-skew {
    padding: 0;
  }
}
.career-skew .col-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 16px;
}
@media (min-width: 1100px) {
  .career-skew .col-left {
    padding: 100px 0;
  }
}
@media (min-width: 1400px) {
  .career-skew .col-left {
    padding: 150px 0;
  }
}
.career-skew .col-left:before {
  display: none;
}
@media (min-width: 769px) {
  .career-skew .col-left:before {
    display: block;
  }
}
.career-skew .col-left h1.item-title {
  font-size: 32px;
  color: #252525;
  max-width: 100%;
  padding-bottom: 16px;
}
@media (min-width: 769px) {
  .career-skew .col-left h1.item-title {
    font-size: 24px;
  }
}
@media (min-width: 1100px) {
  .career-skew .col-left h1.item-title {
    font-size: 32px;
  }
}
@media (min-width: 1400px) {
  .career-skew .col-left h1.item-title {
    font-size: 42px;
    line-height: 42px;
    padding-bottom: 32px;
  }
}
.career-skew .col-left .item-description .sub-title {
  max-width: 100% !important;
  font-size: 16px;
  font-weight: 500;
  color: #252525;
  padding-bottom: 16px;
  text-align: center;
  display: block;
}
@media (min-width: 769px) {
  .career-skew .col-left .item-description .sub-title {
    font-size: 14px;
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .career-skew .col-left .item-description .sub-title {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .career-skew .col-left .item-description .sub-title {
    font-size: 24px;
  }
}
.career-skew .col-left .btn-group {
  flex-direction: column;
}
@media (min-width: 1100px) {
  .career-skew .col-left .btn-group {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .career-skew .col-left .btn-group {
    justify-content: flex-start;
  }
}
.career-skew .col-left .btn-group a {
  margin: 0 0 16px 0 !important;
}
@media (min-width: 1100px) {
  .career-skew .col-left .btn-group a {
    padding: 16px 25px !important;
    margin: 0 16px 0 0 !important;
  }
}
@media (min-width: 1400px) {
  .career-skew .col-left .btn-group a {
    margin: 0 16px 0 0 !important;
  }
}
.career-skew .col-right {
  width: 100%;
  min-height: 440px;
  order: 2;
}
@media (min-width: 769px) {
  .career-skew .col-right {
    order: 1;
  }
}

.careers-carousel {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.careers-carousel h1 {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 520px) {
  .careers-carousel h1 {
    min-height: 300px;
  }
}
@media (min-width: 600px) {
  .careers-carousel h1 {
    min-height: 335px;
  }
}
@media (min-width: 660px) {
  .careers-carousel h1 {
    min-height: 365px;
  }
}
@media (min-width: 710px) {
  .careers-carousel h1 {
    min-height: 390px;
  }
}
@media (min-width: 769px) {
  .careers-carousel h1 {
    min-height: unset;
  }
}
.careers-carousel .career-team-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.careers-carousel .career-team-bg .item {
  width: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-bg .item {
    background-size: cover;
  }
}
.careers-carousel .career-team-bg .item:after {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-bg .item:after {
    content: "";
  }
}
.careers-carousel .career-team-desc-main {
  position: relative;
  float: left;
  width: 100%;
  margin-top: auto;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  .careers-carousel .career-team-desc-main {
    margin-top: 200px;
  }
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main .item {
    padding: 0 20px;
  }
}
.careers-carousel .career-team-desc-main .item-inner {
  border-radius: 8px;
  padding: 32px 16px 32px;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main .item-inner {
    background: rgba(0, 0, 0, 0.6);
  }
}
.careers-carousel .career-team-desc-main .item-inner h2 {
  text-align: center;
  font-size: 32px;
  color: #252525;
  padding-bottom: 32px;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main .item-inner h2 {
    color: #fff;
  }
}
.careers-carousel .career-team-desc-main .item-inner p {
  text-align: center;
  font-size: 16px;
  color: #252525;
  font-weight: 400;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main .item-inner p {
    color: #fff;
  }
}
@media (min-width: 1400px) {
  .careers-carousel .career-team-desc-main .item-inner p {
    font-size: 24px;
  }
}
.careers-carousel .career-team-desc-main .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 32px 0;
}
@media (min-width: 769px) {
  .careers-carousel .career-team-desc-main .slick-dots {
    padding: 32px 0 32px 0;
  }
}
.careers-carousel .career-team-desc-main .slick-dots li button {
  width: 37px;
  height: 13px;
  border-radius: 6px;
  background: #6DCFF6;
  border: none;
  text-indent: -99999px;
  margin: 0 8px;
}
.careers-carousel .career-team-desc-main .slick-dots li.slick-active button {
  background: #32A5D3;
}

.careers-perks .row-title {
  color: #252525;
}
.careers-perks .container {
  display: flex;
  flex-wrap: wrap;
}
.careers-perks .container .col {
  padding: 0 32px 64px;
  width: 100%;
}
@media (min-width: 769px) {
  .careers-perks .container .col {
    max-width: 50%;
  }
}
@media (min-width: 1100px) {
  .careers-perks .container .col {
    max-width: 33%;
  }
}
.careers-perks .container .col:nth-of-type(1) {
  margin-right: unset;
}
.careers-perks .container .col .col-ico {
  text-align: center;
  padding: 0 0 15px;
}
.careers-perks .container .col h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 16px;
}
.careers-perks .container .col .col-desc {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  max-width: 420px;
  display: none;
}
@media (min-width: 769px) {
  .careers-perks .container .col .col-desc {
    display: block;
    margin: 0 auto;
  }
}
.careers-perks .linkedin-badge {
  width: 100px;
  margin: auto;
}

.careers-vacancies h1 {
  position: relative;
  color: #252525;
  overflow: hidden;
  background: #AAD2F0;
}
.careers-vacancies h1:before {
  background: #fff !important;
  transform: skew(0, 0.003turn);
  height: 80px;
  top: -60px;
}
.careers-vacancies h1:after {
  background: #fff !important;
  transform: skew(0, -0.004turn);
  height: 80px;
  bottom: -60px;
}
.careers-vacancies h1 span {
  position: relative;
  z-index: 4;
}
.careers-vacancies .positions {
  padding: 32px 0;
}
.careers-vacancies .positions h2 {
  font-size: 24px;
  font-weight: 500;
  padding: 16px;
}
.careers-vacancies .positions ul {
  border-bottom: 1px solid #ffffff;
}
.careers-vacancies .positions ul li {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  border-top: 1px solid #ffffff;
}
.careers-vacancies .positions ul li a {
  text-decoration: none;
}
.careers-vacancies .positions ul li .pos-title {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 5px;
  color: #252525;
}
.careers-vacancies .positions ul li .pos-loc {
  font-size: 14px;
  font-weight: 400;
  color: #6DCFF6;
}

.careers-techstack {
  background: #ffffff;
  padding-bottom: 32px;
}
.careers-techstack .has2cols {
  display: flex;
  flex-direction: column;
  align-items: unset;
}
@media (min-width: 769px) {
  .careers-techstack .has2cols {
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .careers-techstack .has2cols {
    flex-direction: row;
  }
}
.careers-techstack .has2cols > .col {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24);
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.careers-techstack .has2cols > .col:nth-of-type(1) {
  margin-right: unset;
}
@media (min-width: 769px) {
  .careers-techstack .has2cols > .col {
    margin-bottom: 40px;
  }
}
@media (min-width: 1100px) {
  .careers-techstack .has2cols > .col {
    max-width: calc(50% - 32px);
    margin: 0 1em;
    padding: 32px 25px 0;
  }
  .careers-techstack .has2cols > .col:nth-of-type(1) {
    margin-right: 1em;
  }
}
.careers-techstack .has2cols > .col .col-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 32px;
}
.careers-techstack .tech-list {
  width: 100%;
  flex-grow: 1;
  align-content: space-between;
  justify-content: space-between;
}
.careers-techstack .tech-list .tech {
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media (min-width: 769px) {
  .careers-techstack .tech-list .tech {
    width: 33%;
  }
}
.careers-techstack .tech-list .tech:nth-of-type(1) {
  margin-right: unset;
}
.careers-techstack .tech-list .tech .tech-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}
.careers-techstack .tech-list .tech .tech-ico img {
  width: 100%;
  max-width: 55px;
  height: auto;
}
.careers-techstack .tech-list .tech h5 {
  font-size: 19px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin-top: auto;
}
@media (min-width: 1100px) {
  .careers-techstack .tech-list .tech h5 {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .partner-hero-container .wrapper {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

.restaurant-page-header {
  margin-top: 60px;
}
.restaurant-page-header .col-right {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
}
.restaurant-page-header .col-left {
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  padding: 180px 16px !important;
}
@media (min-width: 767px) {
  .restaurant-page-header .col-left {
    max-width: 60%;
    background: none;
  }
}
.restaurant-page-header .col-left:before {
  display: none;
}
@media (min-width: 767px) {
  .restaurant-page-header .col-left:before {
    right: 120px;
    display: block;
    transform-origin: 100%;
    right: 0;
  }
}
@media (max-width: 1439px) {
  .restaurant-page-header .item-title {
    font-size: 32px !important;
  }
}
.restaurant-page-header .sub-title {
  font-size: 24px !important;
  color: #060B0D;
  max-width: 80% !important;
}
@media (min-width: 767px) {
  .restaurant-page-header .sub-title {
    font-size: 16px !important;
  }
}
@media (min-width: 1023px) {
  .restaurant-page-header .sub-title {
    font-size: 24px !important;
  }
}
.restaurant-page-header .restaurant-form {
  display: none;
  margin-bottom: 32px;
}
@media (min-width: 767px) {
  .restaurant-page-header .restaurant-form {
    min-width: 750px;
    display: flex;
  }
}
@media (min-width: 1023px) {
  .restaurant-page-header .restaurant-form input {
    width: 70%;
  }
}
@media (min-width: 1023px) {
  .restaurant-page-header .restaurant-form button {
    max-width: 30%;
    padding: 16px 40px !important;
  }
}
.restaurant-page-header .hide-terms {
  display: none;
}
@media (min-width: 767px) {
  .restaurant-page-header .hide-terms {
    display: inline-block;
  }
}

.restaurant-benefits-mini {
  position: relative;
}
.restaurant-benefits-mini:before {
  background: #fff;
  transform: skew(0, -0.01turn);
  top: -15px;
  z-index: 5;
}
@media (min-width: 767px) {
  .restaurant-benefits-mini:before {
    transform: skew(0, -0.003turn);
  }
}
@media (min-width: 767px) {
  .restaurant-benefits-mini .has3cols .col {
    max-width: 33.333%;
  }
}

.restaurant-benefits {
  overflow-x: hidden;
  padding-bottom: 64px;
  position: relative;
}
@media (min-width: 767px) {
  .restaurant-benefits {
    background: #F0FAFF;
  }
}
.restaurant-benefits:before {
  background: #F0FAFF;
  top: -18px;
  transform: skew(0, -0.008turn);
  height: 40px;
}
@media (min-width: 767px) {
  .restaurant-benefits:before {
    transform: skew(0, 0.003turn);
  }
}
.restaurant-benefits:after {
  background: #F0FAFF;
  bottom: -18px;
  transform: skew(0, -0.003turn);
  display: none;
}
@media (min-width: 767px) {
  .restaurant-benefits:after {
    display: block;
  }
}
.restaurant-benefits .has4cols {
  justify-content: center;
}
.restaurant-benefits .col {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  margin: 0 33px 16px;
  padding: 14px 16px 18px;
}
@media (min-width: 767px) {
  .restaurant-benefits .col {
    margin: 0 16px 32px;
    max-width: calc(50% - 66px);
  }
}
@media (min-width: 1023px) {
  .restaurant-benefits .col {
    margin: 0 16px 32px;
    max-width: calc(33.33% - 66px);
  }
}
@media (min-width: 1919px) {
  .restaurant-benefits .col {
    max-width: calc(25% - 16px);
  }
}
.restaurant-benefits .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
.restaurant-benefits .icon img {
  width: 100%;
  max-width: 144px;
  height: auto;
}
.restaurant-benefits h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.restaurant-benefits p {
  font-size: 14px;
  font-weight: 400;
  color: #45484a;
  text-align: center;
  display: none;
}
@media (min-width: 767px) {
  .restaurant-benefits p {
    display: block;
  }
}

.partner-testimonials .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.partner-testimonials .item-inner {
  flex-direction: column;
}
.partner-testimonials .item-inner .col {
  padding: 0;
}
.partner-testimonials .item-inner .col-left {
  left: 0;
  top: 0;
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
@media (min-width: 1023px) {
  .partner-testimonials .item-inner .col-left {
    position: absolute;
    min-height: 480px;
    max-width: 50%;
  }
}
.partner-testimonials .item-inner .col-left:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 120%;
  height: 80px;
  top: -30px;
  right: 0px;
  transform: skew(0, -0.01turn);
  z-index: 1;
}
@media (min-width: 767px) {
  .partner-testimonials .item-inner .col-left:before {
    background: #F0FAFF;
  }
}
@media (min-width: 1439px) {
  .partner-testimonials .item-inner .col-left:before {
    display: none;
  }
}
.partner-testimonials .item-inner .col-left:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 120%;
  height: 80px;
  bottom: -30px;
  right: 0px;
  transform: skew(0, 0.01turn);
  z-index: 1;
}
@media (min-width: 1439px) {
  .partner-testimonials .item-inner .col-left:after {
    display: none;
  }
}
.partner-testimonials .item-inner .col-right {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 100%;
}
@media (min-width: 767px) {
  .partner-testimonials .item-inner .col-right {
    max-width: 80%;
  }
}
@media (min-width: 1023px) {
  .partner-testimonials .item-inner .col-right {
    margin-left: auto;
    margin-right: 0;
    padding: 250px 64px;
    max-width: 50%;
  }
}
@media (min-width: 1439px) {
  .partner-testimonials .item-inner .col-right {
    padding: 250px 142px;
  }
}
.partner-testimonials .item-inner .col-right .description {
  font-size: 14px;
  font-weight: 400;
  color: #45484a;
}
@media (min-width: 767px) {
  .partner-testimonials .item-inner .col-right .description {
    font-size: 16px;
  }
}
.partner-testimonials .item-inner .col-right .partner-details {
  align-items: center;
  padding: 32px 0 0;
}
.partner-testimonials .item-inner .col-right .partner-details .logo {
  padding: 0 13px 0 0;
}
.partner-testimonials .item-inner .col-right .partner-details .logo img {
  width: 100%;
  max-width: 44px;
  height: auto;
}
.partner-testimonials .item-inner .col-right .partner-details h6 {
  font-size: 16px;
  color: #060B0D;
  font-weight: 700;
}
.partner-testimonials .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50%;
  right: 0;
  margin: 0 auto;
  position: relative;
  padding: 32px 0;
}
@media (min-width: 1023px) {
  .partner-testimonials .slick-dots {
    bottom: 64px;
    position: absolute;
  }
}
.partner-testimonials .slick-dots li button {
  width: 25px;
  height: 9px;
  border-radius: 6px;
  background: #B5E6FB;
  border: none;
  text-indent: -99999px;
  margin: 0 8px;
}
.partner-testimonials .slick-dots li.slick-active button {
  background: #23a5ee;
}

.partner-list {
  padding: 35px 0 0;
  overflow: hidden;
}
.partner-list:before {
  height: 70px;
  transform: skew(0, 0.003turn);
  top: -3px;
}
@media (min-width: 767px) {
  .partner-list:before {
    height: 100px;
  }
}
.partner-list:after {
  transform: skew(0, -0.001turn);
  top: 45px;
  height: 40px;
  background: #fff !important;
}
@media (min-width: 767px) {
  .partner-list:after {
    height: 100px;
    top: 76px;
  }
}
.partner-list .row-title {
  text-shadow: none;
  padding: 30px 16px;
}
.partner-list ::-webkit-scrollbar {
  display: none;
}
.partner-list .partner-list-main-outer {
  position: relative;
  width: 100%;
  overflow: auto;
}
.partner-list .partner-list-main {
  flex-wrap: wrap;
  padding: 40px 16px 60px 16px;
}
.partner-list .partner-list-main a {
  padding: 16px;
}
.partner-list .partner-list-main a img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.driver-header {
  position: relative;
  z-index: 1;
}
.driver-header .col-right {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
}
@media (min-width: 767px) {
  .driver-header .col-left {
    max-width: 60%;
    background: none;
  }
}
.driver-header .col-left:before {
  display: none;
}
@media (min-width: 769px) {
  .driver-header .col-left:before {
    right: 120px;
    display: block;
    transform-origin: 100%;
    right: 0;
  }
}
.driver-header .item-title {
  color: red;
}
@media (min-width: 1400px) {
  .driver-header .item-title {
    font-size: 32px !important;
  }
}
.driver-header .sub-title {
  font-size: 24px !important;
  color: #252525;
  max-width: 80% !important;
}
@media (min-width: 769px) {
  .driver-header .sub-title {
    font-size: 16px !important;
  }
}
@media (min-width: 1100px) {
  .driver-header .sub-title {
    font-size: 24px !important;
  }
}
.driver-header .restaurant-form {
  justify-content: center;
}
.driver-header .restaurant-form .btn {
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .driver-header .restaurant-form {
    justify-content: flex-start;
  }
}

.links a {
  color: inherit;
  text-decoration: underline;
}
.links a:hover {
  text-decoration: none;
}

.why-deliver {
  background: #ffffff;
  padding-bottom: 71px;
}
.why-deliver:before {
  background: #ffffff;
  transform: skew(0, -0.03turn);
  top: -50px;
}
@media (min-width: 769px) {
  .why-deliver:before {
    transform: skew(0, -0.01turn);
  }
}
.why-deliver .square .col {
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 16px;
  padding: 32px;
}
@media (min-width: 769px) {
  .why-deliver .square .col {
    max-width: calc(33.333% - 32px);
  }
}
.why-deliver .square .col .icon {
  padding-bottom: 30px;
}
.why-deliver .square .col h3 {
  padding-bottom: 0;
  font-size: 20px;
}

.driver-testimonials-main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 250px 0 0;
}
@media (min-width: 1400px) {
  .driver-testimonials-main {
    padding: 450px 0 0;
  }
}
.driver-testimonials-main .testimonial-outer {
  position: relative;
  float: left;
  width: 100%;
  margin-top: auto;
}
.driver-testimonials-main .testimonial-outer .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 70px;
}
.driver-testimonials-main .testimonial-outer .slick-dots li {
  margin: 0 8px;
}
.driver-testimonials-main .testimonial-outer .slick-dots li button {
  background: #AAD2F0;
  text-indent: -9999px;
  border: none;
  width: 8px;
  height: 11px;
  border-radius: 100%;
}
@media (min-width: 769px) {
  .driver-testimonials-main .testimonial-outer .slick-dots li button {
    width: 16px;
    height: 16px;
  }
}
.driver-testimonials-main .testimonial-outer .slick-dots li.slick-active button {
  background: #32A5D3;
}
.driver-testimonials-main .slick-slide {
  position: relative;
  padding: 20px 0 0;
}
.driver-testimonials-main .slick-slide:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 40px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #fff;
}
.driver-testimonials-main .testimonial {
  background: #fff;
  padding: 40px 32px 35px;
  margin: 0 16px;
  max-width: calc(100% - 32px);
  border-radius: 8px;
  position: relative;
}
.driver-testimonials-main .testimonial .testimonial-desc {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  min-height: 100px;
}
.driver-testimonials-main .testimonial .testimonial-by {
  font-size: 24px;
  font-weight: 700;
  color: #252525;
}

.driver-payment h5 {
  font-weight: 400;
}

@media (max-width: 767px) {
  #about_header .col-left {
    padding: 177px 0 0 !important;
  }
}
@media (min-width: 767px) {
  #about_header .col-left {
    padding: 177px 32px 64px;
  }
}
#about_header .item-description {
  display: none;
}
@media (min-width: 767px) {
  #about_header .item-description {
    display: block;
  }
}
@media (min-width: 767px) {
  #about_header .item-description .btn-group a {
    padding: 16px 28px;
  }
}
@media (min-width: 1023px) {
  #about_header .item-description .btn-group a {
    padding: 16px 50px;
  }
}
#about_header .profile-header-mb-cta {
  overflow: hidden;
  padding-bottom: 100px;
}
#about_header .greeting-cta {
  padding-top: 32px;
}
#about_header .greeting-meta {
  width: 100%;
  padding: 0;
}
#about_header .greeting-footer:before {
  top: -150px !important;
  height: 400px;
}

.who-we-are {
  overflow: hidden;
}
.who-we-are.has2cols .col-left h1 {
  color: #060B0D;
  padding: 30px 0;
}
.who-we-are.has2cols .col-left .item-description.full-col .sub-title {
  display: block;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}
@media (min-width: 1023px) {
  .who-we-are.has2cols .col-left .item-description.full-col .sub-title {
    font-size: 30px;
  }
}
.who-we-are.has2cols .col-right {
  position: relative;
  min-height: 320px;
  order: 2;
}
@media (min-width: 767px) {
  .who-we-are.has2cols .col-right {
    order: 1;
  }
}

.timeline {
  justify-content: center;
  padding: 0 16px 48px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 767px) {
  .timeline {
    padding: 0 0 48px;
    align-items: unset;
    flex-direction: row;
  }
}
.timeline .timeline-item {
  margin: 22px;
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}
@media (min-width: 767px) {
  .timeline .timeline-item {
    max-width: 20%;
    min-height: 250px;
    flex-direction: column;
  }
}
.timeline .timeline-item .time-title {
  text-align: center;
  background: #B5E6FB;
  padding: 23px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  order: 2;
  width: 100%;
  max-width: 60%;
}
@media (min-width: 767px) {
  .timeline .timeline-item .time-title {
    order: 1;
    max-width: 100%;
  }
}
.timeline .timeline-item .time-title h3 {
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 10px;
}
@media (min-width: 767px) {
  .timeline .timeline-item .time-title h3 {
    font-size: 24px;
  }
}
.timeline .timeline-item .time-title h6 {
  font-size: 23px;
  font-weight: 500;
}
@media (min-width: 767px) {
  .timeline .timeline-item .time-title h6 {
    font-size: 14px;
  }
}
.timeline .timeline-item .time-icon {
  text-align: center;
  width: 100%;
  max-width: 40%;
}
@media (min-width: 767px) {
  .timeline .timeline-item .time-icon {
    order: 2;
    max-width: 100%;
    padding-top: 20px;
  }
}
.timeline .timeline-item .time-icon img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0 16px;
  max-width: 120px;
}
.timeline .timeline-item .dots {
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 18%;
  bottom: -15%;
  flex-direction: column;
}
@media (min-width: 767px) {
  .timeline .timeline-item .dots {
    flex-direction: row;
    right: -52%;
    left: auto;
    bottom: 40px;
  }
}
@media (min-width: 1023px) {
  .timeline .timeline-item .dots {
    right: -38%;
  }
}
.timeline .timeline-item .dots .dot {
  height: 20px;
  border-radius: 5px;
  width: 4px;
  background: #060B0D;
  margin: 0 8px 6px;
}
@media (min-width: 767px) {
  .timeline .timeline-item .dots .dot {
    width: 12px;
    height: 4px;
  }
}

.about-grow .horiz-list p {
  font-size: 16px !important;
  color: #060B0D !important;
  font-weight: 500 !important;
}
@media (min-width: 1023px) {
  .about-grow .horiz-list p {
    font-size: 25px !important;
  }
}
.about-grow .horiz-list p span {
  font-size: 20px;
  color: #6DCEF5;
  font-weight: 700;
}
@media (min-width: 1023px) {
  .about-grow .horiz-list p span {
    font-size: 32px;
  }
}

.about {
  margin-top: -32px;
  overflow: hidden;
}
.about.skew-row .item-title {
  padding: 30px 0;
  color: #060B0D;
}
.about.skew-row.skew-left .col-left:before {
  width: 130%;
}
.about.skew-row.skew-right .col-left:before {
  width: 130%;
}
@media (max-width: 767px) {
  .about.skew-row .col-left {
    order: 2;
  }
  .about.skew-row .col-left:before {
    transform: skew(0, -0.01turn);
    left: 0;
    top: -15px;
  }
}
.about.skew-row .col-left .item-description.full-col .sub-title {
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-align: left;
}
@media (min-width: 1023px) {
  .about.skew-row .col-left .item-description.full-col .sub-title {
    font-size: 30px;
  }
}
.about.skew-row .col-left .item-description.full-col .btn-group {
  padding: 48px 16px 16px 0;
}
.about.skew-row .col-right {
  position: relative;
  min-height: 320px;
}
@media (max-width: 767px) {
  .about.skew-row .col-right {
    order: 1;
  }
}
.inquiry {
  padding: 0 16px 34px;
}
.inquiry p {
  font-size: 20px;
  font-weight: 500;
  color: #060B0D;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 767px) {
  .inquiry p {
    font-size: 32px;
  }
}
.inquiry a {
  font-size: 20px;
  font-weight: 500;
  color: #6DCEF5;
  text-decoration: none;
}
@media (min-width: 767px) {
  .inquiry a {
    font-size: 32px;
  }
}

.contact-header {
  padding: 240px 0 150px;
  min-height: 0;
}
@media (min-width: 1023px) {
  .contact-header {
    padding: 240px 0 250px;
  }
}
.contact-header .header-subtitle {
  display: block;
  font-size: 24px;
}

.contact-reasons {
  background: #6DCEF5;
  position: relative;
  z-index: 6;
}
.contact-reasons .container.mini {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
  padding: 32px;
  margin: 0 16px;
  max-width: calc(100% - 32px);
  margin-top: -30px;
}
@media (min-width: 1023px) {
  .contact-reasons .container.mini {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (min-width: 1439px) {
  .contact-reasons .container.mini {
    margin: -100px auto 0;
  }
}
.contact-reasons .step-header {
  padding-bottom: 32px;
}
.contact-reasons .step-header a {
  font-size: 18px;
  color: #060B0D;
  font-weight: 400;
}
.contact-reasons .step-header a:before {
  content: "";
  border-left: 2px solid #060B0D;
  border-bottom: 2px solid #060B0D;
  width: 14px;
  height: 14px;
  position: relative;
  float: left;
  transform: rotate(45deg);
  top: 4px;
  margin: 0 8px 0 0;
}
.contact-reasons .step h4 {
  color: #8F8F8F;
  text-align: center;
  font-weight: 400;
}
.contact-reasons .step .contact-reason-list li {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24);
  margin: 0 0 16px;
}
.contact-reasons .step .contact-reason-list a {
  color: #060B0D;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  padding: 14px;
  width: 100%;
}

a, a:visited {
  color: inherit;
}

.terms {
  width: 100%;
}

.newTerms {
  width: 100%;
}
.newTerms a {
  color: #6DCEF5;
}
.newTerms a:hover {
  text-decoration: none;
}
.newTerms h1, .newTerms h2, .newTerms h3, .newTerms h4, .newTerms h5, .newTerms h6, .newTerms ul, .newTerms p {
  text-align: left;
  line-height: 1.3em;
  max-width: 720px;
  padding: 0;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .newTerms h1, .newTerms h2, .newTerms h3, .newTerms h4, .newTerms h5, .newTerms h6, .newTerms ul, .newTerms p {
    margin-bottom: 48px;
  }
}
.newTerms h6, .newTerms ul, .newTerms p {
  line-height: 1.6em;
}
.newTerms ul {
  padding: 0;
}
.newTerms ul li {
  margin-left: 54px;
}
.newTerms ul li:last-child {
  padding-bottom: 0;
}
.newTerms ul li:before {
  content: "";
  display: inline;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #252525;
  vertical-align: middle;
}

.help-main-landing {
  background: #F0FAFF;
  padding-bottom: 64px;
}
.help-main-landing .help-main {
  max-width: 720px !important;
}
.help-main-landing .help-main .col {
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 32px !important;
}
.help-main-landing .help-main .icon {
  padding: 0 0 32px !important;
}
.help-main-landing .help-main span {
  text-align: center;
  font-size: 20px;
  color: #060B0D;
  font-weight: 700;
}

.help-order-main {
  padding-bottom: 64px;
}
.help-order-main #loading, .help-order-main #nonFound {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24);
  padding: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #060B0D;
  margin-bottom: 16px;
}
.help-order-main .help-main-order .card-header {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.help-order-main .help-main-order .card-header h4 {
  font-size: 16px;
  line-height: 20px;
  color: #060B0D;
  font-weight: 500;
  max-width: 70%;
}
.help-order-main .help-main-order .card-header span {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  background: #6DCEF5;
  border-radius: 4px;
  background: #6DCEF5;
  padding: 4px;
}
.help-order-main .help-main-order .card-row span {
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  padding: 0 0 8px;
}
.help-order-main .help-main-order .card-row span:first-child {
  min-width: 75px;
  font-weight: 400;
}

.page-nav .page-nav-inner li a {
  font-size: 16px;
  font-weight: 400;
  margin: 0 62px 32px;
}

.faq-list li {
  flex-direction: column;
}
.faq-list li a {
  font-size: 16px;
  font-weight: 400;
  margin: 0 62px 32px;
}
.faq-list li ul li a {
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 0 !important;
}
.faq-list .sub-nav .tabs__li.active {
  background: #f0faff !important;
}

.faq.page-content {
  width: 100%;
}
.faq.page-content h1 {
  font-size: 32px;
  padding-bottom: 24px;
}
.faq.page-content .article-body {
  padding: 60px 20px 0;
  word-break: break-word;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .faq.page-content .article-body {
    padding: 10px 64px;
  }
}
.faq.page-content .tab-pane {
  padding-top: 220px;
  margin-top: -220px;
  display: none;
}
.faq.page-content .tab-pane:target {
  display: block;
}
.faq.page-content p {
  font-size: 1rem;
  line-height: 1.3em;
  font-weight: 400;
  padding-bottom: 10px;
}
.faq.page-content p:empty {
  display: none;
}
.faq.page-content a {
  color: #6DCEF5;
  font-weight: 700;
}

.error-main {
  background: #6DCEF5;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px 0;
}
.error-main h1 {
  padding-bottom: 32px;
}
.error-main p {
  font-size: 24px;
  font-weight: 500;
  color: #060B0D;
  text-align: center;
}
.error-main .btn {
  padding: 17px 50px;
}

.seo-area-header .header-profile {
  display: none;
  z-index: 9;
}
@media (min-width: 767px) {
  .seo-area-header .header-profile {
    display: block;
    margin-top: -129px !important;
    top: 0;
  }
}

.seo-area-page .restaurant-search {
  display: none;
}
@media (min-width: 767px) {
  .seo-area-page .restaurant-inverted {
    margin: 182px 0 0;
  }
}
@media (min-width: 1439px) {
  .seo-area-page .restaurant-inverted {
    margin: 0;
  }
}
@media (min-width: 767px) {
  .seo-area-page .restaurant-options {
    margin: 182px 0 0;
  }
}
@media (min-width: 1439px) {
  .seo-area-page .restaurant-options {
    margin: 0;
  }
}
.seo-area-page .restaurant-options:before {
  display: none;
}
.seo-area-page .restaurant-options .sub-title {
  font-size: 20px !important;
}
.seo-area-page .end-search {
  display: flex;
  background-size: 0 0;
}
@media (min-width: 767px) {
  .seo-area-page .end-search {
    background-size: cover;
  }
}

.restaurant-menu {
  margin-top: 60px;
}
.restaurant-menu .header-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.restaurant-menu .title-bar {
  display: flex;
  padding: 10px 20px;
}
.restaurant-menu .title-bar img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.restaurant-menu .title-bar .title-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.restaurant-menu .title-bar .title-col .name {
  font-size: 16px;
  font-weight: 700;
}
.restaurant-menu .tabs {
  display: flex;
  margin: 10px 20px 0 20px;
  border-radius: 6px;
  overflow: hidden;
}
.restaurant-menu .tabs button {
  flex-grow: 1;
  flex-basis: 0;
  padding: 16px;
  color: black;
  background-color: #eeeeee;
  border-style: none;
}
.restaurant-menu .tabs button.active {
  color: white;
  background-color: rgb(109, 206, 245);
}
.restaurant-menu .shadow {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.0588235294);
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.0588235294);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0588235294);
}
.restaurant-menu .content.content-menu {
  padding: 20px 20px 0 20px;
  column-fill: balance;
  column-count: 1;
  column-gap: 20px;
}
.restaurant-menu .content.content-menu .menu-section {
  border: solid 1px #F2F2F2;
  border-radius: 4px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.restaurant-menu .content.content-menu .menu-section .section-name {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.restaurant-menu .content.content-menu .menu-section .menu-item {
  cursor: pointer;
  border-top: solid 1px #F2F2F2;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: 0.3s;
}
.restaurant-menu .content.content-menu .menu-section .menu-item:hover {
  background-color: rgba(109, 206, 245, 0.1);
}
.restaurant-menu .content.content-menu .menu-section .menu-item .left .item-name {
  font-weight: 500;
}
.restaurant-menu .content.content-menu .menu-section .menu-item .left .item-description {
  font-size: 0.8em;
  white-space: break-spaces;
  word-wrap: anywhere;
}
.restaurant-menu .content.content-menu .menu-section .menu-item .right {
  align-self: flex-end;
}
.restaurant-menu .content.content-menu .menu-section .menu-item .right .item-from {
  font-size: 0.8em;
  text-align: right;
}
@media (min-width: 767px) {
  .restaurant-menu .content.content-menu {
    column-count: 2;
  }
}
@media (min-width: 1439px) {
  .restaurant-menu .content.content-menu {
    column-count: 3;
  }
}
.restaurant-menu .content.content-rating {
  border-radius: 8px;
  max-width: inherit;
  border: solid 2px #F2F2F2;
  margin: 20px 20px;
}
.restaurant-menu .content.content-rating .top {
  padding-top: 10px;
  margin: 10px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.restaurant-menu .content.content-rating .top .rating-type {
  width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 10px 0 20px;
}
.restaurant-menu .content.content-rating .top .rating-type.left {
  border-right: solid 1px #F2F2F2;
}
.restaurant-menu .content.content-rating .top .rating-type.right {
  border-left: solid 1px #F2F2F2;
}
.restaurant-menu .content.content-rating .top .rating {
  padding: 16px 0 10px 0;
  font-size: 2em;
  font-weight: 700;
}
.restaurant-menu .content.content-rating .top .rating.food {
  color: #045e07;
}
.restaurant-menu .content.content-rating .top .rating.delivery {
  color: #77bf44;
}
.restaurant-menu .content.content-rating .top .rating img {
  display: inline;
  padding-right: 10px;
}
.restaurant-menu .content.content-rating .ratings-count {
  padding: 10px 0;
  text-align: center;
}
.restaurant-menu .content.content-rating .customer-ratings-heading {
  padding: 10px 0;
  background-color: #f2f2f2;
  text-align: center;
}
.restaurant-menu .content.content-rating .customer-rating {
  border-bottom: solid 5px #f2f2f2;
}
.restaurant-menu .content.content-rating .customer-rating .customer {
  display: flex;
  flex-direction: row;
  padding: 14px 20px;
}
.restaurant-menu .content.content-rating .customer-rating .customer .name {
  flex-grow: 1;
}
.restaurant-menu .content.content-rating .customer-rating .customer .date {
  padding: 1px 6px;
}
.restaurant-menu .content.content-rating .customer-rating .customer .type {
  border-radius: 4px;
  color: white;
  font-size: 0.8em;
  padding: 3px;
}
.restaurant-menu .content.content-rating .customer-rating .customer .type.collect {
  background-color: #f393bd;
}
.restaurant-menu .content.content-rating .customer-rating .customer .type.delivery {
  background-color: #6dcef5;
}
.restaurant-menu .content.content-rating .customer-rating .rating {
  display: flex;
  flex-direction: row;
  border-top: solid 1px #f2f2f2;
  padding: 8px 16px;
}
.restaurant-menu .content.content-rating .customer-rating .rating .bull-name {
  flex-grow: 1;
  padding: 4px 16px;
}
@media (min-width: 767px) {
  .restaurant-menu .content.content-rating {
    max-width: 727px;
    margin: 20px auto;
  }
}
.restaurant-menu .content.content-info {
  border-radius: 8px;
  max-width: inherit;
  border: solid 2px #F2F2F2;
  margin: 20px 20px;
  padding: 20px;
}
.restaurant-menu .content.content-info .map {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center center;
  background-color: #aaa;
  border-radius: 6px;
}

.modal.modal-location {
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.modal.modal-location .view {
  background-color: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}
.modal.modal-location .view .prompt {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 0 20px 20px 20px;
}
.modal.modal-location .view .search-input {
  position: relative;
}
.modal.modal-location .view .search-input .loc-ico {
  position: absolute;
  top: 20px;
  left: 15px;
}
.modal.modal-location .view .search-input input {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  border: 1px solid #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  padding: 21px 64px 21px 50px;
}
.modal.modal-location .view .search-input .btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #FAA902;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 0px 8px 8px 0px;
}
.modal.modal-location .view .search-input #searchResultMenu_primary {
  flex-direction: column;
  position: absolute;
  z-index: 9;
  width: 100%;
  max-width: calc(100% - 64px);
  padding: 0px 0 45px;
  display: none;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
  background: #fff;
}
.modal.modal-location .view .search-input #searchResultMenu_primary:after {
  content: "powered by";
  font-size: 12px;
  color: #060B0D;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/images/google.png);
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: 75px center;
  padding: 0 80px 0 0;
  height: 45px;
}
.modal.modal-location .view .search-input #searchResultMenu_primary.show {
  display: flex;
}
.modal.modal-location .view .search-input #searchResultMenu_primary .not-found {
  background: #ec1c24;
  position: absolute;
  width: 100%;
  height: 150%;
  z-index: 9;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.modal.modal-location .view .search-input #searchResultMenu_primary a {
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #F2F2F2;
}
.modal.modal-location .view .search-input #searchResultMenu_primary a.active {
  background: #F2F2F2;
}
.modal.modal-location .view .search-input #searchResultMenu_primary a .start {
  font-size: 16px;
  color: #060B0D;
  font-weight: 500;
  padding-bottom: 8px;
}
.modal.modal-location .view .search-input #searchResultMenu_primary a .end {
  font-size: 16px;
  color: #8F8F8F;
  font-weight: 400;
}
.modal.modal-location .view .saved-addresses {
  bottom: 20px;
  margin: 0 33px;
  font-weight: 500;
}
.modal.modal-location .view .saved-addresses .title {
  padding-top: 10px;
  color: #C1C2C2;
  text-align: center;
}
.modal.modal-location .view .saved-addresses .addresses {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.modal.modal-location .view .saved-addresses .addresses .address {
  display: none;
  cursor: pointer;
  color: black;
  text-decoration: none;
  padding: 0 20px;
}
.modal.modal-location .view .saved-addresses .addresses .badge {
  margin: 10px auto;
  width: 52px;
  height: 52px;
  border-radius: 16%;
  border-width: 2px;
  border-color: black;
  border-style: solid;
}
.modal.modal-location .view .saved-addresses .addresses .badge.badge-couch {
  background: url("/img/vector/address_couch.svg") center center/23px no-repeat #ffa900;
}
.modal.modal-location .view .saved-addresses .addresses .badge.badge-desk {
  background: url("/img/vector/address_work.svg") center center/23px no-repeat #ff92bb;
}
.modal.modal-location .view .saved-addresses .addresses .badge.badge-otherhome {
  background: url("/img/vector/address_home2.svg") center center/23px no-repeat #69bd55;
}
@media (min-width: 767px) {
  .modal.modal-location .view {
    max-width: 727px;
    margin: 100px auto;
    padding: 64px;
  }
  .modal.modal-location .view .prompt {
    max-width: 500px;
    margin: 0 auto;
  }
}

.refund-main .icon {
  width: 100%;
  height: auto;
  margin-bottom: 21px;
}
.refund-main .icon img {
  margin: 0 auto;
  width: 100%;
  max-width: 85px;
}
.refund-main h5 {
  text-align: center;
  font-size: 18px;
  color: #060B0D;
  font-weight: bold;
  margin-bottom: 27px;
}
.refund-main p {
  font-size: 14px;
  color: #060B0D;
  padding-bottom: 21px;
  font-weight: normal;
}

.credit-wallet-main .icon {
  width: 100%;
  height: auto;
  margin-bottom: 21px;
}
.credit-wallet-main .icon img {
  margin: 0 auto;
  width: 100%;
  max-width: 133px;
}
.credit-wallet-main h5 {
  text-align: center;
  font-size: 18px;
  color: #060B0D;
  font-weight: bold;
  margin-bottom: 8px;
}
.credit-wallet-main p {
  font-size: 16px;
  color: #060B0D;
  padding-bottom: 33px;
  font-weight: normal;
  text-align: center;
}
.credit-wallet-main .list-items-main {
  display: flex;
  flex-direction: column;
}
.credit-wallet-main .list-items-main .list-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #F2F2F2;
  align-items: center;
}
.credit-wallet-main .list-items-main .list-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.credit-wallet-main .list-items-main .list-item .icon {
  width: 100%;
  max-width: 50px;
  margin-bottom: 0;
}
.credit-wallet-main .list-items-main .list-item .icon img {
  max-width: 24px;
}
.credit-wallet-main .list-items-main .list-item .description {
  padding-left: 10px;
  font-size: 14px;
  color: #060B0D;
}

.snackme-body {
  padding: 42px 27px;
}
.snackme-body .container {
  max-width: 900px;
}
@media (min-width: 1023px) {
  .snackme-body {
    padding: 42px 20px 130px;
  }
}
.snackme-body .row {
  display: flex;
  align-items: center;
  margin-bottom: 96px;
  flex-direction: column;
}
@media (min-width: 1023px) {
  .snackme-body .row {
    flex-direction: row;
  }
}
.snackme-body .row:last-child {
  margin-bottom: 0;
}
@media (min-width: 1023px) {
  .snackme-body .row:nth-child(2n) .col-text {
    order: 2;
    padding: 0 0 0 137px;
  }
}
@media (min-width: 1023px) {
  .snackme-body .row:nth-child(2n) .col-img {
    order: 1;
  }
}
.snackme-body .col-text {
  width: 100%;
}
@media (min-width: 1023px) {
  .snackme-body .col-text {
    max-width: 70%;
    order: 1;
    padding: 0 137px 0 0;
  }
}
@media (max-width: 1023px) {
  .snackme-body .col-text p {
    margin: 0 auto;
  }
}
.snackme-body .col-img {
  width: 100%;
  padding-top: 40px;
}
@media (min-width: 1023px) {
  .snackme-body .col-img {
    padding-top: 0;
    max-width: 30%;
    order: 2;
  }
}
@media (max-width: 1023px) {
  .snackme-body .col-img {
    text-align: center;
  }
}
.snackme-body .col-img img {
  display: inline-block;
  max-width: 100%;
}
.snackme-body h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: center;
  letter-spacing: -0.434117px;
  color: #060B0D;
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1023px) {
  .snackme-body h3 {
    font-size: 34px;
    line-height: 40px;
    text-align: left;
    justify-content: flex-start;
  }
}
.snackme-body p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #45484A;
  max-width: 435px;
  text-align: center;
}
@media (min-width: 1023px) {
  .snackme-body p {
    text-align: left;
  }
}

.app-download {
  padding: 40px 20px;
  background: #6DCEF5;
}
@media (min-width: 1023px) {
  .app-download {
    padding: 78px 0;
  }
}
.app-download h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #060B0D;
  max-width: 448px;
  margin: 0 auto;
  margin-bottom: 34px;
}
@media (min-width: 1023px) {
  .app-download h2 {
    font-size: 40px;
    line-height: 47px;
  }
}
.app-download .btn-group {
  align-items: center;
  justify-content: center;
}
.app-download .btn-group a {
  max-width: 224px;
}

.snackme-gifts {
  padding: 45px 20px;
}
@media (min-width: 1023px) {
  .snackme-gifts {
    padding: 45px 0 0;
  }
}
.snackme-gifts .container {
  flex-direction: column;
  align-items: center;
}
.snackme-gifts img {
  max-width: 100%;
  height: auto;
  display: block;
}
.snackme-gifts .icon {
  width: 100%;
  max-width: 145px;
}
@media (min-width: 1023px) {
  .snackme-gifts .icon {
    max-width: 181px;
  }
}
.snackme-gifts .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.snackme-gifts h2 {
  font-style: normal;
  font-weight: bold;
  letter-spacing: -0.434117px;
  color: #060B0D;
  margin-bottom: 17px;
  font-size: 33px;
  line-height: 39px;
}
@media (min-width: 1023px) {
  .snackme-gifts h2 {
    font-size: 54px;
    line-height: 64px;
  }
}
.snackme-gifts p {
  font-style: normal;
  font-weight: normal;
  text-align: center;
  color: #060B0D;
  max-width: 607px;
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 1023px) {
  .snackme-gifts p {
    font-size: 21px;
    line-height: 32px;
  }
}

.takealotmore {
  padding: 10rem 1rem 2rem;
  margin: 0 auto;
  max-width: 900px;
}
.takealotmore .talmore-qrcodes {
  padding-bottom: 4rem;
}
.takealotmore .talmore-qrcodes h1 {
  line-height: 44px;
  text-align: center;
  color: #121212;
  font-family: "Mallory", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .takealotmore .talmore-qrcodes h1 {
    line-height: 3.5rem;
    font-size: 44px;
    line-height: 57px;
  }
}
.takealotmore .talmore-qrcodes section {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .takealotmore .talmore-qrcodes section {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}
.takealotmore .talmore-qrcodes section a {
  padding: 0.6rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #d3d3d3;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .takealotmore .talmore-qrcodes section a {
    padding: 0.9rem;
    margin-bottom: unset;
    margin: 0 1.7rem;
  }
}
.takealotmore .talmore-qrcodes section a:last-child {
  margin-bottom: unset;
}
.takealotmore .talmore-qrcodes section a img {
  width: 200px;
}
@media (min-width: 768px) {
  .takealotmore .talmore-qrcodes section a img {
    width: 160px;
  }
}
.takealotmore .talmore-qrcodes section a img:last-child {
  display: none;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .takealotmore .talmore-qrcodes section a img:last-child {
    display: block;
  }
}
.takealotmore .activate-mrd-app {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .takealotmore .activate-mrd-app {
    flex-direction: row-reverse;
    padding: 3.5rem 0 5rem;
  }
}
.takealotmore .activate-mrd-app div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.takealotmore .activate-mrd-app div h3 {
  color: #121212;
  font-family: "Mallory", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -1px;
}
.takealotmore .activate-mrd-app div:first-child {
  max-width: 530px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .takealotmore .activate-mrd-app div:first-child {
    max-width: unset;
    margin: unset;
    padding: 5rem 0rem 0 7rem;
  }
}
.takealotmore .activate-mrd-app div:first-child ol {
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .takealotmore .activate-mrd-app div:first-child ol {
    padding-left: 1rem;
  }
}
.takealotmore .activate-mrd-app div:first-child ol li {
  list-style: auto;
  margin-bottom: 0.25rem;
}
.takealotmore .activate-mrd-app div:last-child {
  width: 80%;
  max-width: 300px;
  margin: 2rem auto;
}
@media (min-width: 1024px) {
  .takealotmore .activate-mrd-app div:last-child {
    max-width: 280px;
    margin: 0rem auto;
  }
}
.takealotmore .activate-mrd-app div:last-child img {
  width: 100%;
}
.takealotmore .benefits {
  padding: 3rem 0 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.takealotmore .benefits h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #121212;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  font-family: "Mallory", sans-serif;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .takealotmore .benefits h2 {
    font-size: 34px;
    line-height: 44px;
  }
}
.takealotmore .benefits .benefit-blocks {
  background: #6ECFF5;
  border: 1px solid rgba(15, 72, 94, 0.149);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  max-width: 420px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .takealotmore .benefits .benefit-blocks {
    flex-direction: row;
    align-items: center;
    max-width: unset;
  }
}
.takealotmore .benefits .benefit-blocks div {
  position: relative;
}
@media (min-width: 768px) {
  .takealotmore .benefits .benefit-blocks div {
    flex: 1;
  }
}
.takealotmore .benefits .benefit-blocks div:first-child > img {
  width: 100%;
  aspect-ratio: 5/4;
}
.takealotmore .benefits .benefit-blocks div:last-child {
  width: 100%;
  padding: 1.3rem;
}
@media (min-width: 768px) {
  .takealotmore .benefits .benefit-blocks div:last-child {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.takealotmore .benefits .benefit-blocks div:last-child h4 {
  text-align: left;
  font-weight: 600;
  margin-bottom: 1rem;
}
.takealotmore .benefits .benefit-blocks div:last-child .benefit-list {
  padding-left: 2.2rem;
}
.takealotmore .benefits .benefit-blocks div:last-child .benefit-list li {
  position: relative;
  margin-bottom: 0.25rem;
  line-height: 1.7rem;
  font-size: 14px;
}
.takealotmore .benefits .benefit-blocks div:last-child .benefit-list li span {
  position: absolute;
  right: calc(100% + 12px);
  top: 2px;
  display: block;
  width: 20px;
  height: 20px;
}
.takealotmore .benefits .benefit-blocks div:last-child a {
  text-decoration: none;
  border: 2px solid #000;
  border-radius: 24px;
  padding: 0.5rem 0.8rem;
  margin-top: 0.8rem;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  max-width: 106px;
}
.takealotmore .benefits .benefit-blocks div:last-child a:hover {
  background: #000;
  color: #fff;
}
.takealotmore .benefits .benefit-blocks:nth-of-type(even) {
  background: #28618C;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
}
@media (min-width: 768px) {
  .takealotmore .benefits .benefit-blocks:nth-of-type(even) div:first-child img {
    transform: scale(1.02);
  }
}
@media (min-width: 769px) {
  .takealotmore .benefits .benefit-blocks:nth-of-type(even) div:first-child img {
    transform: scale(1.11) translate(14px, 0px);
  }
}
@media (min-width: 784px) {
  .takealotmore .benefits .benefit-blocks:nth-of-type(even) div:first-child img {
    transform: unset;
  }
}
.takealotmore .benefits .benefit-blocks:nth-of-type(even) div:last-child a {
  border-color: #fff;
}
.takealotmore .benefits .benefit-blocks:nth-of-type(even) div:last-child a:hover {
  background: #fff;
  color: #000;
}

#travel-header {
  background-color: #6DCEF5;
  padding: 160px 24px 64px;
  min-height: 0;
}
#travel-header .container {
  max-width: 900px;
}
#travel-header .header-title {
  color: #fff;
  font-size: 2rem;
}
#travel-header .header-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
@media (min-width: 767px) {
  #travel-header {
    text-align: center;
    padding: 220px 64px 80px;
  }
  #travel-header .header-title {
    font-size: 3rem;
  }
  #travel-header .header-sub {
    font-size: 2.4rem;
  }
}
@media (min-width: 1023px) {
  #travel-header {
    padding: 260px 64px 120px;
  }
  #travel-header .header-title {
    font-size: 4rem;
  }
  #travel-header .header-sub {
    font-size: 3rem;
  }
}

.travel-infographic img {
  max-width: 100%;
}

.travel-body {
  background-color: #060B0D;
  color: #fff;
  padding: 48px 24px;
}
.travel-body .container {
  max-width: 760px;
}
.travel-body .header-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 48px;
}
.travel-body p {
  font-size: 1.2rem;
  margin-bottom: 48px;
  line-height: 1.5em;
}
.travel-body p:last-child {
  margin-bottom: 0;
}
.travel-body .travel-clue {
  font-size: 1.4rem;
  margin-bottom: 32px;
}
.travel-body a {
  display: block;
  color: #fff;
  max-width: 500px;
  text-decoration: none;
  margin-top: 32px;
}
.travel-body a:hover {
  text-decoration: underline;
}
@media (min-width: 767px) {
  .travel-body {
    padding: 64px 48px;
  }
  .travel-body .header-title {
    font-size: 2.4rem;
  }
  .travel-body p {
    font-size: 1.6rem;
  }
  .travel-body .travel-clue {
    font-size: 2rem;
  }
  .travel-body a {
    text-align: center;
    margin: 3rem auto 0;
  }
}
@media (min-width: 1023px) {
  .travel-body {
    padding: 100px 64px;
  }
  .travel-body .header-title {
    font-size: 3rem;
  }
  .travel-body p {
    font-size: 2rem;
  }
  .travel-body .travel-clue {
    font-size: 2.4rem;
  }
}

#footer {
  overflow-x: hidden;
}
#footer .footer-nav {
  position: relative;
}
#footer .footer-nav .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  #footer .footer-nav .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#footer .footer-nav .container .col {
  width: 100%;
}
@media (min-width: 767px) {
  #footer .footer-nav .container .col {
    max-width: 50%;
  }
}
@media (min-width: 1023px) {
  #footer .footer-nav .container .col {
    max-width: 33.33%;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav .container .col.cta-group, #footer .footer-nav .container .col.social {
    min-width: 100%;
  }
}
@media (min-width: 1023px) {
  #footer .footer-nav .container .col.cta-group, #footer .footer-nav .container .col.social {
    min-width: 100%;
    max-width: 100%;
  }
}
#footer .footer-nav .container .col.cta-group .btn-group, #footer .footer-nav .container .col.social .btn-group {
  max-width: 360px;
  margin: 0 auto;
}
#footer .footer-nav.skew-bottom:after {
  bottom: -43px;
  transform: skew(0, -0.03turn);
}
@media (min-width: 767px) {
  #footer .footer-nav.skew-bottom:after {
    bottom: -30px;
    transform: skew(0, -0.01turn);
  }
}
@media (min-width: 1023px) {
  #footer .footer-nav.skew-bottom:after {
    bottom: -38px;
  }
}
@media (min-width: 1439px) {
  #footer .footer-nav.skew-bottom:after {
    bottom: -55px;
  }
}
@media (min-width: 1919px) {
  #footer .footer-nav.skew-bottom:after {
    transform: skew(0, -0.005turn);
    bottom: -35px;
  }
}
#footer .footer-nav .col {
  padding-bottom: 16px;
}
#footer .footer-nav h4 {
  text-align: center;
}
#footer .footer-nav li {
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 0;
}
#footer .footer-nav li a {
  font-size: 14px;
  font-weight: 500;
  color: #45484a;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 767px) {
  #footer .footer-nav li a {
    font-size: 16px;
  }
}
@media (min-width: 1023px) {
  #footer .footer-nav .cta-group {
    padding-top: 32px;
  }
}
#footer .footer-nav .cta-group .btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#footer .footer-nav .cta-group .btn-group a {
  display: inline-block;
  width: calc(45% - 8px);
  text-align: left;
  margin: 0 8px 8px 8px;
}
#footer .footer-nav .cta-group .btn-group a img {
  display: inline-block;
  max-width: 100%;
}
#footer .footer-nav .cta-group .btn-group a:nth-of-type(3) img {
  transform: scale(1.03);
}
@media (min-width: 769px) {
  #footer .footer-nav .cta-group .btn-group a {
    width: calc(55% - 8px);
  }
}
@media (min-width: 1100px) {
  #footer .footer-nav .cta-group .btn-group a {
    width: calc(47% - 8px);
  }
}
#footer .footer-nav .social {
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#footer .footer-nav .social a {
  margin: 0 8px;
}
#footer .footer-nav.legal-links {
  padding-top: 0;
}
#footer .footer-nav.legal-links ul {
  align-items: center;
  justify-content: center;
}
#footer .footer-nav.legal-links ul li {
  padding-bottom: 0;
}
#footer .footer-nav.legal-links ul a {
  color: #060B0D;
  font-size: 16px;
  font-weight: 500;
  margin: 0 12px;
}
#footer .footer-nav.legal-links ul a:hover {
  text-decoration: underline;
}
#footer .footer-locations .container {
  flex-direction: column;
}
#footer .footer-locations .city-main {
  border-bottom: 2px solid #060B0D;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main {
    border-bottom: 0;
    padding-bottom: 32px;
  }
}
#footer .footer-locations .city-main .location-title {
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px 0;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main .location-title {
    justify-content: flex-start;
    padding: 0;
  }
}
#footer .footer-locations .city-main .location-title .ico {
  position: absolute;
  right: 16px;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main .location-title .ico {
    display: none;
  }
}
#footer .footer-locations .city-main h4 {
  margin: 0;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main h4 {
    text-transform: none;
  }
}
#footer .footer-locations .city-main h4 a {
  color: #060B0D;
  text-decoration: none;
}
#footer .footer-locations .city-main .location-children {
  flex-wrap: wrap;
  border-top: 2px solid #6DCEF5;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: ease-in-out all 0.2s;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main .location-children {
    height: auto;
    opacity: 1;
    border-top: 0;
    padding: 8px 0;
  }
}
#footer .footer-locations .city-main .location-children li {
  width: 100%;
  max-width: 50%;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main .location-children li {
    max-width: 20%;
    text-align: left;
  }
}
#footer .footer-locations .city-main .location-children li a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #45484a;
  text-align: center;
}
@media (min-width: 767px) {
  #footer .footer-locations .city-main .location-children li a {
    text-align: left;
  }
}
#footer .footer-locations .city-main.active .location-children {
  height: auto;
  opacity: 1;
  padding: 14px 0 16px;
  overflow: visible;
}
#footer .footer-legal {
  position: relative;
}
#footer .footer-logo {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 0 16px;
}
#footer .footer-logo svg {
  width: 64px;
  height: auto;
}
#footer .legal-main {
  position: relative;
  z-index: 2;
  padding: 0 40px 32px;
}
#footer .legal-main p {
  font-size: 12px;
  color: #060B0D;
  text-align: center;
  font-weight: 400;
}
#footer .site-desc {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
#footer .site-desc span {
  font-size: 30px;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
@media (min-width: 1023px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 20px;
  }
}
.cookie-banner p {
  text-align: center;
  color: #fff;
}
@media (min-width: 1023px) {
  .cookie-banner p {
    text-align: left;
    margin-right: 20px;
    margin-bottom: unset;
  }
}
@media (min-width: 1439px) {
  .cookie-banner p {
    margin-right: 50px;
  }
}
.cookie-banner button {
  min-width: 160px;
  width: 200px;
  padding: 9px 0;
}
.cookie-banner button:hover {
  color: white;
}
.cookie-banner.hide {
  display: none;
}

.page-form .form-title {
  padding: 0 50px 40px;
}
.page-form .form-title a {
  text-decoration: none;
  color: #8F8F8F;
  font-weight: 500;
}
.page-form .form-container {
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-form .form-row {
  padding: 0 0 24px;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 767px) {
  .page-form .form-row.half {
    max-width: 45%;
  }
}
.page-form .form-row.flex {
  justify-content: space-between;
}
.page-form .form-row.flex.align-left {
  justify-content: flex-start;
}
@media (min-width: 767px) {
  .page-form .form-row.flex.align-left span:first-child {
    margin: 0 16px 0 0;
  }
}
.page-form .form-row.submit {
  max-width: 45%;
  margin-left: auto;
}
.page-form .form-row.submit a {
  width: 100%;
  float: left;
}
.page-form .form-row.error input {
  color: #ec1c24;
  border-color: #ec1c24;
}
.page-form .form-row.error input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ec1c24;
}
.page-form .form-row.error input::-moz-placeholder { /* Firefox 19+ */
  color: #ec1c24;
}
.page-form .form-row.error input:-ms-input-placeholder { /* IE 10+ */
  color: #ec1c24;
}
.page-form .form-row.error input:-moz-placeholder { /* Firefox 18- */
  color: #ec1c24;
}
.page-form .form-row.location {
  position: relative;
}
.page-form .form-row.location .loc-ico {
  display: none;
}
.page-form .form-row.location .btn-warning {
  width: 280px;
  height: 68px;
  background: #FAA902;
  border-radius: 0px 8px 8px 0px;
  top: 27px;
  border: none;
  position: absolute;
  right: 0;
  box-shadow: none;
}
.page-form .form-row.location .btn-warning svg {
  display: none;
}
.page-form .form-row.title-breaker {
  padding-top: 16px;
}
.page-form .form-row .radio-group {
  width: 100%;
  background: #F0FAFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 32px;
  margin-bottom: 16px;
}
@media (min-width: 767px) {
  .page-form .form-row .radio-group {
    margin-bottom: 0;
  }
}
@media (min-width: 767px) {
  .page-form .form-row .radio-group.half {
    max-width: 45%;
  }
}
.page-form .form-row .radio-group.small {
  padding: 16px;
}
@media (min-width: 767px) {
  .page-form .form-row .radio-group.small {
    max-width: 35%;
  }
}
.page-form .form-row .radio-group:hover {
  cursor: pointer;
}
.page-form .form-row .radio-group input {
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
  opacity: 0;
  border: none;
}
.page-form .form-row .radio-group input:checked + span {
  background: #6DCEF5;
  border-color: #6DCEF5;
}
.page-form .form-row .radio-group input:checked + span:before {
  opacity: 1;
}
.page-form .form-row .radio-group span {
  width: 100%;
  max-width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #C1C2C2;
  border-radius: 100%;
  margin: 0 32px 0 0;
}
.page-form .form-row .radio-group span:before {
  content: "";
  width: 11px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(35deg);
  top: 0;
  position: relative;
  float: left;
  left: 7px;
  opacity: 0;
  transition: ease all 0.3s;
}
.page-form .form-row .radio-group label {
  font-size: 16px;
  font-weight: 400;
  color: #060B0D;
  padding: 0;
}
.page-form .form-row .radio-group label:hover {
  cursor: pointer;
}
.page-form .form-row .check-group {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 32px;
}
@media (min-width: 767px) {
  .page-form .form-row .check-group {
    max-width: 50%;
  }
}
.page-form .form-row .check-group input {
  width: 0;
  height: 0;
  display: none;
  margin: 0;
  padding: 0;
}
.page-form .form-row .check-group input:checked + span {
  background: #6DCEF5;
  border-color: #6DCEF5;
}
.page-form .form-row .check-group input:checked + span:before {
  opacity: 1;
}
.page-form .form-row .check-group span {
  width: 24px;
  height: 24px;
  border: 2px solid #C1C2C2;
  border-radius: 2px;
  position: relative;
}
.page-form .form-row .check-group span:before {
  opacity: 0;
  width: 8px;
  height: 15px;
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(35deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: ease all 0.3s;
}
.page-form .form-row .check-group label {
  padding: 0 0 0 16px;
}
.page-form label {
  font-size: 16px;
  color: #060B0D;
  font-weight: 500;
  padding: 0 0 8px;
  display: block;
}
.page-form input, .page-form textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  border: 2px solid #F2F2F2;
  font-size: 16px;
  font-weight: 400;
  color: #8F8F8F;
  padding: 23px 21px 22px 16px;
}
.page-form input::-webkit-input-placeholder, .page-form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #8F8F8F;
}
.page-form input::-moz-placeholder, .page-form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #8F8F8F;
}
.page-form input:-ms-input-placeholder, .page-form textarea:-ms-input-placeholder { /* IE 10+ */
  color: #8F8F8F;
}
.page-form input:-moz-placeholder, .page-form textarea:-moz-placeholder { /* Firefox 18- */
  color: #8F8F8F;
}
.page-form .result_canvas {
  display: flex;
  padding: 16px 0 0;
  flex-wrap: wrap;
}
.page-form .result_canvas li {
  background: #6DCEF5;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 30px 7px 10px;
  margin: 0 8px 0 0;
  width: auto;
  border-radius: 20px;
  position: relative;
}
.page-form .result_canvas li span {
  position: absolute;
  right: 20px;
  top: 8px;
}
.page-form .result_canvas li span:before, .page-form .result_canvas li span:after {
  content: "";
  height: 15px;
  width: 2px;
  background: #060B0D;
  position: absolute;
}
.page-form .result_canvas li span:before {
  transform: rotate(45deg);
}
.page-form .result_canvas li span:after {
  transform: rotate(-45deg);
}

.form-submitted {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
.form-submitted .sucess-icon {
  width: 144px;
  height: 144px;
  border-radius: 100%;
  border: 6px solid #77BF44;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.form-submitted .sucess-icon svg {
  width: 87px;
  height: auto;
  color: #77BF44;
}
.form-submitted h3 {
  font-size: 32px;
  color: #060B0D;
  font-weight: 700;
  padding-bottom: 16px;
  text-align: center;
}
.form-submitted p {
  font-size: 16px !important;
  color: #060B0D;
  font-weight: 500;
  text-align: center;
  padding: 0px 50px 32px;
}
@media (min-width: 1023px) {
  .form-submitted p {
    padding: 0px 100px 32px;
  }
}
.form-submitted .btn {
  max-width: 320px;
}

.restaurant-page .location .btn {
  display: none;
}
.restaurant-page .location .location-response {
  margin-top: 6px;
  padding: 8px 20px;
  border-radius: 4px;
}
.restaurant-page .location .location-response.response-great {
  background-color: #D9F3FD;
}
.restaurant-page .location .location-response.response-good {
  background-color: #FFEAC4;
}

#question_helpful {
  max-width: 681px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}
#question_helpful h4 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 31px;
}
#question_helpful .action-buttons {
  justify-content: center;
}
#question_helpful .action-buttons button {
  background: none;
  border: none;
  box-shadow: none;
  flex-direction: column;
  align-items: center;
  color: #060B0D;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0 32px;
}
#question_helpful .action-buttons button .icon {
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  margin-bottom: 16px;
}
#question_helpful .action-buttons button .icon svg {
  width: 24px;
  height: auto;
}
#question_helpful .action-buttons .good {
  background: #77BF44;
}
#question_helpful .action-buttons .bad {
  background: #ec1c24;
}

#query_submission .form-submitted {
  font-size: 16px;
  max-width: 620px;
}

.help-us-form {
  width: 100%;
  max-width: 600px;
  padding: 0 62px 32px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  overflow: scroll; /* Scroll on this element otherwise element can't have a padding applied properly */
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #F2F2F2;
  padding: 23px 21px 22px 16px;
  border-radius: 8px;
  color: #8F8F8F;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  user-select: none;
}
.selectric .button {
  text-indent: -99999px;
  position: absolute;
  float: right;
  right: 0;
  top: 0;
  height: 100%;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.selectric .button:before, .selectric .button:after {
  width: 12px;
  height: 12px;
  border-left: 2px solid #060B0D;
  border-bottom: 2px solid #060B0D;
  content: "";
  position: absolute;
  color: #fff;
  left: 0;
}
.selectric .button:before {
  transform: rotate(135deg);
  top: 15px;
}
.selectric .button:after {
  transform: rotate(-45deg);
  bottom: 15px;
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}
.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}
.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: 700;
  padding-left: 10px;
  cursor: default;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

/*
 * General styles.
 * Not necessary for the component to work
*/
.c-rating.food i {
  display: inline-block;
  float: left;
  width: calc(1.25 0em);
  height: calc(1.25 0em);
  border: 0;
  text-indent: -9999px;
  outline: none;
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0"] i:nth-child(-n+0) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.25"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.25"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.5"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.5"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.75"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="0.75"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.25"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.25"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.5"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.5"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.75"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="1.75"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.25"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.25"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.5"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.5"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.75"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="2.75"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.25"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.25"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.5"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.5"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.75"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="3.75"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.25"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.25"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.5"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.5"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.75"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="4.75"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.food[data-rating-value="5"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23045e07%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery i {
  display: inline-block;
  float: left;
  width: calc(1.25 0em);
  height: calc(1.25 0em);
  border: 0;
  text-indent: -9999px;
  outline: none;
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0"] i:nth-child(-n+0) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.25"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.25"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.5"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.5"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.75"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="0.75"] i:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1"] i:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.25"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.25"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.5"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.5"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.75"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="1.75"] i:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2"] i:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.25"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.25"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.5"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.5"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.75"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="2.75"] i:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3"] i:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.25"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.25"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.5"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.5"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.75"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="3.75"] i:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4"] i:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.25"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.25"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.5"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.5"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.75"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="4.75"] i:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating.delivery[data-rating-value="5"] i:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%2377bf44%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating--small {
  font-size: 50%;
}
.c-rating--big {
  font-size: 150%;
}

@font-face {
  font-family: "Mr D Icons";
  src: url("/fonts/mrd-icons.eot?a9i4f8");
  src: url("/fonts/mrd-icons.eot?a9i4f8#iefix") format("embedded-opentype"), url("/fonts/mrd-icons.ttf?a9i4f8") format("truetype"), url("/fonts/mrd-icons.woff?a9i4f8") format("woff"), url("/fonts/mrd-icons.svg?a9i4f8#mrd-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Mr D Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-snackme:before {
  content: "\e900";
}

.icon-wallet-out:before {
  content: "\e901";
}

.icon-wallet:before {
  content: "\e902";
}

.icon-user:before {
  content: "\e903";
}

.icon-star:before {
  content: "\e904";
}

.icon-share:before {
  content: "\e905";
}

.icon-settings:before {
  content: "\e906";
}

.icon-send:before {
  content: "\e907";
}

.icon-search:before {
  content: "\e908";
}

.icon-refresh:before {
  content: "\e909";
}

.icon-promo:before {
  content: "\e90a";
}

.icon-paper:before {
  content: "\e90b";
}

.icon-message:before {
  content: "\e90c";
}

.icon-logout:before {
  content: "\e90d";
}

.icon-lightmode:before {
  content: "\e90e";
}

.icon-light:before {
  content: "\e90f";
}

.icon-history:before {
  content: "\e910";
}

.icon-fire:before {
  content: "\e911";
}

.icon-edit:before {
  content: "\e912";
}

.icon-delivery:before {
  content: "\e913";
}

.icon-delivery-with-clock:before {
  content: "\e914";
}

.icon-delivery-with-clock-1:before {
  content: "\e915";
}

.icon-dark:before {
  content: "\e916";
}

.icon-credit-card:before {
  content: "\e917";
}

.icon-clock:before {
  content: "\e918";
}

.icon-chevron-up:before {
  content: "\e919";
}

.icon-chevron-right:before {
  content: "\e91a";
}

.icon-chevron-down:before {
  content: "\e91b";
}

.icon-check:before {
  content: "\e91c";
}

.icon-bag:before {
  content: "\e91d";
}

.icon-arrow-up:before {
  content: "\e91e";
}

.icon-arrow-right:before {
  content: "\e91f";
}

.icon-arrow-left:before {
  content: "\e920";
}

.icon-arrow-down:before {
  content: "\e921";
}

.icon-alert:before {
  content: "\e922";
}

.icon-add-user:before {
  content: "\e923";
}

.icon-add:before {
  content: "\e924";
}

.icon-call:before {
  content: "\e925";
}

.icon-bill-check:before {
  content: "\e926";
}

.icon-close:before {
  content: "\e927";
}

.icon-home:before {
  content: "\e928";
}

.icon-account:before {
  content: "\e929";
}

.icon-current-location:before {
  content: "\e92a";
}

.icon-pin:before {
  content: "\e92b";
}

.icon-couch:before {
  content: "\e92c";
}

.icon-briefcase:before {
  content: "\e92d";
}

.icon-thumbs-down:before {
  content: "\e92e";
}

.icon-thumbs-up:before {
  content: "\e92f";
}

/* Mallory ==================================================== */
/* ============================================================ */
@font-face {
  font-family: "Mallory";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-black.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Mallory";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-bold.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Mallory";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-medium.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Mallory";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-book.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Mallory";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-light.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/mallory-microplus/compact-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}
/* Sunset Gothic ============================================== */
/* ============================================================ */
@font-face {
  font-family: "Sunset Gothic";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/sunset-gothic/bold.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/sunset-gothic/bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Sunset Gothic";
  src: url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/sunset-gothic/thin.woff2") format("woff2"), url("https://mrd-food-marketplace-images-prod.s3.eu-west-1.amazonaws.com/static/fonts/sunset-gothic/thin.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}
/* Sunset Gothic Pro ========================================== */
/* ============================================================ */
html, body {
  font-family: "Mallory", sans-serif;
  font-size: 14px;
  color: #252525;
}

.title, h1, h2, h3 {
  font-family: "Sunset Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
}

h4, h5, h6 {
  font-weight: 600;
  margin: 0;
}

p {
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: -0.015rem;
  margin: 0;
}

.title, h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 24px;
}

.title, h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

.title {
  font-size: 2.7rem;
  line-height: 104%;
  margin-bottom: 24px;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2em;
}

h2 {
  font-size: 2.2rem;
  line-height: 100%;
  letter-spacing: -0.03rem;
}

@media (min-width: 769px) {
  h2 {
    font-size: 2.4rem;
    line-height: 110%;
  }
}
@media (min-width: 1100px) {
  h2 {
    font-size: 3rem;
  }
}
h3 {
  font-size: 1.6rem;
  line-height: 1.2em;
}

h4 {
  font-size: 1.4rem;
  line-height: 1.2em;
}

h5 {
  font-size: 1.16rem;
  line-height: 1.2em;
}

h6 {
  font-size: 1rem;
  line-height: 1.2em;
}

small {
  font-size: 0.833rem;
  line-height: 0.833rem;
}

hr {
  border-width: 0;
  border-bottom: 7px solid #C4C4C4;
  margin: 0;
  opacity: 0.2;
}

li {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 24px;
}

:target::before {
  content: "";
  display: block;
  height: 75px; /* fixed header height*/
  margin: -75px 0 0; /* negative fixed header height */
}

@media (min-width: 769px) {
  html, body {
    font-size: 15px;
  }
  .title {
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: 32px;
  }
  .title, h1, h2, h3, h4, h5, h6 {
    text-align: inherit;
  }
  .title {
    font-size: 3rem;
    line-height: 3.8rem;
    margin-bottom: 24px;
  }
  h1 {
    font-size: 2.488rem;
    line-height: 3.75rem;
  }
  h2 {
    font-size: 2.574rem;
    line-height: 3rem;
  }
  h3 {
    font-size: 1.728rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.44rem;
    line-height: 2rem;
  }
  h5 {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  h6 {
    font-size: 1rem;
    line-height: 2rem;
  }
  p {
    line-height: 1.6rem;
  }
}
@media (min-width: 1100px) {
  html, body {
    font-size: 16px;
  }
  .title {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 48px;
  }
}
.wrapper {
  max-width: 1400px;
  padding: 64px 16px;
  margin: 0 auto;
}

@media (min-width: 450px) {
  .wrapper {
    padding: 64px 24px;
  }
}
@media (min-width: 769px) {
  .wrapper {
    padding: 64px 48px;
  }
}
@media (min-width: 1100px) {
  .wrapper {
    padding: 64px;
  }
}
@media (min-width: 1400px) {
  .wrapper {
    padding: 128px;
  }
}
.wrapper.small {
  padding: 48px 16px;
}

@media (min-width: 769px) {
  .wrapper.small {
    padding: 48px;
  }
}
@media (min-width: 1100px) {
  .wrapper.small {
    padding: 48px;
  }
}
@media (min-width: 1400px) {
  .wrapper.small {
    padding: 64px;
  }
}
.wrapper.header-image {
  padding: 16px;
}

@media (min-width: 450px) {
  .wrapper.header-image {
    padding: 24px 48px 24px;
  }
}
@media (min-width: 769px) {
  .wrapper.header-image {
    padding: 48px;
  }
}
@media (min-width: 1100px) {
  .wrapper.header-image {
    padding: 48px;
  }
}
@media (min-width: 1400px) {
  .wrapper.header-image {
    padding: 64px;
  }
}
.position-children {
  display: flex;
  flex-direction: column;
}

.position-children .pos-1 {
  order: 1;
}

.position-children .pos-2 {
  order: 2;
}

.position-children .pos-3 {
  order: 3;
}

.position-children .pos-4 {
  order: 4;
}

.position-children .pos-5 {
  order: 5;
}

.position-children .pos-6 {
  order: 6;
}

.position-children .pos-7 {
  order: 7;
}

.position-children .pos-8 {
  order: 8;
}

.position-children .pos-9 {
  order: 9;
}

.position-children .pos-10 {
  order: 10;
}

@media (min-width: 769px) {
  .position-children {
    display: block;
  }
}
.btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-weight: 700;
  border: 0;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  color: #252525;
  background-color: #6DCFF6;
  background: #6DCFF6 -o-radial-gradient(circle, transparent 1%, #6DCFF6 1%) center/15000%;
  background: #6DCFF6 radial-gradient(circle, transparent 1%, #6DCFF6 1%) center/15000%;
  background-position: center;
  -webkit-transition: all 600ms;
  -o-transition: all 600ms;
  transition: all 600ms;
  min-width: 132px;
  text-align: center;
}

.btn.dark {
  background-color: #252525;
  color: #ffffff;
  background: #252525 -o-radial-gradient(circle, transparent 1%, #252525 1%) center/15000%;
  background: #252525 radial-gradient(circle, transparent 1%, #252525 1%) center/15000%;
}

.btn.dark:hover {
  background-color: #585858;
}

.btn.light {
  background: unset;
  border: 1px solid #C6CACC;
}

.btn.outline {
  color: #252525;
  background: #fff radial-gradient(circle, transparent 1%, #efefee 1%) center/15000%;
  border: 1px solid #a5a5a5;
}

.btn.yellow:hover {
  text-decoration: none;
  background-color: #fecc64;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  text-decoration: none;
  background-color: #5dc6f0;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover.light {
  background: white radial-gradient(circle, transparent 1%, white 1%) center/15000%;
}

.btn:hover.outline {
  background-color: white;
}

.btn:active {
  background-color: #e5f6fd;
  background-size: 100%;
  transition: background 0s;
}

.btn:active.light {
  background-color: white;
}

.btn:active.outline {
  background-color: white;
}

.btn.squared {
  border-radius: 5px;
}

.btn.squared:before {
  border-radius: 5px;
}

.btn.btn-link {
  background-color: transparent;
}

.btn.btn-link:before {
  content: none;
  display: none;
}

.btn .mdi {
  display: inline-block;
  margin-left: 6px;
  vertical-align: top;
  line-height: 1rem;
}

.btn .mdi:before {
  font-size: 1.2rem;
  vertical-align: middle;
}

.btn-group {
  position: relative;
  z-index: 1;
}

.btn-group .btn {
  margin: 0 16px 16px 0;
}

.btn-group .btn:last-child {
  margin-right: 0;
}

.page-toolbar .btn {
  margin-bottom: 0;
}

.filters .btn {
  font-weight: 400;
}

@media (min-width: 769px) {
  .white-cols {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
  .white-cols .col {
    width: calc(50% - 16px);
    max-width: calc(50% - 16px);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
    padding: calc(24px / 2);
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  .white-cols .col {
    padding: calc(48px / 2);
  }
}
@media (min-width: 769px) and (min-width: 1100px) {
  .white-cols .col {
    padding: calc(64px / 2);
  }
}
@media (min-width: 769px) {
  .white-cols .col:first-child {
    margin-left: 16px;
  }
  .white-cols .col:last-child {
    margin-right: 16px;
  }
}
@media (min-width: 1100px) {
  .white-cols .col {
    width: calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
  .white-cols .col:first-child {
    margin-left: 32px;
  }
  .white-cols .col:last-child {
    margin-right: 32px;
  }
}
.textLeft {
  text-align: left;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.marginBottom {
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .marginBottom {
    margin-bottom: 48px;
  }
}
@media (min-width: 1100px) {
  .marginBottom {
    margin-bottom: 64px;
  }
}
.marginAuto {
  margin: 0 auto;
}

.max600 {
  max-width: 600px;
}

.max700 {
  max-width: 700px;
}

.max800 {
  max-width: 800px;
}

.noMargin {
  margin: 0;
}

.showDesktop {
  display: none;
}

.bg-blue {
  background-color: #6DCFF6;
}

.bg-navy-blue {
  background-color: #005D9E;
  color: #ffffff;
}

.bg-navy-blue .sub-title,
.bg-navy-blue .has2cols .col-left .item-description .sub-title {
  color: inherit;
}

@media (max-width: 768px) {
  .bg-pale-blue {
    background-color: #AAD2F0;
  }
}
@media (min-width: 769px) {
  .bg-mint3 {
    background-color: #F5D678;
  }
  .showMobile {
    display: none;
  }
  .showDesktop {
    display: block;
  }
}
.hero {
  background-color: #84CDF2;
  background: #84CDF2 none no-repeat right -150px bottom -250px;
}

.hero .title {
  margin-bottom: 16px;
}

@media (min-width: 1100px) {
  .hero {
    background-position: right 80px bottom;
  }
}
.hero.imageRight {
  position: relative;
  background-image: none;
  padding-bottom: 240px;
}

@media (min-width: 769px) {
  .hero.imageRight {
    padding-bottom: 280px;
  }
}
@media (min-width: 1100px) {
  .hero.imageRight {
    padding-bottom: initial;
  }
}
.hero.imageRight .wrapper {
  position: static;
}

@media (min-width: 1100px) {
  .hero.imageRight .wrapper {
    position: relative;
  }
}
.hero.imageRight .image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 280px;
  background-position: center;
  background-size: cover;
}

@media (min-width: 769px) {
  .hero.imageRight .image {
    height: 320px;
  }
}
@media (min-width: 1100px) {
  .hero.imageRight .image {
    left: 820px;
    width: 500px;
    height: 500px;
    border-radius: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: initial;
  }
}
@media (min-width: 1400px) {
  .hero.imageRight .image {
    left: initial;
    right: 0;
  }
}
@media (min-width: 1100px) {
  .hero.imageRight {
    margin-bottom: initial;
    overflow: hidden;
  }
}
.hero .wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
}

@media (min-width: 769px) {
  .hero .wrapper {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (min-width: 1400px) {
  .hero .wrapper {
    padding-top: 180px;
    padding-bottom: 160px;
  }
}
.hero .search {
  position: relative;
  margin-top: 100px;
}

.home .hero .random-greeting {
  margin-bottom: 100px;
}

@media (min-width: 769px) {
  .home .hero .random-greeting {
    margin-bottom: 0;
  }
}
.random-greeting .title {
  margin-bottom: 16px;
}

.search {
  margin-top: 32px;
}

.item-ico {
  position: absolute;
  right: -30px;
  bottom: 64px;
  width: 100px;
}

.item-ico img {
  width: 100%;
}

.restaurant-carousel:focus {
  outline: none;
}

.restaurant-carousel .card {
  display: block;
  text-decoration: none;
  min-width: 100%;
  margin-right: 24px;
  width: calc(50% - 24px / 2);
}

@media (min-width: 769px) {
  .restaurant-carousel .card {
    margin-right: 48px;
  }
}
@media (min-width: 1100px) {
  .restaurant-carousel .card {
    margin-right: 64px;
  }
}
@media (min-width: 769px) {
  .restaurant-carousel .card {
    width: calc(50% - 48px / 2);
  }
}
@media (min-width: 1100px) {
  .restaurant-carousel .card {
    width: calc(50% - 64px / 2);
  }
}
@media (min-width: 769px) {
  .restaurant-carousel .card {
    min-width: 32px;
  }
  .restaurant-carousel .card:hover {
    opacity: 0.9;
  }
  .restaurant-carousel .card:hover .image:after {
    opacity: 1;
  }
}
.restaurant-carousel .content {
  position: relative;
  padding-right: 124px;
}

.restaurant-carousel .content h4 {
  text-align: left;
}

@media (min-width: 769px) {
  .restaurant-carousel .content {
    padding-right: 132px;
  }
}
.restaurant-carousel .image {
  position: relative;
  padding-top: 60%;
  border-radius: 16px;
  margin-bottom: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.restaurant-carousel .image:after {
  content: "";
  position: absolute;
  opacity: 0;
  inset: 0;
  border: 3px solid #32A5D3;
  border-radius: inherit;
}

.restaurant-carousel .link {
  color: #84CDF2;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.restaurant-carousel .link > span {
  display: inline-block;
  transform: translateY(2px);
}

.restaurant-carousel .link:hover {
  color: #32A5D3;
}

.restaurant-carousel .logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

@media (min-width: 769px) {
  .restaurant-carousel .logo {
    width: 100px;
    height: 60px;
  }
}
@media (min-width: 769px) {
  .restaurant-carousel h4 {
    font-size: 1.75rem;
  }
}
.restaurant-carousel p {
  display: none;
}

@media (min-width: 769px) {
  .restaurant-carousel p {
    display: block;
  }
}
.restaurant-carousel .flickity-prev-next-button {
  top: 100px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.restaurant-carousel .flickity-prev-next-button.next {
  right: -22px;
}

.restaurant-carousel .flickity-prev-next-button.previous {
  left: -22px;
}

@media (min-width: 769px) {
  .restaurant-carousel .flickity-prev-next-button {
    top: 130px;
  }
}
@media (min-width: 1100px) {
  .restaurant-carousel .flickity-prev-next-button {
    top: 180px;
  }
}
.home .restaurant-carousel {
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .home .restaurant-carousel {
    margin-bottom: 48px;
  }
}
@media (min-width: 1100px) {
  .home .restaurant-carousel {
    margin-bottom: 64px;
  }
}
.bg-randomGreetMobile-true {
  background-position: center top;
}

@media (max-width: 768px) {
  .bg-randomGreetDesktop-true {
    background-image: none !important;
  }
}
@media (min-width: 769px) {
  .bg-randomGreetMobile-true {
    background-image: none !important;
  }
}
.groceries {
  color: #000;
}

.groceries ul li {
  line-height: 1.6rem;
}

@media (max-width: 767px) {
  .groceries .item-title, .groceries .item-description {
    text-align: center;
  }
  .groceries .item-title br, .groceries .item-description br {
    display: none;
  }
  .groceries p.noMargin {
    margin-bottom: 32px;
  }
  .groceries .textCenter:last-child p.noMargin {
    margin-bottom: 10px;
  }
}
.groceries .title {
  text-align: left;
}

.groceries .main-nav-w-banner {
  background-color: rgba(255, 255, 255, 0.3137254902);
}

.groceries .hero {
  color: #ffffff;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #004A8F;
  font-size: 1.25rem;
  text-align: left;
  margin: 32px 0 0;
  counter-reset: how;
}

@media (min-width: 1100px) {
  .groceries .hero .title {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (min-width: 1600px) {
  .groceries .hero .title {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media (max-width: 1200px) {
  .groceries .hero {
    background-position: right -80px center;
  }
}
@media (max-width: 960px) {
  .groceries .hero {
    background-position: top -200px center;
    background-size: contain;
    padding-top: 80vw;
  }
}
@media (max-width: 768px) {
  .groceries .hero {
    background-position: top -80px center;
    padding-top: 94vw;
  }
}
@media (max-width: 500px) {
  .groceries .hero {
    background-position: top center;
    padding-top: 100vw;
  }
}
@media (min-width: 769px) {
  .groceries .hero .max700 {
    max-width: 600px;
  }
}
@media (min-width: 1600px) {
  .groceries .hero .max700 {
    max-width: 700px;
  }
}
.groceries .hero.imageRight .image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.groceries .hero .btn {
  font-size: max(1rem, 12px);
  background-color: #ffffff;
  color: #003664;
  padding-left: 24px;
  padding-right: 24px;
}

.groceries .hero .btn span, .groceries .hero .btn svg {
  vertical-align: middle;
}

.groceries .hero .btn span {
  margin-right: 8px;
}

.groceries .hero .btn:hover {
  background-color: #cae7ff;
}

@media (max-width: 450px) {
  .groceries .hero .btn {
    padding-left: 18px;
    padding-right: 18px;
  }
  .groceries .hero .btn svg {
    width: 18px;
  }
}
.groceries .hero ul {
  margin-bottom: 28px;
}

.groceries .hero ul li {
  position: relative;
}

.groceries .hero ul li span {
  display: block;
  padding-left: 32px;
}

.groceries .hero ul li:last-child {
  margin-bottom: 0;
}

.groceries .hero ul li svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .groceries .choice-row {
    margin-bottom: 64px;
  }
  .groceries .choice-row:last-child {
    margin-bottom: 0;
  }
}
.groceries .max800 .textCenter h2 {
  font-size: 4rem;
  margin-bottom: 4px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .groceries .max800 .textCenter {
    max-width: 260px;
  }
}
@media (min-width: 769px) {
  .groceries .max800 .textCenter h2 {
    margin-bottom: 20px;
  }
}
.groceries .item-title,
.groceries .item-description {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.groceries .sub-title {
  color: inherit;
  margin-bottom: 38px;
}

@media (max-width: 768px) {
  .groceries .item-title, .groceries .sub-title {
    margin-bottom: 16px;
  }
  .groceries .sub-title {
    margin-bottom: 24px;
  }
}
@media (min-width: 550px) {
  .groceries .bg-blue .has2cols {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
  }
  .groceries .bg-blue .has2cols p {
    margin: 0;
  }
}
.groceries .stockBg, .groceries .freshBg, .groceries .leadGenBg {
  background-repeat: no-repeat;
  background-position: center right;
}

@media (min-width: 769px) {
  .groceries .stockBg .choice-row, .groceries .freshBg .choice-row, .groceries .leadGenBg .choice-row {
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .groceries .stockBg, .groceries .freshBg, .groceries .leadGenBg {
    background-position: top center;
    background-size: contain;
    padding-top: 80%;
  }
}
.groceries .freshBg {
  width: 100%;
  aspect-ratio: 5/3;
}

@media (min-width: 769px) {
  .groceries .freshBg .wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .groceries .freshBg {
    padding-top: 58%;
    margin-bottom: -56px;
  }
  .groceries .freshBg .wrapper {
    margin-top: 24px;
  }
}
.groceries .has2cols .col[class*=bg-] {
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .groceries .has2cols .col[class*=bg-] {
    height: 360px;
  }
}
.groceries .checkmarks {
  font-size: 1.25rem;
  margin: 24px 0;
}

.groceries .checkmarks li {
  font-size: inherit;
  margin-bottom: 8px;
}

.groceries .checkmarks span {
  vertical-align: baseline;
}

.groceries .checkmarks svg {
  margin-right: 8px;
}

.groceries .btn {
  background-color: #003664;
  color: #ffffff;
  font-weight: 600;
}

.groceries .col5list {
  font-size: 1.25rem;
  text-align: left;
  margin: 32px 0 0;
  counter-reset: how;
}

.groceries .col5list li {
  position: relative;
  font-size: inherit;
  line-height: 1.6rem;
  margin: 16px 0;
}

.groceries .col5list li span {
  display: block;
  padding-left: 48px;
}

.groceries .col5list li:last-child {
  margin-bottom: 0;
}

.groceries .col5list li:before {
  content: counter(how);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  counter-increment: how;
  display: inline-block;
  background-color: #003664;
  font-size: 15px;
  text-align: center;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  line-height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.groceries .btn-group.cta {
  padding: 0;
  display: block;
  text-align: center;
}

.groceries .btn-group.cta a {
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  padding: 0;
  border-radius: 10px;
  margin: 0;
}

.groceries .btn-group.cta a:nth-child(2) {
  margin-right: 0;
}

@media (min-width: 769px) {
  .groceries .btn-group.cta {
    display: flex;
    margin: -16px;
  }
  .groceries .btn-group.cta a {
    background-color: #fff;
    padding: 8px;
  }
  .groceries .btn-group.cta .qrcode {
    flex-basis: 33%;
    margin: 16px;
  }
}
.groceries .marginSmall {
  margin-bottom: 24px;
}

.groceries .qrcode {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.groceries .qrcode .qr {
  display: none;
  padding: 24px;
}

.groceries .qrcode img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .groceries .qrcode {
    max-width: 180px;
    margin: 16px auto;
  }
}
@media (min-width: 769px) {
  .groceries .qrcode .qr {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
