@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --grey-text: #6f6f6f;
  --side-bar--hover-background: #edf2ff;
  --side-bar--text-hover: #364fc7;
  --hover-light: #f4f4f4;
  --side-bar--active-background: #3b5bdb;
  --side-bar--active-text: white;
  --text--main-graphite: #1e293b;
  --text--second-text: #6f6f6f;
  --green-text: #007e00;
  --orange: #ff6700;
  --button--blue: #3b5bdb;
  --button--hover: #364fc7;
  --button--pressed: #2f44ad;
  --border--gray: #6f6f6f4d;
  --line-green: #098700;
  --background: #f8fafc;
  --green-section-button: #bbfa9f;
  --side-bar--background: white;
  --side-bar--text: #1e293b;
  --button--green: #16a34ab3;
  --button--desabled: #cbd5e1;
  --pink: #d261d5;
  --accent: #12b886;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #000;
  background-color: #f8fafc;
  font-family: Satoshi, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

.section {
  width: 100%;
  max-width: none;
  display: flex;
}

.section.center {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.nav {
  z-index: 800;
  background-color: #f8fafc;
  border-right: 1px solid #6f6f6f4d;
  width: 100%;
  max-width: 260px;
  height: 100vh;
  padding: 20px 15px 15px;
  position: sticky;
  top: 0;
}

.nav-wrap {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.nav-top {
  flex: 1;
  overflow: auto;
}

.logo-link {
  color: #000;
  width: 100%;
  margin-bottom: 40px;
  text-decoration: none;
  display: block;
}

.nav-menu {
  margin-bottom: 40px;
}

.nav-menu.last {
  margin-bottom: 0;
}

.small-grey {
  color: var(--grey-text);
  font-size: 12px;
}

.small-grey.mb-10 {
  margin-bottom: 10px;
}

.small-grey.mb-20 {
  margin-bottom: 20px;
}

.nav-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  border-radius: 5px;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 5px 10px 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.nav-link:hover {
  background-color: var(--side-bar--hover-background);
  color: var(--side-bar--text-hover);
}

.nav-link.active {
  color: var(--hover-light);
  transition-property: none;
}

.nav-link.active:hover {
  background-color: var(--side-bar--active-background);
  color: var(--side-bar--active-text);
}

.embed-icon {
  margin-bottom: -4px;
}

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

.profile-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-vertical.horizontal {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-vertical.horizontal.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-5.nav-balance {
  color: #1e293b;
}

.mb-5.clean {
  color: var(--text--main-graphite);
  margin-bottom: 0;
}

.chrome-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000;
  background-color: #d3f9d8;
  border-radius: 10px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.chrome-wrap:hover {
  background-color: #ebfbee;
}

.underline {
  font-size: 12px;
  text-decoration: underline;
}

.underline.nav-pashka {
  color: #2f9e44;
}

.content {
  flex: 1;
  max-width: 1920px;
  display: block;
}

.content-left {
  border-right: 1px solid #6f6f6f4d;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1920px;
  height: 100%;
  padding: 20px;
  display: flex;
}

.content-left.no-space {
  justify-content: flex-start;
}

.content-left.no-space:hover {
  box-shadow: 0 0 5px #0003;
}

.content-left.up {
  justify-content: flex-start;
  align-items: flex-start;
}

.top-content {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.grey-p {
  color: var(--text--second-text);
}

.grey-p.s {
  font-size: 14px;
}

.grey-p.s.up {
  font-size: 12px;
}

.grey-p.s.underline.finger {
  cursor: pointer;
}

.grey-p.s.font-12px {
  font-size: 12px;
}

.grey-p.s.center.b {
  font-weight: 900;
}

.grey-p.s.green {
  color: var(--green-text);
}

.grey-p.s.green.b {
  font-weight: 900;
}

.grey-p.s.orange {
  color: var(--orange);
}

.grey-p.s.orange.b {
  font-weight: 900;
}

.grey-p.up {
  margin-top: -8px;
}

.top-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.form-wrap {
  width: 100%;
  max-width: 350px;
}

.revenue-content {
  margin-bottom: 40px;
}

.revenue-content.mb-20 {
  margin-bottom: 20px;
}

.revenue-content.mb-20.full {
  width: 100%;
}

.revenue-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.revenue-flex:active {
  box-shadow: inset 0 2px 5px #0003;
}

.outline-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #000;
  background-color: #0000;
  border: 1px solid #6f6f6f4d;
  border-radius: 10px;
  align-items: center;
  height: 35px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  text-decoration: none;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.outline-link:hover {
  border-color: var(--hover-light);
  background-color: var(--hover-light);
}

.outline-link.green {
  background-color: var(--button--blue);
}

.outline-link.green:hover {
  background-color: var(--button--hover);
  box-shadow: 0 2px 5px 0 var(--button--hover);
}

.outline-link.green:active {
  background-color: var(--button--pressed);
}

.revenue-wrap {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.r-cards {
  display: flex;
}

.r-card {
  border: 1px solid var(--border--gray);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  min-height: 145px;
  padding: 20px;
  display: flex;
}

.r-card.mid {
  border-left-color: #6f6f6f00;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.r-card.last {
  border-left-color: #6f6f6f00;
  border-radius: 0 20px 20px 0;
}

.r-card_wrap {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.r-flex {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.p-20 {
  font-size: 20px;
}

.green-p {
  color: var(--green-text);
}

.recent-content {
  margin-top: 629px;
}

.recent-heading {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.link {
  color: #000;
  border-bottom: 1px solid #000;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.link:hover {
  color: #d261d5;
  border-bottom-color: #0000;
}

.recent-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.recent-title {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.title-icon {
  background-color: var(--hover-light);
  border-radius: 5px;
  padding: 3px 5px;
}

.recent-card {
  color: #000;
  border: 1px solid #6f6f6f4d;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 10px 15px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: flex;
}

.recent-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 0 4px 5px #0003;
}

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

.rcard-img {
  border: 1px solid #fff;
  border-radius: 50%;
}

.rcard-img.ml {
  margin-left: -5px;
}

.opacity {
  color: #6f6f6f80;
}

.line {
  background-color: var(--hover-light);
  border-radius: 5px;
  width: 100%;
  height: 8px;
  margin-bottom: 20px;
}

.line-fill {
  background-color: #098700;
  border-radius: 5px;
  width: 0%;
  height: 100%;
}

.line-fill._60 {
  background-color: var(--line-green);
  width: 60%;
}

.line-fill._30 {
  width: 30%;
}

.black-p {
  color: #000;
}

.mb-10 {
  margin-bottom: 10px;
}

.content-right {
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  padding: 20px 10px;
  display: flex;
}

.right-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.right-img {
  border-radius: 10px;
}

.mobile-nav, .shadow {
  display: none;
}

.orange-p {
  color: var(--orange);
}

.login-form_wrapper {
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 50vh;
  display: flex;
}

.login_form {
  flex: 1;
}

.form-text_field {
  color: var(--text--main-graphite);
  background-color: #0000;
  border-radius: 9px;
}

.form-text_field.background {
  background-color: var(--background);
}

.form-text_field._60 {
  align-self: auto;
  width: 60%;
}

.form-text_field._60.no-mb, .form-text_field.stretch.clear, .form-text_field.clear {
  margin-bottom: 0;
}

.button_full {
  background-color: var(--grey-text);
  border-radius: 9px;
  width: 100%;
  display: block;
}

.h1 {
  color: var(--text--main-graphite);
}

.h1.center {
  text-align: center;
}

.h1.logo {
  font-size: 25px;
}

.error-text-wrapper {
  display: block;
}

.error-text-wrapper.none, .error-text-wrapper.password, .error-text-wrapper.username {
  display: none;
}

.error-text-wrapper.wrong {
  display: block;
}

.text-block {
  color: var(--orange);
}

.mb-10-div {
  margin-bottom: 10px;
}

.revenue-form {
  margin-bottom: 40px;
}

.search-form-wrapper {
  border: 1px none var(--border--gray);
  border-radius: 20px;
  justify-content: flex-start;
  width: 100%;
  padding: 20px 0;
  display: block;
}

.search-form-wrapper.vertical {
  flex-flow: column;
  display: flex;
}

.search-form-wrapper.vertical.no-mb {
  padding-bottom: 0;
}

.search_field {
  border: 1px solid var(--border--gray);
  color: var(--text--main-graphite);
  background-color: #f8fafc;
  border-radius: 9px;
  width: 50%;
  overflow: visible;
}

.search_field.auto {
  width: auto;
}

.form-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: block;
}

.form {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.select_field {
  border: 1px solid var(--border--gray);
  color: #000;
  background-color: #f8fafc;
  border-radius: 9px;
  flex: 0 auto;
  max-width: 30%;
}

.select_field:hover, .select_field:active {
  color: #000;
  background-color: #f8fafc;
}

.select_field:focus {
  background-color: #f8fafc;
}

.select_field:focus-visible, .select_field[data-wf-focus-visible] {
  color: #000;
  background-color: #f8fafc;
}

.select_field.clear {
  max-width: none;
  margin-bottom: 0;
}

.select_field.clear._100 {
  flex: 0 auto;
}

.select_field.full._100 {
  max-width: 1000%;
}

.select_field.full._100.up-20 {
  margin-top: 20px;
}

.select_field.auto {
  max-width: none;
}

.select_field._50 {
  width: 50%;
  max-width: none;
}

.search_form_block-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  display: flex;
}

.search_form_block-wrapper.vertical {
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.search_form_block-wrapper.space-between {
  justify-content: space-between;
}

.checkbox-field {
  flex: none;
  order: 0;
}

.balance_card-wrapper {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  order: 0;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
}

.left_card-wrapper {
  border: 1px solid #6f6f6f4d;
  border-radius: 9px;
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 25vw;
  padding: 20px;
  display: flex;
}

.right_card-wrapper {
  flex: 1;
  padding: 0;
}

.top-ballance_card {
  border: 1px solid var(--border--gray);
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  padding: 15px 20px;
}

.bottom-ballance_card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--border--gray);
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
}

.right_card-block_wrapper {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  flex: 1;
  height: auto;
  padding: 20px;
  box-shadow: 0 1px 5px #0003;
}

.right_card-block_wrapper:hover {
  box-shadow: inset 0 2px 5px #0003;
}

.right_card-block_wrapper.horizontal {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.wallets-table-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
  display: flex;
}

.wallets-table-wrapper.up {
  flex-flow: column;
  display: block;
}

.top_wallets-table-wrapper {
  background-color: var(--border--gray);
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  padding: 10px 10px 0;
}

.bottom_wallets-table-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--border--gray);
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  max-height: 500px;
  padding: 10px;
  display: block;
  overflow: auto;
}

.bottom_wallets-table-wrapper.none {
  display: none;
}

.grid {
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr 1fr 2.5fr .75fr .5fr .5fr .5fr;
  align-content: center;
}

.grid.line {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border--gray);
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr .75fr 2.5fr .75fr .5fr .5fr .5fr;
  height: auto;
  padding-top: 10px;
  padding-bottom: 20px;
}

.grid.line.no-20 {
  height: 45px;
  margin-bottom: 20px;
}

.grid.generate_wallets {
  border-bottom: 1px solid var(--border--gray);
  grid-template-columns: .25fr .5fr 2fr 1.5fr;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.grid.generate_wallets.none {
  display: none;
}

.table_label.bold {
  font-weight: 700;
}

.table-color-wrapper {
  background-color: var(--green-section-button);
  border-radius: 5px;
  padding: 5px;
}

.table-color-wrapper.blue {
  background-color: #dbeafe;
}

.table-color-wrapper.grey {
  background-color: #f3f4f6;
}

.table-color-wrapper.buyer {
  background-color: #f3e8ff;
}

.table-color-wrapper.temporary {
  background-color: #b99d48;
}

.table-color-wrapper.center.border {
  border-right: 1px solid var(--border--gray);
}

.tavle-public-key-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
  display: flex;
}

.tavle-public-key-wrap.left {
  justify-content: flex-start;
}

.tavle-public-key-wrap.right-border {
  border-right: 1px solid var(--border--gray);
}

.tavle-public-key-wrap.right-border.center-left {
  border-right-style: none;
}

.code-embed {
  cursor: pointer;
}

.paragraph {
  border-right: 1px none var(--border--gray);
  color: var(--text--main-graphite);
  cursor: auto;
}

.paragraph.green {
  color: var(--green-text);
}

.paragraph.orange {
  color: var(--orange);
}

.paragraph.mb-20 {
  margin-bottom: 20px;
}

.paragraph._5-mb {
  margin-bottom: 5px;
}

.paragraph.left-10 {
  border-right: 1px solid var(--border--gray);
  padding-left: 10px;
}

.paragraph.rign-no_border {
  border-right-style: none;
}

.paragraph.center {
  border-right-style: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph.center-left {
  border-right-style: none;
  padding-left: 0;
}

.paragraph.center-left._10-left {
  border-right-style: none;
  padding-left: 10px;
}

.paragraph.grey {
  color: var(--text--second-text);
  border-right-style: none;
}

.paragraph.grey.green {
  color: var(--line-green);
}

.paragraph.grey.orange {
  color: var(--orange);
}

.paragraph.hover-shadow:hover {
  color: var(--button--blue);
}

.paragraph.b {
  width: auto;
  font-weight: 900;
}

.paragraph._10-mb {
  margin-bottom: 10px;
}

.paragraph.s {
  font-size: 12px;
}

.paragraph.s.red {
  color: #ff0000bf;
}

.paragraph.font-12px {
  font-size: 12px;
}

.paragraph.finger {
  cursor: pointer;
}

.paragraph.up-20px {
  margin-top: 20px;
}

.paragraph.right-align-text {
  text-align: right;
  align-self: center;
  padding-right: 10px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.paragraph-2 {
  color: var(--button--blue);
  cursor: pointer;
}

.modal_wrapper {
  z-index: 801;
  opacity: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0006;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

.modal_wrapper.none {
  display: none;
}

.modal_wallet-config {
  border: 1px solid var(--border--gray);
  opacity: 1;
  background-color: #fff;
  border-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40vw;
  height: auto;
  padding: 0;
  display: flex;
  position: relative;
  inset: 0%;
}

.close_button {
  color: #756d6d;
  cursor: pointer;
  mix-blend-mode: normal;
  transition: all .3s ease-in-out;
  position: static;
  inset: 10px 10px auto auto;
}

.close_button:hover {
  color: #000;
  transform: rotate(45deg);
}

.modal_wallet-top {
  border-bottom: 1px solid var(--border--gray);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  position: static;
}

.top_wallet_text-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-3 {
  letter-spacing: normal;
  white-space: normal;
  word-break: normal;
  padding-top: 5px;
}

.modal_top_wallet {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.modal_wallet-center {
  width: 100%;
  height: 100%;
  display: flex;
}

.modal_wallet-center.padding-20 {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.edit_wallet-form {
  width: 100%;
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.h2 {
  color: var(--text--main-graphite);
  font-size: 28px;
}

.h2.green {
  color: var(--line-green);
}

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

.form-horizont.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 10px;
}

.form-horizont.gap-20.full {
  flex: 1;
}

.form-horizont.gap-20.full.horizont {
  flex-flow: column;
  align-self: stretch;
}

.form-horizont.gap-20.full.horizont.gap-0 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.form_field.modal {
  align-self: stretch;
  width: 100%;
}

.form_field.modal.border {
  border: 1px dashed var(--border--gray);
  border-radius: 9px;
  padding: 15px;
}

.modal_wallet-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
}

.modal_wallet-bottom.clear {
  padding-bottom: 0;
  padding-right: 0;
  display: block;
}

.modal_wallet-bottom.clear._20-mb.height-auto {
  height: auto;
}

.modal_wallet-bottom.padding-left-20 {
  padding-left: 20px;
}

.button-1 {
  border: 1px solid var(--border--gray);
  cursor: pointer;
  border-radius: 9px;
  padding: 15px;
  transition: all .2s ease-in-out;
}

.button-1:hover {
  box-shadow: 0 4px 5px #0003;
}

.button-1.blue {
  background-color: var(--button--blue);
}

.button-1.blue:hover {
  box-shadow: 0 4px 5px #0003;
}

.button-1.blue.full {
  background-color: var(--button--blue);
  text-align: center;
  flex: 1;
}

.button-1.blue.full:hover {
  background-color: var(--button--hover);
}

.button-1.blue.full:active {
  background-color: var(--button--pressed);
  box-shadow: inset 0 2px 5px #0003;
}

.button-1.blue.full.border {
  border-width: 2px;
  border-color: var(--button--blue);
  background-color: #0000;
}

.button-1.blue.full.clear {
  background-color: #0000;
  box-shadow: 0 1px 5px #0003;
}

.button-1.blue.full.shadow {
  box-shadow: 0 2px 5px #0003;
}

.button-1.full {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal_generate {
  z-index: 801;
  opacity: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0006;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

.modal_generate.none {
  display: none;
}

.modal-generate_form {
  width: 100%;
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.modal_generate-config {
  border: 1px solid var(--border--gray);
  opacity: 1;
  background-color: #fff;
  border-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40vw;
  height: 48vh;
  padding: 0;
  display: flex;
  position: relative;
  inset: 0%;
}

.upload_image-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px dashed var(--border--gray);
  cursor: pointer;
  border-radius: 9px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.textarea {
  background-color: #0000;
  border-radius: 9px;
  height: auto;
  margin-bottom: 0;
}

.textarea:hover, .textarea:active, .textarea:focus, .textarea:focus-visible, .textarea[data-wf-focus-visible] {
  color: #000;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: minmax(84px, auto) 1fr;
  align-self: stretch;
}

.opacity_wallet-wrapper {
  opacity: 1;
  display: block;
}

.opacity_wallet-wrapper2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.public-key-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.code-embed-2 {
  cursor: pointer;
}

.right-wrapper {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav_dropdown {
  display: block;
}

.dropdown-toggle {
  width: 100%;
  padding-left: 0;
}

.dropdown-list-nav {
  z-index: auto;
  opacity: 1;
  background-color: #ddd;
}

.dropdown-list-nav.w--open {
  border: 1px solid var(--border--gray);
  background-color: var(--side-bar--background);
  opacity: 100;
  border-radius: 9px;
}

.dropdown-list-nav.w--open:hover {
  background-color: var(--side-bar--background);
}

.body {
  background-color: #f8fafc;
}

.radio-button-label, .radio-button-label-2, .text-block-2 {
  color: #1e293b;
}

.body-3 {
  background-color: var(--background);
}

.nav-text {
  color: var(--side-bar--text);
}

.nav-text.active {
  color: var(--side-bar--active-background);
}

.nav-text.active:hover {
  color: var(--grey-text);
}

.balance_buy_ammount_btn-wrap {
  background-color: var(--border--gray);
  cursor: pointer;
  border-radius: 9px;
  padding: 2px 5px;
}

.balance_buy_ammount_btn-wrap:hover {
  box-shadow: 0 2px 5px 0 var(--button--pressed);
}

.right-wrapper_text {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.buyer_wallet_wrapper {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
}

.buyer_wallet_wrapper._1 {
  flex-flow: column;
  display: flex;
}

.buyer_wallet_wrapper._1.none, .buyer_wallet_wrapper._2, .buyer_wallet_wrapper._3, .buyer_wallet_wrapper._4 {
  display: none;
}

.recyclebin-icon {
  color: red;
  cursor: pointer;
  margin-bottom: 0;
}

.created_token_info-wrapper {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  flex: 1;
  width: 100%;
  padding: 20px;
  display: block;
}

.created_token_info-wrapper.none {
  display: none;
}

.horizontal-div {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.horizontal-div.gap-15 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.horizontal-div.full {
  align-self: stretch;
}

.horizontal-div.no-gap.full {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
}

.horizontal-div.no-gap.full.green {
  cursor: auto;
}

._20-mb {
  margin-bottom: 20px;
}

.token-list-wrapper {
  flex: 1;
  height: 100%;
}

.token_list_table-up {
  background-color: var(--border--gray);
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-top: 5px;
  padding-bottom: 5px;
}

.token_list_table-up.down {
  border-bottom: 1px solid var(--border--gray);
  background-color: #0000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.token_list_table-up.down.grey {
  background-color: var(--border--gray);
}

.operation-table-wrapper {
  flex-flow: column;
  display: flex;
}

.link_block-horizontal {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--text--main-graphite);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.operation-table-wrapper-line {
  border-bottom: 1px solid var(--border--gray);
  padding-bottom: 5px;
}

.token_list-data {
  height: auto;
  overflow: auto;
}

.amm-token-info_wrapper {
  border-radius: 0;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.amm-token-info_wrapper.gap-10 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  align-items: flex-start;
}

.amm-token-info_wrapper-left {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.token_logo {
  border-radius: 99px;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: auto;
  max-width: 60px;
  height: auto;
  max-height: 60px;
  display: flex;
  overflow: hidden;
}

.image-2 {
  border-radius: 0;
  width: auto;
}

.token_name_symbol_adress, .wpapper-horizontal {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wpapper-horizontal.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.wpapper-horizontal.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.amm-trading-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 50%;
  display: flex;
}

.tokens_list {
  opacity: 1;
  display: none;
}

.token-adres-line {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.div-full {
  flex: 1;
}

.button-ok {
  padding-top: 5px;
  padding-bottom: 5px;
}

.div-block {
  align-self: center;
  padding-top: 10px;
}

.left-block {
  align-self: stretch;
  margin-top: -40px;
}

.right-block {
  flex: 0 auto;
  width: 50%;
  padding-bottom: 0;
  overflow: hidden;
}

.right-block.block {
  align-self: center;
  height: 410px;
}

.code-embed-3 {
  border-radius: 0;
  justify-content: flex-end;
  align-items: center;
  height: 457px;
  display: flex;
  overflow: hidden;
}

.h3 {
  color: var(--text--main-graphite);
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: block;
}

.h3.green {
  color: var(--line-green);
}

.h3.no-spacing {
  margin-top: 0;
  margin-bottom: 0;
}

.h3.s {
  font-size: 18px;
}

.operations_buy_sell-block-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px none var(--border--gray);
  border-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
  box-shadow: 0 1px 5px #0003;
}

.operations_buy_sell-block-wrapper.right-side {
  justify-content: flex-start;
  align-items: flex-end;
}

.operations_buy_sell-block {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  align-self: stretch;
  padding: 15px;
}

.button-2 {
  border: 1px solid var(--border--gray);
  color: var(--text--main-graphite);
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border-radius: 9px;
  padding: 15px;
  transition: all .2s ease-in-out;
}

.button-2:hover {
  box-shadow: 0 4px 5px #0003;
}

.button-2.green {
  background-color: var(--button--green);
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-2.green.s {
  padding-top: 5px;
  padding-bottom: 5px;
}

.button-2.green.s.full {
  align-self: stretch;
  width: 100%;
}

.button-2.green.s.no-color {
  background-color: #0000;
}

.button-2.green.s._10-down {
  align-self: center;
  height: 33px;
  margin-bottom: 10px;
}

.button-2.green.s._10-down.white {
  background-color: var(--background);
}

.button-2.orange {
  background-color: var(--orange);
}

.button-2.yellow {
  background-color: #ffff0059;
}

.button-2.yellow.full {
  background-color: #ffff0026;
}

.button-2.full {
  flex: 1;
}

.button-2.full.margin-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.button-2.s {
  padding-top: 5px;
  padding-bottom: 5px;
}

.button-2.s.full {
  align-self: stretch;
}

._10-mb {
  margin-bottom: 10px;
}

.wrapper {
  padding: 0;
}

.pnl-left {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.pnl-right {
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.amm-tokenwrapper {
  border-radius: 0;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.amm-tokenwrapper.gap-10 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.div-horizontal {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-horizontal._100 {
  width: 100%;
}

.div-horizontal._100.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  padding: 10px;
}

.div-horizontal._100.border.shadow {
  box-shadow: 0 2px 5px #0003;
}

.div-horizontal._100.border.shadow.gap-10.no-shadow {
  box-shadow: none;
}

.div-horizontal._100.border.shadow.gap-10.no-shadow.no-border {
  border-style: none;
}

.div-horizontal._100.border.shadow.gap-10.center {
  justify-content: space-between;
}

.div-horizontal._100.gap-10._10px-around.shadow-real {
  border-radius: 9px;
  box-shadow: 0 1px 5px #0003;
}

.div-horizontal._100.gap-10._10px-around.shadow-real.fixed-size_block-transfer {
  flex: 1;
  height: 615px;
  max-height: 639px;
}

.div-horizontal._100.stretch {
  align-self: stretch;
}

.div-horizontal._100.stretch.around-10, .div-horizontal._100._10px_around {
  padding: 10px;
}

.div-horizontal._100._10px_around.border.space-between.finger {
  cursor: pointer;
}

.div-horizontal._100.center-blocks {
  justify-content: space-between;
}

.div-horizontal._100.down_line-amount {
  border-bottom: 1px solid var(--border--gray);
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 20px;
}

.div-horizontal.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div-horizontal.gap-10.full-100 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.div-horizontal.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.div-horizontal.space-between {
  justify-content: space-between;
  align-self: stretch;
}

.div-horizontal.mb-10px {
  padding: 10px;
}

.div-horizontal.mb-10px.space-between {
  order: 0;
}

.div-horizontal.around-10px {
  padding: 10px;
}

.div-horizontal.around-10px.gap-10.sell {
  display: flex;
}

.div-horizontal.around-10px.cursor {
  cursor: pointer;
}

.div-horizontal._60 {
  width: 60%;
}

.div-horizontal._60.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.div-horizontal._60.border.shadow {
  box-shadow: 0 1px 5px #0003;
}

.div-horizontal._60.border.shadow.arroud-20 {
  flex: 0 auto;
  padding: 20px;
}

.div-horizontal._60.border.shadow.arroud-20.space-between {
  justify-content: space-between;
  align-items: center;
}

.div-horizontal._60.border.shadow.arroud-20.space-between._50 {
  width: 50%;
}

.div-horizontal.div-full.around-10px.gap-10 {
  flex: 0 auto;
  display: block;
}

.div-horizontal.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.div-horizontal.border.shadow:hover {
  box-shadow: 0 1px 5px #0003;
}

.div-horizontal.down {
  justify-content: flex-start;
  align-items: center;
}

.div-horizontal.down.space-between {
  justify-content: space-between;
}

.div-horizontal.down.space-between.border-2 {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.div-horizontal.down.space-between.border-2.padding-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.div-horizontal.down.space-between.border-2.padding-10.padding-up-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-horizontal.down.space-between.border-2.padding-10.padding-up-20:hover {
  background-color: #0000;
  box-shadow: 0 1px 5px #0003;
}

.div-horizontal.align-center {
  align-self: center;
}

.div-horizontal.up-20 {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
}

.div-horizontal.none {
  display: none;
}

.div-horizontal.none.download {
  cursor: pointer;
  text-decoration: underline;
}

.div-horizontal.dash {
  border: 1px dashed var(--border--gray);
}

.div-horizontal.border-radius-9 {
  border-radius: 9px;
}

.div-horizontal.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.div-vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.div-vertical._15-otstup {
  padding: 15px;
}

.div-vertical.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.div-vertical.border._15-otstup.aligment-stretch {
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  height: auto;
}

.div-vertical.border._50 {
  width: 50%;
}

.div-vertical.border._50.space-between2 {
  align-items: stretch;
  width: 50%;
}

.div-vertical.border._50.space-between2.shadow {
  box-shadow: 0 1px 5px #0003;
}

.div-vertical.border._50.space-between2.shadow.top, .div-vertical.border._50.space-between2._10px.shadow {
  justify-content: flex-start;
  align-items: stretch;
}

.div-vertical.border._50._10px, .div-vertical.border._50.around-10px {
  padding: 10px;
}

.div-vertical.border._50.around-10px.up {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  height: 100%;
}

.div-vertical.border._50.around-10px.up._100 {
  align-self: stretch;
  width: auto;
}

.div-vertical.border._50.around-10px.up._100.up-20 {
  margin-top: 20px;
}

.div-vertical.border._50.around-10px.up._100.up-20.shadow {
  box-shadow: 0 1px 5px #0003;
}

.div-vertical.border._50.around-10px.up._100.no-border {
  border-style: none;
}

.div-vertical.border._50.around-10px.up._100.stretch-50 {
  min-width: 50%;
}

.div-vertical.border._50.around-10px.up._100.stretch-50._10_up_left_down {
  min-width: auto;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.div-vertical.border._50.around-10px.up._100.stretch-50._10_up_left_down.space-between {
  justify-content: space-between;
}

.div-vertical.border._50.around-10px.up._100.stretch-50._10_up_right_down {
  align-items: flex-start;
  min-width: auto;
  min-height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.div-vertical.border.around-10px {
  height: 302px;
}

.div-vertical.border.around-10px.up {
  justify-content: flex-start;
  align-items: flex-start;
}

.div-vertical.border.around-10px.up.shadow {
  overflow: visible;
  box-shadow: 0 1px 5px #0003;
}

.div-vertical.border.around-10px.up.shadow.off {
  height: auto;
  overflow: visible;
}

.div-vertical.border._10-px {
  padding: 10px;
}

.div-vertical.border._10-px.gap-10.send-block {
  width: 250px;
  height: auto;
}

.div-vertical.border._10-px.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.div-vertical.border._10-px.gap-5.send-box {
  width: 250px;
}

.div-vertical.border._10-px.gap-5.relative {
  position: relative;
}

.div-vertical.border.shadow-real {
  box-shadow: 0 2px 5px #0003;
}

.div-vertical.border.shadow-real._10px-around-otstup {
  padding: 10px;
}

.div-vertical._100 {
  flex: 1;
}

.div-vertical.stretch {
  align-items: stretch;
}

.div-vertical.around-10px {
  height: 276px;
  padding: 10px;
  overflow: visible;
}

.div-vertical.around-10px.scroll {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  overflow: auto;
}

.div-vertical.right {
  justify-content: center;
  align-items: flex-end;
}

.div-vertical.none, .div-vertical.div-full.none {
  display: none;
}

.div-vertical.full {
  flex: 1;
}

.div-vertical.full.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div-vertical._50 {
  width: 50%;
}

.div-vertical._50.border.shadow {
  padding: 10px;
  box-shadow: 0 1px 5px #0003;
}

.div-vertical._50.border.shadow.up {
  justify-content: flex-start;
  align-items: flex-start;
}

.div-vertical._50.border.shadow.up.around-20 {
  padding: 20px;
}

.div-vertical._50.border.shadow.up.around-20.space-between {
  justify-content: space-between;
}

.div-vertical.screen {
  justify-content: flex-start;
  align-items: flex-start;
  height: 296px;
  overflow: auto;
}

.div-vertical.center {
  justify-content: center;
  align-items: center;
}

.div-vertical.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div-vertical.space-between {
  justify-content: space-between;
  align-items: flex-start;
}

.div-vertical.up {
  justify-content: flex-start;
  align-items: flex-start;
}

.div-vertical.up.arount-20 {
  padding: 20px;
}

.div-vertical.up.arount-20.grow {
  flex: 1;
}

.div-vertical.around-20px {
  height: 276px;
  padding: 20px;
  overflow: visible;
}

.div-vertical.down-border {
  border-bottom: 1px solid var(--border--gray);
}

.div-vertical.grid-status {
  border-right: 1px solid var(--border--gray);
  border-bottom: 1px solid var(--border--gray);
  border-left: 1px solid var(--border--gray);
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 500px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  overflow: auto;
}

.div-vertical.vertical-100 {
  flex: 1;
}

.div-vertical.right-line {
  border-right: 1px solid var(--border--gray);
  padding-left: 10px;
}

.div-vertical._10px-around-box {
  padding: 10px;
}

.div-vertical._10px-around-box.center-left {
  justify-content: center;
  align-items: flex-start;
}

.div-vertical.dash {
  border: 1px dashed var(--line-green);
}

.div-vertical.dash._10px-around {
  border-width: 2px;
  padding: 10px;
}

.div-vertical.dash._10px-around.border-radius-9 {
  border-color: var(--border--gray);
  border-radius: 9px;
}

.div-vertical-btn {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-vertical-btn.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.div-vertical-btn.gap-10.full-100 {
  align-self: stretch;
  width: auto;
  height: auto;
  overflow: auto;
}

.form-100 {
  align-self: stretch;
  width: 100%;
  display: flex;
}

.grid-preset {
  grid-template-rows: auto;
  align-self: stretch;
}

.grid-preset.down_border {
  border-bottom: 1px solid var(--border--gray);
  padding-top: 5px;
  padding-bottom: 10px;
}

.right-block-preset {
  display: flex;
}

.right-block-preset.gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.button-3-small {
  border: 1px solid var(--border--gray);
  color: var(--text--main-graphite);
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border-radius: 9px;
  padding: 15px;
  transition: all .2s ease-in-out;
}

.button-3-small:hover {
  box-shadow: 0 4px 5px #0003;
}

.button-3-small.w--current {
  background-color: var(--button--green);
}

.button-3-small.red {
  background-color: #ffff0059;
}

.button-3-small.red.full {
  background-color: #ffff0026;
}

.button-3-small.full {
  flex: 1;
}

.button-3-small.full.margin-10 {
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.button-3-small.full.margin-10.w--current {
  background-color: var(--button--green);
  display: block;
}

.button-3-small.full.margin-10.red {
  background-color: #ff000026;
}

.button-3-small.small, .button-3-small.small.w--current {
  padding-top: 5px;
  padding-bottom: 5px;
}

.preset-grid-line-wrapper {
  align-self: stretch;
  height: 150px;
  overflow: auto;
}

.div-block-3 {
  flex: 1;
}

.jito-mev-tip-wrapper {
  padding: 5px;
}

.jito-mev-tip-wrapper.border {
  border: 1px solid var(--border--gray);
  cursor: pointer;
  border-radius: 9px;
}

.jito-mev-tip-wrapper.border:hover {
  box-shadow: 0 1px 5px #0003;
}

.jito-mev-tip-wrapper.border.full {
  flex: 1;
}

.jito-mev-tip-wrapper.border.full.yellow {
  background-color: #ffff0026;
}

.bundless-buy-form {
  width: 100%;
}

.bundless-buy-form.up_stretch {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.form-bundle-buy-wallet-form.miltisender-to-many-left {
  flex-flow: column;
  height: auto;
  display: flex;
}

.grid_funding_wallet {
  grid-column-gap: 5px;
  border-bottom: 1px solid var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 20px) 1.5fr .25fr;
  justify-content: center;
  width: 100%;
  padding-bottom: 5px;
}

.form-block-2 {
  align-self: stretch;
  width: 100%;
}

.checkbox-center {
  margin-top: 0;
}

.checkbox-field-2 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.wallet-grid-wrapper {
  flex-flow: column;
  height: 212px;
  display: flex;
  overflow: auto;
}

.wallet-grid-wrapper.border-real-15px_around {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  height: 350px;
  padding: 10px 15px;
  overflow: auto;
}

.wallet-grid-wrapper.auto-right-block {
  height: 425px;
}

.task-list-greed-zagolovok {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-self: stretch;
}

.task-list-greed-zagolovok.around-10px {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 10px;
}

.task-list-greed-line {
  border-bottom: 1px solid var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-self: stretch;
  margin-bottom: 0;
  padding-bottom: 10px;
  overflow: visible;
}

.tabs {
  flex-flow: column;
  order: 0;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.tabs-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.tabs-content {
  margin-top: 10px;
}

.tabs-menu-right {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.bundle_transfer-form-left {
  align-self: stretch;
  width: 50%;
  height: 100%;
  padding: 10px;
}

.bundle_transfer-form-left.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  margin-top: 10px;
}

.bundle_transfer-form-left.border.full {
  justify-content: flex-start;
  display: block;
}

.bundle_transfer-form-left.border.full._100 {
  flex: 1;
}

.form-101 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: block;
}

.amm-trading-zagoglovok._100 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 5px;
}

.amm-trading-zagoglovok._100.otstup-10 {
  border-bottom: 1px solid var(--border--gray);
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.link-block {
  color: var(--text--main-graphite);
}

._5-mb {
  margin-bottom: 5px;
}

.div-circle {
  border: 1px solid var(--border--gray);
  border-radius: 99px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
}

.div-circle.black {
  background-color: #000;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
}

.div-circle.full {
  min-width: auto;
  max-width: none;
  min-height: auto;
  max-height: none;
}

.div-circle.borer-circle {
  overflow: hidden;
}

.div-circle.borer-circle.up-10 {
  margin-top: 10px;
}

.div-circle.borer-circle._21px {
  min-width: auto;
  max-width: 21px;
  min-height: 16px;
  max-height: none;
}

.status-subscription {
  background-color: var(--button--green);
  border-radius: 20px;
  padding: 7px 25px;
}

.right {
  cursor: pointer;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.modal-settings-wrapper {
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal-settings-wrapper.none {
  display: none;
}

.modal-settings-wrapper-window {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  display: block;
}

.modal-settings-wrapper-window.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.modal-settings-wrapper-window.border.shadow {
  box-shadow: 0 1px 5px #0003;
}

.modal_wallet-top-settings {
  border-bottom: 1px solid var(--border--gray);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  position: static;
}

.modal_wallet-center-settings {
  width: 100%;
  height: 100%;
  display: flex;
}

.modal_wallet-bottom-settings {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
}

.modal-window-addfonds-wrapper {
  z-index: 9999;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal-window-addfonds-wrapper.none {
  display: none;
}

.modal_wallet-add-fonds {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.modal-window-addfonds-wrapper-window-copy {
  border: 1px solid var(--border--gray);
  background-color: var(--background);
  border-radius: 9px;
  width: 900px;
  height: auto;
}

.modal-window-subscribe-wrapper {
  z-index: 9999;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.modal-window-subscribe {
  background-color: var(--background);
  width: 700px;
}

.modal-window-subscribe.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.subscription-form-wrapper._100 {
  flex: 1;
}

.subscription-form-wrapper._100.around-10 {
  padding: 10px;
}

.radio-button.center {
  display: flex;
}

.radio-button-label-3 {
  margin-bottom: 0;
}

.radio-button-2 {
  align-self: center;
}

.subscription-form.gap-15 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.form-data-select-wrapper {
  align-self: stretch;
}

.form-data-select.around-10 {
  padding: 10px;
}

.form-data-select.around-10.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.form-data-select.around-10.border.shadow-2 {
  box-shadow: 0 1px 5px #0003;
}

.grid_financial {
  background-color: var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: stretch;
  padding-top: 5px;
  padding-bottom: 5px;
}

.grid_financial-data {
  border-bottom: 1px solid var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: stretch;
  padding-top: 5px;
  padding-bottom: 5px;
}

.code-embed-5 {
  display: flex;
}

.tabs-2 {
  flex-flow: column;
  display: flex;
}

.tabs-menu-2 {
  display: flex;
}

.tabs-menu-2.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.tabs-3 {
  flex: 1;
}

.news {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

.news.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
}

.news.border.shadow1 {
  box-shadow: 0 1px 5px #0003;
}

.news.border.shadow1.margin-20 {
  grid-template-rows: auto auto auto;
  padding: 20px;
}

.tabs-content-2 {
  padding-top: 0;
}

.tabs-content-2.around-20 {
  padding: 20px;
}

.form_utc.full {
  width: 100%;
}

.utc-form-wrapper {
  flex: 1;
}

.code-embed-6 {
  opacity: .6;
}

.image-3 {
  max-width: 250px;
}

.modal_preview {
  z-index: 801;
  opacity: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0006;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal_preview.none {
  display: none;
}

.modal_preview-config {
  border: 1px solid var(--border--gray);
  opacity: 1;
  background-color: #fff;
  border-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40vw;
  height: 48vh;
  padding: 0;
  display: flex;
  position: relative;
  inset: 0%;
}

.modal_preview-config.auto {
  height: auto;
}

.modal_generate-top {
  border-bottom: 1px solid var(--border--gray);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  position: static;
}

.modal_generate-center {
  width: 100%;
  height: 100%;
  display: flex;
}

.modal_generate-center.padding-20 {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.modal_generate-center.vertical {
  flex-flow: column;
}

.modal_generate-center.vertical.center {
  justify-content: center;
  align-items: center;
}

.modal_generate-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
}

.modal_generate-bottom.clear {
  padding-bottom: 0;
  padding-right: 0;
  display: block;
}

.modal_generate-bottom.clear._20-mb.height-auto {
  height: auto;
}

.modal_generate-bottom.padding-left-20 {
  padding-left: 20px;
}

.modal_generate-bottom.up-10px {
  margin-top: 10px;
}

.link-block.grow {
  flex: 1;
}

.modal-amm-buy-wallets {
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal-amm-buy-wallets.none {
  display: none;
}

.modal-amm-buy-wallets-window {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 300px;
  display: block;
  position: static;
  inset: 0%;
}

.modal-amm-buy-wallets-window.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  width: 500px;
  height: auto;
}

.modal-amm-sell-wallets {
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal-amm-sell-wallets.none {
  display: none;
}

.modal-amm-sell-wallets-window {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 300px;
  display: block;
  position: static;
  inset: 0%;
}

.modal-amm-sell-wallets-window.border {
  border: 1px solid var(--border--gray);
  border-radius: 9px;
  width: 500px;
  height: auto;
}

.form-block-3 {
  flex: 1;
}

.form-102 {
  display: block;
}

.download_text.green {
  color: var(--green-text);
  cursor: pointer;
}

.grid_wallet {
  border-bottom: 1px solid var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr 1fr 2.5fr .75fr .5fr .5fr .5fr;
  width: 100%;
  padding: 10px;
}

.wallet_grid_wrapper {
  border-right: 1px solid var(--border--gray);
  border-bottom: 1px solid var(--border--gray);
  border-left: 1px solid var(--border--gray);
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  max-height: 800px;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: flex;
  overflow: auto;
}

.grid-wallets {
  border-bottom: 1px solid var(--border--gray);
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr 1fr 2fr .75fr 1fr .75fr .75fr;
  width: 100%;
  padding: 10px;
}

.grid-wallets.none {
  display: none;
}

.paragraph-4 {
  cursor: pointer;
}

.checkbox-label {
  margin-bottom: 0;
}

.checkbox-field-3 {
  align-self: center;
  margin-bottom: 0;
}

.code-embed-7 {
  flex: 1;
  min-width: 100%;
}

.textarea-2 {
  background-color: #f8fafc;
  border-radius: 9px;
  min-height: 300px;
}

.refresh-btn {
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.refresh-btn:hover, .refresh-btn:active {
  transform: rotate(90deg);
}

.refresh-btn.absolute {
  position: absolute;
  inset: 5px 5px auto auto;
}

.token_circle_icon {
  border-radius: 200px;
  width: 20px;
  overflow: hidden;
}

.image-4 {
  display: block;
}

.div-block-4 {
  border-right: 1px solid var(--border--gray);
  align-self: stretch;
  height: 19px;
}

.form-block-4 {
  margin-left: -10px;
  padding-left: 0;
}

.form-block-4.stretch {
  flex: 1;
}

.form-103 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.grid-transfer-result {
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr 1fr 1fr 1fr 1fr;
  align-self: stretch;
}

.grid-transfer-result._10-down {
  border-bottom: 1px solid var(--border--gray);
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.grid-transfer-result.grid {
  border-bottom: 1px solid var(--border--gray);
  padding-top: 5px;
  padding-bottom: 10px;
}

.grid-transfer-result.grid.none {
  display: none;
}

.form-block-5 {
  align-self: center;
  margin-bottom: 0;
}

.checkbox {
  margin-top: 2px;
}

@media screen and (max-width: 991px) {
  .section {
    flex-direction: column;
  }

  .nav {
    border-left: 1px solid #6f6f6f4d;
    height: auto;
    display: none;
    position: fixed;
    top: 70px;
    bottom: 0;
    right: 0;
  }

  .nav-wrap {
    flex: 1;
  }

  .logo-link {
    display: none;
  }

  .logo-link.mobile {
    margin-bottom: 0;
    display: block;
  }

  .content {
    flex-direction: column;
  }

  .content-left {
    padding-top: 80px;
  }

  .top-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .top-wrap {
    background-color: #fff;
    border-bottom: 1px solid #6f6f6f4d;
    width: 100%;
    padding: 10px 20px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
  }

  .form-wrap {
    max-width: none;
  }

  .content-right {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    width: 100%;
  }

  .right-wrap {
    flex: 1;
  }

  .mobile-nav {
    z-index: 99999;
    background-color: #fff;
    border-bottom: 1px solid #6f6f6f4d;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: sticky;
    top: 0;
  }

  .hamburger {
    cursor: pointer;
    width: 40px;
  }

  .hamburger-line {
    background-color: #000;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hamburger-line.mid {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .shadow {
    z-index: 989;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: #0000004d;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .right-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .r-cards {
    flex-direction: column;
  }

  .r-card {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }

  .r-card.mid {
    border-top-color: #6f6f6f00;
    border-left-color: #6f6f6f4d;
    border-top-right-radius: 0;
  }

  .r-card.last {
    border-top-color: #6f6f6f00;
    border-left-color: #6f6f6f4d;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }

  .recent-wrap {
    grid-template-columns: 1fr;
  }

  .right-holder {
    flex-direction: column;
    display: flex;
  }

  .search-form-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .revenue-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .login-form_wrapper {
    width: 33vh;
  }

  .h1.center {
    font-size: 27px;
  }
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcc9f-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcca2-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccac-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccb0-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccb3-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccbd-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccc1-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccc4-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccce-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccd2-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccd5-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccdf-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcce3-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcce6-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccf0-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccf4-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bccf7-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd01-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd3d-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd40-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd4a-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd4e-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd51-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd5b-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd5f-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd62-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd6c-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd70-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd73-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd7d-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd81-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd84-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd8e-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd92-ba4a3eaa {
  place-self: auto;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd95-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcd9f-ba4a3eaa {
  place-self: center end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcde6-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcde8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdea-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdec-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdee-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdf2-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdf4-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdf6-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdf8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdfa-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcdfc-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce08-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce0a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce0c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce0e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce10-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce12-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce1e-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce20-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce22-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce24-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce26-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce28-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce34-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce36-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce38-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce3a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce3c-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce3e-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce4a-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce4c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce4e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce50-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce52-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce54-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce60-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce62-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce64-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce66-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce68-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce6a-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce76-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce78-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce7a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce7c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce7e-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce80-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce8c-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce8e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce90-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce92-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bce94-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bce96-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcea2-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcea4-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcea6-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcea8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bceaa-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bceac-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcebc-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcebe-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcec0-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcec2-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcec4-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcec8-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bceca-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcecc-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcece-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bced0-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bced2-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcede-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcee0-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcee2-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcee4-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcee6-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcee8-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcef4-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcef6-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcef8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcefa-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcefc-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcefe-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf0a-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf0c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf0e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf10-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf12-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf14-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf20-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf22-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf24-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf26-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf28-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf2a-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf3a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf3c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf3e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf40-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf42-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf46-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf48-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf4a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf4c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf4e-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf50-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf60-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf62-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf64-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf66-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf68-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf6c-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf6e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf70-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf72-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf74-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf76-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf86-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf88-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf8a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf8c-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf8e-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf92-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf94-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf96-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf98-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf9a-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcf9c-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfac-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfae-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfb0-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfb2-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfb4-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfb8-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfba-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfbc-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfbe-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfc0-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfc2-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfce-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfd0-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfd2-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfd4-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfd6-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfd8-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfe8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfea-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfec-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcfee-ba4a3eaa {
  justify-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcff0-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcff4-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcff6-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcff8-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcffa-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bcffc-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bcffe-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd00a-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd00c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd00e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd010-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd012-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd014-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd020-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd022-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd024-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd026-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd028-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd02a-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd036-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd038-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd03a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd03c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd03e-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd040-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd04c-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd04e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd050-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd052-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd054-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd056-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd062-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd064-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd066-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd068-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd06a-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd06c-ba4a3eaa {
  justify-self: end;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd078-ba4a3eaa {
  align-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd07a-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd07c-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd07e-ba4a3eaa, #w-node-_5171f14d-1a6e-9d04-2cde-2072802bd080-ba4a3eaa {
  place-self: center;
}

#w-node-_5171f14d-1a6e-9d04-2cde-2072802bd082-ba4a3eaa {
  justify-self: end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b1c-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b1f-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b29-ba4a3eaa {
  place-self: center end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b2d-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b30-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b3a-ba4a3eaa {
  place-self: center end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b3e-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b41-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b4b-ba4a3eaa {
  place-self: center end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b4f-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b52-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b5c-ba4a3eaa {
  place-self: center end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b60-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b63-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b6d-ba4a3eaa {
  place-self: center end;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b71-ba4a3eaa {
  place-self: auto;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b74-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_4cbcfc7d-99a6-9e31-19ce-d7e2028a7b7e-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718923-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718926-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718930-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718934-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718937-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718941-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718945-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718948-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718952-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718956-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718959-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718963-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718967-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e271896a-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718974-ba4a3eaa {
  place-self: center end;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718978-ba4a3eaa {
  place-self: auto;
}

#w-node-_2140ab29-bf67-4624-5318-3381e271897b-ba4a3eaa {
  justify-self: stretch;
}

#w-node-_2140ab29-bf67-4624-5318-3381e2718985-ba4a3eaa {
  place-self: center end;
}

#w-node-_37d904d2-b674-aeee-79e1-343671c92e6e-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2953c003-966d-7d0f-857d-2e34097543ab-ba4a3eaa {
  justify-self: start;
}

#w-node-_2066efc0-b765-ad9a-d84f-83b5ea660b95-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c112f673-e87c-83e3-82a4-e8fe56a98be8-ba4a3eaa {
  justify-self: start;
}

#w-node-_4834e38a-e269-588e-70cf-698cfba6bf48-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d679d6d1-398a-404e-6d88-35f7c5e83d19-ba4a3eaa {
  justify-self: start;
}

#w-node-d73430e2-8a28-15f1-3b38-aede2da18c5a-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d73430e2-8a28-15f1-3b38-aede2da18c63-ba4a3eaa {
  justify-self: start;
}

#w-node-_1f979cdf-c8ac-0ddc-7b9b-ece04861518b-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f979cdf-c8ac-0ddc-7b9b-ece048615194-ba4a3eaa {
  justify-self: start;
}

#w-node-_687ca770-82bb-c279-8876-847cb873bde3-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_687ca770-82bb-c279-8876-847cb873bdec-ba4a3eaa {
  justify-self: start;
}

#w-node-_79e210c3-eee1-c4c7-c61b-51497821a1d4-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79e210c3-eee1-c4c7-c61b-51497821a1dd-ba4a3eaa {
  justify-self: start;
}

#w-node-_7e9df5ee-d5c6-6c7d-cf81-0b8c26aacf7d-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7e9df5ee-d5c6-6c7d-cf81-0b8c26aacf86-ba4a3eaa {
  justify-self: start;
}

#w-node-d75ed5d5-d31d-b967-c949-f68d17945fa7-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d75ed5d5-d31d-b967-c949-f68d17945fb0-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a9146e-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a91477-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a91479-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a91482-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a91484-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a9148d-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a9148f-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a91498-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a9149a-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914a3-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914a5-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914ae-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914b0-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914b9-ba4a3eaa {
  justify-self: start;
}

#w-node-c66e1c12-67cb-46ba-22c8-442515fbe7d9-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c66e1c12-67cb-46ba-22c8-442515fbe7e2-ba4a3eaa {
  justify-self: start;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914bb-ba4a3eaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cee71a2-1336-4428-daa4-ac1179a914c4-ba4a3eaa {
  justify-self: start;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e10d-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e110-ba4a3eaa {
  justify-self: stretch;
}

#amm_buy_tip_koshelka.w-node-a7a5dd0c-8335-fadb-5e98-2847a094e11a-ba4a3eaa {
  place-self: center end;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e11e-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e121-ba4a3eaa {
  justify-self: stretch;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e12b-ba4a3eaa {
  place-self: center end;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e12f-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e132-ba4a3eaa {
  justify-self: stretch;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e13c-ba4a3eaa {
  place-self: center end;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e140-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e143-ba4a3eaa {
  justify-self: stretch;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e14d-ba4a3eaa {
  place-self: center end;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e151-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e154-ba4a3eaa {
  justify-self: stretch;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e15e-ba4a3eaa {
  place-self: center end;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e162-ba4a3eaa {
  place-self: auto;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e165-ba4a3eaa {
  justify-self: stretch;
}

#w-node-a7a5dd0c-8335-fadb-5e98-2847a094e16f-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265dafd2-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265dafd5-ba4a3eaa {
  justify-self: stretch;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265dafdf-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265dafe3-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265dafe6-ba4a3eaa {
  justify-self: stretch;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265daff0-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265daff4-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265daff7-ba4a3eaa {
  justify-self: stretch;
}

#amm_sell_tip_koshelka.w-node-f749e8a9-2c76-e4b2-950b-e50b265db001-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db005-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db008-ba4a3eaa {
  justify-self: stretch;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db012-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db016-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db019-ba4a3eaa {
  justify-self: stretch;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db023-ba4a3eaa {
  place-self: center end;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db027-ba4a3eaa {
  place-self: auto;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db02a-ba4a3eaa {
  justify-self: stretch;
}

#w-node-f749e8a9-2c76-e4b2-950b-e50b265db034-ba4a3eaa {
  place-self: center end;
}

#w-node-e310133e-2d2e-8844-5d9d-25632cc9781e-af14e03a, #w-node-fdeae1be-0f20-7b66-0257-af82945bb182-af14e03a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e5c0434b-08eb-9df1-7990-b0cc7d6a284c-af14e03a {
  align-self: center;
}

#wallet_label.w-node-_1b484dcb-a6db-f444-f7af-aee4cf6efd89-af14e03a, #created_date.w-node-_19e8b128-336c-f402-0df9-1c997e7bdb6d-af14e03a, #balance.w-node-f105e185-43ad-f3e3-9eac-41179d42f7f4-af14e03a, #edit_wallet.w-node-b7fe24bb-b64e-6e05-076d-a3b325b8bbd8-af14e03a {
  place-self: center start;
}

#w-node-_7b622f01-95e8-55c8-5d54-af3094155bdb-af14e03a {
  align-self: center;
}

#w-node-_7b622f01-95e8-55c8-5d54-af3094155bdf-af14e03a, #w-node-_7b622f01-95e8-55c8-5d54-af3094155be1-af14e03a, #w-node-_7b622f01-95e8-55c8-5d54-af3094155be3-af14e03a, #w-node-_7b622f01-95e8-55c8-5d54-af3094155be7-af14e03a {
  place-self: center start;
}

#w-node-_02764c87-b24d-ba98-3c17-19f442c9ce26-af14e03a {
  align-self: center;
}

#w-node-_02764c87-b24d-ba98-3c17-19f442c9ce2a-af14e03a, #w-node-_02764c87-b24d-ba98-3c17-19f442c9ce2c-af14e03a, #w-node-_02764c87-b24d-ba98-3c17-19f442c9ce2e-af14e03a, #w-node-_02764c87-b24d-ba98-3c17-19f442c9ce32-af14e03a {
  place-self: center start;
}

#w-node-_404f3088-7f91-faf7-391e-27908e948ada-af14e03a {
  align-self: center;
}

#w-node-_404f3088-7f91-faf7-391e-27908e948ade-af14e03a, #w-node-_404f3088-7f91-faf7-391e-27908e948ae0-af14e03a, #w-node-_404f3088-7f91-faf7-391e-27908e948ae2-af14e03a, #w-node-_404f3088-7f91-faf7-391e-27908e948ae6-af14e03a {
  place-self: center start;
}

#w-node-a876a860-ca01-061a-da1a-74d4691930a3-af14e03a {
  align-self: center;
}

#w-node-a876a860-ca01-061a-da1a-74d4691930a7-af14e03a, #w-node-a876a860-ca01-061a-da1a-74d4691930a9-af14e03a, #w-node-a876a860-ca01-061a-da1a-74d4691930ab-af14e03a, #w-node-a876a860-ca01-061a-da1a-74d4691930af-af14e03a {
  place-self: center start;
}

#w-node-ddc20906-f252-e956-7442-32c919c76482-f2e5bdf8, #wallet_number.w-node-_95a0c0b6-3010-249e-f104-83927ce31c8f-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#purpose_color.w-node-_95a0c0b6-3010-249e-f104-83927ce31c91-f2e5bdf8 {
  place-self: center start;
}

#w-node-_95a0c0b6-3010-249e-f104-83927ce31c94-f2e5bdf8 {
  align-self: center;
}

#status_OK.w-node-_95a0c0b6-3010-249e-f104-83927ce31c98-f2e5bdf8, #w-node-_6ced031a-dc18-0c65-bcc4-af3268912e53-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6ced031a-dc18-0c65-bcc4-af3268912e55-f2e5bdf8 {
  place-self: center start;
}

#w-node-_6ced031a-dc18-0c65-bcc4-af3268912e58-f2e5bdf8 {
  align-self: center;
}

#w-node-_6ced031a-dc18-0c65-bcc4-af3268912e5c-f2e5bdf8, #w-node-db040624-00d7-9aed-d0d6-7af8ee439b22-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db040624-00d7-9aed-d0d6-7af8ee439b24-f2e5bdf8 {
  place-self: center start;
}

#w-node-db040624-00d7-9aed-d0d6-7af8ee439b27-f2e5bdf8 {
  align-self: center;
}

#w-node-db040624-00d7-9aed-d0d6-7af8ee439b2b-f2e5bdf8, #w-node-f4003f37-05e7-04b4-39dd-4dc336fab5e6-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4003f37-05e7-04b4-39dd-4dc336fab5e8-f2e5bdf8 {
  place-self: center start;
}

#w-node-f4003f37-05e7-04b4-39dd-4dc336fab5eb-f2e5bdf8 {
  align-self: center;
}

#w-node-f4003f37-05e7-04b4-39dd-4dc336fab5ef-f2e5bdf8, #w-node-_7cc4a074-432b-9f27-6ea7-a739bd7f1a3e-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7cc4a074-432b-9f27-6ea7-a739bd7f1a40-f2e5bdf8 {
  place-self: center start;
}

#w-node-_7cc4a074-432b-9f27-6ea7-a739bd7f1a43-f2e5bdf8 {
  align-self: center;
}

#w-node-_7cc4a074-432b-9f27-6ea7-a739bd7f1a47-f2e5bdf8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ae63b03-c799-54fe-2cc0-470a820c65c3-81f4db80, #w-node-f3392775-bdf0-975a-a98f-14c210948517-81f4db80, #w-node-_9315c2fc-7bb5-d886-522c-9a9f581cf4de-81f4db80, #w-node-_0ae63b03-c799-54fe-2cc0-470a820c65c3-a1a654ed, #w-node-f3392775-bdf0-975a-a98f-14c210948517-a1a654ed, #w-node-_9315c2fc-7bb5-d886-522c-9a9f581cf4de-a1a654ed {
  place-self: center start;
}

#w-node-_3e5e4f88-f382-117d-5b8b-c605bd46ce03-86ec0591, #w-node-_3e5e4f88-f382-117d-5b8b-c605bd46ce05-86ec0591, #w-node-_9dcd38a5-7dcb-299e-a51b-685684666d79-86ec0591, #w-node-b1d62cc8-f282-3da9-f0ac-9449ff6e611d-86ec0591, #w-node-_94bc6f8d-ea1b-133f-2edf-e32270d7f6d1-86ec0591 {
  place-self: center stretch;
}

#w-node-_383da6b7-7a0f-843e-f5c5-b0cb21fc6679-86ec0591, #w-node-_835b8fd0-db1e-f24c-04c2-e2b39acaa0fe-86ec0591 {
  place-self: center;
}

#w-node-d523172c-adb9-f899-e1b4-941f5e7dced8-86ec0591 {
  align-self: stretch;
}

#w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b43-86ec0591, #w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b45-86ec0591, #w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b47-86ec0591, #w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b4b-86ec0591, #w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b4d-86ec0591 {
  place-self: center stretch;
}

#w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b50-86ec0591, #w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b53-86ec0591 {
  place-self: center;
}

#w-node-_24ecd253-d351-fb62-d673-a4f98dfe7b56-86ec0591 {
  align-self: stretch;
}

#w-node-_0c451365-e354-73c8-549b-ea1e52cc87cb-86ec0591, #w-node-_0c451365-e354-73c8-549b-ea1e52cc87cd-86ec0591, #w-node-_0c451365-e354-73c8-549b-ea1e52cc87cf-86ec0591, #w-node-_0c451365-e354-73c8-549b-ea1e52cc87d3-86ec0591, #w-node-_0c451365-e354-73c8-549b-ea1e52cc87d5-86ec0591 {
  place-self: center stretch;
}

#w-node-_0c451365-e354-73c8-549b-ea1e52cc87d8-86ec0591, #w-node-_0c451365-e354-73c8-549b-ea1e52cc87db-86ec0591 {
  place-self: center;
}

#w-node-_0c451365-e354-73c8-549b-ea1e52cc87de-86ec0591 {
  align-self: stretch;
}

#w-node-_73e6da28-b8fc-69cf-edc7-2a6bf33856a5-d5162404 {
  align-self: center;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e1a-d5162404 {
  justify-self: stretch;
}

#wallet-type.w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e24-d5162404 {
  place-self: center end;
}

#w-node-_55bc4a74-41d1-0b94-b595-5bbb509c1abc-d5162404 {
  align-self: center;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e2b-d5162404 {
  justify-self: stretch;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e35-d5162404 {
  place-self: center end;
}

#w-node-_51382908-a04c-1a4d-cf84-5e43cd8c85ca-d5162404 {
  align-self: center;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e3c-d5162404 {
  justify-self: stretch;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e46-d5162404 {
  place-self: center end;
}

#w-node-_6eb818de-01a0-d90c-6285-7fb1a9bcf376-d5162404 {
  align-self: center;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e4d-d5162404 {
  justify-self: stretch;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e57-d5162404 {
  place-self: center end;
}

#w-node-_4c148e54-db58-c03b-d4da-7e761a195a06-d5162404 {
  align-self: center;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e6f-d5162404 {
  justify-self: stretch;
}

#w-node-_7d3d3029-0f5e-5c8b-3529-2a1f5aa97e79-d5162404 {
  place-self: center end;
}

#source_radio.w-node-_0ebaf121-1f60-7d2d-d5b1-3851b919ae53-3830cb6e {
  place-self: center;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d21942-3830cb6e {
  justify-self: stretch;
}

#source_wallet_type_grid_box.w-node-f534945c-0ff2-247d-d879-b37fb8d2194c-3830cb6e {
  place-self: center end;
}

#w-node-_51011930-90c4-188e-a312-c6ccd6f92482-3830cb6e {
  place-self: center;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d21964-3830cb6e {
  justify-self: stretch;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d2196e-3830cb6e {
  place-self: center end;
}

#w-node-_82bc9f51-c7e7-c57f-a38a-9d8682243c5f-3830cb6e {
  place-self: center;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d21975-3830cb6e {
  justify-self: stretch;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d2197f-3830cb6e {
  place-self: center end;
}

#w-node-_636619ae-73f5-6e8a-e406-72f7bfeb0aaa-3830cb6e {
  place-self: center;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d21986-3830cb6e {
  justify-self: stretch;
}

#w-node-f534945c-0ff2-247d-d879-b37fb8d21990-3830cb6e {
  place-self: center end;
}

#w-node-_66bdfdb5-48a0-4a95-6753-8a0ea5bb5011-3830cb6e {
  place-self: center;
}

#w-node-_66bdfdb5-48a0-4a95-6753-8a0ea5bb5014-3830cb6e {
  justify-self: stretch;
}

#w-node-_66bdfdb5-48a0-4a95-6753-8a0ea5bb501e-3830cb6e {
  place-self: center end;
}

#target_select.w-node-cf35f06f-44b5-d998-2329-a68e59646774-3830cb6e {
  place-self: auto;
}

#w-node-cf35f06f-44b5-d998-2329-a68e59646777-3830cb6e {
  justify-self: stretch;
}

#target_wallet_type_grid_box.w-node-cf35f06f-44b5-d998-2329-a68e59646781-3830cb6e {
  place-self: center end;
}

#w-node-cf35f06f-44b5-d998-2329-a68e59646796-3830cb6e {
  place-self: auto;
}

#w-node-cf35f06f-44b5-d998-2329-a68e59646799-3830cb6e {
  justify-self: stretch;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467a3-3830cb6e {
  place-self: center end;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467a7-3830cb6e {
  place-self: auto;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467aa-3830cb6e {
  justify-self: stretch;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467b4-3830cb6e {
  place-self: center end;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467b8-3830cb6e {
  place-self: auto;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467bb-3830cb6e {
  justify-self: stretch;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467c5-3830cb6e {
  place-self: center end;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467c9-3830cb6e {
  place-self: auto;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467cc-3830cb6e {
  justify-self: stretch;
}

#w-node-cf35f06f-44b5-d998-2329-a68e596467d6-3830cb6e {
  place-self: center end;
}

#result_number.w-node-_9e59a136-6ae7-1ec0-f2d8-0dfc07c6c440-3830cb6e, #result_public_key.w-node-_9e59a136-6ae7-1ec0-f2d8-0dfc07c6c444-3830cb6e, #result_token_name.w-node-_9e59a136-6ae7-1ec0-f2d8-0dfc07c6c446-3830cb6e, #result_amount.w-node-_9e59a136-6ae7-1ec0-f2d8-0dfc07c6c448-3830cb6e, #result_status.w-node-_9e59a136-6ae7-1ec0-f2d8-0dfc07c6c44a-3830cb6e, #w-node-_4d19d37e-897e-6e38-fae8-bba07fb37d8d-3830cb6e, #w-node-_4d19d37e-897e-6e38-fae8-bba07fb37d92-3830cb6e, #w-node-_4d19d37e-897e-6e38-fae8-bba07fb37d94-3830cb6e, #w-node-_4d19d37e-897e-6e38-fae8-bba07fb37d96-3830cb6e, #w-node-_4d19d37e-897e-6e38-fae8-bba07fb37d98-3830cb6e, #w-node-_3fb37c5a-b11b-12e9-ada4-839897236c93-3830cb6e, #w-node-_3fb37c5a-b11b-12e9-ada4-839897236c98-3830cb6e, #w-node-_3fb37c5a-b11b-12e9-ada4-839897236c9a-3830cb6e, #w-node-_3fb37c5a-b11b-12e9-ada4-839897236c9c-3830cb6e, #w-node-_3fb37c5a-b11b-12e9-ada4-839897236c9e-3830cb6e, #w-node-_170fe088-17f7-4d0e-f8ba-9f2119241c30-3830cb6e, #w-node-_170fe088-17f7-4d0e-f8ba-9f2119241c35-3830cb6e, #w-node-_170fe088-17f7-4d0e-f8ba-9f2119241c37-3830cb6e, #w-node-_170fe088-17f7-4d0e-f8ba-9f2119241c39-3830cb6e, #w-node-_170fe088-17f7-4d0e-f8ba-9f2119241c3b-3830cb6e, #w-node-_565d786a-576b-5409-1176-d01c80e883bd-3830cb6e, #w-node-_565d786a-576b-5409-1176-d01c80e883c2-3830cb6e, #w-node-_565d786a-576b-5409-1176-d01c80e883c4-3830cb6e, #w-node-_565d786a-576b-5409-1176-d01c80e883c6-3830cb6e, #w-node-_565d786a-576b-5409-1176-d01c80e883c8-3830cb6e {
  place-self: center start;
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}