@charset "UTF-8";
@font-face {
  font-family: "Museo Sans";
  src: url("https://digimarkcdn.blob.core.windows.net/fonts/MuseoSans-300.ttf") format("truetype");
  font-weight: 300;
	font-display: swap;
}
@font-face {
  font-family: "Museo Sans";
  src: url("https://digimarkcdn.blob.core.windows.net/fonts/MuseoSans-500.ttf") format("truetype");
  font-weight: 500;
	font-display: swap;
}
@font-face {
  font-family: "Museo Sans";
  src: url("https://digimarkcdn.blob.core.windows.net/fonts/MuseoSans-700.ttf") format("truetype");
  font-weight: 700;
	font-display: swap;
}
@font-face {
  font-family: "Mocha Mattari";
  src: url("https://digimarkcdn.blob.core.windows.net/fonts/Mocha-Mattari.ttf") format("truetype");
  font-weight: 400;
	font-display: swap;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('font-awesome/fontawesome-webfont.ttf') format('truetype');
    font-display: swap;
}

:root {
  --clr-primary: #de063c;
  --clr-secondary: #2699d6;
  --clr-white: #ffffff;
  --clr-negative: #dc2626;
  --clr-positive: #10b981;
  --clr-warning: #d97706;
  --clr-grey-900: #44403c;
  --clr-grey-700: #525252;
  --clr-grey-500: #78716c;
  --clr-grey-400: #a8a29e;
  --clr-grey-300: #b9b5b1;
  --clr-grey-200: #e7e5e4;
  --clr-grey-100: #f5f5f4;
  --clr-grey-50: #fafaf9;
  --clr-background: var(--clr-grey-50);
  --clr-heading: var(--clr-grey-900);
  --clr-text: var(--clr-grey-700);
  --clr-text-light: var(--clr-grey-500);
  --clr-text-lighter: var(--clr-grey-400);
  --ff-heading: "Mocha Mattari", var(--ff-body);
  --ff-body: "Museo Sans", Arial, sans-serif;
  --fw-bold: 700;
  --fw-medium: 500;
  --fw-normal: 400;
  --fw-light: 300;
  --fw-heading: var(--fw-medium);
  --fs-heading-xl: 3.5rem;
  --fs-heading-lg: 1.75rem;
  --fs-heading-reg: 1.5rem;
  --fs-heading-sm: 1.25rem;
  --fs-heading-xs: 1rem;
  --fs-body-reg: 0.95rem;
  --fs-body-sm: 0.8rem;
  --fs-body-xs: 0.65rem;
  --lh-body: 140%;
  --lh-heading: 100%;
  --kerning-text: -0.02em;
  --kerning-heading: var(--kerning-text);
  --header-height: 3.5rem;
  --tabbar-height: 4.5rem;
}

@media only screen and (min-width: 1080px) {
  :root {
    --header-height: 5rem;
    --fs-heading-xs: 1.1rem;
    --fs-body-reg: 1.1rem;
    --fs-body-sm: 1rem;
  }
    --fs-body-xs: 0.85rem;
}
*,
*::before,
*:after {
  padding: 0px;
  margin: 0px;
  list-style: none;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-size: var(--fs-body-reg);
  font-family: var(--ff-body);
  font-weight: var(--fw-light);
  line-height: var(--lh-body);
  color: var(--clr-text);
  letter-spacing: var(--kerning-text);
  background: var(--clr-background) url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/background-rv2.png") center/cover;
	background-repeat:repeat;
	background-size:750px;
  background-attachment: fixed;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-heading);
  letter-spacing: var(--kerning-heading);
}

h5,
h6 {
  font-size: var(--fs-heading-xs);
  font-family: var(--ff-body);
  font-weight: var(--fw-heading);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-heading-xl);
}

h2 {
  font-size: var(--fs-heading-lg);
}

h3 {
  font-size: var(--fs-heading-reg);
}

h4 {
  font-size: var(--fs-heading-sm);
}

h5 {
  font-size: var(--fs-heading-xs);
}

h6 {
  font-size: var(--fs-body-sm);
}

p:has(+ p) {
  margin-bottom: 0.75rem;
}

.heading {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 1080px) {
  
  body:not(.page-inbox) .heading {
    margin-inline: auto;
    width: fit-content;
    display: flex;
    align-items: center;
    height: 70px;
    background-color: var(--clr-secondary);
    border-bottom: 13px solid #E8E8E8;
    position: relative;
    color: var(--clr-white);
    font-size: var(--fs-heading-lg);
    margin-block: 2rem;
  }

  body:not(.page-inbox) .heading::before,
  body:not(.page-inbox) .heading::after {
    content: "";
    display: inline-block;
    width: 83px;
    height: 70px;
    position: absolute;
    top: 0;
    background-size: cover;
  }

  body:not(.page-inbox) .heading::before {
    background-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/ribbon-left.svg");
    left: -83px;
  }

  body:not(.page-inbox) .heading::after {
    background-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/ribbon-right.svg");
    right: -83px;
  }
}

.large {
  font-size: var(--fs-heading-sm);
  font-weight: var(--fw-heading);
}

.small {
  font-size: var(--fs-body-sm);
}

.tiny {
  font-size: var(--fs-body-xs);
}

.light {
  color: var(--clr-text-light);
}

.lighter {
  color: var(--clr-text-lighter);
}

.primary {
  color: var(--clr-primary);
}

.secondary {
  color: var(--clr-secondary);
}

.positive {
  color: var(--clr-positive);
}

.negative {
  color: var(--clr-negative);
}

.text-center {
  text-align: center;
}

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.buttons--tight {
  gap: 0.75rem;
}
.buttons--end {
  flex-direction: row;
  justify-content: flex-end;
  gap: 1rem;
}
.buttons--split {
  flex-direction: row;
  gap: 0.75rem;
}
.buttons--split .button {
  flex: 1 1 auto;
}
.buttons--full {
  width: 100%;
}

.button {
  --padding: 0.75rem 1rem;
  --font-size: var(--fs-heading-sm);
  --font-weight: var(--fw-bold);
  --button-bg: var(--clr-primary);
  --button-border: var(--button-bg);
  --button-clr: var(--clr-white);
  --border-radius: 5rem;
  display: block;
  padding: var(--padding);
  font-size: var(--font-size);
  font-family: var(--ff-body);
  font-weight: var(--font-weight);
  border-radius: var(--border-radius);
  text-align: center;
  background-color: var(--button-bg);
  border: 1px solid var(--button-border);
  color: var(--button-clr);
  line-height: 100%;
  cursor: pointer;
}
@media only screen and (min-width: 1080px) {
  .button {
    --padding: 1rem 1.5rem;
  }
}

button.orSearch {
  /* width: auto !important; */
  font-size: 1rem;
  background: none;
  border: none;
  color: var(--clr-primary);
  padding: 0.5rem;
}
	
.button--secondary {
  --button-bg: var(--clr-secondary);
  --button-border: var(--button-bg);
  --button-clr: var(--clr-white);
}
.button:disabled {
  --button-bg: var(--clr-grey-200);
  --button-border: var(--button-bg);
  --button-clr: var(--clr-grey-400);
  cursor: not-allowed;
}
.button--neutral {
  --button-bg: none;
  --button-border: var(--clr-grey-200);
  --button-clr: var(--clr-grey-500);
}
.button--neutral:hover {
	background-color: #eeeeee;
}
.button--inverted {
  --button-bg: var(--clr-white);
  --button-clr: var(--clr-primary);
  --button-border: var(--button-clr);
}
.button--bordered {
  --button-bg: var(--clr-primary);
  --button-clr: var(--clr-white);
  --button-border: var(--button-clr);
}
.button--slim {
  --padding: 0.5rem 0.5rem;
  --font-size: var(--fs-body-reg);
  --font-weight: var(--fw-medium);
  --border-radius: 0.25rem;
}

	@media only screen and (max-width: 600px) {
a.button.button--secondary.button--slim[href="/TakeAway/CheckLoyaltyRewards"] 
{width: 100%;}
	
button#addItem {
  font-size: 1.25rem;
}}
	
@media only screen and (min-width: 1080px) {
  .button--slim {
    --padding: 0.75rem 1rem;
  }
}
.button--tight {
  --padding: 0.35rem 0.5rem;
  --font-size: var(--fs-body-sm);
  --font-weight: var(--fw-reg);
  --border-radius: 0.25rem;
}
@media only screen and (min-width: 1080px) {
  .button--tight {
    --padding: 0.5rem 0.75rem;
    /* width: 100%; */
    font-weight: 500;
  }

.header__outlet button.button.button--neutral.button--tight {width:auto !important;}
  
}
.button--tighter {
  --padding: 0.35rem 0.5rem;
  --font-size: var(--fs-body-xs);
  --font-weight: var(--fw-reg);
  --border-radius: 0.25rem;
}
@media only screen and (min-width: 1080px) {
  .button--tighter {
    --padding: 0.5rem 0.75rem;
    --font-size: var(--fs-body-xs) ;
  }
}
.button--full {
  width: 100%;
}
.button--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.button--icon .icon--edit {
  margin-bottom: 0.15rem;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number] {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  background-color: var(--clr-white);
  color: var(--color-grey-700);
  display: block;
  width: 100%;
}
input[type=text]:not(.stripped),
input[type=tel]:not(.stripped),
input[type=email]:not(.stripped),
input[type=password]:not(.stripped),
input[type=number]:not(.stripped) {
  padding: 1rem;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
}
input[type=text]:not(.stripped).slim,
input[type=tel]:not(.stripped).slim,
input[type=email]:not(.stripped).slim,
input[type=password]:not(.stripped).slim,
input[type=number]:not(.stripped).slim {
  padding: 0.5rem;
}
input[type=text]:not(.stripped):focus,
input[type=tel]:not(.stripped):focus,
input[type=email]:not(.stripped):focus,
input[type=password]:not(.stripped):focus,
input[type=number]:not(.stripped):focus {
  outline: none;
}
input[type=text]:not(.stripped)::-moz-placeholder, input[type=tel]:not(.stripped)::-moz-placeholder, input[type=email]:not(.stripped)::-moz-placeholder, input[type=password]:not(.stripped)::-moz-placeholder, input[type=number]:not(.stripped)::-moz-placeholder {
  color: var(--clr-grey-400);
}
input[type=text]:not(.stripped)::placeholder,
input[type=tel]:not(.stripped)::placeholder,
input[type=email]:not(.stripped)::placeholder,
input[type=password]:not(.stripped)::placeholder,
input[type=number]:not(.stripped)::placeholder {
  color: var(--clr-grey-400);
}
input[type=text].stripped,
input[type=tel].stripped,
input[type=email].stripped,
input[type=password].stripped,
input[type=number].stripped {
  border: none;
  outline: none;
}
input[type=text].error,
input[type=tel].error,
input[type=email].error,
input[type=password].error,
input[type=number].error {
  border-color: var(--clr-negative);
}

input[type=radio],
input[type=checkbox] {
  --size: 1.25rem;
  --transition: 100ms ease;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
  background-color: var(--clr-white);
  cursor: pointer;
}

input[type=radio] {
  --radius: 50%;
}
input[type=radio]::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--size) * 0.65);
  height: calc(var(--size) * 0.65);
  background-color: transparent;
  border-radius: var(--radius);
  transition: var(--transition);
}
input[type=radio]:checked {
  border-color: var(--clr-primary);
}
input[type=radio]:checked::before {
  background-color: var(--clr-primary);
}

input[type=checkbox] {
  --radius: 0.15rem;
}
input[type=checkbox]:checked {
  background-color: var(--clr-primary);
}
input[type=checkbox]::before {
  content: "✓";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-white);
}
input[type=checkbox]:checked {
  border-color: var(--clr-primary);
  background-color: var(--clr-primary);
}

textarea {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  width: 100%;
  height: 6.5rem;
  max-height: 6.5rem;
  padding: 1rem;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--color-grey-700);
  font-size: inherit;
}
textarea:focus {
  outline: none;
  border: 1px solid var(--clr-primary);
  box-shadow: 0px 0px 6px rgba(225, 29, 69, 0.35);
}
textarea::-moz-placeholder {
  color: var(--clr-grey-400);
}
textarea::placeholder {
  color: var(--clr-grey-400);
}

button,
select {
  background-color: inherit;
  border: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
}

.icon-input {
  --color: var(--clr-grey-400);
  position: relative;
}
.icon-input input[type=text],
.icon-input input[type=tel],
.icon-input input[type=email],
.icon-input input[type=password] {
  padding-left: 3rem;
  transition: 200ms ease;
}
.icon-input input[type=text].slim,
.icon-input input[type=tel].slim,
.icon-input input[type=email].slim,
.icon-input input[type=password].slim {
  padding-left: 2.25rem;
}
.icon-input.selected input[type=text],
.icon-input.selected input[type=tel],
.icon-input.selected input[type=email],
.icon-input.selected input[type=password] {
  border: 2px solid var(--clr-primary);
  color: var(--clr-text);
  background-color: var(--clr-grey-50);
}
.icon-input.selected .icon {
  background-color: var(--clr-primary);
}
.icon-input .icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.icon-input .icon:has(+ .slim) {
  left: 0.5rem;
}
.icon-input:has(> button) button {
  top: 50%;
  right: 10px;
  left: auto;
  position: absolute;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  grid-template-columns: auto auto;
}

button#mobile-search::before {
  content: "Lookup";
  font-size: 14px;
  margin-right: 5px;
  color: #5f5d5b;
  font-weight: bold;
}	
	
.icon-input:has(> button) button .icon {
  position: static;
  transform: none;
  display: block;
}
.icon-input:has(+ *) {
  margin-bottom: 0.5rem;
}
.icon-input.search--sticky {
  margin: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  z-index: 5;
  transition: 300ms ease;
  margin-top: calc(-1 * var(--header-height));
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-grey-200);
  height: var(--header-height);
  display: flex;
  align-items: stretch;
}
.icon-input.search--sticky .icon {
  position: static;
  transform: translate(0);
}
.icon-input.search--sticky input[type=text] {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  background-color: transparent;
  height: auto;
  padding: 1rem;
  border: 0;
}
.icon-input.search.active {
  margin-top: 0;
}
.icon-input.search.active ~ .menu-selector {
  top: calc(var(--header-height) * 2);
}
.icon-input.search.active ~ .content {
  margin-top: var(--header-height);
}

.error {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(220, 38, 38, 0.1);
  color: var(--clr-negative);
  padding-inline: 0.35rem;
  border-radius: 0.15rem;
}
.error::after {
  content: none;
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5rem solid var(--clr-negative);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  position: absolute;
  top: 100%;
  left: 0.75rem;
}
.error ~ input[type=text],
.error ~ input[type=tel],
.error ~ input[type=email],
.error ~ input[type=password] {
  border-color: var(--clr-negative);
  box-shadow: 0px 0px 5px 2px rgba(220, 38, 38, 0.1);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}
select:focus {
  outline: none;
}

.input--error input,
.input--error textarea {
  border-color: var(--clr-negative) !important;
  border-width: 2px !important;
  color: var(--clr-negative) !important;
}
.input--error--textarea {
  padding-bottom: 3px;
}

.field-group {
  --space: 0.75rem;
}
.field-group--relaxed {
  --space: 1.5rem;
}
.field-group:has(+ *) {
  margin-bottom: var(--space);
}
.field-group__header {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label {
  position: relative;
}
.label:not(:has(> .quantity)) {
  cursor: pointer;
}
.label:not(.stripped) {
  --padding: 0.75rem;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  padding: var(--padding);
  transition: all 200ms ease;
}
.label:not(.stripped).label--relaxed {
  --padding: 1rem;
}
.label:not(.stripped).label--nopadding {
  --padding: 0;
}
.label:not(.stripped):has(> .label__info) {
  padding-block: 0.75rem;
}
.label:not(.stripped).label--vertical {
  flex-direction: column;
  align-items: flex-start;
  max-height: 3.5rem;
  padding-block: 0.5rem;
}
.label:not(.stripped) .label__info * {
  line-height: 100%;
  max-width: 25vw;
}
.label:not(.stripped) .label__price {
  font-size: var(--fs-body-xs);
  color: var(--clr-text-light);
  margin-top: 0.35rem;
}
.label:has(+ *) {
  margin-bottom: 0.5rem;
}
.label:has(.tiny) input[type=text] {
  padding-top: 1.5rem;
}
.label .tiny {
  line-height: 150%;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}
.label .icon,
.label img {
  margin-right: 0.75rem;
}
.label img {
  width: 2.25rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.label input, .label__button {
  margin-left: auto;
}
.label .quantity {
  margin-left: auto;
}
.label .quantity .icon {
  margin: 0;
}
.label:has(> input:checked), .label:has(.icon--minus:not(.disabled)) {
  border-left-width: 0.5rem;
  border-left-color: var(--clr-primary);
  background-color: var(--clr-grey-50);
}
.label p {
  margin: 0;
}

.label-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.label-inline:has(+ *:not(.editor__options)) {
  margin-bottom: 0.5rem;
}
.label-inline input {
  flex-shrink: 0;
}

.label--error {
  border-color: var(--clr-negative) !important;
  border-width: 2px !important;
  color: var(--clr-negative) !important;
}
.label--error + .toaster--inline {
  margin-bottom: 1rem;
}

.block {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.5rem;
}
.block:has(+ *) {
  margin-bottom: 0.5rem;
}
.block > *:not(:last-child) {
  margin-bottom: 0.5rem;
}
.block:last-child {
  margin-bottom: 0;
}
.block__header {
  display: flex;
  align-items: center;
}
.block__header > *:not(:last-child) {
  margin-right: 0.5rem;
}
.block__header img {
  max-height: 1.5rem;
}
.block__header .button {
  margin-left: auto;
}
.block__info {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.block__info.active {
  max-height: 20rem;
}
.block__distance, .block__price {
  margin-left: auto;
}

.statuses {
  display: flex;
  width: 100%;
  gap: 0.5rem;
}
.statuses__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.statuses__group + .status {
  margin-left: auto;
}
.statuses__group .icon {
  margin-right: 0.35rem;
}
.statuses .delLeadTimeQuicker,
.statuses .colLeadTimeQuicker {
  color: var(--clr-positive);
}
.statuses .delLeadTimeQuicker .icon,
.statuses .colLeadTimeQuicker .icon {
  background-color: var(--clr-positive);
}
.statuses .delLeadTimeSame,
.statuses .colLeadTimeSame {
  color: var(--clr-positive);
}
.statuses .delLeadTimeSame .icon,
.statuses .colLeadTimeSame .icon {
  background-color: var(--clr-positive);
}
.statuses .delLeadTimeSlower,
.statuses .colLeadTimeSlower {
  color: var(--clr-negative);
}
.statuses .delLeadTimeSlower .icon,
.statuses .colLeadTimeSlower .icon {
  background-color: var(--clr-negative);
}
.statuses .delLeadTimeSlower,
.statuses .delLeadTimeSame,
.statuses .delLeadTimeQuicker,
.statuses .colLeadTimeSlower,
.statuses .colLeadTimeSame,
.statuses .colLeadTimeQuicker {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-body-xs);
}
.status {
  display: flex;
  align-items: center;
  font-size: var(--fs-body-sm);
}
.status:not(:has(> .icon))::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.35rem;
}
.status:not(:has(> .icon)).open::before {
  background-color: var(--clr-positive);
}
.status:not(:has(> .icon)).closed::before {
  background-color: var(--clr-negative);
}

.product-carousel {
  margin-right: -1.25rem;
}

.product-carousel .products {
  flex-wrap: nowrap;
  gap: unset;
  flex-direction: row;
}
.product-carousel .products .product {
  max-width: none;
}
.product-carousel .products .product__image {
  height: 5.5rem;
  width: auto;
}
.product-carousel .products .product__details {
  padding: 0.5rem;
  min-height:3rem;
}

.upsell .product {
  align-items: stretch;
  display: flex;
  min-height: 6.5rem !important;
}
@media only screen and (min-width: 1080px) {
  .upsell .product {
    flex-direction: column;
    min-height: 22rem;
  }
}
.upsell .product__details {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
}
.upsell .product__header {
  flex-direction: column;
  margin: 0;
}
.upsell .product__header .product__price {
  margin-left: 0;
}
.upsell .product__image {
  width: 100%;
  height: 100%;
  max-width: 4.5rem;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (max-width: 1080px) {
 .products--grid {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.products--grid .product {
  width: 100%;
  max-width: calc(50% - 0.5rem);
  flex-direction: column;
  text-align: center;
}
.products--grid .product__image {
  max-width: none;
  max-height: none;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid var(--clr-grey-200);
}
.products--grid .product__header {
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  align-items: center;
}
.products--grid .product__price {
  margin-left: 0;
}
.products--grid .product__qty {
  position: absolute;
  right: 0;
  top: 0.75rem;
  background-color: var(--clr-primary);
  color: var(--clr-white);
}
.products--grid .product__customise {
  padding: 0.35rem;
}
.products--grid .product__title {
  margin-right: 0;
  min-height: 1.8rem;
}
.products--grid .product__description {
  /* display: none; */
  margin-top: 10px;
  -webkit-line-clamp: 3;
  font-size: 13px;
  max-width: 100%;
  margin-bottom: 18px;
} 
}
@media only screen and (min-width: 1080px) {
  .products:not(.mealDealType):not(.swiper-wrapper):not(.pickOnePizza) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    flex-direction: row;
  }
}

.product {
  display: flex;
  position: relative;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
}
.product > * {
  transition: 250ms ease;
}
@media only screen and (min-width: 1080px) {
  .product {
    flex-direction: column;
  }
}
.product.update .product__qty {
  animation: 500ms ease buzz;
}
.product.selected, .product:has(> input:checked), .product:has(.icon--minus:not(.disabled)) {
  border-left-width: 0.5rem;
  border-left-color: var(--clr-primary);
  background-color: var(--clr-grey-50);
}
.product__image {
  width: 7rem;
  height: 7rem;
  text-align: center;
  flex-shrink: 0;
  border-right: 1px solid var(--clr-grey-200);
  position: relative;
}
@media only screen and (min-width: 1080px) {
  .upsell .product__image {
    max-width: none;
    border-bottom: 1px solid var(--clr-grey-200);
  }
  .product__image {
    width: 100% !important;
    height: 14rem !important;
    /* cursor: pointer; */
    /* object-position: left; */
  }

.popup.open	.product__image {
    width: 100%;
    height: 10rem !important;
    cursor: pointer;
    /* object-position: left; */
  }
	
  .product__image .backgroundFloat {
    width: 100%;
    height: 14rem;
    background-size: cover;
    background-position: bottom;
    background-color: grey;
    content: "\f110";
    font-family: FontAwesome;
  }
}
.product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product__image.contained {
  background-color: var(--clr-grey-50);
  padding: 1rem;
}
.product__image.contained img {
  -o-object-fit: contain;
     object-fit: contain;
}
.product__details {
  background-color: var(--clr-white);
  flex: 1 1 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1080px) {
  .product__details {
    align-items: center;
    min-height: 3rem;
    /* pointer-events: none; */
  }
}
.product__buttons {
  display: none;
  padding: 0 1rem 1rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
@media only screen and (min-width: 1080px) {
  .product__buttons {
    display: flex;
  }
}
.product__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 0.15rem;
}
.product__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-right: auto;
  /* padding-right: 0.75rem; */
  /* min-height:2.8rem; */
}
@media only screen and (min-width: 1080px) {
  .product__title {
    padding-right: 0;
    margin:auto;
  }

  .mealDealType .product__title {
    margin-right: 12px;
  }
}
@media only screen and (min-width: 1080px) {
  .product__price {
    /* display: none; */
    margin-left: 1rem;
    color: var(--clr-primary);
    font-weight: 300;
  }
}
.product__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: calc(100%);
}
@media only screen and (min-width: 1080px) {
  .product__description {
    text-align: center;
    font-size: var(--fs-body-sm);
    -webkit-line-clamp: 4;
  }
}
.product__description > p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 1080px) {
  .product__description > p {
    text-align: center;
  }
}
.product__description > p:not(:first-child) {
  display: none;
}
.product__quick {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 1080px) {
  .product__quick {
    display: none;
  }
}
.product__add {
  background-color: var(--clr-primary);
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  border-top-left-radius: 0.2rem;
}
.product__options {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0.5rem;
  background-color: white;
  display: block;
  min-width: 11rem;
  overflow: hidden;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 150ms ease;
}
.product__options.active {
  opacity: 1;
  visibility: visible;
}
.product__option {
  padding: 0.5rem 0.5rem;
  width: 100%;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: space-between;
}
.product__option:not(:last-child) {
  border-bottom: 1px solid var(--clr-grey-100);
}
.product__option:hover {
  background-color: var(--clr-grey-100);
}
.product__qty {
  background-color: var(--clr-grey-100);
  color: var(--clr-text);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  min-width: 1.4rem;
  height: 1.4rem;
  text-align: center;
  margin-right: 0.75rem;
  border-radius: 0.15rem;
  flex-shrink: 0;
  padding: 0 0.3rem;
}
@media only screen and (min-width: 1080px) {
  .product__qty {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    margin-right: 0;
  }
}
.product__customise {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--clr-primary);
  color: var(--clr-white);
  line-height: var(--lh-heading);
  padding: 0.25rem;
  font-weight: 600;
  font-size: 0.8rem;
}
@media only screen and (min-width: 1080px) {
  .product__customise {
    /* display: none; */
  }
}

.header__upsell .product {
  flex-direction: row;
}
.header__upsell .product__image {
  width: 4.5rem !important;
  height: auto !important;
}
.header__upsell .product__header {
  flex-direction: column;
  align-items: start;
}
.header__upsell .product__title {
  margin-bottom: 0px;
  margin-right: 1rem;
  min-width: 5rem;
  text-align: left;
}

.header__upsell .product__previousPrice,
.upsell-carousel .product__previousPrice {
  text-decoration: line-through;
  margin: 0px 5px 0px 0px;
}
.header__upsell .product__price {
  font-size: var(--fs-body-sm);
  margin-left: 0px;
}
.header__upsell .product .button {
  margin-left: auto;
}
.header__upsell .product__details {
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  flex-direction: row;
}

.page-basket .section .items .previousPrice {
    font-weight: lighter;
    text-decoration: line-through;
    margin-right: 10px;
}

.offer {
  width: 100%;
}
.offer:not(:last-child) {
  margin-bottom: 0.5rem;
}

.overview {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.5rem;
}
.overview__levels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overview__progress {
  background-color: var(--clr-grey-100);
  width: 100%;
  height: 0.5rem;
  border-radius: 2px;
  position: relative;
  margin-block: 0.5rem;
}
.overview__bar {
  position: absolute;
  left: 0;
  width: 85%;
  height: 100%;
  background-color: var(--clr-primary);
}
.overview .button {
  margin-top: 0.5rem;
}

.ladder {
  margin-top: 1rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 0.5rem;
}
.ladder__item {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.5rem;
  position: relative;
}
.ladder__item-inner {
  display: flex;
  align-items: center;
}
.ladder__item-level {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 0.5rem;
  flex: 0 0 3.5rem;
  margin-right: 1rem;
  text-align: center;
}
.ladder__item-content {
  flex: 1 1 auto;
  gap: 0.35rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.ladder__item-content .button {
  margin-bottom: 0.25rem;
  display: none;
  --padding: 0.3rem 0.5rem;
}
.ladder__item-heading:has(+ .button) {
  margin-right: 0.25rem;
}
.ladder__item-text {
  flex: 0 0 100%;
}
.ladder__item-accordion {
  opacity: 1;
  visibility: hidden;
}
.ladder__item-accordion.collapsed {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.ladder__item-toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.ladder__item.earned {
  border-color: var(--clr-primary);
}
.ladder__item.earned .ladder__item-content .button {
  display: block;
}
.ladder__item.redeemed {
  pointer-events: none;
  cursor: not-allowed;
}
.ladder__item.redeemed * {
  opacity: 0.5;
}

.icon {
  --size: 1.15rem;
  width: var(--size);
  height: var(--size);
  background-color: var(--clr-grey-400);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  display: inline-block;
}
.icon.disabled {
  background-color: var(--clr-grey-200);
}
.icon--dark {
  background-color: var(--clr-grey-900);
}
.icon--white {
  background-color: var(--clr-white);
}
.icon--primary {
  background-color: var(--clr-primary);
}
.icon--neg {
  background-color: var(--clr-negative);
}
.icon--pos {
  background-color: var(--clr-positive);
}
.icon--sm {
  --size: 1rem;
}
.icon--lg {
  --size: 1.5rem;
}
.icon--full {
  --size: 100%;
  aspect-ratio: 1/1;
}
.icon--home {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/home.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/home.svg");
}
.icon--home-sharp {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/home-sharp.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/home-sharp.svg");
}
.icon--order {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/order.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/order.svg");
}
.icon--rewards {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/rewards.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/rewards.svg");
}
.icon--inbox {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/inbox.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/inbox.svg");
}
.icon--more {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/more.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/more.svg");
}
.icon--search {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/search.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/search.svg");
}
.icon--chev-down {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/chev-down.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/chev-down.svg");
}
.icon--chev-down.active {
  rotate: -180deg;
}
.icon--filter {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/filter.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/filter.svg");
}
.icon--back {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/back.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/back.svg");
}
.icon--bike {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bike.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bike.svg");
}
.icon--clock {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/clock.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/clock.svg");
}
.icon--bag {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bag.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bag.svg");
}
.icon--user {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/user.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/user.svg");
}
.icon--pin {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/pin.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/pin.svg");
}
.icon--info {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/info.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/info.svg");
}
.icon--help {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/help.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/help.svg");
}
.icon--exit {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/exit.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/exit.svg");
}
.icon--chev-right {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/chev-right.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/chev-right.svg");
}
.icon--pizza {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/pizza.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/pizza.svg");
}
.icon--close {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/close.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/close.svg");
}
.icon--lock {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/lock.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/lock.svg");
}
.icon--lock-open {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/lock-open.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/lock-open.svg");
}
.icon--minus {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/minus.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/minus.svg");
}
.icon--plus {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/plus.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/plus.svg");
}
.icon--bin {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bin.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bin.svg");
}
.icon--phone {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/phone.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/phone.svg");
}
.icon--card {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/card.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/card.svg");
}
.icon--tick {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/ticks.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/ticks.svg");
}
.icon--shield {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/shield.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/shield.svg");
}
.icon--bell {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bell.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bell.svg");
}
.icon--message {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/message.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/message.svg");
}
.icon--locate {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/locate.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/locate.svg");
}
.icon--send {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/send.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/send.svg");
}
.icon--edit {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/edit.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/edit.svg");
}
.icon--percentage {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/percentage.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/percentage.svg");
}
.icon--euro {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/card.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/card.svg");
}
.icon--dragger {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/dragger.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/dragger.svg");
}
.icon--car {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/car.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/car.svg");
}
.icon--mark-read {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/mark-read.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/mark-read.svg");
}
.icon--add {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/add.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/add.svg");
}
.icon--alert {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/alert.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/alert.svg");
}
.icon--alarm {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/alarm.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/alarm.svg");
}
.icon--place-order {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/place-order.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/place-order.svg");
}
.icon--ladder {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/ladder.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/ladder.svg");
}
.icon--enjoy {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/enjoy.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/enjoy.svg");
}
.icon--repeat {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/repeat.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/repeat.svg");
}
.icon--bars {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bars.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/bars.svg");
}
.icon--mobile {
  mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/mobile.svg");
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/icons/mobile.svg");
}

.dropdown {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 5rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  font-size: var(--fs-body-sm);
  font-family: var(--ff-body);
  font-weight: var(--fw-body);
  background-color: var(--clr-white);
}
.dropdown__text {
  margin-right: 0.5rem;
}
.dropdown--full {
  width: 100%;
}
.dropdown--relaxed {
  padding: 1rem;
  font-size: 1rem;
}

.menu-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background-color: var(--clr-white);
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  transition: 300ms ease;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  display: grid;
  place-content: center;
  padding-bottom: 5.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.overlay.visible {
  opacity: 1;
  visibility: visible;/* Darren changed this to hidden from visible */
}

.page-menu .overlay.visible {
  opacity: 1;
  visibility: visible;/* Darren changed this */
}
.page-outlets .overlay.visible {
  opacity: 1;
  visibility: visible;
}

.drawer {
  background-color: var(--clr-white);
  border-top: 1px solid var(--clr-grey-200);
  padding: 1.5rem;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  transition: 300ms ease;
}
.drawer.open {
  transform: translateY(-100%);
}
@media only screen and (min-width: 1080px) {
  .drawer {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transform-origin: center;
    width: 100%;
    max-width: 40rem;
    max-height: 35rem;
    overflow: auto;
    border-radius: 0.65rem;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  }
  .drawer.open {
    scale: 1;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.drawer__disclaimer {
  margin-bottom: 1rem;
}
.drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 300ms ease-in-out;
}
.drawer__row:has(+ *:not(.hidden)) {
  margin-bottom: 0.75rem;
}
.drawer__row.hidden {
  height: 0;
  overflow: hidden;
}
.drawer--contact > *:has(+ *) {
  margin-bottom: 0.5rem;
}
.drawer .summary {
  padding: 0;
  border: 0;
  width: 100%;
}
.drawer .icon-input input[type=text] {
  text-align: center;
  padding-inline: 2rem;
}
.drawer .icon-input:has(+ .icon-input) {
  margin: 0 0.5rem 0 0;
}
.drawer__select {
  max-height: 22rem;
  overflow: auto;
}

.list {
  height: calc(100vh - 4.5rem);
  background-color: var(--clr-white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem;
}
.list__item {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
}
.list__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.list__item .icon:first-of-type {
  margin-right: 1rem;
}
.list__item .icon:last-of-type {
  margin-left: auto;
}
.list__item--greyed {
  background-color: var(--clr-grey-50);
}
.list__item--negative {
  border-color: var(--clr-negative);
  color: var(--clr-negative);
  margin-top: auto;
}
.list__back, .list__close {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-left: 0px;
  gap: 0.4rem;
  flex-direction: ;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quantity__total {
  line-height: 100%;
  min-width: 1.15rem;
  text-align: center;
}
.quantity .icon {
  cursor: pointer;
}
.page-basket .items .quantity__total {
	min-width: 1.3em;
}

.popup {
  --imageHeight: 18rem;
  --footerHeight: 4.5rem;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  transform: translate(0, 100%);
  transform-origin: center;
  left: 0;
  right: 0;
  z-index: 30;
  background-color: var(--clr-white);
  transition: 400ms ease;
}
.popup.open {
  transform: translate(0, 0);
}
@media only screen and (min-width: 1080px) {
  .popup {
    --imageHeight: 20rem;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 90vw;
    max-width: 80rem;
    height: 70vh;
    max-height: 60rem;
    border-radius: 1rem;
    box-shadow: 2px 2px 8px 4px rgba(0, 0, 0, 0.15);
  }

.group__item .pickOnePizza {
  margin-bottom: 1rem;
  gap: 1rem;
  grid-template-columns: 24% 24% 24% 24% !important;
  display: grid;
}

.mealDealType.products {
  display: grid;
  grid-template-columns: 50% 50%;
}

  .popup.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    overflow: auto;
  }
}
.popup--x {
  top: 0;
  right: auto;
  height: calc(100vh - (4.5rem + 1px));
  transform: translate(100vw, 0);
}
.popup--x.open {
  transform: translate(0, 0);
}
.popup--center {
  top: 50%;
  left: 50%;
  width: calc(100% - 2.5rem);
  max-width: 25rem;
  height: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  border-radius: 0.25rem;
}
.popup--center.open {
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}
.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin-left: auto;
  z-index: 10;
  border: none;
  background-color: var(--clr-white);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-color: var(--clr-grey-200);
  border-style: solid;
  border-radius: 50%;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
@media only screen and (min-width: 1080px) {
  .popup__close {
    right: auto;
    left: 1rem;
    z-index: 3;
  }
}
.popup__image, .popup__video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--clr-grey-200);
  height: var(--imageHeight);
  width: 100%;
  z-index: 2;
  transition: 200ms ease;
}
@media only screen and (min-width: 1080px) {
  .popup__image, .popup__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: calc(100% - var(--footerHeight));
    display: flex !important;
  }
}
.popup__image img,
.popup__image video, .popup__video img,
.popup__video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: bottom;
}
.popup__panel {
  padding: 1.5rem;
}
.popup__panel:has(.popup__content) {
  padding: 0;
}
@media only screen and (min-width: 1080px) {
  .popup__panel {
    padding-left: 50%;
  }
  .popup__panel > .popup__panel {
    padding: 1.5rem;
  }
  .popup__panel:has(.popup__content) {
    padding-left: 50%;
  }
}
.popup__panel[data-panel-status=open], .popup__panel[data-panel-status=closed] {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: var(--clr-white);
}
.popup__panel[data-panel-status=open] .button, .popup__panel[data-panel-status=closed] .button {
  margin-top: auto;
}
.popup__panel[data-panel-status=closed] {
  left: 100%;
}
.popup__panel[data-panel-status=open] {
  transition: 300ms ease;
}
.popup__panel:has(+ .popup__footer) {
  height: calc(100% - var(--footerHeight));
  overflow: auto;
}
.popup__content {
  padding: 1.5rem;
}
.popup__header {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 0.75rem;
}
.popup__header .quantity,
.popup__header button {
  margin-left: auto;
  display: none;
}
.popup__header:has(+ .popup__content) {
  padding: 1.5rem 1.5rem 0 1.5rem;
  margin: 0;
}
.popup__desc {
  flex: 1 1 100%;
}
.popup__header {
  margin-bottom: 1.25rem;
}
.popup__heading {
  margin-bottom: 0.5rem;
}
.popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--footerHeight);
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  position: sticky;
  bottom: 0;
}
.popup__footer .button:disabled {
  background-color: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  opacity: 0.5;
}
.popup__footer:not(:has(> .popup__total)) {
  justify-content: stretch;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.popup__total {
  color: inherit;
}
.popup .search + .label {
  transition: 300ms ease;
  transform: scaleY(1);
  transform-origin: top center;
}
.popup .search:has(input[type=text]:-moz-placeholder-shown) + .buttons > .label {
  transform: scaleY(0);
}
.popup .search:has(input[type=text]:placeholder-shown) + .buttons > .label {
  transform: scaleY(0);
}
.popup__back {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popup__title:has(+ .popup__desc) {
  margin-bottom: 0.35rem;
}
.popup__items {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.popup__item::before {
  content: "-";
  display: inline-block;
  margin-right: 0.25rem;
}
.popup__item + .popup__item {
  margin-top: 0.15rem;
}

.banner {
  background-color: var(--clr-primary);
  position: fixed;
  bottom: 4.5rem;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 15% 70% 15%;
  align-items: center;
  padding: 0.75rem 1rem;
  transition: 0.3s ease;
  transition-delay: 200ms;
  transform: scale3d(1, 1, 1);
  transform-origin: bottom;
  overflow: hidden;
  z-index: 5;
}
@media only screen and (min-width: 1080px) {
  .banner {
    display: none;
  }
}
.banner.hidden {
  transform: scale3d(1, 0, 1);
}
.banner.update .banner__title-text {
  animation: 3s ease roll;
}
.banner > * {
  color: var(--clr-white);
}
.banner__quantity {
  display: inline-flex;
  justify-self: start;
  background-color: var(--clr-white);
  color: var(--clr-primary);
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.15rem;
  border-radius: 0.25rem;
}
.banner__title {
  text-align: center;
  max-height: var(--fs-heading-reg);
  overflow: hidden;
}
.banner__title-text {
  color: var(--clr-white);
  transform: translateY(calc(var(--fs-heading-reg) * -1));
}
.banner__price {
  justify-self: end;
}

.items {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  transition: margin 300ms ease-in-out;
}
@media screen and (min-width: 1080px) {
  .items {
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
  }
}
.items.editing .item__inner {
  transform: translateX(5.5rem);
}
.items:has(> .item > .item__edit) {
  padding: 0;
}
.items:has(> .item > .item__edit) .item:not(:last-of-type) {
  margin-bottom: 0px;
}
.items:has(> .item > .item__edit) .item__inner {
  padding: 1rem;
}

.item {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1080px) {
  .page-basket .item {
    border-bottom: 1px solid var(--clr-grey-200);
  }
}
.item__inner {
  background-color: var(--clr-white);
  padding: 1rem;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 1080px) {
  .item__inner {
    padding-block: 1.25rem;
    /*padding-inline: 0px 1.25rem;*/
  }
	  .item__inner:not(:last-of-type) {
    margin-bottom: 0.75rem;
  }
}
.item__header {
  display: flex;
*justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.item__header img {position: absolute;left: 0;top: 0;height: 110px;max-width: 110px;}
.item__header:has(+ .item__details) {
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1080px) {
  .item__header:has(+ .item__details) {
    margin-bottom: 0px;
    /* align-items: flex-start; */
  }
}
.item:not(:last-child) .item__inner {
  padding-bottom: 0;
}
.item:has(.reveal) .item__inner {
  padding: 0.75rem 1rem;
}
@media only screen and (min-width: 1080px) {
  .item:has(.reveal) .item__inner {
    padding-block: 1.25rem;
    padding-inline: 8rem 1.25rem;
    min-height: 110px;
  }
}
.item__qty, .item__price {
  flex: 0 0 auto;
}
.item__price {
  min-width: 3rem;
  text-align: right;
}
.item__qty {
  background-color: var(--clr-grey-100);
  min-width: 1.5rem;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
}
@media screen and (min-width: 1080px) {
  .item__qty {
    display: none;
  }
}
.item__details {
  flex: 1 1 auto;
}
.item__name {
  margin-right: auto;
}
.item__name + .item__attributes,
.item__name + .item__choices {
  margin-top: 0.25rem;
}
.item__name:has(+ .item__dropdown) {
  margin: 0;
}
.item__dropdown {
  margin-right: auto;
}
.item.unavailable .item__name,
.item.unavailable .item__price {
  color: var(--clr-text-lighter);
  text-decoration: line-through;
}
.item__choice {
  margin-left: 0;
}
.item__choice:has(+ .item__choice) {
  margin-bottom: 0.25rem;
}
.item__attributes {
  margin-top: 0.15rem;
  margin-left: 0.75rem;
  width: 100%;
  color: var(--clr-grey-400);
  max-height: 0rem;
  overflow: hidden;
  transition: 300ms ease;
}
@media only screen and (min-width: 1080px) {
	.item__attributes {
		max-height: 0;
		max-width: 75%;
	}
}

.item.attrs-visible .item__attributes {
  max-height: 60rem;
}
.item.attrs-visible .item__dropdown .icon {
  rotate: 180deg;
}
.item.unavailable .item__choice,
.item.unavailable .item__attributes {
  margin-left: 1.5rem;
  text-decoration: line-through;
}
.item__attribute {
  display: flex;
  gap: 0.25rem;
}
.item__options {
  display: none;
}
@media only screen and (min-width: 1080px) {
  .item__options {
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 1rem;
  }

  .item__options .quantity .icon {
    --size: 1.25rem
  }

  .item__edit,
  .item__remove {
    font-size: calc(var(--fs-body-sm) * 1.1);
  }

  .item__edit {
    color: var(--clr-positive);
  }

  .item__remove {
    color: var(--clr-negative);
  }
}

.upsell {
  margin-right: -1.25rem;
}
@media only screen and (min-width: 1080px) {
  .upsell {
    margin-right: 0px;
  }
}
.upsell__heading {
  margin-bottom: 0.5rem;
}

.voucher {
  position: relative;
  margin-bottom: 0.5rem;
}
.voucher input[type=text] {
  padding: 1rem;
}
.voucher .button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  min-width: 5rem;
}

.summary {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.25rem;
}
.summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary__row:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.summary .primary {
  margin-left: 0.25rem;
}

.timeline {
  padding: 1.5rem;
}
.timeline__item {
  display: flex;
  align-items: stretch;
}
.timeline__item:not(:last-of-type) .timeline__step::after {
  content: "";
  width: 0.15rem;
  min-height: 6rem;
  display: block;
  border-left-width: 0.15rem;
  border-left-style: dashed;
  border-left-color: var(--clr-grey-400);
}
.timeline__item.complete .timeline__step::after, .timeline__item.current .timeline__step::after {
  border-left-color: var(--clr-primary);
}
.timeline__item.complete .timeline__step .timeline__icon, .timeline__item.current .timeline__step .timeline__icon {
  background-color: var(--clr-primary);
}
.timeline__item.complete .timeline__step .icon, .timeline__item.current .timeline__step .icon {
  background-color: var(--clr-white);
}
.timeline__item.complete .timeline__step::after {
  border-left-style: solid;
}
.timeline__icon {
  background-color: var(--clr-grey-200);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.timeline__icon .icon {
  background-color: var(--clr-grey-400);
}
.timeline__step {
  margin-right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__details {
  margin-top: 0.5rem;
}
.timeline__heading {
  margin-bottom: 0.5rem;
}
.timeline .button {
  margin-top: 2rem;
}

.messages.editing .message__checkbox {
  transform: translateX(0);
}
@media only screen and (min-width: 1080px) {
  .messages {
    padding-right: 0px;
    grid-column: 1/2;
    margin-right: 1.5rem;
  }
}

.message {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 1080px) {
  .message {
    border-radius: 0.35rem;
    margin-bottom: 0.75rem;
  }
  .message__wrap {
    border: 1px solid var(--clr-grey-200);
  }
}
.message__wrap {
  position: relative;
  z-index: 5;
  background-color: var(--clr-grey-50);
  border-bottom: 1px solid var(--clr-grey-200);
  display: flex;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 1080px) {
  .message__wrap {
    border-radius: 0.35rem;
  }
}
.message__accordion, .message__checkbox {
  padding: 1rem;
  text-align: center;
  flex-shrink: 0;
  width: 3rem;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.message__checkbox {
  background-color: var(--clr-grey-50);
  transform: translateX(-100%);
  transition: 200ms ease-in-out;
  z-index: 2;
}
@media only screen and (min-width: 1080px) {
  .message__checkbox {
    transform: translateX(0);
  }
}
.message__inner {
  display: flex;
  padding: 1rem 1rem 1rem 0;
  margin-left: 3rem;
  position: relative;
  width: 100%;
}
.message__type {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 1rem 0;
  width: 1.15rem;
}
.message__content {
  margin-left: 2rem;
  width: 100%;
}
.message__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.message__text {
  margin-top: 0.5rem;
}
.message__reveal {
  transition: 200ms ease-in-out;
  transform-origin: top center;
  transform: scaleY(1);
  max-height: 100rem;
}
@media only screen and (min-width: 1080px) {
  .message__reveal {
    border-top-left-radius: 0.35rem;
    border-bottom-left-radius: 0.35rem;
  }
}
.message.unread .message__checkbox {
  background-color: var(--clr-white);
}
.message.unread .message__title,
.message.unread .message__date {
  color: var(--clr-primary);
}
.message.unread .message__wrap {
  background-color: var(--clr-white);
}
.message.unread .message__wrap .icon {
  background-color: var(--clr-primary);
}
.message__group .message__toggle {
  rotate: 180deg;
}
.message__group.collapsed .message__toggle {
  rotate: 0deg;
}
.message__group.collapsed .message__reveal {
  transform: scaleY(0);
  max-height: 0;
}

.times__header .grid__item:nth-of-type(1) {
  grid-column: 2/3;
}
.times__header .grid__item:nth-of-type(2) {
  grid-column: 3/4;
}
.times .current * {
  font-weight: var(--fw-bold);
}
.times > *:has(+ *) {
  margin-bottom: 0.35rem;
}

.toaster {
  text-align: center;
  border-radius: 0.15rem;
  color: var(--clr-negative);
  position: fixed;
  z-index: 30;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  transition: 150ms ease-in-out;
  width: calc(100% - 2rem);
  max-width: 25rem;
  overflow: hidden;
  /* box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.15); */
}
.toaster.active {
  transform: translateX(-50%) translateY(-1.25rem);
}
.toaster.active ~ .items {
  margin-top: 0.5rem;
}
.toaster__text {
  padding: 0.75rem 1rem;
}
.toaster__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
}
.toaster__inner .toaster__text {
  padding: 0;
}
.toaster--positive {
  background-color: var(--clr-positive);
}
.toaster--negative {
  background-color: var(--clr-white);
}
.toaster--inline {
  position: static;
  width: auto;
  max-width: none;
  transform: translate(0);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  max-height: 0px;
  transition: 500ms ease-in-out;
  box-shadow: none;
}
.toaster--inline.active {
  transform: translate(0);
  max-height: 10rem;
}
.toaster--validation {
	margin-top: -0.5em;
	margin-bottom: 1em;
}

.modal {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 40;
  width: 100%;
  max-width: 22rem;
  transform: translate(-50%, -50%);
  background-color: var(--clr-white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.modal > *:has(+ *) {
  margin-bottom: 1rem;
}

.widget__toolbar {
  overflow: hidden;
  max-height: 0px;
  opacity: 0;
  transition: opacity 600ms ease;
}
.widget__toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  background-color: var(--clr-white);
}
.widget__options {
  display: flex;
  align-items: center;
  gap: 1rem;
}

hr {
  height: 1px;
  margin-block: 0.75rem;
  background-color: var(--clr-grey-200);
  border: none;
}
hr.relaxed {
  margin-block: 1.25rem;
}

.editor {
  max-height: 0px;
  transition: 300ms ease;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  transform: scaleY(0);
  transform-origin: top center;
}
@media only screen and (min-width: 1080px) {
  .editor__inner {
    border: 1px solid var(--clr-grey-200);
    border-radius: 0.25rem;
  }
}
.editor__inner {
  background-color: var(--clr-grey-50);
  border-bottom: 1px solid var(--clr-grey-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.editor .label-inline {
  padding: 1rem;
}
.editor__options {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}
.editor__options p {
  margin: 0;
}
.editor.active {
  max-height: 10rem;
  transform: scaleY(1);
}
.editor.active + .messages .message input[type=checkbox] {
  max-height: 2rem;
  transform: scaleY(1);
  position: static;
}
.editor.active + .messages .message__group.collapsed .message:not(:first-child) {
  position: static;
  transform: none;
}
.editor.active + .messages .message__group.collapsed .message__total {
  display: none;
}

.reveal {
  width: 5.5rem;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;}
	
@media only screen and (min-width: 1080px) {
  .reveal {
    display: none;
  }
}
.reveal .icon {
  margin-top: 0.15rem;
}
.reveal > * {
  padding: 0.75rem;
  justify-content: center;
  flex: 1 1 auto;
}
.reveal__edit, .reveal__read {
  background-color: var(--clr-positive);
}
.reveal__delete {
  background-color: var(--clr-negative);
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 21;
  visibility: hidden;
  opacity: 0;
}
.loader.visible {
  visibility: visible;
  opacity: 0;
}

.size {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  transition: 100ms ease-in-out;
  cursor: pointer;
}
.size:has(> input[type=radio]:checked) {
  border-color: var(--clr-primary);
  box-shadow: 0px 0px 0px 2px var(--clr-primary);
}
.size:has(> input[type=radio]:checked) .size__name {
  color: var(--clr-primary);
}
.size__name {
  margin-bottom: 0.5rem;
  transition: 100ms ease-in-out;
}
.size__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-text-light);
}
.size__details * {
  color: inherit;
}
.size input[type=radio] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.size p {
  margin: 0;
}
.size__slices, .size__price {
  font-size: 0.75rem;
  line-height: 100%;
}
	p.size__price {
  color: var(--clr-primary);
}

.switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.switch--button {
  flex: 1 0 auto;
  background-color: var(--clr-white);
  color: var(--clr-text);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  font-size: var(--fs-body-reg);
  font-weight: var(--fw-medium);
  padding: 0.4rem 0.75rem;
}
.switch--button.active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.wheel-widget,
.qrcode-widget,
.points-widget,
.punch-widget {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.wheel-widget__content,
.qrcode-widget__content,
.points-widget__content {
  max-width: 60%;
}
.wheel-widget__content .wheel-widget__heading,
.wheel-widget__content .qrcode-widget__heading,
.wheel-widget__content .points-widget__heading,
.qrcode-widget__content .wheel-widget__heading,
.qrcode-widget__content .qrcode-widget__heading,
.qrcode-widget__content .points-widget__heading,
.points-widget__content .wheel-widget__heading,
.points-widget__content .qrcode-widget__heading,
.points-widget__content .points-widget__heading {
  margin-bottom: 0.75rem;
}
.wheel-widget__content .wheel-widget__unavailable-text,
.wheel-widget__content .wheel-widget__available-text,
.wheel-widget__content .qrcode-widget__unavailable-text,
.wheel-widget__content .qrcode-widget__available-text,
.wheel-widget__content .points-widget__unavailable-text,
.wheel-widget__content .points-widget__available-text,
.qrcode-widget__content .wheel-widget__unavailable-text,
.qrcode-widget__content .wheel-widget__available-text,
.qrcode-widget__content .qrcode-widget__unavailable-text,
.qrcode-widget__content .qrcode-widget__available-text,
.qrcode-widget__content .points-widget__unavailable-text,
.qrcode-widget__content .points-widget__available-text,
.points-widget__content .wheel-widget__unavailable-text,
.points-widget__content .wheel-widget__available-text,
.points-widget__content .qrcode-widget__unavailable-text,
.points-widget__content .qrcode-widget__available-text,
.points-widget__content .points-widget__unavailable-text,
.points-widget__content .points-widget__available-text {
  margin: 0;
}
.wheel-widget__content .wheel-widget__unavailable-text,
.wheel-widget__content .qrcode-widget__unavailable-text,
.wheel-widget__content .points-widget__unavailable-text,
.qrcode-widget__content .wheel-widget__unavailable-text,
.qrcode-widget__content .qrcode-widget__unavailable-text,
.qrcode-widget__content .points-widget__unavailable-text,
.points-widget__content .wheel-widget__unavailable-text,
.points-widget__content .qrcode-widget__unavailable-text,
.points-widget__content .points-widget__unavailable-text {
  display: block;
}
.wheel-widget__content .wheel-widget__available-text,
.wheel-widget__content .qrcode-widget__available-text,
.wheel-widget__content .points-widget__available-text,
.qrcode-widget__content .wheel-widget__available-text,
.qrcode-widget__content .qrcode-widget__available-text,
.qrcode-widget__content .points-widget__available-text,
.points-widget__content .wheel-widget__available-text,
.points-widget__content .qrcode-widget__available-text,
.points-widget__content .points-widget__available-text {
  display: none;
}
.wheel-widget__content .button,
.qrcode-widget__content .button,
.points-widget__content .button {
  display: none;
  margin-top: 0.75rem;
}
.wheel-widget.available .wheel-widget__content .button,
.wheel-widget.available .qrcode-widget__content .button,
.wheel-widget.available .points-widget__content .button,
.qrcode-widget.available .wheel-widget__content .button,
.qrcode-widget.available .qrcode-widget__content .button,
.qrcode-widget.available .points-widget__content .button,
.points-widget.available .wheel-widget__content .button,
.points-widget.available .qrcode-widget__content .button,
.points-widget.available .points-widget__content .button {
  display: block;
}
.wheel-widget.available .wheel-widget__content .wheel-widget__unavailable-text,
.wheel-widget.available .wheel-widget__content .qrcode-widget__unavailable-text,
.wheel-widget.available .wheel-widget__content .points-widget__unavailable-text,
.wheel-widget.available .qrcode-widget__content .wheel-widget__unavailable-text,
.wheel-widget.available .qrcode-widget__content .qrcode-widget__unavailable-text,
.wheel-widget.available .qrcode-widget__content .points-widget__unavailable-text,
.wheel-widget.available .points-widget__content .wheel-widget__unavailable-text,
.wheel-widget.available .points-widget__content .qrcode-widget__unavailable-text,
.wheel-widget.available .points-widget__content .points-widget__unavailable-text,
.qrcode-widget.available .wheel-widget__content .wheel-widget__unavailable-text,
.qrcode-widget.available .wheel-widget__content .qrcode-widget__unavailable-text,
.qrcode-widget.available .wheel-widget__content .points-widget__unavailable-text,
.qrcode-widget.available .qrcode-widget__content .wheel-widget__unavailable-text,
.qrcode-widget.available .qrcode-widget__content .qrcode-widget__unavailable-text,
.qrcode-widget.available .qrcode-widget__content .points-widget__unavailable-text,
.qrcode-widget.available .points-widget__content .wheel-widget__unavailable-text,
.qrcode-widget.available .points-widget__content .qrcode-widget__unavailable-text,
.qrcode-widget.available .points-widget__content .points-widget__unavailable-text,
.points-widget.available .wheel-widget__content .wheel-widget__unavailable-text,
.points-widget.available .wheel-widget__content .qrcode-widget__unavailable-text,
.points-widget.available .wheel-widget__content .points-widget__unavailable-text,
.points-widget.available .qrcode-widget__content .wheel-widget__unavailable-text,
.points-widget.available .qrcode-widget__content .qrcode-widget__unavailable-text,
.points-widget.available .qrcode-widget__content .points-widget__unavailable-text,
.points-widget.available .points-widget__content .wheel-widget__unavailable-text,
.points-widget.available .points-widget__content .qrcode-widget__unavailable-text,
.points-widget.available .points-widget__content .points-widget__unavailable-text {
  display: none;
}
.wheel-widget.available .wheel-widget__content .wheel-widget__available-text,
.wheel-widget.available .wheel-widget__content .qrcode-widget__available-text,
.wheel-widget.available .wheel-widget__content .points-widget__available-text,
.wheel-widget.available .qrcode-widget__content .wheel-widget__available-text,
.wheel-widget.available .qrcode-widget__content .qrcode-widget__available-text,
.wheel-widget.available .qrcode-widget__content .points-widget__available-text,
.wheel-widget.available .points-widget__content .wheel-widget__available-text,
.wheel-widget.available .points-widget__content .qrcode-widget__available-text,
.wheel-widget.available .points-widget__content .points-widget__available-text,
.qrcode-widget.available .wheel-widget__content .wheel-widget__available-text,
.qrcode-widget.available .wheel-widget__content .qrcode-widget__available-text,
.qrcode-widget.available .wheel-widget__content .points-widget__available-text,
.qrcode-widget.available .qrcode-widget__content .wheel-widget__available-text,
.qrcode-widget.available .qrcode-widget__content .qrcode-widget__available-text,
.qrcode-widget.available .qrcode-widget__content .points-widget__available-text,
.qrcode-widget.available .points-widget__content .wheel-widget__available-text,
.qrcode-widget.available .points-widget__content .qrcode-widget__available-text,
.qrcode-widget.available .points-widget__content .points-widget__available-text,
.points-widget.available .wheel-widget__content .wheel-widget__available-text,
.points-widget.available .wheel-widget__content .qrcode-widget__available-text,
.points-widget.available .wheel-widget__content .points-widget__available-text,
.points-widget.available .qrcode-widget__content .wheel-widget__available-text,
.points-widget.available .qrcode-widget__content .qrcode-widget__available-text,
.points-widget.available .qrcode-widget__content .points-widget__available-text,
.points-widget.available .points-widget__content .wheel-widget__available-text,
.points-widget.available .points-widget__content .qrcode-widget__available-text,
.points-widget.available .points-widget__content .points-widget__available-text {
  display: block;
}
.wheel-widget.available .wheel-widget__image,
.wheel-widget.available .qrcode-widget__image,
.qrcode-widget.available .wheel-widget__image,
.qrcode-widget.available .qrcode-widget__image,
.points-widget.available .wheel-widget__image,
.points-widget.available .qrcode-widget__image {
  background-color: var(--clr-secondary);
}
.wheel-widget.signup,
.qrcode-widget.signup,
.points-widget.signup {
  background-color: var(--clr-primary);
  border: 0px;
  border-radius: 0px;
}
.wheel-widget.signup .wheel-widget__content .button,
.wheel-widget.signup .qrcode-widget__content .button,
.wheel-widget.signup .points-widget__content .button,
.qrcode-widget.signup .wheel-widget__content .button,
.qrcode-widget.signup .qrcode-widget__content .button,
.qrcode-widget.signup .points-widget__content .button,
.points-widget.signup .wheel-widget__content .button,
.points-widget.signup .qrcode-widget__content .button,
.points-widget.signup .points-widget__content .button {
  display: block;
}
.wheel-widget.signup .wheel-widget__heading,
.wheel-widget.signup .qrcode-widget__heading,
.wheel-widget.signup .points-widget__heading p,
.qrcode-widget.signup .wheel-widget__heading,
.qrcode-widget.signup .qrcode-widget__heading,
.qrcode-widget.signup .points-widget__heading p,
.points-widget.signup .wheel-widget__heading,
.points-widget.signup .qrcode-widget__heading,
.points-widget.signup .points-widget__heading p {
  color: var(--clr-white);
}
.wheel-widget.signup .wheel-widget__image,
.wheel-widget.signup .qrcode-widget__image .points-widget__image,
.qrcode-widget.signup .wheel-widget__image,
.qrcode-widget.signup .qrcode-widget__image .points-widget__image,
.points-widget.signup .wheel-widget__image,
.points-widget.signup .qrcode-widget__image .points-widget__image {
  background-color: var(--clr-white);
}

.wheel-widget__image {
  width: 15rem;
  height: 15rem;
  background-color: var(--clr-grey-200);
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/wheel.svg");
          mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/wheel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: -0.75rem;
  right: -7rem;
  rotate: 10deg;
}

.points-widget__image {
  width: 12rem;
  background-color: var(--clr-grey-200);
  -webkit-mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/heart.svg");
          mask-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/heart.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: -0.75rem;
  right: -4rem;
  height: 12rem;
}
.points-widget.available .points-widget__image {
  background-color: var(--clr-primary);
}

.discounts-widget {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
}
.discounts-widget__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--clr-grey-200);
}
.discounts-widget__item img:not([src]) {
  display: none;
}
.discounts-widget__item .detail + span {
  font-size: 0px;
  line-height: 0px;
}
.discounts-widget__item .detail + span::before {
  --size: 1.25rem;
  display: inline-grid;
  place-content: center;
  font-size: 0.85rem;
  line-height: 100%;
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  border-radius: 3px;
  padding-block: 0.5rem;
  padding-inline: 1rem;
}
.discounts-widget__item .detail .discount-widget__heading .name {
  text-transform: capitalize;
}
.discounts-widget__item .detail .discount-widget__heading .price {
  color: var(--clr-positive);
  margin-left: auto;
  margin-right: 1rem;
}
.discounts-widget__footer {
  padding: 1rem 1.25rem;
}

.discounts__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1rem 1.25rem;
}
.discounts__item:has(+ .discounts__item) {
  margin-bottom: 0.75rem;
}

.discount-code {
  border: 2px dashed var(--clr-grey-200);
  border-radius: 1rem;
  padding: 1rem;
  font-size: var(--fs-heading-sm);
  text-transform: uppercase;
  text-align: center;
  margin-block: 1rem;
}

.join-rewards__ladder .steps {
  max-width:100%;
	margin-inline: auto;
  margin-top: 2rem;
}

	p.small.wheel-widget__unavailable-text {
  color: white;
}

.steps {
	max-width:18.75rem;
  margin-inline: auto;
  margin-top: 2rem;
}


	
.steps__item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.steps__item-icon {
  flex: 0 0 5rem;
  margin-right: 0.75rem;
}
.steps__item-text {
  flex: 1 1 auto;
}
.steps__item:has(+ .steps__item) {
  margin-bottom: 2rem;
}

/* Prize wheel */
#prizeWheel .description p {
  margin: 5px 0 0 0;
}

#prizeWheel #chart {
  width: 100%;
  text-align: center;
}

#prizeWheel #chart circle.spinCircle {
  fill: #33bb1f;
  stroke-width: 3;
  stroke: black;
  r: 10%;
}

#prizeWheel #chart text.spinText {
  font-weight: bold;
  font-size: 18px;
}

#prizeWheel #chart .arrow {
  fill: white;
  stroke: black;
  stroke-width: 3;
}

#prizeWheel #chart text.segmentText {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
}

#prizeWheel #results {
  margin-top: 1em;
  text-align: center;
}

#prizeWheel #results #spinResult {
  margin-top: 1em;
}

#prizeWheel #results a {
  display: block;
  margin-top: 1em;
  font-size: larger;
}

/* The win/lose/spin again slices */
#prizeWheel #chart g.slice path {
  stroke-width: 3;
  stroke: black;
}

#prizeWheel #chart g.loseSlice path {
  fill: #e11c44; /* Red */
}

#prizeWheel #chart g.spinAgainSlice path {
  fill: #393e47; /* Grey */
}

#prizeWheel #chart g.winSlice path {
  fill: #2a8acf; /* Blue */
}

#prizeWheel #chart text.segmentText {
  fill: white;
  font-size: 16px;
  font-weight: normal;
}

@media screen and (min-width: 767px) {
  #prizeWheel #chart circle.spinCircle {
    r: 10%;
  }
  #prizeWheel #chart text.spinText {
    font-size: 30px;
  }
  #prizeWheel #chart text.segmentText {
    font-size: 32px;
  }
}
.desktop-banner {
  display: none;
  position: fixed;
  top: var(--header-height);
  width: 100%;
}
@media only screen and (min-width: 1080px) {
  .desktop-banner {
    display: block;
  }
}
.desktop-banner img {
  width: 100%;
  height: 22rem;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.desktop-search {
  display: none;
  background-color: var(--clr-white);
  border-radius: 0.25rem;
  padding: 2rem 3rem;
  margin-bottom: 1rem;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
  z-index: 5;
}
@media only screen and (min-width: 1080px) {
  .desktop-search {
    display: block;
  }
}
.desktop-search h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.desktop-search__input {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}
.desktop-search__input .icon-input {
  margin: 0;
  flex-grow: 1;
}
.desktop-search__input .button {
  flex-basis: 25%;
}
.desktop-search .search-right {
	display: flex;
	justify-content: flex-start;
	margin-top: 1em;
}
.desktop-hide .search-right {
	display: flex;
	justify-content: flex-end;
}

.cat-slider {
  display: none;
  background-color: var(--clr-secondary);
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}
@media only screen and (min-width: 1080px) {
  .cat-slider {
    display: block;
  }
}
.cat-slider + .cat-slider {
  top: calc(var(--header-height) + 60px);
  background-color: var(--clr-white);
}
.cat-slider + .cat-slider .cat-slider__track {
  justify-content: space-between;//space-evenly;
}
.cat-slider + .cat-slider .cat-slider__link,
.cat-slider + .cat-slider .cat-slider__more {
  min-width: 0px;
  color: var(--clr-text);
}
.cat-slider + .cat-slider .cat-slider__link::after,
.cat-slider + .cat-slider .cat-slider__more::after {
  background-color: var(--clr-primary);
}
.cat-slider + .cat-slider .cat-slider__link:hover, .cat-slider + .cat-slider .cat-slider__link.active,
.cat-slider + .cat-slider .cat-slider__more:hover,
.cat-slider + .cat-slider .cat-slider__more.active {
  font-weight: var(--fw-light);
  color: var(--clr-primary);
}
.cat-slider + .cat-slider .cat-slider__link:hover::after, .cat-slider + .cat-slider .cat-slider__link.active::after,
.cat-slider + .cat-slider .cat-slider__more:hover::after,
.cat-slider + .cat-slider .cat-slider__more.active::after {
  transform: scaleX(1);
}
.cat-slider__track {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cat-slider__link, .cat-slider__more {
  padding-block: 1.25rem;
  padding-inline: 0.75rem;
  margin-bottom: -2px;
  font-size: 1.15rem;
  transition: font-weight, background-color 200ms ease;
  min-width: 10rem;
  text-align: center;
  color: var(--clr-white);
  position: relative;
}
.cat-slider__link::before, .cat-slider__more::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 8px solid var(--clr-white);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 200ms ease;
}
.cat-slider__link::after, .cat-slider__more::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--clr-white);
  left: 0;
  bottom: 0;
  right: 0;
  transition: transform 200ms ease;
  transform: scaleX(0);
}
.cat-slider__link:hover, .cat-slider__link:focus, .cat-slider__link.active, .cat-slider__more:hover, .cat-slider__more:focus, .cat-slider__more.active {
  color: var(--clr-white);
}
.cat-slider__link:hover .icon, .cat-slider__link:focus .icon, .cat-slider__link.active .icon, .cat-slider__more:hover .icon, .cat-slider__more:focus .icon, .cat-slider__more.active .icon {
  background-color: var(--clr-primary);
}
.cat-slider__link:hover, .cat-slider__link.active, .cat-slider__more:hover, .cat-slider__more.active {
  font-weight: var(--fw-bold);
}
.cat-slider__link:hover::before, .cat-slider__link.active::before, .cat-slider__more:hover::before, .cat-slider__more.active::before {
  opacity: 1;
}
.cat-slider__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cat-slider__nav {
  position: absolute;
  right: 0;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-top: 0px;
  min-width: 15rem;
  opacity: 0;
  visibility: hidden;
  margin-top: 1px;
}
.cat-slider__nav.active {
  opacity: 1;
  visibility: visible;
}
.cat-slider__nav-link {
  display: block;
  padding: 1rem;
  transition: background-color 200ms ease;
}
.cat-slider__nav-link:not(:last-child) {
  border-bottom: 1px solid var(--clr-grey-200);
}
.cat-slider__nav-link:hover {
  background-color: var(--clr-grey-100);
}
.cat-slider__nav-link.active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}
.preview {
  grid-column: 2/3;
  grid-row: 1/3;
  max-height: calc(100vh - 13rem);
  position: sticky;
  top: 0rem;
}
.preview__content {
  background-color: var(--clr-white);
  border-radius: 0.5rem;
  position: relative;
  height: 100%;
  padding: 2.5rem;
}
.preview.empty .preview__content::before {
  content: "Please select an item to preview";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-heading);
  color: var(--clr-grey-400);
  font-size: var(--fs-heading-reg);
}
.content {
  padding: 1.25rem;
  transition: margin 300ms ease;
}

body.page-signup main.content {height: auto;overflow: hidden;margin-bottom: -2rem;}

body.page-signup form {
  padding-bottom: 6rem;
}

.content--relaxed {
  padding: 2rem;
}
@media only screen and (min-width: 1080px) {
  .content:not(.no-padding) {
    padding-bottom: 1.25rem !important;
  }
}
.content:not(.no-padding):has(~ .tabbar) {
  padding-bottom: 6rem;
  min-height: 100VH;
}
.content:not(.no-padding):has(~ .banner:not([class*=hidden])) {
  padding-bottom: 9rem;
}
.content:not(.no-padding):has(~ .footer) {
  padding-bottom: 10rem;
}
.content.no-padding:has(~ .tabbar) {
  padding-bottom: 4.5rem;
}
.content.no-padding:has(~ .banner:not([class*=hidden])) {
  padding-bottom: 7.5rem;
}
.content.no-padding:has(~ .footer) {
  padding-bottom: 8.5rem;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}

.section:has(+ *) {
  margin-bottom: 1.25rem;
}
.section:has(> .voucher) {
  margin-bottom: 0.75rem;
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.content--relaxed:has(+ *) {
  margin-bottom: 2rem;
}

.header {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  place-items: center;
  height: var(--header-height);
  padding-inline: 1.25rem;
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-grey-200);
  position: sticky;
  top: 0;
  z-index: 11;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header.desktop-show {
  display: none;
}
@media only screen and (min-width: 1080px) {
  .header {
    padding-inline: 2.5rem;
  }
  .header.desktop-show {
    display: grid;
    grid-template-columns: auto 350px 380px 350px auto;
  }
  .header.desktop-show .header__outlet,
  .header.desktop-show .header__method {
    grid-column: 2/3;
  }
  .header.desktop-show .header__logos {
    grid-column: 3/4;
  }
}
.header__method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__method .button {
  margin-left: 0.5rem;
}
.header__logos {
  grid-column: 2/3;
  display: flex;
}
.header__logos img {
  display: block;
  max-height: 2rem;
}

.header__logos img.header__logo:nth-child(2) {
  display: none;
}
	
.header__logos img:not(:last-child) {
  /* margin-right: 0.5rem; */
}
.header:has(.header__edit, .header__read, .header__search, .header__filter) {
  padding-right: 0px;
}
.header:has(.header__back) {
  padding-left: 0px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.header__edit, .header__read, .header__account {
  justify-self: flex-end;
}
.header__method, .header__back {
  grid-column: 1/2;
  justify-self: flex-start;
}
.header__search {
  grid-column: 3/4;
  justify-self: flex-end;
}
.header__filter {
  grid-column: 3/4;
  justify-self: flex-end;
}
.header__title {
  grid-column: 2/3;
}
.header__edit, .header__read, .header__search, .header__filter, .header__back {
  height: 100%;
  padding-inline: 1.25rem;
}
.header__account {
  display: flex;
  gap: 1.25rem;
}
.header .search input {
  background-color: var(--clr-grey-100);
  border: none;
  min-width: 35rem;
}
.header__basket {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  position: relative;
}
.header__basket-details {
  position: relative;
  margin-right: 1.5rem;
}
.header__items {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  transition: background-color 200ms ease;
  border-radius: 6px;
  position: relative;
}
button.header__items:hover:not(.readonly),
button.header__items:focus:not(.readonly) {
  background-color: var(--clr-grey-100);
}
button.header__items.readonly{
	cursor: auto;
}
.header__outlet {
  display: flex;
  justify-self: flex-start;
  align-items: start;
  gap: 1rem;
}
.header__outlet .button--tight {
  font-size: var(--fs-body-xs);
  padding-block: 0.45rem;
  margin-top: -3px;
}
.header__outlet-details h3 {
  margin-bottom: 0.5rem;
}
.header__upsell {
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
}
.header__upsell.active {
  opacity: 1;
  visibility: visible;
}
.header .banner__quantity {
  --size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 34px;
  width: var(--size);
  height: var(--size);
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs-body-xs);
}
.header__upsell {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 1.25rem;
  border: 1px solid var(--clr-grey-200);
  border-top: 0px;
  background-color: var(--clr-white);
  margin-top: 0.9rem;
  min-width: 20rem;
  text-align: center;
}
.header__upsell > *:not(:last-child) {
  margin-bottom: 1rem;
}
.header__menu .icon {
  margin-top: 5px;
  cursor: pointer;
}
.header__nav {
  position: absolute;
  right: 0;
  margin-top: 22px;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-top: 0px;
  min-width: 12rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.header__nav a {
  display: block;
  padding: 1rem;
  transition: background-color 200ms ease;
}
.header__nav a:hover {
  background-color: var(--clr-grey-100);
}
.header__nav a:not(:last-child) {
  border-bottom: 1px solid var(--clr-grey-200);
}

.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 20;
  display: flex;
  padding-inline: 1.5rem;
  border-top: 1px solid var(--clr-grey-200);
  transform: translateZ(0);
}
@media only screen and (min-width: 1080px) {
  .tabbar {
    display: none;
  }
}
.tabbar .tab {
  flex: 1 1 auto;
  min-height: 4.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: var(--fs-body-sm);
  color: var(--clr-grey-400);
  gap: 0.25rem;
  position: relative;
  font-weight: bold;
}
.tabbar .tab.active {
  color: var(--clr-text);
}
.tabbar .tab.active .icon {
  background-color: var(--clr-primary);
}
.tabbar .tab__badge {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(calc(-50% + 1.5rem), calc(-50% - 1.35rem));
  background-color: var(--clr-primary);
  color: var(--clr-white);
  width: 0.85rem;
  height: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 5rem;
}

.grid {
  display: grid;
}
.grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid.five-cols {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid.six-cols {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid.seven-cols {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid.eight-cols {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid__item-image {
  width: 100%;
  display: block;
  min-height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid__item-heading {
  text-align: center;
  background-color: rgb(0 0 0 / 56%);
  padding: 0.5rem 0.75rem;
  color: var(--clr-white);
  margin-top: -3rem;
  z-index: 1;
  position: relative;
  font-size: 2rem;
}
.grid .label {
  margin: 0;
}

.subgrid-cols {
  display: grid;
  grid-template-columns: subgrid;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-reg {
  gap: 0.75rem;
}

.gap-lg {
  gap: 1rem;
}

.col-gap-sm {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.col-gap-reg {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.col-gap-lg {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.row-gap-sm {
  row-gap: 0.5rem;
}

.row-gap-reg {
  row-gap: 0.75rem;
}

.row-gap-lg {
  row-gap: 1rem;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.footer {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: 0.25rem;
  padding: 1.25rem 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.footer > * {
  max-width: 1080px;
  margin-inline: auto;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.footer__image {
  margin-inline: auto;
  width: 100%;
  margin-bottom: 0.25rem;
  max-width: 340px;
}
@media only screen and (min-width: 1080px) {
  .footer__image {
    display: none;
  }
}
.footer__tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__tip .primary {
  margin-left: 0.25rem;
}

.page-welcome {
  min-height: 100vh;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 30rem) auto;
  grid-template-rows: 25% 45% 30%;
  text-align: center;
  background-image: url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/welcome-pizza-one.png"), url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/welcome-pizza-two.png"), url("https://digimarkcdn.blob.core.windows.net/frontend3-images/img/background.jpg");
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  background-position: top 5% left -5rem, bottom 32% right -5rem, center;
}
.page-welcome > * {
  grid-column: 2/3;
}
.page-welcome .welcome__logo {
  justify-self: flex-end;
}
.page-welcome .welcome__badge {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.page-welcome .welcome__title {
  max-width: 19rem;
  margin-inline: auto;
}
.page-welcome .buttons {
  align-self: flex-end;
}

.categories {
  display: grid;
  grid-template-columns: 1fr;
}
.categories .grid {
  grid-column-start: 1;
  grid-row-start: 1;
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
}
.categories .grid.active {
  opacity: 1;
  visibility: visible;
}

.login__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
  padding-bottom: 1rem;
}

.page-home.editing .widget:has(+ *) {
  margin-bottom: 0.75rem;
}
.page-home.editing .widget__toolbar {
  max-height: 10rem;
  opacity: 1;
}
.page-home.editing .widget__toolbar ~ * {
  display: none;
}

.page-message .message__header {
  margin-bottom: 0.5rem;
}
.page-message .message__header ~ p {
  margin-bottom: 0.5rem;
}
.page-inbox .message__header,
.page-message .message__header {
	margin-bottom: 1em;
}
.page-inbox h4.title,
.page-message h4.title {
	margin-bottom: 1em;
}

.page-join-rewards .join-rewards__ladder {
  padding: 2rem;
}
.page-join-rewards .join-rewards__ladder .buttons {
  margin-top: 1.5rem;
  max-width: 18.75rem;
  margin-inline: auto;
}
.page-join-rewards .join-rewards__wheel {
  background-color: var(--clr-primary);
  padding: 2rem;
}

.page-outlets .desktop-banner{
	z-index: 10;
}
.page-outlets .desktop-search{
	z-index: 11;
}

.page-outlets .content {
  padding-top: 1rem;
}
.page-outlets .container {
  max-width: 1080px;
}
@media only screen and (min-width: 1080px) {
  .page-outlets .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
.page-outlets #restaurantsList {
  /*margin-top: 3em;*/
}
	
  .page-outlets .container .desktop-search {
    grid-column: span 2;
    max-width: 650px;
    margin-inline: auto;
    margin-top: 2rem;
		margin-bottom: 4rem;
    font-size: 20px;
  }
  .page-outlets .container .map {
    width: 100%;
    height: 45vh;
    border: 0px;
    border-radius: 0.35rem;
    position: sticky;
    top: 28rem;
    margin-top: 0rem;
  }
    .page-outlets .showOnMap {
        cursor: pointer;
        border: 1px solid #eeeeee;
        border-radius: 4px;
        padding: 5px 10px 5px 10px;
    }
        .page-outlets .showOnMap:hover {
            background-color: #eeeeee;
        }
        .page-outlets .showOnMap svg {
            vertical-align: text-top;
        }
}
.page-outlets #showAllFound {
	text-align: center;
	width: 100%;
	margin-top: 1em;
}
.page-outlets #desktop-postcode::placeholder,
.page-outlets #mobile-postcode::placeholder,
.page-outlets #txtPlaces-desktop::placeholder,
.page-outlets #txtPlaces-mobile::placeholder,
.page-outlet #desktop-postcode::placeholder,
.page-outlet #mobile-postcode::placeholder,
.page-outlet #txtPlaces-desktop::placeholder,
.page-outlet #txtPlaces-mobile::placeholder{
    font-weight: bold;
}

.page-outlet .desktop-search {
	margin-top: 3em;
}

.page-menu .desktop-banner {
  position: static;
}
.page-menu .content .search {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .page-inbox {
    background-color: var(--clr-grey-100);
    overflow: hidden;
  }
  .page-inbox.white-bg {
    background-color: var(--clr-grey-100);
  }
  .page-inbox .content {
    padding: 0 !important;
  }
  .page-inbox .container {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 70px auto;
    height: calc(100vh - 9rem);
    padding: 2rem;
    overflow: auto;
  }
  .page-inbox .container .editor {
    grid-column: 1/2;
    position: sticky;
    transform: scaleY(1);
    margin-right: 1.5rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-height: none;
    top: 0;
    box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 0.08);
  }
  .page-inbox .container:has(.editor.active) {
    margin-top: 0px;
    height: calc(100vh - var(--header-height) + 0px);
  }
	.page-inbox .desktop-show.messagesSection .message.selected {
		border: 1px solid #1e9ad6;
	}
}

.no-padding {
  padding: 0px;
}

.white-bg {
  background: var(--clr-white);
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-lock {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.disabled {
  cursor: not-allowed;
}

.locked::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
}

@media only screen and (max-width: 1079px) {.desktop-show {
  display: none !important;
	height: 0px !important;
}}

@media only screen and (min-width: 1080px) {
  .desktop-hide {
    display: none;
  }
  .desktop-show {
    display: block;
  }

  .product.desktop-show {
  display: flex;
}
}
@keyframes buzz {
  10%, 90% {
    transform: translate3d(-0.5px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(0.5px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-1px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(1px, 0, 0);
  }
}
@keyframes colour-change {
  0%, 100% {
    background-color: var(--clr-grey-100);
    color: var(--clr-text);
  }
  10%, 90% {
    background-color: var(--clr-primary);
    color: var(--clr-white);
  }
}
@keyframes roll {
  0% {
    transform: translateY(calc(var(--fs-heading-reg) * -1));
  }
  10%, 90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(var(--fs-heading-reg) * -1));
  }
}/*# sourceMappingURL=app.css.map */

.imageContainer {
    height: 100%;
    width: 100%;
}

.backgroundFloat {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: bottom;
}

.page-rewards .benefitsSection .detail {
	display: flex;
}
.page-rewards .benefitsSection img {
	margin-right: 10px;
	height: 48px;
	width: 48px;
}
.page-rewards .benefitsSection .price {
	font-weight: bold;
}
.page-rewards .loyaltyPoints {
	display: flex;
}
		.page-rewards .loyaltyPoints div.image {
			padding-right: 1em;
		}
		.page-rewards .loyaltyPoints div.image svg {
			height: 4em;
			width: 4em;
		}
.page-rewards .selectedBenefit {
	display: none;
	background-color: lightgreen;
	padding: 2px 5px 2px 5px;
	border: 1px solid darkgray;
}
.page-rewards .promoSection .input {
	display: flex;
	margin: 1em 0 1em 0;
}
.page-rewards .promoSection .input input {
	font-size: larger;
	width: 12em;
	margin-right: 1em;
}

.cursor-disabled {
    cursor: default;
}

.no-events {
    pointer-events: none;
}

.product__image img[src*="logo.png"] {
  object-fit: scale-down;
}

.page-rewards .promoSection {
	display: none;
}

.page-basket .content:not(.no-padding) {
    padding-bottom: 7rem !important;
}
@media only screen and (min-width: 1080px) {
	.page-basket .content:not(.no-padding) {
	padding-bottom: 1em !important;
	}
}
.page-basket .item__details__hidden {
	border: 1px solid #eeeeee;
	border-radius: 0.25rem;
	color: gray;
	display: inline-block;
	font-size: smaller;
	margin-left: 1em;
	padding: 2px 5px 2px 5px;
}
.page-basket #payWithPointsDrawer .icon-input, #payWithPointsDrawer p {
	display: inline-block;
}
.page-basket #payWithPointsDrawer .icon-input input {
	width: 7em;
}
.page-basket #basketValidationWarnings {
	margin-bottom: 0.8em;
	padding-top: 0.8em;
	background-color: white;
}
	.page-basket #basketValidationWarnings p.warningItem svg {
		vertical-align: text-bottom;
	}
	.page-basket #basketValidationWarnings p.warningItem {
		padding: 0 0 0.8em 1em;
	}
.page-basket #startAgain {
	text-align: -webkit-right;
}
@media only screen and (min-width: 1080px) {
	.page-basket section:last-child,
	.page-checkout section:last-child {
		margin-bottom: 100px;
	}

	.search-right.postcodeOnlySearch button.button.button--tight.button--secondary {width:100%;}

	.popup__panel p.product__summary {
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  font-size: 15px;
}
}

@media only screen and (max-width: 600px) {
  .mustHaveAtLeast.pickOnePizza.grid.two-cols {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

body.page-signup:after {
  content: '';
  background-color: white;
  height: 2rem;
  display:block;
  
}

.upsell .product__image {

  height: auto;
}

	.product__description {
  max-width: calc(90%);
  font-size: 14px;
}
}

.--no-qa button.button.button--tight.button--between
{display:none;}

.desktop-footer {
	background-color: #2699d6;
	color: white;
	margin-top: 1em;
	padding: 2em 0 2em 0;
}
	.desktop-footer .main {
		display: flex;
		justify-content: space-between;
		margin-inline: auto;
		max-width: 1080px;
	}
		.desktop-footer .main h2 {
			color: white;
			margin-bottom: 1rem;
		}
		.desktop-footer .main .siteLinks a {
			display: block;
			margin-bottom: 1em;
		}
		.desktop-footer .main .socialLinks a svg {
			background-color: #2699d6;
			display: inline-block;
			margin-right: 10px;
			width: 36px;
			height: 36px
		}
	.desktop-footer img {
		height: 160px;
	}
	.desktop-footer .bottom {
		text-align: center;
		margin-top: 1em;
	}


.popup__panel .menuitem.attributesGroup textarea,  .menuitem.attributesGroup h4.heading 
{display:none !important}	

div#addItemDetails textarea#Note {
  display: none;
}

div#addItemDetails h4.heading {
  display: none !important;
}

@media only screen and (min-width: 1080px) {
.page-outlet .block {margin-top:3rem;}

.content {
    min-height: calc(100vh - 31.5rem);
}

body:has(> #menuCategories[style*="display: none"]) .content,
body:not(.page-menu) .content {
    min-height: calc(100vh - 27.6rem);
    margin-top: 2rem;
}
}

.page-payment .header {position: fixed;left: 0;right: 0;top: 0;}

.page-payment {
    background: rgb(var(--clr-white));
}

.payment_cancel .button {
    width: 100%;
}

.page-payment .content {min-height: 100vh !important;display: grid;place-content: start;padding-top: 7.5rem;justify-content: center;}

.page-payment .content .container {
    max-width: 500px;
    min-width: 340px;
}

@media only screen and (min-width: 1080px) {
.page-payment .content .container {
    min-width: 640px !important;}
}
	
.page-signup input[readonly] {
    background-color: #eeeeee;
    color: #aaa;
}

img.header__logo[alt="Bun Bros Logo"] {
  display: none;
}


.--no-qa .product__add {
  display: none !important;
}

button#editBasket {
  font-weight: 700;
  animation: shake 150ms 2 linear;
}

.menu-selector:not(:has(.buttons > button:nth-of-type(2))) {  display: none;}


	p.multi_included {
  font-size: var(--fs-body-sm);
  color: var(--clr-primary);
  font-style: italic;
}

.field-group__header p.light.small{margin-bottom:0px}

.page-questionnaire h1.title {
    margin-bottom: 1rem;
}
.page-questionnaire .question {
    margin-bottom: 1rem;
}
    .page-questionnaire .question .hint {
        font-size: small;
    }
    .page-questionnaire .question .radioList {
        display: flex;
        column-gap: 20px;
        margin-top: 0.5rem;
    }
        .page-questionnaire .question .radioList .radioItem {
            display: flex;
            flex-direction: column;
        }
            .page-questionnaire .question .radioList .radioItem label {
                margin-top: 5px;
                text-align: center;
            }
.page-questionnaire a.skip {
    display: inline-block;
    /* margin: 1rem 0 0 1rem; */
    /* text-decoration: underline; */
    background-color: #2699d6;
    padding: 0.6rem;
    border-radius: 2rem;
    width: 49%;
    /* margin-top: 1rem; */
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    float: right;
}

	
body.page-questionnaire button.button.button--primary.button--full {
  width: 49% !important;
  display:inline;
  font-size: 1rem;
}


a.skip {
  background-color: blue;
  padding: 1rem;
  border-radius: 2rem;
  width: 100%;
}

.question p, .question .title {
  font-size: 1rem;
}

.question.title {}

label.closed_label {
  padding: 0.25rem;
  display: block;
  text-align: center;
  font-style: italic;
  color: var(--clr-secondary);
	font-weight:bold;
}

body.page-basket section.desktop-show {
    position: sticky;
    bottom: 40px;
    z-index: 10;
    padding: 20px;
    background: white;
    box-shadow: #5f3f3f 0px 0px 10px;
}

.preText.desktop-search {
  margin-top: 3rem !important;
  padding: 2rem !important;
}

#CreateQuickAccount {
  line-height: 1.5rem;
}

.page-outlets .search-right.fullAddressSearch,
.page-outlet .search-right.fullAddressSearch {
    display: none;
}

/* The search area on desktop */
.page-menu #menuSearchButton {
    /*display: none;// Remove this when we're happy with the desktop search facility*/
}
.cat-slider_desktopsearch{
  position: sticky;
  top: 13rem !important;
  z-index: 9;
}
.cat-slider_desktopsearch .cat-slider__track {
  justify-content: right !important;
}
.cat-slider_desktopsearch .search--desktop {
  border: 1px solid lightgray;
  position: absolute;
  top: -8rem;/* Hide behind the menu.  */
  transition: 300ms ease;
  background-color: var(--clr-white);
  margin-left: 1em;
  box-shadow: 0 0 10px black;
}
 .cat-slider_desktopsearch .search--desktop .icon {
  position: static;
  ;
}
.cat-slider_desktopsearch .search--desktop input[type=text] {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  background-color: transparent;
  height: auto;
  padding: 1rem;
  border: 0;
  width: 15em;
}
.cat-slider_desktopsearch .search--desktop.active {
    top: 0px;
}
/* End: The search area on desktop */

/* Rewards FAQ */
    .rewardsFaq {
        margin-top: 2em;
    }
        .rewardsFaq .faq-items{
            margin-top: 1em;
        }
        .rewardsFaq .faq-item {
            background-color: white;
            border: 1px solid lightgray;
            border-radius: 5px;
            margin-bottom: 1em;
        }
            .rewardsFaq .faq-item .faq-item-header {
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                padding: 1em;
            }
                .rewardsFaq .faq-item .faq-item-header .faq-item-name {
                    font-weight: bold;
                }
                .rewardsFaq .faq-item .faq-item-inner {
                    padding: 0 1em 1em 1em;
                }
/* End: Rewards FAQ */

body.page-order ul.item__attributes {max-height: max-content;}

div#restaurantsList .button--slim {
  font-weight: 600;
  font-size: 0.94rem;
}

.dropdownSelectorWrapper {
    display: flex;
    background-color: white;
    margin-bottom: 1rem;
    position: relative;
}
    .dropdownSelectorWrapper .icon-input {
        margin-bottom: 0;
    }
    .dropdownSelectorWrapper select {
        padding: 1rem 0.5rem 1rem 3rem;
        text-align: right;
        width: fit-content;
    }
    .dropdownSelectorWrapper input[type=tel] {
        box-shadow: none;
        border: 0;
        padding-left: 0;
    }
