.warning-api {
  background-color: #2b2b37;
  padding: 8px 0;
}

.warning-api.warning-api_dashboard {
  padding: 0;
  background-color: transparent;
}

.warning-api .container {
  width: 100%;
  padding: 0 16px;
}

.warning-api-message {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #403d3b;
  border: 1px solid #9f8a4e;
  border-radius: 8px;
  padding: 16px;
  margin: 0 16px;
}

.warning-api-message_dashboard {
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  border-color: #f39321;
}

.warning-api-message__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.warning-api-message__icon svg {
  width: 20px;
  height: 20px;
}

.warning-api-message__text {
  font-size: 14px;
  line-height: 20px;
  color: #d8b958;
}

.warning-api-message__text_dashboard {
  color: #f39321;
}

.warning-api-message__link,
.warning-api-message__link:hover,
.warning-api-message__link:visited,
.warning-api-message__link:focus {
  color: #d8b958;
  text-decoration: underline;
  text-decoration-style: dashed;
}

@media screen and (min-width: 992px) {
  .warning-api-message {
    justify-content: center;
    align-items: center;
    min-height: 64px;
    padding: 12px 24px;
  }
  .warning-api-message_dashboard {
    padding: 16px 32px;
    margin: 0 16px 24px 16px !important;
    border-radius: 8px;
  }
  .warning-api-message__icon,
  .warning-api-message__icon svg {
    width: 24px;
    height: 24px;
  }
  .warning-api-message__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .warning-api-message {
    margin: 0 40px;
  }
  .warning-api .container {
    padding: 0 40px;
  }
}
.cookie-warning {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999999;
  transition: transform 500ms;
  will-change: transform;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-warning_shown {
  transform: translateY(100%);
}

.cookie-warning__content {
  background: #e5e5e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.cookie-warning__text p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  opacity: 1;
  display: inline;
}

.cookie-warning__content a {
  white-space: nowrap;
  color: #00c26f;
  text-decoration: none;
}

.cookie-warning__content a:hover {
  opacity: 0.8;
}

.cookie-warning__button {
  width: 100%;
  display: block;
  background: #00c26f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18.75px;
  letter-spacing: 0.1px;
  border-radius: 8px;
  border: none;
  outline: none;
  padding: 10px 16px;
}

.cookie-warning__controls {
  width: 100%;
}

@media all and (min-width: 768px) {
  .cookie-warning__content {
    flex-direction: row;
    max-width: 695px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 14px 28px;
  }
  .cookie-warning__controls {
    margin-top: 0;
    margin-left: 40px;
    width: auto;
  }
  .cookie-warning__button {
    width: auto;
  }
  .cookie-warning__text p {
    display: block;
  }
}
.mobile-qr {
  display: none;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #3d3d4b;
  transition: all 0.3s ease;
  border-radius: 6px;
  background-color: #2b2b37;
  margin: 0;
  cursor: pointer;
}

.mobile-qr:hover {
  border-color: #00c26f;
}

.mobile-qr_active {
  border-color: #00c26f;
}

.mobile-qr__tooltip {
  background-color: #ffffff;
  border-radius: 9px;
  width: 122px;
  height: 122px;
  padding: 12px;
  border: 2px solid #00c26f;
  z-index: 9;
}

.mobile-qr__tooltip::after {
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #00c26f;
}

.mobile-qr__tooltip[data-popper-placement*="top"]::after {
  bottom: -14px;
}

.mobile-qr__tooltip[data-popper-placement*="bottom"]::after {
  top: -14px;
  transform: rotateZ(180deg);
}

.mobile-qr__tooltip::before {
  content: "";
  position: absolute;
  left: calc(50% - 11px);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 12px solid #ffffff;
  z-index: 8;
}

.mobile-qr__tooltip[data-popper-placement*="top"]::before {
  bottom: -11px;
}

.mobile-qr__tooltip[data-popper-placement*="bottom"]::before {
  top: -11px;
  transform: rotateZ(180deg);
}

.mobile-qr__tooltip-content {
  background-color: #ffffff;
  width: 96px;
  height: 96px;
  border-radius: 4px;
}

@media screen and (min-width: 992px) {
  .mobile-qr {
    display: flex;
  }
}
.dropdown__content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

.dropdown__content_open {
  opacity: 1;
  max-height: 800px;
}

.dropdown__topic.dropdown__topic-with-icon {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
}

.dropdown__topic-icon {
  width: 32px;
  height: 32px;
}

.dropdown__icon {
  color: #aeb0bd;
  transition: all 0.3s ease-in-out;
}

.dropdown__icon_open {
  transform: rotateZ(45deg);
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button {
  font-size: 14px;
  line-height: 20px;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button_main {
  background-color: #46475d;
  border: solid 1px transparent;
  font-weight: 400;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button_secondary {
  background-color: transparent;
  border: solid 1px #46475d;
  font-weight: 400;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button:active {
  background-color: #343443;
  border: solid 1px #46475d;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button:hover {
  background-color: #46475d;
}

.authorization-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.authorization-button:hover {
  background-color: #00c87a;
  color: #ffffff;
}
.authorization-button:focus {
  outline: 0;
  -webkit-text-decoration: 0;
  text-decoration: 0;
  color: #ffffff;
}

.authorization-mobile-buttons {
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 150px;
}

.authorization-mobile-buttons__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  height: 236px;
  border-radius: 12px;
  padding: 24px 16px;
  background-size: cover;
}

.authorization-mobile-buttons__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.authorization-mobile-buttons__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.34px;
  text-align: center;
  opacity: 1;
  color: #ffffff;
}

.authorization-mobile-buttons .authorization-mobile-buttons__log-out {
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-color: #363746;
  background-color: #363746;
}
.authorization-mobile-buttons .authorization-mobile-buttons__log-out:hover {
  border-color: #363746;
  background-color: #363746;
}

.authorization-mobile-buttons__sign-in,
.authorization-mobile-buttons__sign-up {
  height: 40px;
  letter-spacing: 0.2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.09px;
  text-align: center;
}

.authorization-mobile-buttons__sign-in {
  background: transparent;
  border: 1px solid #00c26f;
}
.authorization-mobile-buttons__sign-in:hover {
  background: transparent;
}

.authorization-mobile-buttons__sign-up {
  background: linear-gradient(
    0deg,
    #00b890 5.71%,
    #00b88e 6.76%,
    #00bd7c 18.18%,
    #00c072 30.5%,
    #00c26f 45.17%
  );
}

.dropdown-for-partners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-right: 30px;
  color: #aeb0bd;
  font-weight: 700;
}

.dropdown-for-partners__content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  padding: 0;
  overflow: hidden;
}

.dropdown-for-partners__content_open {
  max-height: 1200px;
  opacity: 1;
  padding: 14px 0 24px;
}

.dropdown-for-partners__explore {
  display: block;
  border: 1px solid #00c26f;
  border-radius: 8px;
  padding: 12px 16px;
}

.dropdown-for-partners__explore p {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  margin: 0;
  opacity: 1;
}

.dropdown-for-partners__explore-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}

.dropdown-for-partners__category {
  margin-top: 16px;
}

.dropdown-for-partners__category:first-of-type {
  margin-top: 24px;
}

.dropdown-for-partners__category-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #6a6a7f;
}

.dropdown-for-partners__navigation-items {
  display: flex;
  flex-direction: column;
}

.dropdown-for-partners__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0;
  color: #ffffff;
}

.dropdown-for-partners__link img {
  display: block;
  margin-right: 8px;
}

.dropdown-for-partners__link img:nth-child(2) {
  margin-left: 8px;
}

.dropdown-for-partners__link_last {
  order: 1;
}

.dropdown-for-partners__button {
  margin-top: 24px;
}

a.dropdown-for-partners__button:hover {
  color: #ffffff;
}

.dropdown-for-partners__navigation {
  margin-top: 8px;
}

.dropdown-for-partners__navigation-tabs {
  width: 100vw;
  overflow-x: auto;
  margin: 0 -26px;
  padding: 0 26px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown-for-partners__navigation-tabs::-webkit-scrollbar {
  display: none;
}

.dropdown-for-partners__navigation-tabs-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 571px;
  gap: 16px;
}

.dropdown-for-partners__navigation-tabs-box .mobile-menu-dropdown__tabs-button {
  white-space: nowrap;
}

.dropdown-for-partners__navigation-tab {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  border-radius: 4px;
  background-color: #2b2b35;
  border: 1px solid #59547a;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
  transition: background-color ease 0.3s;
}

.dropdown-for-partners__navigation-tab:first-child {
  margin-left: 0;
}

.dropdown-for-partners__navigation-tab_active {
  background-color: #59547a;
  pointer-events: none;
  cursor: default;
}

.inner-navigation-dropdown__link-soon {
  display: block;
  width: 38px;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  background-color: #00c26f;
  margin-left: 8px;
}

@media screen and (min-width: 625px) {
  .dropdown-for-partners__navigation-tabs {
    width: auto;
    overflow-x: scroll;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#mobile-menu {
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  #mobile-menu {
    display: none;
  }
}

.mobile-menu-btn {
  display: block;
  position: relative;
  left: 5px;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
.mobile-menu-btn--bar {
  height: 3px;
  width: 36px;
  background-color: #00c26f;
  margin-bottom: 6px;
  border-radius: 2px;
  transition: all 500ms;
  transform-origin: 50% 50%;
}
.mobile-menu-btn--bar:last-child {
  margin-bottom: 0;
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(2) {
  opacity: 0;
  transform: rotate(180deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

html[dir="rtl"] .mobile-menu-btn {
  left: unset;
  right: 5px;
}

.mobile-menu-wrapper {
  width: 100%;
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background-color: red;
  height: 100vh;
  z-index: 1000;
}

.mobile-menu {
  width: 100%;
  height: calc(100% - 60px);
  transform: translateX(0%);
  position: absolute;
  top: 65px;
  left: 0;
  background-color: #2b2b36;
  transition: transform 500ms;
  overflow-y: auto;
  overflow-x: hidden;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .mobile-menu {
    top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.active {
  transform: translateX(100%);
}
.mobile-menu--list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
}
.mobile-menu--list li > span > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-inline-end: 30px;
}
.mobile-menu--list a {
  color: #fff;
}
.mobile-menu--select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu--lang-select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  background-color: transparent;
  color: #ffffff;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: start;
}
.mobile-menu svg {
  position: absolute;
  left: calc(100% - 16px);
  display: block;
  width: 16px;
  height: 16px;
}

html[dir="rtl"] .mobile-menu svg {
  left: unset;
  right: calc(100% - 16px);
}

.mobile-menu__category-title {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: start;
  color: #aeb0bd;
  border-bottom: 1px solid #46475d;
}

.mobile-menu__category-title > a {
  display: inline-block;
  width: 100%;
  color: #aeb0bd;
}

.mobile-menu__category-title-history-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #e5e5e5;
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.mobile-menu__category-title-history-button > img {
  margin-right: 8px;
}

.mobile-menu_flex {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.mobile-menu--inactive {
  font-size: 24px;
  color: #a4a3aa;
}

.mobile-menu--list-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-align: start;
}

.mobile-menu--list-item img {
  width: 20px;
  height: 20px;
}

.mobile-menu--list-pair img {
  width: 35px;
  height: 20px;
}

.mobile-menu--list .mobile-menu--list-pair li a {
  align-items: center;
}

.mobile-menu--list-item:first-child {
  margin-top: 10px;
}

li.mobile-menu--list-item-line {
  display: block;
  margin: 0;
  height: 1px;
  background-color: #3d3d4b;
}

.mobile-menu--list-item .icon-open {
  font-size: 15px;
  margin-inline-start: 10px;
  margin-top: 4px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.mobile-menu--tokens-link {
  color: #00c26f !important;
}

.dropdown_item {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
}

.mobile-menu--list ul a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.mobile-menu__category-title > .mobile-menu__category-arrow {
  top: 25%;
  left: calc(100% - 10px);
  width: 16px;
  height: 16px;
  transform: rotateZ(-90deg) scale(1.5);
}

.mobile-menu--list-coin .mobile-menu--list-item:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

html[dir="rtl"] .mobile-menu__category-title > .mobile-menu__category-arrow {
  left: unset;
  right: calc(100% - 10px);
  transform: rotateZ(-90deg) scale(1.5) rotateX(180deg);
}

.mobile-menu--flag-icon {
  display: block;
  width: 16px;
  height: 11px;
  margin-inline-end: 8px;
}

.mobile-menu-dropdown__tabs {
  display: flex;
  gap: 16px;
  margin: 20px 0 2px;
}
.now-button {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.now-button_large {
  height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.now-button_medium {
  height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.now-button_small {
  height: 30px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.now-button_primary {
  color: #fff;
  border: none;
  background-color: #00c26f;
}

.now-button_primary:hover {
  background-color: #00a451;
}

.now-button_primary:active {
  background-color: #007a34;
}

.now-button_secondary {
  color: #00c26f;
  border: 1px solid #00c26f;
  background-color: transparent;
}

.now-button_secondary:hover {
  background-color: rgba(0, 194, 111, 0.2);
}

.now-button_secondary:active {
  background-color: rgba(0, 194, 111, 0.1);
}

.now-button_tertiary {
  color: #fff;
  border: none;
  background-color: transparent;
}

.now-button_tertiary:hover {
  background-color: rgba(0, 194, 111, 0.2);
}

.now-button_tertiary:active {
  background-color: rgba(0, 194, 111, 0.1);
}

.now-button_loading {
  cursor: wait;
}

.now-button__loader {
  display: inline-flex;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header-join-pro-button {
  margin-inline-start: auto;
}

.header-join-pro-button {
  position: relative;
  display: none;
  gap: 6px;
  height: 30px;
  padding: 5px 16px;
  margin-left: auto;
  background: #2b2b36;
  border: none;
  border-radius: 8px;
  margin-inline-end: 12px;
  z-index: 1;
  transition: all 0.3s ease;
}

.header-join-pro-button_visible {
  display: flex;
}

.header-join-pro-button::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 0;
  border-radius: 8px;
  background: #2b2b36;
}

.header-join-pro-button::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #61e2c5 4.2%,
    #64dfd3 61.06%,
    #6cd9f5 95.32%,
    #4891f7 112.13%
  );
}

.header-join-pro-button__text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  opacity: 1;
  margin: 0;
  z-index: 1;
}

.header-join-pro-button__image {
  width: 20px;
  height: 20px;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  .header-join-pro-button {
    display: none;
  }
}
.logotype {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logotype--main {
  position: relative;
}

.localization-switcher--arrow-menu {
  display: none;
  position: relative;
  gap: 4px;
  align-items: center;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
  margin-inline-start: 18px;
  padding: 29px 0 27px;
  cursor: pointer;
}

.localization-switcher--arrow-menu:hover
  .localization-switcher--language-tooltip {
  display: block;
}

.localization-switcher--arrow-menu:hover {
  color: #00c26f;
  text-decoration: none;
}

.localization-switcher--arrow-menu.localization-switcher--arrow-menu_hidden:hover {
  color: #ffffff;
  text-decoration: none;
}

.localization-switcher--arrow-menu:hover svg {
  fill: #00c26f;
  stroke: #00c26f;
}

.localization-switcher--arrow-menu svg {
  fill: #fff;
  stroke: #fff;
}

.localization-switcher--arrow {
  display: flex;
  align-items: center;
  width: 9px;
}

.localization-switcher--arrow_hidden {
  opacity: 0;
  pointer-events: none;
}

.localization-switcher--arrow-menu_hidden:hover
  .localization-switcher-dropdown-list {
  display: none;
}

.localization-switcher--list:hover {
  background: #f7f7f9;
}

.localization-switcher--language-tooltip {
  position: absolute;
  top: 75px;
  right: 0%;
  z-index: 1000;
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}

html[dir="rtl"] .localization-switcher--language-tooltip {
  right: unset;
  left: -10%;
}

.localization-switcher--language-tooltip-content {
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}

.localization-switcher--language-tooltip-content__scrollable::-webkit-scrollbar-thumb {
  background: #00c26f;
}

.localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}

.localization-switcher--list {
  color: #2b2b37;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.localization-switcher--list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  transition: none;
}

.localization-switcher--list a .active-navigation-link {
  color: #a4a3aa;
}

.localization-switcher--list a:hover {
  color: inherit;
}

.localization-switcher--tokens-link {
  color: #00c26f;
}

.localization-switcher--language-link {
  position: relative;
  color: #2b2b37;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-inline-start: 25px;
  padding-inline-end: 20px;
}

[lang="fil"] .localization-switcher a,
.localization-switcher a[lang="nl"] {
  display: flex;
  align-items: center;
  white-space: normal;
}

[lang="nl"] .localization-switcher--arrow-menu {
  display: flex;
  align-items: center;
}

.localization-switcher--flag {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.localization-switcher--list img {
  margin-inline-end: 8px;
}

.localization-switcher__last-accent .localization-switcher--list:last-child {
  padding-top: 6px;
  border-top: 1px solid #dce2ea;
}

.localization-switcher--arrow-menu:nth-child(3) > div {
  cursor: initial;
}

.localization-switcher--arrow-menu:nth-child(3)
  .localization-switcher--language-tooltip-content__without-scroll {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .localization-switcher--arrow {
    margin-inline-start: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .localization-switcher--arrow-menu {
    display: flex;
  }
}
@media screen and (min-width: 1440px) {
  .localization-switcher--arrow-menu {
    margin-inline-start: 32px;
  }
  .localization-switcher--language-tooltip {
    right: -10%;
  }
  html[dir="rtl"] .localization-switcher--language-tooltip {
    right: unset;
  }
}
.authorization-user {
  display: flex;
  align-items: center;
  height: 76px;
  margin-inline-start: 16px;
  outline: 0;
}

.authorization-user svg {
  display: block;
  transition: fill ease 0.3s;
  min-width: 19px;
  height: auto;
}

.authorization-user:hover .authorization-menu {
  display: block;
}

.authorization-user__icon {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #00c26f;
  border: 2px solid #00c26f;
  transition: background-color, border-color, ease 0.3s;
}

.authorization-user__icon:hover {
  background-color: #00d583;
  border-color: #00d583;
}

.authorization-user__icon_authorized {
  display: flex;
  background-color: #2b2b36;
  border-color: #00c26f;
}

.authorization-user__icon_authorized:hover {
  background-color: rgba(0, 194, 111, 0.2);
  border-color: #00c26f;
}

.authorization-user__buttons {
  display: flex;
  gap: 16px;
  cursor: default;
}

.authorization-user__button {
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  letter-spacing: 0.1px;
  text-align: end;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.authorization-user__button_login {
  border: 1px solid transparent;
}

.authorization-user__button_login:hover {
  border-color: #00c26f;
}

.authorization-user__button_signup {
  background-color: #00c26f;
}

.authorization-user__button_signup:hover {
  background-color: #00c87a;
}

@media screen and (min-width: 1440px) {
  .authorization-user {
    margin-inline-start: 24px;
  }
}
.authorization-menu {
  position: absolute;
  top: 75px;
  right: 0;
  z-index: 1000;
  display: none;
  width: auto;
  min-width: 131px;
  background-color: #ffffff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}

.authorization-menu__list {
  list-style: none;
  padding: 7px 0;
  margin: 0;
}

.authorization-menu__list.authorization-menu__list_promo
  .authorization-menu__link {
  white-space: nowrap;
}

.authorization-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  padding: 10px 16px;
  outline: 0;
}

.authorization-menu__link_active {
  color: #2b2b37;
  background-color: #e6e9eb;
}

.authorization-menu__link:hover {
  background-color: #f7f7f9;
  color: #2b2b37;
}

.authorization-menu__link.authorization-menu__link_active:hover {
  background-color: #e6e9eb;
}

.authorization-menu__link img {
  margin-right: 8px;
  border-radius: 4px;
}

.authorization-menu__item:last-child .authorization-menu__link {
  padding-top: 16px;
  border-top: 1px solid #dce2ea;
}

@media screen and (min-width: 1240px) {
  .authorization-menu {
    left: 50%;
    right: auto;
    transform: translateX(-41%);
  }
  .authorization-menu__link_active {
    font-weight: 400;
  }
}
.header-authorization {
  position: relative;
  z-index: 2;
  display: none;
}

@media screen and (min-width: 1200px) {
  .header-authorization {
    display: block;
    min-width: 49px;
  }
}
.header {
  position: relative;
  width: 100%;
  background: #2b2b36;
}
@media screen and (max-width: 767px) {
  .header {
    display: block;
    height: 60px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 75px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .header {
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    z-index: 999;
  }
}

.header.header_scrolled {
  position: sticky;
  top: -75px;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}

.header.header_scrolled.header_scroll-up {
  top: 0;
}

@media screen and (max-width: 767px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .header.header_margin_disabled {
    margin-bottom: 0;
  }
}

.header-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.header .logotype--main {
  position: relative;
  height: 30px;
  width: 53px;
  transform-origin: left;
  display: flex;
}

.header .logotype--main_christmas {
  width: 68px;
}

html[dir="rtl"] .header .logotype--main {
  transform-origin: right;
}

.header .logotype--sub {
  display: none;
}

.top-menu {
  display: none;
  z-index: 1000;
}
.top-menu .primary-color {
  color: #00c26f;
}
@media screen and (min-width: 1200px) {
  .top-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
  }
}

.top-menu--item {
  position: relative;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.1px;
  white-space: nowrap;
  margin-inline-start: 12px;
  padding: 29px 0;
}
.top-menu--item a {
  color: inherit;
}
.top-menu--item a:hover {
  color: #00c26f;
}
.top-menu--item:hover {
  color: #00c26f;
  text-decoration: none;
}
.top-menu--item.active-navigation-link {
  color: #8b86af;
  pointer-events: none;
  cursor: default;
}

.top-menu--item:first-child {
  margin-inline-start: 24px;
}

.top-menu--item_border.active-navigation-link:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8b86af;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.top-menu--item_language .top-menu-dropdown-list {
  left: auto;
}

.top-menu-login-link {
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #00c26f;
  border-radius: 4px;
  padding: 8px 16px;
  margin-inline-start: auto;
  margin-inline-end: 15px;
}

.top-menu-login-link:hover {
  color: #ffffff;
}

.top-menu--arrow-menu {
  cursor: pointer;
}
.top-menu--arrow-menu svg {
  fill: #fff;
  stroke: #fff;
}
.top-menu--arrow-menu:hover {
  color: #00c26f;
  text-decoration: none;
}
.top-menu--arrow-menu:hover svg {
  fill: #00c26f;
  stroke: #00c26f;
}

.top-menu--arrow {
  display: inline-block;
  width: 6px;
  transform: scale(0.9);
}
@media screen and (min-width: 768px) {
  .top-menu--arrow {
    margin-inline-start: 8px;
  }
}

.top-menu--arrow-menu:hover .top-menu--language-tooltip {
  display: block;
}

.top-menu--language-tooltip {
  position: absolute;
  top: 75px;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 6px solid #00c26f;
  border-radius: 5px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}

.top-menu__double-dropdown .top-menu-dropdown-list {
  left: 115%;
}

html[dir="rtl"] .top-menu__double-dropdown .top-menu-dropdown-list {
  left: unset;
  right: -250%;
}

.top-menu__double-dropdown-wrapper {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: auto auto;
  -moz-column-gap: 36px;
  column-gap: 36px;
  padding: 8px 16px 16px;
}

.top-menu__double-dropdown-column {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 8px;
  min-width: 178px;
}

.top-menu__double-dropdown-column_first {
  grid-column: 1;
  grid-row: 1;
}

.top-menu__double-dropdown-column_second {
  grid-column: 2;
  grid-row: 1;
}

.top-menu__double-dropdown-footer {
  grid-column: 1 / span 2;
  grid-row: 2;
  border-top: 1px solid #eae8ed;
  padding-top: 8px;
  margin-top: 8px;
}

.top-menu__double-dropdown-footer a {
  display: flex;
  gap: 8px;
  color: #2b2b37;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1px;
  align-items: center;
  padding: 10px 16px;
}

.top-menu__double-dropdown-title {
  color: #2b2b37;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  padding: 0 16px;
}

.top-menu--list a img {
  width: 20px;
  height: 20px;
}

.top-menu .top-menu--list_pairs a img {
  width: 28px;
  height: 16px;
}

.top-menu--language-tooltip-content {
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.top-menu--language-tooltip-content__scrollable::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}

.top-menu--language-tooltip-content__scrollable::-webkit-scrollbar-thumb {
  background: #00c26f;
}

.top-menu--language-tooltip-content__without-scroll {
  margin-top: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}

.top-menu--list {
  color: #2b2b37;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.top-menu--list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  transition: none;
  height: 40px;
}
.top-menu--list a.active-navigation-link {
  color: #a4a3aa;
  pointer-events: none;
  cursor: default;
}
.top-menu--list:hover {
  background: #f7f7f9;
}
.top-menu--list:hover a {
  color: inherit;
}
.top-menu--list__dogecoin {
  position: relative;
}
.top-menu--list__dogecoin a {
  color: #f1a30f;
}
.top-menu--list__dogecoin a.active-navigation-link {
  color: #f1a30f;
}
.top-menu--list__dogecoin a:after {
  position: absolute;
  right: 19px;
  top: 7px;
}

.top-menu--list_border {
  padding-top: 6px;
  border-top: 1px solid #dce2ea;
}

.top-menu--tokens-link {
  color: #00c26f;
}

.top-menu--arrow-menu:last-child .top-menu--list a:before {
  content: "";
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-inline-end: 5px;
}

.top-menu--list a .foreign-link-icon {
  margin-inline-start: 8px;
}

html[dir="rtl"] .top-menu--list a .foreign-link-icon {
  transform: rotate(270deg);
}

.top-menu--list img {
  margin-inline-end: 8px;
}

.top-menu--arrow-menu:nth-child(3) > div {
  cursor: initial;
}

.for-business__dashboard-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 16px 32px;
  background: #f7f7f9;
}

.for-business__boost {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  opacity: 1;
}

.for-business__dashboard-box .for-business__explore {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #00c26f;
  white-space: normal;
}
.for-business__dashboard-box .for-business__explore:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-start: 2px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
}
html[dir="rtl"] .for-business__dashboard-box .for-business__explore:after {
  transform: rotate(135deg);
}
.for-business__dashboard-box .for-business__explore:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #00c26f;
  transition: width ease 0.2s;
}

.for-business__dashboard-box .for-business__explore:hover:before {
  width: 100%;
}

.for-business .for-business__dashboard-button,
.for-business__button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 44px;
  padding: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  background: #00c26f;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.new-button.for-business__dashboard-button:hover,
.for-business__button-container:hover {
  opacity: 0.8;
  color: #ffffff;
}

.for-business__lists-box {
  display: flex;
  gap: 24px;
  padding: 8px 16px 0;
}

.top-menu--arrow-menu:nth-child(3)
  .top-menu--language-tooltip-content__without-scroll {
  margin-top: 0;
  margin-bottom: 0;
}

.for-business__link-list {
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 0;
}

.for-business__link-list-item {
  margin: 0;
  list-style: none;
}

.for-business__subtitle {
  padding: 16px 16px 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  opacity: 1;
}

.for-business__all-products {
  padding: 0 16px;
}

.for-business__all-products .for-business__link-list-item {
  max-width: unset;
  padding-top: 8px;
  display: inline-block;
}

.for-business__all-products .for-business__link-list {
  border-top: 1px solid #dce2ea;
}

.top-menu--item_without-dropdown .active-navigation-link,
.top-menu--item_without-dropdown:hover .active-navigation-link {
  color: #8b86af;
}

@media screen and (min-width: 768px) {
  .header-menu {
    height: 75px;
  }
  .header .container {
    width: 100%;
    padding: 0 16px;
  }
  .top-menu--item {
    margin-inline-start: 16px;
  }
  html[dir="rtl"] .top-menu--arrow {
    margin-left: 0;
    margin-right: 8px;
  }
}
@media screen and (min-width: 992px) {
  .header .logotype--main {
    height: auto;
    width: 71px;
  }
  .header .logotype--main_christmas {
    width: 91px;
  }
}
@media screen and (min-width: 1440px) {
  .top-menu__double-dropdown .top-menu-dropdown-list {
    left: 50%;
  }
  html[dir="rtl"] .top-menu__double-dropdown .top-menu-dropdown-list {
    left: unset;
    right: -250%;
  }
  .header .logotype--sub {
    display: block;
  }
  .header .container {
    padding: 0 40px;
  }
  .top-menu--item {
    margin-inline-start: 32px;
  }
  .top-menu--item:first-child {
    margin-inline-start: 40px;
  }
}
.dropdown__content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

.dropdown__content_open {
  opacity: 1;
  max-height: 800px;
}

.dropdown__topic.dropdown__topic-with-icon {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
}

.dropdown__topic-icon {
  width: 32px;
  height: 32px;
}

.dropdown__icon {
  color: #aeb0bd;
  transition: all 0.3s ease-in-out;
}

.dropdown__icon_open {
  transform: rotateZ(45deg);
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button {
  font-size: 14px;
  line-height: 20px;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button_main {
  background-color: #46475d;
  border: solid 1px transparent;
  font-weight: 400;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button_secondary {
  background-color: transparent;
  border: solid 1px #46475d;
  font-weight: 400;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button:active {
  background-color: #343443;
  border: solid 1px #46475d;
}

.mobile-menu--list .mobile-menu-dropdown__tabs-button:hover {
  background-color: #46475d;
}

.authorization-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.authorization-button:hover {
  background-color: #00c87a;
  color: #ffffff;
}
.authorization-button:focus {
  outline: 0;
  -webkit-text-decoration: 0;
  text-decoration: 0;
  color: #ffffff;
}

.authorization-mobile-buttons {
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 150px;
}

.authorization-mobile-buttons__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  height: 236px;
  border-radius: 12px;
  padding: 24px 16px;
  background-size: cover;
}

.authorization-mobile-buttons__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.authorization-mobile-buttons__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.34px;
  text-align: center;
  opacity: 1;
  color: #ffffff;
}

.authorization-mobile-buttons .authorization-mobile-buttons__log-out {
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-color: #363746;
  background-color: #363746;
}
.authorization-mobile-buttons .authorization-mobile-buttons__log-out:hover {
  border-color: #363746;
  background-color: #363746;
}

.authorization-mobile-buttons__sign-in,
.authorization-mobile-buttons__sign-up {
  height: 40px;
  letter-spacing: 0.2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.09px;
  text-align: center;
}

.authorization-mobile-buttons__sign-in {
  background: transparent;
  border: 1px solid #00c26f;
}
.authorization-mobile-buttons__sign-in:hover {
  background: transparent;
}

.authorization-mobile-buttons__sign-up {
  background: linear-gradient(
    0deg,
    #00b890 5.71%,
    #00b88e 6.76%,
    #00bd7c 18.18%,
    #00c072 30.5%,
    #00c26f 45.17%
  );
}

.dropdown-for-partners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-right: 30px;
  color: #aeb0bd;
  font-weight: 700;
}

.dropdown-for-partners__content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  padding: 0;
  overflow: hidden;
}

.dropdown-for-partners__content_open {
  max-height: 1200px;
  opacity: 1;
  padding: 14px 0 24px;
}

.dropdown-for-partners__explore {
  display: block;
  border: 1px solid #00c26f;
  border-radius: 8px;
  padding: 12px 16px;
}

.dropdown-for-partners__explore p {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  margin: 0;
  opacity: 1;
}

.dropdown-for-partners__explore-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}

.dropdown-for-partners__category {
  margin-top: 16px;
}

.dropdown-for-partners__category:first-of-type {
  margin-top: 24px;
}

.dropdown-for-partners__category-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #6a6a7f;
}

.dropdown-for-partners__navigation-items {
  display: flex;
  flex-direction: column;
}

.dropdown-for-partners__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0;
  color: #ffffff;
}

.dropdown-for-partners__link img {
  display: block;
  margin-right: 8px;
}

.dropdown-for-partners__link img:nth-child(2) {
  margin-left: 8px;
}

.dropdown-for-partners__link_last {
  order: 1;
}

.dropdown-for-partners__button {
  margin-top: 24px;
}

a.dropdown-for-partners__button:hover {
  color: #ffffff;
}

.dropdown-for-partners__navigation {
  margin-top: 8px;
}

.dropdown-for-partners__navigation-tabs {
  width: 100vw;
  overflow-x: auto;
  margin: 0 -26px;
  padding: 0 26px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown-for-partners__navigation-tabs::-webkit-scrollbar {
  display: none;
}

.dropdown-for-partners__navigation-tabs-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 571px;
  gap: 16px;
}

.dropdown-for-partners__navigation-tabs-box .mobile-menu-dropdown__tabs-button {
  white-space: nowrap;
}

.dropdown-for-partners__navigation-tab {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  border-radius: 4px;
  background-color: #2b2b35;
  border: 1px solid #59547a;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
  transition: background-color ease 0.3s;
}

.dropdown-for-partners__navigation-tab:first-child {
  margin-left: 0;
}

.dropdown-for-partners__navigation-tab_active {
  background-color: #59547a;
  pointer-events: none;
  cursor: default;
}

.inner-navigation-dropdown__link-soon {
  display: block;
  width: 38px;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  background-color: #00c26f;
  margin-left: 8px;
}

@media screen and (min-width: 625px) {
  .dropdown-for-partners__navigation-tabs {
    width: auto;
    overflow-x: scroll;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#mobile-menu {
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  #mobile-menu {
    display: none;
  }
}

.mobile-menu-btn {
  display: block;
  position: relative;
  left: 5px;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
.mobile-menu-btn--bar {
  height: 3px;
  width: 36px;
  background-color: #00c26f;
  margin-bottom: 6px;
  border-radius: 2px;
  transition: all 500ms;
  transform-origin: 50% 50%;
}
.mobile-menu-btn--bar:last-child {
  margin-bottom: 0;
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(2) {
  opacity: 0;
  transform: rotate(180deg);
}
.mobile-menu-btn.active .mobile-menu-btn--bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

html[dir="rtl"] .mobile-menu-btn {
  left: unset;
  right: 5px;
}

.mobile-menu-wrapper {
  width: 100%;
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background-color: red;
  height: 100vh;
  z-index: 1000;
}

.mobile-menu {
  width: 100%;
  height: calc(100% - 60px);
  transform: translateX(0%);
  position: absolute;
  top: 65px;
  left: 0;
  background-color: #2b2b36;
  transition: transform 500ms;
  overflow-y: auto;
  overflow-x: hidden;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .mobile-menu {
    top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.active {
  transform: translateX(100%);
}
.mobile-menu--list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
}
.mobile-menu--list li > span > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-inline-end: 30px;
}
.mobile-menu--list a {
  color: #fff;
}
.mobile-menu--select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu--lang-select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  background-color: transparent;
  color: #ffffff;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: start;
}
.mobile-menu svg {
  position: absolute;
  left: calc(100% - 16px);
  display: block;
  width: 16px;
  height: 16px;
}

html[dir="rtl"] .mobile-menu svg {
  left: unset;
  right: calc(100% - 16px);
}

.mobile-menu__category-title {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: start;
  color: #aeb0bd;
  border-bottom: 1px solid #46475d;
}

.mobile-menu__category-title > a {
  display: inline-block;
  width: 100%;
  color: #aeb0bd;
}

.mobile-menu__category-title-history-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #e5e5e5;
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.mobile-menu__category-title-history-button > img {
  margin-right: 8px;
}

.mobile-menu_flex {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.mobile-menu--inactive {
  font-size: 24px;
  color: #a4a3aa;
}

.mobile-menu--list-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-align: start;
}

.mobile-menu--list-item img {
  width: 20px;
  height: 20px;
}

.mobile-menu--list-pair img {
  width: 35px;
  height: 20px;
}

.mobile-menu--list .mobile-menu--list-pair li a {
  align-items: center;
}

.mobile-menu--list-item:first-child {
  margin-top: 10px;
}

li.mobile-menu--list-item-line {
  display: block;
  margin: 0;
  height: 1px;
  background-color: #3d3d4b;
}

.mobile-menu--list-item .icon-open {
  font-size: 15px;
  margin-inline-start: 10px;
  margin-top: 4px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.mobile-menu--tokens-link {
  color: #00c26f !important;
}

.dropdown_item {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
}

.mobile-menu--list ul a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.mobile-menu__category-title > .mobile-menu__category-arrow {
  top: 25%;
  left: calc(100% - 10px);
  width: 16px;
  height: 16px;
  transform: rotateZ(-90deg) scale(1.5);
}

.mobile-menu--list-coin .mobile-menu--list-item:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

html[dir="rtl"] .mobile-menu__category-title > .mobile-menu__category-arrow {
  left: unset;
  right: calc(100% - 10px);
  transform: rotateZ(-90deg) scale(1.5) rotateX(180deg);
}

.mobile-menu--flag-icon {
  display: block;
  width: 16px;
  height: 11px;
  margin-inline-end: 8px;
}

.mobile-menu-dropdown__tabs {
  display: flex;
  gap: 16px;
  margin: 20px 0 2px;
}
.footer {
  display: block;
  background: #2b2b36;
  padding: 56px 0;
  width: 100%;
  position: relative;
}

.footer__navigation {
  padding: 0 0;
}

.footer__navigation-item {
  padding-inline-end: 30px;
}

.products-navigation-item {
  padding-inline-start: 16px;
}

.footer__navigation-title {
  font-size: 16px;
  color: #8b86af;
  margin: 0 0 24px;
  font-weight: 700;
  white-space: nowrap;
}

.footer__navigation-list {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

.footer__navigation-list-item_link-icon {
  display: flex;
  align-items: center;
}

.footer__navigation-list-item_link-icon .icon-open {
  font-size: 10px;
  color: #a4a3aa;
  margin-inline-start: 4px;
  margin-top: 6px;
}

.footer__navigation-list-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.footer__navigation-list-item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  white-space: normal;
}

.footer__navigation-list-item a.active-navigation-link {
  color: #56566e;
}

.footer__navigation-list-item a:hover {
  color: #00c26f;
}

.new-badge__circle {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.new-badge__circle::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c26f;
  animation: blink 1.5s infinite;
}

.new-badge__circle:hover::before {
  animation: none;
}

.new-badge {
  position: relative;
}

.new-badge::before {
  content: "NEW";
  position: absolute;
  top: 0;
  right: -45px;
  width: 38px;
  height: 20px;
  background: #00c26f;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
}

.footer--bottom {
  margin-top: 0;
}

.footer--logotype {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
  border-bottom: none;
}

.footer .logotype {
  display: none;
}

.footer .logotype--sub {
  display: none;
}

.footer--social-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0;
  gap: 10px;
  border-top: 1px solid #3d3d4b;
}

.footer--copyright {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.footer--copyright .copyright {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  gap: 10px;
}

.social-copyright__mobile {
  margin-top: 28px;
  padding: 0 15px;
}

.footer--copyright-text,
.footer--copyright-description {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #8b86af;
}

.footer--copyright-description {
  line-height: 16px;
}

.footer--copyright-text {
  line-height: 20px;
}

.footer--trustpilot {
  color: #5c5780;
  width: 83px;
  height: 20px;
  background-size: contain;
  transform: translateY(-2px);
}

.footer--bestchange {
  width: 83px;
}

.footer--bestchange img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer--trustpilot-text {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #8b86af;
}

.footer--trustpilot:hover {
  color: #00c26f;
}

.footer--mobile-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  grid-gap: 24px;
  flex-grow: 1;
  margin-top: 10px;
  margin-inline-start: -15px;
  margin-inline-end: 0;
}

.footer--mobile-apps > p {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #8b86af;
}

.foreign-link-icon {
  width: 12px;
  height: 12px;
  margin-inline-start: 4px;
}

html[dir="rtl"] .foreign-link-icon {
  transform: rotate(270deg);
}

.footer--links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 24px;
  margin-bottom: 28px;
  max-height: 50px;
}

.footer--links .separator {
  background-color: #3d3d4b;
  display: none;
  margin: 0;
}

.footer--accordion {
  display: none;
}

.separator {
  height: 40px;
  width: 1px;
  display: block;
  margin: 0 10px;
  background: #fff;
}

.exchange-pairs {
  width: auto;
}

.exchange-pairs-end {
  margin-top: 35px;
}

.social-icon {
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.exchange-mobile-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0 60px;
  gap: 24px;
}

.exchange-mobile-apps_btn {
  padding: 0;
  outline: none;
  background-color: transparent;
}

.footer-mobile-apps__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #3d3d4b;
  max-width: 164px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  transition: all ease 0.3s;
  background: #2b2b36;
  box-sizing: border-box;
}

.footer-mobile-apps__link:last-child {
  margin-bottom: 0;
}

.footer-mobile-apps__link:hover {
  border-color: #00c26f;
  box-sizing: border-box;
}

.footer-mobile-apps__link:active {
  border: 1px solid #3d3d4b;
  box-sizing: border-box;
  box-shadow: inset -2px -2px 6px rgba(250, 251, 255, 0.05),
    inset 2px 2px 8px rgba(43, 43, 54, 0.6);
}

.exchange-mobile-apps_seamless-crypto-exchange {
  margin: 30px;
  padding: 0;
}

.exchange-mobile-apps_seamless-crypto-exchange .footer-mobile-apps__link {
  border-color: #363645;
}

.mobile-apps-icons {
  display: flex;
  grid-gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.footer .logotype--main {
  margin-inline-end: 10px;
}

.footer--social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 24px;
  height: 30px;
  font-size: 22px;
}

.footer__trustpilot-widget {
  height: 120px;
  margin-inline-start: -160px;
  transform-origin: right;
  transform: scale(0.5);
}

html[dir="rtl"] .footer__trustpilot-widget {
  transform-origin: left;
}

@media screen and (max-width: 991px) {
  .social-copyright {
    width: -moz-max-content;
    width: max-content;
    margin-top: 30px;
  }
  .container {
    width: initial;
  }
  .separator {
    display: none;
  }
  .footer--mobile-apps {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin: 0;
    grid-gap: 16px;
  }
  .footer--mobile-apps > p {
    margin: 0;
    font-size: 14px;
  }
  .footer-mobile-apps__link {
    height: 48px;
  }
  .footer--apk-download {
    width: 138px;
    height: 48px;
  }
  .footer--accordion {
    display: block;
    margin-inline-start: 16px;
    margin-inline-end: 16px;
  }
  .footer--trustpilot-text {
    font-size: 14px;
    align-self: baseline;
  }
  .icon-bestchange svg {
    width: 83.85px;
    height: 17.5px;
  }
  .desktop-footer {
    display: none;
  }
  .footer--accordion section {
    width: 100%;
    border-top: 1px solid #3d3d4b;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .exchange-pairs-end,
  .footer__navigation-list {
    margin-top: 0 !important;
  }
  .footer--accordion section:last-child {
    border-bottom: 1px solid #3d3d4b;
  }
  .footer--accordion section > a {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #8b86af;
  }
  .footer__navigation-list-item a {
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    position: relative;
  }
  .footer--accordion h2 + div {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }
  .footer--accordion :target h2 a:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .footer--accordion-toggle {
    display: flex;
    justify-content: space-between;
  }
  .footer--accordion-toggle__button {
    transition: transform 0.3s ease-in-out;
  }
  .footer--accordion-content {
    display: none;
    transition: height 0.3s ease-in-out;
  }
  .footer--accordion section.active .footer--accordion-content {
    display: flex;
    margin-top: 16px;
  }
  .footer--accordion section.active .footer--accordion-toggle__button {
    transform: rotate(45deg);
  }
  .footer__navigation-list {
    min-height: 295px;
  }
  .footer__navigation-list_autoheight {
    min-height: unset;
  }
  .nowrap {
    white-space: nowrap;
  }
}
@media screen and (min-width: 380px) {
  .footer__navigation {
    padding: 0;
  }
  .footer__navigation-item:not(:first-of-type) {
    padding-inline-start: 10px;
  }
}
@media screen and (min-width: 992px) {
  .footer__navigation-item {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    width: 20%;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .logotype {
    display: block;
  }
  .footer--mobile-apps {
    justify-content: flex-end;
  }
  .footer--mobile-apps > p,
  .footer--mobile-apps {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mobile-apps-icons {
    grid-gap: 24px;
    width: auto;
  }
  .footer-mobile-apps__link:last-child {
    margin-inline-end: 0;
  }
  .exchange-mobile-apps_seamless-crypto-exchange {
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
  .exchange-mobile-apps_seamless-crypto-exchange .footer-mobile-apps__link {
    margin-bottom: 9px;
    margin-inline-end: 0;
  }
  .new-badge__circle_tooltip-new {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .new-badge__circle:hover .new-badge__circle_tooltip-new {
    z-index: 1;
    opacity: 1;
  }
  .new-badge__circle::before {
    right: -10px;
  }
  .social-copyright__mobile {
    display: none;
  }
  .footer__social-copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  .footer--social-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    border: none;
    margin-bottom: 90px;
    margin-top: 16px;
    padding: 0;
  }
  .footer--social {
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 18px;
  }
  .footer--copyright {
    justify-content: flex-start;
    white-space: nowrap;
    padding-top: 40px;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
  }
  .footer--bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  .footer--logotype {
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 6px;
    margin-bottom: 24px;
  }
  .footer--logotype::after {
    content: "";
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #3d3d4b;
    display: block;
    margin-top: 22px;
  }
  .exchange-pairs-end {
    padding-inline-start: 0;
  }
  .footer__navigation {
    display: flex;
    justify-content: space-between;
  }
  .pairs {
    display: flex;
    justify-content: flex-start;
    width: 40%;
  }
  .exchange-pairs {
    padding-inline-end: 24px;
    max-width: 91px;
    box-sizing: content-box;
    padding-inline-start: 0;
    white-space: nowrap;
  }
  .first-pairs-column {
    padding-inline-start: 10px;
  }
  .without-title {
    margin-top: 45.5px;
    padding-inline-start: 0 !important;
  }
  .copyright {
    white-space: break-spaces;
  }
  .separator {
    margin: 0 4px;
  }
  .follow-us-title {
    max-width: 237px;
    margin-top: 83px;
  }
  .footer-sections-separator {
    display: block;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #3d3d4b;
    margin-top: 24px;
    margin-bottom: 22px;
  }
  .footer--links {
    display: grid;
    grid-template-rows: repeat(auto-fit, 70px);
    grid-gap: 15px;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
  .footer--links .separator {
    display: block;
  }
  .footer--trustpilot-text {
    flex-basis: 100%;
  }
  .footer--trustpilot {
    width: 83px;
    height: 24px;
  }
  .footer--bestchange {
    width: 83px;
  }
  .footer .logotype--sub {
    display: block;
  }
  .last-column {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .footer__trustpilot-widget {
    transform-origin: left;
    margin-inline-start: 0;
    transform: scale(0.55);
  }
  html[dir="rtl"] .footer__trustpilot-widget {
    transform-origin: right;
  }
}
@media (min-width: 1200px) {
  .mobile-apps-icons {
    grid-gap: 24px;
  }
  .footer--links {
    width: 235px;
  }
  .footer--trustpilot {
    width: 98px;
  }
  .footer--bestchange {
    width: 115px;
  }
  .footer--links .separator {
    margin: 0 4px;
  }
  .nowrap {
    white-space: nowrap;
  }
  .copyright {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .last-column {
    width: 21.5%;
  }
}
@keyframes blink {
  50% {
    opacity: 0.2;
  }
}
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.svg-currencies-exchange-sprite--24h {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 0;
  width: 50px;
  height: 48px;
}
.svg-currencies-exchange-sprite--24h-volume {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 51.0204081633% 0;
  width: 48px;
  height: 47px;
}
.svg-currencies-exchange-sprite--7d {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 100%;
  width: 48px;
  height: 48px;
}
.svg-currencies-exchange-sprite--coin-supply {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 98.9898989899% 96%;
  width: 47px;
  height: 46px;
}
.svg-currencies-exchange-sprite--market-cap {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 48.9795918367% 92.3076923077%;
  width: 48px;
  height: 44px;
}
.svg-currencies-exchange-sprite--price {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 100% 0;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--24h {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 52.3316062176% 12.4309392265%;
  width: 50px;
  height: 48px;
}
.svg-tokens-sprite--7d {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 48.9690721649% 25.9668508287%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--appstore-badge {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 50.6849315068% 0;
  width: 144px;
  height: 45px;
}
.svg-tokens-sprite--bug {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 71.3936430318% 67.5257731959%;
  width: 27px;
  height: 22px;
}
.svg-tokens-sprite--burn {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 76.3157894737% 67.5257731959%;
  width: 18px;
  height: 22px;
}
.svg-tokens-sprite--burn-step-0 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 55.6390977444%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-1 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 49.3150684932% 55.6390977444%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-2 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 100% 0;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-3 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 0;
  width: 148px;
  height: 148px;
}
.svg-tokens-sprite--burning-logo {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 37.5634517766% 26.1838440111%;
  width: 42px;
  height: 51px;
}
.svg-tokens-sprite--circulating-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.3402061856% 25.8953168044%;
  width: 48px;
  height: 47px;
}
.svg-tokens-sprite--coin-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 74.5501285347% 80.2197802198%;
  width: 47px;
  height: 46px;
}
.svg-tokens-sprite--find {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 96.0526315789% 49.3150684932%;
  width: 132px;
  height: 118px;
}
.svg-tokens-sprite--fire {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.421319797% 93.6639118457%;
  width: 42px;
  height: 47px;
}
.svg-tokens-sprite--list {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 81.4009661836% 66.4974619289%;
  width: 22px;
  height: 16px;
}
.svg-tokens-sprite--locked-amount {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 38.7434554974% 12.4653739612%;
  width: 54px;
  height: 49px;
}
.svg-tokens-sprite--price {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 62.3711340206% 80.6629834254%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--report {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 100%;
  width: 125px;
  height: 118px;
}
.svg-tokens-sprite--reward {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 39.1849529781% 99.6587030717%;
  width: 117px;
  height: 117px;
}
.svg-swap-sprite--atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.5358255452% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--atomic-blue {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.1526479751% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--ava-coin {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 82.6837060703% 52.3411371237%;
  width: 82px;
  height: 81px;
}
.svg-swap-sprite--awc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 44.7552447552% 55.5979643766%;
  width: 503px;
  height: 491px;
}
.svg-swap-sprite--bnb {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 56.9010416667%;
  width: 512px;
  height: 509px;
}
.svg-swap-sprite--bnb-erc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.024691358% 42.6282051282%;
  width: 27px;
  height: 29px;
}
.svg-swap-sprite--bnb-mainnet {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.341991342% 42.6966292135%;
  width: 30px;
  height: 31px;
}
.svg-swap-sprite--guarda {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 68.7886825818% 0;
  width: 516px;
  height: 380px;
}
.svg-swap-sprite--logo-atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.1315789474% 46.5517241379%;
  width: 127px;
  height: 59px;
}
.svg-swap-sprite--now {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 100% 0;
  width: 353px;
  height: 353px;
}
.svg-swap-sprite--now-black {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.769470405% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--now-green {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 96.3862928349% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 0;
  width: 778px;
  height: 437px;
}
.svg-swap-sprite--travala-dark {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 99.0031152648% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-left {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.3879781421% 33.2079021637%;
  width: 183px;
  height: 214px;
}
.svg-swap-sprite--travala-light {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.7320872274% 50.6882591093%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-logo {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.3489096573% 50.6882591093%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-right {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 98.3355525965% 32.1493624772%;
  width: 145px;
  height: 179px;
}
.svg-swap-sprite--usdt {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 100%;
  width: 360px;
  height: 331px;
}
.svg-swap-sprite--usdt-erc20 {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 90.852520224% 50.606305578%;
  width: 40px;
  height: 40px;
}
.svg-swap-sprite--usdt-omni {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 94.7498455837% 42.5940752602%;
  width: 28px;
  height: 28px;
}
.svg-lightning-sprite--cross-blockchains {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 68.6141304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--ellipse {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 48.4438430311% 0;
  width: 799px;
  height: 813px;
}
.svg-lightning-sprite--ellipse-green {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-lightning-sprite--ellipse-light {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 100%;
  width: 626px;
  height: 659px;
}
.svg-lightning-sprite--group {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 71.7391304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--lightning {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 0;
  width: 716px;
  height: 919px;
}
.svg-lightning-sprite--low-cost {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 74.8641304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--nodes {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 77.9891304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--scalability {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 81.1141304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--stopwatch {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 84.2391304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--wallets {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 87.3641304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-swap-tokens-sprite--arrow {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 51.9843851659% 84.4660194175%;
  width: 24px;
  height: 30px;
}
.svg-swap-tokens-sprite--atomic {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 3.7061548643% 99.1189427313%;
  width: 50px;
  height: 49px;
}
.svg-swap-tokens-sprite--bnb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 100%;
  width: 56px;
  height: 57px;
}
.svg-swap-tokens-sprite--cake {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 11.5874079035% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--coin {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 70.9888670596% 87.7969762419%;
  width: 34px;
  height: 31px;
}
.svg-swap-tokens-sprite--coins {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.0893098782% 92.3863636364%;
  width: 83px;
  height: 77px;
}
.svg-swap-tokens-sprite--deliver {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 16.1419959812% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--discuss {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 20.6965840589% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--ellipse {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 0;
  width: 799px;
  height: 813px;
}
.svg-swap-tokens-sprite--ellipse-green {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-swap-tokens-sprite--fb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 12.5736738703% 97.8260869565%;
  width: 34px;
  height: 37px;
}
.svg-swap-tokens-sprite--mail {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 25.2511721366% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--medium {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 14.8002619515% 97.5081256771%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--now {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 57.0950468541% 88.8524590164%;
  width: 67px;
  height: 42px;
}
.svg-swap-tokens-sprite--partners {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 29.8057602143% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--reddit {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 17.0268500327% 97.5081256771%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--team {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 34.360348292% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tel {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 38.9149363697% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tg {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 66.0092044707% 88.082340195%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--timer {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 43.4695244474% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--token {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 73.0718954248% 87.7969762419%;
  width: 31px;
  height: 31px;
}
.svg-swap-tokens-sprite--tokens {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 93.4482758621%;
  width: 90px;
  height: 87px;
}
.svg-swap-tokens-sprite--travala-dark {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 60.5661619487% 88.8524590164%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-light {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 63.3311389072% 88.8524590164%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-t {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.978275181% 99.1189427313%;
  width: 42px;
  height: 49px;
}
.svg-swap-tokens-sprite--tw {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 68.6390532544% 88.082340195%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--usdt {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 9.756097561% 98.5761226725%;
  width: 44px;
  height: 44px;
}
.svg-swap-tokens-sprite--watches {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 48.0241125251% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--wechat {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 52.5787006028% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-sprite--apple-pay {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.7900552486% 72.7828746177%;
  width: 30px;
  height: 16px;
}
.svg-sprite--appstore-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 60.4501607717%;
  width: 100px;
  height: 32px;
}
.svg-sprite--appstore-big {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 0;
  width: 144px;
  height: 45px;
}
.svg-sprite--banxa {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 71.4285714286% 41.9047619048%;
  width: 28px;
  height: 28px;
}
.svg-sprite--bestchange {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.6821192053% 48.7577639752%;
  width: 90px;
  height: 21px;
}
.svg-sprite--checked {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 99.4623655914% 66.8730650155%;
  width: 20px;
  height: 20px;
}
.svg-sprite--coinify {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--exchange-arrows {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 26.9754768392% 79.6875%;
  width: 25px;
  height: 23px;
}
.svg-sprite--gplay-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 70.7395498392%;
  width: 100px;
  height: 32px;
}
.svg-sprite--guardarian {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--logotype {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.0599369085% 64.8829431438%;
  width: 75px;
  height: 44px;
}
.svg-sprite--logotype-sub {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 50.3759398496% 42.1725239617%;
  width: 126px;
  height: 30px;
}
.svg-sprite--mail {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 0;
  width: 151px;
  height: 132px;
}
.svg-sprite--ny-logo {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 98.0066445183% 34.2756183746%;
  width: 91px;
  height: 60px;
}
.svg-sprite--payment-methods {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.6507936508% 54.4342507645%;
  width: 77px;
  height: 16px;
}
.svg-sprite--play-btn {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 0;
  width: 97px;
  height: 97px;
}
.svg-sprite--play-market {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 15.1006711409%;
  width: 144px;
  height: 45px;
}
.svg-sprite--play-market-white-border {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 82.2580645161%;
  width: 99px;
  height: 33px;
}
.svg-sprite--simplex {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--slider-arrow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 100%;
  width: 32px;
  height: 55px;
}
.svg-sprite--star-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 60.4361370717%;
  width: 22px;
  height: 22px;
}
.svg-sprite--stars {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 43.9716312057% 51.7133956386%;
  width: 110px;
  height: 22px;
}
.svg-sprite--stars-yellow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 88.5885885886% 76.0383386581%;
  width: 59px;
  height: 30px;
}
.svg-sprite--transak {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--trustpilot-fresh {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 65.3543307087%;
  width: 124px;
  height: 89px;
}
.svg-sprite--trustpilot-full {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 42.7184466019%;
  width: 134px;
  height: 34px;
}
.svg-sprite--visa-master {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 58.984375% 29.702970297%;
  width: 136px;
  height: 40px;
}
.svg-sprite--wordpress-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 79.3010752688% 82.9721362229%;
  width: 20px;
  height: 20px;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/d35560f975237042678e.woff) format("woff"),
    url(../fonts/2445189fae179285f7ec.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/53ebab6c7d265306f80d.woff) format("woff"),
    url(../fonts/795493644e3c7a22dfac.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/adc53e86b2f7cb173750.woff) format("woff"),
    url(../fonts/24e7ca4b0acf1a0dac78.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/285509d0eb9b5f31386c.woff) format("woff"),
    url(../fonts/db797e0aed0d44216930.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/94657033fd8e28659819.woff) format("woff"),
    url(../fonts/7ed42f773b172d236bc4.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/7e045f32011f2f549512.woff) format("woff"),
    url(../fonts/25ff2156254ba20a4704.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/0e771f884d5d7b341ac0.woff) format("woff"),
    url(../fonts/3a2c17eec3e71883dd0f.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ceaa06cbe56757d8069.woff) format("woff"),
    url(../fonts/3b59f4fac87f52efe27c.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/ed6a9b4bf546ecff24c6.woff) format("woff"),
    url(../fonts/7623c8b105a0e0b99cbb.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/1ab91631bafc1838cf55.woff) format("woff"),
    url(../fonts/8a2157e7f70d26bbbbaf.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/b01b7927b533ea3e1554.woff) format("woff"),
    url(../fonts/24cfe7008702c8f812ac.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/02f08a63db46edcb42d1.woff) format("woff"),
    url(../fonts/897a05889d4894a27cf2.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/16f3b5c18f8356360098.woff) format("woff"),
    url(../fonts/acf574aebf333444b31c.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ca831153ca66ca187ac.woff) format("woff"),
    url(../fonts/9e7ae88d3f68ed19d64a.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/3044fd8e8933d7f91242.woff) format("woff"),
    url(../fonts/81880694cc8b8f79eed4.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/a12c527ee24dcc6ccb75.woff) format("woff"),
    url(../fonts/746e4b5d434b64a4206f.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
@font-face {
  font-family: "icons";
  font-display: swap;
  src: url(../fonts/ce582a188fd8f253a833.eot);
  src: url(../fonts/ce582a188fd8f253a833.eot?#iefix) format("eot"),
    url(../fonts/1755b8cf47b3e6787be6.woff2) format("woff2"),
    url(../fonts/8f8ac1080bff8d4a07f1.woff) format("woff"),
    url(../fonts/42a431091930c9d7b618.ttf) format("truetype"),
    url(49dc41ccc1f9731f9695.svg#icons) format("svg");
}
.icon:before,
.button__arrow:before {
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
.icon-arrow-big:before {
  content: "";
}
.icon-arrow-down:before {
  content: "";
}
.icon-bitcointalk:before {
  content: "";
}
.icon-button-arrow:before,
.button__arrow:before {
  content: "";
}
.icon-check:before {
  content: "";
}
.icon-coinify:before {
  content: "";
}
.icon-copy:before {
  content: "";
}
.icon-error:before {
  content: "";
}
.icon-exchange:before {
  content: "";
}
.icon-facebook:before {
  content: "";
}
.icon-guarda:before {
  content: "";
}
.icon-info:before {
  content: "";
}
.icon-instagram:before {
  content: "";
}
.icon-medium:before {
  content: "";
}
.icon-no:before {
  content: "";
}
.icon-ok:before {
  content: "";
}
.icon-open:before {
  content: "";
}
.icon-rate-up:before {
  content: "";
}
.icon-reddit:before {
  content: "";
}
.icon-search:before {
  content: "";
}
.icon-simplex:before {
  content: "";
}
.icon-star:before {
  content: "";
}
.icon-success:before {
  content: "";
}
.icon-tg:before {
  content: "";
}
.icon-twitter:before {
  content: "";
}
.icon-youtube:before {
  content: "";
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
html {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-style: normal;
  background: #f6f4f8;
}
body {
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
a {
  color: #00c26f;
}
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  color: #00c26f;
  text-decoration: none;
}
a.active-navigation-link {
  cursor: default;
}
a[disabled] {
  pointer-events: none;
}
#error-help-form {
  display: none;
}
h1 {
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 400;
  font-size: 36px;
  color: #2b2b36;
}
h2 {
  margin-top: 40px;
  font-weight: normal;
  font-size: 24px;
  color: #00c26f;
}
h3 {
  margin-top: 0;
  font-size: 24px;
  color: #5c5780;
}
h4 {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 18px;
  color: #5c5780;
}
p {
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #2b2b36;
  letter-spacing: 0.1px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 15px;
  }
}
input,
textarea {
  margin-bottom: 25px;
  padding: 10px 20px;
  font-size: 20px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: 0.01375em;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
}
@media (max-width: 768px) {
  input,
  textarea {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
textarea {
  resize: vertical;
}
::-webkit-input-placeholder {
  color: #b6c0cb;
}
::-moz-placeholder {
  color: #b6c0cb;
}
:-moz-placeholder {
  color: #b6c0cb;
}
:-ms-input-placeholder {
  color: #b6c0cb;
}
.scroll-lock {
  overflow: hidden;
}
.relative {
  position: relative;
}
.small {
  font-weight: 300;
  font-size: 0.75em;
}
.dark {
  color: #56566e;
}
.title-text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
#app-root {
  min-height: 700px;
}
body.page_dashboard #app {
  min-height: 70vh;
  box-sizing: border-box;
  padding-bottom: 0;
  position: relative;
}
.circular-progress {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
.page_exchange .page__warning-api {
  margin-bottom: 40px;
}
body.page_partners-log-in_shown .top-menu-login-link {
  display: inline-block;
  vertical-align: middle;
}
body.page_partners-log-in_shown .header-join-pro-button {
  display: none;
}
body.page_for-partners .footer,
body.page_multichain-bridge .footer,
body.page_crypto-exchange .footer {
  padding-top: 308px;
}
body.page_warm-wallets .footer {
  padding-top: 365px;
}
.loader-icon {
  display: block;
}
.loader-icon_absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized) {
  display: flex;
  background-color: #49496c;
  border-color: #49496c;
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized):hover {
  background-color: #4f4f79;
  border-color: #4f4f79;
}
.page_authorization-new-theme .authorization-user__buttons {
  display: none;
}
@media screen and (min-width: 992px) {
  .page_exchange .page__warning-api {
    margin-bottom: 90px;
  }
  body.page_for-partners .footer,
  body.page_multichain-bridge .footer,
  body.page_crypto-exchange .footer {
    padding-top: 380px;
  }
  body.page_warm-wallets .footer {
    padding-top: 355px;
  }
}
@media screen and (min-width: 1200px) {
  body.page_partners-log-in_shown .top-menu-login-link {
    display: none;
  }
}
#app-header {
  display: contents;
}
.bread-crumbs--container {
  z-index: 3;
}
.bread-crumbs--icon__dark {
  color: #5c5780;
}
.bread-crumbs--icon__light {
  color: #a4a3aa;
}
.bread-crumbs--icon::after {
  margin-inline-start: 10px;
  margin-bottom: 4px;
  content: "";
  font-size: 6px;
  list-style: none;
  transform: rotate(270deg);
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
html[dir="rtl"] .bread-crumbs--icon::after {
  transform: rotate(90deg);
}
.bread-crumbs--item {
  align-items: flex-end;
  list-style: none;
  margin-inline-end: 10px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--item {
    margin: 0 5px;
  }
}
.bread-crumbs--item__dark {
  color: #5c5780;
}
.bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.bread-crumbs--item__light {
  color: #a4a3aa;
}
.bread-crumbs--item__hide {
  display: none;
}
.bread-crumbs--item__hide + .bread-crumbs--icon {
  display: none;
}
.bread-crumbs--text {
  color: inherit;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--text {
    font-size: 13px;
  }
}
.bread-crumbs--item:last-child {
  margin-inline-end: 0;
}
.bread-crumbs--item:not(:last-child):hover .bread-crumbs--text {
  color: #00c26f;
}
.bread-crumbs .container {
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 1440px) {
  .bread-crumbs .container {
    padding: 0 40px;
  }
}
.button {
  background: #00c26f;
  border: none;
  color: #fff;
  height: 50px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  width: auto;
  padding: 0 50px;
  cursor: pointer;
  position: relative;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .button {
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
  }
}
.button:active {
  opacity: 0.8;
}
.button:hover {
  color: #fff;
  background: #16d785;
}
.button:disabled {
  background: #cacaca;
  cursor: not-allowed;
}
.button:hover:disabled {
  background: #cacaca;
}
.button--icon {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  line-height: 1;
  margin-inline-end: 10px;
}
.button__black {
  background: #2b2b36;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}
.button__black:hover {
  background: #00c26f;
}
.button__arrow {
  padding-right: 50px;
}
.button__arrow:hover {
  background-color: #3d3d70;
}
.button__arrow::before {
  display: block;
  color: #00c26f;
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 12px;
}
.button__arrow:hover::before {
  color: #fff;
}
.button__long {
  width: 100%;
  max-width: 220px;
}
.button__full {
  width: 100%;
}
.button__thin {
  width: 100px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  background: #00c26f;
  padding: 1px 15px 0;
  transition: background-color ease 0.3s;
}
.button__thin:hover {
  background: #00c87a;
}
.button__thin.button__arrow {
  text-align: left;
}
.button__thin.button__arrow::before {
  color: #fff;
}
.button__narrow {
  border-radius: 5px;
  height: 46px;
  line-height: 46px;
  padding: 0 46px;
}
.button__bordered {
  background: rgba(0, 0, 0, 0);
  border: 2px solid #00c26f;
  color: #00c26f;
  line-height: 40px;
  border-radius: 5px;
}
.button__bordered:hover {
  background: rgba(0, 0, 0, 0);
  opacity: 0.5;
  color: #00c26f;
}
.button__small {
  border-radius: 5px;
  height: 30px;
  font-size: 13px;
  line-height: 28px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .button__small {
    padding: 0 18px;
  }
}
.button__tiny {
  border-radius: 5px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  padding: 0 20px;
}
.button__bordered.button__tiny {
  border-width: 1px;
}
.button-close {
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
.button-close::before,
.button-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  margin: auto;
  background-color: #fff;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.button-close__dark::before,
.button-close__dark::after {
  background-color: #56566e;
}
.button-close__small {
  width: 15px;
  height: 15px;
}
.button-close__small::before,
.button-close__small::after {
  width: 15px;
}
.button-close::after {
  transform: rotate(-45deg);
}
.button__orange-action {
  background-color: rgba(0, 0, 0, 0);
  color: #eaa523;
  border: 2px solid #eaa523;
  border-color: #eaa523;
  position: relative;
  width: auto;
  height: 34px;
  line-height: 30px;
  padding: 0px 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
.button__orange-action:hover {
  color: #fff;
  background: #eaa523;
}
.recommended-wallet-button {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  background-image: linear-gradient(#2b2a36, #2b2a36),
    linear-gradient(
      268.76deg,
      #fb9600 1.78%,
      #00c26f 25.98%,
      #6696d6 50.43%,
      #f28984 76.64%,
      #5fcef0 98.23%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0 20px;
  transition: color ease 0.3s;
}
.recommended-wallet-button:hover {
  color: #00c26f;
}
.recommended-wallet-button:hover .recommended-wallet-button__stars-icon {
  top: -19px;
  right: -26px;
  transform: rotate(10deg);
}
html[dir="rtl"]
  .recommended-wallet-button:hover
  .recommended-wallet-button__stars-icon {
  left: -26px;
  right: unset;
}
.recommended-wallet-button__logo {
  margin-inline-start: 8px;
}
.recommended-wallet-button__stars-icon {
  display: block;
  position: absolute;
  top: -17px;
  right: -24px;
  transition: all ease 0.3s;
}
html[dir="rtl"] .recommended-wallet-button__stars-icon {
  transform: scaleX(-1);
  right: unset;
  left: -24px;
}
.recommended-wallet-button_desktop {
  display: none;
}
.recommended-wallet-button_mobile {
  display: inline-flex;
}
.button--stars-icon {
  width: 55px;
  height: 26px;
  position: absolute;
  top: -16px;
  right: -35px;
  transform-origin: center;
  transform: scale(0.7) rotate(27deg);
}
.button__gray {
  color: #808086;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3px;
  background: #333341;
  border-radius: 4px;
}
.button__gray:hover {
  color: #fff;
  background: #434352;
}
.button__gray_active {
  color: #fff;
  background: #434352;
}
@media screen and (min-width: 992px) {
  .recommended-wallet-button_desktop {
    display: inline-flex;
  }
  .recommended-wallet-button_mobile {
    display: none;
  }
}
input[required] {
  outline: none;
  box-shadow: none;
}
.field {
  margin-bottom: 9px;
  max-width: 540px;
}
@media (max-width: 768px) {
  .field {
    margin-bottom: 16px;
  }
}
.field::after {
  content: "";
  display: block;
  clear: both;
}
.field input {
  width: 100%;
  margin: 0;
  padding-right: 20px;
}
.field__buttoned {
  display: inline-flex;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .field__buttoned {
    display: block;
  }
}
.field__fullwidth {
  max-width: none;
  width: 100%;
}
.field__fullwidth > .relative {
  width: 100%;
}
.field__buttoned .button {
  margin: 0;
  margin-left: 10px;
  height: 50px;
  line-height: 48px;
}
@media (max-width: 768px) {
  .field__buttoned .button {
    margin-left: 0;
    margin-top: 10px;
  }
}
.field--label {
  color: #56566e;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.field button {
  margin-top: 10px;
}
.field--action {
  color: #00c26f;
  cursor: pointer;
}
.field--action__top {
  float: right;
}
.field--button {
  float: right;
  padding-left: 5px;
  padding-right: 5px;
  min-width: 180px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .field--button {
    float: none;
  }
}
.field--note {
  background-color: #faf8fb;
  max-width: 60%;
  border-radius: 5px;
  padding: 5px;
  float: left;
  margin-top: 10px;
}
.field-note {
  max-width: 540px;
  font-size: 15px;
  color: #a4a3aa;
  letter-spacing: 0.3px;
  text-align: left;
  line-height: 22px;
}
@media (max-width: 768px) {
  .field-note {
    font-size: 14px;
  }
}
.field--error {
  color: red;
}
.field--status {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 27px;
}
.field--status .icon-success {
  color: #00c26f;
  font-size: 18px;
}
.field input:focus {
  outline-color: #00c26f;
}
.field.field__dark input {
  background: #36324a;
  color: #d7dfe8;
  border-color: rgba(0, 0, 0, 0);
}
.field__dark {
  background: #36324a;
}
.form--title {
  color: #00c26f;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.014em;
}
.form--recapcha {
  float: left;
}
input.editable-on-focus {
  border-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  transition: all 300ms;
  box-shadow: none;
  outline: none;
  color: #b6c0cb;
}
input.editable-on-focus:focus {
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  color: #5c5780;
}
input.editable-on-focus + .editable-on-focus--save {
  opacity: 0;
  display: block;
  position: absolute;
  cursor: pointer;
  color: #00c26f;
}
input.editable-on-focus:focus + .editable-on-focus--save {
  opacity: 1;
}
.flex-table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  overflow: hidden;
}
.flex-table--cell,
.flex-table--head-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  padding: 13px;
  background: #fff;
}
.flex-table--head-cell {
  background: #f3f5f8;
  line-height: 1;
}
.flex-table--cell {
  padding: 30px 13px;
  font-size: 18px;
  color: #56566e;
}
.flex-table--cell.even {
  background: #f3f5f8;
}
.flex-table__2 > .flex-table--cell,
.flex-table__2 > .flex-table--head-cell {
  flex-basis: 50%;
}
.flex-table__3 > .flex-table--cell,
.flex-table__3 > .flex-table--head-cell {
  flex-basis: 33.33%;
}
.flex-table__4 > .flex-table--cell,
.flex-table__4 > .flex-table--head-cell {
  flex-basis: 25%;
}
.flex-table__5 > .flex-table--cell,
.flex-table__5 > .flex-table--head-cell {
  flex-basis: 20%;
}
.flex-table__6 > .flex-table--cell,
.flex-table__6 > .flex-table--head-cell {
  flex-basis: 16.6%;
}
.flex-table__7 > .flex-table--cell,
.flex-table__7 > .flex-table--head-cell {
  flex-basis: 14.28%;
}
.flex-table--cell__compact {
  padding-top: 10px;
  padding-bottom: 10px;
}
.flex-grow-normal {
  flex-grow: 1;
}
.content {
  padding-bottom: 90px;
  min-height: calc(100vh - 105px - 424px);
}
.content a {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border-bottom-color ease 0.3s;
}
.content a:hover {
  color: #00c26f;
  border-bottom-color: #00c26f;
}
.static-page .bread-crumbs--item {
  line-height: 12px;
}
.static-page .bread-crumbs--item__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.static-page .bread-crumbs--item__light {
  color: #a4a3aa;
}
.static-page .bread-crumbs--icon {
  list-style: none;
}
.static-page .bread-crumbs--icon__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--icon__light {
  color: #a4a3aa;
}
.static-page ul,
.static-page ol {
  color: #56566e;
}
.static-page li {
  position: relative;
  z-index: 1;
  opacity: 0.8;
  font-size: 17px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .static-page li {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  .static-page li {
    font-size: 15px;
  }
}
.field__inline {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.primary-color {
  color: #00c26f;
}
.darken-green-color {
  color: #00c26f;
}
.underlined {
  text-decoration: underline;
}
.upper {
  text-transform: uppercase;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.middle {
  display: flex;
  align-items: center;
}
.flex-left {
  justify-content: flex-start;
}
.flex-right {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.dif {
  display: inline-flex;
}
.clearfix {
  clear: both;
}
.link-like {
  color: #00c26f;
  cursor: pointer;
}
.link-like:hover {
  text-decoration: underline;
}
.normal {
  font-weight: 400;
}
.light {
  font-weight: 300;
}
.np {
  padding: 0;
}
.rounded {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  width: 120px;
  height: 120px;
}
.rounded img {
  width: 100%;
}
.text-bigger {
  font-size: 1.5em;
}
.primary {
  color: #00c26f;
}
.white {
  color: #fff;
}
.bg-gray {
  background-color: #f6f4f8;
}
.bg-white {
  background-color: #fff;
}
.box {
  background-color: #f6f4f8;
  padding: 30px;
  margin: 45px 0;
}
.address-text {
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
}
.hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px solid #eae8ef;
}
.hr__small {
  border: 0;
  overflow: visible;
}
.hr__small::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #eae8ef;
  margin: auto;
}
.relative {
  position: relative;
}
.striped {
  background: repeating-linear-gradient(
    45deg,
    #ddd 1px,
    #ddd 2px,
    transparent 3px,
    transparent 8px,
    #ddd 9px
  );
}
.section {
  padding: 32px 40px;
  margin: 16px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 10px;
  }
}
.section h1:first-child,
.section h2:first-child,
.section h3:first-child,
.section p:first-child {
  margin-top: 0;
}
.section__dark {
  background-color: #2b2b36;
  color: #dadadb;
}
.section__white {
  background-color: #fff;
}
@media (max-width: 480px) {
  .section__white {
    overflow: auto;
    padding: 10px;
  }
}
.section__bordered-green {
  border: 2px solid #00c26f;
}
.section__no-padding {
  padding: 0;
}
.d-none {
  display: none;
}
.sequence {
  list-style: none;
  display: block;
  margin: 0;
  padding: 10px 0;
  padding-left: 30px;
  font-size: 12px;
  position: relative;
}
.sequence__compact {
  height: 35px;
}
.sequence::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 10px;
  width: 1px;
  height: 10px;
  background-color: #d8d8d8;
}
.sequence--item {
  height: auto;
  position: relative;
  padding: 0;
  max-height: 0px;
  opacity: 0;
  transition: max-height 500ms, opacity 500ms, padding 500ms;
}
.sequence--item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -26.5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d8d8d8;
}
.sequence--item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
}
.sequence--item:last-child::after {
  display: none;
}
.sequence--item__active {
  color: #3bee81;
  cursor: pointer;
  font-size: 14px;
}
.sequence--item__visible {
  max-height: 9999px;
  opacity: 1;
}
.sequence--item-content {
  padding: 10px 0;
}
.sequence--item-name {
  line-height: 1;
}
.sequence--item__iconed::before {
  display: none;
}
.sequence--item-icon {
  position: absolute;
  left: -26.5px;
  top: 0;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  line-height: 1.5;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1px;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #333;
  text-align: left;
  text-decoration: none;
  background-color: #fff;
  border-radius: 3px;
  min-height: 34px;
  border: 1px solid #b1b1b1;
}
.rc-tooltip-arrow,
.rc-tooltip-arrow-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: -5px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #b1b1b1;
}
.rc-tooltip-placement-top .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topRight .rc-tooltip-arrow-inner {
  bottom: 1px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #fff;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #b1b1b1;
}
.rc-tooltip-placement-right .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow-inner {
  left: 1px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #fff;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: -5px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #b1b1b1;
}
.rc-tooltip-placement-left .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow-inner {
  right: 1px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #fff;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: -5px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #b1b1b1;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow-inner {
  top: 1px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #fff;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}
@media (max-width: 480px) {
  .rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
    right: 50%;
  }
}
.socials {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
}
.socials--social {
  margin-right: 17px;
  color: #5c5780;
}
.socials--social:hover {
  color: #00c26f;
}
.socials .icon-youtube {
  position: relative;
  top: 0.1em;
}
.socials .icon-bitcointalk {
  position: relative;
  top: 0.1em;
  font-size: 1.2em;
}
.react-tabs {
  background: #f6f4f8;
}
.react-tabs__tab-list {
  display: inline-flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.react-tabs__tab {
  position: relative;
  padding: 16px 32px;
  font-weight: bold;
  font-size: 19px;
  color: #cdccd1;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.react-tabs__tab--selected {
  color: #2b2b36;
  background-color: #fff;
}
.react-tabs__tab--selected:last-child::after,
.react-tabs__tab--selected:last-child::before {
  display: none;
}
.react-tabs__tab-panel {
  background-color: #fff;
}
.react-tabs__tab-panel--selected {
  padding: 32px;
}
.list__iconed {
  list-style: none;
  padding: 0;
}
.list--item {
  position: relative;
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 26px;
}
.list--icon {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 8px;
  color: #00c26f;
}
.list__iconed li::before {
  content: "";
}
svg.main-anim.active .ring-1 {
  stroke-dasharray: 864px 864px;
  stroke-dashoffset: 864px;
  animation: ring-1 2s 1s linear;
  animation-fill-mode: forwards;
}
svg.main-anim.active .ring-2 {
  stroke-dasharray: 1021px;
  stroke-dashoffset: 1021px;
  animation: ring-2 2s 2s linear forwards;
}
svg.main-anim.active .scaled-1 {
  transform-origin: center center;
  transform: scale(0);
  animation: scale 0.5s ease-in forwards;
}
svg.main-anim.active .scaled-2 {
  transform-origin: 167.5px 163.5px;
  transform: scale(0);
  animation: scale 0.5s 0.25s ease-in forwards;
}
@keyframes ring-1 {
  from {
    stroke-dashoffset: 864px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ring-2 {
  from {
    stroke-dashoffset: 1021px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
svg.main-anim.active path.star-1 {
  animation: star-anim-1 5s 0.5s linear infinite;
}
svg.main-anim.active path.star-2 {
  animation: star-anim-2 5s 1s linear infinite;
}
svg.main-anim.active path.star-3 {
  animation: star-anim-3 5s 1.5s linear infinite;
}
svg.main-anim.active path.star-4 {
  animation: star-anim-4 5s 2s linear infinite;
}
svg.main-anim.active path.star-5 {
  animation: star-anim-5 5s 2.5s linear infinite;
}
svg.main-anim.active .star-container > path {
  opacity: 0;
}
svg.main-anim {
  opacity: 0;
  z-index: 1;
  flex-shrink: 0;
}
svg.main-anim.active {
  opacity: 1;
}
@media all and (min-width: 767px) and (max-width: 1199px) {
  svg.main-anim.active {
    transform: scale(0.5);
  }
}
@keyframes star-anim-1 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 259px 279px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 277px 234.5px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 295px 190px;
  }
}
@keyframes star-anim-2 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 30px 130px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 55px 115px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 80px 100px;
  }
}
@keyframes star-anim-3 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 190px 40px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 230px 70px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 270px 100px;
  }
}
@keyframes star-anim-4 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 10px 150px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 35px 200px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 60px 250px;
  }
}
@keyframes star-anim-5 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 250px 320px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 220px 295px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 190px 270px;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.language-adviser {
  display: none;
  position: relative;
  background-color: #2b2b36;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  font-size: 15px;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 300ms;
  will-change: transform;
}
.language-adviser__show {
  display: block;
}
.language-adviser--content {
  display: flex;
  height: 48px;
  color: #fff;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.583333px;
}
@media (max-width: 575px) {
  .language-adviser--content span {
    margin-bottom: 9px;
  }
}
@media (min-width: 576px) {
  .language-adviser--content span {
    margin-right: 30px;
  }
}
.language-adviser--content a {
  color: #fff;
  min-width: 66px;
  padding: 3px;
  height: 24px;
  border: 1px solid rgba(164, 163, 170, 0.6);
  border-radius: 4px;
}
@media all and (max-width: 575px) {
  .language-adviser--content {
    flex-direction: column;
    height: auto;
    padding: 9px 14px;
  }
}
.language-adviser--close-btn {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.language-adviser--close-btn:before,
.language-adviser--close-btn:after {
  position: absolute;
  left: 10px;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #fff;
}
.language-adviser--close-btn:before {
  transform: rotate(45deg);
}
.language-adviser--close-btn:after {
  transform: rotate(-45deg);
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.now-input--input::-moz-placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.now-input--input::placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.now-input {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.now-input--labels {
  position: absolute;
  display: flex;
  align-items: center;
}
.now-input--non-promo-value {
  font-size: 12px;
  text-decoration-line: line-through;
  color: #000;
}
.now-input--non-promo-value:not(:first-child) {
  margin-inline-start: 8px;
}
@media (min-width: 576px) {
  .now-input--non-promo-value:not(:first-child) {
    margin-inline-start: 16px;
  }
}
.now-input--input {
  width: 100%;
  margin: 0;
  border: 0;
}
.now-input--input[readonly] {
  cursor: default;
}
.now-input--loader {
  position: absolute;
  bottom: 0;
}
.now-input__dark {
  background-color: #36324a;
}
.now-input__dark .now-input--input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 17px 20px 0;
  font-size: 24px;
  color: #fff;
  background-color: #3e3e59;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: all 0.3s ease;
}
@media all and (max-width: 575px) {
  .now-input__dark .now-input--input {
    font-size: 16px;
    padding-top: 17px;
    padding-bottom: 0;
    padding-inline-start: 20px;
    padding-inline-end: 36px;
  }
}
html[dir="rtl"] .now-input__dark .now-input--input {
  border-radius: 0 8px 8px 0;
}
.now-input__dark .now-input--labels {
  top: 5px;
  left: 20px;
}
html[dir="rtl"] .now-input__dark .now-input--labels {
  left: unset;
  right: 20px;
}
.now-input__dark .now-input--label {
  font-size: 14px;
  color: #808086;
}
.now-input__light {
  background-color: #fff;
  position: relative;
}
.now-input__light .now-input--input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 17px 20px 0;
  font-size: 24px;
  color: #000;
  background-color: #fff;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: all 0.3s ease;
}
@media all and (max-width: 575px) {
  .now-input__light .now-input--input {
    font-size: 16px;
    padding-top: 17px;
    padding-bottom: 0;
    padding-inline-start: 20px;
    padding-inline-end: 12px;
  }
}
.now-input__light .now-input--labels {
  top: 5px;
  left: 20px;
}
html[dir="rtl"] .now-input__light .now-input--labels {
  left: unset;
  right: 20px;
}
.now-input__light .now-input--label {
  font-size: 14px;
  color: #808086;
}
.now-input__default {
  border: 1px solid #00c26f;
  height: 50px;
  border-radius: 6px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #2b2b36;
}
.now-input__default .now-input--label {
  color: #a4a3aa;
  top: 0;
  font-size: 14px;
}
.now-input__default .now-input--input {
  border-radius: inherit;
  font-size: 20px;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}
.now-input__default .now-input--input-padding {
  padding-top: 26px;
  padding-bottom: 12px;
  padding-inline-start: 20px;
  padding-inline-end: 40px;
}
.now-input__gray {
  border: 1px solid #dce2ea;
  border-radius: 6px;
  height: 50px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #2b2b36;
}
.now-input__gray .now-input--label {
  color: #a4a3aa;
  top: 0;
  font-size: 14px;
}
.now-input__gray .now-input--input {
  outline: none;
  border-radius: inherit;
  font-size: 20px;
}
.now-tooltip {
  position: absolute;
  left: 0;
  z-index: 99;
  max-width: 280px;
  margin-top: 4px;
  padding: 20px;
  top: 20px;
}
.now-tooltip--close-button {
  float: right;
}
html[dir="rtl"] .now-tooltip {
  right: 0;
}
html[dir="rtl"] .now-tooltip--close-button {
  float: left;
}
.now-tooltip__default {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}
.now-tooltip__default .now-tooltip--title {
  font-weight: 700;
  font-size: 14px;
}
.now-tooltip__default p {
  font-size: 14px;
  line-height: 22px;
}
.combobox__filters {
  display: flex;
  flex-wrap: wrap;
  margin: 0 16px;
  justify-content: space-between;
}
.combobox__filters_scrolling {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.combobox__filters_scrolling::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: #e9e7ee;
}
.combobox__filters_scrolling::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.combobox__filters_scrolling .filter__button {
  text-wrap: nowrap;
}
.filter__button {
  background: #fafafd;
  border: 1px solid #e9e7ee;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 9px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  flex-grow: 1;
  margin-top: 10px;
}
.filter__button:last-child {
  margin-right: 0;
}
.filter__button_active {
  border: 1px solid #00c26f;
  background: #f9fffc;
}
.filter__button-all {
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .filter__button {
    margin-right: 12px;
    padding: 4px 4px;
  }
  .filter__button-all {
    padding: 4px;
  }
}
.combobox {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 121px;
}
.combobox--field {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  outline: none;
}
.combobox--input {
  width: calc(100% - 48px);
  height: 100%;
  margin-bottom: 0;
}
.combobox--dropdown-arrow {
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 5px 12px 0;
  font-size: 5px;
  line-height: 48px;
  cursor: pointer;
}
html[dir="rtl"] .combobox--dropdown-arrow {
  right: unset;
  left: 0;
}
.combobox--dropdown {
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: #fff;
  visibility: hidden;
  display: none;
}
.combobox--dropdown__open {
  visibility: visible;
  overflow: hidden;
  cursor: initial;
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .combobox--dropdown__open {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .combobox--dropdown {
    max-height: 380px;
  }
}
.combobox--dropdown-message-empty-list {
  padding: 0 15px;
  font-size: 16px;
  text-align: center;
}
.combobox__items-list {
  padding: 0;
  max-height: none;
  overflow-y: scroll;
  height: calc(100% - 155px);
}
.combobox__items-container {
  overscroll-behavior: contain;
}
.combobox__items-list_tall {
  height: calc(100% - 107px);
}
.combobox__items-list .combobox-dropdown-item {
  height: auto;
  padding-inline-end: 5px;
  padding-inline-start: 16px;
  list-style: none;
  cursor: pointer;
}
.combobox__green-scrollbar .combobox__items-list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #e9e7ee;
}
.combobox__green-scrollbar .combobox__items-list::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.combobox__dark {
  background-color: #36324a;
}
.combobox__dark .combobox--dropdown-arrow {
  fill: #fff;
}
.combobox__light {
  background-color: #fff;
}
.combobox__light .combobox--field__dropdown-open {
  border-bottom: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px 5px 0 0;
  background: #fff;
  flex-direction: column;
  align-items: start;
}
.combobox__light .combobox--dropdown__open {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
  top: 100px;
}
.combobox__light .combobox--dropdown-arrow {
  fill: #000;
}
.swap-page__exchange-blockchain-calculator .combobox--dropdown__open {
  height: auto;
}
.combobox__input {
  background: #fafafd;
  border: 1px solid #e9e7ee;
  box-sizing: border-box;
  border-radius: 4px;
  height: 44px;
  width: calc(100% - 32px);
  margin: 8px 16px 0 16px;
  position: relative;
}
.combobox__search-icon {
  position: absolute;
  top: 10px;
  left: 16px;
}
html[dir="rtl"] .combobox__search-icon {
  left: unset;
  right: 16px;
}
.combobox__dropdown-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #000;
  margin: 16px 16px 0 16px;
}
.combobox__btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  outline: none;
}
html[dir="rtl"] .combobox__btn-close {
  right: unset;
  left: 16px;
}
.combobox.combobox_open {
  width: 100%;
  position: absolute;
  display: block;
}
.combobox--field.combobox--field__without-selector {
  cursor: initial;
}
.combobox__loader-icon {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .combobox {
    min-width: 160px;
  }
  .combobox__items-list {
    max-height: 330px;
    height: auto;
    margin: 15px 0 0 0;
    overflow: hidden;
  }
  .combobox--dropdown.combobox--dropdown__open:has(.combobox__filters_scrolling)
    .combobox__items-list {
    margin-top: 7px;
  }
  .combobox__items-list > div::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #e9e7ee;
  }
  .combobox__items-list > div::-webkit-scrollbar-thumb {
    background: #00c26f;
  }
  div.combobox__network {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .combobox-dropdown-item:hover {
    background-color: #f7f7f9;
  }
}
.currency-item {
  display: flex;
}
.currency-item--currency-icon {
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 10px;
}
@media all and (max-width: 575px) {
  .currency-item--currency-icon {
    margin-inline-end: 6px;
  }
}
.currency-item--ticker {
  display: inline-block;
  margin-inline-end: 10px;
  word-break: break-all;
}
.currency-item__ticker_fontsize-big {
  font-size: 18px;
}
.currency-item__dark .currency-item--currency-icon {
  color: #00c26f;
}
.currency-item__dark .currency-item--ticker {
  color: #fff;
}
.currency-item__light .currency-item--currency-icon {
  color: #00c26f;
}
.currency-item__light .currency-item--ticker {
  color: #000;
}
.currency-item_mobile {
  display: none;
}
@media (min-width: 768px) {
  .currency-item_mobile {
    display: inline-block;
  }
  .currency-item--name_short {
    width: 20ch;
  }
}
.combobox-dropdown-list {
  padding: 8px 15px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #5e5a72;
  list-style-type: none;
}
.combobox-dropdown-item {
  padding: 2px 20px 2px 10px;
  margin: 3px 0;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.combobox-dropdown-item_active {
  background: #eaedf2;
  position: relative;
}
.combobox-dropdown-item:hover::before,
.combobox-dropdown-item:hover::after,
.combobox-dropdown-item_active::before,
.combobox-dropdown-item_active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
}
.combobox-dropdown-item_active::before,
.combobox-dropdown-item_active::after {
  background: #eaedf2;
}
.combobox-dropdown-item:hover::before,
.combobox-dropdown-item:hover::after {
  background-color: #f5f7fa;
}
.combobox-dropdown-item_active::before {
  top: -1px;
}
.combobox-dropdown-item:hover::after,
.combobox-dropdown-item_active::after {
  bottom: -1px;
}
@media screen and (min-width: 992px) {
  .combobox-dropdown-item:hover {
    position: relative;
    background-color: #f5f7fa;
  }
}
.currency-sup {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #fff;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0);
  padding: 2px 4px;
  top: 0;
  display: inline-block;
  word-break: keep-all;
}
.currency-sup span {
  font-size: 12px;
  line-height: 12px;
}
.currency-sup_with-tooltip {
  cursor: pointer;
}
.currency-sup__tooltip.new-stepper-tooltip {
  width: 300px;
}
.currency-sup_big {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 14px;
  margin: auto 8px;
  position: relative;
  overflow: hidden;
}
.currency-sup_blinking:after {
  content: "";
  display: block;
  width: 20%;
  height: 150%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 10%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 90%
  );
  z-index: 1;
  transform: rotate(30deg);
  position: absolute;
  top: -5px;
  animation: slideBlink 2s ease-in-out infinite;
}
@keyframes slideBlink {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.fix-rate-timer {
  color: #2b2b36;
  font-size: 12px;
  white-space: nowrap;
}
.fix-rate-timer__icon {
  width: 10px;
  height: auto;
  margin-inline-end: 4px;
  position: relative;
  transform: translate(0, 1px);
}
.fix-rate-timer_dark {
  color: #fff;
}
@media (min-width: 768px) {
  .fix-rate-timer {
    font-size: 12px;
  }
  .fix-rate-timer__icon {
    width: 12px;
  }
}
.network-info {
  position: relative;
  width: 100%;
  height: 10px;
  text-align: left;
  padding-left: 9px;
  flex-shrink: 0;
}
.network-info__background {
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0 0 7px 0;
  transition: all 0.3s ease;
}
.network-info__text {
  position: absolute;
  color: #fff;
  font-size: 8px;
  line-height: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .network-info {
    height: 14px;
    padding-left: 13px;
  }
  .network-info__text {
    font-size: 10px;
    line-height: 14px;
  }
}
.now-input--input::-moz-placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.now-input--input::placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.now-input {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.now-input--labels {
  position: absolute;
  display: flex;
  align-items: center;
}
.now-input--non-promo-value {
  font-size: 12px;
  text-decoration-line: line-through;
  color: #000;
}
.now-input--non-promo-value:not(:first-child) {
  margin-inline-start: 8px;
}
@media (min-width: 576px) {
  .now-input--non-promo-value:not(:first-child) {
    margin-inline-start: 16px;
  }
}
.now-input--input {
  width: 100%;
  margin: 0;
  border: 0;
}
.now-input--input[readonly] {
  cursor: default;
}
.now-input--loader {
  position: absolute;
  bottom: 0;
}
.now-input__dark {
  background-color: #36324a;
}
.now-input__dark .now-input--input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 17px 20px 0;
  font-size: 24px;
  color: #fff;
  background-color: #3e3e59;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: all 0.3s ease;
}
@media all and (max-width: 575px) {
  .now-input__dark .now-input--input {
    font-size: 16px;
    padding-top: 17px;
    padding-bottom: 0;
    padding-inline-start: 20px;
    padding-inline-end: 36px;
  }
}
html[dir="rtl"] .now-input__dark .now-input--input {
  border-radius: 0 8px 8px 0;
}
.now-input__dark .now-input--labels {
  top: 5px;
  left: 20px;
}
html[dir="rtl"] .now-input__dark .now-input--labels {
  left: unset;
  right: 20px;
}
.now-input__dark .now-input--label {
  font-size: 14px;
  color: #808086;
}
.now-input__light {
  background-color: #fff;
  position: relative;
}
.now-input__light .now-input--input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 17px 20px 0;
  font-size: 24px;
  color: #000;
  background-color: #fff;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: all 0.3s ease;
}
@media all and (max-width: 575px) {
  .now-input__light .now-input--input {
    font-size: 16px;
    padding-top: 17px;
    padding-bottom: 0;
    padding-inline-start: 20px;
    padding-inline-end: 12px;
  }
}
.now-input__light .now-input--labels {
  top: 5px;
  left: 20px;
}
html[dir="rtl"] .now-input__light .now-input--labels {
  left: unset;
  right: 20px;
}
.now-input__light .now-input--label {
  font-size: 14px;
  color: #808086;
}
.now-input__default {
  border: 1px solid #00c26f;
  height: 50px;
  border-radius: 6px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #2b2b36;
}
.now-input__default .now-input--label {
  color: #a4a3aa;
  top: 0;
  font-size: 14px;
}
.now-input__default .now-input--input {
  border-radius: inherit;
  font-size: 20px;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}
.now-input__default .now-input--input-padding {
  padding-top: 26px;
  padding-bottom: 12px;
  padding-inline-start: 20px;
  padding-inline-end: 40px;
}
.now-input__gray {
  border: 1px solid #dce2ea;
  border-radius: 6px;
  height: 50px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #2b2b36;
}
.now-input__gray .now-input--label {
  color: #a4a3aa;
  top: 0;
  font-size: 14px;
}
.now-input__gray .now-input--input {
  outline: none;
  border-radius: inherit;
  font-size: 20px;
}
.combobox__filters {
  display: flex;
  flex-wrap: wrap;
  margin: 0 16px;
  justify-content: space-between;
}
.combobox__filters_scrolling {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.combobox__filters_scrolling::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: #e9e7ee;
}
.combobox__filters_scrolling::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.combobox__filters_scrolling .filter__button {
  text-wrap: nowrap;
}
.filter__button {
  background: #fafafd;
  border: 1px solid #e9e7ee;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 9px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  flex-grow: 1;
  margin-top: 10px;
}
.filter__button:last-child {
  margin-right: 0;
}
.filter__button_active {
  border: 1px solid #00c26f;
  background: #f9fffc;
}
.filter__button-all {
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .filter__button {
    margin-right: 12px;
    padding: 4px 4px;
  }
  .filter__button-all {
    padding: 4px;
  }
}
.combobox {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 121px;
}
.combobox--field {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  outline: none;
}
.combobox--input {
  width: calc(100% - 48px);
  height: 100%;
  margin-bottom: 0;
}
.combobox--dropdown-arrow {
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 5px 12px 0;
  font-size: 5px;
  line-height: 48px;
  cursor: pointer;
}
html[dir="rtl"] .combobox--dropdown-arrow {
  right: unset;
  left: 0;
}
.combobox--dropdown {
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: #fff;
  visibility: hidden;
  display: none;
}
.combobox--dropdown__open {
  visibility: visible;
  overflow: hidden;
  cursor: initial;
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .combobox--dropdown__open {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .combobox--dropdown {
    max-height: 380px;
  }
}
.combobox--dropdown-message-empty-list {
  padding: 0 15px;
  font-size: 16px;
  text-align: center;
}
.combobox__items-list {
  padding: 0;
  max-height: none;
  overflow-y: scroll;
  height: calc(100% - 155px);
}
.combobox__items-container {
  overscroll-behavior: contain;
}
.combobox__items-list_tall {
  height: calc(100% - 107px);
}
.combobox__items-list .combobox-dropdown-item {
  height: auto;
  padding-inline-end: 5px;
  padding-inline-start: 16px;
  list-style: none;
  cursor: pointer;
}
.combobox__green-scrollbar .combobox__items-list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #e9e7ee;
}
.combobox__green-scrollbar .combobox__items-list::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.combobox__dark {
  background-color: #36324a;
}
.combobox__dark .combobox--dropdown-arrow {
  fill: #fff;
}
.combobox__light {
  background-color: #fff;
}
.combobox__light .combobox--field__dropdown-open {
  border-bottom: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px 5px 0 0;
  background: #fff;
  flex-direction: column;
  align-items: start;
}
.combobox__light .combobox--dropdown__open {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
  top: 100px;
}
.combobox__light .combobox--dropdown-arrow {
  fill: #000;
}
.swap-page__exchange-blockchain-calculator .combobox--dropdown__open {
  height: auto;
}
.combobox__input {
  background: #fafafd;
  border: 1px solid #e9e7ee;
  box-sizing: border-box;
  border-radius: 4px;
  height: 44px;
  width: calc(100% - 32px);
  margin: 8px 16px 0 16px;
  position: relative;
}
.combobox__search-icon {
  position: absolute;
  top: 10px;
  left: 16px;
}
html[dir="rtl"] .combobox__search-icon {
  left: unset;
  right: 16px;
}
.combobox__dropdown-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #000;
  margin: 16px 16px 0 16px;
}
.combobox__btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  outline: none;
}
html[dir="rtl"] .combobox__btn-close {
  right: unset;
  left: 16px;
}
.combobox.combobox_open {
  width: 100%;
  position: absolute;
  display: block;
}
.combobox--field.combobox--field__without-selector {
  cursor: initial;
}
.combobox__loader-icon {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .combobox {
    min-width: 160px;
  }
  .combobox__items-list {
    max-height: 330px;
    height: auto;
    margin: 15px 0 0 0;
    overflow: hidden;
  }
  .combobox--dropdown.combobox--dropdown__open:has(.combobox__filters_scrolling)
    .combobox__items-list {
    margin-top: 7px;
  }
  .combobox__items-list > div::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #e9e7ee;
  }
  .combobox__items-list > div::-webkit-scrollbar-thumb {
    background: #00c26f;
  }
  div.combobox__network {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .combobox-dropdown-item:hover {
    background-color: #f7f7f9;
  }
}
.currency-item {
  display: flex;
}
.currency-item--currency-icon {
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 10px;
}
@media all and (max-width: 575px) {
  .currency-item--currency-icon {
    margin-inline-end: 6px;
  }
}
.currency-item--ticker {
  display: inline-block;
  margin-inline-end: 10px;
  word-break: break-all;
}
.currency-item__ticker_fontsize-big {
  font-size: 18px;
}
.currency-item__dark .currency-item--currency-icon {
  color: #00c26f;
}
.currency-item__dark .currency-item--ticker {
  color: #fff;
}
.currency-item__light .currency-item--currency-icon {
  color: #00c26f;
}
.currency-item__light .currency-item--ticker {
  color: #000;
}
.currency-item_mobile {
  display: none;
}
@media (min-width: 768px) {
  .currency-item_mobile {
    display: inline-block;
  }
  .currency-item--name_short {
    width: 20ch;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.new-stepper-header {
  margin-top: -40px;
  margin-bottom: 12px;
  background: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 12px 30px;
  font-size: 12px;
  color: #808086;
  text-align: center;
  position: relative;
}
.new-stepper-header__back {
  position: absolute;
  left: 12px;
  border: 0;
  background: none;
}
.new-stepper-header__back:focus {
  outline: none;
}
@media (min-width: 768px) {
  .new-stepper-header-wrapper {
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    margin-top: 0;
  }
}
.new-stepper-fix-rate {
  display: flex;
  align-items: center;
}
.new-stepper-fix-rate__text {
  display: flex;
  color: #2b2b36;
  font-size: 12px;
  margin-right: 10px;
  border-bottom: 1px dashed #00b67a;
  cursor: help;
}
.new-stepper-fix-rate__text:before {
  content: "🔒";
  margin-right: 5px;
}
.new-stepper-switch {
  position: relative;
  display: flex;
  width: 32px;
  height: 12px;
}
.new-stepper-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}
.new-stepper-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #bfbfc3;
  border-radius: 4px;
}
.new-stepper-switch-slider:before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  background: #808086;
  border-radius: 4px;
  top: -1px;
  transition: transform 0.3s ease;
}
.new-stepper-switch-slider_show-animation:before {
  background: linear-gradient(
    315deg,
    rgb(128, 128, 134) 40%,
    rgb(255, 255, 255) 50%,
    rgb(128, 128, 134) 60%
  );
  background-size: 50px 50px;
  animation-name: gradient;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.new-stepper-switch-input:checked + .new-stepper-switch-slider {
  background: rgba(0, 194, 111, 0.2);
}
.new-stepper-switch-input:checked + .new-stepper-switch-slider:before {
  background: #00c26f;
  transform: translateX(18px);
}
@keyframes gradient {
  0% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
.new-stepper-body {
  padding: 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: #fff;
}
.new-stepper-body_dark {
  background: #343443;
  border: 1px solid #46475e;
  border-top: none;
}
@media (min-width: 768px) {
  .new-stepper-body {
    padding: 40px;
  }
}
.new-stepper-tabs {
  display: flex;
}
.new-stepper-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #eaedf2;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  height: 44px;
  border-radius: 12px 12px 0 0;
  transition: color ease 0.3s;
}
.new-stepper-tab_dark {
  background: #30303e;
  border: 1px solid #46475e;
}
.new-stepper-tab span {
  position: relative;
  z-index: 1;
  opacity: 0.8;
}
.new-stepper-tab:focus {
  outline: none;
}
.new-stepper-tab_active {
  color: #2b2b36;
  background: #fff;
}
.new-stepper-tab_active span {
  opacity: 1;
}
.new-stepper-tab_active-dark {
  color: #fff;
  background: #343443;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.new-stepper-tab_exchange {
  border: 1px solid #fff;
}
.new-stepper-tab_buy-sell {
  border: 1px solid #fff;
}
.new-stepper-tab_exchange-dark {
  border: 1px solid #46475e;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.new-stepper-tab_buy-sell-dark {
  border: 1px solid #46475e;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.new-stepper-tab_exchange:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -14px;
  bottom: 0;
  width: 25px;
  height: calc(100% + 2px);
  background: #fff;
  transform: skewX(20deg);
  border: 1px solid #fff;
  border-radius: 0 5px 0 0;
  border-left: none;
  z-index: 1;
}
.new-stepper-tab_exchange-dark:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -14px;
  bottom: 0;
  width: 25px;
  height: calc(100% + 2px);
  background: #343443;
  transform: skewX(20deg);
  border: 1px solid #46475e;
  border-radius: 0 5px 0 0;
  border-left: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  z-index: 1;
}
html[dir="rtl"] .new-stepper-tab_exchange-dark:before,
html[dir="rtl"] .new-stepper-tab_exchange:before {
  content: "";
  left: -14px;
  right: unset;
  bottom: 0;
  transform: skewX(-20deg);
  border-radius: 5px 0 0 0;
  border-left: inherit;
  border-right: none;
}
.new-stepper-tab_buy-sell:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -14px;
  bottom: 0;
  width: 25px;
  height: calc(100% + 2px);
  background: #fff;
  transform: skewX(-20deg);
  border: 1px solid #fff;
  border-radius: 5px 0 0 0;
  border-right: none;
  z-index: 1;
}
.new-stepper-tab_buy-sell-dark:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -14px;
  bottom: 0;
  width: 25px;
  height: calc(100% + 2px);
  background: #343443;
  transform: skewX(-20deg);
  border: 1px solid #46475e;
  border-radius: 5px 0 0 0;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  z-index: 1;
}
html[dir="rtl"] .new-stepper-tab_buy-sell-dark:before,
html[dir="rtl"] .new-stepper-tab_buy-sell:before {
  left: unset;
  right: -14px;
  transform: skewX(20deg);
  border-radius: 0 5px 0 0;
  border-right: inherit;
  border-left: none;
}
.new-stepper-tab__text {
  display: flex;
  align-items: center;
}
.new-stepper-tab__text span {
  display: none;
}
@media screen and (min-width: 576px) {
  .new-stepper-tab__text span {
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (min-width: 768px) {
  .new-stepper-tab {
    font-size: 13px;
    line-height: 15px;
    height: 50px;
  }
}
.new-stepper-tooltip {
  position: absolute;
  width: 210px;
  z-index: 1000;
}
.new-stepper-tooltip_hidden {
  visibility: hidden;
}
.new-stepper-tooltip__content {
  position: relative;
  background: #414453;
  box-shadow: 0 0 10px rgba(43, 43, 54, 0.2);
  padding: 12px;
  color: #fff;
  border-radius: 8px;
}
.new-stepper-tooltip__content:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  border-top: 10px solid #414453;
}
.new-stepper-tooltip__content_white {
  background: #fff;
  color: #2b2b36;
}
.new-stepper-tooltip__content_white:before {
  border-top: 10px solid #fff;
}
.new-stepper-tooltip__title {
  text-align: start;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
}
.new-stepper-tooltip__body {
  font-size: 14px;
  padding: 5px 0;
  text-align: start;
}
.new-stepper-currency-to-currency {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
}
.new-stepper-currency-border {
  position: relative;
  margin: 0;
}
.new-stepper-currency-border img {
  position: absolute;
  top: calc(50% - 9px);
  right: 40px;
  transform: rotate(90deg);
}
.new-stepper-currency-border:before {
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  border: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
  .new-stepper-currency-to-currency {
    flex-direction: row;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .new-stepper-currency-from {
    flex-direction: row-reverse;
  }
  .new-stepper-currency-border {
    margin: 0 34px;
  }
  .new-stepper-currency-border img {
    transform: rotate(0);
    position: absolute;
    left: -8px;
    right: 0;
    top: calc(50% - 9px);
  }
}
.new-stepper-currency-to-currency-item {
  flex-basis: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
}
.new-stepper-currency-to-currency-item__ticker {
  margin: 0 16px;
}
.new-stepper-currency-to-currency-item__amount {
  font-size: 18px;
  font-weight: 500;
  color: #2b2b36;
}
.new-stepper-currency-to-currency-item__amount_fixed {
  color: #00c26f;
}
.new-stepper-wallet-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2.5px 15px rgba(43, 43, 54, 0.12);
  border-radius: 8px;
  padding: 24px 16px;
  margin: -16px -16px 24px;
}
.new-stepper-wallet-card__warning {
  margin: 0 -16px -24px;
}
.new-stepper-wallet-items-in-line {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .new-stepper-wallet-card {
    box-shadow: 0 3px 15px rgba(43, 43, 54, 0.12);
    border-radius: 8px;
    padding: 30px;
    margin: -16px -16px 40px;
  }
  .new-stepper-wallet-items-in-line {
    flex-direction: row;
  }
  .new-stepper-wallet-items-in-line .new-stepper-wallet-card-item:nth-child(n) {
    flex-basis: 33.3333333333%;
  }
  .new-stepper-wallet-card__warning {
    margin: 0 -30px -30px;
  }
}
.new-stepper-checkbox {
  display: block;
  padding: 5px 0;
}
.new-stepper-checkbox__label {
  display: flex;
  align-items: end;
  position: relative;
  padding-inline-start: 24px;
  font-size: 12px;
  color: #808086;
}
.new-stepper-checkbox__label a {
  color: #808086;
  text-decoration: underline;
}
.new-stepper-checkbox__label a:hover {
  color: #00c26f;
}
.new-stepper-checkbox input {
  position: absolute;
  opacity: 0;
}
.new-stepper-checkbox__label:before {
  content: "";
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #5c806f;
  border-radius: 4px;
}
html[dir="rtl"] .new-stepper-checkbox__label:before {
  left: unset;
  right: 0;
}
.new-stepper-checkbox__label:after {
  content: "";
  position: absolute;
  cursor: pointer;
  left: 3px;
  top: 4px;
  width: 10px;
  height: 8px;
  background-repeat: no-repeat;
}
html[dir="rtl"] .new-stepper-checkbox__label:after {
  left: unset;
  right: 3px;
}
.new-stepper-checkbox input:checked + .new-stepper-checkbox__label:before {
  background: #00c26f;
  border: none;
}
.new-stepper-checkbox input:checked + .new-stepper-checkbox__label:after {
  background: url(6c0731253f10155395a7.svg);
}
.new-stepper-agreement {
  padding-top: 16px;
}
.new-stepper-notification {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #a4a3aa;
  border-radius: 6px;
  background-color: #eaeaeb;
  padding: 4px 12px;
  margin-top: 8px;
}
.new-stepper-notification:first-of-type {
  margin-top: 0;
}
.new-stepper-notification p {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #a4a3aa;
  letter-spacing: normal;
  margin: 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .new-stepper-notification,
  .new-stepper-notification p {
    font-size: 14px;
    line-height: 20px;
  }
}
.new-stepper-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.new-stepper-button:hover {
  background-color: #00c87a;
}
.new-stepper-button:focus {
  outline: 0;
}
.new-stepper-button:disabled {
  pointer-events: none;
}
.input-dropdown {
  display: none;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(100% - 4px);
  width: calc(100% + 2px);
  right: -1px;
  max-height: 228px;
  overflow-y: auto;
  z-index: 1000;
  border: 1px solid #dce2ea;
  padding-bottom: 16px;
  border-radius: 0 0 4px 4px;
}
.input-dropdown_opened {
  display: block;
  overflow-wrap: break-word;
  word-break: break-all;
}
.input-dropdown::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.input-dropdown::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.input-dropdown__item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin: 0;
  padding: 12px 0 12px 16px;
}
.input-dropdown__item:not(.fixed-item):hover {
  background-color: #fafafd;
  cursor: pointer;
}
.input-dropdown__item:focus {
  background-color: #e6f9f1;
}
.input-dropdown__item_chosen {
  background-color: #e6f9f1;
}
.input-dropdown__item_fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f6f4f8;
}
.input-dropdown__item-extraId-span {
  color: #9696a5;
}
.input-dropdown__item .input-dropdown__item-extraId {
  padding: 0;
  margin: 0;
}
.new-stepper-field__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
}
.new-stepper-field__input-arrow {
  position: absolute;
  right: 16px;
  width: 11px;
  height: 6px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(f9e0b7fd5dbced50e305.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: #ffdead;
  padding: 0;
  margin: 7px 5px 7px 4px;
}
.new-stepper-field__input-arrow_opened {
  background-image: url(9cf4be22cd5f3a313764.svg);
}
.new-stepper-field__wrapper-input:has(.new-stepper-field__input-dropdown)
  .new-stepper-field__icon {
  right: 30px;
}
.new-stepper-field_hidden {
  display: none;
}
.new-stepper-field__label {
  font-size: 16px;
  line-height: 20px;
  color: #808086;
  transition: color ease 0.3s;
}
.new-stepper-field__label_color-black {
  color: #808086;
}
.new-stepper-field__label-right {
  font-size: 14px;
  line-height: 17px;
  color: #808086;
  margin-inline-start: auto;
  cursor: pointer;
  outline: none;
}
.new-stepper-field__label-right:hover {
  color: #00c26f;
}
.new-stepper-field__wrapper-input {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #fff;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  transition: border ease 0.3s;
}
.new-stepper-field__button {
  border: none;
  background: rgba(0, 0, 0, 0);
  color: #00c26f;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
  letter-spacing: 0.45px;
  text-align: center;
  padding-right: 16px;
}
.new-stepper-field__success-img {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  margin-left: 16px;
}
.new-stepper-field__wrapper-input_border-green {
  border-color: #00c26f;
}
.set-transaction-step
  .new-stepper-field
  .new-stepper-field__wrapper-input_border-passive {
  border-radius: 4px;
}
.new-stepper-field__input {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: #2b2b36;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 20px 16px 6px;
  margin: 0;
}
.new-stepper-field__input:focus {
  outline: 0;
}
.new-stepper-field__input:not(:-moz-placeholder-shown)
  + .new-stepper-field__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-field__input:focus + .new-stepper-field__placeholder,
.new-stepper-field__input:not(:placeholder-shown)
  + .new-stepper-field__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-field__input:is(:-webkit-autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  z-index: -1;
}
.new-stepper-field__input:is(:-webkit-autofill, :autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  z-index: -1;
}
.new-stepper-field__input::-moz-placeholder {
  color: #808086;
  font-weight: 400;
  text-overflow: ellipsis;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-field__input::placeholder {
  color: #808086;
  font-weight: 400;
  text-overflow: ellipsis;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-field__placeholder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  font-weight: 300;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
html[dir="rtl"] .new-stepper-field__placeholder {
  transform-origin: top right;
}
.new-stepper-field__icon {
  width: 40px;
  position: absolute;
  right: 0;
  z-index: 1;
  cursor: pointer;
  outline: none;
}
html[dir="rtl"] .new-stepper-field__icon {
  right: unset;
  left: 0;
}
.new-stepper-field__icon:hover {
  animation-name: new-stepper-field-icon-scale;
  animation-duration: 0.5s;
}
.new-stepper-field__icon svg {
  display: block;
  flex-shrink: 0;
}
.new-stepper-field__icon-success {
  width: 40px;
  position: absolute;
  right: 0;
  z-index: 1;
  outline: none;
}
html[dir="rtl"] .new-stepper-field__icon-success {
  right: unset;
  left: 8px;
}
.new-stepper-field__wrapper-input:has(.new-stepper-field__input-dropdown)
  .new-stepper-field__icon-success {
  right: 30px;
}
.new-stepper-field__icon-success svg {
  display: block;
  animation-name: new-stepper-field-icon-rotate;
  animation-duration: 0.3s;
}
.new-stepper-field_has-error .new-stepper-field__wrapper-input {
  border-color: #fcedba;
}
.new-stepper-field_warning-shown .new-stepper-field__wrapper-input {
  border-radius: 8px 8px 0 0;
}
.new-stepper-field__wrapper-input_with-icon .new-stepper-field__input {
  padding-inline-end: 50px;
}
.new-stepper-field__wrapper-input_with-icon.new-stepper-field__wrapper-input-dropdown
  .new-stepper-field__input {
  padding-inline-end: 90px;
}
.new-stepper-field__wrapper-input_with-icon img.loader-icon {
  margin-inline-start: -10px;
}
.new-stepper-field__wrapper-input_with-icon .new-stepper-field__placeholder {
  right: 40px;
}
html[dir="rtl"]
  .new-stepper-field__wrapper-input_with-icon
  .new-stepper-field__placeholder {
  right: 16px;
  left: 40px;
}
@media screen and (min-width: 768px) {
  .new-stepper-field__placeholder,
  .new-stepper-field__input {
    font-size: 17px;
    line-height: 22px;
  }
}
@keyframes new-stepper-field-icon-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes new-stepper-field-icon-rotate {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0);
  }
}
.new-stepper-qr-scanner {
  position: relative;
  overflow: hidden;
  transition: height linear 0.5s;
  will-change: height;
}
.balance-withdraw__address-field:has(.input-dropdown_opened)
  .new-stepper-qr-scanner {
  z-index: -1;
}
.new-stepper-qr-scanner svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.new-stepper-qr-scanner__video-wrap {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-top: 25px;
}
.new-stepper-qr-scanner__video {
  display: block;
  max-width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.new-stepper-qr-scanner__canvas {
  max-width: 100%;
  display: none;
  height: 0;
}
.new-stepper-qr-scanner__error {
  display: flex;
  align-items: center;
  background: rgba(252, 237, 189, 0.59);
  border: 1px solid #e2e7ed;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}
.new-stepper-qr-scanner__error-icon {
  margin-right: 16px;
}
.new-stepper-qr-scanner__error-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.04px;
  color: rgba(43, 43, 54, 0.5);
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .new-stepper-qr-scanner__video {
    height: 100%;
  }
}
.new-stepper-recipient-field {
  margin-top: 24px;
}
@media (min-width: 1200px) {
  .new-stepper-recipient-field__wallets {
    width: 575px;
  }
}
.new-stepper-wallets {
  overflow: hidden;
  transition: max-height linear 0.5s;
}
.new-stepper-wallets__wrap {
  padding: 20px 0 0;
}
.new-stepper-wallets__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}
.new-stepper-wallets__title {
  font-size: 18px;
  line-height: 1;
  color: #2b2b37;
  font-weight: 400;
  letter-spacing: 0.09px;
  margin: 0;
}
.new-stepper-wallets__button {
  width: 80px;
  height: 24px;
  font-size: 13px;
  line-height: 20px;
  color: #00c26f;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #00c26f;
  padding: 0;
  margin: 0 0 0 17px;
}
.new-stepper-wallets__button:hover {
  border-color: rgb(0, 219.5, 125.5902061856);
  color: rgb(0, 219.5, 125.5902061856);
  background-color: #fff;
}
.new-stepper-wallets__content {
  padding-top: 15px;
  padding-left: 20px;
  border-left: 1px solid rgba(196, 194, 211, 0.4);
}
.new-stepper-wallets__block {
  padding-top: 35px;
}
.new-stepper-wallets__block:first-child {
  padding-top: 0;
}
.new-stepper-wallets__block-title {
  font-size: 14px;
  line-height: 18px;
  color: #aba9b5;
}
.new-stepper-warning {
  position: relative;
  width: 100%;
}
.new-stepper-warning__content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcefc1;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}
.new-stepper-warning__icon {
  margin-right: 9px;
}
.new-stepper-warning p {
  font-size: 14px;
  line-height: 12px;
  color: rgba(43, 43, 54, 0.5);
  text-align: center;
  letter-spacing: 0.1px;
  padding: 0;
  margin: 0;
  opacity: 1;
}
.new-stepper-warning_absolute .new-stepper-warning__content {
  justify-content: flex-start;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fcedba;
  border-radius: 0 0 6px 6px;
  padding-left: 16px;
  padding-right: 16px;
  animation-name: warning-fade;
  animation-duration: 0.3s;
}
.new-stepper-warning_absolute p {
  color: #5d5a60;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .new-stepper-warning p {
    font-size: 14px;
    line-height: 14px;
  }
  .new-stepper-warning_absolute p {
    font-size: 16px;
    line-height: 16px;
  }
}
@keyframes warning-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.new-stepper-dropdown-settings {
  border-top: 1px solid #f4f4f5;
}
.new-stepper-dropdown-settings__content-wrapper {
  overflow: hidden;
  transition: max-height ease 0.3s;
}
.new-stepper-dropdown-settings__content {
  padding: 24px 0;
}
.new-stepper-dropdown-settings__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 14px;
  color: #a6b7cf;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  border-top: 1px solid #f4f4f5;
  padding: 14px 0 14px;
  margin-top: -1px;
  cursor: pointer;
}
.new-stepper-dropdown-settings__title:focus {
  outline: 0;
}
.new-stepper-dropdown-settings__title svg {
  margin-inline-start: 9px;
  transition: transform ease 0.3s;
}
.new-stepper-dropdown-settings__title_icon-rotate svg {
  transform: rotate(-180deg);
}
@media all and (min-width: 768px) {
  .new-stepper-dropdown-settings__content {
    padding: 0;
  }
}
.new-stepper-extra-id-field {
  margin-top: 12px;
}
.new-stepper-extra-id-field:first-of-type {
  margin-top: 0;
}
.new-stepper-backup-field {
  margin-top: 24px;
}
.new-stepper-backup-field:first-of-type {
  margin-top: 0;
}
.new-stepper-backup-dropdown {
  overflow: hidden;
  transition: max-height ease 0.3s;
}
.new-stepper-backup-dropdown__content {
  font-size: 12px;
  line-height: 17px;
  color: #808086;
  padding: 4px 16px;
}
.new-stepper-smart-info-wallet {
  padding: 8px 32px;
  display: flex;
  color: #bfbfc3;
  font-size: 10px;
  font-weight: normal;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #f4f4f5;
}
.new-stepper-smart-info-wallet__item {
  margin-right: 8px;
}
.new-stepper-smart-info-wallet .new-stepper-smart-info-wallet__item:last-child {
  margin-right: 0;
}
.new-stepper-smart-info-wallet_underline {
  border-bottom: 1px dashed #bfbfc3;
}
@media (min-width: 768px) {
  .new-stepper-smart-info-wallet {
    flex-direction: row;
    justify-content: center;
    font-size: 12px;
    border-top: none;
  }
  .new-stepper-smart-info-wallet__item {
    margin-right: 16px;
  }
}
.new-stepper-subscription {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 30px;
}
.new-stepper-subscription__content {
  background-color: #fff;
  box-shadow: 0 2.4px 20px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
  padding: 0 16px 16px;
}
.new-stepper-subscription__left {
  text-align: center;
}
.new-stepper-subscription__left img {
  margin-top: -30px;
}
html[dir="rtl"] .new-stepper-subscription__left img {
  transform: scaleX(-1);
}
.new-stepper-subscription__agreement {
  display: block;
  margin-top: 7px;
}
.new-stepper-subscription__button {
  margin-top: 16px;
}
.new-stepper-subscription__button .new-stepper-button {
  padding: 0 16px;
}
.subscription-info {
  margin: 59px 0 76px 0;
}
.subscription-info.subscription-info_with-button {
  margin: 59px 0 57px 0;
}
.subscription-info p {
  margin: 0;
  padding: 0;
}
.subscription-info__header {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #2b2b37;
  text-align: center;
}
.subscription-info__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  margin-top: 4px;
  text-align: center;
}
.new-stepper-subscription__field .new-stepper-field__label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
}
.new-stepper-subscription__agreement .new-stepper-checkbox__label {
  color: #2b2b36;
}
@media screen and (min-width: 768px) {
  .new-stepper-subscription {
    padding-top: 0;
  }
  .new-stepper-subscription__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 70px;
  }
  .new-stepper-subscription__left {
    padding-inline-end: 32px;
    flex-shrink: 0;
    width: 112px;
  }
  .new-stepper-subscription__left img {
    margin-top: 0;
    width: 80px;
    height: 80px;
  }
  .new-stepper-subscription__right {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 12px 16px;
  }
  .new-stepper-subscription__right.new-stepper-subscription__right_center {
    align-items: center;
  }
  .subscription-info,
  .subscription-info.subscription-info_with-button {
    margin: 0;
    max-width: 460px;
  }
  .subscription-info__header,
  .subscription-info__text {
    text-align: start;
  }
  .new-stepper-subscription__field {
    flex-grow: 1;
  }
  .new-stepper-subscription__button {
    min-width: 168px;
    margin-top: 0;
  }
  .new-stepper-subscription__agreement {
    order: 3;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.new-stepper-button-swap {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #fff;
  padding: 0;
  box-shadow: 1px 1px 6px rgba(43, 43, 54, 0.15);
}
.new-stepper-button-swap_dark {
  background: #3e3f57;
}
.new-stepper-button-swap_rotate {
  transform: rotate(90deg);
}
.new-stepper-button-lock {
  background: rgba(0, 0, 0, 0);
  outline: none;
  border: none;
  margin: 0;
}
.new-stepper-button-lock_gray-svg:hover svg {
  fill: #808086;
}
.new-stepper-button-lock_green-svg:hover svg {
  fill: #00ce85;
}
.new-stepper-hints {
  padding-inline-start: 16px;
}
.new-stepper-hints__wrapper-border {
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid #dce2ea;
  padding: 10px 0;
}
.new-stepper-hints__item {
  position: relative;
  font-size: 12px;
  color: #808086;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-inline-start: 16px;
  padding-inline-end: 0;
  display: flex;
}
.new-stepper-hints__item:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  left: -4px;
  top: 9px;
  border-radius: 50%;
  background: #dce2ea;
}
html[dir="rtl"] .new-stepper-hints__item:before {
  left: unset;
  right: -4px;
}
.new-stepper-hints__label {
  border: none;
  padding: 0;
  outline: none;
  background: none;
  border-bottom: 1px dashed #00b67a;
}
.new-stepper-hints__label_no-border {
  border-bottom: none;
}
.new-stepper-hints__button_green {
  color: #00c26f;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  margin-inline-start: 8px;
  letter-spacing: 0.4px;
  background: none;
  outline: none;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
}
.new-stepper-hints__button_green img {
  margin-inline-end: 4px;
}
.new-stepper-hints__rate {
  display: flex;
  align-items: center;
  margin-inline-start: 4px;
}
.new-stepper-hints__fix-rate-timer {
  color: #808086;
}
.new-stepper-hints_dark .new-stepper-hints__wrapper-border {
  border-inline-start: 1px solid #3e3f57;
}
.new-stepper-hints_dark .new-stepper-hints__item {
  color: #fff;
}
.new-stepper-hints_dark .new-stepper-hints__item:before {
  background: #3e3f57;
}
.new-stepper-hints_loading {
  opacity: 0.3;
}
.trade-top-up__tooltip {
  border-radius: 4px;
  border: 1px solid #dce2ea;
  background: #fff;
  padding: 8px 16px;
  color: #a4a3aa;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.043px;
}
.new-stepper-hints__rate-tooltip .simple-tooltip {
  position: absolute;
  width: 164px;
}
.text-with-tooltip.new-stepper-hints__rate-tooltip {
  margin-inline-start: 6px;
}
@media (min-width: 768px) {
  .new-stepper-hints__item {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-inline-start: 16px;
    padding-inline-end: 0;
  }
  .new-stepper-hints__item:before {
    top: 11px;
  }
  .new-stepper-hints__button_green {
    font-size: 14px;
    line-height: 17px;
  }
}
.rate__loading_first {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.rate__loading_first::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 110px;
  left: -50px;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    #e0e0e0;
  background-blend-mode: lighten;
  will-change: transform;
  animation: skeleton 1.8s linear infinite alternate;
}
@keyframes skeleton {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}
.new-stepper-hints-cashback {
  padding-inline-start: 16px;
}
.new-stepper-hints-cashback__wrapper {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.new-stepper-hints-cashback__item {
  display: flex;
  position: relative;
  font-size: 12px;
  color: #808086;
  padding-top: 2px;
  padding-inline-end: 0;
  padding-bottom: 2px;
  padding-inline-start: 16px;
  z-index: 10;
}
.new-stepper-hints-cashback__promo {
  display: flex;
  font-size: 9px;
  line-height: 11px;
  color: #fff;
  margin: 0;
  padding: 3px 4px;
  background-color: #fc8b00;
  max-width: 90px;
  border-radius: 2px;
  margin-left: 4px;
  text-transform: uppercase;
}
.new-stepper-hints-cashback__content-link {
  display: inline-block;
  background: none;
  border: none;
  color: #00c26f;
  padding: 0 4px;
}
.new-stepper-hints-cashback__promo-code-warning {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.new-stepper-hints-cashback__promo-code {
  color: #2b2b36;
}
.new-stepper-hints-cashback__promo-code-icon {
  width: 16px;
  height: 16px;
}
.new-stepper-hints-cashback__promo .dashboard-profile-stats-tooltip {
  text-transform: none;
}
.new-stepper-hints-cashback__promo:hover {
  cursor: pointer;
}
.new-stepper-hints-cashback__promo-tooltip {
  background-image: url(1f4337fa9c1d6b929892.svg);
  display: block;
  width: 12px;
  margin-left: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  position: relative;
}
.new-stepper-hints-cashback__promo-tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip {
  top: 25px;
}
.new-stepper-hints-cashback__promo:after {
  content: "";
  display: block;
  width: 20%;
  height: 150%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 10%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 90%
  );
  z-index: 1;
  transform: rotate(30deg);
  position: absolute;
  top: -5px;
  animation: slideBlink 2s ease-in-out infinite;
}
@keyframes slideBlink {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.new-stepper-hints-cashback__promo-tooltip .dashboard-profile-stats-tooltip {
  right: 0;
}
.new-stepper-hints-cashback__promo-tooltip
  .dashboard-profile-stats-tooltip__element {
  z-index: 1000;
}
.new-stepper-hints-cashback__value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.new-stepper-hints-cashback__item:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  left: -4px;
  top: 9px;
  border-radius: 50%;
  background: #dce2ea;
}
html[dir="rtl"] .new-stepper-hints-cashback__item:before {
  left: unset;
  right: -4px;
}
.new-stepper-hints-cashback__item:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  left: -1px;
  top: -10px;
  background: #dce2ea;
}
html[dir="rtl"] .new-stepper-hints-cashback__item:after {
  left: unset;
  right: -1px;
}
.new-stepper-hints-cashback_loading {
  opacity: 0.3;
}
.new-stepper-hints-cashback__value.new-stepper-hints-cashback__value_colored-january {
  margin-left: 4px;
  color: #8a72f2;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}
.new-stepper-hints-cashback__value:has(.new-stepper-hints-cashback__value-promo) {
  display: flex;
  white-space: nowrap;
}
.new-stepper-hints-cashback__value-promo {
  display: flex;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  background: linear-gradient(
    91.59deg,
    #4ea1f5 -31.06%,
    #5c95f4 -5.59%,
    #8278f2 42.73%,
    #8e6ff2 56.35%,
    #8a80e8 65.03%,
    #81add1 82.31%,
    #76eab1 102.81%
  );
  justify-content: center;
  margin-left: 4px;
}
.new-stepper-hints-cashback__value-promo-text {
  margin: 0;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  align-self: center;
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
}
.new-stepper-hints-cashback__value-promo-span {
  display: none;
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% -20%;
  }
}
.new-stepper-hints-cashback__promo-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 100%;
  color: #fff;
  margin: 0;
  opacity: 1;
}
.new-stepper-hints-cashback__promo-arrow {
  margin-left: 4px;
  height: 6px;
  width: 6px;
  border: solid #fff;
  transform: rotate(45deg);
  border-width: 1.5px 1.5px 0 0;
}
@media screen and (min-width: 768px) {
  .new-stepper-hints-cashback__value-promo-tooltip-image {
    vertical-align: text-bottom;
    padding-right: 8px;
  }
  .new-stepper-hints-cashback__value-promo-span {
    background-image: url(8f6ae0ad5e9b290a0663.svg);
    display: block;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
    cursor: pointer;
    position: relative;
    align-self: center;
    margin-top: 0;
  }
  .new-stepper-hints-cashback__value-promo-span:hover
    .new-stepper-hints-cashback__value-promo-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 25px;
    left: -75px;
  }
  .new-stepper-hints-cashback__value-promo-span
    .new-stepper-hints-cashback__value-promo-tooltip {
    position: absolute;
    bottom: 30px;
    left: -84px;
    z-index: 1;
    width: 196px;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.0736842px;
    color: #2b2b36;
    padding: 6px 4px 8px;
    visibility: hidden;
    opacity: 0;
    transition: opacity, top, ease 0.3s;
  }
  .new-stepper-hints-cashback__value-promo-tooltip:before {
    width: 8px;
    height: 8px;
    border-bottom-left-radius: 2px;
  }
}
.cashback__value_loading {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.cashback__value_loading::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 110px;
  left: -50px;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    #e0e0e0;
  background-blend-mode: lighten;
  will-change: transform;
  animation: skeleton 1.8s linear infinite alternate;
}
@keyframes skeleton {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}
.new-stepper-deposit-fio__title {
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  margin-bottom: 4px;
}
.new-stepper-deposit-fio__icon {
  display: none;
}
.new-stepper-deposit-fio__button {
  height: 50px;
  flex-direction: row-reverse;
  background-color: #fff;
  border: 1px solid #dce2ea;
  color: #2b2b37;
  font-weight: 500;
  margin-top: 24px;
}
.new-stepper-deposit-fio__button:hover {
  background-color: #fff;
}
.new-stepper-fio-request-icon {
  display: block;
  width: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .new-stepper-deposit-fio__title {
    margin-bottom: 12px;
  }
  .new-stepper-deposit-fio__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .new-stepper-deposit-fio__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
  }
  .new-stepper-deposit-fio__icon svg {
    display: block;
  }
  .new-stepper-deposit-fio__field {
    flex-grow: 1;
    margin-left: 8px;
  }
  .new-stepper-deposit-fio__button {
    max-width: 178px;
    color: #fff;
    background-color: #6eafdf;
    border: none;
    margin-top: 0;
    margin-left: 12px;
  }
  .new-stepper-deposit-fio__button:hover {
    background-color: #8bbfe5;
  }
  .new-stepper-fio-request-icon {
    display: none;
  }
}
.stepper-browser-wallet-deposit__title {
  color: #808086;
  font-size: 14px;
  line-height: 140%;
}
.stepper-browser-wallet-deposit__body {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.stepper-wallet-connect-deposit__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #9696a5;
}
.stepper-browser-wallet-deposit__body:first-child {
  margin-top: 0;
}
.stepper-browser-wallet-deposit__icon {
  max-width: 48px;
  width: 48px;
  height: auto;
}
.stepper-browser-wallet-deposit__icon_mobile {
  position: absolute;
  left: 8px;
  top: calc(50% - 12px);
}
.stepper-browser-wallet-deposit__btn-wrap {
  flex-grow: 1;
  position: relative;
  margin-left: 12px;
  display: flex;
}
.stepper-browser-wallet-deposit__btn-wrap_mobile {
  flex-direction: column;
}
.stepper-browser-wallet-deposit__btn-wrap:first-child {
  margin-left: 0;
}
.stepper-browser-wallet-deposit__button {
  height: 48px;
  background: #ff9b50;
  border-radius: 6px;
  border: 1px solid #ff9b50;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 8px 24px;
  outline: 0;
  position: relative;
  transition: background 0.3s;
}
.stepper-browser-wallet-deposit__button-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  line-height: 20px;
}
.stepper-browser-wallet-deposit__error-msg {
  background: #fdf4d8;
  border-radius: 6px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #5d5a60;
  padding: 9px 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 1;
  transform: translateY(2px);
}
.stepper-browser-wallet-deposit__spinner {
  margin-right: 8px;
}
.stepper-browser-wallet-deposit__button-label-enter-active,
.stepper-browser-wallet-deposit__button-label-enter-done,
.stepper-browser-wallet-deposit__button-label-exit {
  opacity: 1;
}
.stepper-browser-wallet-deposit__button-label-enter,
.stepper-browser-wallet-deposit__button-label-exit-active {
  opacity: 0;
}
.stepper-browser-wallet-deposit__button-label-enter-active,
.stepper-browser-wallet-deposit__button-label-enter-done,
.stepper-browser-wallet-deposit__button-label-exit-active {
  transition: opacity 0.3s;
}
.stepper-browser-wallet-deposit__error-enter-active,
.stepper-browser-wallet-deposit__error-enter-done,
.stepper-browser-wallet-deposit__error-exit {
  opacity: 1;
  transform: translateY(2px);
}
.stepper-browser-wallet-deposit__error-enter,
.stepper-browser-wallet-deposit__error-exit-active {
  opacity: 0;
  transform: translateY(20px);
}
.stepper-browser-wallet-deposit__error-enter-active,
.stepper-browser-wallet-deposit__error-enter-done,
.stepper-browser-wallet-deposit__error-exit-active {
  transition: transform 0.3s, opacity 0.3s;
}
.stepper-browser-wallet-deposit__disconnect-btn {
  padding: 13px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.33px;
  color: #3b99fc;
  background: #fff;
  border: 1px solid #3b99fc;
  border-radius: 6px;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.stepper-browser-wallet-deposit__disconnect-btn_mobile {
  border: none;
  margin-left: 0;
  max-width: initial;
  margin-top: 8px;
}
.stepper-metamask-deposit__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
}
@media (hover: hover) {
  .stepper-browser-wallet-deposit__button:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 375px) {
  .stepper-browser-wallet-deposit__button-label {
    padding: 8px;
  }
}
@media screen and (min-width: 768px) {
  .stepper-browser-wallet-deposit__disconnect-btn {
    max-width: 132px;
    margin-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .stepper-browser-wallet-deposit__body {
    margin-top: 12px;
  }
}
.stepper-browser-wallet-deposit_metamask {
  background: #ff9b50;
  border: 1px solid #dce2ea;
}
.stepper-browser-wallet-deposit_opera {
  background: #982a36;
  border: 1px solid #dce2ea;
}
.stepper-browser-wallet-deposit_brave {
  background: #f1562b;
  border: 1px solid #dce2ea;
}
.stepper-browser-wallet-deposit_kaikas {
  background: #71766c;
  border: 1px solid #71766c;
}
.stepper-browser-wallet-deposit_tron {
  background: #2d5dc6;
  border: 1px solid #dce2ea;
}
.stepper-browser-wallet-deposit_wallet-connect {
  background: #3b99fc;
  border: 1px solid #dce2ea;
}
.stepper-browser-wallet-deposit__btn-wrap_wallet-connect {
  flex-direction: column;
  gap: 8px;
}
.stepper-browser-wallet-deposit__body_wallet-connect {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .stepper-browser-wallet-deposit__body_wallet-connect {
    margin-top: 12px;
  }
  .stepper-browser-wallet-deposit__btn-wrap_wallet-connect {
    flex-direction: row;
    gap: 0;
  }
}
.new-stepper-telegram-info {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 30px;
}
.new-stepper-telegram-info__content {
  background-color: #fff;
  box-shadow: 0 2.4px 20px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
  padding: 0 16px 16px;
}
.new-stepper-telegram-info__left {
  text-align: center;
}
.new-stepper-telegram-info__left svg {
  margin-top: -30px;
}
html[dir="rtl"] .new-stepper-telegram-info__left svg {
  transform: scaleX(-1);
}
.new-stepper-telegram-info__right {
  color: #2b2b36;
  font-size: 15px;
  line-height: 18px;
}
.new-stepper-telegram-info__right p {
  font-size: inherit;
  line-height: inherit;
  opacity: 1;
  margin: 11px 0 0 0;
}
.new-stepper-telegram-info__right p:first-of-type {
  margin-top: 0;
}
.new-stepper-telegram-info__right a {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  color: #2b2b36;
  border-bottom: 1px solid #2b2b36;
  transition: border ease 0.3s;
}
.new-stepper-telegram-info__right a:hover {
  border-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 768px) {
  .new-stepper-telegram-info {
    padding-top: 0;
  }
  .new-stepper-telegram-info__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 70px;
  }
  .new-stepper-telegram-info__left {
    width: 100px;
    flex-shrink: 0;
    text-align: start;
  }
  .new-stepper-telegram-info__left svg {
    margin-top: 0;
  }
  .new-stepper-telegram-info__right {
    flex-grow: 1;
  }
}
.new-stepper-copy-button {
  width: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-stepper-copy-button:focus {
  outline: 0;
}
.new-stepper-copy-button__copy-icon {
  width: 18px;
  height: 18px;
  display: block;
  cursor: pointer;
  animation-name: new-stepper-copy-button-fade;
  animation-duration: 0.3s;
}
.new-stepper-copy-button__check-success-icon {
  width: 18px;
  height: 18px;
  display: block;
  animation-name: new-stepper-copy-button-rotate;
  animation-duration: 2s;
}
@keyframes new-stepper-copy-button-rotate {
  0% {
    transform: rotate(-45deg);
  }
  30% {
    transform: rotate(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes new-stepper-copy-button-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.new-stepper-copy-text {
  position: relative;
  display: inline-block;
  vertical-align: top;
  word-break: break-all;
}
.new-stepper-copy-text [role="button"] {
  outline: 0;
}
.new-stepper-copy-text__button {
  display: inline-flex;
  margin-left: 4px;
  top: 4px;
  position: relative;
}
.new-stepper-simple-tooltip {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4px;
  background-color: #414453;
  border-radius: 10px;
  padding: 8px 5px;
  animation-name: new-stepper-simple-tooltip-fade;
  animation-duration: 0.3s;
}
.new-stepper-simple-tooltip:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #414453;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.new-stepper-simple-tooltip_theme-light {
  color: #414453;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(65, 68, 83, 0.4);
}
.new-stepper-simple-tooltip_theme-light:before {
  background-color: #fff;
  box-shadow: -3px 3px 3px 0 rgba(65, 68, 83, 0.2);
}
@keyframes new-stepper-simple-tooltip-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.new-stepper-section {
  position: relative;
  z-index: 1;
}
.new-stepper-section__header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}
.new-stepper-section__content {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2.4px 30px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
  padding: 24px 16px 16px;
}
.new-stepper-section__icon {
  width: 93px;
  height: 93px;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
}
.new-stepper-section__icon svg {
  max-width: 100%;
  max-height: 100%;
}
.new-stepper-section__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #2b2b36;
  text-align: center;
  letter-spacing: 0.4px;
  margin: 0;
}
.new-stepper-section__description {
  font-size: 14px;
  line-height: 22px;
  color: #2b2b36;
  text-align: center;
  letter-spacing: 0.6px;
  margin-top: 8px;
}
.new-stepper-section_with-icon .new-stepper-section__content {
  position: relative;
  padding-top: 93px;
  padding-bottom: 60px;
}
.new-stepper-section_error .new-stepper-section__content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.new-stepper-section__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  width: 100%;
}
.new-stepper-section__loading-text {
  font-size: 14px;
  line-height: 22px;
  color: #2b2b36;
  text-align: center;
  letter-spacing: 0.6px;
}
.new-stepper-failed__rate .new-stepper-section__description {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .new-stepper-section__content {
    padding: 28px 20px 40px;
  }
  .new-stepper-section__header {
    justify-content: flex-end;
    margin-bottom: 11px;
  }
  .new-stepper-section__icon {
    width: 120px;
    height: 120px;
    top: -25px;
  }
  .new-stepper-section__title {
    font-size: 20px;
    line-height: 25px;
  }
  .new-stepper-section__description {
    font-size: 16px;
    margin-top: 20px;
  }
  .new-stepper-section_with-icon {
    padding-top: 35px;
  }
  .new-stepper-section_with-icon .new-stepper-section__content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .new-stepper-section_with-icon .new-stepper-section__header {
    max-width: 44%;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 2;
    margin-bottom: 0;
  }
  .new-stepper-failed__rate .new-stepper-section__description {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.new-stepper-failed {
  margin-bottom: 90px;
}
.new-stepper-failed__rate-content {
  max-width: 560px;
  margin: 0 auto;
}
.new-stepper-failed__radio-list {
  margin-top: 17px;
}
.new-stepper-failed__radio-list .new-stepper-radio {
  margin-top: 12px;
}
.new-stepper-failed__radio-list .new-stepper-radio:first-child {
  margin-top: 0;
}
.new-stepper-failed__rate-button {
  max-width: 195px;
  margin: 40px auto 0;
}
.new-stepper-failed__section-form {
  margin-top: 20px;
}
.new-stepper-failed__section-form .new-stepper-section__description {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.new-stepper-failed__child-exchanges {
  margin-top: 24px;
  display: block;
}
.new-stepper-failed__form {
  max-width: 500px;
  margin: 24px auto 0;
}
.new-stepper-failed__transaction-details {
  margin-top: 20px;
}
.new-stepper-failed__currency-to-currency {
  margin-top: 20px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #f4f4f5;
}
.new-stepper-failed__currency-to-currency
  .new-stepper-currency-to-currency-item {
  padding-left: 0;
  padding-right: 0;
}
.new-stepper-failed__wallet-card {
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
}
.new-stepper-failed__wallet-card .new-stepper-wallet-card-item:nth-child(2) {
  margin-bottom: 0;
}
.new-stepper-failed__wallet-card .new-stepper-wallet-items-in-line {
  display: none;
}
.new-stepper-failed__radio-text_green {
  color: #00c26f;
}
@media screen and (min-width: 768px) {
  .new-stepper-failed__radio-list .new-stepper-radio {
    margin-top: 9px;
  }
  .new-stepper-failed__form .new-stepper-button {
    max-width: 258px;
  }
  .new-stepper-failed__currency-to-currency {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
  }
  .new-stepper-failed__wallet-card {
    max-width: 770px;
    border: 1px solid #f0f0f0;
    margin-top: 13px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .new-stepper-failed {
    max-width: 848px;
    margin: 0 auto 90px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .new-stepper-failed__child-exchanges {
    display: none;
  }
  .new-stepper-failed__child-exchanges-failed {
    display: block;
  }
}
.new-stepper-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.new-stepper-radio__input {
  display: none;
}
.new-stepper-radio__input:checked + .new-stepper-radio__box:before {
  opacity: 1;
}
.new-stepper-radio__box {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: #fafafc;
  border-radius: 50%;
  border: 1px solid #dce2ea;
}
.new-stepper-radio_hidden .new-stepper-radio__text,
.new-stepper-radio_hidden .new-stepper-radio__text span {
  color: #e3e3e3;
  cursor: default;
}
.new-stepper-radio__box:before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #fff;
  border: 5px solid #00c26f;
  border-radius: 50%;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.new-stepper-radio__text {
  font-size: 12px;
  line-height: 15px;
  color: #808086;
  margin-left: 8px;
}
.new-stepper-radio__text a {
  font-size: 12px;
  border-bottom: 1px dotted #808086;
}
@media screen and (min-width: 768px) {
  .new-stepper-radio__text {
    font-size: 14px;
    line-height: 17px;
  }
  .new-stepper-radio__text a {
    font-size: 14px;
  }
}
.new-stepper-small-address__small {
  border-bottom: 1px dashed #808086;
}
@media screen and (min-width: 768px) {
  .new-stepper-small-address {
    word-break: break-all;
  }
}
.new-stepper-textarea {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  transition: border ease 0.3s;
}
.new-stepper-textarea_border-green {
  border-color: #00c26f;
}
.new-stepper-textarea_has-error {
  border-color: #fcedba;
  border-radius: 6px 6px 0 0;
}
.new-stepper-textarea__field {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 130px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 20px 16px 6px;
  margin: 0;
  resize: none;
}
.new-stepper-textarea__field:focus {
  outline: 0;
}
.new-stepper-textarea__field:not(:-moz-placeholder-shown)
  + .new-stepper-textarea__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-textarea__field:focus + .new-stepper-textarea__placeholder,
.new-stepper-textarea__field:not(:placeholder-shown)
  + .new-stepper-textarea__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-stepper-textarea__field::-moz-placeholder {
  color: #808086;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-textarea__field::placeholder {
  color: #808086;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
}
.new-stepper-textarea__placeholder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  font-weight: 400;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .new-stepper-textarea__placeholder,
  .new-stepper-textarea__field {
    font-size: 16px;
    line-height: 22px;
  }
}
.new-stepper-form {
  position: relative;
  z-index: 0;
}
.new-stepper-form__field {
  margin-top: 15px;
}
.new-stepper-form__field:first-child {
  margin-top: 0;
}
.new-stepper-form__button {
  margin-top: 20px;
}
.new-stepper-form__success {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px;
  box-shadow: 0px 2.41432px 20px rgba(43, 43, 54, 0.07);
  text-align: center;
}
.new-stepper-form__success-icon {
  width: 38px;
  height: 38px;
}
.new-stepper-form__success-title {
  color: #00c26f;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.new-stepper-form__success-description {
  margin: 0;
  font-size: 14px;
  color: #9c9ca7;
}
.new-stepper-form__success-description_email {
  color: #2b2b37;
}
.new-stepper-form__icon-success {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.8);
}
.new-stepper-form__icon-success svg {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .new-stepper-form__success {
    padding: 16px 56px;
  }
  .new-stepper-form__success-icon {
    width: 40px;
    height: 40px;
  }
  .new-stepper-form__button {
    margin-top: 24px;
  }
  .new-stepper-form__icon-success svg {
    width: 60px;
    height: 60px;
  }
}
.new-stepper-support-form__spinner {
  margin-right: 8px;
}
.new-stepper-transaction-id {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 15.23px;
  color: #808086;
  letter-spacing: 0.2px;
}
.new-stepper-transaction-id__number {
  max-width: 180px;
  background-color: #eaeaeb;
  border-radius: 20px;
  margin-inline-start: 4px;
  padding: 4px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.new-stepper-transaction-id__button {
  margin-inline-start: 9px;
}
@media screen and (min-width: 768px) {
  .new-stepper-transaction-id__number {
    max-width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .new-stepper-refunded .new-stepper-transaction-id {
    position: static;
  }
}
@media screen and (min-width: 1200px) {
  .new-stepper-transaction-id {
    position: absolute;
    right: 10px;
    margin-bottom: 16px;
  }
  .exchange-stepper__child-exchanges .new-stepper-transaction-id,
  .transaction-step .new-stepper-transaction-id {
    position: static;
    right: 10px;
  }
  .exchange-stepper__child-exchanges_position-finished
    .new-stepper-transaction-id {
    position: absolute;
  }
  .exchange-stepper__child-exchanges-sub-id {
    position: static;
  }
  .exchange-stepper__child-exchanges-sub-id .new-stepper-transaction-id {
    display: none;
  }
  .new-stepper-failed .new-stepper-transaction-id {
    position: static;
  }
}
.new-stepper-wallet-card-item {
  display: flex;
  flex-direction: column;
}
.new-stepper-wallet-card-item:not(:first-child) {
  margin-top: 12px;
}
.new-stepper-wallet-card-item__title {
  font-size: 12px;
  color: #808086;
}
.new-stepper-wallet-card-item__text {
  font-size: 14px;
  color: #2b2b36;
  word-wrap: break-word;
  word-break: break-word;
}
.new-stepper-wallet-card-item__text:not(:first-child) {
  margin-top: 6px;
}
@media (min-width: 768px) {
  .new-stepper-wallet-card-item__title {
    font-size: 14px;
  }
  .new-stepper-wallet-card-item__text {
    font-size: 16px;
  }
  .new-stepper-wallet-card-item:not(:first-child) {
    margin-top: 16px;
  }
}
.new-stepper-refunded {
  margin-bottom: 100px;
}
.new-stepper-refunded__section_title_green .new-stepper-section__title {
  color: #00c26f;
}
.new-stepper-refunded__content {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
  text-align: center;
}
.new-stepper-refunded__description {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.new-stepper-refunded__hash {
  margin-top: 50px;
}
.new-stepper-refunded__hash-text {
  display: block;
  line-break: anywhere;
  margin-top: 5px;
}
.new-stepper-refunded__child-exchanges {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .new-stepper-refunded__content {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .new-stepper-refunded__child-exchanges {
    display: block;
  }
}
.new-stepper-fiat-to-crypto {
  position: relative;
}
.new-stepper-fiat-to-crypto__from,
.new-stepper-fiat-to-crypto__to {
  border-bottom: 1px solid #f4f4f5;
}
.new-stepper-fiat-to-crypto__arrow {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(90deg);
}
.new-stepper-fiat-to-crypto__arrow svg {
  display: block;
}
@media screen and (min-width: 768px) {
  .new-stepper-fiat-to-crypto {
    display: flex;
  }
  .new-stepper-fiat-to-crypto__from {
    flex-direction: row-reverse;
    border-bottom: 0;
  }
  .new-stepper-fiat-to-crypto__to {
    border-bottom: 0;
  }
  .new-stepper-fiat-to-crypto__arrow {
    width: 1px;
    height: 100%;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 50%;
    background-color: #f4f4f5;
    transform: translate(0) rotate(0);
  }
  .new-stepper-fiat-to-crypto__arrow svg {
    transform: translateX(-50%);
    flex-shrink: 0;
  }
}
.new-stepper-addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 6px;
}
.new-stepper-addresses__item {
  font-size: 14px;
  line-height: 22px;
  color: #bfbfc3;
  margin-left: 8px;
}
.new-stepper-addresses__item:first-child {
  margin-left: 0;
}
.new-stepper-addresses__title {
  margin-right: 4px;
}
.new-stepper-addresses__address span {
  border-color: #bfbfc3;
  cursor: pointer;
}
.new-stepper-fiat__section {
  padding: 24px 14px;
}
.new-stepper-fiat__description {
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
.new-stepper-fiat__dog-icon {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.new-stepper-fiat__dog-icon svg {
  display: block;
}
.new-stepper-fiat__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.new-stepper-fiat__addresses-copy-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: none;
  border: none;
}
@media screen and (min-width: 768px) {
  .new-stepper-fiat__to-currency {
    margin-left: -40px;
    margin-right: -40px;
    border-bottom: 1px solid #f4f4f5;
  }
  .new-stepper-fiat__section {
    box-shadow: 0 2px 20px rgba(43, 43, 54, 0.07);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
  }
  .new-stepper-fiat__description {
    font-size: 16px;
  }
}
.reusable-bnr {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 262px;
  min-height: 360px;
  background-color: #2f3140;
  border-radius: 8px;
  padding: 73px 24px 38px 24px;
  overflow: hidden;
  clip-path: polygon(87.6% 0, 100% 9%, 100% 100%, 0 100%, 0 0);
  cursor: pointer;
}
.reusable-bnr:before {
  content: "";
  width: calc(100% + 25px);
  height: 100%;
  position: absolute;
  top: -15%;
  left: -25px;
  z-index: -1;
  background-image: linear-gradient(165.52deg, #515466 19.13%, #414352 84.3%);
  border-bottom-right-radius: 190px;
  transform: skewX(-5deg);
}
html[dir="rtl"] .reusable-bnr:before {
  left: unset;
  right: -25px;
}
.reusable-bnr:hover .reusable-bnr__button:after {
  opacity: 1;
}
.reusable-bnr:hover ul li > svg {
  transform: rotate(-15deg);
}
.reusable-bnr:hover .reusable-bnr__title-icon {
  transform: rotate(10deg);
}
.reusable-bnr__logo {
  position: absolute;
  top: 0;
  left: 24px;
}
.reusable-bnr__square {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00c26f;
  border-bottom-left-radius: 8px;
}
.reusable-bnr__square:before {
  content: "";
  width: 60px;
  height: 100%;
  position: absolute;
  top: -8px;
  left: 0;
  background-color: #f6f4f8;
  transform: rotate(45deg);
}
.reusable-bnr__title {
  min-height: 85px;
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15px;
  padding-inline-end: 17%;
}
.reusable-bnr__title-icon {
  display: inline-block;
  margin-inline-start: 5px;
  transition: transform ease 0.3s;
}
.reusable-bnr__content {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15px;
  margin-top: 15px;
}
.reusable-bnr__content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.reusable-bnr__content ul li {
  position: relative;
  padding-inline-start: 22px;
  margin-top: 4px;
}
.reusable-bnr__content ul li:first-child {
  margin-top: 0;
}
.reusable-bnr__content ul li > svg {
  position: absolute;
  top: 1px;
  left: 0;
  transition: transform ease 0.3s;
}
html[dir="rtl"] .reusable-bnr__content ul li > svg {
  left: unset;
  right: 0;
}
.reusable-bnr__button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  font-weight: 700;
  background-color: #0b9f64;
  border-radius: 4px;
  margin-top: 38px;
  padding-inline-end: 12px;
  padding-inline-start: 16px;
  overflow: hidden;
}
.reusable-bnr__button span {
  display: block;
  position: relative;
  z-index: 2;
}
.reusable-bnr__button svg {
  display: block;
}
html[dir="rtl"] .reusable-bnr__button svg {
  transform: rotate(180deg);
}
.reusable-bnr__button:before {
  content: "";
  width: 88%;
  height: 100%;
  background-image: linear-gradient(
    206.48deg,
    #00c26f -9.76%,
    rgba(0, 194, 111, 0) 93.4%
  );
  position: absolute;
  top: 0;
  left: -30px;
  z-index: 0;
  border-bottom-right-radius: 40px;
  transform: skewX(-45deg);
}
.reusable-bnr__button:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00c26f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.fiat-buttons-swap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column-reverse;
  gap: 2px;
  border: 1px solid #dce2ea;
  background-color: #fff;
  border-radius: 9px;
  padding: 2px;
}
.fiat-buttons-swap button {
  width: 100%;
  height: 21px;
  padding: 0 8px;
}
.fiat-buttons-swap__button {
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
  color: #808086;
  background: rgba(0, 0, 0, 0);
  border-radius: 7px;
  transition: background, color, ease 0.1s;
  box-shadow: none;
}
.fiat-buttons-swap__button_active {
  color: #00c26f;
  background: #f7f7f9;
  pointer-events: none;
}
.fiat-buttons-swap__button svg {
  width: 5px;
  height: 10px;
  transition: fill ease 0.1s;
}
.fiat-buttons-swap__button_active svg {
  fill: #00c26f;
}
.fiat-buttons-swap__arrow-sell {
  margin-inline-start: 3px;
}
.fiat-buttons-swap__arrow-buy {
  transform: rotate(180deg);
  margin-inline-start: 3px;
}
.fiat-buttons-swap_dark {
  border-color: #30303e;
  background-color: #30303e;
}
.fiat-buttons-swap_dark .fiat-buttons-swap__button_active {
  background: #3e3f57;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12), 0 3px 1px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 375px) {
  .fiat-buttons-swap {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .fiat-buttons-swap button {
    width: 100%;
    height: 28px;
  }
  .fiat-buttons-swap__button {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
  }
  .fiat-buttons-swap__button svg {
    width: 8px;
    height: 12px;
  }
}
.new-stepper-promo-code__field_new-theme
  .new-stepper-field__wrapper-input_border-green {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.new-stepper-promo-code__field-success {
  top: -1px;
}
.new-stepper-promo-code-data {
  position: relative;
  z-index: 1;
}
.new-stepper-promo-code-data__content {
  width: 100%;
  background-color: #e6f9f1;
  border: 1px solid #00c26f;
  border-radius: 0 0 8px 8px;
  padding: 12px 16px;
}
.new-stepper-promo-code-data__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  color: #95959b;
  margin-top: 8px;
}
.new-stepper-promo-code-data__item:first-child {
  margin-top: 0;
}
.new-stepper-promo-code-data__item-name {
  width: 120px;
  flex-shrink: 0;
  padding-right: 10px;
}
.new-stepper-promo-code-data__item-text {
  flex-grow: 1;
}
.new-stepper-promo-code-data_absolute .new-stepper-promo-code-data__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation-name: new-stepper-promo-code-data-fade;
  animation-duration: 0.3s;
}
.new-stepper-promo-code-data__warning {
  padding-top: 12px;
  border-top: 1px solid rgba(0, 194, 111, 0.5);
  color: #2b2b37;
  font-size: 12px;
  line-height: 16px;
  margin-top: 16px;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .new-stepper-promo-code-data__item-name {
    width: 130px;
  }
}
@keyframes new-stepper-promo-code-data-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.create-wallet-header {
  font-weight: 500;
  font-size: 22px;
  color: #2b2b36;
  text-align: center;
  margin-bottom: 24px;
}
.create-wallet-body {
  height: 100%;
  overflow-y: auto;
  margin-right: -20px;
  padding-right: 20px;
}
.create-wallet-body::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.create-wallet-body::-webkit-scrollbar {
  width: 3px;
}
.create-wallet-body::-webkit-scrollbar-track {
  background: #e9e7ee;
}
.mb {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .create-wallet-header {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .create-wallet-body {
    margin-right: -55px;
    padding-right: 55px;
  }
}
.new-stepper-time-exceeded {
  max-width: 850px;
  margin: 0 auto 50px auto;
}
.new-stepper-time-exceeded__tx-id-wrap {
  display: flex;
  justify-content: center;
}
.new-stepper-time-exceeded__tx-id {
  margin-bottom: 13px;
  width: 100%;
}
.new-stepper-time-exceeded__section-time-info .new-stepper-section__title,
.new-stepper-time-exceeded__section-form .new-stepper-section__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.44px;
  color: #2b2b36;
  margin: 0 0 10px 0;
}
.new-stepper-time-exceeded__section-time-info .new-stepper-section__description,
.new-stepper-time-exceeded__section-form .new-stepper-section__description {
  max-width: 390px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.3px;
  color: #2b2b36;
  margin: 0 auto 20px auto;
}
.new-stepper-time-exceeded__section-time-info .new-stepper-section__content,
.new-stepper-time-exceeded__section-form .new-stepper-section__content {
  padding: 20px 16px;
}
.section-time-info__clock-image {
  margin: 10px auto;
  display: block;
}
.new-stepper-time-exceeded__section-form {
  margin-top: 20px;
}
.new-stepper-time-exceeded__section-form .new-stepper-section__description {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.new-stepper-time-exceeded__form {
  max-width: 500px;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .new-stepper-time-exceeded {
    margin: 0 auto 103px auto;
  }
  .new-stepper-time-exceeded__tx-id-wrap {
    position: relative;
  }
  .new-stepper-time-exceeded__tx-id {
    margin-bottom: 0;
    right: 0;
    bottom: 9px;
  }
  .section-time-info__clock-image {
    margin: 40px auto 55px auto;
    display: block;
  }
  .new-stepper-time-exceeded__section-time-info .new-stepper-section__content,
  .new-stepper-time-exceeded__section-form .new-stepper-section__content {
    padding: 50px 16px;
  }
  .new-stepper-time-exceeded__section-time-info
    .new-stepper-section__description,
  .new-stepper-time-exceeded__section-form .new-stepper-section__description {
    margin: 0 auto 50px auto;
  }
  .section-time-info__button,
  .new-stepper-time-exceeded__section-form .new-stepper-form__button {
    max-width: 258px;
  }
}
.new-stepper-time-exceeded {
  max-width: 850px;
  margin: 0 auto 24px auto;
}
.new-stepper-time-exceeded__tx-id-wrap {
  display: flex;
  justify-content: center;
}
.new-stepper-time-exceeded__tx-id {
  margin-bottom: 13px;
}
.new-stepper-time-exceeded__section-time-info_expired
  .new-stepper-section__title,
.new-stepper-time-exceeded__section-form_expired .new-stepper-section__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.44px;
  color: #2b2b36;
  margin: 0 0 10px 0;
}
.new-stepper-time-exceeded__section-time-info_expired
  .new-stepper-section__description,
.new-stepper-time-exceeded__section-form_expired
  .new-stepper-section__description {
  max-width: 390px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.3px;
  color: #2b2b36;
  margin: 0 auto 20px auto;
}
.new-stepper-time-exceeded__section-time-info_expired
  .new-stepper-section__content,
.new-stepper-time-exceeded__section-form_expired .new-stepper-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
}
.section-time-info__clock-image {
  margin: 10px auto;
  display: block;
  width: 176px;
  height: 168px;
}
.new-stepper-time-exceeded__section-form_expired {
  margin-top: 20px;
}
.new-stepper-time-exceeded__section-form_expired
  .new-stepper-section__description {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.new-stepper-time-exceeded__form {
  max-width: 500px;
  margin: 24px auto 0;
}
.new-stepper-time-exceeded__child-exchanges {
  margin-top: 20px;
}
.section-time-info__button.section-time-info__button_pro {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #00c26f;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 5px;
  transition: background-color 0.3s ease;
}
.section-time-info__button svg {
  display: none;
}
.section-time-info__button.section-time-info__button_pro:hover {
  background-color: #00c87a;
}
.section-time-info__button.section-time-info__button_pro p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .new-stepper-time-exceeded {
    margin: 0 auto 103px auto;
  }
  .new-stepper-time-exceeded__tx-id-wrap {
    position: relative;
  }
  .new-stepper-time-exceeded__tx-id {
    margin-bottom: 0;
    right: 0;
    bottom: 9px;
  }
  .section-time-info__clock-image {
    margin: 40px auto 55px auto;
    display: block;
  }
  .new-stepper-time-exceeded__section-time-info_expired
    .new-stepper-section__content,
  .new-stepper-time-exceeded__section-form_expired
    .new-stepper-section__content {
    padding: 50px 16px;
  }
  .new-stepper-time-exceeded__section-time-info_expired
    .new-stepper-section__description,
  .new-stepper-time-exceeded__section-form_expired
    .new-stepper-section__description {
    margin: 0 auto 50px auto;
  }
  .section-time-info__button,
  .new-stepper-time-exceeded__section-form_expired .new-stepper-form__button {
    max-width: 258px;
  }
}
@media screen and (min-width: 1200px) {
  .new-stepper-time-exceeded__child-exchanges {
    display: none;
  }
}
.new-stepper-extensions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 28px;
}
.new-stepper-extensions__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #a4a3aa;
}
.new-stepper-extensions__item {
  margin-left: 8px;
}
.new-stepper-extensions__item .simple-tooltip.extension-item__tooltip {
  left: -160px;
}
.new-stepper-extensions__item .simple-tooltip.extension-item__tooltip:before {
  margin-left: auto;
  margin-right: 16px;
}
.new-stepper-extensions__item:first-child {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .new-stepper-extensions__item .simple-tooltip.extension-item__tooltip {
    left: -84px;
  }
  .new-stepper-extensions__item .simple-tooltip.extension-item__tooltip:before {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .new-stepper-extensions__items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.new-stepper-field-with-balance {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  padding-top: 12px;
}
.new-stepper-field-with-balance__field {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f9;
  border-radius: 6px;
  padding: 6px 8px;
}
.new-stepper-field-with-balance__currency {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.new-stepper-field-with-balance__currency-amount {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}
.new-stepper-field-with-balance__currency-icon {
  width: 20px;
  height: 20px;
}
.new-stepper-field-with-balance__currency-text {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  text-align: left;
  color: #a4a3aa;
  font-size: 12px;
  line-height: 18px;
}
.new-stepper-field-with-balance__amount {
  display: block;
  font-weight: 400;
  text-align: left;
  color: #2b2b36;
  text-wrap: nowrap;
  font-size: 14px;
  line-height: 16px;
}
.new-stepper-field-with-balance__advantages {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.new-stepper-field-with-balance__advantages-content {
  position: relative;
}
.new-stepper-field-with-balance__advantages-text {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #a4a3aa;
}
.new-stepper-field-with-balance__advantages-loader {
  width: 20px;
  height: 20px;
}
.new-stepper-field-with-balance__advantages-amount {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #2b2b37;
}
@media screen and (min-width: 431px) {
  .new-stepper-field-with-balance__currency-text {
    align-items: center;
    font-size: 16px;
    line-height: 20px;
  }
  .new-stepper-field-with-balance__currency-amount {
    flex-direction: row;
  }
  .new-stepper-field-with-balance__amount {
    font-size: 16px;
    line-height: 20px;
    margin-left: auto;
  }
  html[dir="rtl"] .new-stepper-field-with-balance__amount {
    margin-left: 0;
    margin-right: auto;
  }
  .new-stepper-field-with-balance__field {
    padding: 16px;
  }
  .new-stepper-field-with-balance__advantages {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .new-stepper-field-with-balance__advantages-text {
    display: block;
    max-width: 64%;
  }
}
.slick-slider-next-button {
  position: relative;
  display: block;
  width: 50px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  padding: 0;
}
.slick-slider-prev-button {
  position: relative;
  display: block;
  width: 50px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  padding: 0;
}
.slick-slider-custom {
  position: relative;
}
.slick-slider-custom .slick-list {
  padding-bottom: 6px;
}
.slick-slider-custom .slick-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.slick-slider-custom .slick-next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.slick-slider-custom__dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 16px 0;
}
.slick-slider-custom__dots_lines {
  justify-content: stretch;
  gap: 4px;
  flex-wrap: nowrap;
}
.slick-slider-custom__dots li {
  display: inline-block;
  vertical-align: middle;
}
.slick-slider-custom__dots_lines li {
  width: 100%;
}
.slick-slider-custom__dots li button {
  display: block;
  width: 8px;
  height: 8px;
  font-size: 0;
  line-height: 0;
  background-color: #3d3d58;
  border-radius: 50%;
  border: none;
  text-indent: -99999px;
  margin: 2px;
  padding: 0;
}
.slick-slider-custom__dots_lines li button {
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background-color: #e5e5e9;
}
.slick-slider-custom__dots li.slick-active button {
  background-color: #00c26f;
}
.slick-slider-custom__dots_lines li.slick-active button {
  background-color: #0dc171;
}
.payout-options-card {
  border: 1px solid #dce2ea;
  border-radius: 4px;
  min-height: 164px;
}
.payout-options-card__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-align: left;
  margin: 0;
  padding: 10px 12px;
  background-color: #f7f7f9;
  color: #2b2b36;
}
.payout-options-card__content {
  height: 100%;
}
.new-stepper-payout-option-switcher {
  margin-top: 28px;
}
.new-stepper-payout-option-switcher__wrapper {
  display: block;
  width: 100%;
  padding: 16px;
  padding-top: 12px;
}
.new-stepper-payout-option-switcher .new-stepper-recipient-field {
  margin: 0;
}
.new-stepper-payout-option-switcher .new-stepper-field__label {
  display: none;
}
.new-stepper-payout-option-switcher .radio-buttons {
  margin-bottom: 0;
  padding: 0;
  border: 1px solid #dce2ea;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  height: 32px;
  overflow: hidden;
}
.new-stepper-payout-option-switcher .radio-buttons__item {
  width: 50%;
  background: #fff;
  color: #bfbfc3;
  border-radius: 0;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 400;
}
.new-stepper-payout-option-switcher .radio-buttons__item:nth-child(1) {
  border-right: 1px solid #dce2ea;
}
.new-stepper-payout-option-switcher .radio-buttons__item:hover {
  color: #2b2b36;
}
.new-stepper-payout-option-switcher .tabs__item {
  min-height: 110px;
  border: 1px solid #dce2ea;
  border-radius: 0 0 4px 4px;
}
.new-stepper-payout-option-switcher__wrapper .new-stepper-field__header {
  display: none;
}
.new-stepper-payout-option-switcher .radio-buttons__item_active {
  background: #f7f7f9;
  color: #35354c;
  font-weight: 400;
}
.new-stepper-payout-option-switcher .slick-slider-custom__dots li button {
  color: #dce2ea;
}
.new-stepper-payout-option-switcher .slick-slider-custom__dots {
  padding: 0;
}
.new-stepper-payout-option-switcher .slick-slider-custom .slick-list {
  padding-bottom: 8px;
}
.extension-item {
  position: relative;
  width: 28px;
  height: 28px;
}
.extension-item__image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 1px 1px 6px rgba(43, 43, 54, 0.15);
  border-radius: 6px;
  cursor: pointer;
}
.extension-item__image:active {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.12);
}
.extension-item__image:hover + .extension-item__tooltip {
  visibility: visible;
  opacity: 1;
  bottom: 37px;
}
.extension-item .extension-item__tooltip {
  position: absolute;
  bottom: 30px;
  left: -84px;
  z-index: 1;
  width: 196px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.0736842px;
  color: #2b2b36;
  padding: 6px 4px 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity, top, ease 0.3s;
}
.extension-item__tooltip:before {
  width: 8px;
  height: 8px;
  border-bottom-left-radius: 2px;
}
.input-dropdown {
  display: none;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(100% - 4px);
  width: calc(100% + 2px);
  right: -1px;
  max-height: 228px;
  overflow-y: auto;
  z-index: 1000;
  border: 1px solid #dce2ea;
  padding-bottom: 16px;
  border-radius: 0 0 4px 4px;
}
.input-dropdown_opened {
  display: block;
  overflow-wrap: break-word;
  word-break: break-all;
}
.input-dropdown::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.input-dropdown::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.input-dropdown__item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin: 0;
  padding: 12px 0 12px 16px;
}
.input-dropdown__item:not(.fixed-item):hover {
  background-color: #fafafd;
  cursor: pointer;
}
.input-dropdown__item:focus {
  background-color: #e6f9f1;
}
.input-dropdown__item_chosen {
  background-color: #e6f9f1;
}
.input-dropdown__item_fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f6f4f8;
}
.input-dropdown__item-extraId-span {
  color: #9696a5;
}
.input-dropdown__item .input-dropdown__item-extraId {
  padding: 0;
  margin: 0;
}
.simple-tooltip {
  width: 100%;
  position: relative;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  color: #2b2b36;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(43, 43, 54, 0.2);
  padding: 12px;
  margin: auto;
}
.simple-tooltip:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.simple-tooltip__title {
  font-size: 14px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.07px;
  font-weight: inherit;
}
.simple-tooltip__content {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
  letter-spacing: 0.07px;
  padding-top: 3px;
  text-wrap: initial;
}
.simple-tooltip__content a:hover {
  color: #00c26f;
}
.dashboard-profile-stats-tooltip {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 10px;
}
.dashboard-profile-stats-tooltip__element.simple-tooltip {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  padding: 10px 12px;
  transition: opacity, visibility, ease 0.3s;
  cursor: default;
  pointer-events: none;
}
.dashboard-profile-stats-tooltip__element.simple-tooltip
  .simple-tooltip__content {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.07px;
  text-align: left;
}
.dashboard-profile-stats-tooltip__element:before {
  display: none;
}
.dashboard-profile-stats-tooltip__element.simple-tooltip::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid #fff;
}
.dashboard-profile-stats-tooltip:hover
  .dashboard-profile-stats-tooltip__element {
  visibility: visible;
  opacity: 1;
}
.new-stepper-container {
  max-width: 850px;
  margin: 0 auto;
}
.new-stepper-content_w400 {
  max-width: 400px;
  margin: 0 auto;
}
.trade-result-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 48px 16px;
}
.trade-result-modal__header {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  padding: 12px;
  text-align: center;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trade-result-modal__image {
  margin: 24px auto;
}
.trade-result-modal__text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.trade-result-modal__button {
  border-radius: 4px;
  background: #00c26f;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 13px 24px;
  margin: 24px 0 0 0;
  width: 100%;
  border: none;
  outline: none;
}
.trade-result-modal__button:hover {
  opacity: 0.8;
}
.trade-result-modal__button_secondary {
  background: none;
  color: #00c26f;
  width: auto;
  margin: 16px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .trade-result-modal__content {
    padding: 0 64px 24px 64px;
  }
  .trade-result-modal__text {
    font-size: 20px;
    line-height: 28px;
  }
}
div.clear-modal__paper-sm,
div.clear-modal__paper {
  position: relative;
  width: 100%;
  max-width: 656px;
  border-radius: 12px;
  margin: 16px;
}
.clear-modal__icon-close {
  background: 0;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
}
.pro-modal__content:has(.deposit-modal-content) {
  padding: 0;
}
.pro-modal__paper:has(.deposit-modal-content) {
  border-radius: 0;
}
.pro-modal__content {
  height: 100%;
}
.deposit-modal-content {
  overflow-y: hidden;
  height: 100%;
}
.deposit-modal-content__title {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #2b2b37;
  padding: 17px 0;
  border-bottom: 1px solid #f0f0f0;
}
.deposit-modal-content__info {
  padding-top: 22px;
}
.deposit-modal-content__info-block {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  padding: 0 16px 0;
}
.deposit-modal-content__steps {
  display: none;
}
.deposit-modal-content__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.combobox.deposit-modal-content__input-selector {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: self-start;
  height: 48px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.27px;
  color: #2b2b37;
  margin: 0;
  min-width: 0;
  width: 100%;
  position: relative;
  border: 1px solid #dce2ea;
  border-radius: 6px;
}
.deposit-modal-content__step.deposit-modal-content__input-step_mobile {
  display: inline-block;
  border-radius: 18px;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #fff;
  position: relative;
  background-color: #00c26f;
  margin: 0 8px 0 0;
}
.combobox.deposit-modal-content__input-selector .network-info__background {
  border-radius: 0 0 6px 6px;
}
.deposit-modal-content__button {
  width: 100%;
  background-color: #00c26f;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.4px;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  margin: 120px 0 12px;
  border: none;
  padding: 13px 0;
}
.combobox.deposit-modal-content__input-selector
  .combobox--field.combobox--field__dropdown-open {
  width: calc(100% + 32px);
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  top: -105px;
  left: -16px;
  background-color: #fff;
  z-index: 1;
}
.combobox.deposit-modal-content__input-selector .combobox--input {
  padding-left: 40px;
  width: 100%;
  position: relative;
  z-index: 100;
}
.combobox.deposit-modal-content__input-selector
  .combobox--dropdown.combobox--dropdown__open {
  width: 99.9%;
  top: 44px;
  max-height: 100vh;
  height: 100vh;
  border: 1px solid #dce2ea;
  border-top: none;
  box-sizing: content-box;
  left: -0.8px;
  padding-top: 40px;
  z-index: 1;
}
.combobox.deposit-modal-content__input-selector .combobox__items-list {
  height: 100vh;
  max-height: 100vh;
  margin-top: 0px;
}
.deposit-modal-content__input-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.deposit-modal-content__input-label {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #6a6a7f;
}
.deposit-modal-content__input {
  height: 48px;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 500;
  letter-spacing: 0.27px;
  color: #2b2b37;
  padding: 18px 0 18px 12px;
  margin: 0;
}
.deposit-modal-content__input[type="number"]::-webkit-inner-spin-button,
.deposit-modal-content__input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.deposit-modal-content__input[type="number"] {
  -moz-appearance: textfield;
}
.combobox__search-icon {
  z-index: 1000;
}
.deposit-modal-content__span-info {
  display: inline-block;
  border: 1px solid #f0f0f0;
  padding: 12px 16px 12px 48px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0);
  color: #9696a5;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  font-weight: 400;
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  z-index: -1;
}
.deposit-modal-content__span-info::before {
  content: "";
  position: absolute;
  background-image: url(639a00a4a61b62f0dfad.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 0;
}
.deposit-modal-content .currency-item__right {
  display: flex;
  flex-direction: column;
}
.deposit-modal-content .combobox-dropdown-item {
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-end: 0;
  margin: 0;
}
.deposit-modal-content .combobox-dropdown-item .currency-item {
  align-items: center;
}
.deposit-modal-content .combobox-dropdown-item .currency-item__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 1;
}
.deposit-modal-content .combobox-dropdown-item .currency-item__right {
  flex-grow: 1;
  border-top: 1px solid #dce2ea;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-inline-start: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  line-height: 23px;
}
.deposit-modal-content .combobox-dropdown-item .currency-item--ticker {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.deposit-modal-content .combobox-dropdown-item .currency-item--name {
  display: block;
  font-weight: 300;
  font-size: 14px;
  text-align: start;
  color: #808086;
}
.deposit-modal-content
  .combobox-dropdown-item
  .currency-item--name.currency-item--name_short {
  width: initial;
}
.deposit-modal-content .combobox-dropdown-item .currency-item--currency-icon {
  display: block;
  margin-inline-end: 0;
  padding-bottom: 0;
  font-size: 18px;
  color: #2c4240;
  width: 32px;
  height: 32px;
}
.deposit-modal-content
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent_red {
  color: #f42841;
}
.deposit-modal-content
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent {
  position: absolute;
  right: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: end;
  letter-spacing: 0.34px;
  color: #00c26f;
}
.deposit-modal-content
  .exchange-calculator--selected-currency-item
  .currency-item--currency-icon {
  width: 20px;
  height: 20px;
  margin-top: 0px;
}
.deposit-modal-content
  .exchange-calculator--selected-currency-item
  .currency-item--ticker {
  max-width: 100%;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0.27px;
  font-weight: 500;
}
.deposit-modal-content .exchange-calculator--selected-currency-item {
  padding-inline-start: 12px;
}
.deposit-modal-content
  .currency-item
  .currency-item__right
  .currency-item__balance {
  position: absolute;
  right: 12px;
  text-align: right;
}
.deposit-modal-content
  .currency-item
  .currency-item__right
  .currency-item__balance
  .currency-item__balance-span {
  color: #808086;
}
.deposit-modal-content__methods-label {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #6a6a7f;
  padding-bottom: 4px;
}
.deposit-modal-content__method {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  width: 100%;
  padding: 12px 16px 12px 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
}
.deposit-modal-content__method_active {
  border-color: #00c26f;
}
.deposit-modal-content__method:hover {
  background-color: #f3fcf8;
}
.deposit-modal-content__method::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 16px;
  border-radius: 50%;
  border: 1px solid #9696a5;
  width: 16px;
  height: 16px;
}
.deposit-modal-content__method.deposit-modal-content__method_active::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 16px;
  border-radius: 50%;
  border: 1px solid #00c26f;
  width: 16px;
  height: 16px;
}
.deposit-modal-content__method_active::after {
  content: "";
  display: block;
  position: absolute;
  top: 26px;
  left: 20px;
  border-radius: 50%;
  border: 1px solid #00c26f;
  background-color: #00c26f;
  width: 8px;
  height: 8px;
}
.deposit-modal-content__method-title {
  color: #2b2b37;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.04px;
  font-weight: 400;
}
.deposit-modal-content__method-description {
  color: #9696a5;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04px;
  font-weight: 400;
}
.deposit-modal-content__method-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.combobox.deposit-modal-content__input-selector .combobox--field {
  width: 100%;
}
.deposit-modal-content:has(.combobox--dropdown.combobox--dropdown__open)
  .deposit-modal-content__methods-block {
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .pro-modal__paper:has(.deposit-modal-content) {
    border-radius: 12px;
  }
  .deposit-modal-content
    .exchange-calculator--selected-currency-item
    .currency-item--ticker {
    font-size: 24px;
    line-height: 32px;
  }
  .deposit-modal-content__button {
    margin: 114px 0 20px;
  }
  .combobox.deposit-modal-content__input-selector
    .combobox--dropdown.combobox--dropdown__open {
    width: 99.9%;
    top: 64px;
    height: 400px;
    border: 1px solid #dce2ea;
    border-top: none;
    box-sizing: content-box;
    left: -0.7px;
    padding-top: 30px;
    max-height: 400px;
  }
  .combobox.deposit-modal-content__input-selector .combobox__items-list {
    height: 400px;
    max-height: 400px;
  }
  .deposit-modal-content__input {
    height: 68px;
    font-size: 24px;
    line-height: 32px;
    padding-left: 16px;
  }
  .deposit-modal-content__steps {
    display: flex;
    flex-direction: column;
    gap: 87px;
  }
  .deposit-modal-content__step.deposit-modal-content__input-step_mobile {
    display: none;
  }
  .deposit-modal-content__step {
    border-radius: 18px;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 19.6px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    position: relative;
    background-color: #00c26f;
  }
  .deposit-modal-content__step:last-of-type::before {
    content: "";
    position: absolute;
    top: -77px;
    right: 14px;
    height: 67px;
    width: 1px;
    background-color: #d8e6e1;
    border: none;
  }
  .combobox.deposit-modal-content__input-selector {
    display: flex;
    align-items: start;
    width: 100%;
    min-width: 500px;
    height: 68px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.27px;
    color: #2b2b37;
    margin: 0;
  }
  .combobox.deposit-modal-content__input-selector
    .combobox--field.combobox--field__dropdown-open {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 0;
  }
}
@media screen and (min-width: 768px) {
  .combobox.deposit-modal-content__input-selector {
    display: flex;
    align-items: start;
    width: 100%;
    height: 68px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.27px;
    color: #2b2b37;
    margin: 0;
  }
  .deposit-modal-content__info-block {
    padding: 0 48px 0;
  }
}
.radio-button-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-button-group__label-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.radio-button-group__label {
  color: #5b587d;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  cursor: default;
}
.radio-button-group__label_with-tooltip {
  border-bottom: 1px dashed #00c26f;
  cursor: pointer;
}
.radio-button-group__tooltip {
  background-color: #fff;
  border-radius: 8px;
  width: 320px;
  padding: 12px 16px;
  box-shadow: 0 0 4px 0 rgba(43, 43, 54, 0.2);
  z-index: 10;
}
.radio-button-group__options {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-button-group__option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.radio-button-group__option:hover {
  opacity: 0.8;
}
.radio-button-group__option:hover .radio-button-group__indicator {
  border-color: #00c26f;
}
.radio-button-group__option_disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.radio-button-group__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.radio-button-group__input:focus-visible + .radio-button-group__indicator {
  box-shadow: 0 0 0 2px rgba(0, 182, 122, 0.3);
}
.radio-button-group__input:checked + .radio-button-group__indicator {
  border-color: #00c26f;
}
.radio-button-group__input:checked + .radio-button-group__indicator::after {
  transform: scale(1);
}
.radio-button-group__indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #9696a5;
  border-radius: 50%;
  background-color: #fff;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}
.radio-button-group__indicator::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00c26f;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.radio-button-group__text {
  color: #6a6a7f;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.target-price-input {
  display: flex;
  border-radius: 8px;
  border: 1px solid #dce2ea;
  position: relative;
  min-height: 48px;
  height: 54px;
  transition: all 0.3s ease;
}
.target-price-input__field {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 8px 0 0 8px;
}
html[dir="rtl"] .target-price-input__field {
  border-radius: 0 8px 8px 0;
}
.target-price-input__label {
  position: absolute;
  top: 7px;
  left: 16px;
  font-size: 12px;
  color: #808086;
}
html[dir="rtl"] .target-price-input__label {
  left: unset;
  right: 16px;
}
.target-price-input__input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 17px 20px 0;
  padding-inline-end: 12px;
}
.target-price-input__prefix {
  font-size: 16px;
  color: #2b2b37;
  font-weight: 400;
  line-height: 1;
  margin-inline-end: 2px;
}
.target-price-input__input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.target-price-input_error {
  border: 1px solid #fdefc1;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.target-price-input_error.target-price-input_error-active {
  border-radius: 8px 8px 0 0;
}
.target-price-input__input::-moz-placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.target-price-input__input::placeholder {
  font-size: 17px;
  color: #a4a3aa;
  font-weight: 100;
}
.trade-calculator__field-error.target-price-input__error {
  color: #82681a;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
}
.trade-calculator__field-error.target-price-input__error.target-price-input__error-active {
  opacity: 1;
  pointer-events: all;
}
.target-price-input__input:disabled {
  cursor: default;
}
.target-price-input__loader {
  position: absolute;
  height: 30px;
  width: 30px;
  bottom: 0;
  left: 15px;
  top: 40%;
}
.target-price-input__currency {
  display: flex;
  width: 120px;
  flex-shrink: 0;
  padding: 18px 12px 18px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-left: 1px solid #dce2ea;
}
html[dir="rtl"] .target-price-input__currency {
  border-left: none;
  border-right: 1px solid #dce2ea;
  border-radius: 8px 0 0 8px;
}
.target-price-input__currency-ticker {
  font-size: 16px;
  font-weight: 500;
  color: #6a6a7f;
  text-transform: uppercase;
}
@media screen and (min-width: 576px) {
  .target-price-input__prefix {
    font-size: 24px;
  }
  .target-price-input__input {
    font-size: 24px;
  }
  .target-price-input__currency-icon {
    margin-inline-end: 8px;
  }
  .target-price-input__currency-ticker {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) {
  .target-price-input {
    height: 70px;
  }
  .target-price-input__loader {
    bottom: 5px;
    left: 10px;
    height: 40px;
    width: 40px;
    top: unset;
  }
  .target-price-input__label {
    top: 7px;
  }
  .target-price-input__currency {
    width: 160px;
  }
}
.limit-calculator__expires-wrapper {
  position: relative;
  padding-top: 13px;
  padding-inline-start: 12px;
}
.limit-calculator__expires-wrapper::before {
  content: "";
  position: absolute;
  inset-inline-start: 12px;
  top: 0;
  width: 1px;
  height: 80%;
  background-color: #dce2ea;
}
.limit-calculator__expires-wrapper::after {
  content: "";
  position: absolute;
  inset-inline-start: 8.5px;
  top: 80%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dce2ea;
}
.limit-calculator__expires-wrapper .radio-button-group {
  padding-inline-start: 12px;
}
.limit-calculator__target-price-wrapper {
  margin-bottom: 16px;
}
.limit-calculator__target-price-warning {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 8px;
  color: #856404;
  font-size: 12px;
  line-height: 1.4;
}
.error-at-text-button {
  display: inline-block;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  color: #82681a;
  font-weight: 800;
  font-size: 14px;
  text-decoration: underline;
  padding: 0;
}
.trade-calculator__field {
  display: flex;
  border-radius: 8px;
  border: 1px solid #dce2ea;
  position: relative;
  min-height: 48px;
  transition: all 0.3s ease;
}
.tc-field__input {
  border-radius: 8px 0 0 8px;
}
html[dir="rtl"] .tc-field__input {
  border-radius: 0 8px 8px 0;
}
.tc-field__selector {
  border-left: 1px solid #dce2ea;
  border-radius: 0 8px 8px 0;
  position: relative;
}
html[dir="rtl"] .tc-field__selector {
  border-left: none;
  border-right: 1px solid #dce2ea;
  border-radius: 8px 0 0 8px;
}
.trade-calculator__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tc-field__loader {
  position: absolute;
  height: 30px;
  width: 30px;
  bottom: 0;
  left: 15px;
  top: 40%;
}
.trade-calculator__exchange-button {
  border-radius: 8px;
  background: #00c26f;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
  border: none;
  outline: none;
  width: 100%;
  margin-top: 12px;
  padding: 13px 0;
  display: flex;
  justify-content: center;
  height: 50px;
}
.trade-calculator__exchange-button:hover {
  opacity: 0.8;
}
.trade-calculator__exchange-button-loader {
  margin: -10px;
}
.trade-calculator__field .network-info.combobox__network {
  position: absolute;
  bottom: 0;
}
.trade-calculator__now-custody-terms {
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.trade-calculator__now-custody-terms.trade-calculator__now-custody-terms_balance-page {
  text-align: start;
}
.trade-calculator__now-custody-terms a {
  color: #00c26f;
  text-decoration: none;
  cursor: pointer;
}
.trade-calculator__now-custody-terms a:hover {
  color: #00c26f;
  opacity: 0.8;
}
.trade-calculator__benefits {
  margin: 24px 0 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.trade-calculator:has(.trade-calculator__benefits)
  .trade-calculator__exchange-button {
  margin-top: 0;
}
.trade-calculator__benefits-title {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 500;
  color: #2b2b37;
  opacity: 1;
  margin: 0;
  padding: 0;
  text-align: start;
}
.trade-calculator__benefits-items {
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: 1fr 1fr;
  gap: 8px 41px;
  grid-template-areas: "item1 item3" "item2 item4";
}
.trade-calculator__benefits-item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  white-space: nowrap;
}
.trade-calculator__benefits-item:nth-child(1) {
  grid-area: item1;
}
.trade-calculator__benefits-item:nth-child(2) {
  grid-area: item2;
}
.trade-calculator__benefits-item:nth-child(3) {
  grid-area: item3;
}
.trade-calculator__benefits-item:nth-child(4) {
  grid-area: item4;
}
.trade-calculator__field-error {
  position: absolute;
  top: 100%;
  left: -1px;
  padding: 7px 16px;
  background-color: #ffedb3;
  border: 1px solid rgba(255, 216, 92, 0.5);
  width: 100.4%;
  border-radius: 0 0 8px 8px;
  z-index: 1;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #82681a;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.trade-calculator__field-error_active {
  opacity: 1;
  pointer-events: all;
}
.trade-calculator__field-error.trade-calculator__field-error_balance {
  font-size: 14px;
  line-height: 18px;
}
.trade-calculator__field.trade-calculator__field-with-error {
  border: 1px solid #fdefc1;
}
.trade-calculator .trade-calculator__error-visible {
  border-radius: 8px 8px 0 0;
}
.trade-calculator__error-visible .network-info__background {
  border-radius: 0;
}
.trade-calculator__benefits-item-img {
  width: 33px;
  height: 32px;
}
.warning-field__action-button {
  padding: 0;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0);
  text-decoration: underline;
}
.trade-calculator__order-type {
  margin-bottom: 16px;
}
@media screen and (min-width: 480px) {
  .trade-calculator__benefits-items {
    display: flex;
    flex-direction: row;
    gap: 0 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .trade-calculator__benefits-items {
    gap: 0 43px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .trade-calculator__benefits-items {
    gap: 0 38px;
  }
  .trade-calculator__field {
    min-height: 70px;
  }
  .trade-calculator__exchange-button {
    margin-top: 16px;
  }
  .trade-calculator__now-custody-terms {
    margin-top: 16px;
    margin-bottom: 0;
  }
  .tc-field__loader {
    bottom: 5px;
    left: 10px;
    height: 40px;
    width: 40px;
    top: unset;
  }
}
@media screen and (min-width: 992px) {
  .trade-calculator__benefits-items {
    gap: 0 26px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .trade-calculator__benefits-items {
    gap: 0 38px;
  }
}
.rate-mode-selector {
  position: relative;
}
.new-stepper-swap-btn {
  width: 28px;
  padding: 0;
  height: 28px;
  background: #3e3f57;
  margin-inline-end: 0;
}
.new-stepper-estimation-lock {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 17px;
  padding-bottom: 0;
  padding-inline-start: 0;
  padding-inline-end: 15px;
}
.new-stepper-estimation-lock.new-stepper-estimation-lock__dark {
  background-color: #3e3e59;
}
.new-stepper-estimation_fixed {
  color: #00c26f !important;
}
.new-stepper-button-mt {
  margin-top: 25px;
}
.new-stepper-form_margin {
  margin: 0 -15px;
}
.swap-page__exchange-blockchain-calculator .new-stepper-form_margin {
  margin: 0;
}
.exchange-calculator--fields-section.exchange-calculator__legacy-hints-section {
  display: grid;
  grid-template-columns: auto auto;
  min-height: 65px;
}
.exchange-calculator--fields-section .exchange-calculator--swap-button {
  justify-self: flex-end;
}
.exchange-calculator__legacy-hints-section:only-child {
  justify-items: end;
}
.exchange-calculator__legacy-hints-section > *:only-child {
  grid-column: 2;
}
.exchange-calculator__cashback-hints-section {
  min-height: 42px;
}
.exchange-calculator__trade-calculator.trade-calculator_auth {
  position: relative;
  min-height: 278px;
}
.exchange-calculator__trade-calculator {
  position: relative;
  min-height: 341px;
}
.exchange-calculator__trade-calculator.trade-calculator_auth
  .circular-progress {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .new-stepper-form_margin {
    margin: 0;
  }
  .new-stepper-button-mt {
    margin-top: 32px;
  }
}
.exchange-calculator {
  z-index: 100;
}
.exchange-calculator--fields-section {
  position: relative;
  display: flex;
}
.exchange-calculator--fields-section__tabs {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.4px;
}
.exchange-calculator--fields-section__amount,
.exchange-calculator--fields-section__estimation {
  border: 1px solid #46475e;
  border-radius: 8px;
  min-height: 50px;
}
@media all and (min-width: 768px) {
  .exchange-calculator--fields-section__amount,
  .exchange-calculator--fields-section__estimation {
    min-height: 70px;
  }
}
.exchange-calculator--fields-section__sequence {
  justify-content: space-between;
  align-items: center;
  position: initial;
}
.exchange-calculator--fields-section__show-error {
  position: relative;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255, 216, 92, 0.5) !important;
  transition: all 0.3s ease;
}
.exchange-calculator--fields-section__image {
  position: absolute;
  width: 36px;
  height: 29px;
  top: -3px;
  right: 0;
}
html[dir="rtl"] .exchange-calculator--fields-section__image {
  right: unset;
  left: 0;
}
.exchange-calculator--fields-section__show-error .warning-field {
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: calc(100% + 2px);
  height: 40px;
  text-align: start;
  border-radius: 0 0 8px 8px;
  visibility: visible;
  opacity: 1;
  transition: opacity, visibility, ease 0.3s;
}
.exchange-calculator--fields-section__show-error .warning-field p {
  padding: 0 19px;
  line-height: 16px;
  letter-spacing: 0.0736842px;
}
@media screen and (max-width: 767px) {
  .exchange-calculator--fields-section__show-error .warning-field p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .exchange-calculator--fields-section__show-error .warning-field p {
    font-size: 14px;
  }
}
.exchange-calculator--fields-section__show-error .warning-field p a {
  font-size: inherit;
  line-height: 16px;
  color: #ffd85c;
  text-decoration: underline;
  letter-spacing: 0.0736842px;
}
.exchange-calculator--fields-section__show-error .warning-field p a:hover {
  text-decoration: none;
}
.exchange-calculator--fields-section__show-error .warning-field__hide-content {
  visibility: hidden;
  opacity: 0;
}
.exchange-calculator--selected-currency-item {
  align-items: center;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-inline-start: 10px;
}
@media all and (max-width: 767px) {
  .exchange-calculator--selected-currency-item {
    padding-inline-start: 5px;
  }
}
.exchange-calculator--selected-currency-item .currency-item--ticker {
  margin-inline-end: 0;
  font-size: 20px;
  white-space: nowrap;
  max-width: 8ch;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
}
@media all and (max-width: 767px) {
  .exchange-calculator--selected-currency-item .currency-item--ticker {
    max-width: 7ch;
    font-size: 16px;
  }
}
.exchange-calculator--selected-currency-item .currency-item--name {
  margin-inline-end: 0;
  font-size: 20px;
}
.exchange-calculator--selected-currency-item .currency-item--currency-icon {
  display: block;
  font-size: 16px;
  color: #00c26f;
  margin-top: 2px;
  margin-bottom: 0;
  margin-inline-end: 6px;
  margin-inline-start: 2px;
  width: 19px;
  height: 19px;
}
.exchange-calculator--amount-field,
.exchange-calculator--estimation-field {
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: row;
}
@media all and (max-width: 767px) {
  .exchange-calculator--amount-field,
  .exchange-calculator--estimation-field {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) {
  .exchange-calculator--amount-field,
  .exchange-calculator--estimation-field {
    font-size: 20px;
  }
}
html[dir="rtl"] .exchange-calculator--amount-field,
html[dir="rtl"] .exchange-calculator--estimation-field {
  border-radius: 0 8px 8px 0;
}
.exchange-calculator--estimation-field .now-input--input {
  padding-top: 17px;
  padding-bottom: 0;
  padding-inline-start: 20px;
  padding-inline-end: 5px;
}
@media all and (max-width: 767px) {
  .exchange-calculator--amount-field .now-input--label,
  .exchange-calculator--estimation-field .now-input--label {
    font-size: 11px;
  }
}
.exchange-calculator--currency-field {
  position: relative;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column-reverse;
  transition: all 0.3s ease;
}
.exchange-calculator--tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 5px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .exchange-calculator--tab {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .exchange-calculator--tab {
    padding: 8px 7px;
  }
}
.exchange-calculator--tab__fiat {
  margin-inline-start: 8px;
}
@media all and (max-width: 575px) {
  .exchange-calculator--tab__fiat {
    margin-inline-start: auto;
  }
}
@media all and (max-width: 374px) {
  .exchange-calculator--tab__fiat {
    display: none;
  }
}
.exchange-calculator--swap-button {
  cursor: pointer;
  outline: none;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 6px rgba(43, 43, 54, 0.15);
}
.exchange-calculator--swap-button_without-hover {
  cursor: default;
  box-shadow: none;
}
.exchange-calculator--swap-button .exchange-calculator--swap-button-icon {
  transform: rotate(180deg);
}
.exchange-calculator--loader {
  position: absolute;
  left: 15px;
}
@media all and (max-width: 767px) {
  .exchange-calculator--loader {
    bottom: -1px;
    left: 10px;
    width: 35px;
    height: 35px;
  }
}
@media all and (min-width: 768px) {
  .exchange-calculator--loader {
    bottom: 5px;
    left: 9px;
    width: 40px;
    height: 40px;
  }
}
html[dir="rtl"] .exchange-calculator--loader {
  left: unset;
  right: 15px;
}
@media all and (max-width: 767px) {
  html[dir="rtl"] .exchange-calculator--loader {
    right: 10px;
  }
}
@media all and (min-width: 768px) {
  html[dir="rtl"] .exchange-calculator--loader {
    right: 9px;
  }
}
@media all and (max-width: 767px) {
  .exchange-calculator .combobox--field {
    width: 121px;
  }
}
@media all and (min-width: 768px) {
  .exchange-calculator .combobox--field {
    width: 160px;
  }
}
.combobox--field.combobox--field__without-selector {
  cursor: initial;
}
.exchange-calculator .combobox--field__dropdown-open,
.pro-balance__coin-operations
  .trade-calculator
  .combobox--field__dropdown-open {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  background: #fff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: initial;
  width: calc(100% + 2px);
  min-height: 100px;
}
@media all and (min-width: 768px) {
  .exchange-calculator .combobox--field__dropdown-open,
  .pro-balance__coin-operations
    .trade-calculator
    .combobox--field__dropdown-open {
    position: absolute;
    left: auto;
    right: -1px;
    top: -1px;
    width: 342px;
    border-radius: 5px 5px 0 0;
  }
}
.exchange-calculator .combobox--field__dropdown-open .icon-search,
.pro-balance__coin-operations
  .trade-calculator
  .combobox--field__dropdown-open
  .icon-search {
  position: absolute;
  left: 15px;
  z-index: 999;
  font-size: 18px;
}
@media all and (max-width: 767px) {
  .exchange-calculator .combobox--field__dropdown-open .icon-search,
  .pro-balance__coin-operations
    .trade-calculator
    .combobox--field__dropdown-open
    .icon-search {
    top: 18px;
  }
}
@media all and (min-width: 768px) {
  .exchange-calculator .combobox--field__dropdown-open .icon-search,
  .pro-balance__coin-operations
    .trade-calculator
    .combobox--field__dropdown-open
    .icon-search {
    top: 24px;
  }
}
.exchange-calculator .combobox--input,
.pro-balance__coin-operations .trade-calculator .combobox--input {
  height: 100%;
  padding: 0;
  margin-inline-start: 48px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000;
  background: none;
  border: none;
  outline: none;
}
.exchange-calculator .combobox--dropdown,
.pro-balance__coin-operations .trade-calculator .combobox--dropdown {
  z-index: 9999;
  border-radius: 0 0 5px 5px;
  width: 100%;
  background: #fff;
  top: 98px;
}
@media all and (min-width: 768px) {
  .exchange-calculator .combobox--dropdown,
  .pro-balance__coin-operations .trade-calculator .combobox--dropdown {
    width: 342px;
  }
}
.exchange-calculator .combobox-dropdown-item .currency-item,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item {
  align-items: center;
}
.exchange-calculator .combobox-dropdown-item .currency-item--currency-icon,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item--currency-icon {
  display: block;
  margin-inline-end: 0;
  padding-bottom: 0;
  font-size: 18px;
  color: #2c4240;
  width: 32px;
  height: 32px;
}
.exchange-calculator .combobox-dropdown-item .currency-item--name,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item--name {
  display: block;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  text-align: start;
  color: #808086;
}
@media all and (max-width: 767px) {
  .exchange-calculator .combobox-dropdown-item .currency-item--name,
  .pro-balance__coin-operations
    .trade-calculator
    .combobox-dropdown-item
    .currency-item--name {
    line-height: 13px;
  }
}
.exchange-calculator .combobox-dropdown-item .currency-item--ticker,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item--ticker {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.exchange-calculator--sup {
  margin-inline-start: 4px;
  margin-top: 2px;
}
.exchange-calculator .combobox-dropdown-item,
.pro-balance__coin-operations .trade-calculator .combobox-dropdown-item {
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-end: 0;
  margin: 0;
}
.exchange-calculator .combobox-dropdown-item .currency-item__left,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 1;
}
.exchange-calculator .combobox-dropdown-item .currency-item__right,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__right {
  flex-grow: 1;
  border-top: 1px solid #dce2ea;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-inline-start: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-height: 63px;
}
.exchange-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent {
  position: absolute;
  right: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: end;
  letter-spacing: 0.34px;
  color: #00c26f;
}
.exchange-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent_red,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__percent_red {
  color: #f42841;
}
.exchange-calculator
  .combobox-dropdown-group
  + .combobox-dropdown-item
  .currency-item__right,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-group
  + .combobox-dropdown-item
  .currency-item__right {
  border: none;
}
.exchange-calculator .combobox-dropdown-item .currency-item_mobile,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item_mobile {
  display: block;
}
.exchange-calculator__dark
  .exchange-calculator--fields-section__tabs
  button:first-child {
  border-radius: 4px 0 0 4px;
  border-right: 1px solid #35354c;
}
.exchange-calculator__dark
  .exchange-calculator--fields-section__tabs
  button:last-child {
  border-radius: 0 4px 4px 0;
}
.exchange-calculator__dark
  .exchange-calculator--fields-section__show-error
  .warning-field {
  background-color: rgba(66, 62, 58, 0.9);
  border: 1px solid rgba(255, 216, 92, 0.5);
  border-top: 0;
}
.exchange-calculator__dark
  .exchange-calculator--fields-section__show-error
  .warning-field
  p {
  color: #ffd85c;
}
.exchange-calculator__dark
  .exchange-calculator--fields-section__show-error
  .warning-field
  p
  a {
  color: #ffd85c;
}
.exchange-calculator__dark .exchange-calculator--tab {
  color: hsla(0, 0%, 100%, 0.4);
  background-color: #252531;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 100ms;
}
.exchange-calculator__dark .exchange-calculator--tab:hover {
  color: #fff;
  opacity: 1;
}
.exchange-calculator__dark .exchange-calculator--tab__active {
  background-color: #525273;
  color: #fff;
  opacity: 1;
}
.exchange-calculator__light
  .exchange-calculator--fields-section__tabs
  button:first-child {
  border-radius: 4px 0 0 4px;
}
html[dir="rtl"]
  .exchange-calculator__light
  .exchange-calculator--fields-section__tabs
  button:first-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #dce2ea;
}
html[dir="rtl"]
  .exchange-calculator__light
  .exchange-calculator--fields-section__tabs
  button:last-child {
  border-radius: 4px 0 0 4px;
}
html[dir="rtl"] .now-input__light .now-input--input {
  border-radius: 0 8px 8px 0;
}
html[dir="rtl"] .exchange-calculator--currency-field {
  border-radius: 8px 0 0 8px;
}
.exchange-calculator__light .exchange-calculator--fields-section__tabs button {
  border-right: none;
  flex-grow: 1;
  width: 30%;
}
.exchange-calculator__light
  .exchange-calculator--fields-section__tabs
  button:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #dce2ea;
}
.exchange-calculator__light
  .exchange-calculator--fields-section__show-error
  .warning-field {
  background-color: #ffedb3;
  border: 1px solid rgba(255, 216, 92, 0.5);
  border-top: 0;
  z-index: 20;
}
.exchange-calculator__light
  .exchange-calculator--fields-section__show-error
  .warning-field
  p {
  color: #35354c;
}
.exchange-calculator__light
  .exchange-calculator--fields-section__show-error
  .warning-field
  p
  a {
  color: #35354c;
}
.exchange-calculator__light .exchange-calculator--tab {
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
  background: #fff;
  border: 1px solid #dce2ea;
  outline: none;
  cursor: pointer;
  transition: opacity 100ms;
}
.exchange-calculator__light .exchange-calculator--tab:hover {
  color: #000;
}
.exchange-calculator__light .exchange-calculator--tab__active {
  color: #35354c;
  background: #f7f7f9;
  opacity: 1;
}
.exchange-calculator__light .exchange-calculator--fields-section__amount,
.exchange-calculator__light .exchange-calculator--fields-section__estimation {
  border: 1px solid #dce2ea;
}
.exchange-calculator .exchange-calculator__hidden-error-msg {
  border-radius: 8px;
}
.exchange-calculator__show-error-msg .network-info__background {
  border-radius: 0;
}
.exchange-calculator__show-error-msg .now-input--input {
  border-radius: 8px 0 0 0;
  transition: all 0.3s ease;
}
.exchange-calculator__show-error-msg .exchange-calculator--currency-field {
  border-radius: 0 8px 0 0;
}
.exchange-calculator__light .exchange-calculator--amount-field,
.exchange-calculator__light .exchange-calculator--estimation-field {
  border-right: 1px solid #dce2ea;
}
html[dir="rtl"] .exchange-calculator__light .exchange-calculator--amount-field,
html[dir="rtl"]
  .exchange-calculator__light
  .exchange-calculator--estimation-field {
  border-left: 1px solid #dce2ea;
  border-right: unset;
}
.exchange-calculator_horizontal .exchange-calculator--swap-button {
  margin-inline-start: auto;
}
.exchange-calculator_horizontal .exchange-calculator--swap-button-img {
  transform: rotate(90deg);
  padding: 10px;
}
.exchange-calculator_horizontal .exchange-calculator--fields-section__sequence {
  min-height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
}
.exchange-calculator_horizontal .exchange-calculator--fields-section__amount,
.exchange-calculator_horizontal
  .exchange-calculator--fields-section__estimation {
  flex-basis: 100%;
}
.exchange-calculator_horizontal .exchange-calculator--fields-section__tabs,
.exchange-calculator_horizontal .exchange-calculator--hints-section {
  display: none;
}
.exchange-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__balance,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__balance {
  position: absolute;
  right: 12px;
  text-align: right;
}
.exchange-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__balance
  .currency-item__balance-span,
.pro-balance__coin-operations
  .trade-calculator
  .combobox-dropdown-item
  .currency-item__right
  .currency-item__balance
  .currency-item__balance-span {
  color: #808086;
}
.warning-field__action-link {
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 768px) {
  .exchange-calculator--selected-currency-item .currency-item--currency-icon {
    margin-inline-end: 12px;
    margin-top: 0;
    width: 21px;
    height: 21px;
  }
  html[dir="rtl"] .combobox--field__dropdown-open {
    left: 0;
    right: unset;
  }
  .new-stepper-body_main-page {
    padding: 20px 24px 24px;
  }
  .exchange-calculator__trade-calculator.trade-calculator_auth {
    min-height: 338px;
  }
  .exchange-calculator__trade-calculator {
    min-height: 401px;
  }
}
@media (min-width: 992px) {
  .exchange-calculator_horizontal {
    display: flex;
    width: 100%;
  }
  .exchange-calculator_horizontal .exchange-calculator--swap-button {
    margin-inline-start: 14px;
    margin-inline-end: 14px;
  }
  .exchange-calculator_horizontal .exchange-calculator--swap-button-icon {
    transform: rotate(90deg);
  }
  .exchange-calculator_horizontal .exchange-calculator--swap-button-img {
    transform: rotate(0);
    padding: 0;
  }
  .exchange-calculator_horizontal
    .exchange-calculator--fields-section__sequence {
    margin-top: 0;
    margin-bottom: 0;
  }
  .exchange-calculator_horizontal .exchange-calculator--hints-section {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
  }
  .exchange-calculator_horizontal .exchange-calculator-hints--item {
    padding: 0;
  }
  .exchange-calculator_horizontal .now-tooltip {
    min-width: 245px;
    text-align: start;
  }
  .exchange-calculator--fields-section.exchange-calculator__legacy-hints-section {
    min-height: 77px;
  }
}
.exchange-calculator-hints {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-inline-end: 0px;
  margin-inline-start: 20px;
  padding: 8px 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .exchange-calculator-hints {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .exchange-calculator-hints {
    font-size: 12px;
  }
}
.exchange-calculator-hints--item {
  position: relative;
  padding: 5px 0;
}
.exchange-calculator-hints--text__tooltip-link {
  cursor: pointer;
}
@media all and (max-width: 991px) {
  .exchange-calculator-hints--text__with-margin {
    margin-inline-end: 5px;
  }
}
@media all and (min-width: 992px) {
  .exchange-calculator-hints--text__with-margin {
    margin-inline-end: 8px;
  }
}
.exchange-calculator-hints--expected-rate-tooltip,
.exchange-calculator-hints--exact-exchange-tooltip {
  right: 0;
  left: auto;
}
.exchange-calculator-hints--fees-included-tooltip {
  left: -20px;
}
.exchange-calculator-hints__dark {
  color: #fff;
  border-left: 1px solid #3e3f57;
}
.exchange-calculator-hints__dark .exchange-calculator-hints--item {
  padding-inline-start: 15px;
  word-break: break-all;
}
.exchange-calculator-hints__dark .exchange-calculator-hints--item::before {
  content: "";
  position: absolute;
  left: -6px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 3px;
  background-color: #3e3f57;
  border-radius: 50%;
}
.exchange-calculator-hints__dark .exchange-calculator-hints--item .now-tooltip {
  word-break: normal;
}
.exchange-calculator-hints__dark .exchange-calculator-hints--text {
  transition: 200ms ease-out;
}
.exchange-calculator-hints__dark
  .exchange-calculator-hints--text__tooltip-link {
  white-space: nowrap;
  border-bottom: 1px dashed #00c26f;
}
html[dir="rtl"] .exchange-calculator-hints__dark {
  border-left: unset;
  border-right: 1px solid #3e3f57;
}
html[dir="rtl"]
  .exchange-calculator-hints__dark
  .exchange-calculator-hints--item::before {
  left: unset;
  right: -6px;
}
.exchange-calculator-hints__light {
  color: #5c5780;
  border-left: 1px solid #d8d8d8;
}
.exchange-calculator-hints__light .exchange-calculator-hints--item {
  padding-inline-start: 15px;
  word-break: break-all;
}
.exchange-calculator-hints__light .exchange-calculator-hints--item::before {
  content: "";
  position: absolute;
  left: -6px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 3px;
  background-color: #d8d8d8;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .exchange-calculator-hints__light .exchange-calculator-hints--item::before {
    display: none;
  }
}
.exchange-calculator-hints__light
  .exchange-calculator-hints--item
  .now-tooltip {
  word-break: normal;
}
.exchange-calculator-hints__light .exchange-calculator-hints--text {
  transition: 200ms ease-out;
}
.exchange-calculator-hints__light
  .exchange-calculator-hints--text__tooltip-link {
  white-space: nowrap;
  border-bottom: 1px dashed #00c26f;
}
.exchange-calculator-hints__dark.exchange-calculator-hints__loading
  .exchange-calculator-hints--text {
  color: #5c5780;
  border-color: #5c5780;
}
.exchange-form {
  position: relative;
}
.exchange-form--exchange-button {
  width: 100%;
  padding: 0 46px;
  line-height: 46px;
  color: #fff;
  text-decoration: none;
  background-color: #00c26f;
  border: none;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}
.exchange-form--exchange-button:hover {
  background-color: #00a55f;
}
.exchange-form_horizontal {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.exchange-form_horizontal .exchange-form--exchange-button {
  width: 100%;
  height: auto;
  flex-grow: 1;
  margin-top: 12px;
  margin-bottom: 12px;
}
.exchange-form .now-input__light .now-input--input {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .exchange-form--exchange-button {
    height: 44px;
    margin-top: 18px;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .exchange-form--exchange-button {
    height: 46px;
    margin-top: 30px;
    font-size: 20px;
  }
  .nt-exchange__hints .exchange-calculator--hints-section {
    right: auto;
  }
}
@media (min-width: 1200px) {
  .exchange-form_horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 35px;
  }
  .exchange-form_horizontal .exchange-form--exchange-button {
    width: auto;
    margin-left: 16px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .exchange-form_horizontal .exchange-form--exchange-button {
    margin-left: 24px;
    min-width: 170px;
    padding: 0 34px;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.new-pagination {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.new-pagination__page-button {
  background: #fff;
  outline: none;
  border: 1px solid #d3d7da;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-inline-end: 10px;
  margin-top: 10px;
  transition: all 0.2s ease;
}
.new-pagination__page-button:last-child {
  margin-inline-end: 0;
}
.new-pagination__page-button_active {
  border: 1px solid #00c26f;
  cursor: initial;
}
.new-pagination__page-button:hover {
  opacity: 1;
  border-color: #00c26f;
}
.new-pagination__page-button:active {
  background-color: #e6f9f1;
}
.new-pagination__page-button.new-pagination__page-button_active:hover {
  opacity: 1;
}
.new-pagination__splitter {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-top: auto;
  margin-bottom: 0;
  margin-inline-start: 0;
  margin-inline-end: 12px;
  padding: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .new-pagination__page-button {
    margin-inline-end: 12px;
    margin-top: 12px;
  }
}
.currencies-table {
  width: 100%;
  border-collapse: initial;
  color: #808086;
  margin-bottom: 20px;
}
.currencies-table a {
  color: #808086;
}
.currencies-table__row {
  background: #fbfbfb;
  border-radius: 8px;
  position: relative;
}
.currencies-table__row_not-found {
  height: 600px;
}
.currencies-table__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: inherit;
  position: relative;
}
.currencies-table__loader svg {
  position: relative;
  display: flex;
  align-items: center;
}
.currencies-table__button-more {
  margin: 25px 0;
}
.currencies-table_fiat-mode .currencies-table-header {
  flex-wrap: wrap;
}
.currencies-table_fiat-mode .currencies-table-header__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 42px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 0 14px;
  margin-top: 8px;
}
.currencies-table_fiat-mode .currencies-table-item__left {
  width: 40%;
}
.currencies-table_fiat-mode .currencies-table-item__coin-ticker {
  display: none;
}
.currencies-table_fiat-mode .currencies-table-item__right {
  width: 60%;
}
.currencies-table__bottom {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.currencies-table__bottom-pagination {
  margin-top: 24px;
}
.currencies-table__bottom-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}
.currencies-table__bottom-link a {
  font-size: 16px;
  font-weight: 500;
  color: #0dc171;
}
.currencies-table__bottom-link-icon {
  transform: rotate(-90deg) translate(-7px, 0px);
}
html[dir="rtl"] .currencies-table__bottom-link-icon {
  transform: rotate(90deg) translate(7px, 0px);
}
.currencies-table_new-theme-with-limits {
  min-width: 740px;
  margin-bottom: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header {
  height: auto;
  flex-wrap: wrap;
  margin-bottom: 0;
  border-radius: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header__left {
  justify-content: flex-start;
}
.currencies-table_new-theme-with-limits .currencies-table-search {
  max-width: 240px;
  width: 285px;
  height: 32px;
  background-color: rgba(196, 196, 196, 0.2);
  box-shadow: none;
}
.currencies-table_new-theme-with-limits .currencies-table-search input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.currencies-table_new-theme-with-limits .menu-sort-button__lines {
  height: 32px;
  box-shadow: none;
}
.currencies-table_new-theme-with-limits .currencies-table-header__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  padding: 8px 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column {
  font-size: 12px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.56);
  text-align: right;
  flex-shrink: 0;
  flex-grow: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_zero {
  width: 50px;
  text-align: left;
  flex-shrink: 0;
  margin-right: auto;
}
.currencies-table_new-theme-with-limits
  .currencies-table-header__column_second {
  width: 77px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_third {
  width: 130px;
}
.currencies-table_new-theme-with-limits
  .currencies-table-header__column_fourth {
  width: 143px;
}
.currencies-table_new-theme-with-limits .currencies-table-header__column_fifth {
  width: 106px;
}
.currencies-table_new-theme-with-limits .currencies-table__row {
  background-color: #fff;
}
.currencies-table_new-theme-with-limits .currencies-table-item {
  box-shadow: none;
  margin-top: 0;
  border-bottom: 1px solid #e9e7ee;
  border-radius: 0;
  padding: 4px 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.currencies-table_new-theme-with-limits .currencies-table-item:first-child {
  border-top: 1px solid #e9e7ee;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-ticker {
  font-size: 14px;
  line-height: 16px;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.currencies-table_new-theme-with-limits .currencies-table-item__left {
  width: 170px;
}
.currencies-table_new-theme-with-limits .currencies-table-item__coin-image {
  flex-shrink: 0;
}
.currencies-table_new-theme-with-limits .currencies-table-item__right {
  width: calc(100% - 130px);
  flex-grow: 1;
}
.currencies-table_new-theme-with-limits .coin-info {
  justify-content: flex-end;
}
.currencies-table_new-theme-with-limits .coin-info__item {
  flex-shrink: 0;
  padding-left: 0;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(1) {
  max-width: 72px;
  padding-left: 0;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(2) {
  max-width: 77px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(3) {
  max-width: 130px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(4) {
  max-width: 143px;
}
.currencies-table_new-theme-with-limits .coin-info__item:nth-child(5) {
  max-width: 126px;
}
.currencies-table_new-theme-with-limits .coin-info__item-icon {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.currencies-table_new-theme-with-limits .coin-info__item-icon img {
  display: block;
}
.currencies-table_new-theme-with-limits .coin-info__item-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #d3d7da;
}
.currencies-table_new-theme-with-limits .coin-info__item-text_active {
  color: #5d7079;
}
.currencies-table_new-theme-with-limits .currencies-table__loader,
.currencies-table_new-theme-with-limits .not-found-currency {
  width: calc(100vw - 30px);
}
@media screen and (min-width: 375px) {
  .currencies-table_new-theme-with-limits .currencies-table-search {
    max-width: 290px;
  }
}
@media screen and (min-width: 768px) {
  .currencies-table_fiat-mode .currencies-table-header__right {
    width: 45%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .currencies-table_fiat-mode .currencies-table-item__left {
    width: 60%;
  }
  .currencies-table__bottom {
    flex-direction: row;
    justify-content: space-around;
  }
  .currencies-table__bottom-pagination {
    justify-content: flex-start;
  }
  .currencies-table__bottom-link {
    justify-content: flex-end;
    margin-top: 24px;
  }
  .currencies-table_fiat-mode .currencies-table-item__coin-ticker {
    display: flex;
    color: #808086;
    margin-right: 0;
  }
  .currencies-table_fiat-mode .currencies-table-item__coin-name {
    color: #2b2b36;
    margin-right: 10px;
  }
  .currencies-table_fiat-mode .currencies-table-item__right {
    width: 40%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-search {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
  .currencies-table_new-theme-with-limits .currencies-table-header {
    padding: 0;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third
    span {
    max-width: 100%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__column {
    width: auto;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__right {
    padding: 16px 0 8px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__index {
    display: none;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item {
    height: 48px;
    padding-left: 0;
    padding-right: 0;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
    line-height: 16px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__left {
    width: 240px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__right {
    width: calc(100% - 240px);
  }
  .currencies-table_new-theme-with-limits {
    min-width: 831px;
    margin-bottom: 0;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_zero {
    width: 75px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second {
    width: 77px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third {
    width: 130px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fourth {
    width: 143px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fifth {
    width: 106px;
  }
  .currencies-table_new-theme-with-limits .currencies-table__loader,
  .currencies-table_new-theme-with-limits .not-found-currency {
    width: 86%;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table_new-theme-with-limits .currencies-table-header {
    padding: 16px 24px 0;
  }
  .currencies-table_new-theme-with-limits .currencies-table-header__column {
    font-size: 13px;
    line-height: 16px;
    color: #808086;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__left {
    width: 300px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__right {
    width: calc(100% - 300px);
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_first
    span,
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second
    span {
    max-width: 100%;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-ticker {
    font-size: 15px;
    line-height: 21px;
    margin-right: 8px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item__coin-name {
    font-size: 15px;
    line-height: 21px;
  }
  .currencies-table_new-theme-with-limits .currencies-table-item {
    padding-left: 24px;
    padding-right: 24px;
  }
  .currencies-table_new-theme-with-limits .currencies-table__loader,
  .currencies-table_new-theme-with-limits .not-found-currency {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_second {
    width: 113px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_third {
    width: 171px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fourth {
    width: 185px;
  }
  .currencies-table_new-theme-with-limits
    .currencies-table-header__column_fifth {
    width: 145px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item {
    padding-left: 56px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(1) {
    max-width: 80px;
    padding-left: 0;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(2) {
    max-width: 113px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(3) {
    max-width: 171px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(4) {
    max-width: 185px;
  }
  .currencies-table_new-theme-with-limits .coin-info__item:nth-child(5) {
    max-width: 145px;
  }
}
.currencies-table-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}
.currencies-table-header__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.currencies-table-header__sorting {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-inline-end: 8px;
}
.currencies-table-header__search {
  flex-grow: 1;
}
.currencies-table-header__right {
  display: none;
}
.currencies-table-header__header-row {
  display: flex;
  width: 100%;
  align-items: center;
}
.currencies-table-header__header-row.currencies-table-header__fiat {
  display: grid;
  grid-template-areas: "sort search" "fiat fiat";
  grid-template-columns: 42px 1fr;
  grid-template-rows: 42px 42px;
  gap: 8px;
}
.currencies-table-header__header-row.currencies-table-header__fiat .menu-sort {
  grid-area: sort;
}
.currencies-table-header__header-row.currencies-table-header__fiat
  .currencies-table-search {
  grid-area: search;
}
.currencies-table-header__header-row.currencies-table-header__fiat
  .dropdown-menu {
  grid-area: fiat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
}
.currencies-table-header__header-row th {
  font-weight: 400;
}
.currencies-table-header__column_desktop {
  display: none;
}
.currencies-table-header__header-row.currencies-table-header__purchase {
  display: grid;
  grid-template-areas: "sort search search search search search" "zero first second third fourth fifth";
  row-gap: 16px;
  padding-bottom: 8px;
  grid-template-columns: auto 1fr;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_zero {
  grid-area: zero;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_first {
  grid-area: first;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_second {
  grid-area: second;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_third {
  grid-area: third;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_fourth {
  grid-area: fourth;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_fifth {
  grid-area: fifth;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .currencies-table-header__column_desktop {
  display: table-cell;
}
.currencies-table-header__header-row.currencies-table-header__purchase
  .menu-sort-button {
  justify-content: flex-start;
}
.currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
  width: auto;
}
.currencies-table.currencies-table_new-theme-with-limits
  .currencies-table-item__coin {
  width: 15%;
}
@media screen and (min-width: 576px) {
  .currencies-table.currencies-table_new-theme-with-limits
    .currencies-table-item__coin {
    width: 19%;
  }
}
@media screen and (min-width: 768px) {
  .currencies-table-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 55px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 25px;
    box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  }
  .currencies-table-header__left {
    width: 55%;
  }
  .currencies-table-header__right {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .currencies-table-header__column {
    flex: 0 0 15%;
    text-align: center;
  }
  .currencies-table-header__column span {
    display: inline-block;
    vertical-align: top;
  }
  .currencies-table-header__column_first span {
    max-width: 75px;
  }
  .currencies-table-header__column_third span {
    max-width: 95px;
  }
  .currencies-table-header__column_desktop {
    display: table-cell;
  }
  .currencies-table-header__header-row.currencies-table-header__fiat {
    display: flex;
  }
  .currencies-table-header__header-row.currencies-table-header__fiat
    .dropdown-menu {
    padding: 0;
    box-shadow: unset;
    border-radius: unset;
    justify-content: flex-end;
  }
  .currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
    width: 13.3%;
  }
  .currencies-table-header__sorting {
    margin-inline-end: 27px;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table.currencies-table_new-theme-with-limits .coin-info__item {
    width: 14.3%;
  }
}
.menu-sort {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.menu-sort__content {
  width: 110px;
  left: 0;
  position: absolute;
  z-index: 1;
  top: 85%;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .menu-sort__content {
    left: -25px;
    top: 23px;
  }
}
.menu-sort-button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0;
  cursor: pointer;
}
.menu-sort-button__text {
  display: none;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  color: #808086;
}
.menu-sort-button__text svg {
  margin-inline-start: 4px;
  margin-top: 2px;
  transition: transform ease 0.3s;
}
.menu-sort-button__lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 9px 13px;
}
.menu-sort-button__line {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  overflow: hidden;
}
.menu-sort-button__line:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #808086;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: width ease 0.3s;
}
.menu-sort-button__line:first-child {
  margin-top: 0;
}
.menu-sort-button__line:nth-child(2):before {
  width: 60%;
}
.menu-sort-button__line:nth-child(3):before {
  width: 30%;
}
.menu-sort-button_active .menu-sort-button__line:nth-child(2):before,
.menu-sort-button_active .menu-sort-button__line:nth-child(3):before {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu-sort-button__text {
    display: flex;
  }
  .menu-sort-button__lines {
    display: none;
  }
  .menu-sort-button_active .menu-sort-button__text svg {
    margin-top: 0;
    transform: rotate(180deg);
  }
}
.not-found-currency {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.not-found-currency p {
  color: #808086;
}
.not-found-currency__title {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.not-found-currency__message p {
  font-size: 17px;
  text-align: center;
  margin: 0;
}
.sorted-menu-item {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
}
.sorted-menu-item__input {
  display: none;
}
.sorted-menu-item__input:checked + .sorted-menu-item__name:after {
  opacity: 1;
}
.sorted-menu-item__name {
  position: relative;
  line-height: 22px;
}
.sorted-menu-item__name:before,
.sorted-menu-item__name:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.sorted-menu-item__name:before {
  border: 1px solid #bfbfc3;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}
.sorted-menu-item__name:after {
  position: absolute;
  background: url(1820ff31ecd1658b1098.svg) no-repeat;
  background-size: contain;
  top: -3px;
  left: 0;
  transition: 300ms;
  opacity: 0;
}
.currencies-table-search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 42px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
}
.currencies-table-search__title {
  display: none;
  margin-inline-end: 10px;
}
.currencies-table-search__input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #808086;
  font-weight: 300;
  border: none;
  background: none;
  outline: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-start: 14px;
  padding-inline-end: 30px;
}
.currencies-table-search__input::-moz-placeholder {
  color: #808086;
  opacity: 1;
}
.currencies-table-search__input::placeholder {
  color: #808086;
  opacity: 1;
}
.currencies-table-search svg {
  width: 20px;
  height: 20px;
  margin-inline-start: -14px;
  position: relative;
  left: -14px;
}
html[dir="rtl"] .currencies-table-search svg {
  left: unset;
  right: -14px;
}
@media screen and (min-width: 768px) {
  .currencies-table-search {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-radius: 0;
  }
  .currencies-table-search__input {
    width: 240px;
    height: 32px;
    font-size: 13px;
    line-height: 18px;
    background-color: rgba(196, 196, 196, 0.2);
    border-radius: 6px;
  }
  .currencies-table-search svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 992px) {
  .currencies-table-search__title {
    display: inline-block;
  }
}
.currencies-table-item {
  position: relative;
  height: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  margin-top: 4px;
  padding: 0 14px;
}
.currencies-table-item:hover {
  cursor: pointer;
}
.currencies-table-item:first-child {
  margin-top: 0;
}
.currencies-table-item__full-row-link {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.currencies-table-item_hidden {
  display: none;
}
.currencies-table-item__left {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.currencies-table-item__index {
  position: relative;
  display: none;
}
.currencies-table-item__coin {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex-grow: 1;
  width: 70%;
}
.currencies-table-item__coin-first-image {
  margin-inline-end: -3px;
  width: 21px;
  height: 21px;
}
.currencies-table-item__coin-image {
  width: 21px;
  height: 21px;
  margin: 0;
}
.currencies-table-item__coin-ticker {
  font-size: 13px;
  line-height: 14px;
  text-transform: uppercase;
  color: #2b2b36;
}
.currencies-table-item__coin-images {
  display: flex;
  margin-inline-end: 8px;
  width: 39px;
}
.currencies-table-item__coin-name {
  font-size: 12px;
  line-height: 15px;
  color: #808086;
}
.currencies-table-item__coin-name_with-margin {
  margin-top: 3px;
}
.currencies-table-item .currencies-table-item__coin-sup {
  margin-top: 2px;
}
.currency-sup.currencies-table-item__coin-sup_desktop {
  display: none;
}
.currencies-table-item__right {
  width: 40%;
}
.currencies-table-item > .fiat-coin-info,
.currencies-table-item > .coin-info__item {
  position: relative;
  z-index: 2;
}
.currencies-table-item:hover .btn-exchange img,
.currencies-table-item:hover .btn-exchange svg {
  display: none;
}
.currencies-table-item:hover .btn-exchange .exchange-btn-title {
  display: inline-block;
  position: relative;
  top: -1px;
}
.currencies-table-item__coin-content.currencies-table-item__coin-ticker {
  color: #2b2b36;
  margin-inline-end: 10px;
}
.currencies-table-item__coin-content .currencies-table-item__coin-name {
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .currencies-table-item {
    height: 68px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
  .currencies-table-item__index {
    width: 80px;
    display: block;
  }
  .currencies-table-item__left {
    width: 55%;
  }
  .currencies-table-item__coin {
    width: 45%;
  }
  .currencies-table-item__coin-images {
    margin-inline-end: 15px;
  }
  .currencies-table-item__coin-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    line-height: 17px;
  }
  .currencies-table-item__coin-ticker {
    font-size: 15px;
    line-height: 17px;
    padding-inline-end: 10px;
  }
  .currencies-table-item__coin-name {
    font-size: 15px;
    line-height: 17px;
    margin-top: 0;
  }
  .currencies-table-item__right {
    width: 45%;
  }
  .currencies-table-item:hover .coin-info__item-exchange-title {
    visibility: visible;
    opacity: 1;
  }
  .currencies-table-item:hover .coin-info__availability-icon {
    visibility: hidden;
    opacity: 0;
  }
  .currency-sup.currencies-table-item__coin-sup_mobile {
    display: none;
  }
  .currency-sup.currencies-table-item__coin-sup_desktop {
    display: inline-block;
    margin-inline-start: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .currencies-table-item__coin {
    width: 47%;
  }
}
.coin-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.coin-info__item {
  position: relative;
  width: 14.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 14px;
  flex-grow: 1;
}
.coin-info__item-exchange-title {
  width: 100%;
  height: 37px;
  max-width: 150px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  background-color: #00c26f;
  border-radius: 8px;
  margin: auto;
  transition: visibility, opacity, ease 0.3s;
}
.coin-info__availability-icon {
  transition: visibility, opacity, ease 0.3s;
}
@media screen and (min-width: 768px) {
  .coin-info__item-exchange-title {
    display: flex;
    visibility: hidden;
    opacity: 0;
  }
  .coin-info__item {
    font-size: 15px;
    line-height: 17px;
  }
}
.button-more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-more button {
  width: 100%;
  background-color: rgba(43, 43, 54, 0.09);
  color: #2b2b36;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  border-radius: 8px;
  padding: 12px 48px;
  border: none;
  outline: none;
}
.button-more button:hover {
  background-color: hsl(240, 11.3402061856%, 22.0196078431%);
}
.button-more button:active {
  background-color: hsl(240, 11.3402061856%, 24.0196078431%);
}
@media screen and (min-width: 768px) {
  .button-more button {
    width: auto;
    background-color: #2b2b36;
    color: #fff;
  }
}
.dropdown-menu-selector {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  outline: 0;
  width: 100%;
}
.dropdown-menu-selector__name {
  padding: 0 10px;
}
.dropdown-menu-selector__arrow {
  margin-left: auto;
  transition: transform ease 0.3s;
}
.dropdown-menu-selector__arrow svg {
  display: block;
}
.dropdown-menu-selector_active .dropdown-menu-selector__arrow {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .dropdown-menu-selector {
    width: auto;
  }
  .dropdown-menu-selector__arrow {
    margin-left: 0;
  }
}
.dropdown-menu-list {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(43, 43, 54, 0.1);
  padding: 12px;
  margin: 0;
}
@media screen and (min-width: 481px) {
  .dropdown-menu-list {
    width: calc(100% + 40px);
    right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .dropdown-menu-list {
    width: 300px;
    top: 30px;
  }
}
.dropdown-menu-item {
  list-style-type: none;
  margin-top: 8px;
}
.dropdown-menu-item:first-child {
  margin-top: 0;
}
.dropdown-menu-item__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.dropdown-menu-item__input {
  display: none;
}
.dropdown-menu-item__input:checked + .dropdown-menu-item__box:before {
  opacity: 1;
}
.dropdown-menu-item__box {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #bfbfc3;
  border-radius: 3px;
}
.dropdown-menu-item__box:before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(1820ff31ecd1658b1098.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -1px;
  left: -1px;
  opacity: 0;
}
.dropdown-menu-item__text {
  font-size: 13px;
  line-height: 18px;
  color: #808086;
  text-transform: uppercase;
  padding-right: 5px;
  text-align: left;
}
.dropdown-menu-item__image {
  margin-left: auto;
  flex-shrink: 0;
}
.dropdown-menu {
  position: relative;
  width: 100%;
}
.dropdown-menu__list {
  width: 100%;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .dropdown-menu {
    display: flex;
    justify-content: flex-end;
  }
  .dropdown-menu__list {
    width: 300px;
    top: 28px;
    right: -25px;
  }
}
.dropdown-menu_hide {
  display: none;
}
.fiat-coin-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: right;
}
.fiat-coin-info__tickers {
  font-size: 13px;
  line-height: 14px;
  white-space: nowrap;
}
.fiat-coin-info__text {
  font-size: 13px;
  line-height: 14px;
  color: #2b2b36;
  flex-grow: 1;
}
@media screen and (min-width: 481px) {
  .fiat-coin-info {
    justify-content: space-between;
  }
  .fiat-coin-info__tickers {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .fiat-coin-info {
    justify-content: flex-end;
    width: auto;
    flex-grow: 1;
  }
  .fiat-coin-info__tickers {
    display: none;
  }
  .fiat-coin-info__text {
    font-size: 14px;
    line-height: 16px;
  }
  .fiat-coin-info__tilda {
    display: none;
  }
}
.currency-sup {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #fff;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0);
  padding: 2px 4px;
  top: 0;
  display: inline-block;
  word-break: keep-all;
}
.currency-sup span {
  font-size: 12px;
  line-height: 12px;
}
.currency-sup_with-tooltip {
  cursor: pointer;
}
.currency-sup__tooltip.new-stepper-tooltip {
  width: 300px;
}
.currency-sup_big {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 14px;
  margin: auto 8px;
  position: relative;
  overflow: hidden;
}
.currency-sup_blinking:after {
  content: "";
  display: block;
  width: 20%;
  height: 150%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 10%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 90%
  );
  z-index: 1;
  transform: rotate(30deg);
  position: absolute;
  top: -5px;
  animation: slideBlink 2s ease-in-out infinite;
}
@keyframes slideBlink {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.d-flex_fix {
  display: flex;
}
.justify-content-center_fix {
  justify-content: center;
}
.align-items-center_fix {
  align-items: center;
}
.flex-wrap_fix {
  flex-wrap: wrap;
}
.flex-column_fix {
  flex-direction: column;
}
.new-field__header,
.new-field__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
}
.new-field__footer {
  padding: 8px 0;
}
.new-field__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
.new-field__second-label,
.new-field__footer-label {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  text-align: end;
  letter-spacing: 0.1px;
  margin-inline-start: auto;
  transition: color ease 0.3s;
}
.new-field__footer-label:hover {
  color: #00c26f;
}
.new-field__input-placeholder .new-input:focus + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:not(:placeholder-shown)
  + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:-webkit-autofill
  + .new-field-input__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-field__input {
  position: relative;
  z-index: 1;
}
.new-field__input-placeholder .new-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input::placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input {
  height: 56px;
  padding-top: 16px;
}
.new-field-input__placeholder {
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 16px;
  line-height: 20px;
  color: #808086;
  font-weight: 300;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
html[dir="rtl"] .new-field-input__placeholder {
  transform-origin: top right;
}
.new-field__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
html[dir="rtl"] .new-field__icon {
  right: unset;
  left: 12px;
}
.new-field__qr-button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 20px;
}
.new-field__icon svg {
  display: block;
  transition: fill ease 0.3s;
}
.new-field__warning {
  top: -6px;
}
.new-field__field-prompts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  height: 18px;
  line-height: 100%;
}
.new-field__prompt {
  min-height: 14px;
  font-size: 12px;
  line-height: 14px;
  color: #6a6a7f;
  letter-spacing: 0.1px;
  margin-inline-end: auto;
}
.new-field__quality-prompt {
  font-size: 14px;
  margin-inline-start: auto;
}
.quality-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.quality-prompt_low {
  color: #df3131;
}
.quality-prompt_medium {
  color: #f39321;
}
.quality-prompt_high {
  color: #00c26f;
}
.quality-prompt__icon {
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 992px) {
  .new-field__prompt {
    font-size: 14px;
  }
}
.new-input {
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b36;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  outline: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-start: 16px;
  padding-inline-end: 45px;
  margin: 0;
  transition: borderColor, boxShadow, ease 0.3s;
}
.new-input::-moz-placeholder {
  color: #808086;
}
.new-input::placeholder {
  color: #808086;
}
.new-input:is(:-webkit-autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.new-input:is(:-webkit-autofill, :autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.new-input.new-input_success {
  border-color: #00c26f;
  box-shadow: 0 0 0 2px rgba(0, 194, 111, 0.2), 0 0 0 30px #fff inset !important;
}
.new-input_error {
  border-color: #fcedba;
}
.new-warning {
  position: relative;
  z-index: 2;
}
.new-warning__content {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  letter-spacing: 0.1px;
  background-color: #fcedba;
  border-radius: 0 0 4px 4px;
  padding: 5px 16px;
}
.new-warning_absolute .new-warning__content {
  position: absolute;
  top: 0;
  left: 0;
  word-break: break-all;
}
.new-field.registration__password .new-warning_absolute .new-warning__content {
  word-break: normal;
}
.new-warning__content.new-warning__content_button {
  border: none;
  text-align: left;
}
.new-warning__content.new-warning__content_button .error-with-action span {
  text-decoration: underline;
  cursor: pointer;
}
.new-agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.new-agreement__checkbox {
  margin-inline-end: 8px;
}
.new-agreement__content {
  font-size: 14px;
  line-height: 18px;
  color: #6a6a7f;
  transition: all 0.3s ease;
}
.new-agreement__content a {
  color: #00c26f;
  text-decoration: underline;
  transition: color ease 0.3s;
}
.new-agreement__content a:hover {
  text-decoration: none;
  color: #00c26f;
}
.new-agreement__content_orange,
.new-agreement__content_orange a {
  color: #f39321;
}
.new-checkbox {
  cursor: pointer;
}
.new-checkbox__input {
  display: none;
}
.new-checkbox__input:checked + .new-checkbox__box {
  border-color: #00c26f;
  background-color: #00c26f;
}
.new-checkbox__input:checked + .new-checkbox__box svg {
  opacity: 1;
}
.new-checkbox__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #808086;
  border-radius: 4px;
  background-color: #fff;
  transition: background ease 0.3s;
}
.new-checkbox__box svg {
  opacity: 0;
  transition: opacity ease 0.3s;
}
.new-checkbox_error .new-checkbox__box {
  animation-name: new-checkbox-scale;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-color: #f39321;
}
@keyframes new-checkbox-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.new-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.new-button:hover {
  background-color: #00c87a;
  color: #fff;
}
.new-button:focus {
  outline: 0;
  -webkit-text-decoration: 0;
  text-decoration: 0;
  color: #fff;
}
.new-button:disabled {
  pointer-events: none;
}
.new-button_white {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
  transition: background, color, ease 0.3s;
}
.new-button_white:focus {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
}
.authorization-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.authorization-section__icon {
  display: flex;
  justify-content: center;
}
.authorization-section.login-section .authorization-section__icon,
.authorization-section.registration-section .authorization-section__icon {
  display: none;
}
.authorization-section-header {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 8px;
}
.authorization-section__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #2b2b36;
}
.authorization-section__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #6a6a7f;
  text-align: center;
}
.authorization-section__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.authorization-section__mobile-benefits
  .authorization-section__mobile-benefit-icon:last-of-type {
  display: none;
}
.authorization-section__mobile-benefits {
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
}
.authorization-section__mobile-benefit {
  margin: 0 auto;
}
.authorization-section__mobile-benefit-icon {
  width: 12px;
  height: 14px;
}
.security-verification .authorization-section-header {
  flex-direction: column;
  align-items: flex-start;
}
.security-verification .authorization-section__description {
  text-align: left;
  font-size: 16px;
  color: #6a6a7f;
  line-height: 24px;
}
.forgot-password-section .authorization-section-header {
  flex-direction: column;
  align-items: flex-start;
}
.forgot-password-section .authorization-section__description {
  text-align: left;
  font-size: 16px;
  color: #6a6a7f;
}
.link-expired .authorization-section-header {
  flex-direction: column;
}
.link-expired .authorization-section__content {
  flex-grow: 0;
  margin-top: auto;
}
.success-block .authorization-section-header {
  flex-direction: column;
}
.success-block .authorization-section__icon {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .authorization-section.login-section .authorization-section__icon,
  .authorization-section.registration-section .authorization-section__icon {
    display: flex;
    justify-content: center;
    width: 19px;
    height: 17px;
  }
}
@media screen and (min-width: 768px) {
  .security-verification .authorization-section-header {
    gap: 12px;
  }
  .authorization-section-header {
    margin-bottom: 32px;
  }
  .authorization-section__title {
    font-size: 24px;
    line-height: 32px;
  }
  .authorization-section__description {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-section__mobile-benefits {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .authorization-section.login-section .authorization-section__icon,
  .authorization-section.registration-section .authorization-section__icon {
    display: none;
  }
}
.authorization-loader__container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: hsla(0, 0%, 100%, 0.7);
}
.authorization-loader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.registration {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.registration__email .new-field__input input {
  text-transform: lowercase;
}
.registration__email .new-field__input input::-moz-placeholder {
  text-transform: none;
}
.registration__email .new-field__input input::placeholder {
  text-transform: none;
}
.registration__password {
  margin-top: 16px;
}
.registration__repeated-password {
  margin-top: 16px;
}
.registration__agreement {
  margin-top: 16px;
  margin-bottom: 16px;
}
.registration__button {
  margin-top: auto;
}
.registration__footer {
  margin-top: 16px;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
}
.registration__footer_captcha {
  margin-bottom: 16px;
}
.registration__footer-link {
  position: relative;
  margin-inline-start: auto;
  padding-right: 18px;
  font-size: 14px;
  color: #00c26f;
  text-decoration: none;
  outline: 0;
  text-underline-offset: 4px;
  transition: all 0.1s ease-in;
}
.registration__footer-link:hover {
  color: #00a451;
  text-decoration: underline;
}
.registration__footer-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #00c26f;
  border-top: 2px solid #00c26f;
  transform: rotate(45deg);
  transition: all 0.1s ease-in;
}
.registration__footer-link:hover::after {
  border-color: #00a451;
}
.recaptcha-registration-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.registration__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.registration__captcha-error_visible {
  opacity: 1;
}
.recaptcha-registration-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
}
.recaptcha {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
}
.recaptcha.recaptcha_registration {
  height: 66%;
}
.recaptcha.recaptcha_registration-error {
  border-color: #f39321;
}
.recaptcha-registration-wrapper__loader {
  margin: 0 auto;
}
.registration__agreement_second-field {
  margin-bottom: 0;
}
.registration__hint {
  position: relative;
  margin: 32px 0 12px 0;
  padding: 8px 0;
  min-height: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #6a6a7f;
  text-align: center;
}
.registration__hint::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #eae8ed;
}
.registration__hint__text {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: #f6f4f8;
  z-index: 1;
}
.registration__error {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .registration__hint__text {
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .registration__footer {
    font-size: 14px;
    line-height: 140%;
  }
}
.login {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.login__password {
  margin-top: 16px;
}
.login__button {
  margin-top: auto;
}
.login__button_recapture {
  margin-top: 24px;
}
.login__footer {
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
  margin-top: 16px;
}
.login__footer-link {
  color: #2b2b36;
  text-decoration: underline;
  outline: 0;
  transition: color ease 0.3s;
}
.login__footer-link:hover {
  text-decoration: none;
  color: #00c26f;
}
.login__social-buttons {
  margin-bottom: 24px;
}
.login__hint {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #808086;
  text-align: center;
  padding: 0;
  margin: 0 0 16px 0;
  min-height: 14px;
}
.login__error {
  margin-top: 24px;
}
.login__captcha-error {
  margin: 6px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.login__captcha-error_visible {
  opacity: 1;
}
.recaptcha-login-wrapper {
  min-height: 120px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.recaptcha-login-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.recaptcha {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.recaptcha.recaptcha_login {
  height: 65%;
}
.recaptcha.recaptcha_login-error {
  border-color: #f39321;
}
.warning-tooltip {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #e62e04;
  background-color: #fff;
  opacity: 1;
}
.warning-tooltip .rc-tooltip-arrow {
  display: none;
}
.warning-tooltip::after,
.warning-tooltip::before {
  top: 100%;
  left: 10%;
  border: solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.warning-tooltip::after {
  border-color: hsla(0, 0%, 100%, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.warning-tooltip::before {
  border-color: rgba(230, 46, 4, 0);
  border-top-color: #e62e04;
  border-width: 7px;
  margin-left: -7px;
}
.warning-tooltip__success {
  border: 1px solid #00c26f;
}
.warning-tooltip__success::before {
  border-top-color: #00c26f;
}
.warning-tooltip__warning {
  border: 1px solid #fec107;
}
.warning-tooltip__warning::before {
  border-top-color: #fec107;
}
.warning-tooltip .rc-tooltip-inner {
  background-color: #fff;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  padding: 2px 20px;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  border-right-color: #e62e04;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  border-left-color: #e62e04;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  border-top-color: #e62e04;
  bottom: -6px;
}
.warning-tooltip .rc-tooltip-placement-right .rc-tooltip-arrow {
  border-right-color: #fff;
}
.warning {
  margin: 5px 0;
  background-color: rgba(61, 61, 112, 0.04);
  padding: 13px 23px 11px 35px;
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 379px) {
  .warning {
    padding-left: 30px;
  }
}
.warning-tooltip .warning {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: relative;
  border-radius: 0;
  margin: 0;
}
.exchange-input + .warning {
  margin-top: 14px;
}
.warning--icon {
  position: absolute;
  top: 12px;
  left: 12px;
}
.warning--content {
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  white-space: pre-wrap;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #808086;
}
.warning--description {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
.warning__exchange-creation-error {
  margin-bottom: 30px;
}
.metamask-login__button {
  margin-top: 24px;
}
.metamask-login__icon {
  width: 120px;
  margin: 40px auto 0 auto;
}
.metamask-login__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.0736842px;
  color: #000;
  margin-top: 16px;
}
.metamask-login__warning {
  margin-top: 16px;
}
.metamask-login__warning.phishing-warning .warning {
  padding: 13px 23px 11px 35px;
  display: flex;
}
.metamask-login__warning.phishing-warning .warning--description img {
  border: none;
}
.metamask-login__error {
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  box-sizing: border-box;
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0736842px;
  color: #808086;
}
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-buttons__button {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #eae8ed;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.social-buttons__button:hover {
  border-color: #00c26f;
}
.social-buttons__button_big {
  width: 80px;
  height: 80px;
}
.social-buttons__button_big img {
  width: 48px;
}
.social-buttons__button:last-child {
  margin-inline-end: 0;
}
.button_loader-image {
  width: 40px;
}
.social-buttons__connected {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c26f;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
#walletconnect-wrapper a {
  color: #337ab7;
  text-decoration: none;
}
#walletconnect-wrapper .walletconnect-connect__button {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .social-buttons__button {
    flex: initial;
  }
}
.set-up-login__button {
  margin-top: 25px;
}
.set-up-wallet .authorization-section__content {
  padding-top: 0;
}
.set-up-wallet__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.074px;
  color: #000;
  margin: 0;
}
.set-up-wallet__buttons {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
.wallet-connect-modal .authorization-section__content {
  align-items: center;
}
.wallet-connect-modal__icon {
  width: 120px;
  height: 120px;
}
.wallet-connect-modal__status {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.07px;
  color: #000;
  margin-top: 16px;
}
.wallet-connect-modal__pending {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.4px;
  color: #00c26f;
}
.wallet-connect-modal__error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  margin-top: 160px;
  width: 100%;
}
.wallet-connect-modal__error-button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  text-decoration-line: underline;
}
.forgot-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.forgot-password__button {
  margin-top: auto;
}
.forgot-password__recaptcha {
  margin: 25px auto 0 auto;
}
.forgot-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
}
.forgot-password__captcha-error {
  margin: 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.forgot-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha.recaptcha_forgot-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_forgot-password {
  height: 74.5%;
}
.success-block__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.success-block__button {
  margin-top: auto;
}
.success-block__button_timer {
  border: 1px solid #aeb0bd;
  background: #fff;
  color: #aeb0bd;
}
.success-block__button-time {
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .success-block__button_timer {
    background: #fff;
  }
}
.security-verification__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.security-verification__button {
  margin-top: auto;
}
.security-verification__recaptcha {
  margin: 32px auto 0 auto;
}
.security-verification__recaptcha-hint {
  text-align: center;
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.security-verification__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.security-verification__captcha-error_visible {
  opacity: 1;
}
.recaptcha_verification-error {
  border: 1px solid #f39321;
  width: calc(100% - 2px);
  height: 74.5%;
  border-radius: 4px;
}
.security-verification__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.security-verification__button {
  margin-top: auto;
}
.security-verification__recaptcha {
  margin: 32px auto 0 auto;
}
.security-verification__recaptcha-hint {
  text-align: center;
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.security-verification__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.security-verification__captcha-error_visible {
  opacity: 1;
}
.recaptcha_verification-error {
  border: 1px solid #f39321;
  width: calc(100% - 2px);
  height: 74.5%;
  border-radius: 4px;
}
.security-verification__code-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.security-verification__resend-button {
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #6a6a7f;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  border: none;
}
.security-verification__form .new-warning__content.new-warning__content_button {
  cursor: default;
}
.security-verification__resend-button.security-verification__timer {
  cursor: default;
}
.security-verification__subtitle {
  color: #2b2b37;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.reset-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.reset-password__password-repeated {
  margin-top: 25px;
}
.reset-password__button {
  margin-top: auto;
}
.change-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.change-password__password,
.change-password__password-repeated {
  margin-top: 25px;
}
.change-password__button {
  margin-top: auto;
}
.change-password__button_modal {
  margin-top: 10px;
}
.change-password__recaptcha-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto;
}
.recaptcha {
  display: inline-block;
}
.change-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.change-password__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.change-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha_change-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_change-password {
  height: 66%;
}
.signup-benefits-desktop {
  width: 447px;
  height: 626px;
  background: url(8baab255ecdda83a57b6.svg) center center no-repeat;
  background-size: cover;
  padding: 48px 53px;
}
.signup-benefits-desktop__item-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}
.signup-benefits-desktop__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.signup-benefits-desktop__item {
  display: flex;
  gap: 8px;
  margin: 0;
}
.signup-benefits-desktop__item-icon {
  width: 12px;
  height: 24px;
}
.signup-benefits-desktop__item-title_green {
  color: #00c26f;
}
.signup-benefits-desktop__item-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
  opacity: 1;
}
.authorization-modal {
  max-width: 447px;
}
.authorization-modal__content {
  max-width: 447px;
  min-height: 510px;
}
.authorization-modal__content:has(.registration-section) {
  height: 580px;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.login-section) {
  height: auto;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.metamask-login) {
  min-height: 605px;
}
.authorization-modal__content.authorization-modal__content_additional-block {
  height: 626px;
}
.authorization-modal-dialog-paper.authorization-modal-dialog-paper_desktop {
  display: flex;
  flex-direction: row;
  max-width: 894px;
}
html[dir="rtl"] .authorization-modal .authorization-modal__content button {
  right: unset;
  left: 12px;
}
@media screen and (min-width: 480px) {
  .authorization-modal__content:has(.registration-section) {
    padding: 48px 20px;
  }
  .authorization-modal__content:has(.login-section) {
    padding: 48px 20px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-modal__content:has(.registration-section) {
    height: 626px;
    padding: 38px 55px;
  }
  .authorization-modal__content:has(.login-section) {
    height: 626px;
    padding: 38px 55px;
  }
}
.link-expired__button {
  margin-top: 25px;
}
.link-expired__button-time {
  padding-left: 5px;
}
.wallet-connect-error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  width: 100%;
}
.authorization {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 568px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.authorization__back {
  height: 20px;
  margin: 0 0 24px 0;
  padding: 0;
  padding-left: 22px;
  background: rgba(0, 0, 0, 0);
  border: none;
  font-size: 14px;
  color: #6a6a7f;
  z-index: 1;
  cursor: pointer;
}
.authorization__back:hover {
  color: #00c26f;
}
.authorization__back span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #6a6a7f;
  border-top: 2px solid #6a6a7f;
  transform: rotate(-45deg);
}
.authorization__back:hover span::after {
  border-color: #00c26f;
}
.authorization__success {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.authorization__success-button {
  margin-top: auto;
}
.walletconnect-modal__footer {
  flex-wrap: wrap;
}
.turnstile-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .authorization__back {
    left: -43px;
  }
}
@media screen and (min-width: 992px) {
  .authorization {
    min-height: initial;
  }
}
.mobile-menu-item {
  font-size: 24px;
  margin-bottom: 10px;
}
.mobile-menu-item__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 160px;
  outline: 0;
}
.mobile-menu-item__name svg {
  display: block;
  position: static;
}
.mobile-menu-item__submenu {
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 15px;
}
.mobile-menu-item__submenu-item {
  font-size: 24px;
  margin-top: 10px;
}
.mobile-menu-item__submenu-item:first-child {
  margin-top: 0;
}
.mobile-menu-item__submenu-link {
  color: #fff;
}
.crypto-loan-main-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.section_dark.crypto-loan__main {
  margin: 0;
}
.crypto-loan-main-offer__calculator.loan-calculator__wrapper {
  padding: 0;
  margin-top: 0;
}
.crypto-loan-main-header__text {
  max-width: 210px;
  margin: 0;
}
.crypto-loan-main-offer__text {
  max-width: 552px;
}
.crypto-loan-main-offer__image {
  display: none;
}
.crypto-loan-main__get-loan-button {
  width: 100%;
  height: 48px;
  background: #00c26f;
  border-radius: 6px;
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 16px;
  border: none;
  font-weight: 900;
}
.crypto-loan-main__get-loan-button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.crypto-loan-main-text {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.34px;
  color: #fff;
  margin: 24px 0;
  font-size: 14px;
  line-height: 20px;
}
.crypto-loan-main-header {
  margin: 0;
  padding: 0;
  height: auto;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 84px;
  max-width: 552px;
}
.crypto-loan-main-benefits {
  margin-top: 16px;
}
.crypto-loan-main-benefits__item {
  margin-top: 40px;
}
.crypto-loan-main-benefits__item-icon {
  width: 40px;
  height: 40px;
}
.crypto-loan-main-benefits__item-header {
  font-size: 20px;
  line-height: 24px;
  margin: 16px 0 8px 0;
  font-weight: 500;
}
.crypto-loan-main-benefits__item-text {
  font-weight: 300;
  letter-spacing: 0.34px;
  color: #fff;
  max-width: 358px;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .crypto-loan-main__get-loan-button {
    width: 360px;
    height: 48px;
  }
  .crypto-loan-main-text {
    margin: 40px 0;
    font-size: 16px;
    line-height: 22px;
  }
  .crypto-loan-main-header__text {
    max-width: 100%;
  }
  .crypto-loan-main-header {
    display: block;
  }
  .crypto-loan-main-benefits {
    margin-top: 40px;
  }
  .crypto-loan-main-benefits__item {
    margin-top: 80px;
  }
  .crypto-loan-main-benefits__item-icon {
    width: 48px;
    height: 48px;
  }
  .crypto-loan-main-benefits__item-header {
    margin: 24px 0 16px 0;
    font-size: 22px;
    line-height: 28px;
  }
  .crypto-loan-main-benefits__item-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 992px) {
  .crypto-loan-main-offer {
    flex-direction: row;
  }
  .crypto-loan-main-offer__calculator.loan-calculator__wrapper {
    padding: 0 15px;
  }
}
.modal-ui__backdrop {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: background 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  z-index: 1001;
  justify-content: center;
  align-items: center;
  background: none;
  cursor: initial;
  outline: none;
}
.modal-ui__backdrop[role="button"],
.modal-ui[role="button"] {
  cursor: initial;
}
.modal-ui__backdrop_active {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.modal-ui {
  background: #fff;
  padding: 24px 16px 32px 24px;
  border-radius: 12px;
  transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  top: 0px;
  opacity: 0;
  position: relative;
  cursor: initial;
  outline: none;
}
.modal-ui_active {
  top: 0;
  opacity: 1;
}
.modal-ui__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-ui__header-text {
  font-weight: normal;
  font-size: 22px;
  line-height: 32px;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.modal-ui__header-button-close {
  border: none;
  outline: none;
  background: none;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
}
.modal-ui__content {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .modal-ui {
    padding: 32px 24px;
  }
  .modal-ui__header-text {
    font-size: 28px;
  }
}
.step-slider {
  margin-top: 32px;
}
.supported-assets {
  display: flex;
  margin-top: 56px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.supported-assets__header {
  font-weight: normal;
  letter-spacing: 0.34px;
  color: #2b2b36;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
.supported-assets__coins {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.supported-assets__coins_mobile {
  display: flex;
  padding-right: 2px;
}
.supported-assets__coins_desktop {
  display: none;
}
.coins__coin-image {
  width: 24px;
  height: 24px;
  margin: 0 16px 16px 0;
}
.coins__more-button {
  border: none;
  background: none;
  outline: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.coins__more-button-icon {
  width: 24px;
  height: 24px;
}
.supported-assets-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.supported-assets-modal__header-text {
  font-weight: normal;
  font-size: 22px;
  line-height: 32px;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.supported-assets-modal__currencies {
  margin: 24px 0 0 0;
}
.supported-assets-modal__currencies-header {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.supported-assets-currencies__coins {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.supported-assets-coins__coin {
  margin: 0 16px 16px 0;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .step-slider {
    margin-top: 64px;
  }
  .supported-assets {
    margin-top: 64px;
  }
  .supported-assets__header {
    margin: 0 25px 0 0;
    font-size: 20px;
    line-height: 24px;
  }
  .supported-assets__coins_desktop {
    display: flex;
  }
  .supported-assets__coins_mobile {
    display: none;
  }
  .coins__more-button-icon {
    width: 32px;
    height: 32px;
  }
  .coins__coin-image {
    width: 32px;
    height: 32px;
  }
  .supported-assets-modal__header-text {
    font-size: 28px;
  }
  .supported-assets-modal__currencies {
    margin: 32px 0 0 0;
  }
  .supported-assets-currencies__coins {
    margin-top: 16px;
  }
  .supported-assets-coins__coin {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .supported-assets {
    flex-direction: row;
    justify-content: initial;
    align-items: center;
  }
}
.crypto-loan-why__header {
  margin: 0;
}
.crypto-loan-why__text {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  max-width: 660px;
  margin: 24px 0 0 0;
}
.rise-fall__content {
  max-width: 600px;
}
.rise-fall__wrap {
  margin: 40px 0 0 0;
  display: flex;
}
.rise-fall__radio-buttons {
  display: flex;
  max-width: 528px;
}
.rise-fall__button {
  max-width: 168px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #323240;
  color: #6a6a7f;
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.34px;
  flex-grow: 1;
  margin-right: 7px;
}
.rise-fall__button:last-child {
  margin-right: 0;
}
.rise-fall__button_active {
  background: #3d3d58;
  color: #fff;
}
.rise-fall__button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.rise-fall__text {
  margin-top: 24px;
}
.rise-fall__text-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.rise-fall__text-list:before {
  content: "";
  width: 2px;
  height: 100%;
  background-image: linear-gradient(#3d3d58 60%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 2px 25px;
  background-repeat: repeat-y;
  position: absolute;
  left: 4px;
  top: 0;
}
.rise-fall__text-list-item {
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  position: relative;
  display: block;
  margin-top: 16px;
  margin-left: 26px;
}
.rise-fall__text-list-item:first-child {
  margin-top: 0;
}
.rise-fall__text-list_falling .rise-fall__text-list-item {
  margin-top: 24px;
}
.rise-fall__text-list_falling .rise-fall__text-list-item:first-child {
  margin-top: 0;
}
.rise-fall__text-list-item:after {
  content: "";
  display: block;
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
  background: #3d3d58;
  border-radius: 50%;
  position: absolute;
  left: -26px;
  top: 5px;
}
.rise-fall__text-list-item:first-child:before {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 0;
  left: -26px;
  background: #2b2b36;
}
.rise-fall__text-list-item:last-child:before {
  content: "";
  display: block;
  height: calc(100% - 10px);
  width: 10px;
  position: absolute;
  bottom: 0;
  left: -26px;
  background: #2b2b36;
}
.rise-fall__image {
  display: none;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rise-fall__image img {
  width: 320px;
  height: 320px;
}
@media screen and (min-width: 768px) {
  .crypto-loan-why__text {
    font-size: 16px;
    line-height: 22px;
    margin-top: 40px;
  }
  .rise-fall__wrap {
    margin: 64px 0 0 0;
  }
  .rise-fall__button {
    max-width: 260px;
    margin-right: 8px;
  }
  .rise-fall__button:last-child {
    margin-right: 0;
  }
  .rise-fall__text-list-item {
    font-size: 16px;
    line-height: 22px;
    margin-top: 24px;
  }
  .rise-fall__text-list_falling {
    margin-bottom: 2px;
  }
  .rise-fall__text-list_falling .rise-fall__text-list-item {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .rise-fall__image {
    display: flex;
  }
}
.crypto-loan-faq-chapter {
  margin: 40px 0 0 0;
}
.crypto-loan-faq-chapter__header {
  margin: 0;
  padding: 0;
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: 500;
  color: #2b2b36;
  font-size: 20px;
  line-height: 24px;
}
.crypto-loan-faq-chapter__questions {
  margin: 16px 0 0 0;
}
.crypto-loan-faq-chapter__questions:last-child {
  border-bottom: 1px solid #e5e5e9;
}
.crypto-loan-faq-question-wrap {
  border-top: 1px solid #e5e5e9;
}
.crypto-loan-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  outline: none;
  background: rgba(0, 0, 0, 0);
  border: none;
  width: 100%;
}
.crypto-loan-faq-question:hover {
  cursor: pointer;
}
.crypto-loan-faq-question__title {
  margin: 0;
}
.crypto-loan-faq-question__text {
  margin: 0;
  padding: 0;
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #2b2b36;
  max-width: calc(100% - 30px);
  text-align: start;
}
.crypto-loan-faq-question__button {
  padding: 0;
  display: block;
  border: none;
  outline: none;
  width: 13px;
  height: 1px;
  margin: 1px 0 0 0;
  background: #2b2b36;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.crypto-loan-faq-question__button:before {
  content: "";
  display: block;
  background: #2b2b36;
  position: relative;
  width: 1px;
  height: 13px;
  top: -6px;
  left: 6px;
}
html[dir="rtl"] .crypto-loan-faq-question__button:before {
  left: unset;
  right: 6px;
}
.crypto-loan-faq-question__button_open,
html.no-js .crypto-loan-faq-question__button {
  transform: rotate(45deg);
}
.crypto-loan-faq-question__answer {
  max-width: 842px;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  display: block;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.crypto-loan-faq-question__answer-text {
  margin: 0;
  padding: 0;
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.34px;
  color: #2b2b36;
  max-width: 295px;
  font-size: 16px;
  line-height: 22px;
}
.crypto-loan-faq-question__answer_open,
.no-js .crypto-loan-faq-question__answer {
  max-height: 800px;
  opacity: 1;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .crypto-loan-faq-chapter__header {
    font-size: 28px;
    line-height: 32px;
  }
  .crypto-loan-faq-chapter__questions {
    margin: 40px 0 0 0;
  }
  .crypto-loan-faq-chapter {
    margin: 64px 0 0 0;
  }
  .crypto-loan-faq-question__text {
    font-size: 20px;
    line-height: 24px;
  }
  .crypto-loan-faq-question__button {
    margin: 2px 0 0 0;
    width: 20px;
    height: 2px;
  }
  .crypto-loan-faq-question__button:before {
    width: 2px;
    height: 20px;
    top: -9px;
    left: 9px;
  }
  html[dir="rtl"] .crypto-loan-faq-question__button:before {
    left: unset;
    right: 9px;
  }
  .crypto-loan-faq-question__answer-text {
    max-width: calc(100% - 30px);
    font-size: 20px;
    line-height: 28px;
  }
}
.form-header {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.04px;
  color: #2b2b37;
  display: flex;
  justify-content: space-between;
}
.form-header p {
  margin: 0;
  padding: 0;
}
.form-header__actions {
  display: none;
}
.form-header__button {
  display: block;
  border: none;
  background: none;
  border-bottom: 1px solid #00c26f;
  color: #00c26f;
  margin: 0 0 0 8px;
  padding: 0;
}
.form-header.form-header_mobile {
  display: flex;
  margin-top: 24px;
}
.form-header.form-header_mobile .form-header__actions {
  display: flex;
}
@media screen and (min-width: 768px) {
  .form-header__actions {
    display: flex;
  }
  .form-header.form-header_mobile {
    display: none;
  }
}
.auth-form__recaptcha {
  position: relative;
  margin-top: 20px;
  min-height: 98px;
}
.auth-form__recaptcha .recaptcha iframe {
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  border-radius: 4px;
}
.auth-form__recaptcha .recaptcha.auth-form__recaptcha_error iframe {
  border-color: #f39321;
}
.auth-form__captcha-error {
  position: absolute;
  margin: 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.auth-form__captcha-error_visible {
  opacity: 1;
}
.auth-form__field {
  margin-top: 16px;
}
.auth-form__field .new-field__label {
  color: #808086;
}
.crypto-loan {
  font-family: Roboto, serif;
  font-style: normal;
  background: #fff;
}
p {
  opacity: 1;
  z-index: auto;
}
.section {
  padding: 56px 0;
  margin: 0;
  color: #2b2b36;
}
.section:first-child {
  padding: 24px 0 56px 0;
}
.section h1,
.section h2,
.section h3,
.section p {
  color: #2b2b36;
}
.section_dark {
  background: #2b2b36;
  color: #fff;
}
.section_dark h1,
.section_dark h2,
.section_dark span[role="heading"],
.section_dark h3,
.section_dark p {
  color: #fff;
}
.section h1 {
  font-size: 40px;
  line-height: 48px;
}
.section h2,
.section .crypto-loan-faq__header {
  font-size: 28px;
  line-height: 36px;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
  .section:first-child {
    padding: 120px 0;
  }
  .section h1 {
    font-weight: 500;
    font-size: 80px;
    line-height: 88px;
  }
  .section h2,
  .section .crypto-loan-faq__header {
    font-weight: 500;
    font-size: 44px;
    line-height: 56px;
    margin: 0;
  }
  .crypto-loan-faq-chapter h3,
  span.crypto-loan-faq-chapter__header {
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
  }
}
.step-slider__desktop {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.step-slider__desktop.step-slider__desktop_only {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.step-slider-desktop-images {
  position: relative;
}
.step-slider-desktop-images_desktop {
  display: none;
}
.step-slider-desktop-images_mobile {
  display: block;
}
.step-slider-desktop-steps {
  margin-inline-end: 30px;
}
.step-slider-desktop-steps__step {
  padding-inline-start: 48px;
  margin-inline-start: 25px;
  position: relative;
  border-inline-start: 2px solid #ebebee;
  padding-bottom: 32px;
}
.step-slider-desktop-steps__step:last-child {
  border-inline-start: none;
}
.step-slider-desktop-steps__step:last-child
  .step-slider-desktop-steps__step-number {
  left: -23px;
}
.step-slider-mobile-content-blocks__step-count {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #9c9ca7;
}
html[dir="rtl"]
  .step-slider-desktop-steps__step:last-child
  .step-slider-desktop-steps__step-number {
  left: unset;
  right: -23px;
}
.step-slider-desktop-steps__step-number {
  display: block;
  width: 48px;
  height: 48px;
  background: #ebebee;
  border-radius: 4px;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #888889;
  border: none;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  left: -25px;
  transition: all 0.3s ease-in-out;
}
html[dir="rtl"] .step-slider-desktop-steps__step-number {
  left: unset;
  right: -25px;
}
.step-slider-desktop-steps__step-header {
  font-size: 24px;
  line-height: 28px;
  color: #2b2b36;
  margin: 0;
  padding: 9px 0 0 0;
  display: block;
  border: none;
  outline: none;
  background: none;
  text-align: start;
}
.step-slider-desktop-steps__step-text {
  margin: 16px 0 0 0;
  padding: 0;
  max-width: 380px;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #2b2b36;
  max-height: 0;
  overflow: hidden;
}
@keyframes stepSlider_slideDown {
  0% {
    max-height: 0px;
    opacity: 0;
  }
  30% {
    max-height: 0px;
    opacity: 0;
  }
  to {
    max-height: 150px;
    opacity: 1;
  }
}
@keyframes stepSlider_slideUp {
  0% {
    max-height: 150px;
    opacity: 1;
  }
  70% {
    max-height: 0px;
    opacity: 0;
  }
  to {
    max-height: 0px;
    opacity: 0;
  }
}
.step-slider-desktop-steps__step_active {
  padding-bottom: 30px;
}
.step-slider-desktop-steps__step_active
  .step-slider-desktop-steps__step-number {
  background: #00c26f;
  color: #fff;
}
.step-slider-desktop-steps__step_active .step-slider-desktop-steps__step-text {
  max-height: 150px;
  animation: stepSlider_slideDown 0.5s 1 linear;
}
.step-slider-desktop-steps__step_closed .step-slider-desktop-steps__step-text {
  max-height: 0px;
  animation: stepSlider_slideUp 0.5s 1 linear;
}
.step-slider-desktop-images__image {
  width: 648px;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}
.step-slider-desktop-images__image_active {
  opacity: 1;
  z-index: 1;
  position: relative;
}
.step-slider__mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.step-slider-mobile-content-blocks {
  max-width: 100%;
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.step-slider-mobile-content-blocks__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
}
.step-slider-mobile-content-blocks__block-image-wrapper {
  width: calc(50% - 12px);
  flex-shrink: 0;
}
.step-slider-mobile-content-blocks__block-image {
  width: 100%;
}
.step-slider-mobile-content-blocks__block-content {
  margin-inline-start: 16px;
}
.step-slider-mobile-content-blocks__block-content-header {
  font-size: 20px;
  line-height: 24px;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.step-slider-mobile-content-blocks__block-content-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #2b2b36;
  margin-top: 8px;
}
.step-slider-mobile-controls {
  margin: 24px 0 0 0;
  display: flex;
}
.step-slider-mobile-controls__button {
  display: block;
  border: none;
  outline: none;
  margin: 0 4px 0 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-inline-start: 0;
  margin-inline-end: 4px;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e5e9;
  transition: background 0.3s ease-in-out;
}
.step-slider-desktop-steps__step-number.step-slider-desktop-steps__step-number_round {
  border-radius: 50%;
}
.step-slider-mobile-controls__button:last-child {
  margin: 0;
}
.step-slider-mobile-controls__button_active {
  background: #0dc171;
}
.step-slider__button {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1px;
  color: #fff;
  background: #0dc171;
  border-radius: 4px;
  padding: 12px 36px;
  border: none;
  margin-top: 8px;
}
.step-slider__button_mobile {
  position: absolute;
  bottom: -23px;
  z-index: 2;
  width: calc(100% - 32px);
  display: flex;
  justify-content: center;
}
.step-slider__button:hover {
  color: #fff;
  opacity: 0.8;
}
.step-slider__button_desktop {
  display: none;
}
@media (min-width: 992px) {
  .step-slider__desktop {
    display: flex;
  }
  .step-slider__desktop.step-slider__desktop_only {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .step-slider__mobile {
    display: none;
  }
  .step-slider-desktop-images__image {
    width: 340px;
    height: 687px;
  }
  .step-slider__button_desktop {
    display: inline-flex;
  }
  .step-slider__button_mobile {
    display: none;
  }
  .step-slider__desktop.step-slider__desktop_only
    .step-slider-desktop-images_mobile {
    display: none;
  }
  .step-slider__desktop.step-slider__desktop_only
    .step-slider-desktop-images_desktop {
    display: block;
  }
  .step-slider-desktop-steps__step-header {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .step-slider__desktop {
    flex-direction: row;
  }
  .step-slider__desktop.step-slider__desktop_only {
    display: flex;
    flex-direction: row;
  }
  .step-slider-desktop-images_desktop {
    display: block;
  }
  .step-slider-desktop-images_mobile {
    display: none;
  }
  .step-slider-desktop-images__image {
    box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12),
      0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    width: 648px;
    height: 472px;
  }
}
.loan-calc-tabs {
  display: flex;
  width: 100%;
  top: 1px;
  position: relative;
}
.loan-calc-tabs__tab {
  width: 50%;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f7f7f9;
  border: 1px solid #dce2ea;
  border-bottom: 1px solid #e9e7ee;
  outline: none;
  padding: 15px 0 15px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.4px;
  color: #707070;
  border-radius: 12px 12px 0 0;
}
.loan-calc-tabs__tab_active {
  z-index: 2;
  background: #fff;
  color: #343443;
  border: 1px solid #e9e7ee;
  border-bottom: none;
}
.loan-calc-tabs__tab_active.loan-calc-tabs__tab::before {
  background: #fff;
  border-color: #e9e7ee;
}
.loan-calc-tabs__icon {
  width: 20px;
  margin-right: 4px;
  z-index: 1;
}
html[dir="rtl"] .loan-calc-tabs__icon {
  margin-left: 4px;
  margin-right: 0;
}
.loan-calc-tabs__tab::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  width: 25px;
  height: calc(100% + 1px);
  background: #f7f7f9;
  border: 1px solid #dce2ea;
  border-bottom: none;
  z-index: 1;
}
.loan-calc-tabs__tab_bull::before {
  right: -10px;
  transform: skewX(20deg);
  border-radius: 0 5px 0 0;
  border-left: none;
}
.loan-calc-tabs__tab_bear::before {
  left: -10px;
  transform: skewX(-20deg);
  border-radius: 5px 0 0 0;
  border-right: none;
}
html[dir="rtl"] .loan-calc-tabs__tab::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .loan-calc-tabs__icon {
    width: 28px;
  }
}
.loan-calc-apr {
  display: flex;
  margin-left: 16px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #343443;
}
.loan-calc-apr__value {
  color: #00c26f;
  margin-right: 5px;
}
html[dir="rtl"] .loan-calc-apr__value {
  margin-left: 5px;
  margin-right: 0;
}
.loan-calc-apr__title {
  border-bottom: 1px dashed #5755da;
  cursor: pointer;
}
.loan-calc-input {
  width: 100%;
  display: flex;
  height: 48px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #e9e7ee;
}
.loan-calc-input_error {
  border: 1px solid #fcefc1;
}
.loan-calc-input__field-wrapper {
  display: flex;
  align-items: center;
  border-right: 1px solid #e9e7ee;
  border-radius: 5px 0 0 5px;
  height: 100%;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
  flex-grow: 1;
}
.loan-calc-input__field {
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: calc(100% - 45px);
  font-size: 16px;
  font-weight: 500;
  color: #343443;
  outline: none;
  letter-spacing: 0.26px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.loan-calc-input__field_error {
  width: calc(100% + 2px);
  position: absolute;
  top: calc(100% - 9px);
  left: -1px;
  font-size: 10px;
  background: #fcefc1;
  color: #808086;
  padding: 3px 10px;
  border-radius: 0 0 5px 5px;
  border: 1px solid #fcefc1;
  z-index: 1;
}
.loan-calc-input__label {
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.05px;
  color: #808086;
  position: absolute;
  top: 4px;
  left: 12px;
}
.loan-calc-input__loader {
  position: absolute;
  left: 3px;
  top: 10px;
}
html[dir="rtl"] .loan-calc-input__loader {
  left: unset;
  right: 3px;
}
.loan-calc-input__select-wrapper {
  border-radius: 0 5px 5px 0;
  border-left: none;
  min-width: 121px;
  position: relative;
}
.loan-calc-input__select-button {
  margin: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  outline: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px 0 0;
  justify-content: flex-end;
  right: 0;
  cursor: pointer;
  position: relative;
  width: 100%;
}
.loan-calc-input__select-currency {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  flex-grow: 0;
  font-weight: 500;
  letter-spacing: 0.26px;
  font-size: 16px;
  text-transform: uppercase;
  color: #343443;
  margin-right: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.loan-calc-input__select-ticker {
  word-break: break-all;
  max-width: 70px;
}
.loan-calc-input__select-arrow {
  position: absolute;
  right: 16px;
}
.loan-calc-input__icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .loan-calc-input {
    height: 68px;
  }
  .loan-calc-input__field {
    bottom: 12px;
    left: 16px;
    font-size: 22px;
  }
  .loan-calc-input__label {
    top: 12px;
    left: 16px;
  }
  .loan-calc-input__loader {
    left: 6px;
    top: 19px;
  }
  html[dir="rtl"] .loan-calc-input__loader {
    left: unset;
    right: 6px;
  }
  .loan-calc-input__select-wrapper {
    min-width: 150px;
  }
  .loan-calc-input__select-currency {
    font-size: 22px;
    margin-right: 6px;
  }
  .loan-calc-input__field_error {
    top: calc(100% - 12px);
    padding: 5px 10px;
  }
}
.loan-calc-terms {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 0 12px;
  margin: 0 15px;
  border-left: 1px solid #e9e7ee;
}
.loan-calc-terms__item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.loan-calc-terms__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  display: block;
  background-color: #e9e7ee;
}
.loan-calc-terms__item-left {
  color: #808086;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.07px;
  border-bottom: 1px dashed #5755da;
  margin-right: 7px;
  cursor: pointer;
}
.loan-calc-terms__item-right {
  color: #808086;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.loan-calc-terms__infinity-icon {
  margin-left: 4px;
}
.loan-calc-terms__currency {
  margin: 0 5px;
}
.loan-calc-terms__price-limit {
  display: flex;
}
.loan-calc-terms__margin-left_5 {
  margin-left: 5px;
}
.premium-loan-calc-header {
  padding: 40px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
}
.premium-loan-calc-header__title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #2b2b37;
  opacity: 1;
}
.premium-loan-calc-header__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #9696a5;
}
@media screen and (min-width: 768px) {
  .premium-loan-calc-header {
    padding: 40px 70px 0;
  }
}
.loan-calculator__wrapper {
  position: relative;
  width: 100%;
}
.loan-calculator {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e7ee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 16px;
}
.loan-calculator__inputs {
  margin-bottom: 12px;
}
.loan-calculator__additional-fees {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 16px;
  color: #808086;
  margin-bottom: 12px;
}
.loan-calculator__get-loan-button {
  background: #5755da;
  height: 48px;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.45px;
  border: none;
}
.loan-calculator__get-loan-button:hover {
  background: #5755da;
  border: none;
  opacity: 0.8;
}
.loan-calculator__get-loan-button:disabled {
  background: #808086;
  border-color: #808086;
}
.loan-calculator__error-block {
  font-size: 14px;
  background: #fcefc1;
  color: #808086;
  border-radius: 5px;
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  margin-top: 10px;
}
.loan-calculator__bottom-text {
  font-size: 10px;
  font-weight: 300;
  line-height: 16px;
  color: #808086;
  margin-bottom: 10px;
}
.premium-loan-calculator__additional-block {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}
.premium-loan-calculator__apr.loan-calc-apr {
  margin: 0;
}
.premium-loan-calculator__wrapper .loan-calculator {
  border: none;
}
@media screen and (min-width: 1200px) {
  .loan-calculator__wrapper {
    width: 489px;
  }
  .premium-loan-calculator__wrapper.loan-calculator__wrapper {
    width: 660px;
  }
}
@media screen and (min-width: 992px) {
  .loan-calculator__wrapper {
    margin-top: 0;
    max-width: 489px;
    padding: 0 15px;
  }
  .premium-loan-calculator__wrapper.loan-calculator__wrapper {
    max-width: 100%;
    padding: 0;
  }
  html[dir="rtl"] .loan-calculator__wrapper {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .loan-calculator {
    padding: 16px 24px 24px 24px;
  }
  .premium-loan-calculator__wrapper .loan-calculator {
    padding: 16px 70px 60px;
  }
}
