/***************************
  Reset
***************************/
body, article, section, blockquote, dd, dl, dt, fieldset, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, p, html, legend, li, ol, ul {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
  box-sizing: border-box; }

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

ul, ol, li {
  list-style: none; }

img {
  max-width: 100%;
  height: auto; }

input, select, textarea {
  max-width: 100%;
  font-family: inherit; }

input[type=radio], input[type=checkbox] {
  border: none; }

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none; }

:focus {
  outline: 0; }

::-moz-focus-inner {
  border: 0; }

html {
  height: 100%; }

.body {
  height: 100%; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem; }

a {
  text-decoration: underline;
  color: inherit; }

.spin-icon {
  position: relative;
  width: 60px;
  height: 75px;
  margin: auto; }

.spin-icon__elem {
  position: absolute;
  background-color: white;
  width: 8px;
  height: 23px;
  border-radius: 8px;
  transform: scale(0.4);
  animation-name: fadeG;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-direction: normal; }

#rotateG_01 {
  left: 0;
  top: 27px;
  animation-delay: 0.45s;
  transform: rotate(-90deg); }

#rotateG_02 {
  left: 8px;
  top: 10px;
  animation-delay: 0.6s;
  transform: rotate(-45deg); }

#rotateG_03 {
  left: 26px;
  top: 3px;
  animation-delay: 0.75s;
  transform: rotate(0deg); }

#rotateG_04 {
  right: 8px;
  top: 10px;
  animation-delay: 0.9s;
  transform: rotate(45deg); }

#rotateG_05 {
  right: 0;
  top: 27px;
  animation-delay: 1.05s;
  transform: rotate(90deg); }

#rotateG_06 {
  right: 8px;
  bottom: 7px;
  animation-delay: 1.2s;
  transform: rotate(135deg); }

#rotateG_07 {
  bottom: 0;
  left: 26px;
  animation-delay: 1.35s;
  transform: rotate(180deg); }

#rotateG_08 {
  left: 8px;
  bottom: 7px;
  animation-delay: 1.5s;
  transform: rotate(-135deg); }

@keyframes fadeG {
  0% {
    background-color: black; }
  100% {
    background-color: white; } }
/* Unused feature removed */
.multiselect__option--selected:after,
.multiselect__option--highlight:after,
.multiselect__option--selected.multiselect__option--highlight:after {
  content: none; }

.multiselect {
  font-size: 1.6rem;
  width: auto; }
  .multiselect-input {
    border-radius: 2rem;
    cursor: pointer; }
  .multiselect-single-label {
    font-size: 2.6rem;
    line-height: 4.6rem;
    min-height: 4.6rem;
    font-weight: 700;
    padding-left: 3.6rem;
    text-transform: uppercase;
    padding-right: 8.4rem; }
  .multiselect-options {
    border: none;
    border-radius: 2rem;
    position: absolute;
    width: 100%;
    margin-top: .2rem; }
  .multiselect-option, .multiselect-options > span {
    cursor: pointer;
    display: block;
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 700;
    min-height: 0;
    padding: 1.2rem 3.6rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap; }
  .multiselect-option + .multiselect-option {
    border-top: 1px solid; }
  .multiselect-option.is-selected {
    font-weight: 700; }
  .multiselect-option:has(span:empty) {
    display: none; }
    .multiselect-option:has(span:empty) + .multiselect-option {
      border-top: none; }
  .multiselect-input:before {
    border-style: solid;
    border-width: 10px 10px 0;
    content: "";
    position: absolute;
    right: 3.2rem;
    top: 1.8rem;
    transform: rotate(0deg);
    transition: transform .3s; }
  .is-open .multiselect-input:before {
    transform: rotate(180deg); }

.basket {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 76rem;
  /* TODO: update after component refactor */
  /* TODO: update after component refactor */ }
  .basket__items {
    padding: 1rem 0;
    width: 100%; }
  .basket__total {
    display: flex;
    justify-content: center;
    border-radius: 1rem;
    box-sizing: border-box;
    padding: 1rem 0;
    margin: 10rem auto 5rem; }
  .basket__total-label, .basket__total-amount {
    font-size: 2.6rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 3.4rem;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 3.2rem; }
  .basket__total-amount {
    border-left: solid 1px; }
  .basket .scroll-navigation {
    display: flex;
    flex-direction: row;
    height: 100%;
    overflow: auto;
    width: 100%; }
  .basket .scroll-navigation__viewport {
    height: 100%; }

.basket-deal {
  cursor: pointer;
  width: 100%; }
  .basket-deal__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.6rem;
    text-transform: uppercase; }
  .basket-deal__name {
    flex: 1;
    padding: 1rem 0 1rem 2rem;
    text-decoration: none; }
  .basket-deal__delete {
    flex: 0 0 3rem;
    padding: 1rem 2rem; }

.basket-item {
  cursor: pointer;
  display: flex; }
  .basket-item:not(:first-child) {
    margin-top: 2.5rem; }
  .basket-item__content {
    flex: 1 1 100%;
    padding: 1rem 0 1rem 2rem; }
  .basket-item__main {
    display: flex;
    font-size: 1.8rem;
    font-weight: 700; }
  .basket-item__name {
    flex: 1;
    text-decoration: none;
    box-sizing: border-box; }
  .basket-item__name, .basket-item__quantity, .basket-item__price {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 400; }
    @media screen and (max-width: 60em) {
      .basket-item__name, .basket-item__quantity, .basket-item__price {
        font-size: 2rem; } }
    @media screen and (max-width: 40em) {
      .basket-item__name, .basket-item__quantity, .basket-item__price {
        flex-basis: auto; } }
  .basket-item__quantity {
    flex: 0 0 5rem;
    text-align: right; }
  .basket-item__price {
    text-align: right;
    flex-basis: 15rem; }
    @media screen and (max-width: 60em) {
      .basket-item__price {
        flex-basis: 10rem; } }
    @media screen and (max-width: 40em) {
      .basket-item__price {
        flex-basis: auto; } }
  .basket-item__delete {
    padding: 1rem 2rem;
    --basket-delete-padding: 2rem;
    max-height: calc(3.6rem + var(--basket-delete-padding));
    box-sizing: border-box; }
  .basket-item__delete-icon, .basket-item__edit-icon {
    font-size: 3rem;
    line-height: 3.6rem;
    display: block; }
  .basket-item__edit-icon {
    margin-right: 1.5rem; }
  .basket-item__option {
    padding-left: 5rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    box-sizing: border-box; }
    @media screen and (max-width: 60em) {
      .basket-item__option {
        font-size: 1.4rem; } }
  .basket-item__main + .basket-item__option {
    margin-top: 1rem; }
  .basket-item__option_removed .basket-item__option-name {
    text-decoration: line-through; }

.category {
  margin-top: 3rem; }
  .category > div {
    margin-top: 3rem; }
  .category > div:first-child, .category:first-child {
    margin-top: 0; }
  .category + .category_subcategory {
    margin-top: 0;
    padding-top: 2rem; }
  .category__header {
    transition: opacity 0.2s ease-in;
    opacity: 1;
    margin-bottom: 3rem;
    padding-top: 2rem; }
    @media screen and (max-width: 60em) {
      .category__header {
        padding-top: 0;
        margin-bottom: 3rem; } }
  .category_subcategory .category__header {
    padding-top: 0; }
  .category__title {
    font-size: 4.3rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid; }
    @media screen and (max-width: 60em) {
      .category__title {
        font-size: 3.6rem; } }
    @media screen and (max-width: 40em) {
      .category__title {
        font-size: 3rem; } }
    @media screen and (max-width: 30em) {
      .category__title {
        font-size: 2.4rem; } }
    @media screen and (max-width: 22.5em) {
      .category__title {
        font-size: 2rem; } }
  .category_subcategory .category__title {
    font-size: 2rem; }
  .category__description {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 1.5rem; }
  .category__products {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem; }
    @media screen and (max-width: 60em) {
      .category__products {
        gap: 2rem; } }

.checkout {
  display: flex;
  justify-content: center;
  width: 100%; }
  .checkout__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box; }
  .checkout__bottom {
    box-sizing: border-box;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 2rem; }
  .checkout__main {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3rem 1rem 0;
    box-sizing: border-box; }
  .checkout__delivery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15rem 2rem 20rem; }
  .checkout__basket {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem; }
  .checkout__basket-title {
    font-size: 3.6rem;
    line-height: 4.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem; }
  .checkout__upselling {
    margin-top: 3rem; }
  .checkout__pay {
    box-sizing: border-box;
    padding-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem; }
  .checkout__pay-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    text-align: center; }
  .checkout__pay-buttons {
    display: flex;
    gap: 4rem; }
  .checkout__pay-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 25rem;
    max-width: 29rem;
    box-sizing: border-box;
    padding: 1rem 3rem 2rem;
    border-radius: 1rem;
    border: solid 1px;
    cursor: pointer;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center; }
  .checkout__pay-icon {
    font-size: 10rem;
    line-height: 1;
    margin-bottom: 1.5rem; }
  .checkout__pay-text {
    width: 100%;
    padding-top: 1.5rem;
    border-top: solid 1px; }

.checkout-delivery__label {
  font-size: 3rem;
  line-height: 4.6rem;
  padding-right: 3.5rem;
  text-transform: uppercase;
  white-space: nowrap; }

.checkout-delivery,
.checkout-table-number {
  display: flex;
  align-items: flex-start;
  justify-content: center; }
  @media screen and (max-width: 60em) {
    .checkout-delivery,
    .checkout-table-number {
      flex-direction: row;
      align-items: center; } }
  @media screen and (max-width: 40em) {
    .checkout-delivery,
    .checkout-table-number {
      flex-direction: column; } }
.checkout-delivery__label,
.checkout-table-number__label {
  flex: 0;
  font-size: 3rem;
  line-height: 4.6rem;
  padding-right: 3.5rem;
  text-transform: uppercase;
  white-space: nowrap; }
  @media screen and (max-width: 60em) {
    .checkout-delivery__label,
    .checkout-table-number__label {
      margin-bottom: 0;
      white-space: nowrap; } }
  @media screen and (max-width: 40em) {
    .checkout-delivery__label,
    .checkout-table-number__label {
      padding-right: 0;
      margin-bottom: 1rem;
      font-size: 2.4rem;
      line-height: 1; } }
.checkout-delivery__selection,
.checkout-table-number__selection {
  flex: 1; }
.checkout-delivery__select,
.checkout-table-number__select {
  width: 100%; }
.checkout-delivery__value,
.checkout-table-number__value {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2.1rem; }

.checkout-table-number {
  margin-top: 1rem;
  width: 100%;
  justify-content: center; }
  .checkout-table-number__input {
    font-size: 1.6rem;
    min-height: 40px;
    box-sizing: border-box;
    padding: 0 2rem;
    border-radius: 1rem;
    border: solid 1px; }
  @media screen and (max-width: 40em) {
    .checkout-table-number__label {
      padding-right: 0;
      margin-bottom: 1rem; } }

.checkout-upselling {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 3rem 1rem 2rem;
  margin-bottom: 5rem; }
  .checkout-upselling__title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    text-align: center;
    margin-bottom: 2rem; }
  .checkout-upselling__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; }
  .checkout-upselling__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    border: solid 2px;
    border-radius: 2rem;
    overflow: hidden; }
  .checkout-upselling__item-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%; }
  .checkout-upselling__item-name, .checkout-upselling__item-price {
    text-align: center; }
  .checkout-upselling__item-price {
    white-space: nowrap;
    margin-top: .5rem; }

.deal-wizard {
  margin: 2rem 0;
  padding: 0 3.5rem; }
  .deal-wizard__description {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding-top: 2rem; }
  .deal-wizard__products {
    padding-top: 2rem; }

.deal-wizard-navigation {
  margin: 2rem 0 1.5rem; }
  .deal-wizard-navigation__tabs {
    display: flex;
    flex-flow: wrap; }
  .deal-wizard-navigation__tab {
    flex: 0 0 33.3%;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
    z-index: 9; }
    .deal-wizard-navigation__tab:before {
      content: '';
      display: block;
      position: absolute;
      right: 100%;
      top: 0;
      height: 100%;
      width: 1.6rem; }
    .deal-wizard-navigation__tab:nth-child(3n-1) {
      z-index: 8; }
    .deal-wizard-navigation__tab:nth-child(3n) {
      z-index: 7; }
    .deal-wizard-navigation__tab:first-child:before, .deal-wizard-navigation__tab:nth-child(3n+1):before {
      display: none; }
  .deal-wizard-navigation__link {
    font-size: 1.6rem;
    text-transform: uppercase;
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    padding-left: 1rem; }
    .deal-wizard-navigation__link:before, .deal-wizard-navigation__link:after {
      content: '';
      display: block;
      position: absolute;
      left: 100%;
      top: 0;
      width: 0;
      height: 0;
      border-top: solid transparent;
      border-bottom: solid transparent;
      border-left: solid; }
    .deal-wizard-navigation__link:before {
      margin-left: 1px; }
  .deal-wizard-navigation__link, .deal-wizard-navigation__tab_active .deal-wizard-navigation__link {
    margin-right: 1.6rem; }
  .deal-wizard-navigation__link:before, .deal-wizard-navigation__link:after, .deal-wizard-navigation__tab_active .deal-wizard-navigation__link:before, .deal-wizard-navigation__tab_active .deal-wizard-navigation__link:after {
    border-top-width: 2.3rem;
    border-bottom-width: 2.3rem;
    border-left-width: 1.6rem; }
  .deal-wizard-navigation__tab_active .deal-wizard-navigation__link, .deal-wizard-navigation__tab_active ~ .deal-wizard-navigation__tab .deal-wizard-navigation__link {
    cursor: default; }
  .deal-wizard-navigation__tab:nth-child(3n) .deal-wizard-navigation__link, .deal-wizard-navigation__tab:last-child .deal-wizard-navigation__link {
    margin-right: 0;
    padding-right: 1.6rem; }
  .deal-wizard-navigation__tab:nth-child(3n) .deal-wizard-navigation__link:before, .deal-wizard-navigation__tab:nth-child(3n) .deal-wizard-navigation__link:after, .deal-wizard-navigation__tab:last-child .deal-wizard-navigation__link:before, .deal-wizard-navigation__tab:last-child .deal-wizard-navigation__link:after {
    display: none; }
  .deal-wizard-navigation__title {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    height: 4.6rem;
    line-height: 4.6rem; }
    .deal-wizard-navigation__title:after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 2.5rem; }

.kiosk-powered {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 100%;
  text-align: center; }
  .kiosk-powered__link {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.8rem;
    text-decoration: none; }
  .kiosk-powered__text {
    display: inline-block;
    line-height: 1; }
  .kiosk-powered__logo {
    display: inline-block;
    float: right;
    margin-left: .5rem;
    width: 8rem;
    height: 1.8rem;
    background: url("/assets-images/lp-logo.png") no-repeat left bottom; }

.language-bar__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  padding: 2rem;
  gap: 1rem 0; }
.language-bar__item {
  flex: 1 0 auto;
  text-align: center; }
  @media screen and (max-width: 82em) {
    .language-bar__item {
      flex-basis: 25%; } }
  @media screen and (max-width: 68em) {
    .language-bar__item {
      flex-basis: 33.33%; } }
  @media screen and (max-width: 48em) {
    .language-bar__item {
      flex-basis: 50%; } }
.language-bar__item-link {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  height: 5.8rem;
  line-height: 5.8rem;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  text-align: left; }
  @media screen and (max-width: 82em) {
    .language-bar__item-link {
      height: 5.8rem;
      line-height: 5.8rem; } }
  @media screen and (max-width: 48em) {
    .language-bar__item-link {
      font-size: 2.5rem; } }
.language-bar__item-link_active {
  font-weight: 700; }
.language-bar__item-link_active .language-bar__flag-icon:after {
  border: solid 1px; }
.language-bar__item-text {
  min-width: 15rem; }
  @media screen and (max-width: 48em) {
    .language-bar__item-text {
      min-width: 12.5rem; } }
.language-bar__flag-icon {
  position: relative; }
.language-bar__flag-icon:before, .language-bar__flag-icon:after {
  content: '';
  display: block; }
.language-bar__flag-icon:before {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%; }
.language-bar__flag-icon:after {
  position: absolute;
  top: 1.9rem;
  left: 1.4rem;
  width: 3rem;
  height: 2rem;
  background: url("/assets-images/flags.png") no-repeat; }
.language-bar__flag-icon_fr:after {
  background-position: 0 0; }
.language-bar__flag-icon_en:after {
  background-position: -9.5rem 0; }
.language-bar__flag-icon_es:after {
  background-position: -19rem 0; }
.language-bar__flag-icon_it:after {
  background-position: -28.5rem 0; }
.language-bar__flag-icon_ru:after {
  background-position: -38rem 0; }
.language-bar__flag-icon_de:after {
  background-position: -47.5rem 0; }

.licence {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; }
.licence__wrapper {
  margin: auto;
  width: 90%;
  text-align: center; }
.licence__title {
  margin-bottom: 7rem;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase; }
  @media screen and (max-width: 52.5em) {
    .licence__title {
      font-size: clamp(4.6rem, 7.143vw, 6rem); } }
.licence__fields {
  margin: auto;
  width: 42rem;
  max-width: 100%; }
.licence__input-key {
  width: 100%;
  height: 5.6rem;
  line-height: 5.6rem;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 1px;
  border: none;
  box-sizing: border-box;
  border-radius: 1rem; }
.licence__submit {
  margin-top: 2rem;
  width: 100%;
  height: 5.6rem;
  line-height: 5.6rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 1rem; }
.licence__error-message {
  margin-top: 2.5rem;
  font-size: 2rem; }

.menu {
  display: flex;
  flex: 1 1 100%;
  overflow: hidden; }
.menu__main {
  display: flex;
  flex: 1 1 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box; }
.menu__main-wrapper {
  padding: 0 3rem 3rem; }
  @media screen and (max-width: 60em) {
    .menu__main-wrapper {
      padding: 3rem 2rem; } }
.menu__sidebar {
  overflow-y: auto;
  z-index: 1;
  flex: 0 0 20rem;
  padding-bottom: 2rem; }
  @media screen and (max-width: 60em) {
    .menu__sidebar {
      flex: 0 0 15rem;
      padding-bottom: .5rem; } }
.menu__sidebar-order {
  margin-top: 8rem; }
  @media screen and (max-width: 60em) {
    .menu__sidebar-order {
      margin-top: 1rem; } }

.page {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  overflow: hidden; }
.page__topbar {
  flex: 0 0 auto;
  position: relative;
  z-index: 10; }
.page__content {
  display: flex;
  flex: 1 1 auto;
  position: relative;
  overflow: hidden; }
.page__popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999; }

.payment-completed {
  display: flex;
  position: relative;
  padding: 6.5rem 2rem 5rem; }
  .payment-completed__text {
    flex: 1 1 100%;
    align-self: center;
    padding-right: 0;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2; }
    @media screen and (max-width: 67em) {
      .payment-completed__text {
        font-size: 4.5vw; } }
  .payment-completed__order-id {
    margin-top: 1rem;
    min-height: 48rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 25rem;
    font-size: 2.8rem; }
  .payment-completed__order-number {
    font-size: 19rem;
    line-height: 1;
    margin-top: 3rem;
    font-weight: 700;
    text-align: center; }
  .payment-completed__todo {
    margin-top: 2rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3; }
  .payment-completed__greeting {
    text-align: center;
    font-size: 4.2rem;
    font-weight: 700;
    text-transform: uppercase; }
  .payment-completed__banner {
    flex: 1 1 auto;
    align-self: center;
    position: absolute;
    right: 2rem; }
  @media screen and (max-width: 60em) {
    .payment-completed {
      padding: 3.5rem 0 3rem; }
      .payment-completed__greeting {
        font-size: clamp(2.4rem, 4.38vw, 4.2rem); }
      .payment-completed__order-id {
        font-size: clamp(1.6rem, 2.92vw, 2.8rem);
        padding-right: clamp(6rem, 26.1vw, 25rem);
        min-height: clamp(10rem, 52.1vw, 48rem); }
      .payment-completed__order-number {
        font-size: clamp(9rem, 20vw, 19rem); }
      .payment-completed__todo {
        font-size: clamp(1.4rem, 2.8vw, 2.4rem); }
      .payment-completed__banner {
        right: 0;
        width: clamp(8rem, 20vw, 20.3rem); } }

.payment-processing {
  position: relative;
  padding-top: 3rem; }
  .payment-processing__text {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center; }
  .payment-processing__spin {
    text-align: center;
    padding: 7rem 0 7rem; }
  .payment-processing .cancel-payment-button {
    display: block;
    padding: 2rem 4.8rem;
    margin: auto;
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 1rem; }

.payment-start {
  display: flex;
  margin-right: -5rem;
  padding: 3rem 0; }
  .payment-start__text {
    flex: 1 0 50%;
    align-self: center;
    padding-right: 3rem;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2; }
    @media screen and (max-width: 67em) {
      .payment-start__text {
        font-size: 4.5vw; } }
  .payment-start__banner {
    flex: 1 1 50%;
    align-self: center; }

.popup {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 90%;
  max-width: 107rem;
  overflow: hidden;
  position: relative;
  width: 90%;
  border: 3px solid;
  overflow: hidden;
  border-radius: 2rem; }
  .popup_small {
    height: auto;
    max-width: 60rem; }
  .popup_middle {
    max-width: 85rem; }
  .popup_modal {
    height: auto;
    border-radius: 2rem; }
  .popup_deal-wizard {
    margin-top: 5rem;
    max-height: calc(100% - 5rem);
    max-width: none;
    width: 90%; }
  .popup_deal-wizard-page, .popup__scrolled-content {
    align-content: stretch;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex: 1 1 100%;
    justify-content: flex-start;
    overflow: hidden; }
  .popup_deal-wizard-page {
    position: relative; }
  .popup_deal-wizard-page-inner {
    display: flex;
    flex-direction: row;
    min-height: 100%;
    width: 100%; }
  .popup__header {
    flex: 0 0 auto;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 40em) {
      .popup__header {
        flex-direction: column;
        position: relative;
        padding: 0 1rem 1.5rem; } }
  .popup__close {
    line-height: 1;
    text-decoration: none;
    background-color: inherit;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    margin-left: 2rem;
    vertical-align: top;
    padding: 1.5rem 1.5rem; }
    @media screen and (max-width: 40em) {
      .popup__close {
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 0;
        background-color: transparent; } }
  .popup__close-icon {
    width: 2.6rem;
    height: 2.6rem;
    position: relative;
    display: block; }
    .popup__close-icon:before, .popup__close-icon:after {
      content: '';
      display: block;
      width: 100%;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%; }
    .popup__close-icon:before {
      transform: translate(-50%, -50%) rotate(-45deg); }
    .popup__close-icon:after {
      transform: translate(-50%, -50%) rotate(45deg); }
  .popup__title {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    padding-right: 1.5rem;
    flex-grow: 1;
    padding: 1.5rem 0; }
    @media screen and (max-width: 40em) {
      .popup__title {
        font-size: 2.4rem;
        padding-left: 4.6rem;
        padding-right: 4.6rem;
        text-align: center; } }
  .popup__add-button {
    margin-right: 1.2rem;
    flex-shrink: 0; }
    @media screen and (max-width: 40em) {
      .popup__add-button {
        margin-right: 0; } }
  .popup__content {
    padding: 0 3.5rem .5rem;
    overflow-y: auto; }
  .popup__image-container {
    max-width: 30rem;
    margin-top: 2rem; }
  .popup__image {
    display: block; }
  .popup__description {
    padding: 2rem 0 3rem;
    font-size: 1.5rem;
    line-height: 2rem; }
  .popup__footer {
    flex: 1 0 auto;
    padding: 3rem 2rem 2rem; }
  .popup__fieldset {
    padding: 1.1rem 0 1.6rem;
    border-top: 1px solid; }
    .popup__fieldset_quantity {
      padding-bottom: 2rem;
      padding-top: 0;
      border-top: none; }
  .popup__fieldset-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6rem; }
  .popup__grid {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 64em) {
      .popup__grid {
        flex-flow: wrap; } }
  .popup__grid-col {
    flex: 0 0 auto; }
    @media screen and (max-width: 64em) {
      .popup__grid-col {
        flex-basis: 100%; } }
  .popup_small .popup__grid-col {
    flex-basis: 100%; }
  @media screen and (max-width: 64em) {
    .popup__grid-col:not(:first-child) {
      margin-top: 2rem; } }
  .popup__grid-col_50 {
    flex-basis: 49%; }
  .popup__row {
    display: flex;
    align-items: center; }
  .popup__row-label {
    flex: 0 0 7rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6rem;
    text-transform: uppercase; }
  .popup__row_quantity .popup__row-label {
    flex-basis: 10rem;
    align-self: center; }
  .popup__row-content {
    flex: 1 1 100%; }
  .popup__row-content-value {
    display: inline-block;
    margin-top: .3rem;
    font-size: 1.6rem;
    line-height: 3.4rem; }
  .popup__group {
    margin-top: 1rem; }
  .popup__group-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding-top: 1.2rem; }

.popup-confirm__content {
  text-align: center;
  padding: 5rem 0 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4; }
.popup-confirm__buttons {
  text-align: center;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; }
.popup-confirm__button {
  cursor: pointer;
  padding: 1.7rem 1rem;
  width: 23.6rem;
  max-width: 90%;
  font-size: 1.6rem;
  text-transform: uppercase;
  border: none;
  border-radius: 1rem; }
.popup-confirm p {
  width: 100%;
  flex-shrink: 0; }

.popup-enum {
  display: flex;
  flex-flow: wrap;
  gap: 1rem 2rem; }
  .popup-enum__label {
    display: block;
    position: relative; }
  .popup-enum__input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0; }
  .popup-enum__text {
    display: block;
    position: relative;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    padding: 1rem 3.5rem;
    font-size: 1.4rem;
    line-height: 1;
    border: 1px solid;
    border-radius: 1rem; }
  .popup-enum__input:disabled + .popup-enum__text {
    opacity: .3;
    cursor: default; }
  @media screen and (max-width: 60em) {
    .popup-enum {
      gap: 1rem; } }

.popup-options {
  display: flex;
  flex-flow: wrap;
  gap: 1.6rem 0; }
.popup-options__item {
  flex: 0 0 25%;
  padding: 0 1rem 0 0;
  box-sizing: border-box;
  display: flex; }
  @media screen and (max-width: 64em) {
    .popup-options__item {
      flex-basis: 33%; } }
  @media screen and (max-width: 48em) {
    .popup-options__item {
      flex-basis: 50%; } }
  @media screen and (max-width: 30em) {
    .popup-options__item {
      flex-basis: 100%; } }
.popup-options__label {
  position: relative; }
.popup-options__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0; }
.popup-options__text {
  position: relative;
  display: block;
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 0 0 0 2.3rem; }
.popup-options__text:before, .popup-options__text:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box; }
.popup-options__text:before {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid; }
.popup-options__text:after {
  display: none;
  width: 1rem;
  height: 1rem;
  margin: .3rem; }
.popup-options__input:checked + .popup-options__text:after {
  display: block; }
.popup-options__price {
  white-space: nowrap;
  margin-left: .5rem; }
.popup-options .disabled {
  opacity: 0.5; }

.popup-order__button {
  cursor: pointer;
  padding: 1.1rem 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  display: flex;
  border-radius: 1rem; }
.popup-order__button-price, .popup-order__button-text {
  padding: 0 3rem;
  display: inline-flex; }
.popup-order__button-price {
  border-right: 1px solid; }

.popup-quantity {
  display: flex; }
  .popup-quantity__button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    height: 3rem;
    width: 3.8rem;
    font-size: 1.6rem;
    line-height: 1;
    border: none;
    border-radius: 1rem; }
  .popup-quantity__icon-decrease:before, .popup-quantity__icon-increase:before {
    display: block; }
  .popup-quantity__input {
    width: 3rem;
    margin: 0 1rem;
    font-size: 2rem;
    font-weight: 500;
    padding: 0;
    text-align: center;
    border: none; }

.product {
  --product-basis: 1.5rem;
  flex: 0 0 calc(50% - var( --product-basis ));
  display: flex;
  box-sizing: border-box;
  transition: all .3s ease; }
  .product-active {
    margin-top: -.3rem; }
  .product__wrapper {
    flex: 1 0 100%;
    border: 3px solid;
    box-sizing: border-box;
    border-radius: 2rem;
    overflow: hidden; }
  .product__image {
    display: block;
    width: 100%; }
  .product__info-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem; }
  .product__name, .product__price {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2; }
    @media screen and (max-width: 40em) {
      .product__name, .product__price {
        font-size: 1.8rem; } }
  .product__name {
    order: 1; }
  .product__price {
    white-space: nowrap;
    flex-shrink: 0;
    order: 2; }
  .product__description {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    order: 3; }
    @media screen and (max-width: 40em) {
      .product__description {
        font-size: 1.4rem; } }
  .product__click-area {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  .product_large-image, .product_text {
    --product-basis: 2rem;
    flex: 0 0 calc(33.33% - var( --product-basis )); }
    .product_large-image .product__info-wrapper, .product_text .product__info-wrapper {
      display: flex;
      flex-direction: column;
      padding: 1.5rem; }
    .product_large-image .product__name, .product_text .product__name {
      margin-bottom: 1rem;
      font-size: 2rem;
      text-align: center;
      order: -1;
      word-break: break-word; }
    .product_large-image .product__price, .product_text .product__price {
      float: none;
      font-size: 1.8rem;
      margin-left: 0;
      margin-bottom: 1rem;
      text-align: center; }
    .product_large-image .product__description, .product_text .product__description {
      font-size: 1.6rem;
      text-align: center;
      word-break: break-word; }
    @media screen and (max-width: 60em) {
      .product_large-image, .product_text {
        --product-basis: 1.33333rem; }
        .product_large-image .product__name, .product_text .product__name {
          font-size: 2.4rem;
          margin-bottom: 1rem; }
        .product_large-image .product__price, .product_text .product__price {
          font-size: 2rem;
          margin-bottom: 1rem; }
        .product_large-image .product__description, .product_text .product__description {
          font-size: 1.6rem; } }
    @media screen and (max-width: 40em) {
      .product_large-image .product__info-wrapper, .product_text .product__info-wrapper {
        padding: 1rem; }
      .product_large-image .product__name, .product_text .product__name {
        font-size: 2rem; }
      .product_large-image .product__price, .product_text .product__price {
        font-size: 1.8rem; }
      .product_large-image .product__description, .product_text .product__description {
        font-size: 1.4rem; } }
    @media screen and (max-width: 35em) {
      .product_large-image, .product_text {
        flex: 0 0 100%; } }
  .product_large-image .product__image-container {
    flex-basis: 100%;
    margin: 1.5rem 1.5rem 0; }
  .product_large-image .product__image {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: auto; }
  @media screen and (max-width: 60em) {
    .product_large-image .product__name {
      font-size: 2rem;
      margin-bottom: 1rem; } }
  @media screen and (max-width: 40em) {
    .product_large-image .product__image-container {
      margin: 1rem 1rem 0; } }
  .product_text .product__name,
  .product_text .product__price {
    font-size: 1.8rem; }
  @media screen and (max-width: 60em) {
    .product_text .product__info-wrapper {
      padding: 2rem; } }
  .product_small-image .product__wrapper {
    display: flex; }
  .product_small-image .product__image-container {
    flex: 0 0 14rem; }
  .product_small-image .product__info {
    flex: 1 0 100%; }
  .product_small-image .product__image-container + .product__info {
    max-width: calc(100% - 14rem); }
  .product_small-image .product__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis; }
  .product_small-image .product__name,
  .product_small-image .product__price {
    font-size: 1.6rem; }
  .product_small-image .product__price + .product__name {
    max-width: calc(100% - 7rem); }
  .product_small-image .product__description {
    font-size: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis; }
  @media screen and (max-width: 60em) {
    .product_small-image {
      flex: 0 0 100%; }
      .product_small-image .product__info-wrapper {
        padding: 1rem; } }

.order_condition-inventory_limit_exceeded {
  display: none; }

.order_condition-period_and_time_availability_not_available {
  display: none; }

.scroll-navigation [data-scrolled-item] {
  position: relative; }
.scroll-navigation {
  flex: 1 1 100%;
  width: 100%; }
.scroll-navigation__viewport {
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  width: 100%; }
.scroll-navigation__viewport-inner {
  box-sizing: content-box;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 1.7rem;
  padding-right: 1.7rem;
  position: relative;
  width: 100%; }
.scroll-navigation__wrapper {
  box-sizing: border-box;
  position: relative;
  width: 100%; }
.scroll-navigation__button {
  width: 12rem;
  height: 5rem;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  display: block;
  left: 50%;
  padding: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  transition: transform .2s ease-in;
  z-index: 10;
  border: none;
  box-sizing: border-box; }
.scroll-navigation__button_top {
  top: 0;
  transform: translate(-50%, -100%);
  padding-bottom: 1rem;
  border-radius: 0 0 5rem 5rem; }
.scroll-navigation__button_bottom {
  bottom: 0;
  transform: translate(-50%, 100%);
  padding-top: 1rem;
  border-radius: 5rem 5rem 0 0; }
.scroll-navigation__button_bottom-displayed, .scroll-navigation__button_top-displayed {
  transform: translate(-50%, 0); }
.scroll-navigation__icon-top {
  display: block; }
.scroll-navigation__icon-bottom {
  display: block; }
.scroll-navigation.animation-slide-right-enter-active, .scroll-navigation.animation-slide-right-leave-active, .scroll-navigation.animation-slide-left-enter-active, .scroll-navigation.animation-slide-left-leave-active {
  overflow: hidden !important; }
  .scroll-navigation.animation-slide-right-enter-active .scroll-navigation__viewport-inner, .scroll-navigation.animation-slide-right-leave-active .scroll-navigation__viewport-inner, .scroll-navigation.animation-slide-left-enter-active .scroll-navigation__viewport-inner, .scroll-navigation.animation-slide-left-leave-active .scroll-navigation__viewport-inner {
    padding: 0 !important; }

.sidebar-navigation {
  margin: 3.3rem 0 0;
  padding: 0 1.5rem;
  box-sizing: border-box; }
  @media screen and (max-width: 60em) {
    .sidebar-navigation {
      margin: 1rem 0 0;
      padding: 0 .5rem; } }
.sidebar-navigation__item {
  padding: .7rem 0; }
.sidebar-navigation__item + .sidebar-navigation__item {
  border-top: 1px solid; }
.sidebar-navigation__item-link {
  cursor: pointer;
  display: block;
  transition: background .4s ease;
  padding: .3rem .5rem .3rem 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1rem; }
  @media screen and (max-width: 60em) {
    .sidebar-navigation__item-link {
      font-size: 1.4rem;
      line-height: 1.8rem; } }
.sidebar-navigation:has(.sidebar-navigation__item-icon) .sidebar-navigation__item-link {
  display: flex;
  align-items: center;
  padding-left: 4rem;
  position: relative;
  overflow: hidden; }
.sidebar-navigation__item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: .3rem;
  width: 3rem;
  height: 3rem;
  object-fit: contain; }
.sidebar-navigation__item-image {
  max-width: 2.4rem; }

.sidebar-order {
  padding: 0 2rem; }
  .sidebar-order__button {
    display: flex;
    flex-wrap: wrap;
    padding: .8rem 0;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 1rem; }
  .sidebar-order__button-animated {
    animation-name: animate_basket_scale;
    animation-duration: 0.22s;
    animation-timing-function: ease-out; }
  .sidebar-order__button-price {
    flex: 0 0 50%;
    font-size: 1.4rem;
    line-height: 1.8rem;
    border-left: 1px solid;
    box-sizing: border-box; }
  .sidebar-order__button-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50%;
    font-size: 1.4rem;
    line-height: 1.8rem; }
  .sidebar-order__button-icon {
    position: relative;
    padding: 0 .6rem .2rem;
    line-height: 1.5rem;
    border-bottom: 1px solid; }
    .sidebar-order__button-icon:before, .sidebar-order__button-icon:after {
      content: '';
      display: block;
      position: absolute;
      bottom: -.1rem;
      width: 0;
      height: 1.5rem;
      border-left: 1px solid; }
    .sidebar-order__button-icon:before {
      left: -.4rem;
      transform: skewX(25deg); }
    .sidebar-order__button-icon:after {
      right: -.4rem;
      transform: skewX(-25deg); }
  .sidebar-order__button-title {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: .5rem; }
  .sidebar-order__non-acceptability {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 1rem -2rem 0;
    padding: 1rem 2rem;
    font-weight: 500; }
  @media screen and (max-width: 60em) {
    .sidebar-order {
      padding: 0 .5rem; }
      .sidebar-order__button-price, .sidebar-order__button-items {
        font-size: 1.4rem; }
      .sidebar-order__non-acceptability {
        margin: 1rem -.5rem 0;
        padding: 1rem .5rem;
        font-weight: 500; } }

@keyframes animate_basket_scale {
  0% {
    transform: scale(1); }
  70% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
.splash {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden; }
.splash__header {
  text-align: center;
  max-width: 90%; }
.splash__start-link {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none; }
.splash__title-first, .splash__title-second {
  line-height: 1;
  text-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  transition: opacity ease-in 0.1s;
  white-space: nowrap; }
.splash__title-first {
  font-size: clamp(2rem, 8vw, 12.4rem);
  font-weight: 700; }
.splash__title-second {
  font-size: clamp(2rem, 8vw, 12.4rem);
  font-weight: 100; }
.splash__language-bar {
  flex: 0 0 auto; }

.start-menu {
  display: flex;
  flex: 1 0 100%;
  gap: 0 2.5%;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 3rem; }
.start-menu__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  width: calc(33.33% - 2rem);
  max-width: 45.6rem;
  aspect-ratio: 456/396;
  height: auto;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border-radius: 2rem; }
.start-menu__button-icon-wrapper {
  margin-bottom: 8.5%;
  width: 100%;
  flex: 0 0 auto;
  justify-content: center;
  padding-top: 3.1%; }
.start-menu__button-icon {
  padding-bottom: 0; }
.start-menu__button-text-wrapper {
  flex: none;
  width: 100%;
  max-width: 73%;
  container-type: inline-size; }
.start-menu__button-text {
  margin: 0;
  padding: 5.7% 0 0;
  font-size: 12cqw;
  line-height: 15cqw;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 2px solid;
  box-sizing: border-box;
  width: 100%; }
.start-menu__button-icon-wrapper {
  display: flex;
  container-type: inline-size; }
.start-menu__button-icon {
  font-size: 32cqw;
  line-height: 32cqw;
  align-self: flex-end; }

.topbar {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 1.5rem 3.7rem;
  transition: all .3s ease; }
.topbar__left, .topbar__right {
  display: inline-flex; }
.topbar__left-button {
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
  padding: .8rem 0;
  font-size: 2.4rem;
  line-height: 2.7rem;
  white-space: nowrap;
  text-transform: none;
  text-decoration: none;
  transition: all .3s ease; }
.topbar__left-button-icon {
  font-size: 2.7rem; }
@media screen and (max-width: 30em) {
  .topbar {
    padding: 1.5rem 3rem; }
    .topbar__left-button {
      font-size: 1.8rem; } }

.animation-click:active:not(:disabled) {
  animation-duration: 0.2s;
  animation-name: animation_click_effect;
  animation-timing-function: ease-out; }

@keyframes animation_click_effect {
  0% {
    transform: scale(0.94); }
  100% {
    transform: scale(1); } }
.animation-list-basket-item_updated {
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 0.51, 0.21, 0.99);
  animation-name: animation-list-basket-item_updated; }
.animation-list-basket-item_removed {
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 0.51, 0.21, 0.99);
  animation-name: animation-list-basket-item_removed; }

@keyframes animation-list-basket-item_updated {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); }
  100% {
    transform: scale(1); } }
@keyframes animation-list-basket-item_removed {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); }
  100% {
    transform: scale(0); } }
.animation-list-item {
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
  .animation-list-item-enter {
    opacity: 0;
    transform: translateY(4rem); }
  .animation-list-item-enter-active {
    opacity: 1;
    transform: translateY(0); }
  .animation-list-item-leave-active {
    opacity: 0; }

.animation-moving-to-basket, .animation-moving-to-basket_upselling {
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-name: animation-moving-to-basket-opacity;
  animation-duration: .4s;
  display: block;
  min-height: unset !important;
  overflow: hidden;
  padding: 0;
  position: fixed !important;
  transition: left .4s, top .4s, width .4s, height .4s ease;
  z-index: 9; }
  .animation-moving-to-basket:after, .animation-moving-to-basket_upselling:after {
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-name: animation-moving-to-basket-background;
    animation-duration: .4s;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999; }
  .animation-moving-to-basket_upselling {
    animation-duration: .3s;
    transition: left .3s, top .3s, width .3s, height .3s ease; }
  .animation-moving-to-basket_upselling:after {
    animation-duration: .3s; }
  .animation-moving-to-basket > div, .animation-moving-to-basket_upselling > div {
    margin: 0; }

@keyframes animation-moving-to-basket-background {
  from {
    background: transparent; }
  to {
    background: black; } }
@keyframes animation-moving-to-basket-opacity {
  from {
    opacity: 1; }
  to {
    opacity: .5; } }
.animation-popup-moving-to-basket {
  transition: left .4s, top .4s, width .4s, height .4s ease;
  position: absolute; }
.animation-popup-enter-active {
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 0.51, 0.21, 0.99);
  animation-name: animation-popup-overlay; }
  .animation-popup-enter-active > .popup {
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 0.51, 0.21, 0.99);
    animation-name: animation-popup-enter; }
.animation-popup-leave-active {
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-direction: reverse;
  animation-name: animation-popup-overlay; }
  .animation-popup-leave-active > .popup:not(.animation-popup-moving-to-basket) {
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-direction: reverse;
    animation-name: animation-popup-enter; }
  .animation-popup-leave-active > .popup.animation-popup-moving-to-basket {
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: .2s;
    animation-duration: .3s;
    animation-name: animation-popup-leave;
    margin-top: 0;
    overflow: hidden; }
  .animation-popup-leave-active > .popup.animation-popup-moving-to-basket:before {
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-name: animation-popup-background;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999; }

@keyframes animation-popup-enter {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }
@keyframes animation-popup-leave {
  from {
    opacity: 1; }
  to {
    opacity: .5; } }
@keyframes animation-popup-overlay {
  from {
    background: none; }
  to {
    background: rgba(0, 0, 0, 0.6); } }
@keyframes animation-popup-background {
  from {
    background: transparent; }
  to {
    background: rgba(0, 0, 0, 0.8); } }
.animation-slide-to-left-enter {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  opacity: 0; }
.animation-slide-to-left-enter-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  animation: slide-enter-to-left 0.8s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-delay: 0;
  opacity: 0; }
.animation-slide-to-left-leave {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(0); }
.animation-slide-to-left-leave-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-leave-to-left 0.8s cubic-bezier(0.22, 0.81, 0.01, 0.99); }
.animation-slide-to-right-enter {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(-100%);
  opacity: 0; }
.animation-slide-to-right-enter-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(-100%);
  animation: slide-enter-to-right 0.8s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-delay: 0;
  opacity: 0; }
.animation-slide-to-right-leave {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateX(0); }
.animation-slide-to-right-leave-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-leave-to-right 0.8s cubic-bezier(0.22, 0.81, 0.01, 0.99); }
.animation-slide-top-enter {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(100%); }
  .animation-slide-top-enter .animation-slide__content {
    transform: translateY(100%); }
.animation-slide-top-enter-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-enter-to-top 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
  .animation-slide-top-enter-active .animation-slide__content {
    animation: slide-enter-to-top 0.65s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
.animation-slide-top-leave {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(0); }
  .animation-slide-top-leave .animation-slide__content {
    transform: translateY(0); }
.animation-slide-top-leave-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-leave-to-top 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
  .animation-slide-top-leave-active .animation-slide__content {
    animation: slide-leave-to-top 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
.animation-slide-bottom-enter {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(-100%); }
  .animation-slide-bottom-enter .animation-slide__content {
    transform: translateY(-100%); }
.animation-slide-bottom-enter-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-enter-to-bottom 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
  .animation-slide-bottom-enter-active .animation-slide__content {
    animation: slide-enter-to-bottom 0.65s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
.animation-slide-bottom-leave {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(0); }
  .animation-slide-bottom-leave .animation-slide__content {
    transform: translateY(0); }
.animation-slide-bottom-leave-active {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: slide-leave-to-bottom 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }
  .animation-slide-bottom-leave-active .animation-slide__content {
    animation: slide-leave-to-bottom 0.7s cubic-bezier(0.22, 0.51, 0.21, 0.99); }

@keyframes slide-enter-to-top {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(0); } }
@keyframes slide-leave-to-top {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }
@keyframes slide-enter-to-bottom {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }
@keyframes slide-leave-to-bottom {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(100%); } }
@keyframes slide-enter-to-left {
  0% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }
@keyframes slide-leave-to-left {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(-100%);
    opacity: 0; } }
@keyframes slide-enter-to-right {
  0% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }
@keyframes slide-leave-to-right {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(100%);
    opacity: 0; } }
