@charset "UTF-8";
:root {
  --black: #1c1c11;
  --grey: #93949B;
  --placeholder: #969091;
  --bg-stack: #f5f5f5;
  --burgundy: #AD2950;
  --green: #03A050;
  --whatsapp: #29A71A;
  --telegram: #23B7EC;
  --phone: #FEFAFC;
  --border: #DFE2E8;
  --rise: #FCE7F3;
  --border-icon: #E5E7EB;
  --border-footer: #CFCFCF;
  --acpid: #749597;
  --thumb: #EFEFEF;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex: 0 0 auto;
  height: 50px;
  border-radius: 12px;
  white-space: nowrap;
}
.btn_primary {
  padding: 14px 16px;
  border: 1px solid var(--burgundy);
  background-color: var(--burgundy);
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  color: #fff;
}
.btn_primary:hover {
  background-color: #CB3562;
}
.btn_primary[disabled] {
  border: 1px solid #F6F6F6;
  background-color: #F6F6F6;
  color: var(--grey);
  pointer-events: none;
}
.btn_primary[disabled] path {
  stroke: var(--grey);
}
.btn_secondary {
  width: -moz-max-content;
  width: max-content;
  padding: 14px 16px;
  border: 1px solid var(--border-icon);
  background-color: #fff;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.btn_secondary:hover {
  border: 1px solid var(--black);
}
.btn_secondary[disabled] {
  border: 1px solid var(--bg-stack);
  background-color: var(--bg-stack);
  color: var(--grey);
}
.btn_secondary[disabled] path {
  stroke: var(--grey);
}
.btn_icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-icon);
}
.btn_icon-large {
  width: 75px;
}
.btn_circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.btn_circle-small {
  width: 20px;
  height: 20px;
}
.btn_circle-medium {
  width: 32px;
  height: 32px;
}
.btn_green {
  background-color: var(--green);
}
.btn_whatsapp {
  background-color: var(--whatsapp);
}
.btn_telegram {
  background-color: var(--telegram);
}
.btn_phone {
  background-color: var(--phone);
}
.btn_burger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  width: 18px;
  height: 18px;
}
.btn_burger-line {
  width: 16.5px;
  height: 2px;
  background-color: var(--black);
}
.btn_buy {
  padding: 0 24px;
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  border: 1px solid var(--rise);
  color: var(--burgundy);
}
.btn_buy:hover {
  border: 1px solid var(--burgundy);
}
.btn_buy-shop {
  display: none;
}
.btn_buy-active {
  content: "В корзине";
  border-color: var(--green);
  color: var(--green);
}
.btn_buy-active:hover {
  border: 1px solid var(--green);
}
.btn_buy-active .btn-by {
  display: none;
}
.btn_buy-active .btn-by-shop {
  display: block;
}
.btn_buy[disabled] {
  border: 1px solid var(--bg-stack);
  background-color: var(--bg-stack);
  color: var(--grey);
}
.btn_buy-small {
  display: none;
}
.btn_rating {
  background-color: #fff;
  border-color: #fff;
}
.btn_heart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
.btn_heart path {
  fill: #BECCD1;
}
.btn_heart-active path {
  fill: var(--burgundy);
}
.btn_margin {
  margin: 48px auto 0;
}
.btn_page {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  border-color: #fff;
}
.btn_page-active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

@media (max-width: 1023px) {
  .btn-by {
    width: 50px;
    padding: 0;
  }
  .btn-by-full {
    display: none;
  }
  .btn-by-small {
    display: flex;
  }
}
.check__input {
  display: none;
  width: 0;
  opacity: 0;
}
.check__input:checked ~ .check__label .check__check {
  border-color: var(--burgundy);
  background-color: var(--burgundy);
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.check__label {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.check__check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid var(--grey);
  border-radius: 8px;
}
.check__text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}

.radio__input[type=radio] {
  display: none;
  width: 0;
  opacity: 0;
}
.radio__input[type=radio]:checked ~ .radio__label .radio__label-check {
  background-color: var(--burgundy);
  outline: 2px solid var(--burgundy);
}
.radio__label {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: 8px;
  margin-right: 8px;
}
.radio__label-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  outline: 2px solid #93949B;
  outline-offset: 5px;
}
.radio__label-title {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.radio__label-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.input {
  width: 306px;
  padding: 14px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.input::-moz-placeholder {
  color: #93949B;
}
.input::placeholder {
  color: #93949B;
}

.textarea {
  width: 100%;
  height: 94px;
  padding: 16px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  resize: none;
}
.textarea::-moz-placeholder {
  color: #93949B;
}
.textarea::placeholder {
  color: #93949B;
}

.ial {
  position: relative;
}
.ial-error .ial__input {
  border: 1px solid #AD2950;
  background-color: rgba(173, 41, 80, 0.0705882353);
}
.ial-error .ial__error {
  display: block;
}
.ial__input {
  width: 100%;
  padding: 23px 24px 5px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.ial__input::-moz-placeholder {
  color: #93949B;
}
.ial__input::placeholder {
  color: #93949B;
}
.ial__input:focus ~ .ial__label {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.ial__input-show ~ .ial__show {
  background-image: url("../img/hide.png");
}
.ial__label {
  position: absolute;
  top: 16px;
  left: 24px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  transition: all 0.3s ease;
}
.ial__label-up {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.ial__error {
  display: none;
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--burgundy);
}
.ial__text {
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.ial__show {
  position: absolute;
  top: 13px;
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url("../img/show.png");
}
.ial__error {
  display: none;
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--burgundy);
}

.medium-hidden {
  display: flex;
}

.medium-visible {
  display: none;
}

.title {
  font: 500 42px/55px "PT Root UI", "sans-serif";
  color: var(--black);
}

.text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

@media (max-width: 424px) {
  .title {
    font: 500 32px/42px "PT Root UI", "sans-serif";
    color: var(--black);
  }
  .text {
    font: 400 14px/18px "PT Root UI", "sans-serif";
    color: var(--black);
  }
}
body {
  min-width: 390px;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

html {
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 30;
}

body {
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
  flex: 0 0 auto;
}

.city {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  white-space: nowrap;
}

.working {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  white-space: nowrap;
}
.working .working__time svg {
  transition: transform 0.3s ease;
}
.working-active .working__time svg {
  transform: scale(1, -1);
}
.working__time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
  cursor: pointer;
}
.working__time-text {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  color: var(--burgundy);
}

.choice {
  position: absolute;
  top: 55px;
  left: 0;
  height: 0;
  border-radius: 16px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px 10px 20px -5px rgba(18, 18, 23, 0.0392156863);
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}
.choice-active {
  height: 425px;
  overflow: visible;
  opacity: 1;
}
.choice__wrapper {
  width: 360px;
  padding: 24px;
}
.choice__title {
  margin-bottom: 24px;
  font: 500 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
}
.choice__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.choice__tab {
  flex: 1 0 calc(25% - 6px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  color: var(--black);
  cursor: pointer;
}
.choice__tab-active {
  border: 1px solid var(--burgundy);
  background-color: var(--burgundy);
  color: #fff;
}
.choice__days {
  font: 500 12px/16px "PT Root UI", "sans-serif";
}
.choice__number {
  font: 500 16px/20px "PT Root UI", "sans-serif";
}
.choice__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding: 13px 24px 13px 58px;
  border: 1px solid var(--grey);
  border-radius: 12px;
  background-image: url("../img/calendar.svg");
  background-position: center left 24px;
  background-repeat: no-repeat;
  font: 500 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.choice__select svg {
  transition: transform 0.3s ease;
}
.choice__select-active svg {
  transform: scale(1, -1);
}
.choice__options {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 0;
  padding: 0 24px;
  border-radius: 12px;
  box-shadow: 0px 3px 10px -5px rgba(18, 18, 23, 0.0705882353);
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: height 0.3s ease;
  z-index: 100;
}
.choice__options-active {
  height: 255px;
}
.choice__options::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.choice__options::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E6E9ED;
}
.choice__option {
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
}
.choice__option:last-child {
  border-bottom: none;
}
.choice__option-active {
  background-image: url("../img/check-i.svg");
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--burgundy);
}
.choice__time {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  margin-bottom: 24px;
}
.choice__time-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 205px;
  padding: 13px 24px;
  border: 1px solid var(--grey);
  border-radius: 12px;
  font: 500 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.choice__time-select svg {
  transition: transform 0.3s ease;
}
.choice__time-select-active svg {
  transform: scale(1, -1);
}
.choice__time-options {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 205px;
  height: 0;
  padding: 0 24px;
  border-radius: 12px;
  box-shadow: 0px 3px 10px -5px rgba(18, 18, 23, 0.0705882353);
  background-color: #fff;
  overflow-y: scroll;
  transition: height 0.3s ease;
  z-index: 100;
}
.choice__time-options-active {
  height: 255px;
}
.choice__time-options::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.choice__time-options::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E6E9ED;
}
.choice__time-option {
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
}
.choice__time-option:last-child {
  border-bottom: none;
}
.choice__local {
  width: 56px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: right;
}
.choice__checkrecipient {
  margin-bottom: 24px;
  padding: 3px 0;
}
.choice__btn {
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

#header-info {
  cursor: pointer;
}

.search {
  position: relative;
  width: 100%;
}
.search__input {
  width: 100%;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  padding: 14px 16px;
  padding-left: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-image: url("../img/search_bg.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
}
.search__input::-moz-placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  color: var(--placeholder);
}
.search__input::placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  color: var(--placeholder);
}
.search__clue {
  position: absolute;
  width: 100%;
  min-width: 421px;
  height: 0;
  border-radius: 12px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px 10px 20px -5px rgba(18, 18, 23, 0.0392156863);
  background-color: #fff;
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 1000;
}
.search__clue-active {
  height: 508px;
}
.search__clue-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
}
.search__clue-title {
  margin-bottom: 12px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.search__clue-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.search__clue-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.search__clue-item img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
}
.search__clue-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search__clue-subtitle {
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
}
.search__clue-subtext {
  font: 400 12px/14px "PT Root UI", "sans-serif";
  color: var(--black);
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(38, 38, 38, 0.5019607843);
  z-index: 1000;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-stack);
}

.modal-city-active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-city__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0px 8px 22px 0px rgba(38, 38, 38, 0.1019607843);
  background-color: #fff;
}
.modal-city__title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
}
.modal-city__input {
  padding: 14.5px 56px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background-image: url(../img/search_bg.svg);
  background-repeat: no-repeat;
  background-position: center left 24px;
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
}
.modal-city__input::-moz-placeholder {
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.modal-city__input::placeholder {
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.modal-city__list {
  display: grid;
  grid-template-columns: repeat(4, 161px);
  grid-template-rows: repeat(10, 1fr);
  grid-auto-flow: column;
  row-gap: 16px;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.modal-city__item {
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.modal-city__item-black {
  font: 500 18px/21px "PT Root UI", "sans-serif";
}
.modal-city .allbouquets {
  margin-top: 0;
}

.basket {
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
}
.basket-active {
  display: flex;
}
.basket__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 856px;
  width: 100%;
  margin: 112px 0;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 8px 22px 0px rgba(38, 38, 38, 0.1019607843);
  background-color: #fff;
}
.basket__title {
  font: 500 42px/54px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.basket__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.basket__content-item {
  display: flex;
  gap: 24px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #E3E6EC;
}
.basket__content-img {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
}
.basket__content-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.basket__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basket__content-title {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-delete {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #F5F5F5;
}
.basket__content-quantity {
  display: flex;
  gap: 4px;
}
.basket__content-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basket__content-choice {
  display: flex;
  gap: 5px;
}
.basket__content-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.basket__content-increase {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #F5F5F5;
}
.basket__content-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-price {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.basket__content-promo {
  display: flex;
  gap: 8px;
}
.basket__content-input {
  padding: 14px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-input::-moz-placeholder {
  color: #93949B;
}
.basket__content-input::placeholder {
  color: #93949B;
}
.basket__content-ok {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: #F5F5F5;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.basket__content-check {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 227px;
}
.basket__content-line {
  display: flex;
  justify-content: space-between;
}
.basket__content-point {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-point-bold {
  padding-top: 12px;
  font: 700 22px/28px "PT Root UI", "sans-serif";
}
.basket__content-meaning {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__content-meaning-bold {
  padding-top: 12px;
  font: 700 22px/28px "PT Root UI", "sans-serif";
}
.basket__content-bonus {
  color: var(--green);
}
.basket__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background-color: #F5F5F5;
}
.basket__footer-btns {
  display: flex;
  justify-content: space-between;
}
.basket__footer-nav {
  display: flex;
  gap: 10px;
}
.basket__footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 12px;
  background-color: #fff;
  transition: color 0.3s ease, border 0.3s ease;
}
.basket__footer-line {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
}
.basket__footer-vert {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.basket__footer-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  gap: 10px;
  width: 120px;
  padding: 6px 5px;
  border-radius: 16px;
  background-color: #fff;
}
.basket__footer-img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.basket__footer-subtitle {
  padding: 0 11px;
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
  white-space: wrap;
}
.basket__footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px 6px;
}
.basket__footer-price {
  font: 700 16px/20xp "PT Root UI", "sans-serif";
  color: var(--black);
}
.basket__footer-check {
  width: 24px;
  height: 24px;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
}
.basket__footer-input {
  display: none;
}
.basket__footer-input:checked ~ .basket__footer-label .basket__footer-check {
  border: 2px solid var(--burgundy);
  background-color: var(--burgundy);
  background-image: url("../img/check.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.basket__btn-nav-active {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

.header__top {
  position: relative;
  margin-top: 20px;
  padding: 13px 0;
  z-index: 50;
}
.header__top-full {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.header__top-small {
  display: none;
}
.header__top-back {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.header__top-back-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__left {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.header__left-item {
  position: relative;
}
.header__line {
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.header__bottom {
  position: relative;
  padding: 24px 0;
  z-index: 40;
}
.header__bottom-full {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__bottom-small {
  display: none;
}
.header__bottom-small .header__choice {
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
}
.header__bottom-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__bottom-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__bottom-title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.header__social {
  position: relative;
  display: none;
  z-index: 20;
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header__menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.header__menu-chevron {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__dropdawn {
  position: absolute;
  right: 0;
  top: 42px;
  height: 0;
  border-radius: 8px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px 10px 20px -5px rgba(18, 18, 23, 0.0392156863);
  background-color: #fff;
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 100;
}
.header__dropdawn-active {
  height: 200px;
}
.header__dropdawn-list {
  padding: 0 16px;
}
.header__dropdawn-item {
  width: 175px;
  padding: 14px 8px;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
}
.header__dropdawn-item:last-child {
  border-bottom: none;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.tel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  background-color: #fff;
  cursor: pointer;
}
.tel__uptext {
  font: 400 13px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
  margin-bottom: 3px;
}
.tel__content {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 0.5px dashed var(--grey);
}
.tel__number {
  font: 700 20px/26px "PT Root UI", "sans-serif";
  color: var(--black);
}
.tel__wrapper {
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 0;
  padding: 0 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px 10px 20px -5px rgba(18, 18, 23, 0.0392156863);
  background-color: #fff;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}
.tel__wrapper-active {
  height: 218px;
  padding: 24px;
}
.tel__wrapper .tel__icon {
  width: 30px;
  height: 30px;
}
.tel__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  padding: 7px 16px;
  border-radius: 16px;
  background-color: #F5F5F5;
}
.tel__item-title {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.tel__item-text {
  font: 500 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
}

.stack {
  margin-bottom: 90px;
  z-index: 20;
}
.stack__wrapper {
  margin-top: 48px;
}
.stack__content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
.stack__title {
  margin-bottom: 32px;
}
.stack__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 11px 24px;
  border-radius: 16px;
  background-color: var(--bg-stack);
  text-align: center;
}
.stack__item-big {
  grid-column: span 3;
  grid-row: span 2;
  justify-content: end;
  align-items: flex-start;
  padding: 32px;
  background-image: url("../img/stack.png");
  background-position: right;
  background-repeat: no-repeat;
}
.stack__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-top: 8px;
}
.stack__item-img {
  width: 80px;
  height: 80px;
}
.stack__info-title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 24px;
  text-align: left;
}
.stack__info-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stack__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 150px;
  margin-right: 10px;
}

.favorites {
  margin-bottom: 90px;
}
.favorites__header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.favorites__info-title {
  margin-bottom: 16px;
}
.favorites__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.favorites__content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product {
  position: relative;
}
.product__link {
  display: block;
}
.product__img img {
  border-radius: 16px;
}
.product__content {
  margin-top: 16px;
}
.product__title {
  display: inline-block;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 10px;
}
.product__info {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
}
.product__info-icon {
  margin-right: 9px;
}
.product__text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.product__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.product__price {
  font: 700 20px/26px "PT Root UI", "sans-serif";
  color: var(--black);
}
.product__sale-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.product__sale-oldprice {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
  text-decoration: line-through;
}
.product__sale-discount {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
  padding: 2px 4px;
  border-radius: 8px;
  background-color: var(--rise);
  color: var(--burgundy);
}
.product__sale-prace {
  color: var(--burgundy);
}

.products {
  margin-bottom: 90px;
}
.products__header {
  margin-bottom: 32px;
}
.products__header-title {
  margin-bottom: 16px;
}
.products__header-text {
  margin-bottom: 24px;
}
.products__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.products__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.products__pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.products__pages-page {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  border-color: #fff;
}
.products__pages-prev {
  margin-right: 24px;
  border-color: #fff;
}
.products__pages-next {
  margin-left: 24px;
  border-color: #fff;
}
.products__pages-active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.products__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.products__container {
  position: relative;
  display: flex;
  flex: 1 0 auto;
}
.products__container-active .icon-chevrone {
  transform: scale(1, -1);
}
.products__container-small {
  display: none;
}
.products__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  flex: 1 0 auto;
  gap: 24px;
  padding: 14px 16px;
  border: 1px solid var(--bg-stack);
  border-radius: 12px;
  background-color: var(--bg-stack);
  text-wrap: nowrap;
  cursor: pointer;
}
.products__filter-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.products__filter-reset {
  background-color: #fff;
}
.products__filter-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 500 12px/16px "PT Root UI", "sans-serif";
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.products__filter-number-active {
  flex: 0 0 auto;
  background-color: var(--burgundy);
}
.products__filter-text {
  width: 127px;
}
.products__btn {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  color: var(--black);
}
.products__btn:hover {
  border: 1px solid #1C1C1D;
}
.products__btn[disabled] {
  color: var(--grey);
  pointer-events: none;
}

.advantages {
  margin-bottom: 90px;
}
.advantages__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.advantages__content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.advantages__item {
  padding: 24px;
  text-align: center;
}
.advantages__item-title {
  font: 700 18px/23px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 16px;
}
.advantages__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.rating {
  padding: 90px 0;
  background-color: var(--bg-stack);
}
.rating__header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.rating__info-title {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  margin-bottom: 16px;
}
.rating__info-star {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-left: 10px;
  margin-right: 4px;
}
.rating__info-rating {
  color: var(--burgundy);
}
.rating__map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.rating__map-map {
  border-bottom: 0.7px dashed var(--black);
  font: 500 24px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.rating__map-grade {
  font: 500 24px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.rating__map-review {
  font: 500 24px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.rating__map-span {
  font: 400 16px/19px "PT Root UI", "sans-serif";
  color: var(--black);
}
.rating__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.rating__arrow {
  border-color: #fff;
  background-color: #fff;
}
.rating__content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.rating__pictures {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.rating__pictures-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
  margin-top: 8px;
  color: var(--black);
}
.rating__review {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
}
.rating__review-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.rating__review-date {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
}

.features {
  padding: 90px 0;
}
.features__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.features__item {
  flex: 1 0 50%;
  min-height: 323px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(179.32deg, #F5EFEE 0.47%, #E9E1DE 99.31%);
}
.features__item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  height: 100%;
  padding: 48px;
}
.features__item-icon {
  width: 46px;
  height: 54px;
  margin-bottom: 16px;
}
.features__item-title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 24px;
}
.features__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 24px;
}
.features__bouquet {
  background-color: var(--acpid);
  background-image: url("../img/row1.png");
  background-position: right;
  background-repeat: no-repeat;
}
.features__bouquet-title, .features__bouquet-text {
  color: #fff;
}
.features__shops {
  background-image: url("../img/row2.png");
  background-position: right;
  background-repeat: no-repeat;
}

.advice {
  margin-bottom: 90px;
}
.advice__header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.advice__info-title {
  margin-bottom: 32px;
}
.advice__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.advice__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.advice__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  height: 400px;
  border-radius: 16px;
  padding: 40px 32px 0;
  overflow: hidden;
}
.advice__item-1 {
  background-color: #FFE7DF;
  transform: rotate(2.39deg);
}
.advice__item-1 img {
  transform: rotate(-2.39deg);
}
.advice__item-2 {
  background-color: #FFF0E8;
  transform: rotate(-1.66deg);
}
.advice__item-2 img {
  transform: rotate(1.66deg);
}
.advice__item-3 {
  background-color: #EEF9EE;
  transform: rotate(2.39deg);
}
.advice__item-3 img {
  position: relative;
  top: -20px;
  transform: rotate(-2.39deg) scale(1.4);
}
.advice__item-4 {
  background-color: #FFEFF6;
  transform: rotate(-1.66deg);
}
.advice__item-4 img {
  transform: rotate(1.66deg);
}
.advice__item-title {
  font: 700 20px/26px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 8px;
}
.advice__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 16px;
}
.advice__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -32px;
  margin-right: -32px;
}
.advice__indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.advice__indicator-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--burgundy);
  opacity: 0.3;
  cursor: pointer;
}
.advice__indicator-active {
  opacity: 1;
}

.footer {
  margin-top: auto;
  background-color: var(--bg-stack);
  overflow-x: hidden;
}
.footer__top {
  position: relative;
  padding-top: 48px;
  z-index: 20;
}
.footer__bottom {
  position: relative;
  padding-top: 32px;
  z-index: 20;
}
.footer__bottom-rights {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.footer__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-footer);
}
.footer__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__item-title {
  font: 700 18px/23px "PT Root UI", "sans-serif";
  color: var(--black);
  margin-bottom: 24px;
}
.footer__item-svg {
  display: none;
}
.footer__list {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 16px;
  min-width: 195px;
}
.footer__list-link {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.footer__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 32px;
}
.footer__socials {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__social-icon {
  margin-top: 5px;
}
.footer__social-mess {
  width: 30px;
  height: 30px;
}
.footer__social-mess svg {
  width: 14px;
  height: 14px;
}
.footer__social-title {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.footer__social-text {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
}

.seller {
  margin-top: 44px;
}
.seller__title {
  margin-bottom: 12px;
}
.seller__btn {
  padding: 14px 35px;
}

.decorheader {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 375px;
  z-index: 10;
}
.decorheader img {
  width: 100%;
}
.decorheader__small {
  display: none;
}

.decorfooter {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.decorfooter__left {
  height: 375px;
}
.decorfooter__left-1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.decorfooter__left-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.decorfooter__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 280px;
  transform: translateX(-50%);
}
.decorfooter__right {
  height: 375px;
}
.decorfooter__right-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.decorfooter__right-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.decorfooter__small {
  display: none;
}

.links {
  position: relative;
  margin-bottom: 48px;
  z-index: 20;
}
.links__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 74px;
}
.links__link {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.links__slash {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.links__text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.links__small {
  display: none;
}

.addresses {
  position: relative;
  margin-bottom: 100px;
  z-index: 20;
}
.addresses__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.addresses__input {
  width: 100%;
  padding: 14.5px 58px;
  border: 1px solid #E3E6EC;
  border-radius: 12px;
  background-image: url("../img/search_bg.svg");
  background-repeat: no-repeat;
  background-position: center left 28px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.addresses__input::-moz-placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.addresses__input::placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.addresses__content {
  display: flex;
  height: 800px;
  border-radius: 24px;
  border: 1px solid #E3E6EC;
  overflow: hidden;
}
.addresses__content-list {
  width: 416px;
  overflow-y: scroll;
}
.addresses__content-list::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.addresses__content-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E6E9ED;
}
.addresses__content-map {
  flex: 1 0 auto;
}
.addresses__content-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 10px;
}
.addresses__content-item:nth-child(2n) {
  background-color: #F9FAFB;
}
.addresses__content-title {
  font: 500 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.addresses__content-delivery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  row-gap: 10px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 100%;
}
.addresses__content-paragraph {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.addresses__content-subtitle {
  font: 500 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.addresses__content-subtext {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.addresses__tabs {
  display: none;
  align-items: center;
  border-radius: 12px;
  background-color: #F5F5F5;
}
.addresses__tabs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 50%;
  padding: 14.5px;
  border: 1px solid #F5F5F5;
  border-radius: 12px;
  transition: border 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.addresses__tabs-btn path {
  transition: stroke 0.3s ease;
}
.addresses__tabs-btn-active {
  border: 1px solid var(--burgundy);
  background-color: #fff;
  color: var(--burgundy);
}
.addresses__tabs-btn-active path {
  stroke: var(--burgundy);
}

.ymaps-2-1-79-balloon {
  border-radius: 16px;
  overflow: hidden;
}

.ymaps-2-1-79-balloon__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  opacity: 1;
  border-radius: 50%;
}

.menu {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 100000;
}
.menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
}
.menu__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu__item-text {
  font: 400 11px/11px "PT Root UI", "sans-serif";
}
.menu__item-textbur {
  color: var(--burgundy);
}
.menu__item-active p {
  color: var(--burgundy);
}
.menu__item-active path {
  stroke: var(--burgundy);
}
.menu__item-heart path {
  fill: var(--burgundy);
}
.menu__item-icon {
  position: relative;
}
.menu__item-num {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: var(--burgundy);
  font: 400 11px/11px "PT Root UI", "sans-serif";
  color: #fff;
}

.card {
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
}
.card-active {
  display: flex;
}
.card .product__price {
  font-size: 32px;
  line-height: 42px;
}
.card .product__sale-oldprice {
  font-size: 16px;
  line-height: 20px;
}
.card .product__sale-discount {
  position: relative;
  padding-left: 8px;
  font-size: 13px;
  line-height: 17px;
  background-color: var(--burgundy);
  color: #fff;
}
.card .product__sale-discount::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  height: 17px;
  width: 5px;
  background-color: #fff;
  transform: rotate(45deg);
}
.card .product__sale-discount::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 17px;
  width: 5px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.card__wrapper {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 24px;
  box-shadow: 0px 8px 22px 0px rgba(38, 38, 38, 0.1019607843);
  background-color: #fff;
  overflow: hidden;
}
.card__content {
  display: flex;
}
.card__media {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  width: 636px;
}
.card__media-big {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__media-top {
  border-bottom-right-radius: 24px;
  max-width: 636px;
  width: 100%;
  max-height: 636px;
  height: 100%;
  overflow: hidden;
}
.card__media-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.card__media-small {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.card__media-small-active {
  outline: 1px solid #AD2950;
}
.card__media-sm {
  height: 60px;
  position: relative;
  cursor: pointer;
}
.card__media-sm svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__packages {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 48px;
}
.card__packages-active {
  display: grid;
}
.card__packages-title {
  grid-column: span 4;
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__packages-package {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.card__packages-package-active {
  outline: 1px solid var(--burgundy);
}
.card__info {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 48px 48px 24px;
}
.card__info-title {
  font: 700 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__info-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__change {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.card__change-active {
  display: flex;
}
.card__change-head {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 4px;
}
.card__change-title {
  font: 700 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__change-close {
  border-bottom: 0.5px dashed #1C1C1D;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__change-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card__change-line {
  display: flex;
  justify-content: space-between;
}
.card__change-text {
  max-width: 225px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__change-input {
  display: block;
  width: 80px;
  height: 40px;
  padding-left: 35px;
  border: 1px solid var(--grey);
  border-radius: 12px;
  font: 400 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__title {
  font: 500 24px/32px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__basket {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card__price-text {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__price-change {
  border-bottom: 0.5px dashed #1C1C1D;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__price-change-active {
  display: none;
}
.card__choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 24px;
  border-radius: 12px;
  background-color: #F5F5F5;
}
.card__choice-btn {
  display: contents;
}
.card__choice-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card__choice-text {
  font: 400 20px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__choice-subtext {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.card__btns {
  display: flex;
  gap: 16px;
}
.card__btns-basket {
  flex: 2 0 auto;
  border: 1px solid var(--burgundy);
  transition: all 0.3s ease;
}
.card__btns-basket-active {
  border: 1px solid var(--green);
  background-color: #fff;
  color: var(--green);
}
.card__btns-basket-active::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/check-green.svg");
  background-repeat: no-repeat;
  background-position: center left;
}
.card__btns-basket-active:hover {
  border: 1px solid var(--green);
  background-color: #fff;
  color: var(--green);
}
.card__btns-heart-active path {
  fill: var(--burgundy);
}
.card__delivery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}
.card__delivery-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 16px/21px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__delivery-spangreen {
  color: var(--green);
}
.card__size {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}
.card__compound {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}
.card__about-title {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__about-item {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #E5E7EB;
}
.card__about-item:last-child {
  border-bottom: none;
}
.card__about-parameter {
  flex: 0 0 100px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.card__about-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  background-color: #F5F5F5;
}
.card__review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card__review-title {
  font: 500 32px/41px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__review-right {
  display: flex;
  align-items: center;
  align-items: baseline;
  gap: 12px;
}
.card__review-grade {
  font: 500 42px/55px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__review-name {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__review-dot {
  color: var(--grey);
}
.card__review-line {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: scroll;
}
.card__review-small {
  width: 101px;
  height: 101px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__review-image {
  position: relative;
  flex: 0 0 101px;
}
.card__review-image-more:after {
  content: "Ещё +5";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: rgba(28, 28, 29, 0.5019607843);
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: #fff;
}
.card__review-card {
  display: grid;
  grid-template-columns: 368px 368px;
  gap: 24px;
  justify-content: center;
}
.card__review-big {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  padding-bottom: 32px;
  border-radius: 16px;
  background-color: #fff;
}
.card__review-comparisons {
  display: flex;
  gap: 8px;
}
.card__review-comparison {
  flex: 0 0 calc(50% - 4px);
}
.card__review-img {
  width: 100%;
  height: 164px;
  margin-bottom: 6px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__review-subtext {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--grey);
  text-align: center;
}
.card__review-contant {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card__review-head {
  display: flex;
  justify-content: space-between;
}
.card__review-name {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__review-when {
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.card__review-stars svg {
  margin-left: -2px;
}
.card__review-text {
  max-height: 54px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  overflow: hidden;
}
.card__review-more {
  position: absolute;
  display: none;
  bottom: 14px;
  left: 24px;
  font: 700 14px/18px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.card__review-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__rose {
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 368px;
}
.card__rose-active {
  display: flex;
}
.card__rose-title {
  font: 700 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__rose-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.card__rose-countries {
  display: flex;
  gap: 10px;
}
.card__rose-country {
  padding: 14px 24px;
  border: 1px solid var(--border-icon);
  border-radius: 12px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.card__rose-country-active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.card__rose-colors {
  display: flex;
  gap: 8px;
}
.card__rose-color {
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  background-color: #fff;
  outline: 0px solid var(--border-icon);
  outline-offset: 4px;
  cursor: pointer;
}
.card__rose-color-active {
  background-image: url(../img/check-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  outline-width: 1px;
}
.card__rose-color-red {
  background-color: #EC3333;
  outline-color: #EC3333;
}
.card__rose-color-white {
  border: 1px solid var(--border-icon);
}
.card__rose-color-creme {
  background-color: #F2DDC6;
  outline-color: #F2DDC6;
}
.card__rose-color-rose {
  background-color: #FFA9C3;
  outline-color: #FFA9C3;
}
.card__rose-color-yellow {
  background-color: #FFC90A;
  outline-color: #FFC90A;
}
.card__rose-color-burdo {
  background-color: #DC2D63;
  outline-color: #DC2D63;
}
.card__rose-sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.card__rose-size {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 11px;
  border: 1px solid var(--border-icon);
  border-radius: 12px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.card__rose-size-active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.filters__item {
  cursor: pointer;
}

.popup {
  position: absolute;
  right: 0;
  left: 0;
  display: none;
  max-width: 1298px;
  width: 100%;
  margin: 175px auto 0;
  z-index: 10000;
}
.popup-active {
  display: block;
}
.popup__header {
  display: none;
  justify-content: space-between;
  padding: 16px;
  background-color: #fff;
}
.popup__name {
  display: none;
  background-color: #fff;
  border-bottom: 1px solid var(--border-icon);
}
.popup__name-title {
  padding: 20px;
  font: 500 18px/22px "PT Root UI", "sans-serif";
  color: var(--black);
}
.popup__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-stack);
}
.popup__wrapper {
  display: flex;
  min-height: 760px;
  border-radius: 16px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.08), 0px 10px 20px -5px rgba(18, 18, 23, 0.08);
  background-color: #fff;
  overflow: hidden;
}
.popup__list {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
}
.popup__list:first-child {
  border-right: 1px solid #ECEFF1;
}
.popup__list-item {
  min-width: 170px;
  padding: 14px 16px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  font: 500 18px/23px "PT Root UI", "sans-serif";
  color: var(--black);
  white-space: nowrap;
}
.popup__list-item-active {
  margin-right: -32px;
  background-color: var(--bg-stack);
  background-image: url("../img/arroy_right.png");
  background-position: center right 32px;
  background-repeat: no-repeat;
}
.popup__list-link {
  padding: 14px 16px;
  font: 500 18px/23px "PT Root UI", "sans-serif";
  color: var(--black);
  white-space: nowrap;
  cursor: pointer;
}

.contants {
  width: 100%;
}

.contant {
  width: 100%;
  height: 100%;
  padding: 48px 32px;
  background-color: var(--bg-stack);
}
.contant__list {
  display: none;
  grid-template-rows: repeat(14, auto);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  justify-content: space-between;
  row-gap: 24px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin: 22px 0;
}
.contant__list-link {
  font: 400 18px/22px "PT Root UI", "sans-serif";
  color: var(--black);
  white-space: nowrap;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 100px;
}
.about__title {
  text-align: center;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__item-title {
  margin-bottom: 24px;
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.about__item-text {
  max-width: 526px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.about__item-text:last-child {
  margin-bottom: 0;
}
.about__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background-color: #F5F5F5;
}
.about__card-img {
  flex: 0 0 auto;
}
.about__card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__card-title {
  font: 700 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.about__card-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  border: 1px solid #DADADA;
  border-radius: 16px;
}
.contacts__item-big {
  grid-column: span 2;
}
.contacts__item-title {
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-mail {
  margin-top: auto;
  font: 700 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__item-line {
  display: flex;
  justify-content: space-between;
}
.contacts__item-link {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-subtitle {
  font: 500 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-subtext {
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: var(--black);
}
.contacts__item-handvisits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__item-shop {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.contacts__item-item {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.agreement__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 856px;
  margin: 0 auto 100px;
}
.agreement__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agreement__item-title {
  margin-bottom: 8px;
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.agreement__item-subtitle {
  font: 700 22px/32px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.agreement__title {
  margin-bottom: 16px;
  text-align: center;
}
.agreement__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agreement__text-p {
  font: 400 16px/22px "PT Root UI", "sans-serif";
  color: var(--black);
}
.agreement__text-p a {
  color: var(--black);
  text-decoration: underline;
}

.corporate {
  margin-bottom: 100px;
}
.corporate__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.corporate__title {
  text-align: center;
}
.corporate__card {
  display: flex;
  justify-content: space-between;
  border-radius: 24px;
  overflow: hidden;
}
.corporate__card-first {
  padding: 60px 110px;
  background-color: #F5F5F5;
  background-image: url("../img/corporate1.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 60% 100%;
}
.corporate__card-first .corporate__item {
  max-width: 416px;
}
.corporate__card-second {
  gap: 32px;
  padding: 48px 0;
}
.corporate__card-third {
  padding: 60px 110px;
  background-color: #F5F5F5;
  background-image: url("../img/corporate2.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 44% 100%;
}
.corporate__card-fourth {
  display: flex;
  justify-content: center;
  padding: 131px;
  background-color: #F5F5F5;
  background-image: url("../img/corporate3.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  text-align: center;
}
.corporate__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 calc(50% - 12px);
}
.corporate__item-title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.corporate__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.corporate__item-ol {
  padding-left: 20px;
}
.corporate__item-ul li {
  list-style: disc;
}
.corporate__item-li {
  margin-bottom: 16px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.corporate__item-h {
  margin-bottom: 16px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.bonus {
  margin-bottom: 100px;
}
.bonus__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.bonus__title {
  margin-bottom: 16px;
}
.bonus__text {
  font: 400 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.bonus__content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.bonus__content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
  width: 306px;
  padding: 32px 24px;
  border-radius: 24px;
  background-color: #F5F5F5;
}
.bonus__content-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
}
.bonus__content-title {
  margin-bottom: 16px;
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.bonus__content-text {
  font: 400 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}

.dropdawn {
  position: absolute;
  top: 50px;
  left: -50%;
  min-width: 306px;
  height: 0;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.1019607843);
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}
.dropdawn-active {
  height: 484px;
  opacity: 1;
}
.dropdawn__header {
  display: flex;
  gap: 8px;
  padding: 13px 24px;
  border-bottom: 1px solid #E9EFF6;
}
.dropdawn__header-icon {
  flex: 0 0 24px;
  height: 24px;
  background: url("../img/search_bg.svg") center center no-repeat;
}
.dropdawn__header-input {
  width: 100%;
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.dropdawn__header-input::-moz-placeholder {
  font: 400 14px/22px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.dropdawn__header-input::placeholder {
  font: 400 14px/22px "PT Root UI", "sans-serif";
  color: var(--grey);
}
.dropdawn__header-btn {
  flex: 0 0 24px;
  height: 24px;
  background: url("../img/close.svg") center center no-repeat;
  cursor: pointer;
}
.dropdawn__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.dropdawn__title-main {
  padding: 32px 24px 24px;
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.dropdawn__content {
  max-height: 350px;
  overflow-y: scroll;
}
.dropdawn__content::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.dropdawn__content::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E6E9ED;
}
.dropdawn__content-item {
  margin: 0 16px;
  padding: 16px 8px;
  border-bottom: 1px solid #E9EFF6;
}
.dropdawn__content-item:last-child {
  border-bottom: none;
}
.dropdawn__content-input {
  display: none;
  width: 0;
  opacity: 0;
}
.dropdawn__content-input:checked ~ .dropdawn__content-label .dropdawn__content-check {
  background-color: var(--burgundy);
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.dropdawn__content-input:checked ~ .dropdawn__content-label .dropdawn__content-circle {
  outline: 1px solid var(--burgundy);
}
.dropdawn__content-text {
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.dropdawn__content-label {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.dropdawn__content-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--grey);
  border-radius: 4px;
}
.dropdawn__content-circle {
  width: 30px;
  height: 30px;
  border: 5px solid #F3F5F7;
  border-radius: 50%;
}
.dropdawn__footer {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid #E9EFF6;
}
.dropdawn__footer-btn {
  flex: 0 0 calc(50% - 4px);
}
.dropdawn__sorter {
  margin: 0 16px;
  padding: 16px 8px;
  border-bottom: 1px solid #E9EFF6;
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.dropdawn__sorter:last-child {
  border-bottom: none;
}
.dropdawn__wrapper {
  width: 375px;
}
.dropdawn__item {
  border-bottom: 1px solid #E9EFF6;
}
.dropdawn__item:last-child {
  border-bottom: none;
}
.dropdawn__head {
  display: flex;
  justify-content: space-between;
  padding: 18.5px 24px;
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.dropdawn__head-active .head-chevrone {
  transform: scale(1, -1);
}
.dropdawn__found {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, z-index 0.3s ease;
  z-index: -100;
}
.dropdawn__found-active {
  z-index: 100;
}
.dropdawn__found-active .dropdawn__content {
  height: 250px;
}

.popup-filter {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: #fff;
  z-index: 1000;
}
.popup-filter-active {
  display: block;
}
.popup-filter__wrapper {
  position: relative;
}

.payment__wrapper {
  padding: 48px 48px 60px;
  border-radius: 24px;
  background-color: #F5F5F5;
}
.payment__title {
  margin-bottom: 24px;
  text-align: center;
}
.payment__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.payment__content-item {
  padding: 24px 24px 48px;
  border-radius: 16px;
  background-color: #fff;
}
.payment__content-item-big {
  padding: 48px 110px;
  display: flex;
  grid-column: span 4;
  gap: 24px;
}
.payment__content-img {
  flex: 0 0 calc(50% - 12px);
}
.payment__content-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.payment__content-gentitle {
  font: 700 22px/29px "PT Root UI", "sans-serif";
  color: var(--black);
}
.payment__content-list {
  padding-left: 20px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.payment__content-list li {
  margin-bottom: 16px;
}
.payment__content-list li:last-child {
  margin-bottom: 0;
}
.payment__content-title {
  margin-bottom: 16px;
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.payment__content-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}

.line {
  margin: 100px 0;
  border: 1px solid #E5E7EB;
}

.delivery {
  margin-bottom: 100px;
}
.delivery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.delivery__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.delivery__title {
  text-align: center;
}
.delivery__text {
  font: 400 24px/32px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
}
.delivery__content {
  display: flex;
  gap: 24px;
}
.delivery__content-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 calc(50% - 12px);
}
.delivery__content-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.delivery__content-item-active {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0px 4px 6px -2px rgba(18, 18, 23, 0.0509803922), 0px 10px 15px -3px rgba(18, 18, 23, 0.0784313725);
  background-color: #fff;
}
.delivery__content-item-active .delivery__content-content {
  opacity: 1;
  overflow: visible;
}
.delivery__content-item-active .delivery__content-head {
  background-color: #fff;
}
.delivery__content-item-active .delivery__content-v {
  height: 0;
}
.delivery__content-head {
  display: flex;
  align-items: center;
  padding: 25px 24px;
  border-radius: 16px;
  background-color: #F5F5F5;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.delivery__content-title {
  font: 500 22px/30px "PT Root UI", "sans-serif";
  color: var(--black);
}
.delivery__content-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-left: auto;
}
.delivery__content-h {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #969092;
  transform: translate(-50%, -50%);
}
.delivery__content-v {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #969092;
  transform: translate(-50%, -50%);
  transition: height 0.3s ease;
}
.delivery__content-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, overflow 0.3s ease;
}
.delivery__content-text {
  padding: 0 24px;
  padding-bottom: 30px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.placing {
  position: relative;
  margin-top: 48px;
  margin-bottom: 100px;
  z-index: 20;
}
.placing__wrapper {
  display: flex;
  justify-content: space-between;
}
.placing__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.placing__item-line {
  display: flex;
  gap: 16px;
}
.placing__item-btn {
  flex: 0 1 auto;
  padding: 14px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.placing__item-btn-active {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}
.placing__btn {
  width: 306px;
  height: 65px;
}

.deliverymethod {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 636px;
  width: 100%;
}
.deliverymethod-active {
  display: flex;
}
.deliverymethod__delivery {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 636px;
}
.deliverymethod__delivery-active {
  display: flex;
}
.deliverymethod__pickup {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 636px;
}
.deliverymethod__pickup-active {
  display: flex;
}
.deliverymethod__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deliverymethod__item-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.deliverymethod__item-title {
  font: 700 18px/23px "PT Root UI", "sans-serif";
  color: var(--black);
}
.deliverymethod__item-subtitle {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.deliverymethod__item-datetime {
  position: relative;
}
.deliverymethod__item-datetime svg {
  position: absolute;
  top: 50%;
  right: 19px;
  background-color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}
.deliverymethod__item-vert {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deliverymethod__item-address {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deliverymethod__item-address input {
  width: 100%;
}
.deliverymethod__item-city {
  background-image: url("../img/chevron.svg");
  background-repeat: no-repeat;
  background-position: center right 24px;
}
.deliverymethod__item-options {
  position: absolute;
  top: 66px;
  width: 100%;
  height: 0;
  padding: 0 24px;
  border-radius: 16px;
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 100;
  transition: height 0.3s ease;
}
.deliverymethod__item-options-active {
  height: 500px;
  box-shadow: 0px 4px 6px 2px rgba(18, 18, 23, 0.0509803922), 0px 10px 15px 3px rgba(18, 18, 23, 0.0784313725);
}
.deliverymethod__item-option {
  padding: 8px 0;
  border-bottom: 1px solid #93949B;
  cursor: pointer;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.deliverymethod__item-option:last-child {
  border-bottom: 0;
}
.deliverymethod__item-map {
  padding: 24px;
  border: 1px solid #E8EAEE;
  border-radius: 16px;
}
.deliverymethod__item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deliverymethod__item-maptitle {
  margin-bottom: 8px;
  font: 500 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.deliverymethod__item-p {
  margin-bottom: 4px;
  font: 500 12px/16px "PT Root UI", "sans-serif";
  color: #93949B;
}
.deliverymethod__item-subtext {
  margin-bottom: 16px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.deliverymethod__item-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.deliverymethod__item-map iframe {
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.deliverymethod__item-map-marker {
  position: absolute;
  top: 44%;
  left: 49%;
  transform: translate(-50%, -50%);
}

.design {
  display: none;
  flex-direction: column;
  gap: 40px;
  max-width: 636px;
}
.design-active {
  display: flex;
}
.design__recipient {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 636px;
}
.design__recipient-active {
  display: flex;
}
.design__me {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 636px;
}
.design__me-active {
  display: flex;
}
.design__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.design__item-line {
  display: flex;
  gap: 16px;
}
.design__item-input {
  width: 100%;
  padding: 14px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.design__item-input::-moz-placeholder {
  color: #93949B;
}
.design__item-input::placeholder {
  color: #93949B;
}
.design__item-input:disabled {
  background-color: #F5F5F5;
}
.design__item-title {
  margin-bottom: -6px;
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.design__checkboxs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.design__checkboxs-input {
  display: none;
  width: 0;
  opacity: 0;
}
.design__checkboxs-input:checked ~ .design__checkboxs-label .design__checkboxs-check {
  background-color: var(--burgundy);
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.design__checkboxs-text {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.design__checkboxs-text-bottom {
  display: inline;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.design__checkboxs-text-bottom a {
  color: var(--black);
  text-decoration: underline;
}
.design__checkboxs-price {
  font-weight: 700;
}
.design__checkboxs-label {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.design__checkboxs-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--grey);
  border-radius: 8px;
}
.design__quantity {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.design__quantity-subtext {
  flex: 0 1;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  white-space: wrap;
}
.design__quantity-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #F5F5F5;
}
.design__quantity-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.profil-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compound {
  max-width: 416px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding: 32px 48px 48px;
  border-radius: 24px;
  background-color: #F5F5F5;
}
.compound-profil {
  padding: 32px 24px;
}
.compound-profil .paymentcard__bonus {
  padding: 0;
  border: none;
}
.compound__title {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item {
  display: flex;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #DADADA;
}
.compound__item-img {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
}
.compound__item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.compound__item-title {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-factor {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-price {
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-head {
  width: 100%;
  margin: 16px 0;
}
.compound__item-visible {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  cursor: pointer;
}
.compound__item-p {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 5px;
}
.compound__item-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.compound__item-promo {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.compound__item-input {
  width: 100%;
  height: 50px;
  padding: 14px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-input::-moz-placeholder {
  color: #93949B;
}
.compound__item-input::placeholder {
  color: #93949B;
}
.compound__item-ok {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #93949B;
  border-radius: 12px;
  background-color: #F5F5F5;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.compound__item-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.compound__item-line {
  display: flex;
  justify-content: space-between;
}
.compound__item-point {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-point-bold {
  padding-top: 12px;
  font: 700 22px/28px "PT Root UI", "sans-serif";
}
.compound__item-meaning {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.compound__item-meaning-bold {
  padding-top: 12px;
  font: 700 22px/28px "PT Root UI", "sans-serif";
}
.compound__item-bonus {
  color: var(--green);
}
.compound__item-subtext {
  margin-top: 8px;
  font: 400 12px/16px "PT Root UI", "sans-serif";
  color: #93949B;
}

.footer__decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__decor-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.shop {
  position: relative;
  border-bottom: 1px solid #E3E6EC;
  z-index: 20;
}
.shop__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 22px;
}
.shop__selected-img {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
}
.shop__selected-title {
  margin-bottom: 24px;
  font: 500 42px/54px "PT Root UI", "sans-serif";
  color: var(--black);
}
.shop__selected-text {
  font: 500 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.shop__selected-link {
  font: 400 18px/24px "PT Root UI", "sans-serif";
  color: var(--burgundy);
  text-decoration: underline !important;
  text-decoration-style: dotted !important;
  text-underline-offset: 7px;
}
.shop__selected-footer {
  display: flex;
  gap: 16px;
}
.shop__selected-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 24px;
  border-radius: 12px;
  background-color: #F5F5F5;
}
.shop__selected-content {
  flex: 1 0 auto;
}
.shop__selected-rating {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.shop__selected-grade {
  font: 700 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.shop__selected-subtitle {
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.shop__selected-subtext {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.shop__selected-contacnts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.shop__selected-contacnt {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.shop__selected-information {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop__selected-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.categories {
  margin-top: 24px;
  margin-bottom: 48px;
}
.categories__wrapper {
  display: flex;
  gap: 4px;
  overflow-x: scroll;
}
.categories__wrapper::-webkit-scrollbar {
  height: 4px;
  background-color: #fff;
}
.categories__wrapper::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #E6E9ED;
}
.categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  margin-bottom: 4px;
  border: 1px solid #fff;
  border-radius: 16px;
  transition: border 0.3s ease;
  cursor: pointer;
}
.categories__item-active {
  border: 1px solid var(--burgundy);
}
.categories__item-active .categories__item-text {
  color: var(--burgundy);
}
.categories__item-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  text-align: center;
  transition: color 0.3s ease;
}

.review {
  background-color: #F5F5F5;
}
.review__wrapper {
  padding: 80px 0;
}
.review__title {
  margin-bottom: 32px;
}
.review__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.review__grades {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review__line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  overflow-x: scroll;
}
.review__line::-webkit-scrollbar {
  height: 4px;
  background-color: #F5F5F5;
}
.review__line::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #fff;
}
.review__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.review__bottom-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 416px;
  padding: 24px;
  padding-bottom: 32px;
  border-radius: 16px;
  background-color: #fff;
}

.details__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 90px 0;
  padding: 32px 24px;
  border: 1px solid #E3E6EC;
  border-radius: 16px;
}
.details__header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.details__header svg {
  transform: scale(1, -1);
  transition: transform 0.3s ease;
}
.details__header-active svg {
  transform: scale(1, 1);
}
.details__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.details__content-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 368px;
}
.details__text {
  font: 400 14px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}

.navigation {
  width: 306px;
  height: 100%;
  background-color: #fff;
}
.navigation__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px 48px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
}
.navigation__account {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navigation__account-name {
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.navigation__account-tel {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.navigation__check {
  border-radius: 16px;
  background-color: rgba(133, 1, 40, 0.85);
  overflow: hidden;
}
.navigation__check-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-image: url("../img/profil.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.navigation__check-money {
  display: flex;
  gap: 8px;
}
.navigation__check-number {
  font: 500 32px/32px "PT Root UI", "sans-serif";
  color: #fff;
}
.navigation__check-link {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #fff;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.navigation__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.navigation__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
  transition: color 0.3s ease;
}
.navigation__list-item path {
  transition: stroke 0.3s ease;
}
.navigation__list-item-active {
  color: var(--burgundy);
}
.navigation__list-item-active path {
  stroke: var(--burgundy);
}

.wrapper {
  display: grid;
  grid-template-columns: 306px minmax(416px, 516px) 306px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  row-gap: 24px;
  margin-bottom: 100px;
  position: relative;
  z-index: 20;
}
.wrapper .compound {
  display: none;
}

.data {
  max-width: 416px;
  width: 100%;
  margin: 0 auto;
}
.data__form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.data__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.data__head-item {
  position: relative;
}
.data__head-item-error .data__input {
  border: 1px solid #AD2950;
  background-color: rgba(173, 41, 80, 0.0705882353);
}
.data__head-item-error .data__head-error {
  display: block;
}
.data__head-input {
  width: 100%;
  padding: 42px 24px 14px;
  border-radius: 12px;
  background-color: #F5F5F5;
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.data__head-error {
  display: none;
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--burgundy);
}
.data__head-title {
  position: absolute;
  top: 16px;
  left: 24px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.data__head-icon {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.data__head-subtitle {
  position: absolute;
  top: 16px;
  left: 24px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  transition: all 0.3s ease;
}
.data__head-subtitle-up {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.data__input {
  width: 100%;
  padding: 23px 24px 5px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.data__input::-moz-placeholder {
  color: #93949B;
}
.data__input::placeholder {
  color: #93949B;
}
.data__input:focus ~ .data__head-subtitle {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.data__text {
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.data__password {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.data__password-title {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.data__password-item {
  position: relative;
}
.data__password-item-error .data__password-input {
  border: 1px solid #AD2950;
  background-color: rgba(173, 41, 80, 0.0705882353);
}
.data__password-item-error .data__password-error {
  display: block;
}
.data__password-input {
  width: 100%;
  padding: 14px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.data__password-input::-moz-placeholder {
  color: #93949B;
}
.data__password-input::placeholder {
  color: #93949B;
}
.data__password-input-show ~ .data__password-show {
  background-image: url("../img/hide.png");
}
.data__password-show {
  position: absolute;
  top: 13px;
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url("../img/show.png");
}
.data__password-error {
  display: none;
  margin-top: 8px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--burgundy);
}
.data__btn-btn {
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  background-color: var(--burgundy);
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: #fff;
  transition: all 0.3s ease;
}
.data__btn-btn:disabled {
  background-color: #F5F5F5;
  color: #93949B;
}

.myorders {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 516px;
  width: 100%;
}
.myorders__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.myorders__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.myorders__item-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
}
.myorders__item-img {
  flex: 1 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
}
.myorders__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.myorders__item-head {
  display: flex;
  justify-content: space-between;
}
.myorders__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.myorders__item-btn {
  padding: 11px 16px;
  font: 700 14px/18px "PT Root UI", "sans-serif";
}
.myorders__item-details {
  border-radius: 10px;
  background-color: #f5f5f5;
  color: var(--black);
}
.myorders__item-repeat {
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--green);
}
.myorders__item-title {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.myorders__item-text {
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.myorders__item-subtitle {
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.myorders__item-subtext {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.myorders__nav {
  justify-content: space-between;
}
.myorders__pages-prev {
  margin-right: 0;
}
.myorders__pages-next {
  margin-left: 0;
}
.myorders__selected {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 196px;
  padding: 16px;
  border-radius: 12px;
  background-color: #F5F5F5;
}
.myorders__selected-text {
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.myorders__options {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  height: 0;
  padding: 0 16px;
  border-radius: 16px;
  box-shadow: 0px 20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px 10px 20px -5px rgba(18, 18, 23, 0.0392156863);
  background-color: #fff;
  overflow: hidden;
  transition: height 0.3s ease;
}
.myorders__options-active {
  height: 152px;
}
.myorders__option {
  padding: 16px 0;
  border-bottom: 1px solid #E3E6EC;
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  cursor: pointer;
}
.myorders__option:last-child {
  border: none;
}

.order {
  display: none;
  flex-direction: column;
  gap: 48px;
  max-width: 416px;
  width: 100%;
}
.order__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.order__head-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.order__head-line {
  display: flex;
  gap: 12px;
  align-items: center;
}
.order__head-title {
  font: 500 32px/38px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__head-status {
  padding: 4px 8px;
  border-radius: 6px;
  font: 500 14px/18px "PT Root UI", "sans-serif";
}
.order__head-status-yellow {
  background-color: #FFC739;
  color: var(--black);
}
.order__head-status-green {
  background-color: var(--green);
  color: #fff;
}
.order__verification {
  padding: 24px;
  border-radius: 24px;
  background-color: #F5F5F5;
}
.order__verification-invalid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.order__verification-valid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order__verification-title {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.order__verification-tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order__verification-number {
  font: 500 22px/28px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__verification-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--green);
  background-image: url("../img/check.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.order__verification-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__verification-bold {
  font-weight: 700;
}
.order__verification-input {
  padding: 15px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  background-color: #fff;
}
.order__verification-btn {
  padding: 15px 24px;
  border-radius: 12px;
  background-color: var(--black);
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: #fff;
}
.order__title {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__foto {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__foto-img {
  width: 196px;
  height: 196px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.order__pay {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__pay-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__delivery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__delivery-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order__delivery-line {
  display: grid;
  grid-template-columns: 140px auto;
}
.order__delivery-category {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.order__delivery-meaning {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__postcard {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__postcard-text {
  padding: 15px 24px;
  border-radius: 12px;
  background-color: #f5f5f5;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__footer-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order__footer-edit {
  padding: 15px 24px;
  border-radius: 12px;
  background-color: var(--black);
  font: 700 16px/20px "PT Root UI", "sans-serif";
  color: #fff;
}
.order__footer-cancell {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 5px;
}
.order__review {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order__review-fotos {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.order__review-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.order__review-text {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}
.order__review-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order__review-stars {
  display: flex;
  align-items: center;
}
.order__review-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order__review-later {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.order__review-btn {
  padding: 10px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
}

.account {
  margin: 0 auto;
}

.edit-active {
  display: block;
}
.edit__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 636px;
  margin: 64px auto;
  padding: 48px;
  border-radius: 24px;
  background-color: #fff;
}
.edit__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F5F5F5;
}
.edit__title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.edit__text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.edit__input {
  position: relative;
}
.edit__input-input {
  width: 306px;
  padding: 23px 24px 5px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.edit__input-input:focus ~ .edit__input-label {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.edit__input-input:valid ~ .edit__input-label {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.edit__input-label {
  position: absolute;
  left: 24px;
  top: 16px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  transition: all 0.3s ease;
}
.edit__input-textarea {
  width: 100%;
  height: 94px;
  padding: 16px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  resize: none;
}
.edit__input-textarea::-moz-placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.edit__input-textarea::placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.edit__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.edit__bottom {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

#edit__address {
  width: 100%;
}

.cancell-active {
  display: block;
}
.cancell__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 636px;
  margin: 64px auto;
  padding: 48px;
  border-radius: 24px;
  background-color: #fff;
}
.cancell__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F5F5F5;
}
.cancell__title {
  font: 500 32px/42px "PT Root UI", "sans-serif";
  color: var(--black);
}
.cancell__text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.cancell__input {
  position: relative;
}
.cancell__input-input {
  width: 306px;
  padding: 23px 24px 5px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.cancell__input-input:focus ~ .edit__input-label {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.cancell__input-input:valid ~ .edit__input-label {
  top: 5px;
  font-size: 12px;
  line-height: 16px;
}
.cancell__input-label {
  position: absolute;
  left: 24px;
  top: 16px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
  transition: all 0.3s ease;
}
.cancell__input-textarea {
  width: 100%;
  height: 94px;
  padding: 16px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  resize: none;
}
.cancell__input-textarea::-moz-placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.cancell__input-textarea::placeholder {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: #93949B;
}
.cancell__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cancell__bottom {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.paymentcard {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(38, 38, 38, 0.5019607843);
  overflow-y: scroll;
  z-index: 1000;
}
.paymentcard-active {
  display: block;
}
.paymentcard__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 636px;
  margin: 64px auto;
  padding: 48px;
  border-radius: 24px;
  background-color: #fff;
}
.paymentcard__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
}
.paymentcard__title {
  font-size: 32px;
  line-height: 42px;
}
.paymentcard__tabs {
  display: flex;
  gap: 16px;
  align-items: center;
}
.paymentcard__tab {
  padding: 14px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font: 500 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
  transition: border 0.3s ease, color 0.3s ease;
}
.paymentcard__tab-active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.paymentcard__methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0;
}
.paymentcard__methods-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 16px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  height: 50px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.paymentcard__methods-content-active {
  height: 248px;
}
.paymentcard__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 23px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: border 0.3s ease;
  cursor: pointer;
}
.paymentcard__item-active {
  border: 1px solid var(--burgundy);
}
.paymentcard__item-text {
  font: 500 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  white-space: nowrap;
}
.paymentcard__item-more {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}
.paymentcard__subtitle {
  font: 700 18px/24px "PT Root UI", "sans-serif";
  color: var(--black);
}
.paymentcard__bonus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid #E3E6EC;
  border-radius: 16px;
}
.paymentcard__bonus-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.paymentcard__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paymentcard__btn-btn {
  padding-left: 48px;
  padding-right: 48px;
}
.paymentcard__subtext {
  font: 400 14px/18px "PT Root UI", "sans-serif";
  color: #93949B;
}
.paymentcard__legalentity {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.paymentcard__legalentity-active {
  display: flex;
}
.paymentcard__individual {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.paymentcard__individual-active {
  display: flex;
}
.paymentcard__company {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.paymentcard__company-input {
  padding: 14px 24px;
  border: 1px solid #93949B;
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.paymentcard__company-input::-moz-placeholder {
  color: #93949B;
}
.paymentcard__company-input::placeholder {
  color: #93949B;
}
.paymentcard__check {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.paymentcard__check-check {
  width: 24px;
  height: 24px;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
}
.paymentcard__check-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.paymentcard__check-input {
  display: none;
}
.paymentcard__check-input:checked ~ .paymentcard__check-label .paymentcard__check-check {
  border: 2px solid var(--burgundy);
  background-color: var(--burgundy);
  background-image: url("../img/check.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.paymentcard__check-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.paymentcard__consent-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
}
.paymentcard__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.paymentcard__consent-input {
  display: none;
}
.paymentcard__consent-input:checked ~ .paymentcard__consent-label .paymentcard__consent-check {
  border: 2px solid var(--burgundy);
  background-color: var(--burgundy);
  background-image: url("../img/check.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.paymentcard__consent-text {
  font: 400 16px/20px "PT Root UI", "sans-serif";
  color: var(--black);
}
.paymentcard__checkboxes {
  display: flex;
  gap: 24px;
  align-items: center;
}
.paymentcard__switch {
  position: relative;
  display: inline-block;
  flex: 0 0 40px;
  width: 40px;
  height: 24px;
}
.paymentcard__switch input {
  display: none;
}
.paymentcard__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #93949B;
  transition: 0.4s;
}
.paymentcard__slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  border: 5px solid #fff;
  background-color: #fff;
  transition: 0.4s;
}
.paymentcard__input:checked + .paymentcard__slider {
  background-color: var(--green);
}
.paymentcard__input:focus + .paymentcard__slider {
  box-shadow: 0 0 1px var(--green);
}
.paymentcard__input:checked + .paymentcard__slider:before {
  transform: translateX(16px);
  background-color: var(--green);
}
.paymentcard__slider.paymentcard__round {
  border-radius: 20px;
}
.paymentcard__slider.paymentcard__round:before {
  border-radius: 50%;
}

#filter-prices .dropdawn-active {
  width: 375px;
  height: 215px;
}

#filter-sorter .dropdawn {
  min-width: -moz-max-content;
  min-width: max-content;
  left: 50%;
  transform: translateX(-50%);
}
#filter-sorter .dropdawn-active {
  height: 203px;
}

.polzunok-container-3,
.polzunok-container-4,
.polzunok-container-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 24px;
}

.polzunok-container-3:after,
.polzunok-container-4:after,
.polzunok-container-5:after {
  content: "";
  clear: both;
  display: table;
}

.polzunok-container-3 .ui-slider,
.polzunok-container-4 .ui-slider,
.polzunok-container-5 .ui-slider {
  position: relative;
  grid-column: span 2;
  margin: 16px 12px 0;
  height: 2px;
  background: #E6E9ED;
}

.polzunok-container-3 .ui-slider .ui-slider-handle,
.polzunok-container-4 .ui-slider .ui-slider-handle,
.polzunok-container-5 .ui-slider .ui-slider-handle {
  position: absolute;
  top: -11px;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-radius: 50%;
  background: var(--burgundy);
  outline: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s, border 0.4s;
}

.polzunok-input-3-left, .polzunok-input-3-right,
.polzunok-input-4-left, .polzunok-input-4-right,
.polzunok-input-5-left, .polzunok-input-5-right {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey);
  border-radius: 12px;
  font: 400 16px/20px "PT Root UI", "sans-serif";
}

.polzunok-input-3-left,
.polzunok-input-4-left,
.polzunok-input-5-left {
  float: left;
}

.polzunok-input-3-right,
.polzunok-input-4-right,
.polzunok-input-5-right {
  float: right;
}

.polzunok-container-3 .ui-slider .ui-slider-range,
.polzunok-container-4 .ui-slider .ui-slider-range,
.polzunok-container-5 .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  height: 2px;
  border: 0;
  background: var(--burgundy);
}

.bouquet {
  position: static;
  display: block;
  max-width: 1070px;
  margin: 0 auto;
  box-shadow: none;
  background-color: #fff;
  overflow: visible;
}
.bouquet__wrapper {
  box-shadow: none;
}
.bouquet__media-big {
  border-radius: 24px;
}
.bouquet__info {
  padding-top: 0;
}

.test {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 1750px) {
  .decorfooter {
    left: -50px;
    right: -50px;
  }
  .footer__decor-left {
    left: -60px;
  }
}
@media (max-width: 1650px) {
  .decorfooter {
    left: -100px;
    right: -100px;
  }
}
@media (max-width: 1550px) {
  .decorheader {
    right: -20px;
  }
  .decorfooter {
    left: -150px;
    right: -150px;
  }
  .decorfooter__left-1 {
    left: 20px;
  }
  .decorfooter__right-1 {
    right: 105px;
  }
  .footer__decor-left {
    display: none;
  }
  .footer__decor-right {
    display: none;
  }
  .placing__wrapper {
    justify-content: space-around;
  }
}
@media (max-width: 1366px) {
  .decorheader {
    right: -40px;
    left: -20px;
  }
  .decorfooter {
    left: -200px;
    right: -210px;
  }
}
@media (max-width: 1359px) {
  .stack {
    margin-bottom: 60px;
  }
  .stack__wrapper {
    margin-top: 32px;
  }
  .stack__content {
    gap: 16px;
  }
  .stack__item-big {
    background-position: right -100px center;
  }
  .favorites {
    margin-bottom: 60px;
  }
  .favorites__content {
    gap: 16px;
  }
  .products {
    margin-bottom: 60px;
  }
  .products__filters {
    flex-wrap: wrap;
  }
  .products__content {
    gap: 16px;
  }
  .advantages {
    margin-bottom: 60px;
  }
  .rating {
    padding: 60px 0;
  }
  .features {
    padding: 60px 0;
  }
  .features__bouquet {
    background-position: right -130px center;
  }
  .features__shops {
    background-position: right -130px center;
  }
  .advice {
    margin-bottom: 60px;
  }
  .decorfooter__left-1 {
    left: 18px;
  }
  .decorfooter__right-1 {
    right: 95px;
  }
  .decorfooter__right-2 {
    right: -15px;
  }
}
@media (max-width: 1329px) {
  .addresses__tabs {
    display: flex;
  }
  .addresses__content-map {
    width: 100%;
  }
  .addresses__content-map iframe {
    width: 100%;
  }
  .addresses__content-list {
    display: none;
    width: 100%;
  }
  .popup {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
  }
}
@media (max-width: 1199px) {
  .popup__list {
    padding: 32px 16px;
  }
  .popup__list-item-active {
    margin-right: -16px;
  }
  .contant__list {
    grid-template-rows: repeat(21, auto);
    grid-template-columns: repeat(2, 1fr);
  }
  .about__content {
    grid-template-columns: 1fr;
  }
  .contacts {
    grid-template-columns: repeat(2, 1fr);
  }
  .placing__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .wrapper {
    grid-template-columns: 306px minmax(416px, 1fr);
  }
  .navigation {
    grid-row: span 2;
  }
  .compound {
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  #filter-sizes .dropdawn {
    left: inherit;
    right: 0;
  }
  .corporate__card-first {
    padding: 30px 24px;
  }
  .corporate__card-third {
    padding: 30px 24px;
  }
  .corporate__card-fourth {
    padding: 30px 24px 170px;
  }
}
@media (max-width: 1023px) {
  .medium-hidden {
    display: none;
  }
  .medium-visible {
    display: flex;
  }
  #search-main {
    display: none;
  }
  #search-div {
    display: none;
  }
  .stack__wrapper {
    margin-top: 16px;
  }
  .stack__content {
    grid-template-columns: repeat(4, 1fr);
  }
  .stack__item-big {
    grid-column: span 4;
    background-position: right;
  }
  .favorites__header {
    gap: 32px;
  }
  .favorites__content {
    overflow-x: scroll;
  }
  .favorites__content img {
    min-width: 240px;
    height: 240px;
  }
  .products__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .rating__content {
    overflow: hidden;
  }
  .rating__item {
    flex: 0 0 calc(50% - 8px);
    overflow: hidden;
  }
  .features__wrapper {
    flex-direction: column;
  }
  .features__item {
    width: 100%;
  }
  .features__bouquet {
    background-position: right center;
  }
  .features__shops {
    background-position: right center;
  }
  .advice__content {
    justify-content: flex-start;
    padding-top: 6px;
    padding-bottom: 16px;
    padding-left: 8px;
    overflow-x: scroll;
  }
  .advice__item {
    flex: 0 0 auto;
  }
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 0;
    border: none;
  }
  .footer__top {
    border: none;
  }
  .footer__top-rights {
    font-size: 14px;
    line-height: 18.2px;
  }
  .footer__item {
    width: 100%;
    align-items: center;
  }
  .footer__item-logo {
    margin-top: 16px;
    order: 1;
  }
  .footer__item-title {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    padding: 8.5px 0;
    cursor: pointer;
  }
  .footer__item-none {
    display: none;
  }
  .footer__item-svg {
    display: block;
  }
  .footer__socials {
    width: 100%;
    padding: 32px 0;
    border-top: 1px solid var(--border-footer);
    border-bottom: 1px solid var(--border-footer);
  }
  .footer__list {
    gap: 8px;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }
  .footer__list-link {
    font: 400 12px/16px "PT Root UI", "sans-serif";
    color: var(--grey);
    color: var(--black);
  }
  .footer__cards {
    order: -1;
  }
  .seller {
    margin-top: 16px;
  }
  .seller__btn {
    margin-top: 4px;
  }
  .decorfooter {
    right: 0;
    left: 0;
  }
  .decorfooter__left-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 260px;
  }
  .decorfooter__left-2 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .decorfooter__bottom {
    display: none;
  }
  .decorfooter__right-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 260px;
  }
  .decorfooter__right-2 {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .contant__list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .card__wrapper {
    max-width: 804px;
    margin: 0;
    border-radius: 0;
  }
  .card__content {
    flex-direction: column;
    align-items: center;
  }
  .card__media {
    width: 100%;
    flex-direction: row;
  }
  .card__media-bottom {
    flex-direction: column;
  }
  .card__media-big {
    border-radius: 0;
  }
  .card__media-top {
    border-bottom-right-radius: 0;
  }
  .card__info {
    padding: 16px;
    padding-bottom: 48px;
  }
  .card__review {
    padding: 16px;
  }
  .card__review-card {
    gap: 16px;
  }
  .corporate__card {
    flex-direction: column;
  }
  .corporate__card-first {
    padding-bottom: 330px;
    background-position: bottom;
    background-size: 100%;
  }
  .corporate__card-third {
    padding-bottom: 330px;
    background-position: bottom;
    background-size: 50% 50%;
  }
  .corporate__card-fourth {
    padding-bottom: 290px;
    background-position: left bottom;
    background-size: 140% 70%;
  }
  .bonus__content {
    flex-direction: column;
  }
  .payment__content {
    grid-template-columns: 1fr;
  }
  .payment__content-item {
    padding: 24px;
  }
  .payment__content-item-big {
    flex-direction: column;
    grid-column: span 1;
    padding: 24px 16px;
  }
  .delivery {
    margin-top: 50px;
  }
  .delivery__content {
    flex-direction: column;
  }
  .line {
    display: none;
  }
  .footer__decor-left {
    display: block;
    left: 0;
  }
  .footer__decor-right {
    display: block;
  }
}
@media (max-width: 947px) {
  #filter-sizes .dropdawn {
    left: 0;
    right: inherit;
  }
  #filter-colors .dropdawn {
    left: inherit;
    right: 0;
  }
}
@media (max-width: 907px) {
  #filter-sizes .dropdawn {
    left: 0;
  }
  .modal-city__list {
    grid-template-columns: repeat(3, 161px);
    grid-template-rows: repeat(14, auto);
  }
}
@media (max-width: 857px) {
  .basket__wrapper {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .small-hidden {
    display: none;
  }
  .small-visible {
    display: flex;
  }
  .header__top {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 16px;
  }
  .header__top-full {
    display: none;
  }
  .header__top-small {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    margin: 0 40px;
  }
  .header__top-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .header__bottom {
    padding: 16px 0;
  }
  .header__bottom-full {
    display: none;
  }
  .header__bottom-small {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    margin: 0 40px;
  }
  .header__bottom-left {
    margin-right: auto;
  }
  .header__bottom-left svg {
    width: 24px;
    height: 24px;
  }
  .header__bottom-title {
    font-size: 22px;
    line-height: 28px;
  }
  .header__social {
    display: grid;
    justify-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 56px;
    background-color: var(--bg-stack);
  }
  .header__social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font: 400 16px/20px "PT Root UI", "sans-serif";
    color: var(--black);
    gap: 5px;
    cursor: pointer;
  }
  .header__social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__social-phone {
    font-weight: 500;
  }
  .header__social-mes {
    width: 100%;
    padding: 9px 16px;
    border-radius: 12px;
    background-color: #fff;
  }
  .header__working-time {
    font: 500 18px/23px "PT Root UI", "sans-serif";
    color: var(--black);
    color: var(--burgundy);
  }
  .header__line-small {
    display: none;
  }
  .stack {
    margin-bottom: 24px;
  }
  .stack__wrapper {
    margin-top: 24px;
  }
  .stack__content {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    overflow-x: scroll;
    gap: 0;
    padding-bottom: 20px;
    scrollbar-width: 20px;
    scrollbar-color: var(--thumb) #fff;
  }
  .stack__item {
    width: 120px;
    height: 130px;
    background-color: #fff;
  }
  .stack__item-big {
    display: none;
  }
  .stack__item-text {
    font: 400 14px/18px "PT Root UI", "sans-serif";
    color: var(--black);
  }
  .favorites {
    margin-bottom: 50px;
  }
  .favorites__arrows {
    display: none;
  }
  .products__filters {
    flex-wrap: wrap;
    gap: 12px;
  }
  .products__filter {
    gap: 8px;
    flex: 1 0 auto;
  }
  .products__container-small {
    display: flex;
  }
  .products__content {
    margin-bottom: 40px;
  }
  .products__nav {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .products__pages {
    gap: 4px;
  }
  .products__pages-prev {
    margin-right: 12px;
  }
  .products__pages-next {
    margin-left: 12px;
  }
  .product__title {
    width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
  }
  .product__btn-full {
    display: none;
  }
  .product__btn-small {
    display: block;
  }
  .allbouquets {
    margin-top: 32px;
  }
  .advantages {
    margin-bottom: 50px;
  }
  .advantages__content {
    flex-direction: column;
  }
  .rating {
    padding: 50px 0;
  }
  .rating__header {
    justify-content: center;
  }
  .rating__arrows {
    display: none;
  }
  .rating__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .rating__info-title {
    margin-bottom: 0;
  }
  .rating__map {
    flex-wrap: wrap;
    row-gap: 18px;
  }
  .rating__map-map {
    font-size: 32px;
    line-height: 41.6px;
  }
  .rating__content {
    margin-bottom: 24px;
    overflow: hidden;
  }
  .features {
    padding: 50px 0;
  }
  .features__item {
    min-height: 0;
  }
  .features__item-icon {
    margin-bottom: 8px;
  }
  .features__item-text {
    margin-bottom: 60px;
  }
  .features__item-wrapper {
    padding: 32px 100px 32px 24px;
  }
  .advice__arrows {
    display: none;
  }
  .footer__wrapper {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0;
    border: none;
  }
  .footer__top {
    border: none;
  }
  .footer__bottom {
    margin-bottom: 118px;
  }
  .footer__bottom-rights {
    font-size: 14px;
    line-height: 18.2px;
  }
  .footer__item {
    width: 100%;
    align-items: center;
  }
  .footer__item-logo {
    margin-top: 16px;
    order: 1;
  }
  .footer__item-title {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    padding: 8.5px 0;
  }
  .footer__item-none {
    display: none;
  }
  .footer__item-svg {
    display: block;
  }
  .footer__socials {
    width: 100%;
    padding: 32px 0;
    border-top: 1px solid var(--border-footer);
    border-bottom: 1px solid var(--border-footer);
  }
  .footer__list {
    gap: 8px;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }
  .footer__list-link {
    font: 400 12px/16px "PT Root UI", "sans-serif";
    color: var(--grey);
    color: var(--black);
  }
  .footer__cards {
    order: -1;
  }
  .seller {
    margin-top: 16px;
  }
  .seller__btn {
    margin-top: 4px;
  }
  .decorheader {
    right: 0;
    left: 0;
  }
  .decorheader__full {
    display: none;
  }
  .decorheader__small {
    display: block;
  }
  .decorfooter {
    bottom: 70px;
  }
  .decorfooter__left-1 {
    left: -100px;
  }
  .decorfooter__left-2 {
    left: -100px;
  }
  .decorfooter__right-1 {
    right: -100px;
  }
  .decorfooter__right-2 {
    right: -100px;
  }
  .logo__small {
    height: 36px;
  }
  .glass {
    height: 36px;
    width: 36px;
  }
  .menu {
    display: block;
  }
  .modal-city {
    position: absolute;
    align-items: flex-start;
    bottom: inherit;
    height: 100%;
  }
  .modal-city__list {
    grid-template-columns: repeat(2, 161px);
    grid-template-rows: repeat(20, auto);
  }
  .modal-city__title {
    margin-right: 70px;
    font-size: 22px;
    line-height: 28px;
  }
  .card__media {
    position: relative;
    flex-direction: column;
  }
  .card__media-bottom {
    position: absolute;
    bottom: 18px;
    right: 0;
    left: 0;
    flex-direction: row;
  }
  .card__media-sm {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    overflow: hidden;
    filter: brightness(100);
    opacity: 0.5;
  }
  .card__media-sm-active {
    opacity: 1;
  }
  .card__media-big {
    display: block;
    max-width: 100%;
    max-height: 100%;
  }
  .card__media-top {
    border-radius: 0;
  }
  .card__review-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .card__review-card {
    grid-template-columns: 368px;
  }
  .card__packages {
    justify-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .about__title {
    margin-bottom: -8px;
    font-size: 32px;
    line-height: 42px;
  }
  .about__card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about__item-title {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 28px;
  }
  .about__content {
    gap: 32px;
  }
  .contacts {
    grid-template-columns: 1fr;
  }
  .contacts__item {
    gap: 18px;
    padding: 24px;
  }
  .contacts__item-line {
    flex-direction: column;
  }
  .contacts__item-big {
    grid-column: span 1;
  }
  .contacts__item-shop {
    grid-column: span 1;
  }
  .contacts__item-item {
    flex: 0 0 100%;
    gap: 18px;
  }
  .contacts__item-item img {
    display: none;
  }
  .agreement__item-subtitle {
    font-size: 18px;
    line-height: 27px;
  }
  .agreement__item-title {
    font-size: 22px;
    line-height: 29px;
  }
  .corporate__wrapper {
    gap: 24px;
  }
  .corporate__title {
    font-size: 32px;
    line-height: 42px;
  }
  .corporate__item-title {
    font-size: 22px;
    line-height: 29px;
  }
  .corporate__card {
    flex-direction: column;
  }
  .corporate__card-first {
    background-image: url("../img/corporate1-1.png");
  }
  .corporate__card-second {
    padding: 24px 0;
  }
  .corporate__card-third {
    padding-bottom: 250px;
    background-image: url("../img/corporate2-1.png");
    background-size: contain;
  }
  .corporate__card-fourth {
    margin-bottom: 48px;
    background-size: 250% 70%;
  }
  .payment__wrapper {
    margin: 0 -16px;
    padding: 24px;
  }
  .payment__content-img {
    flex: initial;
  }
  .basket__wrapper {
    padding: 32px 16px;
  }
  .basket__content-total {
    flex-direction: column;
  }
  .basket__content-promo {
    width: 100%;
    margin: 24px 0;
  }
  .basket__content-input {
    width: 100%;
  }
  .basket__content-check {
    width: 100%;
  }
  .basket__content-footer {
    flex-direction: row-reverse;
  }
  .basket__footer {
    margin-right: -16px;
    margin-left: -16px;
    padding: 40px 16px;
  }
  .design__item-line {
    flex-wrap: wrap;
  }
  .design__btn {
    width: 100%;
  }
  .compound {
    padding: 24px;
  }
  .decorheader {
    top: -10px;
  }
  .placing {
    margin-top: 24px;
  }
  .placing__btn {
    width: 100%;
  }
  .deliverymethod__item-input {
    width: 100%;
  }
  .deliverymethod__item-datetime {
    width: 100%;
  }
  .deliverymethod__item-line {
    flex-direction: column;
  }
  .shop__selected-content {
    flex: 0 1 auto;
  }
  .shop__selected-title {
    font-size: 32px;
    line-height: 42px;
  }
  .shop__selected-footer {
    flex-direction: column;
  }
  .shop__selected-address {
    flex-wrap: wrap;
  }
  .shop__selected-contacnts {
    width: 100%;
    gap: 16px;
  }
  .shop__selected-info {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .wrapper {
    grid-template-columns: 1fr;
  }
  .navigation {
    position: fixed;
    left: -150%;
    width: 100%;
    transition: left 0.3s ease;
    z-index: 100;
  }
  .navigation-active {
    left: 0;
  }
  .navigation__wrapper {
    border: none;
  }
  .links {
    margin-bottom: 40px;
  }
  .links-small {
    display: none;
  }
  .links__wrapper {
    height: 51px;
  }
  .links__full {
    display: none;
  }
  .links__small {
    display: flex;
  }
  .links__small-text {
    font: 500 16px/20px "PT Root UI", "sans-serif";
    color: var(--black);
  }
  .myorders__item-card {
    gap: 16px;
  }
  .myorders__item-img {
    width: 60px;
    height: 60px;
  }
  .myorders__item-head {
    margin-bottom: 10px;
  }
  .myorders__item-subtitle {
    margin-bottom: 4px;
  }
  .myorders__item-middle {
    margin-bottom: 20px;
  }
  .myorders__item-bottom {
    margin-left: -76px;
  }
  .order__review {
    display: none;
  }
  .popup {
    width: 100%;
  }
  .popup-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: 0px -20px 65px -5px rgba(18, 18, 23, 0.0392156863), 0px -10px 20px -5px rgba(18, 18, 23, 0.0392156863);
    overflow-y: scroll;
    z-index: 10000;
  }
  .popup__header {
    display: flex;
    border-bottom: 1px solid var(--border-icon);
  }
  .popup__name {
    display: block;
  }
  .popup__wrapper {
    min-height: -moz-max-content;
    min-height: max-content;
    border-radius: 0;
    box-shadow: none;
  }
  .popup__list {
    padding: 0;
  }
  .popup__list-item {
    position: relative;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-icon);
    border-radius: 0;
    font-size: 14px;
    line-height: 17px;
  }
  .popup__bottom {
    display: flex;
    margin-bottom: 70px;
    padding: 20px 0;
    background-color: #fff;
  }
  .popup__links {
    width: 100%;
  }
  .popup__links-active {
    width: 0;
    overflow: hidden;
  }
  .popup__links-item {
    padding: 12.5px 20px;
  }
  .popup__links-link {
    font: 400 14px/20px "PT Root UI", "sans-serif";
    color: var(--black);
  }
  .popup__links-chevron {
    position: relative;
    cursor: pointer;
  }
  .popup__links-chevron::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    width: 7px;
    height: 12px;
    background-image: url("../img/arroy_r.svg");
    transform: translateY(-50%);
  }
  .popup__dropdawn {
    width: 0;
    overflow: hidden;
  }
  .popup__dropdawn-active {
    width: 100%;
  }
  .popup__dropdawn-item {
    padding: 12.5px 20px;
  }
  .popup__dropdawn-link {
    font: 400 14px/20px "PT Root UI", "sans-serif";
    color: var(--black);
  }
  .composition {
    display: block;
    width: 100%;
  }
  .composition-active {
    display: none;
    width: 0;
    overflow: hidden;
  }
  .filters {
    display: none;
    width: 0;
    overflow: hidden;
  }
  .filters-active {
    display: block;
    width: 100%;
  }
  .filters__name {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
  }
  .filters__name::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../img/arroy_l.svg");
    background-repeat: no-repeat;
    background-posetion: center;
    transform: translateY(-50%);
  }
  .contants {
    display: none;
    width: 0;
    background-color: #fff;
    overflow: hidden;
  }
  .contants-active {
    display: block;
    width: 100%;
  }
  .contant {
    padding: 0;
    background-color: #fff;
  }
  .contant__list {
    gap: 0;
    margin: 0;
  }
  .contant__list-item {
    padding: 13.5px 20px;
    border-bottom: 1px solid var(--border-icon);
  }
  .contant__name {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
  }
  .contant__name::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../img/arroy_l.svg");
    background-repeat: no-repeat;
    background-posetion: center;
    transform: translateY(-50%);
  }
}
@media (max-width: 639px) {
  .paymentcard__wrapper {
    margin: 0;
    padding: 16px;
    border-radius: 0;
  }
  .paymentcard__methods-content {
    grid-template-columns: 1fr;
    height: 124px;
  }
  .paymentcard__methods-content-active {
    height: 512px;
  }
  .paymentcard__tab {
    flex: 1 0 auto;
  }
  .features__bouquet {
    background-image: url("../img/row1-small.png");
  }
  .features__shops {
    padding-right: 70px;
    background-image: url("../img/row2-small.png");
  }
  .decorfooter__left-1 {
    left: -100px;
  }
  .decorfooter__left-2 {
    left: -100px;
  }
  .decorfooter__right-1 {
    right: 0;
  }
  .decorfooter__right-2 {
    right: -100px;
  }
  .footer__decor-left {
    left: -60px;
  }
  .card__packages {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__packages-title {
    grid-column: span 2;
  }
}
@media (max-width: 544px) {
  .header__top-small {
    margin: 0 8px;
  }
  .header__bottom-small {
    margin: 0 8px;
  }
  .header__social {
    padding: 24px 16px;
  }
  .products__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .rating__item {
    flex: 0 0 100%;
  }
  .rating__item img {
    width: 163px;
    height: 199px;
    border-radius: 16px;
  }
  .decorfooter__full {
    display: none;
  }
  .decorfooter__small {
    display: block;
  }
  .decorfooter__small img {
    width: 100%;
  }
  .modal-city__list {
    grid-template-columns: repeat(1, 161px);
    grid-auto-flow: row;
  }
  .itc-slider-btn {
    display: none;
  }
}
@media (max-width: 449px) {
  .footer__decor-left {
    left: -100px;
  }
}
@media (max-width: 395px) {
  .modal-city__wrapper {
    border-radius: 0;
  }
}/*# sourceMappingURL=style.css.map */