main {
  overflow: visible;
}
.order-page {
  margin-top: 24px;
}
.order-page__top-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .order-page__top-block {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .order-page__top-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}
.order-page__content {
  margin-bottom: 24px;
}
@media only screen and (min-width: 1024px) {
  .order-page__content {
    position: relative;
    display: flex;
    gap: 16px;
    min-height: 50vh;
  }
}
.order-page__body {
  width: 100%;
}
.order-page__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .order-page__filters {
    flex-direction: row;
  }
  .order-page__filters .order-select {
    width: 100%;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .order-page__filters .order-select {
    width: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .order-page__filters .order-select {
    width: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  .order-page__filters {
    width: 1056px;
  }
}
@media only screen and (min-width: 1024px) {
  .order-page__filters #location-select .order-select__list {
    width: fit-content;
    min-width: 100%;
    right: auto;
  }
}
.order-page__areas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1024px) {
  .order-page__areas {
    margin-bottom: 0;
  }
}
.order-page__summary {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .order-page__summary {
    position: sticky;
    top: 116px;
    display: flex;
    flex-shrink: 0;
    width: 346px;
    height: fit-content;
  }
}
@media only screen and (min-width: 1200px) {
  .order-page__summary {
    width: 432px;
  }
}
@media only screen and (min-width: 1920px) {
  .order-page__summary {
    width: 520px;
  }
}
@media only screen and (min-width: 1024px) {
  .order-page__actions {
    display: none;
  }
}
.order-page__info {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.order-page__info svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #9000ed;
}
.order-page__info .tooltip {
  display: none;
  z-index: 2;
  bottom: calc(100% + 12px);
  left: -50%;
  max-width: 632px;
  width: max-content;
}
@media only screen and (min-width: 768px) {
  .order-page__info .tooltip {
    display: block;
  }
}
.order-page__info .tooltip__arrow {
  bottom: calc(100% + 4px);
  left: 4px;
  transform: translateX(0);
  opacity: 0;
}
.order-page__info .tooltip.visible + .tooltip__arrow {
  opacity: 1;
}
.order-page__description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px 16px 0 16px;
  border-top: 1px solid #e8e9eb;
}
@media only screen and (min-width: 768px) {
  .order-page__description {
    margin-left: 0;
    margin-right: 0;
    padding: 16px 0 0 0;
  }
}
html.dark .order-page__info svg {
  stroke: #a85bf6;
}
html.dark .order-page__description {
  border-color: rgba(255, 254, 255, 0.1);
}
.summary-mob {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: fit-content;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  .summary-mob {
    display: none;
  }
}
.summary-mob.open {
  height: 100%;
}
.summary-mob.open .summary-mob__overlay {
  height: 100%;
  opacity: 1;
  pointer-events: all;
  padding-top: 32px;
}
.summary-mob.open .summary-mob__btn__icon {
  transform: rotate(180deg);
}
.summary-mob__overlay {
  flex-grow: 1;
  width: 100%;
  height: 0;
  display: flex;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  overflow: auto;
}
.summary-mob__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 16px 16px 0 0;
  background-color: #fffeff;
}
@media only screen and (min-width: 768px) {
  .summary-mob__content {
    max-height: fit-content;
  }
}
.summary-mob__head {
  padding: 16px 16px 0 16px;
  border-radius: 16px 16px 0 0;
  background-color: #fffeff;
}
@media only screen and (min-width: 768px) {
  .summary-mob__head {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 768px;
    padding: 16px 32px 0 32px;
  }
}
.summary-mob__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: -8px;
}
@media only screen and (min-width: 768px) {
  .summary-mob__top {
    margin-right: -16px;
    margin-bottom: 16px;
  }
}
.summary-mob__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.summary-mob__close {
  display: flex;
  margin: 0;
  border: none;
  background-color: inherit;
  padding: 14px;
}
.summary-mob__close svg {
  width: 20px;
  height: 20px;
  stroke: #1d233b;
}
.summary-mob__reset {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .summary-mob__reset {
    margin-bottom: 16px;
  }
}
.summary-mob__list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 8px 16px 8px;
  background-color: #fffeff;
}
@media only screen and (min-width: 768px) {
  .summary-mob__list {
    flex-grow: 0;
    padding: 8px 0 16px 0;
  }
  .summary-mob__list > * {
    width: 100%;
    max-width: 704px;
    margin-left: auto;
    margin-right: auto;
  }
}
.summary-mob__option {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 16px;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.summary-mob__option__wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.summary-mob__option__time {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
}
@media only screen and (min-width: 768px) {
  .summary-mob__option__time {
    font-size: 16px;
    line-height: 20px;
  }
}
.summary-mob__option__time svg {
  width: 20px;
  height: 20px;
  stroke: #7a7d8d;
}
.summary-mob__accordeon.open .summary-mob__accordeon__icon {
  transform: rotate(180deg);
}
.summary-mob__accordeon.open .summary-mob__accordeon__list {
  opacity: 1;
  pointer-events: all;
  margin-top: 8px;
}
.summary-mob__accordeon__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgba(29, 35, 59, 0.05);
  cursor: pointer;
}
.summary-mob__accordeon__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-mob__accordeon__icon {
  width: 20px;
  height: 20px;
  fill: #1d233b;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.summary-mob__accordeon__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  padding: 0 8px;
  opacity: 0;
  pointer-events: none;
  list-style: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.summary-mob__accordeon__item {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 16px;
  min-height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
}
.summary-mob__divider {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: #d2d3d8;
}
.summary-mob__amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.summary-mob__amount__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-mob__info {
  position: relative;
  display: flex;
}
.summary-mob__info svg {
  width: 20px;
  height: 20px;
  stroke: #9000ed;
}
.summary-mob__tooltip {
  bottom: calc(100% + 8px);
  left: -60px;
  width: max-content;
  max-width: 80vw;
}
@media only screen and (min-width: 768px) {
  .summary-mob__tooltip {
    max-width: 632px;
  }
}
.summary-mob__tooltip .tooltip__arrow {
  left: 56px;
  transform: translateX(0);
}
.summary-mob__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.summary-mob__menu {
  border-top: 1px solid #d2d3d8;
  background-color: #fffeff;
}
.summary-mob__container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .summary-mob__container {
    padding: 16px 32px 32px 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}
.summary-mob__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  border: 1px solid #d2d3d8;
  border-radius: 12px;
  background-color: inherit;
  margin: 0;
  padding: 6px 14px;
  cursor: pointer;
}
.summary-mob__btn__icon {
  width: 20px;
  height: 20px;
  fill: #1d233b;
}
.summary-mob__btn__text {
  display: none;
}
@media only screen and (min-width: 768px) {
  .summary-mob__btn__text {
    display: inline-block;
    color: #1d233b;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.32px;
  }
}
.summary-mob__confirm {
  flex-grow: 1;
  height: 48px;
}
.summary-mob__confirm__price {
  display: none;
}
@media only screen and (min-width: 768px) {
  .summary-mob__confirm__price {
    display: inline-block;
  }
}
.summary-mob__confirm__icon {
  width: 20px;
  height: 20px;
}
.summary-mob__confirm[data-state=order] .summary-mob__confirm__text--ask {
  display: none;
}
.summary-mob__confirm[data-state=availability] {
  border-color: #1d233b;
}
.summary-mob__confirm[data-state=availability]::before {
  background-color: #1d233b;
}
.summary-mob__confirm[data-state=availability] .summary-mob__confirm__price,
.summary-mob__confirm[data-state=availability] .summary-mob__confirm__text--order,
.summary-mob__confirm[data-state=availability] .summary-mob__confirm__icon {
  display: none;
}
html.dark .summary-mob__head, html.dark .summary-mob__list, html.dark .summary-mob__content {
  background-color: #1d233b;
}
html.dark .summary-mob__close svg {
  stroke: #fffeff;
}
html.dark .summary-mob__option__time svg {
  stroke: rgba(255, 254, 255, 0.7);
}
html.dark .summary-mob__accordeon__head {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .summary-mob__accordeon__icon {
  fill: #fffeff;
}
html.dark .summary-mob__divider {
  background-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary-mob__info svg {
  stroke: #a85bf6;
}
html.dark .summary-mob__menu {
  background-color: #1d233b;
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary-mob__btn {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary-mob__btn__icon {
  fill: #fffeff;
}
html.dark .summary-mob__btn__text {
  color: #fffeff;
}
html.dark .summary-mob__confirm[data-state=availability] {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary-mob__confirm[data-state=availability]::before {
  background-color: rgba(255, 254, 255, 0.2);
}
.summary {
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d2d3d8;
  background-color: rgba(29, 35, 59, 0.03);
}
.summary__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 8px;
}
.summary__reset {
  padding: 14px 0;
  background-color: inherit;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #1d233b;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.summary__reset:disabled {
  color: #d2d3d8;
  pointer-events: none;
}
.summary__reset:hover {
  color: #9000ed;
}
.summary__modal {
  position: absolute;
  right: -17px;
  top: 100%;
  transform: rotateX(90deg);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 296px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: #fffeff;
  box-shadow: 0px 2px 18px 0px rgba(144, 0, 237, 0.1);
  opacity: 0;
  pointer-events: none;
}
.summary__modal.open {
  opacity: 1;
  pointer-events: all;
  transform: rotateX(0deg);
}
.summary__modal__text {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  padding: 8px;
}
.summary__modal__options {
  padding: 8px;
}
.summary__option {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 16px;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.summary__option__wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.summary__option__time {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
}
@media only screen and (min-width: 768px) {
  .summary__option__time {
    font-size: 16px;
    line-height: 20px;
  }
}
.summary__option__time svg {
  width: 20px;
  height: 20px;
  stroke: #7a7d8d;
}
.summary__accordeon.open .summary__accordeon__icon {
  transform: rotate(180deg);
}
.summary__accordeon.open .summary__accordeon__list {
  opacity: 1;
  pointer-events: all;
  margin-top: 8px;
}
.summary__accordeon__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: #fffeff;
  cursor: pointer;
}
.summary__accordeon__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary__accordeon__icon {
  width: 20px;
  height: 20px;
  fill: #1d233b;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.summary__accordeon__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  padding: 0 8px;
  opacity: 0;
  pointer-events: none;
  list-style: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.summary__accordeon__item {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
  cursor: pointer;
}
.summary__divider {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: #d2d3d8;
}
.summary__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.summary__item__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary__item__info {
  width: 20px;
  height: 20px;
  stroke: #9000ed;
}
.summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.summary__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary__triple-button {
  width: 100%;
}
.summary__triple-button .triple-button__count {
  flex-grow: 1;
}
.summary__confirm {
  width: 100%;
  height: 48px;
}
.summary__confirm__icon {
  width: 20px;
  height: 20px;
}
.summary__confirm[data-state=order] .summary-mob__confirm__text--ask {
  display: none;
}
.summary__confirm[data-state=availability] {
  border-color: #1d233b;
}
.summary__confirm[data-state=availability]::before {
  background-color: #1d233b;
}
.summary__confirm[data-state=availability] .summary-mob__confirm__text--order,
.summary__confirm[data-state=availability] .summary-mob__confirm__icon {
  display: none;
}
html.dark .summary {
  border-color: rgba(255, 254, 255, 0.2);
  background: rgba(255, 254, 255, 0.05);
}
html.dark .summary__reset {
  color: #fffeff;
}
html.dark .summary__reset:hover {
  color: #a85bf6;
}
html.dark .summary__reset:disabled {
  color: rgba(255, 254, 255, 0.2);
}
html.dark .summary__modal {
  background-color: #1d233b;
  border-color: rgba(255, 254, 255, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(171, 181, 234, 0.07);
}
html.dark .summary__option__time svg {
  stroke: rgba(255, 254, 255, 0.7);
}
html.dark .summary__accordeon__head {
  background-color: #1d233b;
}
html.dark .summary__accordeon__icon {
  fill: #fffeff;
}
html.dark .summary__divider {
  background-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary__item__info {
  stroke: #a85bf6;
}
html.dark .summary__confirm[data-state=availability] {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .summary__confirm[data-state=availability]::before {
  background-color: rgba(255, 254, 255, 0.2);
}
.order-block {
  margin: 0 -16px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .order-block {
    margin: 0;
    border-radius: 12px;
    border: 1px solid transparent;
  }
}
.order-block[data-content=storage-options] .order-block__item--storage,
.order-block[data-content=storage-options] .order-block__item--raid {
}
.order-block[data-content=storage-disks] .order-block__item--storage,
.order-block[data-content=storage-disks] .order-block__item--raid {
  display: block;
}
.order-block[data-content=storage-disks] .order-block__storage {
  display: none;
}
.order-block.open {
  border-color: #d2d3d8;
}
@media only screen and (min-width: 768px) {
  .order-block.open .order-block__head {
    border-radius: 12px 12px 0 0;
  }
}
.order-block.open .order-block__head__triger {
  transform: rotate(180deg);
  fill: #1d233b;
}
.order-block.open .order-block__body {
  pointer-events: all;
  opacity: 1;
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .order-block.open .order-block__body {
    padding: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .order-block.open .order-block__body {
    padding: 24px;
  }
}
.order-block#services-block .order-item {
  min-height: 78px;
}
.order-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 40px;
  padding: 0 16px;
  background-color: #e8e9eb;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .order-block__head {
    border-radius: 12px;
    padding: 0 16px 0 4px;
  }
}
.order-block__head__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 5px;
  color: #fffeff;
  font-weight: 600;
  background-color: #9000ed;
}
.order-block__head__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.order-block__head__triger {
  margin-left: auto;
  width: 30px;
  height: 30px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  fill: #9000ed;
}
.order-block__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-block__item--raid {
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__item--raid {
    padding-left: 0;
    padding-right: 0;
  }
}
.order-block__item--raid .order-block__item__head {
  padding-left: 0;
  padding-right: 0;
}
.order-block__item.open .order-block__item__list {
  border-bottom: 1px solid #e8e9eb;
  border-top: 1px solid #e8e9eb;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__item.open .order-block__item__list {
    border: none;
  }
}
.order-block__item.open .order-block__item__list .order-item:not(.active) {
  display: flex;
}
.order-block__item.open .order-block__item__list--flex .order-select {
  display: block;
}
.order-block__item.open .order-block__item__arrow {
  transform: rotate(180deg);
}
.order-block__item.open .order-block__item__trigger-show {
  position: absolute;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.order-block__item.open .order-block__item__trigger-hide {
  position: relative;
  opacity: 1;
  pointer-events: all;
}
.order-block__item.open .order-block__item__shadow {
  display: none;
}
.order-block__item__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 16px 8px 16px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .order-block__item__head {
    padding: 0 0 8px 0;
    cursor: auto;
  }
}
.order-block__item__trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .order-block__item__trigger {
    display: none;
  }
}
.order-block__item__trigger-hide, .order-block__item__trigger-show {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.order-block__item__trigger-hide {
  position: absolute;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.order-block__item__arrow {
  width: 20px;
  height: 20px;
  stroke: #7a7d8d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-block__item__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__item__row {
    padding: 0;
  }
}
.order-block__item__list {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  gap: 8px;
  padding: 0 16px 8px 16px;
  max-height: fit-content;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}
.order-block__item__list .order-item {
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .order-block__item__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
.order-block__item__list .order-item:not(.active) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__item__list .order-item:not(.active) {
    display: flex;
  }
}
.order-block__item__list--flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .order-block__item__list--flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .order-block__item__list--flex .order-select {
    width: 100%;
  }
  .order-block__item__list--flex .order-select__head {
    height: 48px;
  }
  .order-block__item__list--flex .order-item {
    width: calc(50% - 4px);
  }
}
.order-block__item__list--flex .order-select {
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__item__list--flex .order-select {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .order-block__item__list--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.order-block__item__list-item {
  display: none;
  width: 100%;
}
.order-block__item__list-item.isActive {
  display: block;
}
.order-block__item__list__second-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .order-block__item__list__second-list {
    grid-template-columns: 1fr 1fr;
  }
}
.order-block__item__shadow {
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 8px;
  border-radius: 0px 0px 12px 12px;
  border: 1px solid #e8e9eb;
  background-color: rgba(29, 35, 59, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .order-block__item__shadow {
    display: none;
  }
}
.order-block__storage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-block__storage.expanded .order-block__storage__body {
  background-color: rgba(29, 35, 59, 0.05);
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__storage.expanded .order-block__storage__body {
    background-color: inherit;
    padding: 0;
  }
}
.order-block__storage.expanded .order-block__storage__toggle svg {
  transform: rotate(180deg);
}
.order-block__storage.expanded .order-block__storage__text,
.order-block__storage.expanded .order-block__item {
  display: block;
}
.order-block__storage.expanded .storage-item:not(:first-child),
.order-block__storage.expanded .order-block__storage__add,
.order-block__storage.expanded .storage-item__row {
  display: flex;
}
.order-block__storage.expanded .storage-item {
  border-bottom: 1px solid #d2d3d8;
}
.order-block__storage .order-block__item {
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__storage .order-block__item {
    display: block;
    width: 50%;
  }
}
.order-block__storage .order-block__item__head {
  padding-left: 0;
  padding-right: 0;
}
.order-block__storage .order-block__item .order-select__head {
  height: 48px;
}
.order-block__storage .storage-item:not(:first-child) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__storage .storage-item:not(:first-child) {
    display: flex;
  }
}
.order-block__storage .storage-item {
  border-bottom: none;
}
.order-block__storage .storage-item__row {
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__storage .storage-item__row {
    display: flex;
  }
}
.order-block__storage__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__storage__head {
    padding: 0;
  }
}
.order-block__storage__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
@media only screen and (min-width: 768px) {
  .order-block__storage__body {
    background-color: inherit;
    padding: 0;
  }
}
.order-block__storage__text {
  padding: 4px 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .order-block__storage__text {
    display: block;
  }
}
.order-block__storage__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-block__storage__add {
  display: none;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 14px 0;
  background-color: transparent;
  border: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: currentColor;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .order-block__storage__add {
    display: flex;
    margin-bottom: 16px;
  }
}
.order-block__storage__add svg {
  width: 20px;
  height: 20px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke: #1d233b;
}
.order-block__storage__add:hover {
  color: #9000ed;
}
.order-block__storage__add:hover svg {
  stroke: #9000ed;
}
.order-block__storage__add:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.order-block__storage__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background-color: inherit;
  border: none;
  color: currentColor;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-block__storage__toggle:hover {
  color: #9000ed;
}
.order-block__storage__toggle:hover svg {
  stroke: #9000ed;
}
@media only screen and (min-width: 768px) {
  .order-block__storage__toggle {
    display: none;
  }
}
.order-block__storage__toggle svg {
  width: 20px;
  height: 20px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke: #1d233b;
}
html.dark .order-block.open {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .order-block.open .order-block__head__triger {
  fill: #fffeff;
}
html.dark .order-block__head {
  background-color: rgba(255, 254, 255, 0.1);
}
html.dark .order-block__head__triger {
  fill: #a85bf6;
}
html.dark .order-block__item.open .order-block__item__list {
  border-bottom: 1px solid rgba(255, 254, 255, 0.1);
  border-top: 1px solid rgba(255, 254, 255, 0.1);
}
html.dark .order-block__item__arrow {
  stroke: #fffeff;
}
html.dark .order-block__item__shadow {
  border: 1px solid rgba(255, 254, 255, 0.1);
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .order-block__storage.expanded .order-block__storage__body {
  background-color: rgba(255, 254, 255, 0.05);
}
@media only screen and (min-width: 768px) {
  html.dark .order-block__storage.expanded .order-block__storage__body {
    background-color: inherit;
  }
}
html.dark .order-block__storage.expanded .storage-item {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .order-block__storage__add svg {
  stroke: #fffeff;
}
html.dark .order-block__storage__add:hover {
  color: #a85bf6;
}
html.dark .order-block__storage__add:hover svg {
  stroke: #a85bf6;
}
html.dark .order-block__storage__toggle svg {
  stroke: #fffeff;
}
html.dark .order-block__storage__toggle:hover {
  color: #9000ed;
}
html.dark .order-block__storage__toggle:hover svg {
  stroke: #9000ed;
}
.order-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: rgba(29, 35, 59, 0.03);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.order-item--row {
  flex-direction: row;
  gap: 8px;
  padding: 8px;
}
.order-item.order-item--full-width {
  width: 100%;
}
.order-item:hover {
  border-color: #9000ed;
}
.order-item.active {
  background-color: #fffeff;
  border-color: #9000ed;
}
.order-item.active .order-item__chip {
  border-color: transparent;
  background-color: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 1024px) {
  .order-item > span {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .order-item > span {
    max-width: 80%;
  }
}
.order-item--full > span {
  max-width: 100%;
}
.order-item__chip {
  position: absolute;
  top: 12px;
  right: 12px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 10px;
  border-radius: 40px;
  border: 1px solid #d2d3d8;
}
.order-item__top-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-item__wrap {
  display: flex;
  flex-direction: column;
}
.order-item__icon {
  width: 24px;
  height: 24px;
}
.order-item__icon--dark {
  display: none;
}
.order-item__short-text {
  max-width: 50%;
}
.order-item__location {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background-color: rgba(29, 35, 59, 0.05);
}
.order-item__row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-item__time {
  display: inline-flex;
  gap: 4px;
  color: #7a7d8d;
}
.order-item__time svg {
  width: 20px;
  height: 20px;
  stroke: #a5a7b1;
}
html.dark .order-item {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .order-item:hover {
  border-color: #a85bf6;
}
html.dark .order-item.active {
  background-color: #1d233b;
  border-color: #a85bf6;
}
html.dark .order-item.active .order-item__chip {
  border-color: transparent;
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .order-item.active .order-item__location {
  background-color: #1d233b;
}
html.dark .order-item__chip {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .order-item__icon--dark {
  display: block;
}
html.dark .order-item__icon--light {
  display: none;
}
html.dark .order-item__location {
  background-color: rgba(255, 254, 255, 0.05);
}
.storage-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d2d3d8;
}
.storage-item .triple-button {
  flex-grow: 1;
}
.storage-item .order-select {
  flex-grow: 1;
  position: static;
}
@media only screen and (min-width: 768px) {
  .storage-item .order-select {
    position: relative;
  }
}
.storage-item .order-select__head {
  height: 100%;
}
.storage-item .order-select__list {
  width: 100%;
  right: auto;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .storage-item .order-select__list {
    width: 348px;
  }
}
@media only screen and (min-width: 1024px) {
  .storage-item .order-select__list {
    width: 342px;
  }
}
@media only screen and (min-width: 768px) {
  .storage-item {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .storage-item {
    flex-direction: column;
  }
}
@media only screen and (min-width: 1200px) {
  .storage-item {
    flex-direction: row;
  }
}
.storage-item__top {
  position: relative;
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .storage-item__top {
    flex-grow: 1;
  }
}
.storage-item__row {
  position: relative;
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .storage-item__row {
    flex-grow: 1;
  }
}
.storage-item__row .second-color {
  align-self: center;
}
.storage-item__delete {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: inherit;
  border: none;
  cursor: pointer;
}
.storage-item__delete svg {
  width: 20px;
  height: 20px;
  stroke: #1d233b;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.storage-item__delete:hover svg {
  stroke: #9000ed;
}
.storage-item__delete:disabled {
  pointer-events: none;
  opacity: 0.5;
}
html.dark .storage-item {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .storage-item__delete svg {
  stroke: #fffeff;
}
html.dark .storage-item__delete:hover svg {
  stroke: #a85bf6;
}
.order-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .order-actions__buttons {
    flex-direction: row;
  }
}
.order-actions__counter {
  width: 100%;
}
.order-actions__confirm {
  width: 100%;
  height: 48px;
}
.order-actions__confirm__icon {
  width: 20px;
  height: 20px;
}
.order-actions__confirm[data-state=order] .order-actions__confirm__text--ask {
  display: none;
}
.order-actions__confirm[data-state=availability] {
  border-color: #1d233b;
}
.order-actions__confirm[data-state=availability]::before {
  background-color: #1d233b;
}
.order-actions__confirm[data-state=availability] .order-actions__confirm__text--order,
.order-actions__confirm[data-state=availability] .order-actions__confirm__icon {
  display: none;
}
html.dark .order-actions__confirm[data-state=availability] {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .order-actions__confirm[data-state=availability]::before {
  background-color: rgba(255, 254, 255, 0.2);
}
.request-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  padding-top: 32px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .request-modal-overlay {
    align-items: center;
    justify-content: center;
  }
}
.request-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.request-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 48px 16px 16px 16px;
  border-radius: 16px 16px 0px 0px;
  background-color: #fffeff;
}
@media only screen and (min-width: 768px) {
  .request-modal {
    padding: 80px 32px 32px 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .request-modal {
    justify-content: flex-start;
    gap: 32px;
    width: 600px;
    height: auto;
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid transparent;
  }
}
@media only screen and (min-width: 768px) {
  .request-modal__body {
    width: 464px;
  }
}
@media only screen and (min-width: 1024px) {
  .request-modal__body {
    width: 100%;
  }
}
.request-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 48px;
  height: 48px;
  border: none;
  background-color: inherit;
  padding: 14px;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.request-modal__close:hover {
  background-color: #e8e9eb;
}
@media only screen and (min-width: 768px) {
  .request-modal__close {
    top: 16px;
    right: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .request-modal__close {
    top: 10px;
    right: 10px;
  }
}
.request-modal__close svg {
  height: 20px;
  width: 20px;
}
.request-modal__close svg path {
  stroke: #1d233b;
}
.request-modal__title {
  margin: 0 0 16px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.request-modal__message {
  margin-bottom: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.request-modal__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .request-modal__form {
    width: 325px;
    margin: 0 auto;
  }
}
.request-modal__form .checkbox__label {
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.28px;
}
.request-modal__submit {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 1024px) {
  .request-modal__submit {
    width: fit-content;
  }
}
html.dark .request-modal {
  background-color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  html.dark .request-modal {
    border-color: rgba(255, 254, 255, 0.1);
  }
}
html.dark .request-modal__close:hover {
  background: #fffeff;
}
html.dark .request-modal__close:hover path {
  stroke: #090909;
}
html.dark .request-modal__close path {
  stroke: #fffeff;
}
.reset-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}
.reset-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.reset-modal {
  width: 100%;
  max-width: 368px;
  padding: 0 16px 16px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background-color: #fffeff;
  box-shadow: 0px -4px 16px 0px rgba(96, 46, 132, 0.15);
}
.reset-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-right: -16px;
}
.reset-modal__close {
  display: flex;
  width: 48px;
  height: 48px;
  border: none;
  background-color: inherit;
  padding: 14px;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reset-modal__close:hover {
  background-color: #e8e9eb;
}
.reset-modal__close svg {
  height: 20px;
  width: 20px;
}
.reset-modal__close svg path {
  stroke: #1d233b;
}
.reset-modal__message {
  margin-bottom: 32px;
}
.reset-modal__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reset-modal__actions .btn {
  flex-grow: 1;
  height: 48px;
}
html.dark .reset-modal {
  background-color: #1d233b;
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .reset-modal__close:hover {
  background: #fffeff;
}
html.dark .reset-modal__close:hover path {
  stroke: #090909;
}
html.dark .reset-modal__close path {
  stroke: #fffeff;
}
.order-share {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .order-share {
    width: fit-content;
  }
}
.order-share__btn {
  height: 48px;
  width: 100%;
}
.order-share__btn svg path {
  stroke: #1d233b;
}
@media only screen and (min-width: 768px) {
  .order-share__btn {
    width: fit-content;
  }
}
@media only screen and (min-width: 1024px) {
  .order-share__btn {
    border: none;
  }
  .order-share__btn:before {
    display: none;
  }
  .order-share__btn:hover {
    color: #9000ed;
  }
  .order-share__btn svg path {
    stroke: #9000ed;
  }
}
.order-share__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  transform: rotateX(90deg);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 8px;
  border-radius: 12px;
  background-color: #fffeff;
  box-shadow: 0px 2px 18px 0px rgba(144, 0, 237, 0.1);
}
@media only screen and (min-width: 768px) {
  .order-share__menu {
    width: 278px;
  }
}
@media only screen and (min-width: 1024px) {
  .order-share__menu {
    width: 100%;
  }
}
.order-share__menu.open {
  opacity: 1;
  pointer-events: auto;
  z-index: 100;
  transform: rotateX(0);
}
.order-share__tooltip {
  top: -38px;
  left: 8px;
}
@media only screen and (min-width: 1024px) {
  .order-share__tooltip {
    left: -38px;
  }
}
.order-share__button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  color: #1d233b;
  cursor: pointer;
  background: inherit;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-share__button:hover {
  background-color: rgba(29, 35, 59, 0.05);
}
.order-share__icon {
  width: 20px;
  height: 20px;
}
.order-share__icon--dark {
  display: none;
}
.order-share__divider {
  width: 100%;
  height: 1px;
  background: #e8e9eb;
}
html.dark .order-share__menu {
  background-color: #1d233b;
  box-shadow: 0px 4px 20px 0px rgba(171, 181, 234, 0.07);
  border: 1px solid rgba(255, 254, 255, 0.1);
}
html.dark .order-share__btn svg path {
  stroke: #fffeff;
}
@media only screen and (min-width: 1024px) {
  html.dark .order-share__btn:hover {
    color: #a85bf6;
  }
  html.dark .order-share__btn svg path {
    stroke: #a85bf6;
  }
}
html.dark .order-share__button {
  color: #fffeff;
}
html.dark .order-share__button:hover {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .order-share__icon--light {
  display: none;
}
html.dark .order-share__icon--dark {
  display: block;
}
html.dark .order-share__divider {
  background-color: rgba(255, 254, 255, 0.1);
}
.info-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}
.info-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.info-modal {
  width: 100%;
  padding: 0 16px 16px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background-color: #fffeff;
  box-shadow: 0px -4px 16px 0px rgba(96, 46, 132, 0.15);
}
.info-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-right: -16px;
}
.info-modal__close {
  display: flex;
  width: 48px;
  height: 48px;
  border: none;
  background-color: inherit;
  padding: 14px;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.info-modal__close:hover {
  background-color: #e8e9eb;
}
.info-modal__close svg {
  height: 20px;
  width: 20px;
}
.info-modal__close svg path {
  stroke: #1d233b;
}
.info-modal__message {
  margin-bottom: 16px;
}
.info-modal__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1d233b;
}
.info-modal .btn {
  width: 100%;
  height: 48px;
}
html.dark .info-modal {
  background-color: #1d233b;
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .info-modal__close:hover {
  background: #fffeff;
}
html.dark .info-modal__close:hover path {
  stroke: #090909;
}
html.dark .info-modal__close path {
  stroke: #fffeff;
}
html.dark .info-modal__link {
  color: #fffeff;
}