@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 8px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами


/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 440px;
  height: 70px;
  padding: 0;
  border: 1px solid #ff37c7;
  border-radius: 16px;
  color: #ff37c7;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.auth-button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.auth-button:active {
  transform: scale(0.985);
}
.auth-button--primary {
  background: #ff37c7;
  color: #ffffff;
}
.auth-button--primary:hover {
  background: #ed2bb4;
  border-color: #ed2bb4;
}
.auth-button--secondary {
  background: #ffffff;
}
.auth-button--secondary:hover {
  background: #fff2fb;
}
.auth-button--wide {
  width: 910px;
}
.auth-button:disabled {
  border-color: rgba(255, 55, 199, 0.6);
  background: rgba(255, 55, 199, 0.6);
  color: #ffffff;
  cursor: not-allowed;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .auth-button {
    transition: none;
  }
}
html:has(.welcome),
body:has(.welcome) {
  width: 1200px;
  height: 800px;
  overflow: hidden;
}

body:has(.welcome) {
  min-width: 1200px;
  min-height: 800px;
  background: #ffffff;
}

.welcome {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.welcome__illustration {
  position: absolute;
  inset-block-start: 59px;
  inset-inline-start: 439px;
  width: 322px;
  height: 322px;
  max-width: none;
}
.welcome__content {
  position: absolute;
  inset-block-start: 446px;
  inset-inline: 0;
  text-align: center;
}
.welcome__title {
  color: #131313;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.45px;
}
.welcome__description {
  margin-block-start: 14px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
}
.welcome__actions {
  position: absolute;
  inset-block-start: 596px;
  inset-inline-start: 145px;
  display: grid;
  grid-template-columns: repeat(2, 440px);
  column-gap: 30px;
}
.welcome__legal {
  position: absolute;
  inset-block-start: 718px;
  inset-inline: 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.welcome__legal-link {
  color: #ff37c7;
  text-decoration: none;
}
.welcome__legal-link:hover {
  text-decoration: underline;
}
.welcome__legal-link:focus-visible {
  border-radius: 2px;
  outline: 2px solid rgba(255, 55, 199, 0.35);
  outline-offset: 2px;
}

html:has(.recovery),
body:has(.recovery) {
  width: 1200px;
  height: 800px;
  overflow: hidden;
}

body:has(.recovery) {
  min-width: 1200px;
  min-height: 800px;
  background: #ffffff;
}

.recovery {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.recovery__logo {
  position: absolute;
  inset-block-start: 60px;
  inset-inline-start: 565px;
  width: 70px;
  height: 70px;
  max-width: none;
}
.recovery__back {
  position: absolute;
  z-index: 2;
  inset-block-start: 196px;
  inset-inline-start: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.recovery__back:hover {
  color: #131313;
}
.recovery__back:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(255, 55, 199, 0.35);
  outline-offset: 4px;
}
.recovery__back-icon {
  flex: none;
}
.recovery__title {
  position: absolute;
  inset-block-start: 180px;
  inset-inline: 0;
  color: #131313;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
  letter-spacing: -1.45px;
}
.recovery__phrase {
  position: absolute;
  inset-block-start: 277px;
  inset-inline-start: 145px;
  width: 910px;
  height: 154px;
  padding-block-start: 39px;
  padding-inline: 40px;
  border-radius: 16px;
  background: #f9f9f9;
}
.recovery__words {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 28px 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.recovery__word {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
}
.recovery__number {
  color: #6a6a6a;
}
.recovery__notice {
  position: absolute;
  inset-block-start: 451px;
  inset-inline-start: 145px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 910px;
  height: 86px;
  padding-inline: 32px;
  border-radius: 16px;
  background: #f9f9f9;
}
.recovery__notice-icon {
  flex: none;
}
.recovery__notice-text {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.recovery__actions {
  position: absolute;
  inset-block-start: 611px;
  inset-inline-start: 145px;
  display: grid;
  grid-template-columns: repeat(2, 440px);
  column-gap: 30px;
}

html:has(.verify),
body:has(.verify) {
  width: 1200px;
  height: 800px;
  overflow: hidden;
}

body:has(.verify) {
  min-width: 1200px;
  min-height: 800px;
  background: #ffffff;
}

.verify {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.verify__logo {
  position: absolute;
  inset-block-start: 60px;
  inset-inline-start: 565px;
  width: 70px;
  height: 70px;
  max-width: none;
}
.verify__back {
  position: absolute;
  z-index: 2;
  inset-block-start: 196px;
  inset-inline-start: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.verify__back:hover {
  color: #131313;
}
.verify__back:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(255, 55, 199, 0.35);
  outline-offset: 4px;
}
.verify__back-icon {
  flex: none;
}
.verify__heading {
  position: absolute;
  inset-block-start: 180px;
  inset-inline: 0;
  text-align: center;
}
.verify__title {
  color: #131313;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.45px;
}
.verify__description {
  margin-block-start: 13px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.verify__form {
  position: absolute;
  inset-block-start: 328px;
  inset-inline-start: 145px;
  width: 910px;
}
.verify__field {
  display: block;
}
.verify__field + .verify__field {
  margin-block-start: 27px;
}
.verify__label {
  display: block;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.verify__input {
  display: block;
  width: 910px;
  height: 82px;
  margin-block-start: 20px;
  padding-inline: 40px;
  border: 0;
  border-radius: 16px;
  outline: 2px solid transparent;
  background: #f9f9f9;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  transition: outline-color 160ms ease;
}
.verify__input::placeholder {
  color: #6a6a6a;
  opacity: 1;
}
.verify__input:focus-visible {
  outline-color: #ff37c7;
}
.verify__error {
  margin: 20px 0 0;
  color: #f04438;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.verify__error[hidden] {
  display: block;
  visibility: hidden;
}
.verify__submit {
  margin-block-start: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .verify__input {
    transition: none;
  }
}
html:has(.wallet-created),
body:has(.wallet-created) {
  width: 1200px;
  height: 800px;
  overflow: hidden;
}

body:has(.wallet-created) {
  min-width: 1200px;
  min-height: 800px;
  background: #ffffff;
}

.wallet-created {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.wallet-created__logo {
  position: absolute;
  inset-block-start: 276px;
  inset-inline-start: 565px;
  width: 70px;
  height: 70px;
  max-width: none;
}
.wallet-created__content {
  position: absolute;
  inset-block-start: 395px;
  inset-inline: 0;
  text-align: center;
}
.wallet-created__title {
  color: #131313;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.45px;
}
.wallet-created__description {
  margin-block-start: 16px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.wallet-created__button {
  position: absolute;
  inset-block-start: 667px;
  inset-inline-start: 145px;
}

html:has(.import-wallet),
body:has(.import-wallet) {
  width: 1200px;
  height: 800px;
  overflow: hidden;
}

body:has(.import-wallet) {
  min-width: 1200px;
  min-height: 800px;
  background: #ffffff;
}

.import-wallet {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.import-wallet__logo {
  position: absolute;
  inset-block-start: 60px;
  inset-inline-start: 565px;
  width: 70px;
  height: 70px;
  max-width: none;
}
.import-wallet__back {
  position: absolute;
  z-index: 2;
  inset-block-start: 196px;
  inset-inline-start: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.import-wallet__back:hover {
  color: #131313;
}
.import-wallet__back:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(255, 55, 199, 0.35);
  outline-offset: 4px;
}
.import-wallet__back-icon {
  flex: none;
}
.import-wallet__heading {
  position: absolute;
  inset-block-start: 180px;
  inset-inline: 0;
  text-align: center;
}
.import-wallet__title {
  color: #131313;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.45px;
}
.import-wallet__description {
  margin-block-start: 13px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.import-wallet__phrase {
  position: absolute;
  inset-block-start: 319px;
  inset-inline-start: 145px;
  width: 910px;
  height: 258px;
  overflow: hidden;
  border-radius: 16px;
  background: #f9f9f9;
}
.import-wallet__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.import-wallet__empty:focus-visible {
  outline: 2px solid #ff37c7;
  outline-offset: -2px;
}
.import-wallet__empty[hidden], .import-wallet__grid[hidden] {
  display: none;
}
.import-wallet__grid {
  display: grid;
  grid-template-columns: repeat(6, 125px);
  gap: 28px 17px;
  padding-block-start: 40px;
  padding-inline-start: 35px;
}
.import-wallet__word {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.import-wallet__word > span {
  flex: 0 0 20px;
  text-align: right;
}
.import-wallet__word input {
  width: 93px;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #131313;
  font: inherit;
  caret-color: #131313;
}
.import-wallet__actions {
  position: absolute;
  inset-block-start: 611px;
  inset-inline-start: 145px;
  display: grid;
  grid-template-columns: repeat(2, 440px);
  column-gap: 30px;
}

body:has(.portfolio) {
  min-width: 1200px;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}

.portfolio {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
.portfolio button,
.portfolio input {
  font-family: inherit;
}
.portfolio button {
  border: 0;
}
.portfolio button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.portfolio__overview {
  position: absolute;
  inset: 40px auto auto 134px;
  width: 546px;
  height: 740px;
}
.portfolio__analytics {
  position: absolute;
  inset: 20px 20px auto auto;
  width: 460px;
  height: 760px;
}

.portfolio-sidebar {
  position: absolute;
  inset: 20px auto 20px 20px;
  z-index: 3;
  width: 74px;
  border: 1px solid #e7e7e7;
  border-radius: 17px;
  background: #ffffff;
}
.portfolio-sidebar__logo {
  width: 40px;
  height: 40px;
  margin: 18px auto 0;
}
.portfolio-sidebar__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.portfolio-sidebar__item, .portfolio-sidebar__logout {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 11px;
  background: transparent;
}
.portfolio-sidebar__item {
  color: #6a6a6a;
  transition: background-color 150ms ease;
}
.portfolio-sidebar__item:hover .portfolio-sidebar__icon, .portfolio-sidebar__item:focus-visible .portfolio-sidebar__icon {
  opacity: 1;
}
.portfolio-sidebar__item:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 2px;
}
.portfolio-sidebar__item--active {
  background: #ffeffb;
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  mask-image: none;
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon--home {
  background-image: url("../icons/portfolio/home-active.svg");
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon--receipt {
  background-image: url("../icons/portfolio/receipt-active.svg");
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon--activity {
  background-image: url("../icons/portfolio/activity-active.svg");
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon--tax {
  background-image: url("../icons/portfolio/tax-active.svg");
}
.portfolio-sidebar__item--active .portfolio-sidebar__icon--settings {
  background-image: url("../icons/portfolio/settings-active.svg");
}
.portfolio-sidebar__icon {
  display: block;
  width: 20px;
  height: 22px;
  background-color: currentColor;
  opacity: 0.5;
  transition: opacity 150ms ease;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.portfolio-sidebar__icon--home {
  height: 20px;
  mask-image: url("../icons/portfolio/home.svg");
}
.portfolio-sidebar__icon--receipt {
  width: 18px;
  mask-image: url("../icons/portfolio/receipt.svg");
}
.portfolio-sidebar__icon--activity {
  height: 20px;
  mask-image: url("../icons/portfolio/activity.svg");
}
.portfolio-sidebar__icon--tax {
  height: 20px;
  mask-image: url("../icons/portfolio/tax.svg");
}
.portfolio-sidebar__icon--settings {
  mask-image: url("../icons/portfolio/settings.svg");
}
.portfolio-sidebar__logout {
  position: absolute;
  bottom: 13px;
  left: 12px;
}
.portfolio-sidebar__logout-icon {
  width: 18px;
  height: 19px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-sidebar__item, .portfolio-sidebar__icon {
    transition: none;
  }
}
.portfolio-account {
  display: flex;
  align-items: center;
  height: 46px;
}
.portfolio-account__avatar {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: cover;
  object-position: center;
}
.portfolio-account__details {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  line-height: 1.3;
}
.portfolio-account__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
.portfolio-account__address-row {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 21px;
  margin-top: 3px;
}
.portfolio-account__address {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  transition: color 150ms ease;
}
.portfolio-account__address--copied {
  color: #ff37c7;
}
.portfolio-account__copy {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  background: transparent;
}
.portfolio-account__copy svg {
  display: block;
}
.portfolio-account > .portfolio-account__copy {
  align-self: flex-end;
  margin: 0 0 1px 4px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-account__address {
    transition: none;
  }
}
.portfolio-balance {
  margin-top: 30px;
}
.portfolio-balance__title {
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
}
.portfolio-balance__amount {
  display: block;
  min-width: 0;
  height: 75px;
  margin-top: 13px;
  padding: 0;
  background: transparent;
  color: #131313;
  font-weight: 600;
  font-size: 58px;
  line-height: 70px;
  text-align: left;
}
.portfolio-balance__decimal {
  color: #6a6a6a;
}
.portfolio-balance__change {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.portfolio-balance__period {
  margin-left: 3px;
  color: #b4b4b4;
}

.portfolio-indicator {
  display: inline-block;
  flex: 0 0 auto;
  width: 13px;
  height: 11px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.portfolio-indicator--up {
  background-image: url("../icons/portfolio/up.svg");
}
.portfolio-indicator--down {
  background-image: url("../icons/portfolio/down.svg");
}

.portfolio-receive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 546px;
  height: 71px;
  margin-top: 30px;
  border-radius: 16px;
  background: #ff37c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 150ms ease, transform 150ms ease;
}
.portfolio-receive:hover {
  background: #ed2bb4;
}
.portfolio-receive:active {
  transform: scale(0.992);
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-receive {
    transition: none;
  }
}
.portfolio-tokens {
  margin-top: 38px;
}
.portfolio-tokens__title {
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
}
.portfolio-tokens__table {
  height: 330px;
  margin-top: 18px;
  overflow-y: auto;
  scrollbar-width: none;
}
.portfolio-tokens__table::-webkit-scrollbar {
  display: none;
}
.portfolio-tokens__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px 116px 109px 111px;
  align-items: center;
  width: 546px;
  height: 53px;
  padding-inline: 20px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.portfolio-tokens__header span:last-child {
  text-align: right;
  white-space: nowrap;
}
.portfolio-tokens__body {
  padding-top: 9px;
}

.portfolio-token {
  display: grid;
  grid-template-columns: 185px 121px 103px 111px;
  align-items: center;
  width: 546px;
  min-height: 66px;
  padding-inline: 2px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
.portfolio-token[hidden] {
  display: none;
}
.portfolio-token__asset {
  display: flex;
  align-items: center;
  min-width: 0;
}
.portfolio-token__asset > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-left: 10px;
}
.portfolio-token__asset strong {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.portfolio-token__asset small {
  color: #6a6a6a;
  font-size: 16px;
}
.portfolio-token__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}
.portfolio-token__price, .portfolio-token__balance {
  white-space: nowrap;
}
.portfolio-token__balance {
  color: #313131;
}
.portfolio-token__profit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.portfolio-token__profit strong {
  font-weight: 500;
}
.portfolio-token__profit small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6a6a6a;
  font-size: 16px;
}
.portfolio-token__profit .portfolio-indicator {
  width: 12px;
  height: 10px;
}

.portfolio-search {
  display: flex;
  align-items: center;
  width: 460px;
  height: 70px;
  padding-inline: 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #f8f8f8;
  transition: border-color 150ms ease;
}
.portfolio-search__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
}
.portfolio-search input {
  width: 100%;
  height: 40px;
  margin-left: 17px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
}
.portfolio-search input::-webkit-search-cancel-button {
  display: none;
}
.portfolio-search input::placeholder {
  color: #6a6a6a;
  opacity: 1;
}
.portfolio-search__clear {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 40px;
  margin: 0 0 0 10px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ff37c7;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.portfolio-search__clear:focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(255, 55, 199, 0.3);
}
input:placeholder-shown + .portfolio-search__clear {
  pointer-events: none;
  opacity: 0;
}
.portfolio-search:has(input:focus-visible) {
  border-color: #ff37c7;
}

.portfolio .portfolio-search__clear:focus-visible {
  outline: 0;
  outline-offset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-search,
  .portfolio-search__clear {
    transition: none;
  }
}
.portfolio-performance {
  position: relative;
  width: 460px;
  height: 670px;
  margin-top: 20px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #ffffff;
}
.portfolio-performance__divider {
  position: absolute;
  top: 332px;
  left: 39px;
  width: 380px;
  height: 1px;
  background: #e9e9e9;
}
.portfolio-performance__title {
  position: absolute;
  top: 370px;
  left: 39px;
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
}
.portfolio-performance__stats {
  position: absolute;
  top: 420px;
  left: 39px;
  width: 380px;
  margin: 0;
}
.portfolio-performance__stats > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.portfolio-performance__stats dt {
  color: #6a6a6a;
}
.portfolio-performance__stats dd {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #131313;
  white-space: nowrap;
}
.portfolio-performance__stats em {
  color: #6a6a6a;
  font-style: normal;
}
.portfolio-performance__transactions {
  position: absolute;
  bottom: 39px;
  left: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 71px;
  border: 1px solid #ff37c7 !important;
  border-radius: 16px;
  background: #ffffff;
  color: #ff37c7;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}
.portfolio-performance__transactions:hover {
  background: #fff2fb;
}
.portfolio-performance__transactions:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.portfolio-performance__transactions:active {
  transform: scale(0.992);
}

.portfolio-chart {
  position: absolute;
  top: 52px;
  left: 28px;
  width: 404px;
  height: 190px;
}
.portfolio-chart canvas {
  width: 404px !important;
  height: 190px !important;
}

.portfolio-periods {
  position: absolute;
  top: 275px;
  left: 52px;
  display: grid;
  grid-template-columns: repeat(5, 51px);
  column-gap: 23px;
}
.portfolio-periods button {
  width: 51px;
  height: 38px;
  padding: 0;
  border-radius: 22px;
  background: transparent;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  transition: background-color 150ms ease, color 150ms ease;
}
.portfolio-periods button:hover {
  color: #131313;
}
.portfolio-periods__active {
  background: #ededed !important;
  color: #131313 !important;
  font-weight: 600 !important;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-performance__transactions {
    transition: none;
  }
  .portfolio-periods button {
    transition: none;
  }
}
.portfolio--empty .portfolio-balance__amount {
  cursor: default;
}
.portfolio--empty .portfolio-indicator--neutral {
  background-image: none;
}
.portfolio--empty .portfolio-tokens__title span {
  color: #6a6a6a;
}
.portfolio--empty .portfolio-tokens__table {
  overflow: hidden;
}

.portfolio-empty__tokens {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 84px;
  text-align: center;
}
.portfolio-empty__tokens-icon, .portfolio-empty__activity-icon {
  display: grid;
  place-items: center;
  background: #ffeffb;
}
.portfolio-empty__tokens-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}
.portfolio-empty__tokens-title {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}
.portfolio-empty__tokens-description {
  margin: 9px 0 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

.receive-modal {
  position: absolute;
  inset: 0;
  z-index: 20;
}
.receive-modal[hidden] {
  display: none;
}
.receive-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 19, 0.3);
  opacity: 0;
  transition: opacity 190ms ease;
}
.receive-modal__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: 480px;
  height: 800px;
  border-radius: 24px 0 0 24px;
  background: #ffffff;
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.receive-modal--visible .receive-modal__backdrop {
  opacity: 1;
}
.receive-modal--visible .receive-modal__panel {
  opacity: 1;
  transform: translateX(0);
}
.receive-modal__header {
  position: relative;
  height: 85px;
}
.receive-modal__title {
  position: absolute;
  top: 38px;
  left: 40px;
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.receive-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  background: transparent;
}
.receive-modal__qr {
  width: 280px;
  height: 280px;
  margin: 30px auto 0;
}
.receive-modal__address-card {
  position: relative;
  width: 400px;
  height: 106px;
  margin: 37px auto 0;
  border: 1px solid #eeeeee;
  border-radius: 15px;
}
.receive-modal__address-label {
  position: absolute;
  top: -15px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 18px;
  background: #ffffff;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  white-space: nowrap;
  transform: translateX(-50%);
}
.receive-modal__address-copy {
  display: grid;
  place-items: center;
  width: 18px;
  height: 20px;
  padding: 0;
  background: transparent;
}
.receive-modal__address {
  margin: 31px 0 0;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  transition: color 150ms ease;
}
.receive-modal__address--copied {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: #ff37c7;
}
.receive-modal__networks {
  width: 32px;
  height: 32px;
  margin: 36px auto 0;
}
.receive-modal__description {
  margin-top: 10px;
  color: #131313;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}
.receive-modal__description strong {
  font-weight: 700;
}
.receive-modal__copy-button {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 400px;
  height: 70px;
  padding: 0;
  border-radius: 16px;
  background: #ff37c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 150ms ease, transform 150ms ease;
}
.receive-modal__copy-button:hover {
  background: #ed2bb4;
}
.receive-modal__copy-button:active {
  transform: scale(0.992);
}
.receive-modal__copy-button--copied {
  background: #ed2bb4;
}

@media (prefers-reduced-motion: reduce) {
  .receive-modal__backdrop, .receive-modal__panel, .receive-modal__address, .receive-modal__copy-button {
    transition: none;
  }
}
.logout-modal {
  position: absolute;
  inset: 0;
  z-index: 30;
}
.logout-modal[hidden] {
  display: none;
}
.logout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, 0.3);
  opacity: 0;
  transition: opacity 180ms ease;
}
.logout-modal__panel {
  position: absolute;
  top: 95px;
  left: 360px;
  width: 480px;
  height: 612px;
  border-radius: 24px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 180ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.logout-modal--visible .logout-modal__backdrop {
  opacity: 1;
}
.logout-modal--visible .logout-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.logout-modal__header {
  position: relative;
  height: 69px;
}
.logout-modal__title {
  position: absolute;
  top: 40px;
  left: 40px;
  margin: 0;
  color: #131313;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.logout-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
}
.logout-modal__close svg {
  display: block;
}
.logout-modal__icon {
  position: absolute;
  top: 169px;
  left: 217px;
  width: 46px;
  height: 52px;
}
.logout-modal__warning {
  position: absolute;
  top: 252px;
  left: 40px;
  width: 400px;
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
.logout-modal__warning strong {
  font-weight: 700;
}
.logout-modal__actions {
  position: absolute;
  top: 411px;
  left: 40px;
  display: grid;
  gap: 20px;
  width: 400px;
}
.logout-modal__confirm, .logout-modal__cancel {
  width: 400px;
  height: 70px;
  padding: 0;
  border-radius: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.logout-modal__confirm:active, .logout-modal__cancel:active {
  transform: scale(0.992);
}
.logout-modal__confirm {
  border: 1px solid #ff37c7;
  background: #ff37c7;
  color: #ffffff;
}
.logout-modal__confirm:hover {
  border-color: #ed2bb4;
  background: #ed2bb4;
}
.logout-modal__cancel {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ff37c7;
  color: #ff37c7;
}
.logout-modal__cancel:hover {
  background: #ffeffb;
}

.logout-modal button.logout-modal__cancel {
  border: 1px solid #ff37c7;
}

@media (prefers-reduced-motion: reduce) {
  .logout-modal__backdrop, .logout-modal__panel, .logout-modal__confirm, .logout-modal__cancel {
    transition: none;
  }
}
.copy-message {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 30;
  min-width: 170px;
  margin: 0;
  padding-block: 12px;
  padding-inline: 20px;
  border-radius: 12px;
  background: #131313;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
}
.copy-message[hidden] {
  display: none;
}
.copy-message--visible {
  animation: copy-message-show 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.copy-message--leaving {
  animation: copy-message-hide 170ms ease forwards;
}
.copy-message--error {
  background: #e10f0f;
}

@keyframes copy-message-show {
  from {
    opacity: 0;
    transform: translate(-50%, -12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
@keyframes copy-message-hide {
  from {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -6px) scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .copy-message--visible {
    animation: none;
    opacity: 1;
    transform: translate(-50%, 0);
  }
  .copy-message--leaving {
    animation: none;
    opacity: 0;
  }
}
body:has(.activity) {
  min-width: 1200px;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}
.activity > [data-activity] {
  position: absolute;
  inset: 0;
  pointer-events: none; /* сам контейнер не перехватывает клики */
}

.activity > [data-activity] .activity__feed,
.activity > [data-activity] .activity__feed--empty {
  pointer-events: auto; /* лента снова кликабельна */
}

/* хедер всегда поверх */
.activity__account {
  position: absolute;
  top: 40px;
  left: 134px;
  z-index: 5;
}
.activity {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
.activity button {
  border: 0;
  font-family: inherit;
}
.activity button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.activity__account {
  position: absolute;
  top: 40px;
  left: 134px;
}
.activity__title {
  position: absolute;
  top: 121px;
  left: 134px;
  z-index: 2;
  margin: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
}
.activity__feed {
  position: absolute;
  inset: 184px 40px 0 134px;
  overflow-y: auto;
  padding-top: 16px;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.activity__feed::-webkit-scrollbar {
  display: none;
}

.activity__feed--empty {
  inset: 200px 40px 20px 134px;
  display: grid;
  place-items: center;
  padding: 10px 0 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
}

.activity-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.activity-empty__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 11px;
  background: #ffeffb;
}
.activity-empty__title {
  margin: 27px 0 0;
  font-weight: 700;
  font-size: 23px;
  line-height: 29px;
}
.activity-empty__description {
  margin: 10px 0 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}

.activity-group {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.activity-group + .activity-group {
  margin-top: 29px;
}
.activity-group:last-child {
  border-bottom: 0;
}
.activity-group__title {
  margin: 0 0 10px;
  color: #6a6a6a;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

.activity-transaction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 66px;
}
.activity-transaction__asset {
  display: flex;
  align-items: center;
  min-width: 0;
}
.activity-transaction__icon-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 46px;
}
.activity-transaction__coin {
  width: 46px;
  height: 46px;
}
.activity-transaction__direction {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 23px;
  height: 23px;
}
.activity-transaction__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-left: 13px;
  font-size: 16px;
  line-height: 22px;
}
.activity-transaction__details strong {
  font-weight: 600;
}
.activity-transaction__details small {
  overflow: hidden;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.activity-transaction__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-align: right;
}
.activity-transaction__value strong {
  font-weight: 500;
}
.activity-transaction__value small {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
}
.activity-transaction__value--sent strong {
  color: #e10f0f;
}
.activity-transaction__value--received strong {
  color: #0c8911;
}

body:has(.markets) {
  min-width: 1200px;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}

.markets {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
.markets button {
  border: 0;
  font-family: inherit;
}
.markets button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.markets__account {
  position: absolute;
  top: 40px;
  left: 134px;
}
.markets__search {
  position: absolute;
  top: 20px;
  right: 20px;
}
.markets__title {
  position: absolute;
  top: 121px;
  left: 134px;
  margin: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
}

.market-stats {
  position: absolute;
  top: 200px;
  left: 134px;
  display: grid;
  grid-template-columns: 139px 265px 216px 188px 218px;
  width: 1026px;
  height: 82px;
  border-bottom: 1px solid #e8e8e8;
}
.market-stats__item {
  display: flex;
  flex-direction: column;
  height: 51px;
  padding-left: 60px;
  border-left: 1px solid #e8e8e8;
}
.market-stats__item:first-child {
  padding-left: 0;
  border-left: 0;
}
.market-stats__item span {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.market-stats__item strong {
  margin-top: 5px;
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
  white-space: nowrap;
}

.markets-table {
  position: absolute;
  top: 322px;
  left: 132px;
  width: 1028px;
  height: 478px;
}
.markets-table__title {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
}
.markets-table__title span {
  color: #6a6a6a;
}
.markets-table__scroll {
  height: 431px;
  overflow-y: auto;
  scrollbar-width: none;
}
.markets-table__scroll::-webkit-scrollbar {
  display: none;
}
.markets-table__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 55px 187px 147px 128px 136px 125px 166px 84px;
  align-items: center;
  width: 1028px;
  height: 53px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.markets-table__header span:first-child {
  text-align: center;
}
.markets-table__body {
  padding-top: 9px;
}

.market-token {
  display: grid;
  grid-template-columns: 55px 187px 147px 128px 136px 125px 166px 84px;
  align-items: center;
  width: 1028px;
  min-height: 66px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
.market-token[hidden] {
  display: none;
}
.market-token__rank {
  text-align: center;
}
.market-token__asset {
  display: flex;
  align-items: center;
  min-width: 0;
}
.market-token__asset > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-left: 15px;
}
.market-token__asset strong {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-token__asset small {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
}
.market-token__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}
.market-token__chart {
  width: 110px;
  height: 20px;
  transform: translateX(-47px);
}

.market-change {
  display: flex;
  align-items: center;
  gap: 6px;
}
.market-change .portfolio-indicator, .market-change__indicator {
  width: 13px;
  height: 11px;
}
.market-change__indicator {
  display: inline-block;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.market-change__indicator--neutral {
  background-image: url("../icons/markets/neutral-up.svg");
}

body:has(.tax-reports) {
  min-width: 1200px;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}

.tax-reports {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
.tax-reports button,
.tax-reports select {
  font-family: inherit;
}
.tax-reports button {
  border: 0;
}
.tax-reports button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.tax-reports__account {
  position: absolute;
  top: 40px;
  left: 134px;
}
.tax-reports__title {
  position: absolute;
  top: 121px;
  left: 134px;
  margin: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
}

.tax-controls {
  position: absolute;
  top: 120px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  height: 50px;
}
.tax-controls__year {
  position: relative;
  display: block;
  width: 210px;
  height: 50px;
}
.tax-controls__year select {
  width: 100%;
  height: 100%;
  padding-inline: 16px 45px;
  border: 0;
  border-radius: 12px;
  outline: 0;
  appearance: none;
  background: #f9f9f9;
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.tax-controls__year svg {
  position: absolute;
  top: 20px;
  right: 15px;
  pointer-events: none;
}
.tax-controls__year:has(select:focus-visible) {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
  border-radius: 12px;
}
.tax-controls__methods {
  display: flex;
  gap: 15px;
}
.tax-controls__method {
  width: 70px;
  height: 50px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 55, 199, 0.55);
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 150ms ease, transform 150ms ease;
}
.tax-controls__method:last-child {
  width: 73px;
}
.tax-controls__method:hover {
  background: rgba(255, 55, 199, 0.75);
}
.tax-controls__method:active {
  transform: scale(0.97);
}
.tax-controls__method--active {
  background: #ff37c7;
}

@media (prefers-reduced-motion: reduce) {
  .tax-controls__method {
    transition: none;
  }
}
.tax-summary {
  position: absolute;
  top: 200px;
  left: 134px;
  display: grid;
  grid-template-columns: repeat(3, 326px);
  gap: 24px;
  width: 1026px;
}
.tax-summary__card {
  height: 194px;
  padding: 27px 30px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
}
.tax-summary__label {
  display: block;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.tax-summary__amount {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
}
.tax-summary__breakdown {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
.tax-summary__breakdown li {
  display: flex;
  align-items: center;
}
.tax-summary__breakdown svg {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 10px;
}
.tax-summary__breakdown span {
  margin-left: 4px;
}
.tax-summary__note {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}

.tax-features {
  position: absolute;
  top: 433px;
  left: 134px;
  width: 1026px;
}
.tax-features__title {
  margin: 0;
  font-weight: 600;
  font-size: 29px;
  line-height: 36px;
}
.tax-features__description {
  margin-top: 3px;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  white-space: nowrap;
}
.tax-features__grid {
  display: grid;
  grid-template-columns: 498px 502px;
  gap: 26px;
  margin-top: 28px;
}

.tax-feature {
  height: 138px;
  padding: 29px 40px;
  border-radius: 15px;
  background: #f7f7f7;
}
.tax-feature__heading {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tax-feature__heading svg {
  flex: 0 0 auto;
}
.tax-feature__heading h3 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
}
.tax-feature p {
  margin: 8px 0 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.tax-generate {
  position: absolute;
  bottom: 32px;
  left: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1026px;
  height: 70px;
  padding: 0;
  border-radius: 15px;
  background: #ff37c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 150ms ease, transform 150ms ease;
}
.tax-generate:hover {
  background: #ed2bb4;
}
.tax-generate:active {
  transform: scale(0.995);
}
.tax-generate__progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tax-generate__progress[hidden] {
  display: none;
}
.tax-generate__progress svg {
  animation: tax-generate-rotate 900ms linear infinite;
}
.tax-generate__dots::after {
  content: ".";
  animation: tax-generate-dots 1200ms steps(1, end) infinite;
}
.tax-generate--loading {
  cursor: wait;
}

@keyframes tax-generate-rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes tax-generate-dots {
  0%, 32% {
    content: ".";
  }
  33%, 65% {
    content: "..";
  }
  66%, 100% {
    content: "...";
  }
}
@media (prefers-reduced-motion: reduce) {
  .tax-generate {
    transition: none;
  }
  .tax-generate__progress svg {
    animation: none;
  }
  .tax-generate__dots::after {
    content: "...";
    animation: none;
  }
}
body:has(.settings) {
  min-width: 1200px;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
  color: #131313;
  font-family: "Inter", Arial, sans-serif;
}

.settings {
  position: relative;
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
.settings button,
.settings select {
  font-family: inherit;
}
.settings button {
  border: 0;
}
.settings button:focus-visible {
  outline: 3px solid rgba(255, 55, 199, 0.28);
  outline-offset: 3px;
}
.settings__account {
  position: absolute;
  top: 40px;
  left: 134px;
}
.settings__sprite {
  display: none;
}
.settings__title {
  position: absolute;
  top: 121px;
  left: 134px;
  margin: 0;
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
}
.settings__version {
  position: absolute;
  bottom: 39px;
  left: 134px;
  margin: 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.settings-section {
  position: absolute;
  top: 201px;
  left: 134px;
  width: 1026px;
}
.settings-section--security {
  top: 402px;
}
.settings-section--security .settings-row {
  border-bottom: 1px solid #e7e7e7;
}
.settings-section--security .settings-row:last-child {
  border-bottom: 0;
}
.settings-section__title {
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.settings-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 78px;
  padding: 0;
  border-bottom: 1px solid #e7e7e7;
  background: transparent;
  color: #131313;
  text-align: left;
}
.settings-row--toggle {
  border-bottom: 0;
}
.settings-row--action {
  cursor: pointer;
}
.settings-row__icon {
  flex: 0 0 auto;
  object-fit: contain;
}
.settings-row__label {
  margin-left: 16px;
  font-weight: 500;
  font-size: 23px;
  line-height: 28px;
}
.settings-row__arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 10px;
  height: 17px;
}

.settings-currency {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  margin-left: auto;
}
.settings-currency__select {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 48px;
  padding: 0 32px 0 12px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: #131313;
  font-weight: 500;
  font-size: 21px;
  text-align: right;
  cursor: pointer;
}
.settings-currency__arrow {
  position: absolute;
  top: 15px;
  right: 2px;
  z-index: 2;
  width: 10px;
  height: 17px;
  pointer-events: none;
}
.settings-currency:has(.settings-currency__select:focus-visible) .settings-currency__arrow path {
  fill: #ff37c7;
}

.settings-switch {
  position: relative;
  width: 84px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border-radius: 22px;
  background: #acacac;
  cursor: pointer;
  transition: background-color 180ms ease;
}
.settings-switch[aria-checked=true] {
  background: #ff37c7;
}
.settings-switch[aria-checked=true] .settings-switch__thumb {
  transform: translateX(40px);
}
.settings-switch[aria-checked=true] .settings-switch__thumb svg {
  opacity: 1;
}
.settings-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 180ms ease;
}
.settings-switch__thumb svg {
  opacity: 0;
  transition: opacity 180ms ease;
}
.settings-switch:active .settings-switch__thumb {
  width: 43px;
}
.settings-switch:active[aria-checked=true] .settings-switch__thumb {
  transform: translateX(37px);
}

@media (prefers-reduced-motion: reduce) {
  .settings-switch,
  .settings-switch__thumb,
  .settings-switch__thumb svg {
    transition: none;
  }
}
.settings-modal {
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
}
.settings-modal[hidden] {
  display: none;
}
.settings-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, 0.29);
  opacity: 0;
  transition: opacity 190ms ease;
}
.settings-modal__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  height: 800px;
  border-radius: 25px 0 0 25px;
  background: #ffffff;
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.settings-modal__panel--recovery {
  width: 480px;
}
.settings-modal__panel--legal {
  width: 1066px;
  overflow: hidden;
}
.settings-modal__header {
  position: relative;
  height: 100px;
}
.settings-modal__title {
  position: absolute;
  top: 40px;
  left: 40px;
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.settings-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ff37c7;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}
.settings-modal__close span {
  display: block;
  margin-top: -2px;
  font-weight: 500;
  font-size: 23px;
  line-height: 25px;
}
.settings-modal__close:hover {
  background: #ed2bb4;
}
.settings-modal__close:active {
  transform: scale(0.94);
}
.settings-modal--visible .settings-modal__backdrop {
  opacity: 1;
}
.settings-modal--visible .settings-modal__panel {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .settings-modal__backdrop, .settings-modal__panel, .settings-modal__close {
    transition: none;
  }
}
.settings-recovery__warning {
  box-sizing: border-box;
  width: 400px;
  min-height: 105px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
  background: #fff7fd;
  color: #ff37c7;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.settings-recovery__warning strong {
  font-weight: 700;
}
.settings-recovery__words {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 400px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
}
.settings-recovery__words li {
  display: flex;
  align-items: center;
  height: 60px;
  padding-inline: 20px;
  border-radius: 14px;
  background: #f9f9f9;
  font-size: 16px;
  line-height: 20px;
}
.settings-recovery__words li span {
  width: 25px;
  color: #6a6a6a;
  font-weight: 500;
}
.settings-recovery__words li strong {
  color: #131313;
  font-weight: 500;
}
.settings-recovery__copy {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 400px;
  height: 70px;
  padding: 0;
  border-radius: 15px;
  background: #ff37c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}
.settings-recovery__copy:hover {
  background: #ed2bb4;
}
.settings-recovery__copy:active {
  transform: scale(0.992);
}

@media (prefers-reduced-motion: reduce) {
  .settings-recovery__copy {
    transition: none;
  }
}
.settings-legal {
  box-sizing: border-box;
  height: 800px;
  padding: 40px 40px 38px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #d5d5d5 transparent;
  scrollbar-width: thin;
}
.settings-legal__header {
  padding-bottom: 29px;
  border-bottom: 1px solid #e7e7e7;
}
.settings-legal__title {
  margin: 0;
  color: #131313;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}
.settings-legal__intro {
  max-width: 955px;
  margin: 13px 0 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
}
.settings-legal__section {
  margin-top: 30px;
}
.settings-legal__section h3 {
  margin: 0 0 14px;
  color: #131313;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
}
.settings-legal__section p {
  margin: 0;
  color: #6a6a6a;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
}

[data-app-screen] > :not(.portfolio-sidebar, .receive-modal, .logout-modal, .settings-modal, .copy-message, .settings__sprite) {
  animation: app-content-appear 300ms ease-out both;
}

@keyframes app-content-appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-app-screen] > :not(.portfolio-sidebar, .receive-modal, .logout-modal, .settings-modal, .copy-message, .settings__sprite) {
    animation: none;
  }
}

/*# sourceMappingURL=main.css.map */
