:root {
  --weorder-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
	'Helvetica Neue', sans-serif;
  --font-size-multiplicator: 1;
  --font-size0: calc(var(--font-size-multiplicator) * 10px);
  --font-size1: calc(var(--font-size-multiplicator) * 12px);
  --font-size2: calc(var(--font-size-multiplicator) * 14px);
  --font-size3: calc(var(--font-size-multiplicator) * 16px);
  --font-size4: calc(var(--font-size-multiplicator) * 18px);
  --font-size5: calc(var(--font-size-multiplicator) * 20px);
  --font-size6: calc(var(--font-size-multiplicator) * 22px);
  --font-size7: calc(var(--font-size-multiplicator) * 24px);
  --font-size8: calc(var(--font-size-multiplicator) * 28px);
  --font-size9: calc(var(--font-size-multiplicator) * 32px);
  --border-radius-multiplicator: 1;
  --border-radius1: calc(var(--border-radius-multiplicator) * 3px);
  --border-radius2: calc(var(--border-radius-multiplicator) * 4px);
  --border-radius3: calc(var(--border-radius-multiplicator) * 7px);
  --border-radius4: calc(var(--border-radius-multiplicator) * 8px);
  --border-radius5: calc(var(--border-radius-multiplicator) * 14px);
  --border-radius-circle: 50%;
  --color-dependency-coeff: 1;
  --base-page-background-h: 0;
  --base-page-background-s: 0%;
  --base-page-background-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 0%));
  --base-font-h: 0;
  --base-font-s: 0%;
  --base-font-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 100%));
  --base-modal-h: 0;
  --base-modal-s: 0%;
  --base-modal-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 14.1%));
  --base-primary-background-h: 39;
  --base-primary-background-s: 91%;
  --base-primary-background-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 70%));
  --primary-font-color: hsl(0, 0%, 0%);
  --weorder-orange: #f8c76d;
  --weorder-darkorange: #e9672d;
  --weorder-red: #ef9e99;
  --weorder-green: #26ff84;
  --secondary-font-delta-l: -30%;
  --group-heading-font-color: hsl(0, 0%, calc(50% - var(--color-dependency-coeff) * calc(50% - 100%)));
  --card-background-color-h: 0;
  --card-background-color-s: 0%;
  --card-background-color-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 14.1%));
  --group-card-font-color-h: 0;
  --group-card-font-color-s: 0%;
  --group-card-font-color-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 100%));
  --group-card-secondary-font-color-h: 0;
  --group-card-secondary-font-color-s: 0%;
  --group-card-secondary-font-color-l: calc(50% - var(--color-dependency-coeff) * calc(50% - 45%));
  --badge-disabled-background-color: hsl(0, 0%, 49%);
}
body {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
}
.router {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fade-enter {
  opacity: 0.01;
}
.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 250ms ease-in;
}
.fade-exit {
  opacity: 1;
}
.fade-exit.fade-exit-active {
  opacity: 0.01;
  transition: opacity 150ms ease-in;
}

.restaurant-page {
  display: grid;
  grid-template-rows: min-content minmax(30vh, min-content) min-content auto;
  grid-template-columns: minmax(16px, 0.5fr) minmax(calc(100% - 16px * 2), 568px) minmax(0, 292px) minmax(16px, 0.5fr);
  grid-template-areas: "... back back ..." "... restaurant-card restaurant-card ..." "main-category-list main-category-list main-category-list main-category-list" "... main-category main-category ...";
  justify-content: center;
  padding-bottom: 99px;
}
.restaurant-page.ordering-type-visible {
  margin-top: calc(66px + env(safe-area-inset-top));
}
.restaurant-page .restaurant-page__restaurant-image {
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
}
.restaurant-page .restaurant-page__back {
  margin-top: 32px;
  grid-area: back;
  z-index: 1;
}
.restaurant-page .restaurant-page__restaurant-card {
  margin-top: 74px;
  grid-area: restaurant-card;
  align-self: end;
  z-index: 1;
}
.restaurant-page .restaurant-page__main-category-list {
  top: 66px;
  margin-top: 6px;
  margin-bottom: 10px;
  grid-area: main-category-list;
  position: sticky;
  position: -webkit-sticky;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.restaurant-page .restaurant-page__main-category-list.with-free-delivery-top {
  top: 120px;
}
.restaurant-page .restaurant-page__category-navigation {
  display: none;
}
.restaurant-page .restaurant-page__category-list {
  grid-area: main-category;
  padding-bottom: 50px;
}
.restaurant-page .restaurant-page__category-list .restaurant-page__main-category-name:nth-child(2) {
  margin-top: -15px;
}
.restaurant-page .restaurant-page__category-list .restaurant-page__main-category-name:not(:nth-child(2)) {
  padding-top: 10px;
}
.restaurant-page .restaurant-page__minicart {
  position: fixed;
  bottom: 0;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  width: 100%;
  padding: 16px;
}
.restaurant-page .restaurant-page__side-menu {
  display: none;
}
.restaurant-page .restaurant-page__side-menu .restaurant-page__navigation {
  margin-top: 16px;
}
.restaurant-page .restaurant-page__side-menu .restaurant-page__free-delivery {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .restaurant-page {
    grid-template-rows: minmax(30vh, min-content) min-content auto;
    grid-template-columns: minmax(16px, 0.5fr) minmax(0, 190px) minmax(0, 592px) minmax(0, 292px) minmax(16px, 0.5fr);
    grid-template-areas: "... restaurant-card restaurant-card restaurant-card ..." "... category-navigation main-category-list main-category-list ..." "... category-navigation main-category main-category ...";
    margin-top: 0;
  }
  .restaurant-page .restaurant-page__restaurant-card {
    margin-top: 138px;
    margin-bottom: 50px;
  }
  .restaurant-page .restaurant-page__category-navigation {
    grid-area: category-navigation;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  .restaurant-page .restaurant-page__main-category-list {
    display: none;
  }
  .restaurant-page .restaurant-page__minicart {
    display: none;
  }
  .restaurant-page .restaurant-page__main-category-list {
    margin-top: 11px;
    margin-bottom: 34px;
  }
  .restaurant-page .restaurant-page__category-list {
    grid-column-start: 3;
    grid-column-end: 3;
    margin-right: 24px;
  }
  .restaurant-page .restaurant-page__side-menu {
    display: block;
    grid-area: cart;
    align-self: start;
    position: sticky;
    position: -webkit-sticky;
    grid-row-start: 3;
    grid-row-end: 3;
    grid-column-start: 4;
    grid-column-end: 4;
    top: 100px;
  }
}
/*DEBUG*/
.main-category-contents {
  height: 2000px;
  width: 90%;
  background-color: magenta;
  display: block;
}
.drawer-content {
  height: 200px;
  width: 100px;
  background-color: gold;
  display: block;
}
.free-delivery-progress__cart {
  margin-bottom: 16px;
}
.minicart-popup-top-static-control {
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dialog-manager {
  font-family: var(--weorder-font);
}

.layout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
  font-family: var(--weorder-font);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.hero-image {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.25) 68%, rgba(0, 0, 0, 0) 90%);
  mask-image: linear-gradient(top, #000000, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.25) 68%, rgba(0, 0, 0, 0) 90%);
}
.hero-image .hero-image__image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-image {
    align-items: center;
  }
}

.lazy-load-image-background.opacity {
  opacity: 0;
}
.lazy-load-image-background.opacity.lazy-load-image-loaded {
  opacity: 1;
  transition: opacity 0.3s;
}

.restaurant-info {
  display: flex;
  flex-direction: column;
}
.restaurant-info .restaurant-info__top-container {
  display: flex;
  flex-direction: row;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 1;
  min-width: 0;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1:not(:first-child) {
  margin-left: 22px;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1 .restaurant-info__name {
  overflow: hidden;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1 .restaurant-info__container2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 8px;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1 .restaurant-info__container2 .restaurant-info__location-select-trigger {
  min-width: 0;
}
.restaurant-info .restaurant-info__top-container .restaurant-info__container1 .restaurant-info__container2 .restaurant-info__more {
  margin-left: 13px;
}
.restaurant-info .restaurant-info__bottom-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 17px;
}
.restaurant-info .restaurant-info__bottom-container .restaurant-info__menu-select-trigger {
  margin-right: 16px;
}
.restaurant-info .restaurant-info__bottom-container .restaurant-info__delivery-time,
.restaurant-info .restaurant-info__bottom-container .restaurant-info__pickup-time {
  margin-right: 16px;
}
@media (min-width: 768px) {
  .restaurant-info .restaurant-info__top-container .restaurant-info__container1 .restaurant-info__container2 .restaurant-info__more {
    margin-left: 16px;
  }
  .restaurant-info .restaurant-info__bottom-container {
    margin-top: 24px;
  }
  .restaurant-info .restaurant-info__bottom-container .restaurant-info__menu-select-trigger {
    margin-right: 24px;
  }
  .restaurant-info .restaurant-info__bottom-container .restaurant-info__delivery-time,
  .restaurant-info .restaurant-info__bottom-container .restaurant-info__pickup-time {
    margin-right: 24px;
  }
}

.restaurant-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius3);
  overflow: hidden;
}
.restaurant-icon .restaurant-icon__image {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 768px) {
  .restaurant-icon {
    width: 106px;
    height: 106px;
    border-radius: var(--border-radius4);
  }
}

.chain-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size7);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.14px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .chain-name {
    font-size: var(--font-size9);
    letter-spacing: -0.23px;
  }
}


.drawer-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}
.drawer-trigger .drawer-trigger__icon {
  margin-left: 8px;
}
.drawer-trigger .drawer-trigger__icon > svg {
  display: block;
}
.drawer-trigger .drawer-trigger__icon > svg * {
  fill: hsla(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36) !important;
}
.drawer-trigger .drawer-trigger__caption {
  overflow: hidden;
  text-overflow: ellipsis;
}

.trigger {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: var(--border-radius2);
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  padding: 6px 8px;
  font-size: var(--font-size2);
  white-space: nowrap;
  max-width: 100%;
  filter: blur(0px);
}
.trigger:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.trigger:hover:before {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.trigger:active:before {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.trigger.trigger--clickable {
  cursor: pointer;
}
@media (min-width: 768px) {
  .trigger {
    font-size: var(--font-size3);
    line-height: 1.25;
    height: 36px;
    border-radius: var(--border-radius3);
    padding: 8px 12px;
  }
}

.more-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.more-trigger > svg {
  display: block;
}
.more-trigger > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}


.schedule-caption {
  font-size: var(--font-size2);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  display: flex;
  flex-direction: row;
  align-items: center;
}
.schedule-caption .schedule-caption__icon > svg {
  display: block;
}
.schedule-caption .schedule-caption__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.schedule-caption .schedule-caption__text {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .schedule-caption {
    font-size: var(--font-size3);
    line-height: 1.25;
  }
}


.smiley-report img {
  height: 20px;
}


.navigation-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.navigation-item .navigation-item__name {
  margin-left: 12px;
}

.icon-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: var(--border-radius-circle);
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.icon-badge > svg {
  display: block;
}
.icon-badge > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.icon-badge.icon-badge--dark {
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
}
.icon-badge.icon-badge--dark > svg {
  display: block;
}
.icon-badge.icon-badge--dark > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.icon-badge.icon-badge--primary {
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), calc(var(--base-primary-background-l) + 6.3% * var(--color-dependency-coeff)));
}
.icon-badge.icon-badge--primary > svg {
  display: block;
}
.icon-badge.icon-badge--primary > svg * {
  fill: var(--primary-font-color) !important;
}
.icon-badge svg {
  width: 18px;
}
@media (min-width: 768px) {
  .icon-badge.icon-badge--big {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
  .icon-badge.icon-badge--big svg {
    width: 26px;
  }
}

.navigation-link {
  cursor: pointer;
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
.navigation-link.navigation-link--primary {
  color: var(--primary-font-color);
}

.list.list--splitter-padding hr {
  margin-right: 16px;
  margin-left: 16px;
}

.list-splitter {
  display: block;
  height: 1px;
  border-radius: var(--border-radius3);
  box-shadow: 0 1px 4px 0 hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.08);
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
  border-top: 1.03px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
  margin: 0;
  padding: 0;
}
.list-splitter.list-splitter--modal {
  border: none;
  height: 1.5px;
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  box-shadow: none;
}
.list-splitter.list-splitter--align-by-container {
  position: absolute;
  right: 0;
  left: 0;
}

.list-item {
  padding: 12px;
}
.list-item.list-item--clickable {
  cursor: pointer;
}
.list-item.list-item--clickable:hover {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.list-item.list-item--clickable:active {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.list-item.list-item--increased-border-padding {
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.list-item.list-item--increased-border-padding:first-child {
  padding-top: 14px;
}
.list-item.list-item--increased-border-padding:last-child {
  padding-bottom: 14px;
}
@media (min-width: 768px) {
  .list-item.list-item--responsive {
    padding: 16px;
  }
}

.category-list .category-list__item:not(:first-child) {
  margin-bottom: 24px;
}


.entry-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.entry-card.entry-card--placeholder {
  height: 68px;
}
.entry-card .entry-card__big-image {
  overflow: hidden;
  transform: translateZ(0);
}
.entry-card .entry-card__details {
  overflow: hidden;
  transform: translateZ(0);
}
.entry-card .entry-card__details .entry-card__modifier-list {
  margin-top: 8px;
}
.entry-card .entry-card__details .entry-card__add-button {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .entry-card.entry-card--placeholder {
    height: 85.156px;
  }
  .entry-card .entry-card__details .entry-card__modifier-list {
    margin-top: 24px;
  }
  .entry-card .entry-card__details .entry-card__add-button {
    margin-top: 24px;
  }
}
.entry-card .entry-card__big-image-enter {
  max-height: 0;
  opacity: 0.1;
}
.entry-card .entry-card__big-image-enter.entry-card__big-image-enter-active {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 300ms ease-in, opacity 400ms ease-in 100ms;
}
.entry-card .entry-card__big-image-exit {
  max-height: 1000px;
  opacity: 1;
}
.entry-card .entry-card__big-image-exit.entry-card__big-image-exit-active {
  transition: max-height 300ms ease-out, opacity 300ms ease-out 100ms;
  opacity: 0;
  max-height: 0;
}
.entry-card .entry-card__details-enter {
  max-height: 0;
}
.entry-card .entry-card__details-enter.entry-card__details-enter-active {
  max-height: 1000px;
  transition: max-height 300ms ease-in;
}
.entry-card .entry-card__details-exit {
  max-height: 1000px;
}
.entry-card .entry-card__details-exit.entry-card__details-exit-active {
  transition: max-height 300ms ease-out;
  max-height: 0;
}

.quick-entry-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  cursor: pointer;
}
.quick-entry-card .quick-entry-card__info {
  padding-top: 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
}
.quick-entry-card .quick-entry-card__info .quick-entry-card__name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.quick-entry-card .quick-entry-card__info .quick-entry-card__name .quick-entry-card__sold-out {
  margin-left: 8px;
}
.quick-entry-card .quick-entry-card__info .quick-entry-card__name .quick-entry-card__price-expanded {
  visibility: hidden;
}
.quick-entry-card .quick-entry-card__info .quick-entry-card__allergens {
  display: none;
}
.quick-entry-card .quick-entry-card__info .quick-entry-card__price-quick {
  visibility: visible;
}
.quick-entry-card .quick-entry-card__image {
  margin-left: 20px;
  max-width: 100px;
  min-width: 100px;
}
.quick-entry-card.quick-entry-card--expanded {
  cursor: default;
}
.quick-entry-card.quick-entry-card--expanded .quick-entry-card__info {
  margin-top: 8px;
}
.quick-entry-card.quick-entry-card--expanded .quick-entry-card__info .quick-entry-card__name {
  justify-content: space-between;
}
.quick-entry-card.quick-entry-card--expanded .quick-entry-card__info .quick-entry-card__name .quick-entry-card__price-expanded {
  visibility: visible;
}
.quick-entry-card.quick-entry-card--expanded .quick-entry-card__info .quick-entry-card__price-quick {
  visibility: hidden;
}
.quick-entry-card.quick-entry-card--expanded .quick-entry-card__allergens {
  display: block;
}
@media (min-width: 768px) {
  .quick-entry-card .quick-entry-card__image {
    max-width: 133px;
    min-width: 133px;
  }
}
.quick-entry-card .entry-card__image-enter {
  opacity: 0.1;
}
.quick-entry-card .entry-card__image-enter.entry-card__image-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in;
}
.quick-entry-card .entry-card__image-exit {
  opacity: 1;
}
.quick-entry-card .entry-card__image-exit.entry-card__image-exit-active {
  transition: opacity 300ms ease-out;
  opacity: 0;
}

.entry-name {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.entry-name.entry-name--expanded {
  white-space: normal;
}
@media (min-width: 768px) {
  .entry-name {
    font-size: var(--font-size4);
    line-height: 1.33;
    letter-spacing: 0.03px;
  }
}

.entry-description {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.entry-description.entry-description--expanded {
  white-space: normal;
}
@media (min-width: 768px) {
  .entry-description {
    font-size: var(--font-size3);
    letter-spacing: 0.03px;
  }
}

.entry-price {
  font-size: var(--font-size1);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
@media (min-width: 768px) {
  .entry-price {
    font-size: var(--font-size3);
    letter-spacing: 0.03px;
  }
}

.entry-image-new {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius1);
  background-color: transparent;
}
.entry-image-new .lazy-load-image-background {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.entry-image-new--special {
  background-color: #fff;
}
.entry-image-new--small {
  height: 62px;
}
@media (min-width: 1280px) {
  .entry-image-new--small {
    height: 80px;
  }
}
.entry-image-new--small .lazy-load-image-background {
  height: 62px;
}
@media (min-width: 1280px) {
  .entry-image-new--small {
    height: 85px;
  }
  .entry-image-new--small .lazy-load-image-background {
    height: 85px;
  }
}
.entry-image-new--large {
  height: 230px;
}
.entry-image-new--large .lazy-load-image-background {
  height: 230px;
}
@media (min-width: 1280px) {
  .entry-image-new--large {
    height: 340px;
  }
  .entry-image-new--large .lazy-load-image-background {
    height: 340px;
  }
}
.entry-image-new .entry-image-new__image {
  max-height: 100%;
  max-width: 100%;
}
.entry-image-new .entry-image-new__image--special {
  object-fit: contain;
}
.entry-image-new .entry-image-new__image--default {
  object-fit: fill;
  height: 100%;
  width: 100%;
}
@media (min-width: 1280px) {
  .entry-image-new {
    border-radius: var(--border-radius2);
  }
}
.entry-image {
  display: block;
  border-radius: var(--border-radius1);
  overflow: hidden;
  position: relative;
  padding-top: 52%;
}
.entry-image .entry-image__image {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .entry-image {
    border-radius: var(--border-radius2);
  }
}

.cardTopPadding {
  padding-top: 12px;
}
@media (min-width: 768px) {
  .cardTopPadding {
    padding-top: 16px;
  }
}
.cardBottomPadding {
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .cardBottomPadding {
    padding-bottom: 16px;
  }
}
.cardLeftPadding {
  padding-left: 12px;
}
@media (min-width: 768px) {
  .cardLeftPadding {
    padding-left: 16px;
  }
}
.cardRightPadding {
  padding-right: 12px;
}
@media (min-width: 768px) {
  .cardRightPadding {
    padding-right: 16px;
  }
}
.inputStyles {
  border-radius: var(--border-radius1);
  padding: 8px 12px;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  border: none;
  width: 100%;
}
.inputStyles::placeholder {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), calc(var(--group-card-font-color-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
@media (min-width: 768px) {
  .inputStyles {
    padding: 12px 16px;
    letter-spacing: 1px;
    border-radius: var(--border-radius2);
  }
}
.badge {
  padding: 4px 8px;
  color: var(--badge-color);
  border-radius: var(--border-radius1);
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
  white-space: nowrap;
  font-size: var(--font-size1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
}
.badge.badge--warning {
  color: #e9672e;
  background-color: var(--weorder-darkorange);
}
.badge.badge--ongoing {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: #6792F4;
}
.badge.badge--disabled {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: var(--badge-disabled-background-color);
  text-transform: uppercase;
}
.badge.badge--success {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: #0E9E73;
}
.badge.badge--error {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: #F04438;
}
@media (min-width: 768px) {
  .badge {
    font-size: var(--font-size2);
    letter-spacing: 1px;
  }
}

.icon-text-button {
  padding: 5px 8px;
  border-radius: 3px;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 10% * var(--color-dependency-coeff)));
  max-width: 90px;
  cursor: pointer;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  display: flex;
  align-items: center;
}
.icon-text-button .icon-text-button__text {
  margin-left: 5px;
  font-size: 12px;
}
.icon-text-button .icon-text-button__icon svg {
  height: 16px;
  width: 16px;
}
.icon-text-button .icon-text-button__icon > svg {
  display: block;
}
.icon-text-button .icon-text-button__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}

.entry-from-price {
  font-size: var(--font-size1);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
@media (min-width: 768px) {
  .entry-from-price {
    font-size: var(--font-size3);
    letter-spacing: 0.03px;
  }
}

.button {
  cursor: pointer;
  overflow: hidden;
  padding: 12px 16px;
  width: 100%;
  border-radius: var(--border-radius3);
  box-shadow: 0 2px 4px 0 hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
  color: var(--primary-font-color);
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  white-space: nowrap;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  filter: blur(0px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.button:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.button:hover:before {
  backdrop-filter: brightness(90%);
  -webkit-backdrop-filter: brightness(90%);
}
.button:active:before {
  backdrop-filter: brightness(80%);
  -webkit-backdrop-filter: brightness(80%);
}
.button.button--auto-width {
  width: auto;
}
.button.button--disabled,
.button.button--loading {
  opacity: 50%;
  cursor: not-allowed;
}
.button.button--text {
  width: auto;
  background-color: transparent;
  padding: 0;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  box-shadow: none;
}
.button.button--text:before {
  content: none;
}
.button.button--outlined {
  width: auto;
  background-color: transparent;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  box-shadow: none;
}
.button.button--outlined:before {
  content: none;
}
.button.button--light-text {
  width: auto;
  background-color: transparent;
  padding: 0;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  box-shadow: none;
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.2px;
}
.button .button__loading {
  width: 16px;
  margin-right: 5px;
}
.button .button__content {
  flex: 1;
}
@media (min-width: 768px) {
  .button {
    padding: 16px;
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.inline-spinner.inline-spinner--regular > svg {
  display: block;
}
.inline-spinner.inline-spinner--regular > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.inline-spinner.inline-spinner-primary > svg {
  display: block;
}
.inline-spinner.inline-spinner-primary > svg * {
  fill: var(--primary-font-color) !important;
}
.inline-spinner svg {
  animation: rotating 2s linear infinite;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.entry-edit .entry-edit__item {
  padding: 8px 0;
}

.modifier-trigger {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.modifier-trigger.modifier-trigger--small .modifier-trigger__control {
  max-width: 50%;
}
.modifier-trigger .modifier-trigger__name {
  flex-basis: 0;
  flex-grow: 1;
}
.modifier-trigger .modifier-trigger__control {
  margin-left: 8px;
  min-width: 0;
  overflow: hidden;
  flex: 1;
  max-width: 40%;
}

.modifier-name {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}
@media (min-width: 768px) {
  .modifier-name:not(.modifier-name--small) {
    font-size: var(--font-size3);
    line-height: 1.13;
    letter-spacing: 0.03px;
  }
}


.minibutton {
  display: block;
  height: 24px;
  font-size: var(--font-size1);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), calc(var(--base-modal-l) + 9% * var(--color-dependency-coeff)));
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  text-align: center;
  line-height: 1;
  padding: 5px 12px;
  width: 100%;
  min-width: 45px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.minibutton.minibutton--clickable {
  cursor: pointer;
}
.minibutton.minibutton--clickable:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.minibutton.minibutton--clickable:hover:before {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.minibutton.minibutton--clickable:active:before {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.minibutton.minibutton--big {
  height: 32px;
  font-size: var(--font-size2);
  letter-spacing: 0.02px;
}
.minibutton.minibutton--left {
  border-radius: var(--border-radius1) 0 0 var(--border-radius1);
}
.minibutton.minibutton--right {
  border-radius: 0 var(--border-radius1) var(--border-radius1) 0;
}
.minibutton.minibutton--transparent {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 8.2% * var(--color-dependency-coeff)));
}
.minibutton.minibutton--pressed {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 8.2% * var(--color-dependency-coeff)));
}

.minibutton-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  border-radius: var(--border-radius1);
  width: 100%;
  filter: blur(0px);
}
.minibutton-group .minibutton-group__item {
  flex-grow: 1;
  flex-basis: 0;
}
.minibutton-group:not(.minibutton-group--solid) .minibutton-group__item:not(:first-child) {
  margin-left: 1px;
}

.modifier-value {
  font-size: var(--font-size1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  white-space: nowrap;
  text-align: center;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 8.2% * var(--color-dependency-coeff)));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 7px 20px;
  border-radius: var(--border-radius1);
}
.modifier-value span {
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 768px) {
  .modifier-value:not(.modifier-value--small) {
    font-size: var(--font-size3);
    line-height: 1.13;
    letter-spacing: 0.03px;
  }
}

.block .block__title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.block .block__contents {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .block:not(.block--non-scalable) .block__contents {
    margin-top: 16px;
  }
}

.block-title {
  font-size: var(--font-size2);
  color: var(--group-heading-font-color);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.2px;
}
.block-title.block-title--large {
  font-size: var(--font-size7);
}
@media (min-width: 768px) {
  .block-title:not(.block-title--non-scalable) {
    font-size: var(--font-size5);
    line-height: 1;
    letter-spacing: 0.34px;
  }
}

.card {
  -webkit-transform: translate3d(0, 0, 0);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius3);
  width: 100%;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  box-shadow: 0 1px 3px 0 hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.08);
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), var(--card-background-color-l));
  filter: blur(0px);
}
@media (min-width: 768px) {
  .card {
    padding-top: 16px;
  }
}
@media (min-width: 768px) {
  .card {
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .card {
    padding-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .card {
    padding-left: 16px;
  }
}
.card.card--nested {
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) - 6% * var(--color-dependency-coeff)));
}
.card.card--primary {
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.card.card--no-paddings {
  padding: 0;
}
@media (max-width: 768px) {
  .card.card--no-paddings {
    padding: 0;
  }
}

.scroll-anchor {
  height: 120px;
  margin-top: -105px;
}

.initial {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.initial .initial__image {
  position: relative;
  flex-grow: 1;
}
.initial .initial__summary {
  padding-top: 24px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 32px;
}
.initial .initial__order-type-select {
  margin-top: 24px;
  margin-bottom: 20px;
}
.initial .initial__navigation {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .initial {
    position: relative;
  }
  .initial .initial__summary {
    padding-bottom: 0;
  }
  .initial .initial__order-type-select {
    margin-bottom: 0;
  }
  .initial .initial__splitter {
    display: none;
  }
}



.profile-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-summary .profile-summary__offers {
  margin-top: 13px;
}
.profile-summary .profile-summary__container {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
}
.profile-summary .profile-summary__container .profile-summary__cashpoints {
  margin-right: 48px;
}

.user-name {
  font-size: var(--font-size6);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.16px;
  text-align: center;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.user-name.user-name--clickable {
  cursor: pointer;
}

.chip {
  border-radius: var(--border-radius5);
  padding: 5px 8px;
  border: 1px solid hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  font-size: var(--font-size1);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  white-space: nowrap;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
  filter: blur(0px);
}
.chip:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.chip:hover:before {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.chip:active:before {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.chip.chip--clickable {
  cursor: pointer;
}
.chip.chip--selected {
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  color: var(--primary-font-color);
}
.chip.chip--primary {
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  color: var(--primary-font-color);
  padding: 4px 25px;
  border-radius: var(--border-radius5);
}
.chip.chip--outlined {
  padding: 4px 25px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  border-radius: var(--border-radius5);
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) - 70% * var(--color-dependency-coeff)));
}
.chip.chip--outlined.chip--selected {
  color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
  background-color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) - 30% * var(--color-dependency-coeff)));
}
@media (min-width: 768px) {
  .chip:not(.chip--primary) {
    font-size: var(--font-size3);
    line-height: 1;
    padding: 8px 12px;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat.stat--clickable {
  cursor: pointer;
}

.stat-number {
  font-size: var(--font-size3);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}

.stat-caption {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}


.popup {
  width: 100%;
  border-radius: var(--border-radius5);
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  font-family: var(--weorder-font);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
}
.popup .popup__contents {
  overflow: hidden;
  max-height: 90vh;
  margin-right: 24px;
  margin-left: 24px;
}
.popup .popup__contents:first-child {
  margin-top: 24px;
}
.popup .popup__contents:not(:first-child) {
  margin-top: 16px;
}
.popup .popup__contents:last-child {
  margin-bottom: 24px;
}
.popup .popup__bottom-static-control {
  margin-top: 24px;
  margin-right: 24px;
  margin-left: 24px;
  margin-bottom: 24px;
}
.popup .popup__loading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup__loading .popup__loading-spinner {
  display: block;
  width: 32px;
  height: 32px;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: stretch;
}
.dialog-overlay.dialog-overlay--bottom-contents .dialog-overlay__content {
  padding: 16px;
  flex-grow: 1;
}
.dialog-overlay .dialog-overlay__content {
  width: 100%;
  max-height: 99vh;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dialog-overlay:not(.dialog-overlay--bottom-contents) {
    align-items: center;
    justify-content: center;
  }
  .dialog-overlay .dialog-overlay__content {
    width: auto;
  }
}
.dialog-overlay.dialog-enter {
  opacity: 0.01;
}
.dialog-overlay.dialog-enter .dialog-overlay__content {
  transform: translateY(80%);
}
.dialog-overlay.dialog-enter.dialog-enter-active {
  opacity: 1;
  transition: opacity 125ms ease-in;
}
.dialog-overlay.dialog-enter.dialog-enter-active .dialog-overlay__content {
  transform: translateY(0);
  transition: transform 125ms ease-in;
}
.dialog-overlay.dialog-exit {
  opacity: 1;
}
.dialog-overlay.dialog-exit .dialog-overlay__content {
  transform: translateY(0);
}
.dialog-overlay.dialog-exit.dialog-exit-active {
  opacity: 0.01;
  transition: opacity 75ms ease-in;
}
.dialog-overlay.dialog-exit.dialog-exit-active .dialog-overlay__content {
  transform: translateY(80%);
  transition: transform 75ms ease-in;
}
@media (min-width: 768px) {
  .dialog-overlay .dialog-overlay__content {
    min-width: 480px;
  }
  .dialog-overlay[class*=dialog-] .dialog-overlay__content {
    transform: none;
    transition: transform 0ms;
  }
  .dialog-overlay.dialog-enter {
    opacity: 0.01;
  }
  .dialog-overlay.dialog-enter.dialog-enter-active {
    opacity: 1;
    transition: opacity 125ms ease-in;
  }
  .dialog-overlay.dialog-exit {
    opacity: 1;
  }
  .dialog-overlay.dialog-exit.dialog-exit-active {
    opacity: 0.01;
    transition: opacity 75ms ease-in;
  }
}

.pseudo-page {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 50px 16px 16px 16px;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
  display: flex;
  flex-direction: column;
}
.pseudo-page.pseudo-page--transparent-gradient {
  background: linear-gradient(transparent 0%, hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l)) 20%);
}
.pseudo-page.pseudo-page--no-padding {
  padding: 0;
}
.pseudo-page .pseudo-page__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
}
.pseudo-page .pseudo-page__header .pseudo-page__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pseudo-page .pseudo-page__contents {
  flex-basis: 0;
  flex-grow: 1;
  margin-top: 24px;
  overflow: hidden;
}

.back-button {
  display: block;
  border-radius: var(--border-radius-circle);
  width: 32px;
  height: 32px;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: blur(0px);
}
.back-button > svg {
  display: block;
}
.back-button > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.back-button:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.back-button:hover:before {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.back-button:active:before {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.back-button.back-button--normal {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 14.1% * var(--color-dependency-coeff)));
}
.back-button.back-button--dark {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
}

.pseudo-page-title {
  font-size: var(--font-size6);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.16px;
  text-align: center;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}

.popup-header {
  margin-top: 24px;
}
.popup-header .popup-header__top-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 24px;
  margin-left: 24px;
}
.popup-header .popup-header__top-container .popup-header__back {
  margin-right: 12px;
}
.popup-header .popup-header__top-container .popup-header__header-container .popup-header__description {
  margin-top: 8px;
  max-width: 480px;
  white-space: pre-line;
  overflow-wrap: break-word;
  word-break: break-all;
}
.popup-header .popup-header__bottom-control {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

.drawer-title {
  font-size: var(--font-size3);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  color: var(--group-heading-font-color);
}
@media (min-width: 768px) {
  .drawer-title {
    font-size: var(--font-size4);
    letter-spacing: 1.29px;
  }
}

.drawer-description {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
  max-height: 38px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .drawer-description {
    line-height: normal;
  }
}
.drawer-description a {
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  cursor: pointer;
}
.drawer-description.drawer-description--full-size {
  max-height: unset;
}

.drawer {
  width: 100%;
  border-radius: var(--border-radius3) var(--border-radius3) 0 0;
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  font-family: var(--weorder-font);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}
.drawer .drawer__icon {
  padding-top: 16px;
  padding-bottom: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.drawer .drawer__contents {
  overflow: hidden;
  max-height: 90vh;
  margin-right: 16px;
  margin-left: 16px;
}
.drawer .drawer__contents:last-child {
  margin-bottom: 16px;
}
.drawer .drawer__contents:first-child {
  margin-top: 24px;
}
.drawer .drawer__bottom-static-control {
  margin-top: 24px;
  margin-right: 16px;
  margin-left: 16px;
  margin-bottom: 16px;
}
.drawer .drawer__loading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), var(--base-modal-l));
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer .drawer__loading .drawer__loading-spinner {
  display: block;
  width: 32px;
  height: 32px;
}
.platform-ios .drawer {
  padding-bottom: env(safe-area-inset-bottom);
}

.drawer-chevron {
  display: block;
}
.drawer-chevron > svg {
  display: block;
}
.drawer-chevron > svg * {
  fill: hsla(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36) !important;
}
.drawer-chevron.drawer-chevron--up {
  transform: rotate(180deg);
}

.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 3;
  align-items: center;
  display: flex;
  justify-content: center;
}
.loading-spinner.loading-spinner--opaque {
  background-color: black;
}
.loading-spinner.loading-spinner--transparent {
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
}

.loading-icon {
  background-color: white;
  display: block;
  width: 64px;
  height: 64px;
  position: relative;
  border-radius: 7pt;
  box-shadow: 0 1pt 3pt rgba(0, 0, 0, 0.08);
}
.loading-icon .loading-icon__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.minicart-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  position: relative;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.minicart-trigger:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.minicart-trigger .minicart-trigger__icon {
  position: absolute;
  top: 50%;
  left: 50%;
}
.minicart-trigger:hover:before {
  backdrop-filter: brightness(90%);
  -webkit-backdrop-filter: brightness(90%);
}
.minicart-trigger:active:before {
  backdrop-filter: brightness(80%);
  -webkit-backdrop-filter: brightness(80%);
}

.cart-caption {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: var(--primary-font-color);
}

.minicart-total {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: var(--primary-font-color);
  display: inline-block;
}
.minicart-total.minicart-total--bouncing {
  animation: bounceIn 0.5s;
  -webkit-animation: bounceIn 0.5s;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.4) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.8);
  }
  80% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.minicart-trigger-chevron {
  display: block;
  transform: rotate(180deg);
}
.minicart-trigger-chevron > svg {
  display: block;
}
.minicart-trigger-chevron > svg * {
  fill: var(--primary-font-color) !important;
}

.minicart .minicart__items {
  max-height: 45vh;
  overflow: hidden;
}
.minicart .minicart__checkout {
  margin-top: 27px;
}

.checkout-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-button.checkout-button--bouncing .checkout-button__price {
  animation: bounceIn 0.5s;
  -webkit-animation: bounceIn 0.5s;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.4) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.4);
  }
  80% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.cart-display {
  padding-top: 12px;
}
@media (min-width: 768px) {
  .cart-display {
    padding-top: 16px;
  }
}
.cart-display.cart-display--no-paddings {
  padding: 0;
}
.cart-display.cart-display--no-paddings .cart-display__items {
  padding: 0;
}
.cart-display.cart-display--no-paddings .cart-display__totals {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.cart-display.cart-display--highlight-total .cart-display__totals {
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), calc(var(--base-modal-l) - 2% * var(--color-dependency-coeff)));
}
.cart-display .cart-display__items {
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .cart-display .cart-display__items {
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .cart-display .cart-display__items {
    padding-left: 16px;
  }
}
.cart-display .cart-display__totals {
  padding-right: 12px;
  padding-left: 12px;
  padding-bottom: 12px;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .cart-display .cart-display__totals {
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .cart-display .cart-display__totals {
    padding-left: 16px;
  }
}
@media (min-width: 768px) {
  .cart-display .cart-display__totals {
    padding-bottom: 16px;
  }
}
.cart-display .cart-display__totals .cart-display__total {
  margin-top: 8px;
}

.cart-items .cart-items__item {
  padding: 8px 0;
}

.cart-item-editable .cart-item-editable__title {
  margin-bottom: 11px;
}

.cart-item-short {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cart-item-name {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cart-item-price {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cart-item-readonly {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.cart-item-readonly .cart-item-readonly__container {
  margin-left: 8px;
  flex: 1;
}
.cart-item-readonly .cart-item-readonly__container .cart-item-readonly__modifier-list .cart-item-readonly__modifier {
  margin-top: 2px;
}

.quantity-badge {
  display: inline-block;
  min-width: 20px;
  min-height: 24px;
  border-radius: var(--border-radius1);
  text-align: center;
  padding: 5px 4px;
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
}

.cart-modifier {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cart-modifier-name {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02px;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}

.cart-modifier-price {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02px;
  text-align: right;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}

.cart-total {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.cart-total.cart-total--subtotal {
  font-size: var(--font-size1);
  line-height: 1.5;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
.cart-total.cart-total--subtotal .cart-total__price {
  font-size: var(--font-size1);
  font-weight: normal;
}
.cart-total .cart-total__price {
  font-size: var(--font-size3);
  font-weight: bold;
}

.free-delivery-progress {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.2);
}
.free-delivery-progress.normal {
  padding: 8px 12px;
}
.free-delivery-progress__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.free-delivery-progress__top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.free-delivery-progress__top-info__title {
  font-weight: 700;
  font-size: var(--font-size2);
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.free-delivery-progress__top-info__title.normal {
  font-weight: 400;
}
.free-delivery-progress__bottom {
  font-size: var(--font-size2);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  line-height: 16px;
}
.scooter-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
}
.scooter-icon > svg {
  display: block;
}
.scooter-icon > svg * {
  fill: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l)) !important;
}
.free-delivery-progress__top-progress {
  position: relative;
  border-radius: 12px;
  height: 8px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.1);
}
.free-delivery-progress__top-progress__fill {
  position: absolute;
  height: 8px;
  border-radius: 12px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}

.order-for-delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--border-radius4);
  padding: 12px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.2);
  margin-bottom: 24px;
}
.order-for-delivery__title {
  font-size: var(--font-size2);
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.order-for-delivery__number {
  font-size: var(--font-size2);
  font-weight: 700;
  line-height: 120%;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.pickup-time-content {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr;
  margin-bottom: 12px;
  align-items: center;
}
.pickup-time-content__left {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pickup-time-content__right {
  font-size: var(--font-size2);
  font-weight: 600;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}
.pickup-time-content__left__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.pickup-time-content__left__icon > svg {
  display: block;
}
.pickup-time-content__left__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.pickup-time-content__left__text {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.select-location .select-location__permission-request {
  margin-bottom: 8px;
}


.location-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.location-card .location-card__container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
.location-card .location-card__container .location-card__address,
.location-card .location-card__container .location-card__schedule {
  margin-top: 2px;
}
.location-card .location-card__image {
  margin-left: 20px;
  max-width: 100px;
  min-width: 100px;
}

.location-image {
  display: block;
  border-radius: var(--border-radius1);
  overflow: hidden;
  position: relative;
  padding-top: 72%;
}
.location-image .location-image__image {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .location-image {
    border-radius: var(--border-radius2);
  }
}

.location-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.location-address {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}

.location-schedule {
  font-size: var(--font-size1);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}


.popup-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.popup-footer .popup-footer__left-secondary-control {
  margin-left: 24px;
}
.popup-footer .popup-footer__right-control {
  margin-left: auto;
}

.drawer-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.drawer-footer .drawer-footer__left-secondary-control {
  margin-left: 32px;
}
.drawer-footer .drawer-footer__right-control {
  margin-left: auto;
}

.drawer-header {
  margin-bottom: 16px;
  margin-top: 0;
}
.drawer-header .drawer-header__container {
  margin-right: 16px;
  margin-left: 16px;
}
.drawer-header .drawer-header__container .drawer-header__description {
  margin-top: 8px;
  white-space: pre-line;
  overflow-wrap: break-word;
  word-break: break-all;
}
.drawer-header .drawer-header__bottom-control {
  display: flex;
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}

.permission-request {
  /**/
  margin-top: 8px;
  width: 100%;
  margin-right: 16px;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .permission-request {
    margin-right: 24px;
    margin-left: 24px;
  }
}

.delivery-address .delivery-address__container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.delivery-address .delivery-address__container .delivery-address__address-input {
  flex-grow: 1;
}
.delivery-address .delivery-address__container .delivery-address__zip-input {
  margin-left: 8px;
}
.delivery-address .delivery-address__autocomplete-options {
  margin-top: 16px;
}
.delivery-address .delivery-address__error,
.delivery-address .delivery-address__success {
  margin-top: 16px;
}

.input {
  border-radius: var(--border-radius1);
  padding: 8px 12px;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  border: none;
  width: 100%;
}
.input::placeholder {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), calc(var(--group-card-font-color-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
@media (min-width: 768px) {
  .input {
    padding: 12px 16px;
    letter-spacing: 1px;
    border-radius: var(--border-radius2);
  }
}
.input.input--multiline {
  min-width: 100%;
  max-width: 50vw;
  max-height: 50vh;
}


.autocomplete-list .autocomplete-list__item {
  cursor: pointer;
}
.autocomplete-list .autocomplete-list__item:not(:first-child) {
  padding-top: 12px;
}
.autocomplete-list .autocomplete-list__item:not(:last-child) {
  padding-bottom: 12px;
}

.autocomplete-item {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
}

.error {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: var(--weorder-red);
}
@media (min-width: 768px) {
  .error {
    line-height: normal;
  }
}

.success {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: var(--weorder-green);
}
@media (min-width: 768px) {
  .success {
    line-height: normal;
  }
}

.zip-edit .zip-edit__error {
  margin-top: 8px;
}

.error-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}
.error-message .error-message__control {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .error-message {
    align-items: center;
  }
}

.message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 568px;
}
.message .message__container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.message .message__container .message__title {
  margin-left: 8px;
}
.message .message__description {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .message {
    align-items: center;
  }
  .message .message__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .message .message__container .message__title {
    margin-left: 0;
    margin-top: 16px;
  }
  .message .message__description {
    margin-top: 8px;
  }
}

.error-message-title {
  font-size: var(--font-size3);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  color: var(--group-heading-font-color);
}
@media (min-width: 768px) {
  .error-message-title {
    font-size: var(--font-size4);
    letter-spacing: 1.29px;
    text-align: center;
  }
}

.error-message-description {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
.error-message-description b {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .error-message-description {
    text-align: center;
  }
}

.modifier-group-edit__validation-message {
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  margin-top: 24px;
}



.select-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 8px;
  cursor: pointer;
}
.select-list-item.select-list-item--selected {
  background-color: hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
}
.select-list-item.select-list-item--disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.select-list-item .select-list-item__name {
  flex-grow: 1;
}
.select-list-item .select-list-item__name:not(:first-child) {
  margin-left: 8px;
}

.select-list-item-name {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
.select-list-item-name.select-list-item-name--disabled {
  text-decoration: line-through;
  text-decoration-color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.click-icon {
  border-radius: 50%;
}
.click-icon svg {
  height: 20px;
  width: 20px;
}
.click-icon > svg {
  display: block;
}
.click-icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff))) !important;
}

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius1);
  cursor: pointer;
  border: 2px solid hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.checkbox.checkbox--radio {
  border-radius: var(--border-radius-circle);
}
.checkbox.checkbox--secondary:not(.checkbox--checked) {
  border: none;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
}
.checkbox.checkbox--checked {
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.checkbox.checkbox--checked > svg {
  display: block;
}
.checkbox.checkbox--checked > svg * {
  fill: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l)) !important;
}


.quantities-modifiers-group-edit-max-reached {
  margin-top: 16px;
  color: var(--weorder-orange);
}

.stepper {
  display: flex;
  flex-direction: column;
  padding: 15px 45px 15px;
  width: 100%;
  align-items: center;
}
.stepper .stepper__header {
  display: flex;
  align-items: center;
}
.stepper .stepper__line {
  flex: 1;
  height: 1px;
  border: 1px solid hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), calc(var(--group-card-secondary-font-color-l) - 31% * var(--color-dependency-coeff)));
  display: block;
}
.stepper .stepper__text {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  white-space: pre-wrap;
  width: 100%;
}

.step {
  width: 8px;
  height: 8px;
}
.step .step__marker {
  background-color: transparent;
  border: solid 1px hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), calc(var(--group-card-secondary-font-color-l) - 31% * var(--color-dependency-coeff)));
  border-radius: var(--border-radius-circle);
  width: 8px;
  height: 8px;
  line-height: 30px;
  text-align: center;
  z-index: 1;
}
.step.step--active .step__marker {
  background-color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  border: solid 1px hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.header-card {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) - 14.1% * var(--color-dependency-coeff)));
}

.add-to-home-screen {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.add-to-home-screen .add-to-home-screen__text-container {
  margin-left: 27px;
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
}
.add-to-home-screen .add-to-home-screen__text-container .add-to-home-screen__install {
  margin-top: 10px;
}
.add-to-home-screen .add-to-home-screen__text-container .add-to-home-screen__install .add-to-home-screen__more-icon {
  vertical-align: middle;
}
.add-to-home-screen .add-to-home-screen__text-container .add-to-home-screen__install .add-to-home-screen__menu-item-name {
  font-weight: bold;
}

.prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.prompt.prompt--android .prompt__connector {
  display: none;
}
.prompt .prompt__contents {
  padding: 16px 24px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  color: var(--primary-font-color);
  border-radius: 7px;
}
.prompt .prompt__connector {
  display: block;
  width: 0;
  height: 0;
  border-top: 22px solid hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
}

.add-to-home-screen-android {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.add-to-home-screen-android .add-to-home-screen-android__text-container {
  font-size: var(--font-size3);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
}
.add-to-home-screen-android .add-to-home-screen-android__text-container .add-to-home-screen-android__install {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.android-button {
  padding: 7px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-font-color);
  border-radius: 7px;
  cursor: pointer;
}
.android-button .android-button__icon > svg {
  display: block;
}
.android-button .android-button__icon > svg * {
  fill: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l)) !important;
}
.android-button .android-button__text {
  margin-left: 6px;
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  font-size: var(---font-size3);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  text-align: center;
}

.add-to-home-screen-ios {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.add-to-home-screen-ios .add-to-home-screen-ios__icon > svg {
  display: block;
}
.add-to-home-screen-ios .add-to-home-screen-ios__icon > svg * {
  fill: var(--primary-font-color) !important;
}
.add-to-home-screen-ios .add-to-home-screen-ios__icon svg {
  width: 48px;
  height: 48px;
}
.add-to-home-screen-ios .add-to-home-screen-ios__text-container {
  margin-left: 27px;
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.02px;
}
.add-to-home-screen-ios .add-to-home-screen-ios__text-container .add-to-home-screen-ios__install {
  margin-top: 10px;
}
.add-to-home-screen-ios .add-to-home-screen-ios__text-container .add-to-home-screen-ios__install .add-to-home-screen-ios__more-icon {
  vertical-align: middle;
}
.add-to-home-screen-ios .add-to-home-screen-ios__text-container .add-to-home-screen-ios__install .add-to-home-screen-ios__menu-item-name {
  font-weight: bold;
}

.phone .phone__input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.phone .phone__input-container .phone__number {
  flex-grow: 1;
  margin-left: 8px;
}
.phone .phone__error {
  margin-top: 8px;
}
.phone .reCaptcha-error {
  color: red;
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: var(--border-radius1);
  padding: 8px 12px;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  border: none;
  width: 100%;
  cursor: pointer;
}
.select::placeholder {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), calc(var(--group-card-font-color-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
@media (min-width: 768px) {
  .select {
    padding: 12px 16px;
    letter-spacing: 1px;
    border-radius: var(--border-radius2);
  }
}
.select > * {
  color: initial;
}

.verification-code {
  display: flex;
  flex-direction: column;
}
.verification-code .verification-code__code {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.verification-code .verification-code__error {
  margin-top: 8px;
}
.verification-code .verification-code__terms-consent {
  margin-top: 24px;
}
.verification-code .verification-code__marketing-consent {
  margin-top: 8px;
}

.code-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.code-picker .code-picker__digit:not(:first-child) {
  margin-left: 8px;
}

.code-picker-digit {
  display: block;
  width: 36px;
  height: 48px;
  border-radius: var(--border-radius1);
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  border: none;
  text-align: center;
}
@media (min-width: 768px) {
  .code-picker-digit {
    width: 48px;
    height: 64px;
    border-radius: var(--border-radius2);
  }
}

.consent-text {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}

.consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.consent .consent__caption {
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.link {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  cursor: pointer;
}

.orders .orders__history {
  margin-top: 8px;
}
.orders .orders__placeholder .orders__login-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.order-card {
  display: flex;
  flex-direction: column;
}
.order-card .order-card__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.order-card .order-card__top-row .order-card__restaurant-name {
  flex: 1;
}
.order-card .order-card__top-row .order-card__indicator {
  margin-left: 10px;
}
.order-card .order-card__bottom-row {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.order-card .order-card__bottom-row .order-card__status-date-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 50%;
}
.order-card .order-card__bottom-row .order-card__status-date-container .order-card__items-string {
  min-width: 0;
  margin-right: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: white;
}
.order-card .order-card__bottom-row .order-card__status-date-container .order-card__status {
  padding-top: 10px;
}
.order-card .order-card__bottom-row .order-card__action-control {
  max-width: 50%;
}

.order-card-title {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  font-weight: bold;
  font-size: var(--font-size3);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.order-card-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--font-size2);
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
.order-card-status .order-card-status__order-status,
.order-card-status .order-card-status__order-title {
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
.order-card-status .order-card-status__order-status {
  font-size: var(--font-size2);
  letter-spacing: 1px;
}
.order-card-status .order-card-status__order-title {
  font-size: var(--font-size1);
  font-weight: normal;
  letter-spacing: 0.86px;
}
.order-card-status .order-card-status__order-connector {
  margin: 0 5px;
}

.order-card-price {
  font-weight: bold;
  font-size: var(--font-size3);
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.order-card-items {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.indicator {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: var(--border-radius-circle);
}
.indicator.indicator--success {
  background-color: var(--weorder-green);
}


.empty-placeholder {
  padding: 16px;
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  text-align: center;
}
@media (min-width: 768px) {
  .empty-placeholder {
    padding: 8px;
  }
}

.profile .profile__discounts {
  margin-top: 24px;
}


.profile-picker {
  display: flex;
  flex-direction: column;
}
.profile-picker .profile-picker__control {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .profile-picker {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .profile-picker .profile-picker__control {
    margin-top: 0;
  }
}

.profile-picker-title {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
@media (min-width: 768px) {
  .profile-picker-title {
    font-size: var(--font-size2);
    letter-spacing: 1px;
  }
}

.profile-picker-trigger {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}


.settings .settings__add-to-home-screen {
  margin-top: 16px;
}
.settings .settings-footer {
  margin-top: 24px;
}


.settings-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-caption {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .footer-caption {
    font-size: var(--font-size2);
    letter-spacing: 1px;
  }
}


.footer-button {
  cursor: pointer;
}

.name .name__error {
  margin-top: 8px;
}

.email .email__error {
  margin-top: 8px;
}

.birthday .birthday__input {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: stretch;
}
.birthday .birthday__input .birthday__day-selector,
.birthday .birthday__input .birthday__month-selector,
.birthday .birthday__input .birthday__year-selector {
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 0;
  max-height: 30vh;
}
.birthday .birthday__input .birthday__month-selector,
.birthday .birthday__input .birthday__year-selector {
  margin-left: 8px;
}
.birthday .birthday__error {
  margin-top: 8px;
}


.offer-list .offer-list__item:not(:first-child) {
  padding-top: 12px;
}
.offer-list .offer-list__item:not(:last-child) {
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .offer-list .offer-list__item:not(:first-child) {
    padding-top: 16px;
  }
  .offer-list .offer-list__item:not(:last-child) {
    padding-bottom: 16px;
  }
}

.offer {
  display: flex;
  flex-direction: column;
}
.offer .offer__description {
  margin-top: 2px;
}

.offer-title {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.07px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.offer-description {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.07px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cashpoints .cashpoints__transactions {
  margin-top: 24px;
}

.cashpoints-balance {
  display: block;
  width: 100%;
  text-align: center;
  font-size: var(--font-size8);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cashpoints-transaction-list .cashpoints-transaction-list__item:not(:first-child) {
  padding-top: 12px;
}
.cashpoints-transaction-list .cashpoints-transaction-list__item:not(:last-child) {
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .cashpoints-transaction-list .cashpoints-transaction-list__item:not(:first-child) {
    padding-top: 16px;
  }
  .cashpoints-transaction-list .cashpoints-transaction-list__item:not(:last-child) {
    padding-bottom: 16px;
  }
}

.cashpoints-transaction {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.cashpoints-transaction-date {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cashpoints-transaction-amount {
  font-size: var(--font-size1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}



.stripe-card-registration .stripe-card-registration__error {
  margin-top: 8px;
}
.stripe-card-registration .stripe-card-registration__submit {
  margin-top: 24px;
}

.card-details {
  display: flex;
  flex-direction: column;
}
.card-details .card-details__container {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}
.card-details .card-details__container .card-details__expiry,
.card-details .card-details__container .card-details__cvc {
  flex: 1;
}
.card-details .card-details__container .card-details__cvc {
  margin-left: 8px;
}

.stripe-input-wrapper {
  border-radius: var(--border-radius1);
  padding: 8px 12px;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff)));
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.02px;
  border: none;
  width: 100%;
}
.stripe-input-wrapper::placeholder {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), calc(var(--group-card-font-color-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}
@media (min-width: 768px) {
  .stripe-input-wrapper {
    padding: 12px 16px;
    letter-spacing: 1px;
    border-radius: var(--border-radius2);
  }
}

.promocode-edit .promocode-edit__error {
  margin-top: 8px;
}

.table-edit .table-edit__error {
  margin-top: 8px;
}

.vipps-payment-frame {
  height: 70vh;
  background-color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}

.confirmation {
  max-width: 480px;
}

.email-receipt .email-receipt__subscribe {
  margin-top: 24px;
}
.email-receipt .email-receipt__error {
  margin-top: 16px;
}

.notifications .notifications__sms-consent {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .notifications {
    max-width: 480px;
  }
}

.block-description {
  font-size: var(--font-size2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: hsla(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.8);
}
@media (min-width: 768px) {
  .block-description {
    font-size: var(--font-size3);
    line-height: 1.31;
  }
}

.terms .terms__marketing-consent {
  margin-top: 8px;
}
.terms .terms__error {
  margin-top: 8px;
}

.error-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}
.error-message .error-message__control {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .error-message {
    align-items: center;
  }
}

.mobile-pay-form {
  display: block;
  width: 1px;
  height: 1px;
  visibility: hidden;
}

.adyen-checkout__spinner__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.adyen-checkout__spinner__wrapper--inline {
  display: inline-block;
  height: auto;
  margin-right: 8px;
}
[dir=rtl] .adyen-checkout__spinner__wrapper--inline {
  margin-left: 8px;
  margin-right: 0;
}
.adyen-checkout__spinner {
  -webkit-animation: rotateSpinner 1.5s linear infinite;
  animation: rotateSpinner 1.5s linear infinite;
  border: 3px solid #06f;
  border-radius: 50%;
  border-top-color: transparent;
  height: 43px;
  width: 43px;
}
.adyen-checkout__spinner--large {
  height: 43px;
  width: 43px;
}
.adyen-checkout__spinner--small {
  border-width: 2px;
  height: 16px;
  width: 16px;
}
.adyen-checkout__spinner--medium {
  height: 28px;
  width: 28px;
}
@-webkit-keyframes rotateSpinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes rotateSpinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.adyen-checkout__button {
  background: #00112c;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  height: 48px;
  margin: 0;
  padding: 15px;
  text-decoration: none;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out;
  width: 100%;
}
.adyen-checkout__button:focus {
  box-shadow: 0 0 0 2px #99c2ff;
  outline: 0;
}
.adyen-checkout__button:hover {
  background: #1c3045;
  box-shadow: 0 0, 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
}
.adyen-checkout__button:active {
  background: #3a4a5c;
}
.adyen-checkout__button:hover:focus {
  box-shadow: 0 0 0 2px #99c2ff, 0 3px 4px rgba(0, 15, 45, 0.2);
}
.adyen-checkout__button:disabled,
.adyen-checkout__button:disabled:hover {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.4;
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
}
.adyen-checkout__button.adyen-checkout__button--loading {
  background: #687282;
  box-shadow: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.adyen-checkout__button.adyen-checkout__button--pay {
  margin-top: 24px;
}
.adyen-checkout__button.adyen-checkout__button--pay:disabled {
  opacity: 1;
}
.adyen-checkout__button.adyen-checkout__button--standalone {
  margin-top: 0;
}
.adyen-checkout__button.adyen-checkout__button--inline {
  display: block;
  font-size: 0.81em;
  height: auto;
  padding: 10px 8px;
  width: auto;
}
.adyen-checkout__button.adyen-checkout__button--ghost {
  background: none;
  border: 0;
  color: #00112c;
}
.adyen-checkout__button.adyen-checkout__button--ghost:hover {
  background: #f7f8f9;
  box-shadow: none;
}
.adyen-checkout__button.adyen-checkout__button--ghost:active {
  background: #e6e9eb;
  box-shadow: none;
}
.adyen-checkout__button.adyen-checkout__button--secondary {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid transparent;
  color: #06f;
  padding: 10px 12px;
}
.adyen-checkout__button.adyen-checkout__button--secondary:hover {
  background: rgba(0, 102, 255, 0.2);
  box-shadow: none;
}
.adyen-checkout__button.adyen-checkout__button--secondary:active,
.adyen-checkout__button.adyen-checkout__button--secondary:active:hover {
  background: rgba(0, 102, 255, 0.3);
  box-shadow: none;
}
.adyen-checkout__button.adyen-checkout__button--link {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #06f;
  font-weight: 400;
  padding: 2px;
}
.adyen-checkout__button.adyen-checkout__button--link:hover {
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
}
.adyen-checkout__button.adyen-checkout__button--completed,
.adyen-checkout__button.adyen-checkout__button--completed:active,
.adyen-checkout__button.adyen-checkout__button--completed:active:hover,
.adyen-checkout__button.adyen-checkout__button--completed:hover {
  background: #0abf53;
  color: #fff;
}
.adyen-checkout__button.adyen-checkout__button--completed .adyen-checkout__button__icon {
  filter: brightness(0) invert(1);
}
.adyen-checkout__button__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.adyen-checkout__button__icon {
  margin-right: 12px;
}
[dir=rtl] .adyen-checkout__button__icon {
  margin-left: 12px;
  margin-right: 0;
}
.adyen-checkout__button__text {
  display: block;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adyen-checkout__button .adyen-checkout__spinner {
  border-color: transparent #fff #fff;
}
.adyen-checkout__fieldset {
  display: block;
  padding-bottom: 8px;
  width: 100%;
}
.adyen-checkout__fieldset:last-of-type {
  padding-bottom: 0;
}
.adyen-checkout__fieldset + .adyen-checkout__fieldset {
  margin-top: 16px;
}
.adyen-checkout__fieldset__title {
  color: #687282;
  display: block;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 0 12px;
  text-transform: uppercase;
}
.adyen-checkout__field-group,
.adyen-checkout__fieldset__fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.adyen-checkout__field-group:last-of-type .adyen-checkout__field {
  margin-bottom: 0;
}
.adyen-checkout__fieldset--readonly .adyen-checkout__fieldset__fields {
  color: #00112c;
  font-size: 0.81em;
  line-height: 19px;
  margin: 0;
}
.adyen-checkout__field {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}
.adyen-checkout__field:last-of-type {
  margin-bottom: 0;
}
.adyen-checkout__label {
  display: block;
}
.adyen-checkout__helper-text,
.adyen-checkout__label__text {
  color: #00112c;
  display: block;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 13px;
  padding-bottom: 5px;
}
.adyen-checkout__helper-text {
  color: #687282;
}
.adyen-checkout__label__text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.1s ease-out;
  white-space: nowrap;
}
.adyen-checkout__label__text--error {
  color: #d10244;
}
.adyen-checkout__label--focused .adyen-checkout__label__text {
  color: #06f;
}
.adyen-checkout__error-text {
  align-items: center;
  color: #d10244;
  display: flex;
  font-size: 0.75em;
  font-weight: 400;
  margin-top: 4px;
}
.adyen-checkout__radio_group + .adyen-checkout-input__inline-validation {
  display: none;
}
.adyen-checkout__radio_group__input {
  opacity: 0;
  position: absolute;
}
.adyen-checkout__radio_group__label {
  color: inherit;
  display: block;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 16px;
  overflow: visible;
  padding-bottom: 0;
  padding-left: 24px;
  position: relative;
}
.adyen-checkout__label--focused .adyen-checkout__radio_group__label {
  color: inherit;
}
.adyen-checkout__radio_group__label:before {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
  width: 16px;
}
.adyen-checkout__radio_group__label:hover:before {
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
  cursor: pointer;
}
.adyen-checkout__radio_group__label:after {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 15, 45, 0.25);
  content: "";
  display: block;
  height: 6px;
  left: 5px;
  margin: 0 auto;
  position: absolute;
  top: 5px;
  transform: scale(0);
  transition: transform 0.2s ease-out;
  width: 6px;
}
.adyen-checkout__radio_group__label:hover {
  border-color: #06f;
  cursor: pointer;
}
.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:before,
.adyen-checkout__radio_group__label--selected {
  background-color: #06f;
  border: 0;
  transition: all 0.2s ease-out;
}
.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:after {
  transform: scale(1);
}
.adyen-checkout__radio_group__input:focus + .adyen-checkout__radio_group__label:before {
  border-color: #06f;
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.4);
}
.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:hover:before,
.adyen-checkout__radio_group__input:checked:active + .adyen-checkout__radio_group__label:before,
.adyen-checkout__radio_group__input:checked:focus + .adyen-checkout__radio_group__label:before {
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.4);
}
.adyen-checkout__radio_group__label.adyen-checkout__radio_group__label--invalid:before {
  border: 1px solid #d10244;
}
.adyen-checkout__checkbox {
  display: block;
}
.adyen-checkout__checkbox__label {
  color: #00112c;
  cursor: pointer;
  display: inline-block;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 19px;
  padding-left: 24px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[dir=rtl] .adyen-checkout__checkbox__label {
  padding-left: 0;
  padding-right: 24px;
}
.adyen-checkout__checkbox__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.adyen-checkout__checkbox__input:checked + .adyen-checkout__checkbox__label:before {
  opacity: 1;
}
.adyen-checkout__checkbox__input:checked + .adyen-checkout__checkbox__label:after {
  background-color: #06f;
  border: 1px solid #06f;
}
.adyen-checkout__checkbox__input:checked:hover + .adyen-checkout__checkbox__label:after {
  border-color: #06f;
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.4);
}
.adyen-checkout__checkbox__input:focus + .adyen-checkout__checkbox__label:after {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__checkbox__input:hover:not(:focus) + .adyen-checkout__checkbox__label:after {
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
}
.adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:before {
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  border-color: transparent #fff #fff transparent;
  border-radius: 0 2px 1px 2px;
  border-style: solid;
  border-width: 1px 2px 2px 1px;
  content: "";
  height: 11px;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(37deg);
  transform-origin: 100% 100%;
  transition: opacity 0.2s ease-out;
  width: 6px;
  z-index: 1;
}
[dir=rtl] .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:before {
  left: auto;
  right: 8px;
}
.adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 3px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  transition: background 0.15s ease-out, border 0.05s ease-out, box-shadow 0.1s ease-out;
  width: 16px;
  z-index: 0;
}
[dir=rtl] .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after {
  left: auto;
  right: 0;
}
.adyen-checkout__field--consentCheckbox {
  background: #e6e9eb;
  border: 1px solid #e6e9eb;
  border-radius: 6px;
  padding: 14px 14px 13px;
}
[dir=rtl] .adyen-checkout__field--consentCheckbox {
  padding: 14px 14px 13px;
}
.adyen-checkout__field--consentCheckbox.adyen-checkout__field--error {
  border-color: #d10244;
}
.adyen-checkout__field--consentCheckbox .adyen-checkout-input__inline-validation {
  right: -27px;
  top: 10px;
}
.Select-module_adyen-checkout__dropdown__2kGp2 {
  position: relative;
}
.Select-module_adyen-checkout__dropdown__button__waz0I {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.Select-module_adyen-checkout__dropdown__button__waz0I:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.195 6.565a1 1 0 0 0 1.6 0l2.992-3.98a1 1 0 0 0-.8-1.602H1.013a1 1 0 0 0-.8 1.6l2.983 3.982z' fill='%23687282'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  height: 6px;
  position: absolute;
  right: 16px;
  width: 8px;
}
[dir=rtl] .Select-module_adyen-checkout__dropdown__button__waz0I:after {
  left: 16px;
  right: auto;
}
.Select-module_adyen-checkout__dropdown__button--active__1EqeU:after {
  transform: rotate(180deg);
}
.Select-module_adyen-checkout__filter-input__HMjy5 {
  background: #fff;
  border: 0;
  caret-color: #06f;
  color: #00112c;
  font-family: inherit;
  font-size: 1em;
  height: 100%;
  padding: 0;
  width: 100%;
}
.Select-module_adyen-checkout__filter-input__HMjy5::-moz-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.Select-module_adyen-checkout__filter-input__HMjy5:-ms-input-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.Select-module_adyen-checkout__filter-input__HMjy5::placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.Select-module_adyen-checkout__filter-input__HMjy5:active,
.Select-module_adyen-checkout__filter-input__HMjy5:focus {
  outline: 0;
}
.Select-module_adyen-checkout__dropdown__list__2UxAp {
  background: #fff;
  display: none;
  list-style: none;
  margin: 0 0 50px;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.Select-module_adyen-checkout__dropdown__list__2UxAp.Select-module_adyen-checkout__dropdown__list--active__Mlt8t {
  display: block;
}
.Select-module_adyen-checkout__dropdown__element__3nIQR {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.adyen-checkout__image {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.adyen-checkout__image--loaded {
  opacity: 1;
}
.adyen-checkout__dropdown {
  font-size: 1em;
  max-width: 100%;
  width: 100%;
}
.adyen-checkout__dropdown__button {
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  color: #00112c;
  font-size: 1em;
  height: 40px;
  line-height: 20px;
  outline: 0;
  padding: 7px 24px 7px 12px;
  text-decoration: none;
  transition: border 0.2s ease-out, box-shadow 0.2s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
[dir=rtl] .adyen-checkout__dropdown__button {
  padding: 7px 12px 7px 24px;
}
.adyen-checkout__dropdown__button:hover {
  border-color: #99a3ad;
}
.adyen-checkout__dropdown__button__icon {
  border-radius: 3px;
  height: 26px;
  margin-left: auto;
  margin-right: 8px;
  max-width: 40px;
}
.adyen-checkout__dropdown__button--active,
.adyen-checkout__dropdown__button--active:hover,
.adyen-checkout__dropdown__button:active,
.adyen-checkout__dropdown__button:focus {
  border-color: #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__dropdown__button--readonly,
.adyen-checkout__dropdown__button--readonly--active,
.adyen-checkout__dropdown__button--readonly:focus,
.adyen-checkout__dropdown__button--readonly:hover {
  background: #e6e9eb;
  border-color: transparent;
  color: #00112c;
  cursor: not-allowed;
}
.adyen-checkout__dropdown__button--readonly:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.195 6.565a1 1 0 0 0 1.6 0l2.992-3.98a1 1 0 0 0-.8-1.602H1.013a1 1 0 0 0-.8 1.6l2.983 3.982z' fill='%23B9C4C9'/%3E%3C/svg%3E");
}
.adyen-checkout__dropdown__button--invalid {
  border-color: #d10244;
}
.adyen-checkout__dropdown__button--valid {
  border-bottom-color: #0abf53;
}
.adyen-checkout__dropdown__button__text {
  overflow: hidden;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adyen-checkout__dropdown__list {
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(0, 15, 45, 0.3);
  max-height: 375px;
  z-index: 2;
}
.adyen-checkout__dropdown__list.adyen-checkout__dropdown__list--active {
  margin-top: 2px;
}
.adyen-checkout__dropdown__element {
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.81em;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 20px;
  outline: 0;
  padding: 8px;
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  word-break: break-word;
}
.adyen-checkout__dropdown__element:last-child {
  border-bottom: 0;
}
.adyen-checkout__dropdown__element:active,
.adyen-checkout__dropdown__element:focus,
.adyen-checkout__dropdown__element:hover {
  background: rgba(230, 233, 235, 0.6);
}
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active {
  background: rgba(0, 102, 255, 0.1);
}
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:active,
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:focus,
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:hover {
  background: rgba(0, 102, 255, 0.15);
}
.adyen-checkout__dropdown__element--disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adyen-checkout__dropdown__element__icon {
  border-radius: 3px;
  margin-right: 8px;
  max-height: 26px;
  max-width: 40px;
}
.adyen-checkout__dropdown__element__flag {
  margin-left: 8px;
  margin-right: 10px;
  max-height: 18px;
  max-width: 27px;
}
.adyen-checkout__dropdown + .adyen-checkout-input__inline-validation {
  right: 32px;
}
.adyen-checkout__field-wrapper {
  display: flex;
  width: 100%;
}
.adyen-checkout__field--20 {
  width: 20%;
}
.adyen-checkout__field--30 {
  width: 30%;
}
.adyen-checkout__field--40 {
  width: 40%;
}
.adyen-checkout__field--50 {
  width: 50%;
}
.adyen-checkout__field--60 {
  width: 60%;
}
.adyen-checkout__field--70 {
  width: 70%;
}
.adyen-checkout__field--80 {
  width: 80%;
}
.adyen-checkout__field--col-70 {
  width: calc(70% - 8px);
}
.adyen-checkout__field--col-30 {
  width: calc(30% - 8px);
}
.adyen-checkout__field--col-50 {
  width: calc(50% - 8px);
}
.adyen-checkout__field-wrapper > .adyen-checkout__field:first-child {
  margin-right: 8px;
}
[dir=rtl] .adyen-checkout__field-wrapper > .adyen-checkout__field:first-child {
  margin-left: 8px;
  margin-right: 0;
}
.adyen-checkout__field-wrapper > .adyen-checkout__field:nth-child(2) {
  margin-left: 8px;
}
[dir=rtl] .adyen-checkout__field-wrapper > .adyen-checkout__field:nth-child(2) {
  margin-left: 0;
  margin-right: 8px;
}
.adyen-checkout__field-wrapper:last-of-type > .adyen-checkout__field {
  margin-bottom: 0;
}
.adyen-checkout__input {
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  caret-color: #06f;
  color: #00112c;
  display: block;
  font-family: inherit;
  font-size: 1em;
  height: 40px;
  outline: none;
  padding: 5px 8px;
  position: relative;
  transition: border 0.2s ease-out, box-shadow 0.2s ease-out;
  width: 100%;
}
.adyen-checkout__input:hover {
  border-color: #99a3ad;
}
.adyen-checkout__input:required {
  box-shadow: none;
}
.adyen-checkout__input--disabled,
.adyen-checkout__input[readonly] {
  background: #e6e9eb;
  border-color: #e6e9eb;
}
.adyen-checkout__input--disabled:hover {
  border-color: #e6e9eb;
}
.adyen-checkout__input-wrapper {
  display: block;
  position: relative;
}
.adyen-checkout__input-wrapper--block {
  display: block;
}
.adyen-checkout-input__inline-validation {
  height: 16px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
[dir=rtl] .adyen-checkout-input__inline-validation {
  left: 14px;
  right: auto;
}
[dir=ltr] .adyen-checkout-input__inline-validation {
  left: auto;
  right: 14px;
}
.adyen-checkout-input__inline-validation--valid {
  color: #0abf53;
}
.adyen-checkout-input__inline-validation--invalid {
  color: #d10244;
}
.adyen-checkout__input--invalid {
  border-color: #d10244;
}
.adyen-checkout__input--valid {
  border-bottom-color: #0abf53;
}
.adyen-checkout__input--error,
.adyen-checkout__input--error:hover,
.adyen-checkout__input--invalid,
.adyen-checkout__input--invalid:hover {
  border-color: #d10244;
}
.adyen-checkout__input::-moz-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input:-ms-input-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input::placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input--date {
  padding-right: 30px;
}
.adyen-checkout__input--focus,
.adyen-checkout__input--focus:hover,
.adyen-checkout__input:active,
.adyen-checkout__input:active:hover,
.adyen-checkout__input:focus,
.adyen-checkout__input:focus:hover {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__input[readonly],
.adyen-checkout__input[readonly]:hover {
  background-color: #e6e9eb;
  border-color: transparent;
  color: #687282;
  cursor: default;
}
.adyen-checkout__fieldset--personalDetails .adyen-checkout__field--gender .adyen-checkout__radio_group {
  display: flex;
}
.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group {
  display: flex;
  margin: 8px 0;
}
.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group__input-wrapper {
  margin-right: 20px;
}
.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group__input-wrapper:last-child {
  margin: 0;
}
.adyen-checkout__open-invoice .adyen-checkout__fieldset--billingAddress {
  padding-bottom: 8px;
}
.adyen-checkout__open-invoice .adyen-checkout__fieldset--deliveryAddress {
  margin-top: 24px;
  padding-bottom: 8px;
}
.adyen-checkout__open-invoice .adyen-checkout__input--separateDeliveryAddress {
  margin-bottom: 0;
}
.adyen-checkout__open-invoice .adyen-checkout__field--consentCheckbox {
  margin-top: 22px;
}
.adyen-checkout__input--separateDeliveryAddress + .adyen-checkout__checkbox__label {
  margin-top: 16px;
}
.adyen-checkout__amazonpay__button {
  margin: auto;
}
.adyen-checkout__amazonpay .adyen-checkout__button--ghost {
  display: block;
  margin: 8px auto 0;
  width: auto;
}
@supports (-webkit-appearance:-apple-pay-button) {
  .ApplePayButton-module_apple-pay-button__26P3- {
    -webkit-appearance: -apple-pay-button;
    cursor: pointer;
    display: inline-block;
  }
  .ApplePayButton-module_apple-pay-button-black__3Ml54 {
    -apple-pay-button-style: black;
  }
  .ApplePayButton-module_apple-pay-button-white__1qE8A {
    -apple-pay-button-style: white;
  }
  .ApplePayButton-module_apple-pay-button-white-with-line__j9FE5 {
    -apple-pay-button-style: white-outline;
  }
  .ApplePayButton-module_apple-pay-button--type-plain__2mnnX {
    -apple-pay-button-type: plain;
  }
  .ApplePayButton-module_apple-pay-button--type-buy__eMnIy {
    -apple-pay-button-type: buy;
  }
  .ApplePayButton-module_apple-pay-button--type-donate__3zvI8 {
    -apple-pay-button-type: donate;
  }
  .ApplePayButton-module_apple-pay-button--type-check-out__ipg0J {
    -apple-pay-button-type: check-out;
  }
  .ApplePayButton-module_apple-pay-button--type-book__155Xs {
    -apple-pay-button-type: book;
  }
  .ApplePayButton-module_apple-pay-button--type-subscribe__3uPJ5 {
    -apple-pay-button-type: subscribe;
  }
  .ApplePayButton-module_apple-pay-button--type-add-money__xmCaj {
    -apple-pay-button-type: add-money;
  }
  .ApplePayButton-module_apple-pay-button--type-contribute__RCq2P {
    -apple-pay-button-type: contribute;
  }
  .ApplePayButton-module_apple-pay-button--type-order__f5tpZ {
    -apple-pay-button-type: order;
  }
  .ApplePayButton-module_apple-pay-button--type-reload__1P53C {
    -apple-pay-button-type: reload;
  }
  .ApplePayButton-module_apple-pay-button--type-rent__2J4wk {
    -apple-pay-button-type: rent;
  }
  .ApplePayButton-module_apple-pay-button--type-support__3-p0R {
    -apple-pay-button-type: support;
  }
  .ApplePayButton-module_apple-pay-button--type-tip__2-gCt {
    -apple-pay-button-type: tip;
  }
  .ApplePayButton-module_apple-pay-button--type-top-up__9UKXI {
    -apple-pay-button-type: top-up;
  }
}
@supports not (-webkit-appearance:-apple-pay-button) {
  .ApplePayButton-module_apple-pay-button__26P3- {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% 60%;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    max-height: 64px;
    min-height: 32px;
    min-width: 200px;
    padding: 0;
  }
  .ApplePayButton-module_apple-pay-button-black__3Ml54 {
    background-color: black;
    background-image: -webkit-named-image(apple-pay-logo-white);
  }
  .ApplePayButton-module_apple-pay-button-white-with-line__j9FE5,
  .ApplePayButton-module_apple-pay-button-white__1qE8A {
    background-color: white;
    background-image: -webkit-named-image(apple-pay-logo-black);
  }
  .ApplePayButton-module_apple-pay-button-white-with-line__j9FE5 {
    border: 0.5px solid black;
  }
}
.adyen-checkout__applepay__button {
  height: 40px;
  width: 240px;
}
.adyen-checkout__dropin .adyen-checkout__applepay__button {
  width: 100%;
}
.adyen-checkout__field--issuer-list {
  margin-bottom: 0;
}
.CardInput-module_card-input__wrapper__2tAzu {
  position: relative;
}
.CardInput-module_card-input__wrapper__2tAzu *,
.CardInput-module_card-input__wrapper__2tAzu :after,
.CardInput-module_card-input__wrapper__2tAzu :before {
  box-sizing: border-box;
}
.CardInput-module_card-input__icon__2Iaf5 {
  border-radius: 3px;
  height: 18px;
  margin-left: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
}
.CardInput-module_card-input__form__2Ij_n {
  opacity: 1;
}
.CardInput-module_card-input__spinner__1wHzq {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.CardInput-module_card-input__spinner--active__1Dzoe {
  display: block;
}
.CardInput-module_card-input__form--loading__3zh3Y {
  opacity: 0;
}
.CardInput-module_adyen-checkout__input__3Jmld {
  display: block;
  max-height: 100px;
}
.CardInput-module_adyen-checkout__card__cvc__input--hidden__1Z1lp,
.CardInput-module_adyen-checkout__card__exp-date__input--hidden__3850Y {
  display: none;
}
.CardInput-module_adyen-checkout__card__exp-cvc__exp-date__input--hidden__3wxr3 {
  justify-content: flex-end;
}
.CardInput-module_revolving-plan-installments__disabled__2yP53 {
  opacity: 0.4;
  pointer-events: none;
}
.adyen-checkout__card-input__form {
  transition: opacity 0.25s ease-out;
}
.adyen-checkout__card__cardNumber {
  max-width: 400px;
}
.adyen-checkout__card__cardNumber__input {
  padding: 5px 8px;
}
.adyen-checkout__card__exp-date__input--oneclick {
  font-weight: 400;
  line-height: 30px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adyen-checkout__card__holderName,
.adyen-checkout__field--expiryDate,
.adyen-checkout__field--storedCard {
  margin-bottom: 0;
}
.adyen-checkout__card-input .adyen-checkout__fieldset--billingAddress,
.adyen-checkout__card__holderName,
.adyen-checkout__card__kcp-authentication,
.adyen-checkout__card__socialSecurityNumber,
.adyen-checkout__installments,
.adyen-checkout__store-details {
  margin-top: 16px;
}
.adyen-checkout__card__holderName:first-child {
  margin: 0 0 16px;
}
.adyen-checkout__field--cardNumber .adyen-checkout__input--error .adyen-checkout__card__cardNumber__brandIcon,
.adyen-checkout__field--cardNumber .adyen-checkout__input--valid:not(.adyen-checkout__card__cardNumber__input--noBrand) + .adyen-checkout-input__inline-validation--valid {
  display: none;
}
.adyen-checkout__field--securityCode.adyen-checkout__field--error .adyen-checkout__card__cvc__hint,
.adyen-checkout__field--securityCode.adyen-checkout__field--valid .adyen-checkout__card__cvc__hint {
  opacity: 0;
}
@-webkit-keyframes cvcIndicateLocation {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
@keyframes cvcIndicateLocation {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
.adyen-checkout__label--focused .adyen-checkout__field__cvc--back-hint .adyen-checkout__card__cvc__hint--back .adyen-checkout__card__cvc__hint__location,
.adyen-checkout__label--focused .adyen-checkout__field__cvc--front-hint .adyen-checkout__card__cvc__hint--front .adyen-checkout__card__cvc__hint__location {
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: cvcIndicateLocation;
  animation-name: cvcIndicateLocation;
}
.adyen-checkout__card__cvc__hint__wrapper {
  align-items: center;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  display: flex;
  height: 100%;
  margin: 0 10px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateZ(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: 27px;
  will-change: transform;
}
.adyen-checkout__field__cvc--front-hint.adyen-checkout__card__cvc__hint__wrapper {
  transform: rotateY(180deg);
}
.adyen-checkout__card__cvc__hint {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  transition: opacity 0.1s linear;
}
.adyen-checkout__card__cvc__hint--front {
  transform: rotateY(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .adyen-checkout__card__cvc__hint__wrapper {
    transition: none;
  }
}
.adyen-checkout__fieldset--revolving-plan .adyen-checkout__fieldset__fields {
  justify-content: left;
}
.adyen-checkout__fieldset--revolving-plan .adyen-checkout__radio_group {
  display: flex;
  flex-direction: column;
}
.adyen-checkout__fieldset--revolving-plan .adyen-checkout__radio_group__input-wrapper {
  margin-top: 20px;
}
.adyen-checkout__fieldset--revolving-plan .adyen-checkout__field--revolving-plan-installments {
  margin-left: 15px;
  position: relative;
  top: 42px;
  width: 30%;
}
.LoadingWrapper-module_loading-input__form__1jpVs {
  opacity: 1;
}
.LoadingWrapper-module_loading-input__form--loading__3LDWz {
  opacity: 0;
}
.LoadingWrapper-module_loading-input__spinner__3eCyK {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.LoadingWrapper-module_loading-input__spinner--active__3UDtX {
  display: block;
}
.adyen-checkout__card__dual-branding__buttons {
  display: flex;
  opacity: 0.4;
  pointer-events: none;
}
.adyen-checkout__card__dual-branding__buttons--active {
  opacity: 1;
  pointer-events: auto;
}
.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon {
  cursor: pointer;
  opacity: 1;
}
.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon:first-child {
  right: 40px;
}
.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon--not-selected {
  opacity: 0.5;
}
.adyen-checkout__button-group {
  background: transparent;
  display: flex;
  justify-content: space-between;
}
.adyen-checkout__button-group .adyen-checkout__button {
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px #99a3ad;
  color: #00112c;
  font-size: 0.81em;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  margin-right: 8px;
  padding: 0;
  text-align: center;
}
.adyen-checkout__button-group .adyen-checkout__button:last-child {
  margin-right: 0;
}
.adyen-checkout__button-group .adyen-checkout__button:hover {
  background: transparent;
  box-shadow: inset 0 0 0 2px #99a3ad;
}
.adyen-checkout__button-group .adyen-checkout__button:active {
  background: #f7f8f9;
  box-shadow: inset 0 0 0 2px #99a3ad;
}
.adyen-checkout__button-group .adyen-checkout__button--disabled,
.adyen-checkout__button-group .adyen-checkout__button--disabled:hover {
  cursor: not-allowed;
  opacity: 0.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.adyen-checkout__button-group .adyen-checkout__button--selected,
.adyen-checkout__button-group .adyen-checkout__button--selected:active,
.adyen-checkout__button-group .adyen-checkout__button--selected:active:hover,
.adyen-checkout__button-group .adyen-checkout__button--selected:hover {
  background: #e5efff;
  box-shadow: inset 0 0 0 2px #06f;
  color: #06f;
  font-weight: 500;
  height: 40px;
  transition: none;
}
.adyen-checkout__button-group .adyen-checkout__button .adyen-checkout__button-group__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.adyen-checkout__adyen-giving .adyen-checkout__status__icon {
  display: block;
  margin: 56px auto 32px;
}
.adyen-checkout__adyen-giving .adyen-checkout__status__text {
  color: #00112c;
  margin-bottom: 56px;
  text-align: center;
}
.adyen-checkout__campaign {
  background: #00112c;
  border-radius: 6px;
  height: 227px;
  overflow: hidden;
  position: relative;
}
.adyen-checkout__campaign-link:hover .adyen-checkout__campaign-description {
  text-decoration: underline;
}
.adyen-checkout__campaign-container {
  height: 100%;
}
.adyen-checkout__campaign-logo {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  display: block;
  height: 48px;
  margin-bottom: 16px;
  overflow: hidden;
  width: 48px;
}
.adyen-checkout__campaign-background-image {
  background-color: #00112c;
  background-position: 50%;
  background-size: cover;
  height: 100%;
}
.adyen-checkout__campaign-link .adyen-checkout__campaign-background-image:before {
  background: inherit;
  content: "";
  height: 100%;
  position: absolute;
  transition: transform 0.6s ease-out;
  width: 100%;
}
.adyen-checkout__campaign-link .adyen-checkout__campaign-background-image:hover:before {
  transform: scale(1.1);
}
.adyen-checkout__campaign-link .adyen-checkout__campaign-content {
  pointer-events: none;
}
.adyen-checkout__campaign-content {
  bottom: 0;
  padding: 16px;
  position: absolute;
  z-index: 2;
}
.adyen-checkout__campaign-description,
.adyen-checkout__campaign-title {
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.adyen-checkout__campaign-title {
  font-size: 1em;
  margin-bottom: 8px;
}
.adyen-checkout__campaign-description {
  font-size: 0.81em;
  line-height: 19px;
}
.adyen-checkout__adyen-giving-actions {
  margin-top: 16px;
}
.adyen-checkout__button.adyen-checkout__button--donate {
  margin: 16px auto 8px;
}
.adyen-checkout__button.adyen-checkout__button--decline {
  display: block;
  margin: auto;
  width: auto;
}
.adyen-checkout__paywithgoogle > div > button,
.adyen-checkout__paywithgoogle > div > button.long,
.adyen-checkout__paywithgoogle > div > button.short {
  height: 48px;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
}
.adyen-checkout__paywithgoogle > div > button.long:focus,
.adyen-checkout__paywithgoogle > div > button.short:focus,
.adyen-checkout__paywithgoogle > div > button:focus {
  box-shadow: 0 0 0 2px #99c2ff;
  outline: 0;
}
.adyen-checkout__paywithgoogle > div > button.gpay-button {
  padding: 15px 24px 13px;
}
.adyen-checkout__voucher-result {
  border-radius: 12px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.adyen-checkout__voucher-result__bottom,
.adyen-checkout__voucher-result__top {
  background: #fff;
  border: 1px solid #d4d9db;
}
.adyen-checkout__voucher-result__top {
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  padding: 40px 0 24px;
}
.adyen-checkout__voucher-result__bottom {
  border-radius: 0 0 12px 12px;
  border-top: 0;
}
.adyen-checkout__voucher-result__separator {
  align-items: center;
  background: #fff;
  display: flex;
  height: 13px;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 14px);
}
.adyen-checkout__voucher-result__separator:after,
.adyen-checkout__voucher-result__separator:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJtMCAwIDUgMiAxLjUgNEg3VjBIMHptMCAxMyA1LTIgMS41LTRIN3Y2SDB6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTYuNDIzIDYuNUM2LjQyMyAzLjMxMiAzLjc4My43NTYuNS41MThjMy4zODYuMjM2IDYgMi44NTUgNiA1Ljk4MiAwIDMuMTI3LTIuNjE0IDUuNzQ2LTYgNS45ODN2LS4wMDFjMy4yODQtLjIzNyA1LjkyMy0yLjc5NCA1LjkyMy01Ljk4MnoiIHN0cm9rZT0iI0Q0RDlEQiIvPjxwYXRoIGZpbGw9IiNENEQ5REIiIGQ9Ik0wIDBoMXYxSDB6TTAgMTJoMXYxSDB6Ii8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg3djEzSDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+);
}
.adyen-checkout__voucher-result__separator:before {
  left: -7px;
}
.adyen-checkout__voucher-result__separator:after,
.adyen-checkout__voucher-result__separator:before {
  background-position: 100%;
  background-repeat: no-repeat;
  content: "";
  height: 13px;
  position: absolute;
  top: 0;
  width: 7px;
}
.adyen-checkout__voucher-result__separator:after {
  right: -7px;
  transform: rotate(-180deg);
}
.adyen-checkout__voucher-result__separator__inner {
  border-top: 1px solid #e6e9eb;
  width: 100%;
}
.adyen-checkout__voucher-result__image {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}
.adyen-checkout__link--voucher-result-instructions {
  display: inline-block;
}
.adyen-checkout__voucher-result__image__wrapper {
  display: block;
  height: 48px;
  margin: 0 24px;
  position: relative;
}
.adyen-checkout__voucher-result__image__wrapper:after {
  border: 1px solid rgba(0, 27, 43, 0.17);
  border-radius: 3px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.adyen-checkout__voucher-result__image__wrapper:nth-child(2):before {
  border-left: 1px solid #d4d9db;
  content: "";
  height: 64px;
  left: -24.5px;
  position: absolute;
  top: -8px;
  width: 1px;
}
.adyen-checkout__voucher-result__image__brand,
.adyen-checkout__voucher-result__image__issuer {
  border-radius: 3px;
  height: 48px;
}
.adyen-checkout__voucher-result__introduction {
  color: #00112c;
  font-size: 0.81em;
  line-height: 19px;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}
.adyen-checkout__voucher-result__amount {
  color: #00112c;
  font-size: 1em;
  font-weight: 700;
  margin: 24px auto 0;
  text-align: center;
}
.adyen-checkout__voucher-result__surcharge {
  color: #687282;
  display: block;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
}
.adyen-checkout__voucher-result__code__label {
  display: block;
  font-weight: 400;
  left: 0;
  line-height: 19px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
}
.adyen-checkout__voucher-result__code__label:before {
  content: "";
  position: absolute;
}
.adyen-checkout__voucher-result__code__label__text {
  background: #fff;
  color: #00112c;
  font-size: 13px;
  letter-spacing: normal;
  line-height: 1;
  padding: 0 8px;
}
.adyen-checkout__voucher-result__code__barcode {
  display: block;
  height: 56px;
  margin: 0 auto 8px;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.adyen-checkout__voucher-result__code {
  border-width: 1px 0;
  color: #00112c;
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 auto;
  padding: 16px 48px;
  position: relative;
  text-align: center;
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
  width: 100%;
  word-break: break-word;
}
.adyen-checkout__voucher-result__details {
  list-style: none;
  margin: -1px auto 0;
  padding: 0;
}
.adyen-checkout__voucher-result__details__item {
  border-top: 1px solid #e6e9eb;
  color: #00112c;
  display: flex;
  font-size: 0.81em;
  justify-content: space-between;
  padding: 16px 24px;
  word-break: break-word;
}
.adyen-checkout__voucher-result__details__item:last-child {
  margin-bottom: 0;
}
.adyen-checkout__voucher-result__details__label {
  max-width: 50%;
  text-align: left;
}
.adyen-checkout__voucher-result__details__value {
  font-weight: 700;
  max-width: 50%;
  text-align: right;
}
.adyen-checkout__voucher-result__actions {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto 32px;
  max-width: 100%;
  min-width: 200px;
  padding: 0;
  width: 300px;
}
.adyen-checkout__voucher-result__actions__item {
  margin: 0 4px;
}
.adyen-checkout__paypal__buttons {
  position: relative;
  z-index: 0;
}
.adyen-checkout__paypal__button {
  display: flex;
  margin-bottom: 16px;
}
.adyen-checkout__paypal__button:empty {
  display: none;
}
.adyen-checkout__paypal__status--pending {
  margin: 16px 0;
}
.adyen-checkout__paypal__status--processing {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: center;
  padding: 24px 0;
}
.adyen-checkout__payment-method .adyen-checkout__paypal__status--pending {
  margin: -16px 0 38px;
}
.adyen-checkout__payment-method .adyen-checkout__paypal__status--processing {
  padding: 20px 0 65px;
}
.adyen-checkout__phone-input {
  direction: ltr;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper {
  width: 100%;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input {
  height: auto;
  padding: 0;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input:focus {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button {
  border: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  height: 35px;
  width: auto;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button:after {
  box-sizing: revert;
  height: 10px;
  left: 40px;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input--phoneNumber {
  border: 1px solid transparent;
  height: 35px;
  margin-left: 8px;
  padding-left: 15px;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input-wrapper--phoneInput {
  align-items: center;
  display: flex;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input-wrapper--phoneInput:focus {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__phoneNumber {
  align-items: center;
  display: flex;
  margin-left: 65px;
  width: 100%;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__countryFlag {
  position: absolute;
}
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active,
.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active:hover {
  box-shadow: none;
}
.adyen-checkout__iban-input__number {
  padding: 5px 36px 5px 8px;
  text-transform: uppercase;
}
.adyen-checkout__threeds2__challenge,
.adyen-checkout__threeds2__challenge-container {
  background-color: transparent;
  box-sizing: border-box;
  display: block;
  height: inherit;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.adyen-checkout__threeds2__challenge--01,
.adyen-checkout__threeds2__challenge--01 .adyen-checkout__iframe--threeDSIframe {
  height: 400px;
  width: 250px;
}
.adyen-checkout__threeds2__challenge--02,
.adyen-checkout__threeds2__challenge--02 .adyen-checkout__iframe--threeDSIframe {
  height: 400px;
  width: 390px;
}
.adyen-checkout__threeds2__challenge--03,
.adyen-checkout__threeds2__challenge--03 .adyen-checkout__iframe--threeDSIframe {
  height: 600px;
  width: 500px;
}
.adyen-checkout__threeds2__challenge--04,
.adyen-checkout__threeds2__challenge--04 .adyen-checkout__iframe--threeDSIframe {
  height: 400px;
  width: 600px;
}
.adyen-checkout__threeds2__challenge--05,
.adyen-checkout__threeds2__challenge--05 .adyen-checkout__iframe--threeDSIframe {
  height: 100%;
  width: 100%;
}
.adyen-checkout__iframe--threeDSIframe {
  border: 0;
  left: 0;
  position: absolute;
  top: 0;
}
.adyen-checkout__qr-loader {
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.adyen-checkout__qr-loader--result {
  padding: 100px;
}
.adyen-checkout__qr-loader--app {
  border: 0;
  border-radius: 0;
  padding: 0;
}
.adyen-checkout__qr-loader__brand-logo {
  border-radius: 3px;
  width: 74px;
}
.adyen-checkout__qr-loader__subtitle {
  margin: 32px auto 0;
  max-width: 400px;
}
.adyen-checkout__qr-loader__subtitle--result {
  margin-bottom: 32px;
}
.adyen-checkout__qr-loader__payment_amount,
.adyen-checkout__qr-loader__subtitle {
  color: #00112c;
  font-size: 1em;
  line-height: 19px;
}
.adyen-checkout__qr-loader__icon {
  height: 88px;
  width: 88px;
}
.adyen-checkout__qr-loader__payment_amount {
  font-weight: 700;
}
.adyen-checkout__qr-loader__progress {
  background: #d4d9db;
  border-radius: 24px;
  height: 4px;
  margin: 32px auto 12px;
  padding-right: 3%;
  width: 152px;
}
[dir=rtl] .adyen-checkout__qr-loader__progress {
  padding-left: 3%;
  padding-right: 0;
}
.adyen-checkout__qr-loader__percentage {
  background: #06f;
  border-radius: 24px;
  display: block;
  height: 100%;
}
.adyen-checkout__qr-loader__countdown {
  color: #687282;
  font-size: 0.81em;
}
.adyen-checkout__qr-loader > .adyen-checkout__spinner__wrapper {
  margin: 60px 0;
}
.adyen-checkout__qr-loader__app-link {
  display: none;
  margin-top: 16px;
}
.adyen-checkout__qr-loader__separator__label {
  color: #687282;
  display: block;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 1;
}
.adyen-checkout__qr-loader__separator__label:after,
.adyen-checkout__qr-loader__separator__label:before {
  background-color: #e6e9eb;
  content: "\a0";
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: 51%;
  width: 50%;
}
.adyen-checkout__qr-loader__separator__label:before {
  margin-left: -52%;
  text-align: right;
}
.adyen-checkout__qr-loader__separator__label:after {
  margin-left: 2%;
}
.adyen-checkout__button.adyen-checkout__button--qr-loader {
  margin-top: 24px;
  text-decoration: none;
}
.adyen-checkout__qr-loader__instructions {
  color: #687282;
  font-size: 1em;
  line-height: 1.5;
  margin-top: 32px;
}
.adyen-checkout__qr-loader__actions {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media only screen and (max-device-width: 1200px) {
  .adyen-checkout__qr-loader__app-link {
    display: block;
  }
}
.adyen-checkout__voucher-result--boletobancario .adyen-checkout__voucher-result__code {
  font-size: 0.81em;
  line-height: 19px;
  padding: 24px;
  word-break: break-all;
}
.adyen-checkout__voucher-result--oxxo .adyen-checkout__voucher-result__code {
  font-size: 0.81em;
  line-height: 19px;
  padding: 24px;
  word-break: break-all;
}
.adyen-checkout__alert-message {
  border-radius: 6px;
  display: flex;
  font-size: 0.81em;
  margin: 0 0 16px;
  padding: 12px;
  text-align: left;
}
.adyen-checkout__alert-message--error {
  background: #fbe6ed;
}
.adyen-checkout__alert-message--warning {
  background: #ffeacc;
}
.adyen-checkout__alert-message--info {
  background: #e5efff;
}
.adyen-checkout__alert-message__icon {
  height: 14px;
  margin-right: 8px;
  width: 14px;
}
.adyen-checkout__giftcard-result__header {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  font-size: 1em;
  font-weight: 400;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.adyen-checkout__giftcard-result__header__title {
  align-items: center;
  display: flex;
}
.adyen-checkout__giftcard-result__name {
  margin-left: 8px;
}
.adyen-checkout__giftcard-result__balance {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.adyen-checkout__giftcard-result__balance__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.adyen-checkout__giftcard-result__balance__item .adyen-checkout__giftcard-result__balance__title--transactionLimit {
  color: #687282;
}
.adyen-checkout__giftcard-result__balance__item:last-child {
  margin-bottom: 0;
}
.adyen-checkout__giftcard-result__balance__value--amount {
  font-weight: 700;
}
.adyen-checkout__giftcard-result__remaining-balance {
  color: #687282;
  font-size: 13px;
  line-height: 19px;
  margin: 8px auto 0;
  text-align: center;
}
.DropinComponent-module_adyen-checkout__payment-methods-list__2T9kQ {
  list-style: none;
  margin: 0;
  padding: 0;
}
.DropinComponent-module_adyen-checkout__payment-method__2ZClo {
  display: block;
  max-height: 60px;
}
.DropinComponent-module_adyen-checkout__payment-method__details__2_jFP {
  display: none;
}
.DropinComponent-module_adyen-checkout__payment-method__image__Fg2uw {
  height: 26px;
  width: 40px;
}
.DropinComponent-module_adyen-checkout__payment-method__image__wrapper__pTTKr {
  margin-right: 8px;
}
[dir=rtl] .DropinComponent-module_adyen-checkout__payment-method__image__wrapper__pTTKr {
  margin-left: 8px;
  margin-right: 0;
}
.DropinComponent-module_adyen-checkout__payment-method--selected__1zXEA {
  max-height: 100%;
}
.DropinComponent-module_adyen-checkout__payment-method--selected__1zXEA .DropinComponent-module_adyen-checkout__payment-method__details__2_jFP {
  display: block;
}
.adyen-checkout__payment-method__disable-confirmation {
  background: #d10244;
  border-left: 1px solid #c70241;
  border-right: 1px solid #c70241;
  color: #fff;
  font-size: 0.81em;
  margin: 0 -17px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.15s ease-out, max-height 0.15s linear, margin-bottom 0.1s linear;
}
.adyen-checkout__payment-method__disable-confirmation.adyen-checkout__payment-method__disable-confirmation--open {
  margin-bottom: 16px;
  max-height: 62px;
  opacity: 1;
}
.adyen-checkout__payment-method__disable-confirmation__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}
.adyen-checkout__payment-method__disable-confirmation__buttons {
  display: flex;
}
.adyen-checkout__payment-method__disable-confirmation__button {
  background: #d10244;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: block;
  height: auto;
  line-height: 14px;
  margin: 0 0 0 8px;
  padding: 8px;
  width: auto;
}
.adyen-checkout__payment-method__disable-confirmation__button:hover,
.adyen-checkout__payment-method__disable-confirmation__button:hover:focus {
  background: #b8023c;
  box-shadow: none;
}
.adyen-checkout__payment-method__disable-confirmation__button:active,
.adyen-checkout__payment-method__disable-confirmation__button:hover:active {
  background: #9e0234;
  box-shadow: none;
}
.adyen-checkout__payment-method__disable-confirmation__button--remove,
.adyen-checkout__payment-method__disable-confirmation__button--remove:disabled {
  border-color: #fff;
}
.adyen-checkout__payment-method__disable-confirmation__button--cancel,
.adyen-checkout__payment-method__disable-confirmation__button--cancel:disabled {
  border-color: transparent;
}
.adyen-checkout__payment-method {
  background: #fff;
  border: 1px solid #e6e9eb;
  cursor: pointer;
  margin-top: -1px;
  position: relative;
  transition: opacity 0.3s ease-out;
  width: 100%;
}
.adyen-checkout__payment-method:focus {
  outline: 0;
}
.adyen-checkout__payment-method--selected + .adyen-checkout__payment-method,
.adyen-checkout__payment-method:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 0;
}
.adyen-checkout__payment-method--next-selected,
.adyen-checkout__payment-method:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 0;
}
.adyen-checkout__payment-method--loading {
  opacity: 0.2;
}
.adyen-checkout__payment-method--selected.adyen-checkout__payment-method--loading {
  opacity: 0.9;
}
.adyen-checkout__payment-method--confirming .adyen-checkout__payment-method__details__content,
.adyen-checkout__payment-method--disabling {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.adyen-checkout__payment-method--disabling {
  opacity: 0.3;
}
.adyen-checkout__payment-method__header {
  align-items: center;
  color: #00112c;
  display: flex;
  flex-wrap: nowrap;
  font-size: 1em;
  font-weight: 400;
  justify-content: space-between;
  padding: 16px 16px 16px 48px;
  position: relative;
  transition: background 0.1s ease-out;
  width: 100%;
}
[dir=rtl] .adyen-checkout__payment-method__header {
  padding: 16px 48px 16px 16px;
}
.adyen-checkout__payment-method--standalone .adyen-checkout__payment-method__header {
  padding: 16px;
}
.adyen-checkout__payment-method__header__title {
  align-items: center;
  background: none;
  border: none;
  color: #00112c;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-size: 1em;
  font-weight: 400;
  margin-right: 16px;
  max-width: 100%;
  padding: 0;
}
[dir=rtl] .adyen-checkout__payment-method__header__title {
  margin-left: 16px;
  margin-right: 0;
}
.adyen-checkout__payment-method__surcharge {
  color: #687282;
  margin-left: 5px;
}
.adyen-checkout__payment-method--selected {
  background: #f7f8f9;
  border: 1px solid #e6e9eb;
  border-radius: 12px;
  cursor: default;
  margin: 8px 0;
  transition: margin 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0ms, opacity 0.3s ease-out;
}
.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__header {
  flex-wrap: wrap;
}
.adyen-checkout__payment-method__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adyen-checkout__payment-method__name--selected {
  font-weight: 500;
}
.adyen-checkout__payment-method__details {
  padding: 0 16px;
  position: relative;
}
.adyen-checkout__payment-method__details__content {
  margin: 0 0 16px;
}
.adyen-checkout__payment-method__image__wrapper {
  height: 26px;
  position: relative;
  width: 40px;
}
.adyen-checkout__payment-method__image__wrapper--outline:after {
  border: 1px solid rgba(0, 27, 43, 0.17);
  border-radius: 3px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.adyen-checkout__payment-method__image {
  border-radius: 3px;
  display: block;
}
.adyen-checkout__payment-method__brands {
  display: flex;
  flex-basis: auto;
  flex-shrink: 1;
  flex-wrap: wrap;
  height: 16px;
  margin: 4px 0;
  overflow: hidden;
  text-align: right;
}
.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__brands {
  height: auto;
  overflow: visible;
  text-align: left;
}
.adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper {
  display: inline-block;
  height: 16px;
  margin-right: 4px;
  transition: opacity 0.2s ease-out;
  width: 24px;
}
.adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper:last-child {
  margin: 0;
}
.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper {
  margin-bottom: 4px;
}
.adyen-checkout__payment-method__brands img {
  height: 16px;
  width: 24px;
}
.adyen-checkout__payment-method__image__wrapper--disabled {
  opacity: 0.25;
}
.adyen-checkout__payment-method__radio {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  height: 16px;
  left: 16px;
  position: absolute;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
  width: 16px;
}
[dir=rtl] .adyen-checkout__payment-method__radio {
  left: auto;
  right: 16px;
}
.adyen-checkout__payment-method--standalone .adyen-checkout__payment-method__radio {
  display: none;
}
.adyen-checkout__payment-method__radio:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease-out;
  width: 6px;
}
.adyen-checkout__payment-method:hover:not(.adyen-checkout__payment-method--selected) .adyen-checkout__payment-method__radio {
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
  cursor: pointer;
}
.adyen-checkout__payment-method__radio--selected {
  background-color: #06f;
  border: 0;
  transition: all 0.3s ease-out;
}
.adyen-checkout__payment-method__radio--selected:hover {
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.4);
}
.adyen-checkout__payment-method__radio--selected:after {
  transform: translateY(-50%) scale(1);
}
.adyen-checkout__order-payment-methods-list {
  list-style: none;
  margin: 0 auto 16px;
  padding: 0;
}
.adyen-checkout__order-payment-method {
  background: #fff;
  border: 1px solid #e6e9eb;
  margin-top: -1px;
  position: relative;
  width: 100%;
}
.adyen-checkout__order-payment-method:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.adyen-checkout__order-payment-method:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.adyen-checkout__order-payment-method__header {
  align-items: center;
  color: #00112c;
  display: flex;
  flex-wrap: nowrap;
  font-size: 1em;
  font-weight: 500;
  justify-content: space-between;
  padding: 16px;
  position: relative;
  transition: background 0.1s ease-out;
  width: 100%;
}
.adyen-checkout__order-payment-method__details {
  padding: 0 16px 16px;
}
.adyen-checkout__order-payment-method__deducted-amount {
  display: flex;
  font-size: 1em;
  justify-content: space-between;
  line-height: 1em;
}
.adyen-checkout__order-payment-method__deducted-amount__label {
  font-size: 0.81em;
}
.adyen-checkout__order-payment-method__deducted-amount__value {
  font-weight: 500;
}
.adyen-checkout__order-remaining-amount {
  background: #ffeacc;
  border-radius: 6px;
  color: #7f4a00;
  display: block;
  font-size: 0.81em;
  margin-bottom: 16px;
  padding: 8px 16px;
  width: 100%;
}
.adyen-checkout__order-remaining-amount strong {
  font-weight: 700;
}
.adyen-checkout__status {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  color: #00112c;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  height: 350px;
  justify-content: center;
  margin: 0;
  padding: 32px;
  text-align: center;
}
.adyen-checkout__status__icon {
  margin-bottom: 24px;
}
.adyen-checkout__status .adyen-checkout__spinner__wrapper {
  max-height: 88px;
}
.adyen-checkout__dropin,
.adyen-checkout__dropin *,
.adyen-checkout__dropin :after,
.adyen-checkout__dropin :before {
  box-sizing: border-box;
}
.adyen-checkout__payment-methods-list--loading {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.adyen-checkout__link {
  color: #06f;
  text-decoration: none;
}
.adyen-checkout__link:hover {
  text-decoration: underline;
}
.AchInput-module_sf-input__wrapper__1V7mk {
  position: relative;
}
.AchInput-module_sf-input__wrapper__1V7mk *,
.AchInput-module_sf-input__wrapper__1V7mk :after,
.AchInput-module_sf-input__wrapper__1V7mk :before {
  box-sizing: border-box;
}
.AchInput-module_adyen-checkout__input__1SeSl {
  display: block;
  max-height: 100px;
}
.adyen-checkout__loading-input__form {
  transition: opacity 0.25s ease-out;
}
.adyen-checkout__pm__holderName {
  margin-bottom: 0;
}
.adyen-checkout__fieldset__title + .adyen-checkout__ach-sf__form {
  margin-top: 0;
}
.adyen-checkout__ach-input .adyen-checkout__fieldset--address,
.adyen-checkout__ach-sf__form {
  margin-top: 16px;
}
.adyen-checkout__loading-input__form {
  transition: opacity 0.25s ease-out;
}
.adyen-checkout__await {
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.adyen-checkout__await--result {
  padding: 100px;
}
.adyen-checkout__qr-loader--app {
  border: 0;
  border-radius: 0;
  padding: 0;
}
.adyen-checkout__await__brand-logo {
  border-radius: 3px;
  width: 74px;
}
.adyen-checkout__await__indicator-text,
.adyen-checkout__await__subtitle {
  color: #00112c;
  font-size: 1em;
  line-height: 19px;
  margin-top: 32px;
}
.adyen-checkout__await__indicator-holder .adyen-checkout__await__indicator-text {
  margin-left: 10px;
  margin-top: 6px;
}
.adyen-checkout__await__indicator-holder {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 32px;
}
.adyen-checkout__await__subtitle--result {
  margin-bottom: 32px;
}
.adyen-checkout__await__icon {
  height: 88px;
  width: 88px;
}
.adyen-checkout__await__progress {
  background: #d4d9db;
  border-radius: 24px;
  height: 4px;
  margin: 32px auto 12px;
  width: 152px;
}
.adyen-checkout__await__percentage {
  background: #06f;
  border-radius: 24px;
  display: block;
  height: 100%;
}
.adyen-checkout__await__countdown {
  color: #687282;
  font-size: 0.81em;
}
.adyen-checkout__await > .adyen-checkout__spinner__wrapper {
  margin: 60px 0;
}
.adyen-checkout__await__app-link {
  display: none;
  margin-top: 16px;
}
.adyen-checkout__await__separator__label {
  color: #687282;
  display: block;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 1;
}
.adyen-checkout__await__separator__label:after,
.adyen-checkout__await__separator__label:before {
  background-color: #e6e9eb;
  content: "\a0";
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: 51%;
  width: 50%;
}
.adyen-checkout__await__separator__label:before {
  margin-left: -52%;
  text-align: right;
}
.adyen-checkout__await__separator__label:after {
  margin-left: 2%;
}
@media only screen and (max-device-width: 1200px) {
  .adyen-checkout__await__app-link {
    display: block;
  }
}
.adyen-checkout__blik__helper {
  color: #00112c;
  font-size: 1em;
  font-weight: 400;
  margin: 0 0 16px;
  padding: 0;
}
.adyen-checkout__bankTransfer__introduction {
  color: #00112c;
  font-size: 0.81em;
  font-weight: 400;
  margin: 0 0 16px;
  padding: 0;
}
.adyen-checkout__bankTransfer__emailField {
  margin: 0 0 16px;
}
.adyen-checkout__bacs--confirm {
  position: relative;
}
.adyen-checkout__bacs--confirm .adyen-checkout-input__inline-validation--valid {
  display: none;
}
.adyen-checkout__bacs .adyen-checkout__field--inactive {
  pointer-events: none;
}
.adyen-checkout__bacs .adyen-checkout__bacs--edit {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -25px;
  width: 20%;
}
.adyen-checkout__bacs .adyen-checkout__bacs--edit-dropin {
  top: -50px;
}
.adyen-checkout__bacs .adyen-checkout__bacs--edit .adyen-checkout__bacs--edit-button {
  background: none;
  border: none;
  color: #06f;
  cursor: pointer;
  text-align: end;
  text-decoration: underline;
}
.adyen-checkout__voucher-result__introduction {
  font-size: 1em;
  max-width: 420px;
}
.adyen-checkout__klarna-widget {
  pointer-events: all;
}


.initial-order-popup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--border-radius3);
  border: 1px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
  padding: 16px;
}
.login-card__title {
  font-size: var(--font-size3);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
}
.login-card__description {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
  text-align: center;
}
.login-card__action {
  margin-top: 8px;
}
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: var(--font-size3);
  font-weight: 600;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
}
.separator:not(:empty)::before {
  margin-right: 0.25em;
}
.separator:not(:empty)::after {
  margin-left: 0.25em;
}
.login-card__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.login-card__form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-card__form-input__label {
  font-weight: 600;
  font-size: var(--font-size1);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.login-card__form-input__helper {
  font-size: var(--font-size1);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}
.phone .phone__input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.phone .phone__input-container .phone__number {
  flex-grow: 1;
  margin-left: 8px;
}
.terms .terms__marketing-consent {
  margin-top: 8px;
}
.terms .terms__error {
  margin-top: 8px;
}
.login-card-error-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.signup-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--border-radius3);
  padding: 16px;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
}
.signup-card__title {
  font-size: var(--font-size3);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
}
.signup-card__description {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}

.description {
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
  font-size: var(--font-size2);
  line-height: normal;
}

.offline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .offline {
    align-items: center;
  }
}

.sticky-element-top {
  margin-top: -1px;
}

.menu-navigation.menu-navigation--sticky {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
  box-shadow: 0 4px 4px -4px hsla(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l), 0.5);
}

.main-category-navigation {
  padding: 12px 0;
  overflow-x: auto;
}
.main-category-navigation .main-category-navigation__container {
  display: inline-flex;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .main-category-navigation {
    padding: 14px 0;
  }
  .main-category-navigation::-webkit-scrollbar {
    background: transparent;
    height: 8px;
  }
  .main-category-navigation::-webkit-scrollbar-thumb {
    border-radius: var(--border-radius3);
    background: #b7b7b7;
  }
  .main-category-navigation .main-category-navigation__container {
    padding: 0;
  }
}
.main-category-chip {
  padding: 12px 8px;
  font-size: var(--font-size3);
  font-weight: 500;
  border-radius: var(--border-radius3);
  line-height: 20px;
  cursor: pointer;
  white-space: nowrap;
}
.main-category-chip.active {
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.2);
}

.chip-list {
  position: relative;
  display: inline-flex;
  flex-direction: row;
}
.chip-list .chip-list__item:not(:first-child) {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .chip-list .chip-list__item:not(:first-child) {
    margin-left: 12px;
  }
}

@media (min-width: 768px) {
  .server-popup {
    max-width: 480px;
  }
}
.server-popup .server-popup__description {
  margin-top: 20px;
}

.image {
  width: 100%;
  border-radius: 4px;
}



.adyen-checkout__label__text,
.adyen-checkout__card__cvc__hint__wrapper,
.adyen-checkout__card__cardNumber__brandIcon,
.adyen-checkout-input__inline-validation,
.adyen-checkout__error-text {
  display: none !important;
}
.adyen-checkout__input--focus,
.adyen-checkout__input--focus:hover,
.adyen-checkout__input:active,
.adyen-checkout__input:active:hover,
.adyen-checkout__input:focus,
.adyen-checkout__input:focus:hover {
  border: none !important;
  box-shadow: none !important;
}
.adyen-checkout__input {
  caret-color: unset;
  border-radius: var(--border-radius1) !important;
  padding: 8px 12px !important;
  background-color: hsl(var(--card-background-color-h), var(--card-background-color-s), calc(var(--card-background-color-l) + 8.9% * var(--color-dependency-coeff))) !important;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l)) !important;
  font-size: var(--font-size2) !important;
  font-weight: normal !important;
  font-stretch: normal !important;
  font-style: normal !important;
  line-height: normal !important;
  letter-spacing: 0.02px !important;
  border: none !important;
  width: 100% !important;
}
.adyen-checkout__input::placeholder {
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), calc(var(--group-card-font-color-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff))) !important;
}
@media (min-width: 768px) {
  .adyen-checkout__input {
    padding: 12px 16px;
    letter-spacing: 1px;
    border-radius: var(--border-radius2);
  }
}
.adyen-card-registration__error {
  margin-top: 8px;
}
.adyen-checkout__payment-method__header {
  display: none !important;
}
.adyen-checkout__payment-method {
  background: unset !important;
  border: none !important;
  margin-top: unset !important;
  width: 100%;
}
.adyen-checkout__payment-method .adyen-checkout__payment-method__details {
  padding: 0 !important;
}
.adyen-checkout__payment-method .adyen-checkout__payment-method__details .adyen-checkout__payment-method__details__content {
  margin: 0 !important;
}
.adyen-checkout__payment-method--selected {
  background: unset !important;
  border: none !important;
  margin-top: unset !important;
  width: 100%;
}

.pickup-time {
  max-width: 480px;
}
.pickup-time .pickup-time__container {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: stretch;
}
.pickup-time .pickup-time__container .pickup-time__date-selector,
.pickup-time .pickup-time__container .pickup-time__time-selector {
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 0;
  max-height: 30vh;
}
.pickup-time .pickup-time__container .pickup-time__time-selector:not(:first-child) {
  margin-left: 8px;
}
.pickup-time .pickup-time__error {
  margin-top: 8px;
}

.guest-order-popup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.regular-customer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--border-radius3);
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
  padding: 16px;
}
.regular-customer-card__title {
  font-size: var(--font-size3);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
  text-align: center;
}
.regular-customer-card__description {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
  text-align: center;
}
.regular-customer-card__action {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: var(--font-size3);
  font-weight: 600;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
}
.separator:not(:empty)::before {
  margin-right: 0.25em;
}
.separator:not(:empty)::after {
  margin-left: 0.25em;
}
.guest-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--border-radius3);
  padding: 16px;
  border: 1px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
}
.guest-card__title {
  font-size: var(--font-size3);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
}
.guest-card__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.guest-card__form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guest-card__form-input__label {
  font-weight: 600;
  font-size: var(--font-size1);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.guest-card__form-input__helper {
  font-size: var(--font-size1);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}
.phone .phone__input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.phone .phone__input-container .phone__number {
  flex-grow: 1;
  margin-left: 8px;
}
.terms .terms__marketing-consent {
  margin-top: 8px;
}
.terms .terms__error {
  margin-top: 8px;
}
.guest-card-error-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.error-card {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #ad2d12ff;
  padding: 8px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  font-size: var(--font-size1);
  font-weight: 500;
  justify-content: center;
}
.error-card__icon {
  height: 14px;
  width: 14px;
}
.error-card__icon svg {
  width: 14px;
  height: 14px;
}
.error-card__icon svg path {
  fill: white;
}

.top-order-type-container {
  display: grid;
  grid-template-columns: minmax(16px, 0.5fr) minmax(calc(100% - 16px * 2), 568px) minmax(0, 292px);
  padding: 12px 0;
  backdrop-filter: blur(52px);
  -webkit-backdrop-filter: blur(52px);
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  background: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
}
@media (min-width: 768px) {
  .top-order-type-container {
    grid-template-columns: minmax(16px, 0.5fr) minmax(0, 592px) minmax(0, 292px) minmax(16px, 0.5fr);
    background: rgba(0, 0, 0, 0.4);
  }
}
.top-order-type-container.is-pwa {
  padding-top: env(safe-area-inset-top, 0) !important;
}
.top-order-type-select__large-screen {
  display: none;
}
@media (min-width: 768px) {
  .top-order-type-select__large-screen {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.top-order-type-select__types-container {
  display: inline-flex;
  gap: 16px;
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36);
  padding: 8px 12px;
  border-radius: var(--border-radius3);
}
.top-order-type-select__type {
  display: flex;
  white-space: nowrap;
  border-radius: var(--border-radius3);
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 170px;
  font-size: var(--font-size1);
  padding: 8px;
  gap: 8px;
}
.top-order-type-select__type.dineIn {
  gap: 4px;
}
.top-order-type-select__type.active {
  background: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.top-order-type-select__type.active .top-order-type-select__type__icon > svg {
  display: block;
}
.top-order-type-select__type.active .top-order-type-select__type__icon > svg * {
  fill: var(--primary-font-color) !important;
}
.top-order-type-select__type.active .top-order-type-select__type__text {
  color: var(--primary-font-color);
}
.top-order-type-select__type__text {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.top-order-type-select__type__icon,
.menu-icon,
.down-icon,
.current-order-type-select__type__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.top-order-type-select__type__icon > svg,
.menu-icon > svg,
.down-icon > svg,
.current-order-type-select__type__icon > svg {
  display: block;
}
.top-order-type-select__type__icon > svg *,
.menu-icon > svg *,
.down-icon > svg *,
.current-order-type-select__type__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.current-order-type-select__type__icon.single {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.current-order-type-select__type__icon.single > svg {
  display: block !important;
}
.current-order-type-select__type__icon.single > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.down-icon > svg,
.current-order-type-select__type__icon > svg {
  display: block;
}
.down-icon > svg *,
.current-order-type-select__type__icon > svg * {
  fill: var(--primary-font-color) !important;
}
.top-order-type-select__ordering_time__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.top-order-type-select__ordering_time__icon > svg {
  display: block;
}
.top-order-type-select__ordering_time__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.top-order-type-select__ordering_time__icon.active > svg {
  display: block;
}
.top-order-type-select__ordering_time__icon.active > svg * {
  fill: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l)) !important;
}
.top-order-type-select__ordering_time_container {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius3);
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36);
  font-size: var(--font-size1);
  padding: 16px 12px;
  cursor: pointer;
  gap: 8px;
}
.top-order-type-select__ordering_time_container.mobile {
  padding: 12px;
  justify-content: center;
}
.top-order-type-select__ordering_time__text {
  white-space: nowrap;
}
.top-order-type-select__ordering_table__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.top-order-type-select__ordering_table__icon > svg {
  display: block;
}
.top-order-type-select__ordering_table__icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.top-order-type-select__ordering_table_container {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius3);
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36);
  font-size: var(--font-size1);
  padding: 16px 12px;
  cursor: pointer;
  gap: 8px;
}
.top-order-type-select__ordering_table__text {
  white-space: nowrap;
}
.top-order-type-select__small-screen-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .top-order-type-select__small-screen-container {
    display: none;
  }
}
.top-order-type-select__small-screen {
  display: grid;
  grid-template-columns: 1fr 11fr;
  gap: 16px;
}
.top-order-type-select__small-screen.with-pickup {
  grid-template-columns: 2fr 8fr 2fr;
}
.menu-icon-container {
  padding: 12px;
  border: 1px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
  border-radius: var(--border-radius3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.current-order-type-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  font-size: var(--font-size1);
  border-radius: var(--border-radius3);
  padding-inline: 4px;
}
.current-order-type-selector.single {
  background: transparent;
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.36);
  justify-content: center;
}
.down-icon {
  width: 18px !important;
  height: 18px !important;
}
.current-order-type-selector__left {
  display: flex;
  align-items: center;
  color: var(--primary-font-color);
  font-weight: 600;
  gap: 8px;
  padding: 8px 12px;
}
.current-order-type-selector__left.single {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.current-order-type-selector__right {
  padding-right: 8px;
  color: var(--primary-font-color);
}

.free-delivery-progress-mobile-container {
  height: 40px;
}
.free-delivery-progress-mobile {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.free-delivery-progress-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.free-delivery-progress-mobile__top-title {
  font-weight: 600;
  font-size: var(--font-size1);
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.free-delivery-progress-mobile__top-left {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size2);
}
.scooter-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.scooter-icon > svg {
  display: block;
}
.scooter-icon > svg * {
  fill: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l)) !important;
}
.free-delivery-progress__top-progress {
  position: relative;
  border-radius: 12px;
  height: 8px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.1);
}
.free-delivery-progress__top-progress__fill {
  position: absolute;
  height: 8px;
  border-radius: 12px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
}
.free-delivery-progress-mobile-done {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #242424;
  padding: 8px;
  border-radius: var(--border-radius4);
}
.free-delivery-progress-mobile-done .enjoy-delivery-text {
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  font-weight: 700;
  font-size: 14px;
}

.order-type-select-popup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-type-container {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) - 70% * var(--color-dependency-coeff)));
  border-radius: var(--border-radius3);
  width: 100%;
  padding: 12px 8px;
}
.order-type-container.active {
  background: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  border: none;
}
.order-type-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.order-type-icon > svg {
  display: block;
}
.order-type-icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.order-type-icon.active > svg {
  display: block;
}
.order-type-icon.active > svg * {
  fill: var(--primary-font-color) !important;
}
.order-type-text {
  white-space: nowrap;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size1);
}
.order-type-text.active {
  color: var(--primary-font-color);
}

.menu-popup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-popup__header-name {
  font-size: var(--font-size4);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
}
.menu-popup__header-icon {
  border: 1px solid hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  border-radius: var(--border-radius3);
  cursor: pointer;
}
.menu-popup__header-icon .close-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: var(--border-radius-circle);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.menu-popup__header-icon .close-icon > svg {
  display: block;
}
.menu-popup__header-icon .close-icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.free-delivery__enabled {
  margin-top: 8px;
}

.free-delivery {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.free-delivery__image-container {
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.free-delivery__image-container::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.7);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.free-delivery__image {
  height: 114px;
  width: 100%;
  object-fit: cover;
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.free-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.free-delivery__title {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size3);
  line-height: 16px;
}
.free-delivery__description {
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
  font-size: var(--font-size1);
  line-height: 14px;
}

.menu-side-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), var(--base-page-background-l));
  margin-right: 32px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.menu-side-navigation__main-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-side-navigation__main-menu__button {
  padding: 12px 8px;
  font-size: var(--font-size3);
  font-weight: 500;
  border-radius: var(--border-radius3);
  line-height: 20px;
  cursor: pointer;
}
.menu-side-navigation__main-menu__button.active {
  color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l), 0.2);
}
.menu-side-navigation__main-menu-categories-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 12px;
}
.menu-side-navigation__main-menu-categories-list__category {
  padding: 6px 16px;
  font-weight: 400;
  font-size: var(--font-size3);
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
  cursor: pointer;
  line-height: 20px;
}

.free-delivery-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 462px;
}
.free-delivery-info__subtitle {
  font-size: var(--font-size2);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.free-delivery-info__description,
.free-delivery-info__footer {
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
  font-size: 14px;
  line-height: 22px;
}
.free-delivery-info__footer {
  margin-top: 8px;
}

.about-page {
  display: grid;
  grid-template-rows: repeat(5, min-content);
  grid-template-columns: minmax(16px, 0.5fr) minmax(0, 568px) minmax(16px, 0.5fr);
  grid-template-areas: '... back-button ...' '... general-info ...' '... schedule ...' '... location ...' '... contact ...';
  justify-content: center;
  padding-bottom: 99px;
}
.about-page .about-page__back-button {
  grid-area: back-button;
  margin-top: 40px;
}
.about-page .about-page__general-info {
  grid-area: general-info;
  margin-top: 30px;
}
.about-page .about-page__schedule {
  grid-area: schedule;
  margin-top: 24px;
}
.about-page .about-page__location {
  grid-area: location;
  margin-top: 24px;
}
.about-page .about-page__contact {
  grid-area: contact;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about-page {
    grid-template-rows: repeat(4, min-content);
    grid-template-columns: minmax(16px, 0.5fr) minmax(auto, 592px) minmax(auto, 292px) minmax(16px, 0.5fr);
    grid-template-areas: '... back-button back-button ...' '... general-info general-info ...' '... schedule location ...' '... schedule contact ...';
  }
  .about-page .about-page__general-info {
    margin-top: 66px;
  }
  .about-page .about-page__schedule {
    margin-right: 24px;
  }
}

.contact-info .contact-info__contacts {
  margin-top: 24px;
}
.contact-info .contact-info__contacts .contact-info__contact:not(:first-child) {
  padding-top: 12px;
}
.contact-info .contact-info__contacts .contact-info__contact:not(:last-child) {
  padding-bottom: 12px;
}

.info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.info-item .info-item__control {
  margin-left: 16px;
  text-align: right;
}

.info-item-label {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .info-item-label {
    font-size: var(--font-size3);
    letter-spacing: 1.14px;
  }
}

.info-item-value {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
.info-item-value.info-item-value--bold {
  font-weight: bold;
}
@media (min-width: 768px) {
  .info-item-value {
    font-size: var(--font-size3);
    letter-spacing: 1.14px;
  }
}

.geolocation-link {
  display: block;
  width: 100%;
}


.restaurant-map {
  margin-top: 10px;
  position: relative;
  width: 100%;
  padding-top: 50%;
  border-radius: var(--border-radius3);
  overflow: hidden;
}
.restaurant-map .restaurant-map__map {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .restaurant-map {
    margin-top: 16px;
  }
}

.map {
  filter: invert(calc(-1 * var(--color-dependency-coeff)));
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  min-width: 100%;
}

.restaurant-general-info {
  display: flex;
  flex-direction: column;
}
.restaurant-general-info .restaurant-general-info__description {
  margin-top: 12px;
}

.restaurant-name {
  font-size: var(--font-size6);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.16px;
  text-align: center;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  display: inline;
}
@media (min-width: 768px) {
  .restaurant-name {
    font-size: var(--font-size7);
    line-height: 1;
    letter-spacing: 0.34px;
  }
}

.restaurant-schedule {
  width: 100%;
}

.restaurant-schedule-item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 21.2% * var(--color-dependency-coeff)));
}
.restaurant-schedule-item.restaurant-schedule-item--header {
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), calc(var(--base-modal-l) - 2% * var(--color-dependency-coeff)));
}
.restaurant-schedule-item .restaurant-schedule-item__day,
.restaurant-schedule-item .restaurant-schedule-item__delivery,
.restaurant-schedule-item .restaurant-schedule-item__restaurant {
  text-align: left;
  padding: 12px;
}

.schedule-column-title {
  font-size: var(--font-size0);
  text-transform: uppercase;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .schedule-column-title {
    font-size: var(--font-size1);
    letter-spacing: 1.2px;
  }
}

.schedule-row-title {
  font-size: var(--font-size1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
@media (min-width: 768px) {
  .schedule-row-title {
    font-size: var(--font-size2);
    line-height: 1;
  }
}

.schedule-cell-text {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: right;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}
@media (min-width: 768px) {
  .schedule-cell-text {
    font-size: var(--font-size2);
    line-height: 1;
  }
}

.cart-page {
  display: grid;
  grid-template-rows: repeat(6, min-content);
  grid-template-columns: minmax(16px, 0.5fr) minmax(0, 568px) minmax(16px, 0.5fr);
  grid-template-areas: 'map map map' 'map map map' '... header ...' '... empty-placeholder ...' '... order-details ...' '... payment ...' '... items ...' '... place ...' '... send-error ...';
  padding-bottom: 99px;
}
.cart-page .cart-page__back {
  margin-top: 24px;
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
  z-index: 1;
}
.cart-page .cart-page__map {
  grid-area: map;
}
.cart-page .cart-page__header {
  grid-area: header;
}
.cart-page .cart-page__empty-placeholder {
  grid-area: empty-placeholder;
  margin-top: 24px;
}
.cart-page .cart-page__order-details {
  grid-area: order-details;
  margin-top: 24px;
}
.cart-page .cart-page__payment {
  margin-top: 24px;
  grid-area: payment;
}
.cart-page .cart-page__items {
  margin-top: 29px;
  grid-area: items;
}
.cart-page .cart-page__place {
  margin-top: 58px;
  grid-area: place;
}
.cart-page .cart-page__send-error {
  grid-area: send-error;
  margin-top: 8px;
}
.cart-page .cart-page__floating-button {
  position: fixed;
  bottom: 20px;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .cart-page {
    grid-template-areas: '... back ...' '... map ...' '... header ...' '... empty-placeholder ...' '... order-details ...' '... payment ...' '... items ...' '... place ...' '... send-error ...';
  }
  .cart-page .cart-page__back {
    margin-top: 40px;
    grid-area: back;
  }
  .cart-page .cart-page__map {
    margin-top: 24px;
  }
  .cart-page .cart-page__header {
    margin-top: 24px;
  }
  .cart-page .cart-page__order-details {
    margin-top: 24px;
  }
}

.cart-map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
}
.cart-map .cart-map__map {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .cart-map {
    border-radius: var(--border-radius3);
    padding-top: 25%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}


.cart-picker {
  display: flex;
  flex-direction: column;
}
.cart-picker .cart-picker__control {
  margin-top: 10px;
}
.cart-picker .cart-picker__description {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
  font-size: var(--font-size1);
}
.cart-picker .cart-picker__description__icon {
  height: 16px;
  width: 16px;
}
.cart-picker .cart-picker__description__icon svg {
  height: 16px;
  width: 16px;
}
.cart-picker .cart-picker__description__icon svg path {
  fill: white;
}

.cart-picker-title {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
}

.cart-picker-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cart-picker-trigger .cart-picker-trigger__text {
  margin-left: 9px;
  min-width: 0;
}

.cart-picker-trigger-text {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l));
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.cart-picker-trigger-icon > svg {
  display: block;
}
.cart-picker-trigger-icon > svg * {
  fill: hsl(var(--group-card-font-color-h), var(--group-card-font-color-s), var(--group-card-font-color-l)) !important;
}




.promocode-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.promocode-list .promocode-list__item:not(:first-child) {
  margin-left: 8px;
}

.promocode {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--border-radius1);
  background-color: var(--weorder-green);
}
.promocode .promocode__text {
  margin-left: 6px;
}

.promocode-icon > svg {
  display: block;
}
.promocode-icon > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}

.promocode-text {
  font-size: var(--font-size2);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}

.round-tip-button {
  display: block;
  margin-top: 10px;
  font-size: var(--font-size1);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  background-color: hsl(var(--base-modal-h), var(--base-modal-s), calc(var(--base-modal-l) + 9% * var(--color-dependency-coeff)));
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  text-align: center;
  padding: 12px 16px;
  width: 100%;
  min-width: 60px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.round-tip-button:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.round-tip-button:hover:before {
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.round-tip-button:active:before {
  backdrop-filter: brightness(120%);
  -webkit-backdrop-filter: brightness(120%);
}
.round-tip-button.round-tip-button--active {
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 8.2% * var(--color-dependency-coeff)));
}


.page-header {
  display: flex;
  flex-direction: column;
}

.page-header-title {
  font-size: var(--font-size6);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.16px;
  color: var(--group-heading-font-color);
}

.page-header-description {
  font-size: var(--font-size3);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  color: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff)));
}

.scrolldown-button {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: hsl(var(--base-primary-background-h), var(--base-primary-background-s), var(--base-primary-background-l));
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.scrolldown-button .scrolldown-button__icon svg {
  height: calc(40px / 2);
  width: calc(40px / 2);
}
.scrolldown-button .scrolldown-button__icon > svg {
  display: block;
}
.scrolldown-button .scrolldown-button__icon > svg * {
  fill: var(--primary-font-color) !important;
}

.cart-disclaimer {
  text-align: center;
  margin: 10px 10px;
  font-size: var(--font-size2);
}

.adyen-google-pay {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  padding: 16px;
}

.adyen-apple-pay {
  display: flex;
  justify-content: center;
}

.stripe-threeds-frame {
  height: 70vh;
  background-color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}

.confirmation {
  max-width: 480px;
}

.order-page {
  display: grid;
  grid-template-rows: repeat(8, min-content);
  grid-template-columns: minmax(16px, 0.5fr) minmax(0, calc(568px / 2)) minmax(0, calc(568px / 2)) minmax(16px, 0.5fr);
  grid-template-areas: '... back back ...' '... header header ...' '... general-info general-info ...' '... comment comment ...' '... rate rate ...' '... items items ...' '... email repeat ...' '... email-info email-info ...' '... contact-info contact-info ...';
  padding-bottom: 99px;
}
.order-page.show-regular-customer {
  padding-bottom: 200px;
}
.order-page .order-page__back {
  margin-top: 24px;
  grid-area: back;
}
.order-page .order-page__header {
  grid-area: header;
  margin-top: 24px;
}
.order-page .order-page__general-info {
  grid-area: general-info;
  margin-top: 33px;
}
.order-page .order-page__comment {
  margin-top: 35px;
  grid-area: comment;
}
.order-page .order-page__rate {
  margin-top: 24px;
  grid-area: rate;
}
.order-page .order-page__items {
  margin-top: 24px;
  grid-area: items;
}
.order-page .order-page__email,
.order-page .order-page__repeat {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.order-page .order-page__email {
  grid-area: email;
  justify-content: flex-start;
  display: flex;
}
.order-page .order-page__repeat {
  grid-area: repeat;
  justify-content: flex-end;
}
.order-page .order-page__contact-info {
  margin-top: 32px;
  grid-area: contact-info;
}
.order-page .order-page__email-info {
  grid-area: email-info;
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
  font-size: var(--font-size1);
  margin-top: 16px;
  line-height: 14px;
}
.order-page .order-page__email-info__icon {
  height: 16px;
  width: 16px;
}
.order-page .order-page__email-info__icon svg {
  height: 16px;
  width: 16px;
}
.order-page .order-page__email-info__icon svg path {
  fill: white;
}

.order-info {
  display: flex;
  flex-direction: column;
}
.order-info .order-info__item:not(:first-child) {
  padding-top: 12px;
}
.order-info .order-info__item:not(:last-child) {
  padding-bottom: 12px;
}


.order-status-card {
  position: relative;
  margin-bottom: 8px;
}
.order-status-card__image-container {
  position: relative;
  border-radius: 8px;
}
.order-status-card__image-container::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  border-radius: 8px;
}
.order-status-card__image-container.confirmed::before,
.order-status-card__image-container.received::before,
.order-status-card__image-container.purchased::before {
  background-color: #074F3A;
}
.order-status-card__image-container.delivered::before,
.order-status-card__image-container.in-progress::before {
  background-color: #07294F;
}
.order-status-card__image-container.cancelled::before {
  background-color: #530505;
}
.order-status__image {
  width: 100%;
  object-fit: scale-down;
  position: relative;
  border-radius: 8px;
}
.order-status-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  position: absolute;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.order-status-card__info-title {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size4);
  font-weight: 600;
}
.order-status-card__info-description {
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-size: var(--font-size2);
  font-weight: 500;
}
.order-status-card__info-emoji {
  font-size: 32px;
  margin-bottom: 8px;
}

.comment {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsla(var(--base-font-h), var(--base-font-s), var(--base-font-l), 0.8);
}
@media (min-width: 768px) {
  .comment {
    font-size: var(--font-size2);
    line-height: 1.29;
    letter-spacing: 1px;
  }
}

.rate {
  display: flex;
  flex-direction: column;
}
.rate .rate__controls {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
}
.rate .rate__controls .rate__control:not(:first-child) {
  margin-left: 24px;
}

.rate-item {
  cursor: pointer;
}
.rate-item > svg {
  display: block;
}
.rate-item > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), calc(var(--base-font-l) + var(--secondary-font-delta-l) * var(--color-dependency-coeff))) !important;
}
.rate-item.rate-item--active > svg {
  display: block;
}
.rate-item.rate-item--active > svg * {
  fill: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l)) !important;
}
.rate-item.rate-item--planned > svg {
  display: block;
}
.rate-item.rate-item--planned > svg * {
  fill: var(--weorder-orange) !important;
}

.rate-title {
  font-size: var(--font-size1);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.86px;
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
}
@media (min-width: 768px) {
  .rate-title {
    font-size: var(--font-size3);
    letter-spacing: 1.14px;
  }
}

.regular-customer-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--base-page-background-h), var(--base-page-background-s), calc(var(--base-page-background-l) + 23.1% * var(--color-dependency-coeff)));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.regular-customer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 568px;
}
.regular-customer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.regular-customer__info-title {
  font-size: var(--font-size4);
  color: hsl(var(--base-font-h), var(--base-font-s), var(--base-font-l));
  font-weight: 600;
}
.regular-customer__info-description {
  font-size: var(--font-size2);
  color: hsl(var(--group-card-secondary-font-color-h), var(--group-card-secondary-font-color-s), var(--group-card-secondary-font-color-l));
}
.regular-customer__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error-page {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: minmax(16px, 0.5fr) minmax(0, 568px) minmax(16px, 0.5fr);
  grid-template-areas: '... message ...' '... reload ...';
  justify-content: center;
  padding-bottom: 99px;
}
.error-page .error-page__message {
  grid-area: message;
  margin-top: 40px;
}
.error-page .error-page__reload {
  grid-area: reload;
  margin-top: 24px;
}

* {
  /* Prevent any object from being highlighted upon touch event*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:not(input):not(textarea) {
  -webkit-user-select: none;
  /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none;
  /* disable the IOS popup when long-press on a link */
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
body {
  line-height: 1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-content-zooming: none;
  -ms-touch-action: none;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  border: none;
  background: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  display: block;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  text-align: start;
  align-items: normal;
}
a {
  text-decoration: none;
}

html,
body {
  height: 100%;
  width: 100%;
}

.no-js {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}

*:focus {
  outline: 0;
}
* {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.page-content {
  padding: 10px;
  background-color: #fff;
}


/*# sourceMappingURL=snappit.6.0.98.ab6500f098f54dd6e81b.min.js.map*/