/* === Inter Regular === */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === Inter Italic === */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* === Exo 2 Regular === */
@font-face {
  font-family: 'Exo 2';
  src: url('../fonts/Exo2.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === Exo 2 Italic === */
@font-face {
  font-family: 'Exo 2';
  src: url('../fonts/Exo2-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


/* Components */
.container {
  max-width: 1600px;
  margin: 0 auto 90px;
  padding: 0px 15px;
}
.headline-5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 127.273%;
  letter-spacing: 0.44px;
  color: #0b0b11;
}
.headline-6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 137.5%;
  letter-spacing: 0.32px;
  color: #0b0b11;
}
.l-m {
  font-size: 19px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.32px;
  color: #0b0b11;
}
.l-s {
  font-size: 12px;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: 0.24px;
  color: #0b0b11;
}
.p-s {
  font-size: 14px;
  font-weight: 400;
  line-height: 142.857%;
  color: #0b0b11;
}
.d-m {
  font-size: 12px;
  font-weight: 300;
  line-height: 133.333%;
  color: #0b0b11;
}
.sale-2 {
  color: #0b0b11;
  font-size: 12px;
  font-weight: 500;
  line-height: 133.333%;
  text-decoration-line: strikethrough;
}
.banner__text {
  color: #fff;
}
.blocked {
  background: rgba(224, 44, 44, 0.28) !important;
  pointer-events: none;
}

/* Header */
.header {
  margin-top: 16px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.logo__title {
  text-align: left;
}

.site--logo{
  height: 150px;
  position: relative;
}

.site--logo img{
  height: 100%;
  object-fit: contain;
}
.search {
  position: relative;
  border-radius: 16px;
  max-width: 501px;
  width: 100%;
  background: rgba(11, 11, 17, 0.04);
}
.search__input {
  padding: 11px 40px;
  width: 100%;
}
::placeholder {
  color: rgba(11, 11, 17, 0.2);
}
.search__icon {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.header__button {
  color: #ffffff;
  text-align: center;
  border-radius: 16px;
  padding: 12px 20px;
  background: #f83e33;
}

/* Main */
.main {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 42px;
}
.main__content {
  max-width: 1168px;
  width: 100%;
  border-radius: 32px 32px 32px 32px;
  padding: 16px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
  overflow: hidden;

  @media (max-width: 650px) {
    padding: 10px;
  }
}
.main__search {
  display: none;
}
.main__categories {
  max-width: 1112px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: auto;
  flex-direction: row;
  flex-wrap: nowrap;
}
.main__categories::-webkit-scrollbar {
  display: none;
}
.categories__item {
  text-align: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: transparent;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  max-width: 250px;
  white-space: normal;
}
.categories__item:hover {
  background: rgba(11, 11, 17, 0.04);
}
.main__promotion {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.promotion__item {
  border-radius: 24px;
  max-width: 280px;
  height: 314px !important;
  width: 100% !important;
  position: relative;
}
.promotion__item img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.promotion__info {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    2deg,
    rgba(255, 255, 255, 0) 1.96%,
    rgba(0, 0, 0, 0.3) 97.9%
  );
  padding: 24px;
  border-radius: 24px;
  height: 240px;
}
.main__favorite {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.favorite__content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.favorite__banner {
  position: relative;
  max-width: 207px;
  height: 354px !important;
  cursor: pointer;
}
.favorite__banner img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.banner__info {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    2deg,
    rgba(255, 255, 255, 0) 1.96%,
    rgba(0, 0, 0, 0.3) 97.9%
  );
  padding: 16px;
  height: 240px;
  border-radius: 24px;
}
.favorite__card {
  border-radius: 24px;
  background: rgba(11, 11, 17, 0.04);
  max-width: 208px;
  height: 354px !important;
  padding: 8px;
  display: flex !important;
  flex-direction: column;
}
.favorite-card__top {
  position: relative;
  margin-bottom: 8px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}
.favorite-card__top img {
  width: 100%;
  height: auto !important;
  object-fit: cover;
  border-radius: 16px;
}
.share {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  border-radius: 8px;
  background: #f83e33;
  padding: 6px 12px;

  @media (max-width: 500px) {
    font-size: 14px;
    white-space: nowrap;
  }
}
.favorite-card__desc {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.weight {
  color: rgba(11, 11, 17, 0.65);
}
.card-text {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 6px 12px;
}
.favorite-card__button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f83e33;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 12px 0px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.old-price {
  color: rgba(11, 11, 17, 0.2);
}
.main__food-block {
  margin-top: 32px;
}
.main__food-block h2 {
  padding-top: 20px;
  padding-bottom: 10px;
}
.food-block__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0px;
}
.food-block__card {
  display: flex;
  flex-direction: column;
  max-width: 272px;
  width: 100%;
  height: 420px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(11, 11, 17, 0.04);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.food-block__top {
  position: relative;
  margin-bottom: 8px;
  width: calc(100% + 20px);
  transform: translate(-10px, -10px);
}
.food-block__top img {
  width: 100%;
  height: auto !important;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}
.food-block__desc {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.food-block__button {
  margin-top: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 12px 0px;
  color: #f83e33;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.main__cart {
  position: relative;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
  padding: 16px;
  height: 770px;
}
.card__location {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location__button {
  width: 24px;
  height: 24px;
}
.cart__img {
  height: 259px;
  align-self: center;
}
.cart__img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.cart-button {
  color: #fff;
  padding: 12px 0px;
  width: 100%;
  background: #f83e33;
  border-radius: 16px;
}

.main__cart .doOrder-carts {
  width: 100%;
  height: 560px;
  padding: 0;
  margin-top: auto;
  border-radius: 0;
  margin-bottom: 110px;
}

.main__cart-total {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 16px;
  background-color: white;
  max-width: 330px;

  @media (max-width: 650px) {
    max-width: none !important;
  }
}
#main__cartPopap .main__cart {
  width: 100%;
  max-width: none !important;
  box-shadow: none !important;
  max-height: 100%;
}
#main__cartPopap .popap__wrapper{
  height: calc(100% - 20px);
}
#main__cartPopap .card__location{
  padding-right: 60px;
}

body.rtl #main__cartPopap .card__location{
  padding-right: 0px;
  padding-left: 60px
}


.main__cart-total h5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.main__cartActive {
  position: relative;
  justify-content: center;
}
.main__cartActive-popap {
  width: 100%;
  padding: 0;
  gap: 24px;
  justify-content: start;
  display: flex !important;
}
[easy-remove] {
  z-index: 100;
}
.main__cartActive-popap .doOrder-carts {
  height: 100%;
  margin-top: 0;
}
.main__cartActive-popap .main__cart-total {
  bottom: 0;
}

/* profileInfo */

.profile-info {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.profile-bonus {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
  width: 205px;
  height: 124px;
  border-radius: 16px;
  background: #fff5d0;
  padding: 12px;
}
.profile-bonus h6 {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 120px;
}
.profile-bonus span {
  align-self: center;
  color: rgba(11, 11, 17, 0.2);
}
.profile-bonus img:last-child {
  align-self: flex-end;
  cursor: pointer;
}
.profile-orderStatus {
  display: flex;
  width: 324px;
  height: 124px;
  border-radius: 24px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px;
  gap: 12px;
}
.orderStatus-cartsIcon {
  width: 108px;
  height: 108px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.orderStatus-cartsIcon img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}
.orderStatus-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.orderStatus {
  display: flex;
  align-items: center;
  gap: 4px;
}
.orderStatus img {
  background-color: #ffc000;
  width: 24px;
  height: 24px;
  border-radius: 16px;
}
.orderStatus-infoTitle {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Footer */
.footer {
  margin-top: 24px;
  max-width: 1168px;
  width: 100%;
  padding: 16px;
  border-radius: 32px;
  background: rgba(11, 11, 17, 0.04);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__item {
  list-style: none;
}
.footer__socs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.socs__item {
  width: 32px;
  height: 32px;
}
.footer__copyright {
  margin-top: 16px;
  color: rgba(11, 11, 17, 0.2);
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-button-next {
  right: -8px !important;
}
.swiper-button-prev {
  left: -8px !important;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  color: #0b0b11;
  padding: 10px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  font-size: 24px !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: #0b0b11;
  padding: 10px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  font-size: 24px !important;
}

/* Popap */
.popap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 200ms ease-out;
}
.popap__wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  max-width: 360px;
  width: 100%;
  padding: 16px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
  height: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  @media (max-width: 900px) {
    height: 90%;
    overflow-y: auto;
  }
}

.popap__wrapper:not(.popap__wrapper--small) {
  @media (max-width: 900px) {
    max-width: none;
  }
}

#reglog_popap .popap__wrapper {
  align-items: center;
  justify-content: center;
}

#reglog_popap .d-m {
  font-size: 16px;
  text-align: center;
}

.popap__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: inherit;
}
.popap.popap--active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.popap__button {
  padding: 13px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 999;
  width: 40px;
  height: 40px;
}

.popap__button__back {
  left: 0;
}

/* Popap language */
.language__title {
  align-self: center;
  max-width: 310px;
  width: 100%;
}
.language__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.language__item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  width: 100%;
  display: flex;
  align-items: center;
}
.language__item input {
  margin-left: auto;
}
.city {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.city__title {
  text-align: center;
}
.city__select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  user-select: none;
  margin-top: 8px;
}
.city__select {
  padding: 9px 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  border: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.select__title {
  display: flex;
  flex-direction: column;
}
.select__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 8px;
  height: 150px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.select__options::-webkit-scrollbar {
  display: none;
}
.options__item {
  padding: 9px 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  display: flex;
  flex-direction: column;
}
.city__select.open .select__options {
  opacity: 1;
  pointer-events: all;
}
.language__button {
  color: #fff;
  padding: 12px 0px;
  width: 100%;
  margin-top: auto;
  background-color: #f83e33;
  border-radius: 16px;
}
.placeholder {
  color: rgba(11, 11, 17, 0.2);
}

/* Popap faq */
.faq__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.faq__wrapper::-webkit-scrollbar {
  display: none;
}
.faq__title {
  text-align: center;
  margin-top: 6px;
}
.faq__list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.faq__item {
  width: 100%;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 17px 16px;
}
.faq__toggle {
  width: 9.5px;
  height: 8.5px;
  border-top: 2px solid #0b0b11;
  border-right: 2px solid #0b0b11;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.faq__answer {
  margin-top: 8px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  display: none;
}
.faq--open .faq__toggle {
  transform: rotate(135deg);
  height: 9.5px;
}

/* Popap contact */
.contact__wrapper {
  position: relative;
  width: 100%;
}
.contact__title {
  text-align: center;
  margin-top: 6px;
}
.contact__content {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.contact__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 9px 16px;
}
.contact__info {
  display: flex;
  flex-direction: column;
}
.contact__info p {
  color: #f83e33;
}

/* Popap promotion */
.promotion__wrapper {
  max-width: 776px;
  padding: 24px;
}
.promotion__container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-radius: 24px;
}
.promotion__l {
  max-width: 376px;
  width: 100%;
  height: 592px;
  position: relative;
}
.promotion__l img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.promotion__info {
  background: linear-gradient(
    2deg,
    rgba(255, 255, 255, 0) 1.96%,
    rgba(0, 0, 0, 0.3) 97.9%
  );
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  height: 240px;
}
.promotion-r {
  width: 100%;
}
.promotion__title {
  margin-top: 6px;
}
.promotion__list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  height: 534px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.promotion__list::-webkit-scrollbar {
  display: none;
}
.promotion__card {
  border-radius: 24px;
  background: rgba(11, 11, 17, 0.04);
  max-width: 168px;
  width: 100%;
  height: 298px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.promotion-card__top {
  position: relative;
  margin-bottom: 8px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}
.promotion-card__top img {
  width: 100%;
  height: 137px;
  object-fit: cover;
  border-radius: 16px;
}
.promotion-card__desc {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.promotion-card__button {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f83e33;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 12px 0px;
  width: 100%;
  justify-content: center;
}

/* popap-discounts */
.discounts_container {
  position: relative;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.discounts_container::-webkit-scrollbar {
  display: none;
}
.discounts-title {
  margin-top: 6px;
  text-align: center;
}
.discounts_barcode_content {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.discounts_barcode_content_h4 {
  text-align: center;
}
.discounts_barcode_content_h4 span {
  display: inline-block;
  width: max-content;
}
.discounts_barcode {
  margin-top: 16px;
  padding: 16px;
  border-radius: 24px;
  background: #fff5d0;
  height: 262px;
}
.points_count {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.points_count p {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}
.points_count span {
  color: rgba(11, 11, 17, 0.2);
}
.barcode {
  margin-top: 8px;
}
.barcode_code {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding-left: 12px;
}
.barcode_code span {
  letter-spacing: 1px;
  position: relative;
}
.barcode_code span .copy-notice {
  position: absolute;
  top: -3px;
  padding: 8px;
  border-radius: 8px;
  background: #f83e33;
  color: white;
  right: -130px;
  font-weight: 300;
  line-height: 100%;
  font-size: 10px;
  display: none;
}
.discounts_score {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: max-content;
  background: white;
  margin-top: -80px;
  padding: 16px;
  border-radius: 24px;
}
.top-rank {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}
.rank-name {
  display: flex;
  gap: 5px;
  align-items: center;
}
.rank-icon {
  width: 24px;
  height: 24px;
}
.top-rank span {
  color: rgba(11, 11, 17, 0.2);
}
.rank-progressBar {
  border-radius: 14px;
  height: 4px;
  display: flex;
  align-items: center;
  background-color: rgba(11, 11, 17, 0.06);
}
.stroke {
  height: 4px;
  width: 15px;
  background: #32c954;
  border-radius: 14px;
}
.cashBack {
  color: rgba(11, 11, 17, 0.2);
}
.discounts-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.discounts-bottom-title {
  text-align: center;
}
.rank {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 12%;

  border-radius: 24px;
  background: var(--tone-day-900, rgba(11, 11, 17, 0.04));
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.rank .rank-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.properties {
  display: flex;
  align-items: center;
  gap: 12px;
}
.properties-arrow {
  width: 24px;
  height: 24px;
}
.rank-active {
  opacity: 100%;
}

/* logReg-popap telConfirm-popap */
.logReg_container,
.telConfirm_container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.logReg-headline,
.telConfirm-headline {
  text-align: center;
  margin-top: 6px;
}
.logReg-form,
.telConfirm-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.regInputs_bithday{
  display: flex;
  gap: 10px;
  align-items: center;
}
.regInputs_bithday input:first-child{
  flex: 1;
}
.regInputs_bithday input:last-child{
  flex: 2;
}
.input-name,
.input-tel,
.input-telConfirm {
  padding: 8px 8px 8px 16px;
  line-height: 22px;
  height: 56px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.telConfirm-timecode {
  color: rgba(11, 11, 17, 0.2);
  text-align: center;
}
.checkbox {
  display: flex;
  gap: 12px;
  align-items: start;
  padding-top: 8px;
}
.checkbox label {
  cursor: auto;
}
.input-checkbox {
  display: none;
}
.customLogCheckbox,
.customRegCheckbox {
  max-height: 24px;
  max-width: 24px;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 8px;
  border: 2px solid rgba(11, 11, 17, 0.06);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customLogCheckbox span,
.customRegCheckbox span {
  background: rgb(240, 96, 96);
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 4px;
  display: none;
}
.logReg_bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.logReg_bottom p {
  color: rgba(11, 11, 17, 0.2);
}
.logReg_button,
.telConfirm_button {
  color: #fff;
  padding: 12px 0px;
  width: 100%;
  margin-top: auto;
  background-color: #f83e33;
  border-radius: 16px;
}
.registration,
.login {
  padding-top: 5px;
  font-size: 15px;
}

.registration span.red,
.login span.red {
  color: #f83e33;
}

.registration span,
.login span {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* profilePopap */

.profile_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  cursor: pointer;
}
.profile-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-bottom button {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  border-radius: 16px;
}

/* ordersPopap */
.orders_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.popap__button-left {
  padding: 8px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
}
.orders-title {
  text-align: center;
  margin-top: 6px;
  padding-bottom: 12px;
}
.order-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 2px solid rgba(11, 11, 17, 0.12);
}
.order-images {
  width: 108px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-images img {
  width: 50px;
  height: 50px;
}
.order-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.order-status h6 img {
  width: 24px;
  height: 24px;
}

/* addressPopap */

.address_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.address-title {
  text-align: center;
  margin-top: 6px;
  padding-bottom: 28px;
}
.address-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px 16px;
  height: 56px;
  cursor: pointer;
  margin-bottom: 8px;
}

/* settingsPopap */

.settings_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.settings-title {
  text-align: center;
  margin-top: 6px;
}
.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 16px;
  height: 56px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  cursor: pointer;
}
.settings-deleteAccount {
  padding: 12px 0px;
  width: 100%;
  background: rgba(11, 11, 17, 0.04);
  border-radius: 16px;
}

/* addressSetPopap */

.addressSet_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.addressSet-title {
  text-align: center;
  margin-top: 6px;
}
.addressSet-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.addressSet-form-title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.addressSet-form-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.addressSet-form-inputs input {
  padding: 8px 16px;
  height: 56px;
  width: 160px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.addressSet-form-inputs p {
  padding: 8px 16px;
  min-height: 56px;
  width: 100%;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.addressSet-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.addressSet-delete {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.addressSet-save {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: #f83e33;
}

/* settingsChangeTelPopap */

.settingsChangeTel_container,
.settingsChangeName_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.settingsChangeTel_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.settingsChangeTel-title,
.settingsChangeName-title {
  text-align: center;
  margin-top: 6px;
}
.settingsChangeTel-input,
.settingsChangeName-input {
  padding: 8px 16px;
  height: 56px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.settingsChangeTel-input {
  margin-top: 70%;
}
.settingsChangeTel-next,
.settingsChangeName-send {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  background: #f83e33;
  color: white;
}
.settingsChangeTel-next {
  margin-top: auto;
}

/* settingsNoticePopap */

.settingsNotice_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.settingsNotice-title {
  text-align: center;
  margin-top: 6px;
  padding-bottom: 24px;
}
.notice-item {
  padding: 8px 16px;
  height: 56px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.swipe {
  width: 48px;
  height: 24px;
  border-radius: 12px;
  background: rgba(11, 11, 17, 0.06);
  padding: 3px;
  cursor: pointer;
}
.swipeCircle {
  width: 18px;
  height: 18px;
  border-radius: 12px;
  background: #fff;
  margin-left: 0px;
}

/* doOrderPopap */

.doOrder-popap__wrapper {
  max-width: 824px;
  background: #f5f5f5;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.doOrder_container {
  width: 100%;
  position: relative;
}
.doOrder-wrapper {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}
.doOrder-title {
  padding: 8px;
}
.doOrder-wrapper .popap__button {
  top: 8px;
  right: 8px;
}
.doOrder-carts {
  width: 380px;
  padding: 16px;
  background-color: white;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 536px;
}
.doOrder-carts h5 {
  padding-bottom: 12px;
}
.doOrder-carts-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px rgba(11, 11, 17, 0.12) solid;
}
.cartItem-image {
  border-radius: 16px;
}
.cart-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cart-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-title h6 {
  display: flex;
  justify-content: space-between;
}
.cart-title h6 img {
  align-self: flex-start;
  border-radius: 8px;
  background: rgba(11, 11, 17, 0.04);
  cursor: pointer;
}
.cart-count-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-count {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px;
}
.cart-count img {
  cursor: pointer;
}
.cart-price span {
  color: rgba(11, 11, 17, 0.2);
  font-size: 14px;
}
.doOrder-right-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 380px;
  padding: 16px;
  background-color: white;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 536px;
}
.types {
  display: flex;
  gap: 8px;
  align-items: center;
}
.types span {
  color: rgba(11, 11, 17, 0.2);
  cursor: pointer;
}
.types span:first-child {
  padding: 12px 46px;
  text-align: center;
}
.types span:last-child {
  padding: 12px 38px;
  text-align: center;
}
.types .form-type {
  color: #0b0b11;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
}
.pickup-choose,
.delivery-choose {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.delivery-choose {
  height: 260px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.choose-address,
.choose-time {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.active-address,
.active-time {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px 16px;
  cursor: pointer;
  align-items: center;
  position: relative;
  height: 56px;
}
.active-address img {
  transform: rotate(90deg);
}
.address-select-menu {
  padding: 8px;
  display: none;
  opacity: 0;
  flex-direction: column;
  gap: 8px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 330px;
  position: absolute;
  width: 348px;
  bottom: 20px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
.time-select-menu {
  padding: 8px;
  display: none;
  opacity: 0;
  flex-direction: column;
  gap: 8px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 264px;
  position: absolute;
  width: 348px;
  bottom: -40px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.address-select-item,
.time-select-item {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px 16px;
  cursor: pointer;
  align-items: center;
  height: 56px;
}
.select-item-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 2px solid rgba(11, 11, 17, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox-active {
  width: 14px;
  height: 14px;
  border-radius: 12px;
  background: #f83e33;
  display: none;
}
.address-select.open .address-select-menu,
.time-select.open .time-select-menu {
  opacity: 1;
  display: flex;
  pointer-events: all;
}
.summ {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  width: 348px;
  bottom: 40px;
  background: white;
}
.summ-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summ-bottom button {
  margin-top: 8px;
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: #f83e33;
}
.discount,
.cashBackLine,
.total,
.deliveryPrice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delivery {
  display: none;
}
.delivery input {
  width: 170px;
}

/* deliveryCheckPopap */

.deliveryCheck_container,
.pickupCheck_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.deliveryCheck-title {
  margin-top: 8px;
  text-align: center;
}
.deliveryCheck-title img {
  padding-top: 1px;
}
.deliveryCheck-info {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.deliveryCheck-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contactUs,
.repeatOrder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 88px;
  cursor: pointer;
}
.contactUs span,
.repeatOrder span {
  text-align: center;
  color: rgba(11, 11, 17, 0.2);
}
.contactUs img,
.repeatOrder img {
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 10px;
}
.deliveryCheck-carts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  height: 300px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pickupCheck-carts {
  height: 360px;
}
.deliveryCheck-carts img {
  border-radius: 14px;
}
.deliveryCheck-cart {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(11, 11, 17, 0.12);
}
.right-cart-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.right-cart-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.right-cart-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.right-cart-price span {
  color: rgba(11, 11, 17, 0.2);
}
.deliveryCheck-totalPrice {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.total-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.total-price h5 {
  font-size: 22px;
}
.deliveryCheck-totalPrice button {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: rgba(11, 11, 17, 0.04);
  color: #0b0b11;
}
.copy-noticeDeliveryCheck {
  position: absolute;
  top: 30px;
  padding: 8px;
  border-radius: 8px;
  background: #f83e33;
  color: white;
  right: -70px;
  font-weight: 300;
  line-height: 100%;
  font-size: 10px;
  display: none;
}
.copyStreet {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}

/* paymentPopap */

.payment_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.payment-title {
  text-align: center;
}
.payment-method {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 1px;
}
.payment-methodItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 103px;
  width: 103px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  padding: 8px;
  cursor: pointer;
}
.methodItem-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-methodItem img {
  width: 40px;
  height: 40px;
  align-self: flex-end;
}
.payment-methodItem-active {
  outline: 1px solid #f83e33;
  box-sizing: border-box;
}
.payment-method-add {
  height: 103px;
  width: 103px;
  border-radius: 16px;
  border: 1px dashed rgba(11, 11, 17, 0.2);
  border-width: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment-method-save {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: #f83e33;
}

/* newPaymentPopap */

.newPayment_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.newPayment-title {
  text-align: center;
  margin-top: 6px;
}
.newPayment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newPayment-inputs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
}
.cardNumber {
  width: 100%;
}
.cardDate,
.cardCvv {
  width: 160px;
}
.newPayment-input {
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(11, 11, 17, 0.04);
  height: 56px;
}
.newPayment-input::placeholder {
  color: rgba(11, 11, 17, 0.2);
}
.newPayment-checkbox {
  display: flex;
  gap: 16px;
}
.newPayment-checkbox input {
  display: none;
}
.newPayment-customCheckbox {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(11, 11, 17, 0.06);
}
.newPayment-customCheckbox img {
  width: 100%;
  height: 100%;
  background-color: #f83e33;
  border-radius: 8px;
  display: none;
}
.newPayment-payContainer {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.newPayment-payButton {
  padding: 12px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: #f83e33;
}
.newPayment-payContainer p {
  text-align: center;
  color: rgba(11, 11, 17, 0.2);
}
.newPayment-bottomInfo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.newPayment-bottomInfo p {
  font-size: 12px;
}

/* productItemPopap */

.salesList_popap_wrapper {
  max-width: 824px;
  padding: 24px;
}
.salesList_container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  gap: 24px;
}
.salesList-banner {
  width: 376px;
  background-image: url("/assets/images/salesBanner.png");
  border-radius: 16px;
  padding: 24px;
}
.salesList-banner h5 {
  color: white;
}
.salesList-banner label {
  color: rgba(255, 255, 255, 0.51);
}
.salesList-carts {
  width: 352px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  height: 190px;
  overflow: auto;
  scrollbar-width: none;
  margin-top: 15px;
}
.salesListRight h5 {
  margin-top: 6px;
  width: 100%;
  height: max-content;
}
.salesList-cart {
  padding: 8px;
  border-radius: 24px;
  border-radius: 24px;
  background: rgba(11, 11, 17, 0.04);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.02);
}
.salesCart-image {
  border-radius: 16px;
  position: relative;
}
.salesCart-image img:first-child {
  border-radius: 16px;
  width: 152px;
  height: 137px;
  object-fit: cover;
}
.salesCart-image img:last-child {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
}
.salesCart-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 4px 0px 4px;
}
.salesCart-infoBottom {
  display: flex;
  gap: 12px;
  align-items: center;
}
.salesCart-infoBottom label:first-child {
  color: rgba(11, 11, 17, 0.65);
}
.salesCart-infoBottom label:last-child {
  padding: 4px 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}
.salesCart-price {
  margin-top: 31px;
  width: 100%;
  text-align: center;
  height: 44px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f83e33;
}
.salesCart-price span {
  color: rgba(11, 11, 17, 0.2);
  font-size: 12px;
  text-decoration: line-through;
}
.salesListLeft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.salesListActiveImage {
  border-radius: 32px;
  position: relative;
}
.salesListActiveImage img:first-child {
  border-radius: 32px;
}
.salesListActiveImage img:last-child {
  position: absolute;
  top: 150px;
  right: -8px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.salesListRight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.salesListRightTitle h5:last-child {
  margin: 0;
  color: rgba(11, 11, 17, 0.2);
}
.salesListRightInfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.salesListRightInfo p,
.salesListRightInfo span {
  color: rgba(11, 11, 17, 0.2);
}
.salesListRightBJY {
  display: flex;
  gap: 24px;
  align-items: center;
}
.salesListRightBJY h6 {
  display: flex;
  flex-direction: column;
}
.salesListButton {
  margin-top: auto;
  padding: 4px 0px;
  width: 100%;
  border-radius: 16px;
  color: white;
  background: #f83e33;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.salesListButton span {
  color: rgba(255, 255, 255, 0.86);
}

.openMainCartPopap {
  display: none;
}

.main__cartActive-popap .doOrder-carts .doOrder-carts-item:nth-child(2) {
  padding-top: 0;
}

.card__button-maxCount {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  color: white;
  background: rgba(11, 11, 17, 0.2);
  top: 0;
  left: 0;
  border-radius: 16px;
}

.card__button-maxCount h6 {
  font-size: 38px;
  color: white;
  line-height: 100%;
}

.card__button-maxCount span {
  color: white;
  font-size: 25px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.promotion-card__top .card__button-maxCount h6 {
  font-size: 20px;
}

.promotion-card__top .card__button-maxCount span {
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .favorite-card__top .card__button-maxCount h6 {
    font-size: 20px;
  }
  .favorite-card__top .card__button-maxCount span {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 860px) {
  .salesList_container {
    flex-direction: column;
    overflow: auto;
    scrollbar-width: none;
    gap: 0;
    border-radius: 32px;
  }

  .salesList_popap_wrapper {
    width: 340px;
    padding: 0;
  }

  .salesList-banner {
    width: 100%;
    min-height: 524px;
    border-radius: 32px;
    padding: 0;
    background-image: url("/assets/images/salesListBannerMob.png");
  }

  .salesList-carts {
    width: 100%;
    align-items: center;
    height: max-content;
    padding: 0px;
    margin-top: 10px;
  }

  .salesListRight {
    background-color: white;
    border-radius: 32px;
    position: relative;
    top: -70px;
    padding: 16px;
  }

  .salesList-cart {
    width: 156px;
  }

  .salesList-banner h5,
  .salesList-banner label {
    display: none;
  }

  .salesList_container .popap__button {
    top: 16px;
    right: 16px;
  }

  .salesListActiveImage img:last-child {
    display: none;
  }

  .salesListLeft {
    gap: 0;
  }

  .salesListActiveImage img:first-child {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
    border-radius: 32px 32px 0px 0px;
  }

  .salesList {
    display: none;
  }

  .salesListRight {
    top: -15px;
  }

  .salesListButton {
    position: fixed;
    width: 308px;
    bottom: 16px;
  }

  .salesList_container .popap__button {
    position: fixed;
  }

  .salesListRight {
    padding: 16px 16px 80px 16px;
  }

  .doOrder-popap__wrapper {
    max-width: 360px;
    padding: 16px;
    background-color: white;
  }

  .doOrder-title {
    text-align: center;
  }

  .doOrder-wrapper {
    flex-direction: column;
    overflow: auto;
    border-radius: 0;
    height: 560px;
  }

  .doOrder-carts {
    width: 100%;
    padding: 0;
    border-radius: 0;
    height: 240px;
  }

  .doOrder-carts h5 {
    padding: 0;
    position: fixed;
    width: 328px;
    background-color: white;
    padding-bottom: 5px;
  }

  .doOrder-right-form {
    width: 100%;
    padding: 0;
  }

  .doOrder-carts .doOrder-carts-item:nth-child(2) {
    padding-top: 40px;
  }

  .types span:first-child {
    padding: 12px 41px;
  }

  .types span:last-child {
    padding: 12px 33px;
  }

  .summ {
    position: static;
    width: 100%;
  }

  .delivery-choose {
    height: max-content;
    overflow: visible;
  }

  .delivery input {
    width: 160px;
  }

  .address-select-menu,
  .time-select-menu {
    height: 200px;
    width: 100%;
    position: static;
  }

  .time-select-item {
    min-height: 56px;
  }
}

@keyframes swipeNoticeActiveCircle {
  from {
    margin-left: 0px;
  }

  to {
    margin-left: 24px;
  }
}

@keyframes swipeNoticeActive {
  from {
    background: rgba(11, 11, 17, 0.06);
  }

  to {
    background: #f83e33;
  }
}

@keyframes swipeNoticeNotActiveCircle {
  from {
    margin-left: 24px;
  }

  to {
    margin-left: 0px;
  }
}

@keyframes swipeNoticeNotActive {
  from {
    background: #f83e33;
  }

  to {
    background: rgba(11, 11, 17, 0.06);
  }
}

/* Media */
@media screen and (max-width: 1280px) {
  .main__cartActive {
    height: 590px;
    gap: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .profile-bonus h6 {
    width: 80px;
  }
}

@media (max-width: 905px) {
  .header--row{
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: end;
  }
  .main__cart {
    display: none;
  }
  .food-block__card {
    max-width: 194px;
    height: 339px;
  }
  .food-block__top img {
    height: 175px;
  }
  .food-block__content {
    justify-content: center;
  }
  .promotion__wrapper {
    max-width: 360px;
    padding: 0px;
  }
  .promotion__container {
    display: block;
    gap: 0px;
    height: 640px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .promotion__container::-webkit-scrollbar {
    display: none;
  }
  .promotion__container .popap__button {
    top: 16px;
    right: 16px;
    position: fixed;
  }
  .promotion__l {
    max-width: none;
    width: 100%;
    height: 524px;
    position: relative;
  }
  .promotion__l img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  .popap .promotion__info {
    background: linear-gradient(
      2deg,
      rgba(255, 255, 255, 0) 1.96%,
      rgba(0, 0, 0, 0.3) 97.9%
    );
    display: block;
    height: 40px;
    padding: 16px 16px 48px 16px;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
  }
  .popap .promotion__info h2 {
    display: none;
  }
  .popap .promotion__info p {
    display: none;
  }
  .promotion-r {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    padding: 16px;
    margin-top: -60px;
    background: #fff;
  }
  .promotion__list {
    height: auto;
    overflow-y: none;
  }
  .promotion__card {
    max-width: 156px;
    height: 304px;
  }
  .promotion-card__top img {
    height: 140px;
  }
  .food-block__top .card__button-maxCount h6 {
    font-size: 40px;
  }
  .food-block__top .card__button-maxCount span {
    font-size: 20px;
  }
  .favorite-card__top .card__button-maxCount h6 {
    font-size: 32px;
  }
  .favorite-card__top .card__button-maxCount span {
    font-size: 18px;
    text-align: center;
  }
  .food-block__content {
    gap: 5%;
    row-gap: 30px;
  }
}
@media (max-width: 905px) {
  .food-block__card {
    max-width: 45%;
    height: 500px;
  }
  .food-block__top img {
    height: 300px;
  }
  .openMainCartPopap {
    display: block;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    padding: 6px 16px 8px 14px;
    background-color: rgba(248, 62, 51, 1);
    cursor: pointer;
    width: 140px;
    height: 54px;
    border-radius: 56px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  }
  .openMainCartPopap img {
    height: 40px;
    object-fit: cover;
  }
}
@media (max-width: 800px) {
  .search {
    display: none;
  }
  .main__search {
    display: block;
    max-width: none;
  }
  .main__categories {
    margin-top: 16px;
  }
}
@media (max-width: 599px) {
  .food-block__desc{
    flex-direction: column;
    align-items: start;
  }
  .product_notify span{
    white-space: pre-wrap !important;
  }
  .container {
    padding: 0px;
  }
  .food-block__card {
    max-width: 48%;
    height: 400px;
  }
  .food-block__top {
    width: calc(100% + 20px);
    transform: translate(-10px, -10px);
  }
  .food-block__top img {
    height: 220px;
  }
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .footer__list {
    order: 2;
  }
  .profile-info {
    flex-direction: column;
    align-items: start;
  }
  .profile-orderStatus {
    width: 100%;
    order: -1;
  }

  .food-block__content {
    gap: 3%;
    row-gap: 30px;
    justify-content: space-between;
  }
}

@media (max-width: 500px) {
  .food-block__card {
    height: 370px;
  }

  .openMainCartPopap img {
    height: 60px;
    width: 60px;
  }
}

.card__button-active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f83e33;
  border-radius: 16px;
  background: #f83e33;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  justify-content: space-between;
  padding: 4px 8px;
  height: 44px;
  margin-top: auto;
}
.card__button-active span {
  color: white;
}
.card__button-active img {
  filter: invert(1);
}
.card__button-activeImage {
  position: relative;
}
.card__button-activeCount {
  content: "1";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  color: white;
  background: rgba(11, 11, 17, 0.2);
  top: 0;
  left: 0;
  border-radius: 16px;
}

.input-tel {
  position: relative;
}

.validInputTel {
  color: #f83e33;
  display: none;
}
.profileButton {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(11, 11, 17, 0.04);
  border-radius: 16px;
  width: 137px;
}

.profileButton img {
  height: 24px;
  width: 24px;
}

:root {
  --tone-day-000: #0b0b11;
  --tone-day-200: rgba(11, 11, 17, 0.95);
  --tone-day-300: rgba(11, 11, 17, 0.86);
  --tone-day-400: rgba(11, 11, 17, 0.76);
  --tone-day-500: rgba(11, 11, 17, 0.65);
  --tone-day-600: rgba(11, 11, 17, 0.2);
  --tone-day-700: rgba(11, 11, 17, 0.12);
  --tone-day-800: rgba(11, 11, 17, 0.06);
  --tone-day-900: rgba(11, 11, 17, 0.04);
  --tone-day-1000: #fff;
  --tone-night-1000: #0b0b11;
  --tone-night-900: rgba(255, 255, 255, 0.06);
  --tone-night-800: rgba(255, 255, 255, 0.14);
  --tone-night-700: rgba(255, 255, 255, 0.28);
  --tone-night-600: rgba(255, 255, 255, 0.51);
  --tone-night-500: rgba(255, 255, 255, 0.65);
  --tone-night-400: rgba(255, 255, 255, 0.76);
  --tone-night-300: rgba(255, 255, 255, 0.86);
  --tone-night-200: rgba(255, 255, 255, 0.95);
  --tone-night-000: #fff;
  --color-absolute-000: #0b0b11;
  --color-absolute-200: #17171d;
  --color-absolute-300: #2d2d33;
  --color-absolute-400: #45454a;
  --color-absolute-500: #606064;
  --color-absolute-600: #838386;
  --color-absolute-700: #bbbbbd;
  --color-absolute-800: #e4e4e5;
  --color-absolute-900: #f5f5f5;
  --color-absolute-1000: #fff;
  --color-brand-alert-error: #ff1d0e;
  --color-brand-alert-warning: #ffc000;
  --color-brand-alert-successful: #32c954;
  --color-brand-alert-focus: #0047ff;
  --color-brand-red-200: #920000;
  --color-brand-red-300: #b01616;
  --color-brand-red-400: #d81414;
  --color-brand-red-500: #f83e33;
  --color-brand-red-600: rgba(224, 44, 44, 0.7);
  --color-brand-red-700: rgba(224, 44, 44, 0.28);
  --color-brand-red-800: rgba(224, 44, 44, 0.11);
  --color-brand-red-900: rgba(224, 44, 44, 0.06);
}

/* Orders Popup */
.ordersPopup__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  margin-top: 30px;
}

.ordersPopup__item {
  width: 100%;
  height: 120px;
  border-bottom: 1px solid var(--tone-day-700);
  padding: 0px 0px 12px 0px;
  background: var(--tone-day-1000);
  display: flex;
}

.ordersPopup__item__images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  height: 100%;
  width: 40%;
}

.ordersPopup__item__image {
  border-radius: 12px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center center;
}

.ordersPopup__item__image_empty {
  border-radius: 12px;
  width: 50px;
  height: 50px;
  background: #0b0b110a;
}

.ordersPopup__item__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}

.ordersPopup__item__info__statusWrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order--status_img{
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.ordersPopup__item__info__status {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  font-family: var(--font-family);
}

.ordersPopup__item__info__date {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: var(--tone-day-500);
}

.ordersPopup__item__info__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ordersPopup__item__info__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.ordersPopupWrapper_container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Попап профиля */
.PopupWrapper_container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}

.profilePopupWrapper_nameWrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profilePopupWrapper_name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.profilePopupWrapper_tel {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--tone-day-000);
}

.PopupWrapper__redirects {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.PopupWrapper__redirect {
  border-radius: 16px;
  padding: 8px 16px 8px 8px;
  height: 56px;
  width: 100%;
  background-color: var(--tone-day-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s linear background-color;
}

.PopupWrapper__redirect * {
  transition: 0.3s linear all;
}

.PopupWrapper__redirect:hover {
  background-color: var(--tone-day-000);
}

.PopupWrapper__redirect:hover * {
  color: #fff;
  fill: #fff;
}

.PopupWrapper__redirect__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  transition: 0.3s linear color;
}

.PopupWrapper__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.PopupWrapper__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 4px 24px;
  height: 44px;
  min-height: 44px;
  background: var(--tone-day-900);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-000);
  cursor: pointer;
  transition: 0.3s linear all;
}

.PopupWrapper__button:hover {
  background: var(--tone-day-000);
  color: #fff;
}

.PopupWrapper__button--red {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 4px 24px;
  height: 44px;
  min-height: 44px;
  background: var(--color-brand-red-500);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s linear all;
  border: 1px solid transparent;
}

.PopupWrapper__button--red:hover {
  background: #fff;
  color: var(--color-brand-red-500);
  border: 1px solid var(--color-brand-red-500);
}

.PopupWrapper__button--disactive {
  opacity: 0.4;
  pointer-events: none;
}

/* Попап адреса */
.addressesPopupWrapper_container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.addressesPopupWrapper__items {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 10px;
  width: 100%;
}

.addressesPopupWrapper__item {
  border-radius: 16px;
  padding: 8px 16px 8px 8px;
  width: 100%;
  background: var(--tone-day-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--tone-day-000);
  transition: 0.3s linear all;
  cursor: pointer;
}

.addressesPopupWrapper__item path {
  transition: 0.3s linear fill;
}

.addressesPopupWrapper__item:hover {
  background: var(--tone-day-000);
  color: #fff;
}

.addressesPopupWrapper__item:hover path {
  fill: #fff;
}

.addressesPopupWrapper__item__info {
  display: flex;
  flex-direction: column;
  gap: 1px;

  @media (max-width: 992px) {
    max-width: 240px;
  }
}

.addressesPopupWrapper__item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
}

.addressesPopupWrapper__item__street {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  @media (max-width: 992px) {
    max-width: 240px;
  }
}

.addressesPopup--button {
  position: absolute;
  bottom: 0;
}

/* Попап предмета попапа адреса  */
.addressesItemPopupWrapper_container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}

.addressesItemPopupWrapper__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addressesItemPopupWrapper__addressWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;

  @media (max-width: 900px) {
    flex-direction: column;
    align-items: center;
  }
}

.addressesItemPopupWrapper__body__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.adressesItemPopupWrapper__body__inputs {
  display: grid;
  grid-template-columns: 48.5% 48.5%;
  gap: 7px;
}

.PopupWrapper__input--grid-full {
  grid-column: 1/3;
}

.PopupWrapper__input {
  background: var(--tone-day-900);
  height: 56px;
  width: 100%;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: #000;
  transition: 0.15s
}

.PopupWrapper__input::placeholder {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-600);
  transition: 0.3s linear color;
}

.PopupWrapper__input--warn::placeholder {
  color: var(--color-brand-red-500);
}

.addressesItemPopupWrapper__body__text {
  border-radius: 16px;
  padding: 8px;
  width: 100%;
  background: var(--tone-day-900);

  @media (max-width: 900px) {
    margin-bottom: 20px;
  }
}

.addressesItemPopupWrapper__body__text__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--tone-day-000);
}

/* Попап подтверждения попапа телефона попапа настроек */
.settingsTelephoneConfirmationPopup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.settingsTelephoneConfirmationPopup__input__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--tone-day-600);
  opacity: 1;
  transition: 0.3s linear opacity;
}

.settingsTelephoneConfirmationPopup__input__text--disactive {
  opacity: 0;
}

/* Попап уведомлений попапа настроек */
.settingsNotificationsPopupWrapper_container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.settingsNotificationsPopup__items {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 10px;
  width: 100%;
}

.settingsNotificationsPopup__item {
  border-radius: 16px;
  padding: 8px 16px 8px 8px;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--tone-day-900);
}

.settingsNotificationsPopup__item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  max-width: 240px;
}

/* Попап продукта */
.popap__wrapper--big {
  max-width: none;
  width: 70%;
  padding: 25px 40px;

  @media (max-width: 600px) {
    width: 98%;
    padding: 10px 15px;
  }
}

.popap__wrapper--bigger {
  max-width: none;
  width: 80%;
  padding: 25px 40px;

  @media (max-width: 600px) {
    width: 98%;
    padding: 10px 15px;
  }
}

.productPopup_container {
  width: 100%;
  display: flex;
  gap: 35px;
  height: 100%;

  @media (max-width: 900px) {
    flex-direction: column;
  }
}

.productPopup_container__images {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;

  @media (max-width: 900px) {
    width: 100%;
    height: auto;
  }
}

.productPopup_container__info {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 5px;

  @media (max-width: 900px) {
    width: 100%;
  }
}

.productPopup_container__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.productPopup_container__weigth {
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-600);
}

.productPopup_container__weigth_amount {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--tone-day-600);
  margin-top: 20px;

  @media (max-width: 900px) {
    font-size: 22px;
  }
}
.productPopup_container__comboproduct-products{
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0;
}
.comboproduct-item_container{
  display: flex;
  gap: 10px;
  align-items: center;
}

.comboproduct-item_container.isnt_stock {
  opacity: 0.6;
  pointer-events: none;
}
.comboproduct-item_inner_container{
  display: flex;
  flex-direction: column;
}
.comboproduct-isnt_stock-text{
  font-size: 12px;
}
.productPopup_container__weigthItems {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.productPopup_container__weigthItem {
  display: flex;
  flex-direction: column;
}

.productPopup_container__text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--tone-day-000);
  overflow-y: auto;
}

.productPopup_container__button:not(.productPopup_container__button--added) {
  position: relative;
  border-radius: 16px;
  padding: 4px 12px;
  width: 100%;
  bottom: 0;
  height: 44px;
  background: var(--color-brand-red-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s linear all;
  margin-top: 10px;

  @media (max-width: 900px) {
    margin-bottom: 15px;
    height: auto;
  }
}

.productPopup_container__button__price {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-1000);
}

.productPopup_container__button__toCart {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--tone-night-300);
}

.productPopup_container__button:not(.productPopup_container__button--added):hover {
  background: #fff;
  border: 1px solid var(--color-brand-red-500);
}

.productPopup_container__button:not(.productPopup_container__button--added):hover .productPopup_container__button__price,
.productPopup_container__button:not(.productPopup_container__button--added):hover .productPopup_container__button__toCart {
  color: #f55;
}

.productPopup_container__weigthItem__amount {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.productPopup_container__weigthItem__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--tone-day-600);

  @media (max-width: 900px) {
    font-size: 12px;
  }
}

.productPopup_container__images__swiper {
  width: 100%;
  height: 344px;
  overflow-x: hidden;

  @media (max-width: 900px) {
    height: auto;
    position: relative;
    z-index: 0;
  }
}

.productPopup_container__image {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  min-height: 100%;
}

#productPopup_container__images__swiper_wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}

.productPopup_container__images__arrow {
  position: absolute;
  top: 25%;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s linear all;
}

.productPopup_container__images__arrow.swiper-button-disabled {
  opacity: 0;
}

.productPopup_container__images__arrow:hover {
  scale: 1.1;
}

.productPopup_container__images-next {
  right: -20px;
}

.productPopup_container__images-prev {
  left: -20px;
  transform: rotate(180deg);
}

.productPopup__onBreakfast {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}

.productPopup__onBreakfast__caption {
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.productPopup__onBreakfast__items {
  display: flex;
  gap: 25px;
  width: 100%;
  overflow-x: auto;
}
#productPopup__onBreakfast__items .swiper-slide {
  width: auto !important;
}
#productPopup:not(.combo) .productPopup_container__comboproduct-products{
  display: none;
}
.productPopup__onBreakfast__item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.02);
  background: var(--tone-day-900);
  border-radius: 24px;
  padding: 8px;
  cursor: pointer;
  max-width: 150px;
}

.productPopup__onBreakfast__item__imgWrapper {
  width: 100%;
  position: relative;

  @media (max-width: 900px) {
    height: 20%;
  }
}

.productPopup__onBreakfast__item__img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  object-position: center center;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

.productPopup__onBreakfast__item__sale {
  border-radius: 8px;
  padding: 4px;
  width: 58px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-1000);
  background: var(--color-brand-red-500);
  position: absolute;
  top: 10px;
  left: 10px;
}

.productPopup__onBreakfast__item__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);

  @media (max-width: 900px) {
    font-size: 12px;
  }
}
/* /Попап продукта/ */

/* Попап баннера */
.bannerPopup_container__image {
  object-fit: contain;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.bannerPopup_container__images__swiperWrapper {
  height: 100%;
}

.bannerPopup_container__images__swiper {
  height: 100%;
}

.bannerPopup_container__images__swiper .swiper-slide {
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.bannerPopup_container__images__arrow {
  top: 40%;
}
/* /Попап баннера/ */

/* Попап "Адрес и оплата" */
.pickupPopap__wrapper {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.02);
  background: var(--color-absolute-900);
  border-radius: 32px;
  padding: 24px;
}

.pickupPopap__container {
  display: flex;
  width: 100%;
  gap: 15px;
  margin-top: 20px;
  height: 93%;
  position: relative;
}

.pickupPopap__container__item {
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.02);
  background: var(--tone-day-1000);
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;

  @media (max-width: 900px) {
    padding: 16px 0;
  }
}

.pickupPopap__container__item__second {
  justify-content: space-between;
}

.pickupPopap__container__item__caption {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.pickupPopap__items {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pickupPopap__item {
  border-bottom: 1px solid var(--tone-day-700);
  padding: 12px 0;
  background: var(--tone-day-1000);
  width: 100%;
  display: flex;
  gap: 10px;
}

.pickupPopap__item__img {
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
  width: 108px;
  height: 100%;
}

.pickupPopap__item__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.pickupPopap__item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.pickupPopap__item__weight {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: var(--tone-day-500);
}

.pickupPopap__item__info__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pickupPopap__item__close__button {
  padding: 4px;
  border-radius: 8px;
  background: rgba(11, 11, 17, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.pickupPopap__item__close__button img {
  width: 11px;
  height: 11px;
}

.pickupPopap__item__counter {
  background: var(--tone-day-900);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 16px;
  padding: 4px;
  width: 100px;
  height: 40px;
}

.pickupPopap__item__counter__count {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-000);

  @media (max-width: 900px) {
    font-size: 16px;
  }
}

.pickupPopap__item__priceWrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pickupPopap__item__discount {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.02em;
  text-decoration: line-through;
  text-align: right;
  color: var(--tone-day-600);
  white-space: nowrap;
}

.pickupPopap__item__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--tone-day-000);
  white-space: nowrap;
}

.pickupPopap__item__counter__item {
  cursor: pointer;
  transition: 0.3s linear all;
}

.pickupPopap__item__counter__item:hover {
  scale: 1.05;
}

.pickupPopap__container__item__tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pickupPopap__container__item__tab {
  cursor: pointer;
  border-radius: 16px;
  padding: 4px 12px;
  width: 50%;
  height: 44px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-600);
  transition: 0.3s linear all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pickupPopap__container__item__tab--active {
  background: var(--tone-day-900);
  color: var(--tone-day-000);
}

.pickupPopap__container__itemContainer__caption {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  margin-top: 30px;
}

.pickupPopap__container__item__address {
  margin-top: 10px;
  padding: 8px 20px;
}

.pickupPopap__container__item__select {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  background: var(--tone-day-1000);
  border-radius: 24px;
  width: 45%;
  max-height: 0;
  overflow-y: auto;
  height: 0;
  transition: 0.3s linear all;
  position: absolute;
  z-index: 2;
}

.pickupPopap__container__item__select__open {
  max-height: 350px;
  height: 350px;
  padding: 8px;
}

.popupPickupAdaptive__container__item__select {
  width: 90%;
}

.popupPickupAdaptive__container__item__select__open {
  max-height: 350px;
  height: 350px;
  padding: 8px;
}

.pickupPopap__container__item__select__time__open {
  max-height: 250px;
  height: 250px;
  padding: 8px;
  z-index: 1;
}

.popupPickupAdaptive__container__item__select__time {
  width: 90%;
}

.popupPickupAdaptive__container__item__select__time__open {
  max-height: 250px;
  height: 250px;
  padding: 8px;
  z-index: 1;
}

.pickupPopap__container__item__address__radio,
.pickupPopap__container__item__time__radio,
.popupPickupAdaptive__container__item__address__radio,
.popupPickupAdaptive__container__item__time__radio {
  border-radius: 12px;
  border: 2px solid var(--tone-day-800);
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: 0.3s linear all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addressesPopupWrapper__item:hover
  .pickupPopap__container__item__address__radio:not(
    .pickupPopap__container__item__address__radio__active
  ),
.addressesPopupWrapper__item:hover
  .pickupPopap__container__item__time__radio:not(
    .pickupPopap__container__item__time__radio__active
  ),
.addressesPopupWrapper__item:hover
  .popupPickupAdaptive__container__item__time__radio:not(
    .popupPickupAdaptive__container__item__time__radio__active
  ),
.addressesPopupWrapper__item:hover
  .popupPickupAdaptive__container__item__address__radio:not(
    .popupPickupAdaptive__container__item__address__radio__active
  ) {
  border: 2px solid #fff;
}

.pickupPopap__container__item__address__radio__active,
.pickupPopap__container__item__time__radio__active,
.popupPickupAdaptive__container__item__time__radio__active,
.popupPickupAdaptive__container__item__address__radio__active {
  border: 2px solid var(--color-brand-red-500);
}

.pickupPopap__container__item__address__radio__inner,
.pickupPopap__container__item__time__radio__inner,
.popupPickupAdaptive__container__item__address__radio__inner,
.popupPickupAdaptive__container__item__time__radio__inner {
  border-radius: 12px;
  width: 14px;
  height: 14px;
  background: var(--color-brand-red-500);
  opacity: 0;
  transition: 0.3s linear all;
}

.pickupPopap__container__item__address__radio__active
  .pickupPopap__container__item__address__radio__inner,
.pickupPopap__container__item__time__radio__active
  .pickupPopap__container__item__time__radio__inner,
.popupPickupAdaptive__container__item__time__radio__active
  .popupPickupAdaptive__container__item__time__radio__inner,
.popupPickupAdaptive__container__item__address__radio__active
  .popupPickupAdaptive__container__item__address__radio__inner {
  opacity: 1;
}

.popupPickupAdaptive__container__item__address__radio__active
  .pickupPopap__container__item__address__radio__inner {
  opacity: 1;
}

.addressesPopupWrapper__item__street
  .pickupPopap__container__itemContainer__caption__second {
  margin-top: 40px;

  @media (max-width: 900px) {
    margin-top: 20px;
  }
}

.pickupPopap__container__item__time {
  height: 56px;
  border-radius: 16px;
  padding: 8px 16px 8px 8px;
}

.pickupPopap__container__item__selectWrapper {
  width: 100%;
}

.container_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.pickupPopap__container__delivery{
  display: none;
}

.pickupPopap__container__itemContainer__subcaption {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  color: var(--tone-day-000);
}

.pickupPopap__container__itemContainer__skidka {
  margin-top: 50px;
}

.pickupPopap__container__itemContainer__subcaption__bold {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  margin-top: 3px;
}

.pickupPopap__container__itemContainer__subcaption__offer {
  width: 100%;
  min-height: 44px;
  border-radius: 16px;
  padding: 4px 12px;
  background: var(--color-brand-red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-1000);
  margin-top: 10px;
  transition: 0.3s linear all;
  border: 1px solid transparent;
  cursor: pointer;
}

.pickupPopap__container__itemContainer__subcaption__offer:hover {
  color: var(--color-brand-red-500);
  border-color: var(--color-brand-red-500);
  background-color: var(--tone-day-1000);
}

.pickupPopap__container__item__content {
  display: none;
}

.pickupPopap__container__item__content__open {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  justify-content: space-between;
}

.pickupPopap__container__item__tab__dostavka__title {
  margin-top: 30px;
}

/* /Попап "Адрес и оплата"/ */

/* Попап "Доставлено" */
.popap__dostavlenoCaptionWrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  justify-content: center;
}

.popap__dostavleno__button {
  top: 10px;
  right: 10px;
}

.popap__dostavleno__button__back {
  left: 10px;
  right: 0;
}

.dostavleno__container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.dostavleno__titleWrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.dostavleno__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--tone-day-000);
}

.dostavleno__copy {
  cursor: pointer;
  transition: 0.3s linear all;
}

.dostavleno__copy:hover {
  scale: 1.05;
}

.hidden {
  display: none;
}

.dostavleno__copy__success {
  width: 17px;
  height: 21px;
}

.dostavleno__itogoWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.dostavleno__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

.dostavleno__button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.dostavleno__button__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 4px;
  width: 44px;
  height: 44px;
  background: var(--tone-day-900);
  cursor: pointer;
  transition: 0.3s linear all;
}

.dostavleno__button__wrapper:hover {
  scale: 1.05;
}

.dostavleno__button__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--tone-day-600);
  white-space: wrap;
  width: 99%;
}

.dostavleno__items {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;

  @media (max-width: 900px) {
    max-height: 250px;
  }
}

.dostavleno__item {
  border-bottom: 1px solid var(--tone-day-700);
  padding: 0px 0px 12px 0px;
  width: 100%;
  min-height: 120px;
  background: var(--tone-day-1000);
  display: flex;
  gap: 15px;
  align-items: center;
}

.dostavleno__item__img {
  border-radius: 12px;
  width: 108px;
  height: 108px;
  object-fit: cover;
  object-position: center center;
}

.dostavleno__item__info {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.dostavleno__item__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dostavleno__item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.dostavleno__item__weight {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: var(--tone-day-500);
}

.dostavleno__item__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-end;
}

.dostavleno__item__amount {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--tone-day-600);
}

.dostavleno__item__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--tone-day-000);
}

.dostavleno__itogo {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--tone-day-000);
}

.dostavleno__finalPrice {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.pickupPopap__chooseFromSaved {
  width: auto;
}

/* /Попап "Доставлено"/ */

/* Адаптивный попап корзины */
.cartPopupAdaptive__container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.cartPopupAdaptive__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.cartPopupAdaptive__header__address {
  display: flex;
  flex-direction: column;
}

.cartPopupAdaptive__header__address__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.cartPopupAdaptive__header__address__desc {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  color: var(--tone-day-000);
}

.cartPopupAdaptive__itogo {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--tone-day-000);
  margin-top: 20px;
}

.cartPopupAdaptive__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
  text-align: center;
}

.cartPopupAdaptive__items {
  max-height: 300px;
  overflow-y: auto;
}
/* /Адаптивный попап корзины/ */

/* Адаптивный попап "Адрес и оплата" */
.popupPickupAdaptive__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.cartPopupAdaptive__offer {
  width: 100%;
  align-self: center;
}

.popupPickupAdaptive__container__item {
  width: 100%;
  justify-content: space-between;
}

.popupPickupAdaptive__container__itemContainer__caption {
  margin-top: 20px;
}
/* Адаптивный попап "Адрес и оплата" */

/* Попап "Выберите способ оплаты" */
.choicePaymentPopap__caption {
  text-align: center;
}

.choicePaymentPopap__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.choicePaymentPopap__items {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.choicePaymentPopap__items .l-m{
  text-align: center;
}

.choicePaymentPopap__items .headline-5{
  width: 100%;
  text-align: center;
}

.choicePaymentPopap__items .headline-6{
  width: 100%;
  text-align: center;
}

.PopupWrapper__other_pay{
  display: flex;
  width: 100%;
  flex-direction: column;
}

.choicePaymentPopap__item {
  cursor: pointer;
  border-radius: 16px;
  padding: 8px;
  width: 104px;
  height: 104px;
  background: var(--tone-day-900);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: 0.3s linear border-color;
}

.choicePaymentPopap__item:hover {
  border-color: var(--color-brand-red-500);
}

.choicePaymentPopap__item__caption {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  color: var(--tone-day-400);
}

.choicePaymentPopap__item__number {
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: var(--tone-day-000);
}

.choicePaymentPopap__item__logoWrapper {
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: var(--tone-day-1000);
  align-self: flex-end;
}

.choicePaymentPopap__item__logo {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center center;
}

.choicePaymentPopap__item__add {
  border: 1px dashed var(--tone-day-600);
  border-radius: 16px;
  padding: 8px;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s linear scale;
}

.choicePaymentPopap__item__add:hover {
  scale: 1.05;
}
/* /Попап "Выберите способ оплаты"/ */

/* Попап карты попапа "Выберите способ оплаты" */
.cardPopap__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cardPopap__inputs {
  display: grid;
  gap: 8px;
  grid-template-columns: 50% 50%;
  margin-top: 30px;
}

.cardPopap__saveCard {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.cardPopap__saveCard__agreeBlock {
  border-radius: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-brand-red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear background-color;
  cursor: pointer;
}

.cardPopap__saveCard__agreeBlock svg {
  opacity: 0;
  transition: 0.3s linear opacity;
}

.cardPopap__saveCard__agreeBlock__selected {
  background-color: var(--color-brand-red-500);
}

.cardPopap__saveCard__agreeBlock__selected svg {
  opacity: 1;
}

.cardPopap__saveCard__agreeBlock__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--tone-day-000);
}

.cardPopap__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}

.cardPopap__info__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--tone-day-600);
  transition: 0.3s linear all;
}

.cardPopap__info__text--disactive {
  opacity: 0;
}

.cardPopap__button {
  margin-top: 30px;
}

.cardPopap__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
}

.cardPopap__logoButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cardPopap__logo {
  width: 52px;
  height: 40px;
  object-fit: cover;
  object-position: center center;
}

.cardPopap__logoButton {
  transition: 0.3s linear scale;
}

.cardPopap__logoButton:hover {
  scale: 1.05;
}

.cardPopap__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  color: #000;
  margin-top: 20px;
}
/* /Попап карты попапа "Выберите способ оплаты"/ */

/* Другое */
.switcherWrapper {
  background: var(--tone-day-800);
  border-radius: 12px;
  padding: 5px;
  cursor: pointer;
  display: flex;
  width: 60px;
  min-width: 60px;
  position: relative;
  transition: all 0.3s linear;
}

.switcherWrapper.genderWrapper {
  width: 100%;
}

.settingsNotificationsPopup__item__title.settingsGenderPopup__item__title {
  max-width: 90px;
  width: 100%;
}

.genderWrapper {
  display: flex;
  justify-content: space-between;
}

.switcher {
  border-radius: 12px;
  width: 18px;
  height: 18px;
  background: var(--tone-day-1000);
  transition: all 0.3s linear;
}

.switcherWrapper--active .switcher {
  background: var(--color-brand-red-500);
  transform: translateX(22px);
}

.rtl .switcherWrapper--active .switcher {
  background: var(--color-brand-red-500);
  transform: translateX(-22px);
}

.food-block__card,
.favorite__card {
  cursor: pointer;
}

.justify-center {
  justify-content: center;
}

.productPopup__onBreakfast__swiper {
  overflow-x: hidden;
}

.productPopup__onBreakfast__swiperWrapper {
  position: relative;
}

.hidden {
  display: none;
}
/* /Другое/ */

/* Стили для rtl */

body.rtl {
  direction: rtl;
}

body.rtl .swiper-button-prev {
  left: -8px !important;
}

body.rtl .header {
  direction: rtl !important;
}

body.rtl .footer {
  direction: rtl !important;
}

body.rtl .main {
  direction: rtl !important;
}

body.rtl .main__cart {
  direction: rtl !important;
}

body.rtl .card__location .location__button img {
  transform: rotate(-180deg) !important;
}

body.rtl .food-block__top {
  transform: translate(10px, -10px) !important;
}

body.rtl .openMainCartPopap {
  left: auto !important;
  right: 24px !important;
}

body.rtl .popap__button {
  left: 0 !important;
  right: auto;
  rotate: 180deg;
}

body.rtl .popap__button.popap__button__back {
  right: 0 !important;
  left: auto;
}

body.rtl .PopupWrapper__redirect svg {
  transform: rotate(-180deg) !important;
}

body.rtl .language__item input {
  margin-right: auto;
  margin-left: 0;
}

body.rtl .addressesItemPopupWrapper__body__title svg {
  transform: rotate(-180deg) !important;
}

body.rtl .faq__toggle {
  transform: rotate(225deg);
}

body.rtl .faq--open .faq__toggle {
  transform: rotate(130deg);
}

body.rtl .promotionSwiper .swiper-wrapper {
  direction: rtl !important;
}

body.rtl .swiper-button-next {
  right: auto !important;
  left: 8px !important;
}

/* /Стили для rtl/ */

.main--orders_promo {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  position: relative;
}

.main--orders_promo .ordersPopup__item {
  padding: 15px;
  border: 0;
  width: 350px;
  background-color: #0b0b110a;
  height: auto;
  border-radius: 15px;
  min-width: 350px;
}

.main--promo_banner {
  min-width: 300px;
  padding: 15px;
  background-color: #fff5d0;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main--promo_banner--row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main--promo_banner--count {
  display: flex;
}

.main--promo_banner--count:first-child {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.02em;
}

.main--promo_banner--row:nth-child(2) {
  align-items: end;
}

.policy--wrapper{
  overflow: auto;
  margin-top: 30px;
}

.policy--wrapper ol, .policy--wrapper ul{
  padding-left: 20px;
}

#rules .PopupWrapper_container{
  justify-content: normal;
}

.error{
  transition: 0.3s;
  border: 1px solid var(--color-brand-alert-error) !important;
}

.success{
  transition: 0.3s;
  border: 1px solid var(--color-brand-alert-successful) !important;
  color: var(--color-brand-alert-successful)
}

.bitPopup--container{
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.bitPopup--container_title{
  color: #2b7898 !important;
  text-align: center;
}

#bit, #gpay, #applepay, #cashless{
  height: 50px;
  margin: auto;
  object-fit: contain;
}

#dostavlenoSamovivozPopap .popap__wrapper{
  justify-content: center;
}

#pickupPopap__container__item__tab__samovivoz__content .pickupPopap__container__delivery, #pickupPopap__container__item__tab__samovivoz__content .pickupPopap__container__delivery__realprice{
  display: none !important;
}

#popupPickupAdaptive__container__item__tab__samovivoz__content .pickupPopap__container__delivery, #popupPickupAdaptive__container__item__tab__samovivoz__content .pickupPopap__container__delivery__realprice{
  display: none !important;
}

#pickupPopap__container__item__tab__dostavka__content .pickupPopap__container__samovivoz{
  display: none !important;
}

#popupPickupAdaptive__container__item__tab__dostavka__content .pickupPopap__container__samovivoz{
  display: none !important;
}

#applepay{
  display: none;
}

body.ios #gpay{
  display: none;
}

body.ios #applepay{
  display: block !important;
}

#gpayPopup .bitPopup--container, #gpayPopup #gpayIframe, #applepayPopup .bitPopup--container, #applepayPopup #applepayIframe{
  height: 100%;
}

 #gpayPopup #gpayIframe, #applepayPopup #applepayIframe{
  transform: translateY(50px);
}

.productPopup--cart_button.productPopup--cart_button__mobile{
  display: none;
}

/* .Iframe--white_space1, .Iframe--white_space2{
  position: absolute;
  width: 100%;
  background-color: white;
  z-index: 1;
}

.Iframe--white_space2{
  height: 50%;
    top: 55%;
}

.Iframe--white_space1{
    height: 43%;
} */

@media (max-width: 900px) {
  .productPopup--close{
    position: sticky;
    margin-bottom: -100%;
    left: 100%; 
    background: white;
    box-shadow: 0 0 5px #dddddd;
  }

  .productPopup--cart_button.productPopup--cart_button__desktop{
    display: none;
  }

  .productPopup--cart_button.productPopup--cart_button__mobile{
    display: block;
    position: sticky !important;
    width: 100%;
    /* margin-top: -100%; */
    /* height: 0px; */
    z-index: 2;
    position: sticky;
    top: calc(100% - 60px);
  }

  #productPopup .PopupWrapper_container{
    margin-top: -68px;
  }

  #productPopup .popap__wrapper--big{
    padding-bottom: 0 !important;
  }

  .productPopup_container__info{
    padding-bottom: 80px;
  }

  .productPopup_container__info{
    height: auto;
  }
}

.custom-polylang-langswitcher {
  background: transparent;
  border: none;
  color: inherit;
  appearance: inherit;
  -webkit-appearance: inherit;
  -moz-appearance: inherit;
  cursor: pointer;
  outline: none;
  padding: 5px;
}

.custom-polylang-langswitcher option {
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

.custom-polylang-langswitcher option:hover,
.custom-polylang-langswitcher option:focus {
  background-color: #f0f0f0 !important;
}

.pickupPopap__container__cashback{
  display: none;
}

.cashback_on .pickupPopap__container__cashback{
  display: flex;
}
 
.cashback_on .pickupPopap__container__withoutcashback{
  display: none;
}

.cashback-quantitySwitcher--wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
}

#cardPopap.cardPopap_savedCard .cardPopap__saveCard{
  display: none;
}

.product_notify{
  display: flex;
    align-items: center;
    gap: 10px;
}

.product_notify span{
  white-space: nowrap;
  font-size: 12px;
}

.favorite__card .product_notify span{
  white-space: wrap !important;
}

.productPopup--link{
  font-size: 14px;
  color: var(--color-brand-red-500);
  text-decoration: underline;
}
.faq-main .faq__title {
	text-align: left
}
.faq__item .faq__answer {
	margin-top: 0px;
  padding: 0px 16px;
	height : 0px;
	overflow : hidden;
	transition : all .5s
}
.faq__item.faq--open .faq__answer {
  margin-top: 8px;
  padding: 16px;
	height : auto;
	overflow : auto;
}