.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;
  }
}
.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;
}

/* 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;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

  -moz-user-select: none;

  user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

  -moz-user-select: none;

  user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8b9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC");
}

.DayPicker-NavButton--next {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==");
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8b9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #eaecec;
  color: #8b9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4a90e2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #d0021b;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8b9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #dce0e0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #f7f8f8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #dce0e0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4a90e2;
  color: #f0f8ff;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51a0fa;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #f0f8ff;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* 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;
}

/* 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;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

  -moz-user-select: none;

  user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

  -moz-user-select: none;

  user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8b9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC");
}

.DayPicker-NavButton--next {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==");
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8b9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #eaecec;
  color: #8b9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4a90e2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #d0021b;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8b9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #dce0e0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #f7f8f8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #dce0e0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4a90e2;
  color: #f0f8ff;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51a0fa;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #f0f8ff;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* 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;
}

/* 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-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;
}
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;
}
: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;
}
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;
  }
}
@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: "";
}
.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;
  }
}
#app-header {
  display: contents;
}
.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;
}
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;
}
: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;
}
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;
  }
}
@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: "";
}
#app-header {
  display: contents;
}
: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;
}
.main-banner_desktop {
  display: none;
}
.main-banner__link,
.main-banner__link .main-banner-desktop__image {
  display: block;
}
.main-banner__link .main-banner-desktop__image,
.main-banner__link .main-banner-desktop__image img {
  width: 100%;
  height: 60px;
  transition: transform 0.3s;
}
.main-banner__link:hover .main-banner-desktop__image {
  animation: main-banner-animation 2s both infinite ease;
}
.main-banner__link .main-banner__button {
  transition: fill 0.3s;
}
.main-banner__link:hover .main-banner__button {
  fill: #06ac65;
}
@media (min-width: 768px) {
  .main-banner_desktop {
    display: block;
    margin-top: 48px;
  }
  .main-banner_mobile {
    display: none;
  }
  .main-banner_desktop .main-banner__link .main-banner-desktop__image {
    display: block;
    border-radius: 10px;
    transition: opacity ease 0.5s;
  }
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
    position: relative;
    z-index: 1;
    opacity: 0;
  }
  .main-banner_desktop
    .main-banner__link:hover
    .main-banner-desktop__image:nth-child(1) {
    opacity: 0;
  }
  .main-banner_desktop
    .main-banner__link:hover
    .main-banner-desktop__image:nth-child(2) {
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .main-banner_desktop
    .main-banner__link
    .main-banner-desktop__image:nth-child(2) {
    margin-top: -60px;
  }
}
@keyframes main-banner-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.custom-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #00c26f;
  padding-inline-end: 18px;
  cursor: pointer;
}
html[dir="rtl"] .custom-link {
  padding-inline-end: unset;
  padding-inline-start: 18px;
}
.custom-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  margin: auto;
}
html[dir="rtl"] .custom-link:after {
  right: unset;
  transform: rotate(135deg);
}
.custom-link:hover {
  color: #00c26f;
}
@media screen and (min-width: 992px) {
  .custom-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00c26f;
    transition: width ease 0.2s;
  }
  .custom-link:hover:before {
    width: calc(100% - 18px);
  }
  .custom-link:focus:before {
    width: 0;
  }
}
.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: #fff;
}
.dropdown__topic-icon {
  width: 32px;
  height: 32px;
}
.dropdown__icon {
  color: #8b86af;
  transition: all 0.3s ease-in-out;
}
.dropdown__icon_open {
  transform: rotateZ(45deg);
}
.main-page-promo-banners-mobile {
  margin: 0 auto;
  background: rgba(0, 0, 0, 0);
  display: block;
  margin-top: 8px;
  border: none;
}
.main-page-promo-banners-mobile__img {
  display: block;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-page-promo-banners-mobile {
    margin-top: 32px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .main-page-promo-banners-mobile {
    display: none;
  }
}
.index-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2b2b36;
}
.index-header--container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .index-header--container {
    margin-top: 24px;
  }
}
@media screen and (min-width: 992px) {
  .index-header--container {
    margin-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .index-header {
    padding-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .index-header {
    padding-top: 21px;
    background: #2b2b36 url(f8f35b771d96ff153613.png) 31% 35% no-repeat;
  }
}
.index-header--mobile-apps-links {
  display: flex;
}
.index-header--mobile-apps-links a {
  transition: transform 0.3s;
}
.index-header--mobile-apps-links a:first-of-type {
  margin-right: 6px;
}
@media (max-width: 767px) {
  .index-header--mobile-apps-links a:first-of-type {
    margin-right: 28px;
  }
}
.index-header--mobile-apps-links a:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .index-header--mobile-apps-links a {
    transform: scale(1.2);
  }
}
.index-header .index-header--mobile-buy-crypto {
  display: none;
}
@media screen and (max-width: 992px) {
  .index-header .index-header--mobile-buy-crypto {
    display: flex;
    justify-content: center;
  }
}
.index-header .bread-crumbs {
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  .index-header .bread-crumbs {
    margin-top: -20px;
  }
}
@media screen and (min-width: 992px) {
  .index-header .bread-crumbs {
    margin-top: -80px;
  }
}
@media screen and (max-width: 575px) {
  .index-header .bread-crumbs {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header-form {
    width: 57%;
  }
}
@media screen and (min-width: 768px) {
  .header-heading {
    width: 43%;
  }
}
.index-header--title {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 12px;
  max-width: 300px;
}
.new-stepper-body {
  position: relative;
}
.header-margin {
  margin: 0 20px 0 64px;
}
.index-header--sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #aeb0bd;
  margin: 0;
  opacity: 1;
}
.header-form .new-stepper-tab_dark {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #aeb0bd;
  opacity: 1;
}
.header-form .new-stepper-tab_active span {
  color: #fff;
}
.header-form .new-stepper-tab {
  height: 52px;
}
.header-form .new-stepper-tab .new-stepper-tab__text {
  opacity: 1;
}
.header-form .now-input__dark .now-input--label {
  color: #aeb0bd;
  font-weight: 500;
}
.header-form .exchange-form .exchange-calculator::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 174px;
  background: linear-gradient(
    90deg,
    #4ea1f5 -39.45%,
    #5c95f4 11.48%,
    #8278f2 108.17%,
    #8e6ff2 135.41%,
    #8a80e8 152.79%,
    #81add1 187.35%,
    #76eab1 228.36%
  );
  filter: blur(107px);
  border-radius: 50%;
}
.header-form .new-stepper-button {
  font-size: 18px;
}
.header-form .combobox__dark .combobox--dropdown-arrow {
  fill: #aeb0bd;
}
.header-badges {
  margin-top: 26px;
}
.index-header .container {
  position: relative;
  width: 100%;
  max-width: 445px;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .index-header .container {
    width: 868px;
  }
}
@media (min-width: 1200px) {
  .index-header .container {
    width: 1037px;
  }
}
.index-header--action {
  position: relative;
  top: -30px;
}
@media screen and (max-width: 575px) {
  .index-header--action {
    display: none;
  }
}
.index-header--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .index-header--wrapper {
    margin-top: 40px;
  }
}
.index-header--trust {
  display: flex;
  flex-direction: row-reverse;
  grid-gap: 32px;
  align-items: center;
  margin-right: -10px;
  text-align: center;
}
@media all and (max-width: 991px) {
  .index-header--trust {
    width: auto;
  }
}
.index-header--footer {
  display: inline-flex;
  width: 100%;
  overflow: hidden;
  color: #5c5780;
}
@media all and (max-width: 767px) {
  .index-header--footer {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media all and (min-width: 768px) {
  .index-header--footer {
    justify-content: space-between;
    align-items: flex-end;
    min-height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--play-market {
    transform: scale(0.75);
    transform-origin: 50% 50%;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--visa-master {
    transform: scale(0.56);
    transform-origin: 50% 50%;
    margin-top: -5px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 767px) {
  .index-header--footer .svg-sprite--trustpilot-fresh {
    background: url(3081e851c7ffe3486e9e.svg) no-repeat;
    background-position: 25px 20px;
    background-size: 77px !important;
  }
}
@media screen and (max-width: 575px) {
  .index-header--google-play {
    margin-bottom: 7px;
  }
}
.index-header--payments {
  position: relative;
  align-self: baseline;
  display: flex;
  margin-left: 12px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .index-header--payments {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .index-header--payments {
    top: 0;
    margin-left: 0;
  }
}
.index-header--payments-text {
  margin-top: 0;
  text-align: left;
  color: #fff;
  letter-spacing: 0.293333px;
  opacity: 1;
}
@media all and (max-width: 767px) {
  .index-header--payments-text {
    margin-bottom: 0;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .index-header--payments-text {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
.index-header--payments-visa-img {
  position: relative;
}
.badge-container:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-container__link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-container__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #aeb0bd;
}
.badge-item {
  transition: transform 0.4s ease-in-out;
}
.badge-item:hover {
  transform: scale(1.03);
}
.badge-item_visa {
  width: 64px;
  height: 21px;
}
.badge-item_mastercard {
  width: 46px;
  height: 28px;
}
.index-header--footer #trustpilot-widget {
  display: flex;
  align-items: center;
  height: 60px;
  width: 150px;
  justify-content: flex-end;
}
.index-header__benefits {
  display: none;
}
.index-header--trust .svg-sprite--stars {
  margin: auto;
}
.banner .banner-desktop-image {
  width: 100%;
  display: none;
}
.banner .banner-desktop-image:hover {
  transform: scale(1.02);
}
.banner .banner-mobile-image {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .banner .banner-desktop-image {
    display: block;
  }
  .banner .banner-mobile-image {
    display: none;
  }
}
@media (min-width: 1200px) {
  .banner {
    display: flex;
    flex-direction: column;
  }
  .banner .col-md-6 {
    width: 100%;
  }
}
.index-header--news {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid hsla(0, 0%, 100%, 0.18);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .index-header--news {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .index-header--news {
    height: 54px;
  }
}
.index-header--news .news-link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
}
.index-header--news-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
.index-header--news-text-content {
  margin-right: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
}
@media all and (max-width: 767px) {
  .index-header--news-text-content {
    display: none;
  }
}
.index-header--news-text-content-green {
  color: #00c26f;
}
.index-header--staking {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid hsla(0, 0%, 100%, 0.18);
  border-radius: 4px;
}
@media all and (max-width: 379px) {
  .index-header--staking .svg-sprite--star-icon {
    display: none;
  }
}
@media all and (max-width: 575px) {
  .index-header--staking {
    padding: 30px;
    height: auto;
  }
}
.index-header--staking-text_token-now {
  margin-right: 5px;
  color: #00c26f;
}
.index-header--staking-text_token-now:hover {
  color: #00c26f;
}
.index-header--text_staking {
  color: #fff;
}
.staking-link-container {
  display: flex;
  align-items: center;
  white-space: pre-wrap;
  color: #fff;
}
.staking-link-container:hover {
  color: #00c26f;
}
.banner-wrap-mobile_promo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-header--news-mobile {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid hsla(0, 0%, 100%, 0.18);
  border-radius: 4px;
}
@media all and (min-width: 576px) and (max-width: 767px) {
  .index-header--news-mobile {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .index-header--news-mobile {
    display: none;
  }
}
.index-header--news-mobile-title {
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.293333px;
  font-size: 19px;
  margin-bottom: 7px;
}
.index-header--news-mobile .news-link-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  white-space: pre-wrap;
  flex-direction: column;
  margin-bottom: 6px;
  padding: 10px 0;
}
@media screen and (max-width: 991px) {
  .index-header {
    height: auto;
    padding-bottom: 30px;
  }
  .index-header--footer {
    position: static;
    width: 100%;
  }
}
.coinify-widget {
  width: 100%;
  max-width: 680px;
  margin: 16px auto;
  border: none;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  transition: box-shadow 0.3s;
}
.index-header__banner-new {
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
  display: block;
  margin-top: 48px;
}
.index-header__banner-new img {
  display: block;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin: 0 auto;
}
.index-header_warning {
  margin-top: 0;
  padding-top: 20px;
}
.header-wrapper {
  display: block;
}
.header-wrapper__calculator .new-stepper-estimation-lock {
  background-color: #3e3e59;
}
.index-header__giveaway-banner_desktop {
  display: none;
}
.index-header__giveaway-banner_mobile {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .header-margin {
    margin: 0;
  }
  .index-header--trust {
    flex-direction: row;
    grid-gap: 28px !important;
    margin-left: 24px;
  }
  .header-wrapper {
    display: flex;
    flex-direction: column;
  }
  .header-heading {
    order: 0;
  }
  .header-form {
    order: 1;
  }
  .header-badges {
    order: 3;
  }
  .banner-wrap {
    max-height: 60px;
    order: 2;
  }
  .banner-wrap-mobile {
    order: 3;
  }
  .index-header--payments {
    margin-left: 0px;
    width: 83px;
    display: block;
  }
  .badge-item {
    max-width: 88px;
  }
  .badge-container:last-child {
    display: block;
    width: auto;
  }
  .badge-container .trustpilot-widget {
    height: 110px;
    margin-left: -180px;
    transform: scale(0.5) translate(40px, 0);
    transform-origin: right;
  }
  .index-header--payments-visa-img {
    width: 83px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .benzinga-badge img,
  .trustpilot-badge img {
    width: 68px;
  }
  .benzinga-badge {
    width: auto;
    padding-left: 6px;
  }
  .index-header--footer {
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .header-margin {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .index-header {
    padding-bottom: 265px;
  }
  .index-header__banner-new {
    display: none;
  }
  .badge-container .trustpilot-widget {
    transform-origin: top;
    transform: scale(0.6) translate(45%, 34px);
  }
  html[dir="rtl"] .badge-container .trustpilot-widget {
    right: 150px;
  }
  .index-header__giveaway-banner_desktop {
    display: block;
    margin-top: 48px;
  }
  .index-header__giveaway-banner_mobile {
    display: none;
  }
  .header .container {
    width: 100%;
    padding: 0 16px;
  }
  .index-header .container {
    max-width: unset;
    padding-bottom: 0;
  }
  .index-header__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .index-header__benefit {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .index-header__benefit-icon {
    width: 28px;
    height: 28px;
  }
  .index-header__benefit-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.34px;
    vertical-align: middle;
    color: #fff;
  }
  .header-form .exchange-form .exchange-calculator::before {
    top: 73%;
    left: 21%;
    width: 168px;
    height: 174px;
    filter: blur(88px);
  }
  .header-form .exchange-form::before {
    content: "";
    position: absolute;
    top: 45%;
    right: -16%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 169px;
    background: linear-gradient(
      90deg,
      #4ea1f5 -39.45%,
      #5c95f4 11.48%,
      #8278f2 108.17%,
      #8e6ff2 135.41%,
      #8a80e8 152.79%,
      #81add1 187.35%,
      #76eab1 228.36%
    );
    filter: blur(95px);
    border-radius: 50%;
    opacity: 0.8;
  }
  .index-header--footer #trustpilot-widget {
    width: unset;
  }
  .header-badges {
    margin-top: 46px;
  }
  .index-header--sub-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
  }
  .index-header--title {
    margin-bottom: 20px;
    max-width: 400px;
    font-size: 48px;
    line-height: 120%;
  }
  .badge-item_visa {
    width: 74px;
    height: 24px;
  }
  .badge-item_mastercard {
    width: 52px;
    height: 32px;
  }
  .badge-container__link {
    gap: 14px;
  }
  .header-form .new-stepper-tab {
    font-size: 16px;
  }
  .banner-wrap-mobile_promo {
    display: none;
  }
  html[dir="rtl"] .header-heading {
    padding-inline-start: 49px;
  }
}
@media (min-width: 992px) {
  .index-header_warning {
    margin-top: 0;
    padding-top: 46px;
  }
  .index-header__recommended-wallet-button {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .header .container {
    padding: 0 40px;
  }
}
.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;
}
.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;
}
.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;
}
: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;
  }
}
.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;
  }
}
.tx-page-finished {
  margin-top: -30px;
  padding-bottom: 50px;
  animation-name: showStepper;
  animation-duration: 0.2s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
}
.tx-page-finished--bottom {
  text-align: center;
}
.tx-page-finished--bottom--start-new-exchange-link {
  color: #00c26f;
}
.tx-page-finished--bottom--start-new-exchange-link:hover {
  color: #23527c;
}
.tx-page-finished--bottom--start-new-exchange-link:hover img {
  filter: invert(22%) sepia(83%) saturate(556%) hue-rotate(162deg)
    brightness(52%) contrast(93%);
}
.tx-page-finished--col {
  margin-top: 46px;
  padding: 0;
}
.tx-page-finished--col:first-child {
  margin-top: 0;
}
.tx-page-finished--col:last-child {
  margin-bottom: 46px;
}
.tx-page-finished .tx-page--head {
  margin-top: 62px;
  margin-bottom: 46px;
  text-align: center;
}
.tx-page-finished .tx-page--head_not-auth {
  margin-bottom: 24px;
}
.tx-page-finished .tx-page--head_not-auth .tx-page-finished__trustpilot {
  margin-bottom: 50px;
}
.tx-page-finished .tx-page--head-container {
  background-color: #fff;
  border-radius: 6px;
}
.tx-page-finished .tx-page--head-content {
  margin-top: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tx-page-finished .tx-page--img-success {
  position: relative;
  top: -30px;
}
.tx-page-finished .tx-page--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-inline-end: 15px;
  background-color: #00c26f;
  border-radius: 50%;
}
.tx-page-finished .tx-page--icon img {
  width: 18px;
}
@media all and (max-width: 480px) {
  .tx-page-finished .tx-page--icon {
    margin-inline-end: 0;
    margin-bottom: 15px;
  }
}
.tx-page-finished .tx-page--title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  color: #5c5780;
  letter-spacing: 0.3px;
}
@media all and (max-width: 480px) {
  .tx-page-finished .tx-page--title {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .tx-page-finished .tx-page--title {
    margin: 10px;
  }
  .tx-page-finished .tx-page--title--success {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) {
  .tx-page-finished .tx-page--title {
    font-size: 48px;
  }
}
.tx-page-finished .tx-page--title--success {
  color: #00c26f;
  margin-bottom: 0;
}
.tx-page-finished .tx-page--telegram-block {
  margin: 34px auto 23px auto;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #5c5780;
  letter-spacing: 0.3px;
}
.tx-page-finished .tx-page--telegram-block__bold {
  font-weight: bold;
  color: #5c5780;
  text-decoration: underline;
}
.tx-page-finished .tx-page--telegram-block__bold::before {
  content: url(f1121836db0bc84cba45.svg);
  margin-inline-end: 5px;
}
.tx-page-finished .tx--page--complete-text {
  width: 408px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.tx-page-finished .tx--page--complete-text p {
  margin-top: 0;
  margin-bottom: 35px;
  line-height: 27px;
}
@media all and (max-width: 575px) {
  .tx-page-finished .tx--page--complete-text {
    width: 96%;
  }
}
.tx-page-finished .tx-page--currency-block {
  display: flex;
  flex-direction: column;
  width: 408px;
  margin: 0 auto;
  box-shadow: 0px 2px 10px rgba(43, 43, 54, 0.12);
  border-radius: 6px;
  text-align: start;
  font-size: 22px;
}
.tx-page-finished .tx-page--currency-block--amount {
  padding: 15px;
  display: flex;
  align-items: center;
}
.tx-page-finished
  .tx-page--currency-block--amount
  .currency-block--amount--icon {
  color: #00c26f;
}
.tx-page-finished .tx-page--currency-block--amount .amount-send {
  color: rgba(43, 43, 54, 0.41);
}
.tx-page-finished .tx-page--currency-block--amount .amount-receive {
  color: #00c26f;
}
.tx-page-finished .tx-page--currency-block .amount-bottom {
  position: relative;
  border-top: 1px solid #e7e7e7;
}
.tx-page-finished
  .tx-page--currency-block
  .amount-bottom
  .tx-page--currency-block--amount--btn {
  position: absolute;
  right: 28px;
  outline: none;
  border: 1px solid #e7e7e7;
  top: -13px;
  height: 22px;
  width: 22px;
  justify-content: center;
  background: #fff;
  align-items: center;
  display: flex;
  border-radius: 50%;
}
.tx-page-finished
  .tx-page--currency-block
  .amount-bottom
  .tx-page--currency-block--amount--btn:hover {
  background: #2b2b36;
}
@media all and (max-width: 575px) {
  .tx-page-finished .tx-page--currency-block {
    width: 90%;
  }
}
.tx-page-finished .tx-page__cashback-block {
  background-color: #fafafd;
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-top: 16px;
  padding: 8px 12px;
  width: 408px;
  border-radius: 6px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0);
}
.tx-page-finished .tx-page__cashback-block:hover {
  border: 1px solid #00c26f;
  cursor: pointer;
}
@media all and (max-width: 575px) {
  .tx-page-finished .tx-page__cashback-block {
    width: 90%;
  }
}
.tx-page-finished .tx-page__cashback-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-left: 8px;
}
.tx-page-finished .tx-page__cashback-text {
  margin: 0;
  padding: 0;
  color: #9696a5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
}
.tx-page-finished .tx-page__cashback-amount {
  margin: 0;
  padding: 0;
  color: #3d3d58;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.tx-page-finished .tx-page__cashback-button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  background-image: url(17067ba21fdda68d7286.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 14px;
  margin-left: auto;
}
.tx-page-finished .tx-page--review-block {
  display: flex;
  justify-content: center;
  width: 258px;
  height: 49px;
  margin: 25px auto 0 auto;
  background: #00c26f;
  box-shadow: 2px 6px 14px rgba(43, 43, 54, 0.15);
  border-radius: 8px;
}
.tx-page-finished .tx-page--review-block:hover {
  background: rgb(0, 199.1, 113.9180412371);
  color: #fff;
}
.tx-page-finished .tx-page--review-block--btn-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.3px;
  width: 100%;
  justify-content: center;
}
.tx-page-finished .tx-page--review-block--btn-link:hover {
  color: #fff;
}
.tx-page-finished .tx-page--review-block--btn-link img {
  margin-inline-start: 10px;
  margin-top: -4px;
}
@media all and (max-width: 575px) {
  .tx-page-finished .tx-page--review-block {
    width: 96%;
  }
}
.tx-page-finished .tx-page--subtitle {
  font-size: 20px;
  color: #00c26f;
}
.tx-page-finished .tx-page--info {
  padding: 70px 0 30px;
}
.tx-page-finished .tx-table {
  font-size: 20px;
}
.tx-page-finished .tx-table--row {
  height: 45px;
  margin-bottom: 10px;
}
.tx-page-finished .tx-table--cell:first-child {
  min-width: 300px;
}
.tx-page-finished .tx-table--cell:last-child {
  font-weight: 700;
}
.tx-page-finished .tx-extra-table--cell:first-child {
  min-width: 170px;
  font-size: 12px;
}
.tx-page-finished .tx-extra-table--cell:last-child {
  font-size: 18px;
}
.tx-page-finished .transaction-details {
  background-color: #fff;
  border-radius: 6px;
  position: relative;
}
.tx-page-finished .transaction-details .transaction-details--header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tx-page-finished .transaction-details .transaction-details-header--info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .tx-page-finished .transaction-details .transaction-details-header--info {
    padding: 16px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details-header--info--title {
  margin: 0;
  color: #2b2b36;
  font-size: 18px;
}
.tx-page-finished
  .transaction-details
  .transaction-details-header--info--shared-btn {
  border: none;
  background: none;
}
.tx-page-finished .transaction-details .transaction-details--exchange-steps {
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .tx-page-finished .transaction-details .transaction-details--exchange-steps {
    padding: 0;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info {
    position: relative;
    padding: 0 16px;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info__exchange
  .exchange-step-info--col {
  width: 33.3333333333%;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info__tokens
  h3 {
  margin-bottom: 0.66em;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  text-align: start;
  color: #2b2b36;
  letter-spacing: 0.3px;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--info
  > h3 {
  margin-top: 9px;
  margin-bottom: 5px;
  font-size: 18px;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--head {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--head {
    display: block;
    margin-bottom: 10px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--content {
  display: flex;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--content
  .copy-hash {
  width: 22px;
  height: 22px;
  margin-inline-start: 10px;
  cursor: pointer;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--content
  .copy-hash
  .copy-btn--note {
  display: none;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--content
  .copy-hash
  .copy-btn:active {
  color: #00a55f;
  animation: rotate 0.1s;
}
@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--content {
    display: block;
  }
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--content
    .copy-hash {
    margin-inline-start: 5px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--title {
  margin-inline-end: 30px;
  font-size: 16px;
  text-align: start;
  color: rgba(43, 43, 54, 0.3);
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--title {
    font-size: 14px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #a4a3aa;
  letter-spacing: 0.3px;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--index {
  width: 40px;
  height: 40px;
  margin-inline-end: 17px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #00c26f;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--index {
    margin-bottom: 40px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  background: rgba(61, 61, 112, 0.04);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 72px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--icon
  > img {
  width: 52px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--icon
    > img {
    width: 48px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--info {
  width: 100%;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--info {
    padding-inline-start: 0;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--item {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  padding-inline-end: 40px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--item {
    justify-content: space-between;
    padding-inline-end: 0;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--item-head {
  flex-shrink: 0;
  width: 240px;
  font-size: 15px;
  line-height: 1.3;
  vertical-align: baseline;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--item-head {
    width: 136px;
    font-size: 12px;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--item-content {
  display: flex;
  font-size: 15px;
  line-height: 1.3;
  vertical-align: baseline;
  letter-spacing: 0.3px;
  white-space: normal;
  word-break: break-word;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--item-content
  a {
  color: #00c26f;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-step-info--item-content
  a:hover {
  color: #23527c;
}
@media (max-width: 768px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .exchange-step-info--item-content {
    font-size: 12px;
    text-align: right;
  }
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .tx-page--exchange-time {
  margin: 0;
  text-align: center;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-steps--btn-container {
  display: flex;
  justify-content: center;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .exchange-steps--btn {
  width: 300px;
  height: 50px;
  background: #00c26f;
  border-radius: 5px;
}
.tx-page-finished
  .transaction-details
  .transaction-details--exchange-steps
  .fat
  p {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #5c5780;
  letter-spacing: 0.3px;
  opacity: 1;
}
@media all and (max-width: 575px) {
  .tx-page-finished
    .transaction-details
    .transaction-details--exchange-steps
    .fat
    p {
    font-size: 18px;
  }
}
html[dir="rtl"]
  .tx-page-finished
  .tx-page--currency-block
  .tx-page--currency-block--amount--btn {
  right: unset;
  left: 28px;
}
.tx-page-finished__promocode {
  padding-bottom: 48px;
}
.tx-page-finished__promocode_auth.get-promocode {
  padding-bottom: 24px;
}
.tx-page__new-exchange {
  display: flex;
  justify-content: center;
  padding-bottom: 56px;
}
.tx-page__new-exchange-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #808086;
}
.tx-page__new-exchange-link svg {
  margin-inline-start: 5px;
}
.tx-page__new-exchange-link:hover {
  color: #00c26f;
}
.tx-page__new-exchange-link:hover svg {
  fill: #00c26f;
}
.tx-page-finished__try-mobile-app {
  display: none;
}
.tx-page-finished__child-exchanges {
  margin-top: 20px;
  margin-bottom: 24px;
}
.tx-page-finished__trustpilot {
  margin-top: 46px;
  margin-bottom: 40px;
}
.tx-page-finished__trustpilot iframe {
  min-width: 350px;
  overflow: hidden;
}
.tx-page-finished__banner.tx-page-finished__banner_auth {
  display: none;
}
@media screen and (min-width: 768px) {
  .tx-page-finished__child-exchanges {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 992px) {
  .tx-page--head_not-auth {
    margin-bottom: 0;
  }
  .tx-page-finished__try-mobile-app {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .tx-page-finished__child-exchanges {
    display: none;
  }
  .tx-page-finished .tx-page--head {
    margin-bottom: 0;
  }
  .tx-page-finished--col {
    margin-top: 30px;
  }
  .tx-page__new-exchange {
    padding-bottom: 40px;
  }
}
.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);
}
.dialog {
  text-align: center;
  background-color: #f6f4f8;
}
.dialog .promo-consent {
  margin: 10px 0;
  width: 100%;
  padding: 10px 0;
  text-align: left;
}
.dialog--title {
  color: #00c26f;
  background-color: #fff;
  font-size: 28px;
  padding: 30px 10px 25px;
  line-height: 1;
}
@media (max-width: 768px) {
  .dialog--title {
    padding: 15px 10px;
  }
}
.dialog--content {
  padding: 30px 60px;
}
@media (max-width: 768px) {
  .dialog--content {
    padding: 10px 20px;
  }
}
.dialog--container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .dialog--container {
    flex-direction: row;
  }
}
.dialog--content-link {
  text-align: left;
  display: inline-block;
}
.dialog--content p {
  text-align: left;
}
.dialog__small .dialog--title {
  padding: 30px 20px 25px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .dialog__small .dialog--title {
    padding: 15px 10px;
    font-size: 24px;
  }
}
.dialog__small .dialog--content {
  padding: 20px 60px;
}
@media (max-width: 768px) {
  .dialog__small .dialog--content {
    padding: 10px;
  }
}
.dialog__redirect .dialog--content {
  font-size: 20px;
}
.dialog__redirect .button {
  float: right;
  font-size: 16px;
  padding: 0 40px;
  width: 100%;
}
.dialog__redirect p {
  margin: 25px 0;
  line-height: 1.1;
}
.dialog--content-big-img {
  min-width: 190px;
  margin: auto;
  margin-right: 20px;
}
.dialog .button-close {
  position: absolute;
  right: -35px;
  top: -35px;
}
.dialog--body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.dialog--body::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.dialog--actions {
  background-color: #f6f4f8;
  padding: 0 60px 40px !important;
}
.no-photo {
  width: 0px;
  height: 0px;
}
.dialog__redirect .dialog--content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dialog__redirect .dialog--content-container {
    flex-direction: column;
  }
}
.now-button {
  font-size: 18px;
  border-radius: 5px;
  outline: none;
}
.now-button__green {
  color: #fff;
  background-color: #00c26f;
  border: none;
}
.now-button__green:hover {
  background: #00a55f;
}
.now-button__white {
  color: #00c26f;
  background-color: #fff;
  border: 1px solid #00c26f;
}
.now-button__white:hover {
  color: #00c26f;
  background: rgba(0, 0, 0, 0);
  opacity: 0.5;
}
.now-button__disable {
  color: #fff;
  background-color: #a4a3aa;
  border: 1px solid #a4a3aa;
  cursor: not-allowed;
  opacity: 0.5;
}
.now-button__disable:hover {
  background-color: #a4a3aa;
  border: 1px solid #a4a3aa;
}
.qr-scanner {
  position: relative;
  margin-bottom: 25px;
}
.qr-scanner--video {
  width: 100%;
}
.qr-scanner--loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
}
.qr-scanner--canvas {
  display: none;
}
.share-dialog--target-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  color: #939398;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #dce2ea;
  cursor: pointer;
  padding: 10px;
  letter-spacing: 0.4px;
}
.share-dialog {
  z-index: 1;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 6px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .share-dialog {
    height: 100%;
  }
}
.share-dialog--header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #dce2ea;
}
.share-dialog--header--title {
  color: #2b2b36;
}
.share-dialog--target {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media all and (max-width: 374px) {
  .share-dialog--target {
    grid-template-columns: none;
  }
}
.share-dialog--target a:focus {
  color: #23527c;
}
.share-dialog--close-button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 0;
  height: 30px;
  cursor: pointer;
}
.share-dialog--bottom-url {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-item--icon {
  margin-right: 5px;
}
.bottom-url--target-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #dce2ea;
  width: 90%;
  margin-right: 10px;
}
.target--link--url-title {
  margin-right: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.share-dialog--copy-button {
  width: 10%;
}
.share-dialog--copy-button .copy-button--wrap .copy-btn {
  margin: 0 8px;
  cursor: pointer;
  vertical-align: initial;
  align-items: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
}
.share-dialog--copy-button .copy-button--wrap .copy-btn .icon-copy {
  transform: scale(1.5);
}
.share-dialog--copy-button .copy-button--wrap .copy-btn--note {
  display: none;
}
@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.accordion__article {
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.accordion {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  transition: background-color 0.6s ease;
  padding: 15px;
  text-align: start;
  justify-content: space-between;
  width: 100%;
}
.accordion:focus {
  outline: none;
}
.accordion__title {
  color: #2b2b36;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: normal;
}
.accordion__icon {
  margin-inline-start: auto;
  transition: transform 0.2s ease;
}
.rotate {
  transform: rotate(0);
  transition: transform 0.2s ease;
}
.rotate-default {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
.accordion__content {
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.1s ease;
  color: #000;
}
.accordion__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  padding: 0 20px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .accordion__text p {
    padding: 0 8px;
  }
}
.accordion__icon-arrow {
  position: relative;
}
.accordion__icon-plus.rotate-default {
  transform: rotate(0);
}
.accordion__icon-plus.rotate {
  transform: rotate(45deg);
}
.accordion__icon-plus {
  padding: 0;
  display: block;
  border: none;
  outline: none;
  width: 20px;
  height: 2px;
  margin: 1px 0 0 0;
  background: #00c26f;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.accordion__icon-plus:before {
  content: "";
  display: block;
  background: #00c26f;
  position: relative;
  width: 2px;
  height: 20px;
  top: -9px;
  left: 9px;
}
html[dir="rtl"] .accordion__icon-plus:before {
  left: unset;
  right: 9px;
}
html.no-js .accordion__content {
  max-height: none !important;
}
html.no-js .accordion__icon-plus {
  transform: rotate(45deg);
}
html.no-js .accordion__icon-arrow:not(.accordion__icon-plus) {
  transform: rotate(0);
}
.start-new-exchange-pro-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #808086;
  background: rgba(0, 0, 0, 0);
}
.start-new-exchange-pro-button svg {
  margin-left: 5px;
}
.start-new-exchange-pro-button:hover {
  color: #00c26f;
}
.start-new-exchange-pro-button:hover svg {
  fill: #00c26f;
}
.ny-event-banner {
  border-radius: 6px;
  overflow: hidden;
}
.ny-event-banner__link {
  display: block;
  width: 100%;
  transition: transform 0.3s;
}
.ny-event-banner__image {
  width: 100%;
}
.ny-event-banner__image img {
  width: 100%;
}
.ny-event-banner__link:hover {
  animation: ny-banner-animation 2s both infinite ease;
}
@keyframes ny-banner-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.tx-finished-banner {
  display: none;
  margin: 24px 0 16px 0;
}
.tx-finished-banner_auth {
  margin: 46px 0 16px 0;
}
@media screen and (min-width: 992px) {
  .tx-finished-banner {
    display: block;
  }
}
.trustpilot-button {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 40px;
  background-color: #00c26f;
  border: none;
  border-radius: 8px;
}
.trustpilot-button__text {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: right;
  opacity: 1;
}
.trustpilot-button__image {
  width: 17px;
  height: 15px;
}
.staking-banner {
  display: flex;
  position: relative;
  padding: 24px;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  transition: all 0.3s ease-out;
  margin-top: 8px;
  background-color: rgba(0, 0, 0, 0);
}
.staking-banner:hover {
  border-color: #7bdcb2;
}
.staking-banner__image {
  width: 40px;
  height: 40px;
}
.staking-banner__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.4px;
  text-align: left;
  margin: 0;
  max-width: 70%;
}
.staking-banner__text_bold {
  font-weight: 600;
}
.staking-banner svg {
  position: absolute;
  right: 24px;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .staking-banner {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .staking-banner {
    max-width: 100%;
  }
}
.try-pro-banner {
  border: 1px solid #dce2ea;
  border-radius: 8px;
  padding: 20px;
  background-image: url(634b3a1c2c9fec9bcd5d.svg);
  background-color: #f6f4f8;
  background-size: cover;
  transition: border-color 0.3s ease;
}
.try-pro-banner:hover {
  cursor: default;
  border-color: #7bdcb2;
}
.try-pro-banner__title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #2b2b36;
  margin-bottom: 16px;
}
.try-pro-banner__title_green {
  color: #00c26f;
}
.try-pro-banner__advantages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.try-pro-banner__advantages-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.try-pro-banner__advantages-item-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}
.try-pro-banner__advantages-item-image {
  width: 12px;
  height: 12px;
}
.try-pro-banner__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  border: none;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.try-pro-banner__button-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  letter-spacing: 0.34px;
  text-align: left;
  margin: 0;
  color: #00c26f;
}
.try-pro-banner svg {
  position: relative;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .try-pro-banner__title {
    font-size: 24px;
  }
}
.promo-block {
  max-width: 343px;
  margin: 0 auto;
}
.exchange-stepper__christmas-promo-banner {
  background-image: url(80feddba54b732be6da0.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 24px 16px 20px;
  color: #fff;
  width: 100%;
}
.exchange-stepper__january-promo-banner {
  background-image: url(249ca41606675d381a7d.png);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 16px 16px 8px;
  color: #fff;
  width: 100%;
}
.exchange-stepper__march-promo-banner {
  background-image: url(6324c32d81248bfae0d7.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 24px 16px 20px;
  color: #fff;
  width: 100%;
}
.promo-banner__header {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.promo-banner__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  white-space: nowrap;
}
.promo-banner__subtitle {
  font-size: 20px;
  line-height: 28px;
  white-space: nowrap;
}
.promo-banner__options {
  padding: 0;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.promo-banner__option {
  position: relative;
  padding-left: 20px;
}
.promo-banner__option::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(b522ca4b9f49a531f96f.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12.55px;
}
.promo-banner__dates {
  border: 1px solid #344f6f;
  border-radius: 12px;
  margin: 16px 0;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.promo-banner__button {
  background-color: #00c26f;
  border-radius: 8px;
  padding: 8.5px 12px;
  font-size: 16px;
  line-height: 18.75px;
  color: #fff;
  border: none;
  max-width: 156px;
  text-align: left;
  position: relative;
  font-weight: 600;
}
.exchange-stepper__march-promo-banner .promo-banner__button {
  font-size: 14px;
  max-width: 203px;
}
.promo-banner__button::after {
  content: "";
  background-image: url(600e49004227b171bc5b.svg);
  position: absolute;
  top: 12px;
  right: 12px;
  width: 21px;
  height: 12px;
  margin-left: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.promo-banner__span {
  display: inline-block;
  margin: 12px 0;
  color: #a4a3aa;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
.promo-banner__span:hover {
  color: #00c26f;
}
.promo-banner__span::before {
  content: "";
  position: absolute;
  background-image: url(261b0c6b4131670cb2e6.svg);
  top: 50%;
  right: -20px;
  transform: translateY(-40%);
  width: 16px;
  height: 16px;
}
.promo-banner__span:hover::before {
  content: "";
  position: absolute;
  background-image: url(f0bff8b773cf20c5d3c2.svg);
  top: 50%;
  right: -20px;
  transform: translateY(-40%);
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 480px) {
  .promo-block {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .promo-block {
    width: 257px;
  }
  .exchange-stepper__christmas-promo-banner {
    background-image: url(af86d59203044973db29.png);
  }
  .exchange-stepper__january-promo-banner {
    background-image: url(021db0b6ca6a40e10172.png);
    background-position: top left;
  }
  .promo-banner__header {
    flex-direction: column;
    gap: 0;
  }
}
.pro-modal-ui {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
div.pro-modal__paper-sm,
div.pro-modal__paper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  max-height: 100%;
  height: 100%;
}
.pro-modal__icon-close {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
}
.pro-modal__content {
  padding: 16px 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  div.pro-modal__paper-sm,
  div.pro-modal__paper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    width: auto;
    max-width: 90%;
    max-height: 90%;
    height: auto;
  }
}
.black-friday__title {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  max-width: 80%;
}
.black-friday__content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  padding: 12px 0 32px;
  margin: 0;
}
.black-friday__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 0;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.christmas-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.christmas-content::before {
  content: "";
  position: absolute;
  background-image: url(02822578e090f617322c.svg);
  background-position: right;
  background-repeat: no-repeat;
  transform: rotate(10deg);
  top: -22px;
  right: -9px;
  width: 439px;
  height: 130px;
}
.christmas-content__title {
  padding-left: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  z-index: 1;
}
.christmas-content__block {
  margin-top: 12px;
  padding: 0 16px;
}
.christmas-content__block-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
  padding: 0;
  margin: 0;
  list-style: none;
}
.christmas-content__block-dates {
  display: flex;
  max-width: 193px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 12px;
  border: 1px solid #dce2ea;
  margin-bottom: 20px;
}
.christmas-content__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 28px 0 20px;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.christmas-content__block-info-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0 26px;
}
.christmas-content__block-info-rule {
  padding-left: 26px;
  text-indent: -26px;
}
.christmas-content__social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.christmas-content__blog-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
  color: #2b2b37;
}
.christmas-content__blog-link:hover {
  color: #00c26f;
}
.christmas-content__blog-link:visited {
  color: #2b2b37;
}
.christmas-content__blog-link:focus {
  color: #2b2b37;
}
.christmas-content__social-text {
  font-size: 16px;
  line-height: 24px;
  color: #9696a5;
  margin-right: 8px;
}
.christmas-content__social-link {
  margin-right: 8px;
}
.christmas-content__social .christmas-content__social-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 576px) {
  .christmas-content__title {
    align-self: center;
  }
  .christmas-content__block {
    padding: 24px 48px 16px;
    border-top: 1px solid #f0f0f0;
  }
  .christmas-content::after {
    content: "";
    position: absolute;
    background-image: url(3e8d4c07dc910fbe1847.svg);
    background-position: right;
    background-repeat: no-repeat;
    top: -55px;
    left: -103px;
    width: 439px;
    height: 130px;
  }
}
.january-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.january-content__title {
  padding-left: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  z-index: 1;
}
.january-content__block {
  margin-top: 12px;
  padding: 0 16px;
}
.january-content__block-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
  padding: 0;
  margin: 0;
  list-style: none;
}
.january-content__block-dates {
  display: flex;
  max-width: 193px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 12px;
  border: 1px solid #dce2ea;
  margin-bottom: 20px;
}
.january-content__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 28px 0 20px;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.january-content__block-info-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0;
  text-indent: 0;
  list-style: none;
  padding-left: 0;
}
.january-content__block-info-point {
  position: relative;
  padding-left: 26px;
}
.january-content__block-info-point::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #00c26f;
  border-radius: 50%;
}
.january-content__block-info-rule {
  padding-left: 26px;
  text-indent: -26px;
}
.january-content__block-info-rule span {
  margin-bottom: 8px;
}
.january-content__social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.january-content__blog-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
  color: #9696a5;
  position: relative;
  padding-right: 22px;
}
.january-content__blog-link:hover {
  color: #00c26f;
}
.january-content__blog-link:visited {
  color: #2b2b37;
}
.january-content__blog-link:focus {
  color: #2b2b37;
}
.january-content__blog-link::before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-55%);
  right: -4px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-image: url(261b0c6b4131670cb2e6.svg);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.january-content__blog-link:hover::before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-55%);
  right: -4px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-image: url(f0bff8b773cf20c5d3c2.svg);
}
.january-content__social-text {
  font-size: 16px;
  line-height: 24px;
  color: #9696a5;
  margin-right: 8px;
}
.january-content__social-link {
  margin-right: 8px;
}
.january-content__social .january-content__social-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 576px) {
  .january-content__title {
    align-self: center;
  }
  .january-content__block {
    padding: 24px 48px 16px;
    border-top: 1px solid #f0f0f0;
  }
}
.pro-modal {
  display: none;
  position: fixed;
  width: 100vw;
  bottom: -100%;
  z-index: 1002;
  background-color: #fff;
  transition: bottom 1s ease-in-out;
  padding: 16px 0;
  border-radius: 10px 10px 0 0;
}
.pro-modal_open {
  display: block;
  bottom: 0;
}
.pro-modal__close-button {
  position: absolute;
  top: 10px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  z-index: 100;
}
.pro-modal-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.pro-modal-container.pro-modal_overlay::before {
  display: block;
}
@media screen and (min-width: 576px) {
  .pro-modal {
    width: auto;
    padding: 16px 0;
    border-radius: 10px;
    max-width: 656px;
    min-width: 550px;
  }
  .pro-modal_open {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.tx-error-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 24px 16px;
  border-radius: 6px;
  background-color: #fff;
}
.tx-error-screen__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  color: #2b2b36;
}
.tx-error-screen__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #2b2b36;
  margin: 0;
}
.tx-error-screen__description_thanks {
  margin-top: 12px;
}
.tx-error-screen__tx-id.transaction-step--tx-id {
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 0;
}
.tx-error-screen__tx-id.transaction-step--tx-id
  .new-stepper-transaction-id__label,
.tx-error-screen__tx-id.transaction-step--tx-id
  .new-stepper-transaction-id__number {
  color: #808085;
  font-weight: 300;
}
.tx-error-screen__contact-button {
  width: 100%;
  padding: 12px 24px;
  margin-top: 32px;
  border: 1px solid #00c26f;
  border-radius: 1px;
  background-color: #fff;
  color: #00c26f;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  transition: all 0.2s ease-in-out;
}
.tx-error-screen__contact-button:hover {
  background-color: #e6f9f1;
}
.tx-error-screen__contact-button:active {
  background-color: #d0f9e8;
}
.tx-error-screen__image-wrapper {
  width: 215px;
  height: 141px;
  flex-shrink: 0;
}
.tx-error-screen__image {
  width: 215px;
  height: 141px;
}
@media screen and (min-width: 992px) {
  .tx-error-screen {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 70px;
  }
  .tx-error-screen__content {
    padding: 0 16px;
    max-width: 410px;
  }
  .tx-error-screen__image-wrapper {
    width: 208px;
    height: 195px;
  }
  .tx-error-screen__image {
    width: 208px;
    height: 195px;
  }
}
@media screen and (min-width: 1200px) {
  .tx-error-screen {
    max-width: 847px;
  }
}
.balance-deposit {
  min-height: 300px;
  position: relative;
}
.balance-deposit__header {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  height: 56px;
}
.balance-deposit__header img {
  margin-left: 8px;
  width: 20px;
}
.balance-deposit__loader {
  margin: 100px 0;
  text-align: center;
}
.balance-deposit__content {
  padding: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 262px;
}
.deposit-content__info {
  max-width: 330px;
}
.deposit-content__info-title {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.34px;
  margin-top: 16px;
}
.deposit-content__info-title a {
  color: #00c26f;
  text-decoration: none;
  cursor: pointer;
}
.deposit-content__info-title a:hover {
  color: #00c26f;
}
.deposit-content__info-title:first-child {
  margin-top: 0;
}
.deposit-content__info-value {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin-top: 8px;
}
.deposit-content__qr {
  display: none;
}
.deposit-content__qr_show {
  margin-top: 24px;
  display: block;
}
.deposit-content__qr-tabs {
  width: 160px;
}
.deposit-content__qr-tab {
  display: block;
  margin: 0 auto;
  width: 160px;
}
.balance-deposit__warning-fee {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.043px;
  display: flex;
  align-items: center;
  min-height: 54px;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.balance-deposit__warning-wrapper {
  display: flex;
  align-items: center;
  margin-left: 32px;
}
.balance-deposit__alert-img-wrapper {
  width: 32px;
}
.balance-deposit__warning-wrapper:first-child {
  margin: 0;
}
.balance-deposit__warning-fee-text span {
  color: #2b2b37;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.043px;
  display: inline;
}
.balance-deposit__warning-fee img {
  margin-right: 12px;
}
.balance-deposit__warning {
  border: 1px solid #f0f0f0;
  background: #fcefc1;
  color: rgba(43, 43, 54, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.043px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
}
.balance-deposit__warning img {
  margin-right: 12px;
}
.deposit-content__button-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  width: 100%;
  padding: 10px;
  outline: none;
  border-radius: 4px;
  border: 1px solid #eef1f2;
  background: #fff;
  margin-top: 24px;
}
.deposit-content__button-qr img {
  margin-right: 4px;
}
.balance-deposit__header-icon {
  display: flex;
  align-items: center;
}
.balance-deposit__currency-network {
  margin-left: 8px;
}
.balance-deposit__error {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5d5a60;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background-color: #fcedba;
  border-radius: 8px;
  padding: 16px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
}
.balance-deposit__error_bp {
  position: static;
  margin-top: 12px;
}
.balance-deposit__status-stepper {
  width: 100%;
  margin: 24px 0;
}
.balance-deposit__status-stepper .tx-step-item__progress-line {
  width: 100%;
}
.balance-deposit__now-custody-terms {
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
  margin-top: 12px;
  text-align: center;
}
.balance-deposit__now-custody-terms a {
  color: #9696a5;
  text-decoration-line: underline;
  cursor: pointer;
}
.balance-deposit__now-custody-terms a:hover {
  color: #9696a5;
}
.balance-deposit__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 48px 16px;
}
.balance-deposit__done-image {
  margin: 24px auto;
}
.balance-deposit__done-text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.balance-deposit__done-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;
}
.balance-deposit__done-button:hover {
  opacity: 0.8;
}
.balance-deposit__done-button_secondary {
  background: none;
  color: #00c26f;
  width: auto;
  margin: 16px auto 0 auto;
}
.balance-deposit__content_bp {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  height: 100%;
  min-height: 300px;
}
.balance-deposit__content-top_bp {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.balance-deposit__now-custody-terms_bp {
  margin: 0;
}
.pro-balance__coin-operations .balance-deposit__now-custody-terms a {
  color: #00c26f;
}
.qr-modal {
  bottom: 0 !important;
  top: unset !important;
}
.qr-modal__paper {
  height: 100% !important;
  margin: 0 !important;
  max-height: 100% !important;
  border-radius: 10px 10px 0 0 !important;
}
.qr-modal__paper-sm {
  padding: 24px 16px 0 !important;
}
.qr-modal__paper-sm .deposit-content__qr_show {
  margin-top: 16px !important;
}
.qr-modal__paper-sm .deposit-content__info-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  text-align: center;
}
.qr-modal__paper-sm .button-tabs__buttons {
  margin-bottom: 12px;
}
.balance-deposit__qr-modal {
  bottom: 0 !important;
  top: unset !important;
  width: 100%;
  height: 248px;
}
.balance-deposit__qr-modal_big {
  height: 288px;
  bottom: 0 !important;
  top: unset !important;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .balance-deposit__header {
    flex-direction: row;
  }
  .balance-deposit__content {
    padding: 16px 64px;
    justify-content: space-between;
  }
  .balance-deposit__warning {
    padding: 12px 80px;
  }
  .deposit-content__qr {
    display: block;
  }
  .deposit-content__button-qr {
    display: none;
  }
  .deposit-content__qr_show {
    margin-top: 0;
  }
  .deposit-content__info {
    min-height: 160px;
  }
  .balance-deposit__now-custody-terms {
    margin-top: 16px;
    margin-left: 48px;
  }
  .balance-deposit__done {
    padding: 0 64px 24px 64px;
  }
  .balance-deposit__done-text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 834px) {
  .balance-deposit__content_bp {
    min-height: unset;
  }
  .balance-deposit__warning-fee {
    align-items: flex-start;
    width: 100%;
  }
}
.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;
  }
}
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;
}
.tx-status-stepper {
  display: block;
}
@media screen and (min-width: 768px) {
  .tx-status-stepper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.tx-step-item {
  position: relative;
  width: 155px;
  height: 50px;
  margin: 0 auto;
}
.tx-step-item__success {
  display: block;
  width: 12px;
  height: 12px;
}
.tx-step-item__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tx-step-item__progress-wrap {
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tx-step-item__progress_inactive {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #eef1f2;
}
.tx-step-item__progress_active {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00c26f;
}
.tx-step-item__text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  color: #a4a3aa;
  margin-left: 12px;
}
.tx-step-item__text_active {
  font-size: 17px;
}
.tx-step-item__progress-line {
  width: 2px;
  height: 10px;
  position: absolute;
  top: 45px;
  left: 13px;
  background-color: #eef1f2;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .tx-step-item {
    width: 25%;
  }
  .tx-step-item__content {
    display: block;
    text-align: center;
  }
  .tx-step-item__progress-wrap {
    width: 32px;
    height: 32px;
    margin: 0 auto;
  }
  .tx-step-item__text {
    margin-left: 0;
    margin-top: 16px;
    white-space: nowrap;
  }
  .tx-step-item__text_active {
    font-size: 18px;
  }
  .tx-step-item__progress-line {
    width: calc(100% - 39px);
    height: 3px;
    top: 15px;
    left: 65%;
  }
}
.useful-tips.useful-tips-tx-step {
  margin-bottom: 0;
}
.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;
}
.page_exchange .exchange-stepper__main-page-wrapper,
.tx-exchange__main-page-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1134px;
  width: 100%;
  margin: 0 auto;
}
.exchange-stepper {
  min-height: 600px;
  margin-top: 24px;
}
.exchange-stepper--next-button {
  margin-top: 35px;
}
.exchange-stepper--input {
  margin-top: 24px;
}
.exchange-stepper--step-list {
  width: 250px;
}
@media screen and (max-width: 1199px) {
  .exchange-stepper--step-list {
    display: none;
  }
}
@media screen and (min-width: 1599px) {
  .exchange-stepper--step-list {
    padding-inline-start: 20px;
  }
}
.exchange-stepper--step-list-border {
  height: 20px;
}
@media all and (max-width: 1199px) {
  .exchange-stepper--step-list-border {
    border-left: 2px solid #ebe9ef;
    margin-inline-start: 17px;
  }
}
@media all and (min-width: 1200px) {
  .exchange-stepper--step-list-border {
    border-right: 2px solid #ebe9ef;
    margin-inline-end: 17px;
  }
}
.exchange-stepper--step-list-item {
  display: flex;
  align-items: center;
}
@media all and (min-width: 1200px) {
  .exchange-stepper--step-list-item {
    justify-content: space-between;
  }
}
.exchange-stepper--step-icon {
  text-align: right;
}
.exchange-stepper--step-title {
  list-style: none;
  font-weight: normal;
  line-height: 150%;
  letter-spacing: 0.043196px;
  color: rgba(43, 43, 55, 0.18);
}
.exchange-stepper--step-title__active {
  font-weight: bold;
}
.exchange-stepper--step-title__underline {
  text-decoration: underline;
}
@media all and (max-width: 1199px) {
  .exchange-stepper--step-title {
    margin-inline-start: 10px;
  }
}
@media all and (min-width: 992px) and (max-width: 1599px) {
  .exchange-stepper--step-title {
    font-size: 14px;
  }
}
@media all and (min-width: 1200px) {
  .exchange-stepper--step-title {
    font-size: 15px;
  }
}
.exchange-stepper--step-list-mobile-future,
.exchange-stepper--step-list-mobile-past {
  padding-inline-start: 15px;
}
@media all and (min-width: 1200px) {
  .exchange-stepper--step-list-mobile-future,
  .exchange-stepper--step-list-mobile-past {
    display: none;
  }
}
.exchange-stepper--step-list-mobile-future {
  margin-top: 0;
  margin-bottom: 32px;
}
.exchange-stepper--step-list-mobile-past {
  margin-bottom: 0;
}
.exchange-stepper--panel {
  padding: 35px 70px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media all and (max-width: 767px) {
  .exchange-stepper--panel {
    padding: 10px;
  }
}
@media all and (max-width: 991px) {
  .exchange-stepper--panel {
    margin-inline-end: 0;
  }
}
@media screen and (min-width: 1200px) {
  .exchange-stepper--panel {
    margin-bottom: 16px;
  }
}
.exchange-stepper .exchange-stepper--panel.exchange-stepper-trade-confirm {
  padding: 16px 18px;
}
@media screen and (min-width: 768px) {
  .exchange-stepper .exchange-stepper--panel.exchange-stepper-trade-confirm {
    padding: 24px 34px;
  }
}
.exchange-stepper .exchange-stepper--panel:has(.trade-transaction-info) {
  padding: 16px 16px 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .exchange-stepper .exchange-stepper--panel:has(.trade-transaction-info) {
    padding: 24px 24px 35px;
  }
}
.exchange-stepper
  .exchange-stepper--panel:has(.trade-transaction-info)
  .tx-step--status {
  max-width: 484px;
  margin: 15px 0 0;
}
@media screen and (min-width: 768px) {
  .exchange-stepper
    .exchange-stepper--panel:has(.trade-transaction-info)
    .tx-step--status {
    margin: 35px auto;
  }
}
.exchange-stepper
  .exchange-stepper--panel:has(.trade-transaction-info)
  .tx-step--status-content {
  margin: 0;
  justify-content: flex-start;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .exchange-stepper
    .exchange-stepper--panel:has(.trade-transaction-info)
    .tx-step--status-content {
    margin: 0 auto;
  }
}
.exchange-stepper .exchange-stepper--panel:has(.trade-transaction-info)::after {
  content: "";
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e5e9;
}
@media screen and (min-width: 768px) {
  .exchange-stepper
    .exchange-stepper--panel:has(.trade-transaction-info)::after {
    top: 60px;
  }
}
.exchange-stepper--attention-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.043196px;
  margin-bottom: 22px;
  margin-top: 0;
  color: #a4a3aa;
}
.exchange-stepper--attention-title span {
  color: #00c26f;
}
.exchange-stepper--attention-title a {
  text-decoration: underline;
  color: #00c26f;
}
.exchange-stepper--attention-title a:hover {
  text-decoration: none;
}
@media all and (max-width: 379px) {
  .exchange-stepper--attention-title {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 8px;
  }
}
.exchange-stepper--payment-offers {
  margin-top: 24px;
}
.exchange-stepper--payment-offers:last-child {
  margin-bottom: 0;
}
.exchange-stepper--loader {
  text-align: center;
  min-height: 300px;
}
.exchange-stepper__attention-title_dark {
  color: #2b2b36;
}
.exchange-stepper--warning-field {
  background: rgba(164, 163, 170, 0.15);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 10px 12px;
}
.exchange-stepper .col-lg-9 {
  min-height: 0;
}
.exchange-stepper__side-block {
  display: flex;
  flex-direction: column-reverse;
}
.exchange-stepper--warning-field p {
  font-size: 14px;
  line-height: 145%;
  margin: 0;
  align-items: center;
  letter-spacing: 0.04px;
  color: #a4a3aa;
  word-wrap: break-word;
}
.exchange-stepper--warning-field-yellow {
  position: relative;
  background-color: rgba(252, 237, 189, 0.59);
  border: 1px solid #e2e7ed;
  border-radius: 8px;
  padding: 15px;
}
.exchange-stepper--warning-field-yellow p {
  font-size: 15px;
  line-height: 23px;
  color: #a4a3aa;
  margin: 0;
}
.exchange-stepper__reusable-bnr {
  margin: 40px auto 32px;
}
.exchange-stepper__reusable-text_blue {
  color: #23c0f9;
}
.exchange-stepper__dashboard-navigation {
  min-height: 48px;
  margin: -40px 15px 24px;
  padding: 0;
}
.exchange-stepper__panel-fiat {
  padding: 0;
}
.exchange-stepper--attention-title-link {
  display: inline-block;
  vertical-align: middle;
}
.exchange-stepper--attention-title-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url(03e38199c04ca56937bc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0.72;
  transition: opacity ease 0.3s;
}
.exchange-stepper--attention-title-icon:hover {
  opacity: 1;
}
.exchange-stepper__dropdown-settings_promo {
  margin-inline-start: -10px;
  margin-inline-end: -10px;
  margin-bottom: -10px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.exchange-stepper__dropdown-settings_promo
  .new-stepper-dropdown-settings__content {
  padding-inline-start: 10px;
  padding-inline-end: 10px;
  padding-bottom: 10px;
}
.exchange-stepper__dropdown-settings_promo
  .new-stepper-dropdown-settings__title {
  border: 0;
}
.exchange-stepper__extensions {
  margin-top: 8px;
  padding-inline-start: 6px;
}
.exchange-stepper--next-button img.loader-icon {
  margin: 0 auto;
}
.exchange-stepper-fiat__action-button {
  background: #00c26f;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 13px;
  border: none;
  outline: none;
  margin-top: 24px;
  width: 100%;
}
.exchange-stepper-fiat__action-button-icon {
  margin-inline-start: 5px;
}
.exchange-stepper__child-exchanges {
  display: none;
}
.exchange-stepper__col_center {
  margin-inline-start: auto;
  margin-inline-end: auto;
  float: none;
}
.exchange-stepper__useful-tips {
  display: flex;
  box-shadow: none;
  padding: 16px;
  margin-top: 24px;
}
.exchange-stepper__useful-tips.exchange-stepper__useful-tips_auth {
  margin-bottom: 24px;
}
.exchange-stepper__original-id {
  margin-top: 8px;
}
.reusable-bnr__content ul li.exchange-stepper__promo-text {
  white-space: nowrap;
  padding: 0;
}
.exchange-stepper__flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}
.exchange-stepper.exchange-stepper_error-tx {
  min-height: auto;
  margin-top: 40px;
}
.exchange-stepper__promo-bnr::after {
  content: "";
  position: absolute;
  background-image: url(a50d6701a1aaa861d18d.svg);
  background-position: right;
  background-repeat: no-repeat;
  top: 0px;
  right: 0px;
  width: 335px;
  height: 85px;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr {
  background-image: url(b2e9539eebb1dc2792ed.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_january {
  background-image: url(d62617bcb2d283a9b4c0.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_march {
  background-image: url(8355b327f441543181f7.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr::before {
  content: "";
  background-image: linear-gradient(
    165.52deg,
    transparent 19.13%,
    #2d3548 84.3%
  );
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_january::before {
  content: "";
  background-image: linear-gradient(
    165.52deg,
    transparent 19.13%,
    #2d3548 84.3%
  );
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_march::before {
  display: none;
}
.exchange-stepper__side-block:has(.exchange-stepper__christmas-promo-banner) {
  flex-direction: column;
}
.exchange-stepper__side-block:has(.exchange-stepper__january-promo-banner) {
  flex-direction: column;
}
.exchange-stepper__side-block:has(.exchange-stepper__march-promo-banner) {
  flex-direction: column;
}
.exchange-stepper__promo-text.exchange-stepper__reusable-text_bold {
  font-weight: 500;
}
.exchange-stepper__promo-span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.07px;
  color: #c3c3c3;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_march
  .reusable-bnr__square {
  height: 38px;
}
.reusable-bnr.exchange-stepper__reusable-bnr.exchange-stepper__promo-bnr_march
  .reusable-bnr__square::before {
  top: -16px;
}
.exchange-stepper__child-exchanges_position-error {
  margin-top: 58px;
  margin-bottom: 24px;
}
.exchange-stepper:has(.exchange-calculator__trade-calculator) {
  min-height: 693px;
}
.exchange-stepper__centred-loader {
  display: flex;
  margin: 0 auto;
}
.exchange-stepper__child-exchanges_position-failed {
  display: none;
}
@media screen and (min-width: 768px) {
  .exchange-stepper--warning-field-yellow {
    padding: 10px 60px;
  }
  .exchange-stepper--warning-field-yellow:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 23px;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url(f161f2b56ce3052a4c32.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .exchange-stepper__dashboard-navigation {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  .exchange-stepper__panel-fiat {
    padding: 0 40px 40px;
  }
  .exchange-stepper__dropdown-settings_promo {
    margin: 40px -70px -35px;
  }
  .exchange-stepper__dropdown-settings_promo
    .new-stepper-dropdown-settings__content {
    padding: 24px 70px 10px;
  }
  .exchange-stepper-fiat__action-button {
    max-width: 254px;
  }
  .exchange-stepper__useful-tips {
    margin-top: 16px;
    padding: 40px 70px;
  }
}
@media screen and (min-width: 992px) {
  .exchange-stepper {
    margin-top: 58px;
    width: 66%;
  }
  .exchange-stepper__dashboard-navigation {
    margin: 0;
  }
  .exchange-stepper__original-id {
    margin-top: 16px;
    justify-content: flex-end;
  }
  .exchange-stepper__useful-tips {
    padding: 35px 70px;
  }
  .exchange-stepper.exchange-stepper_error-tx {
    min-height: auto;
    margin-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .exchange-stepper__reusable-bnr {
    display: block;
    margin: 0;
  }
  .exchange-stepper__unauthorized_start {
    width: 59%;
  }
  .page_exchange .exchange-stepper__useful-tips {
    display: block;
  }
  .exchange-stepper__side-block {
    flex-direction: column;
    position: absolute;
    right: -270px;
    top: 0;
    width: 252px;
  }
  .exchange-stepper__child-exchanges {
    display: block;
    position: relative;
  }
  .exchange-stepper__child-exchanges_position-failed {
    display: none;
  }
  .exchange-stepper__relative-wrapper {
    position: relative;
    margin-bottom: 32px;
  }
  .exchange-stepper__child-exchanges_position-refunded {
    margin-top: 6px;
    display: none;
  }
  .exchange-stepper__relative-wrapper
    .exchange-stepper__child-exchanges_position-finished {
    position: relative;
  }
  .exchange-stepper__relative-wrapper
    .exchange-stepper__child-exchanges_position-in-process {
    position: static;
  }
}
@media screen and (min-width: 1240px) {
  .exchange-stepper__side-block {
    right: -280px;
  }
}
.useful-tips__disclaimer {
  margin: 12px 0;
  border: 1px solid #dce2ea;
  padding: 8px 12px;
  border-radius: 6px;
}
.useful-tips__disclaimer-text {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #2b2b37;
  opacity: 1;
}
.useful-tips__description {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #2b2b37;
  opacity: 1;
  padding: 0;
}
.useful-tips__item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.useful-tips__item-title {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #2b2b37;
  opacity: 1;
}
.useful-tips__item-description.useful-tips__item-description_third-party {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: #6a6a7f;
  opacity: 1;
}
.useful-tips__category-title {
  margin-bottom: 12px;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.27px;
  color: #2b2b37;
}
.useful-tips__list_third-party {
  margin: 12px 0;
}
.useful-tips__description + .useful-tips__block_third-party {
  padding-top: 0;
  border-top: none;
}
.useful-tips_fixed-rate .useful-tips__category-title {
  color: #2b2b36;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0;
}
.useful-tips_fixed-rate .useful-tips__disclaimer {
  margin-top: 12px;
  margin-bottom: 24px;
}
.useful-tips_fixed-rate .useful-tips__block {
  padding: 24px 0;
}
.useful-tips_fixed-rate .useful-tips__block.useful-tips__block_with-support {
  padding-bottom: 12px;
}
@media screen and (min-width: 992px) {
  .useful-tips_fixed-rate .useful-tips__disclaimer {
    margin-bottom: 16px;
  }
  .useful-tips_fixed-rate .useful-tips__block {
    padding: 16px 0;
  }
}
.useful-tips {
  flex-direction: column;
  margin-bottom: 80px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2.4px 20px rgba(43, 43, 54, 0.07);
}
.useful-tips__header {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.27px;
  text-align: start;
  color: #2b2b37;
}
.useful-tips__block {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-top: 1px solid #dce2ea;
}
.useful-tips .useful-tips__block.useful-tips__block_without-border {
  border-top: none;
  padding-top: 0;
}
.useful-tips__block:first-child {
  border-top: none;
}
.useful-tips__block:last-child {
  padding-bottom: 0;
}
.useful-tips__block-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0;
  text-align: start;
  color: #2b2b37;
}
.useful-tips__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.useful-tips__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.useful-tips__contact-support {
  padding: 6px 12px;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  margin-top: 12px;
}
.useful-tips__contact-support.useful-tips__contact-support_bottom-border {
  margin-top: 0;
  margin-bottom: 24px;
}
.useful-tips__contact-support-text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
  text-align: start;
  color: #2b2b37;
}
.useful-tips__item-description {
  display: inline-block;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
  text-align: start;
  color: #2b2b37;
}
.useful-tips__item-icon {
  position: relative;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
}
.useful-tips__item-icon::before {
  line-height: 8px;
}
.useful-tips__item-icon_success {
  background-color: #00c26f;
}
.useful-tips__item-icon_wrong {
  background-color: #fea53b;
}
.useful-tips__item-icon_cancel {
  position: relative;
  top: 2px;
  width: 17px;
  height: 17px;
}
.useful-tips__additional-warning {
  background: #fcedbd;
  border-radius: 8px;
  border: 1px solid #e2e7ed;
  width: 100%;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.useful-tips__additional-warning-text_bold {
  font-weight: 700;
}
.useful-tips__additional-warning-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.04px;
  color: #a4a3aa;
  text-align: start;
  padding: 0;
  margin: 0;
}
.useful-tips__additional-warning-icon {
  width: 20px;
  height: 20px;
  margin-inline-end: 16px;
  display: none;
}
@media screen and (min-width: 768px) {
  .useful-tips__additional-warning {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  }
  .useful-tips__additional-warning-icon {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .useful-tips__contact-support.useful-tips__contact-support_bottom-border {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .useful-tips {
    padding: 40px;
    margin-top: 16px;
    margin-bottom: 80px;
  }
}
.confirm-trade-exchange__header {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 10px;
}
.confirm-trade-exchange__header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 1px;
  background-color: #e5e5e9;
}
.confirm-trade-exchange__main-button.confirm-trade-exchange__main-button_loading {
  color: #fff;
  background-color: #a4a3aa;
  border: 1px solid #a4a3aa;
  opacity: 0.5;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.confirm-trade-exchange__header-button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  cursor: pointer;
  background-image: url(d51247b3ba2a307dc261.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
}
.confirm-trade-exchange__header-title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #2b2b37;
}
.confirm-trade-exchange__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  margin: 32px auto 0;
}
.confirm-trade-exchange__exchange-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirm-trade-exchange__exchange-amounts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  padding: 6.5px 16px;
}
.confirm-trade-exchange__exchange-amount-coin {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.confirm-trade-exchange__exchange-amount-span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #9696a5;
}
.confirm-trade-exchange__exchange-amount-coin-text {
  padding-left: 12px;
  font-size: 22px;
  line-height: 30.8px;
  letter-spacing: 0.3px;
  color: #5b587d;
  overflow-wrap: break-word;
  word-break: break-all;
  white-space: break-spaces;
}
.confirm-trade-exchange__exchange-amount-coin-text span {
  white-space: nowrap;
}
.confirm-trade-exchange__exchange-amount-coin-text.confirm-trade-exchange__exchange-amount-coin-text_green {
  color: #00c26f;
}
.confirm-trade-exchange__exchange-amount {
  position: relative;
}
.confirm-trade-exchange__exchange-amount:last-of-type::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -8px;
  width: calc(100% + 32px);
  height: 1px;
  background-color: #dce2ea;
}
.confirm-trade-exchange__exchange-amount:last-of-type::after {
  content: "";
  position: absolute;
  right: 27px;
  top: -15px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-image: url(11028edf13b60bd67857.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #dce2ea;
  background-color: #fff;
}
.confirm-trade-exchange__exchange-rate-span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #9696a5;
}
.confirm-trade-exchange__exchange-rate-text {
  margin: 0;
  padding: 4px 0 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #2b2b37;
}
.confirm-trade-exchange__balances-title {
  margin: 0;
  padding: 0 0 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b37;
}
.confirm-trade-exchange__balance-span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #9696a5;
}
.confirm-trade-exchange__balance-text {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #2b2b37;
  padding-top: 4px;
}
.confirm-trade-exchange__balance {
  border: 1px solid #dce2ea;
  border-radius: 8px 8px 0 0;
  padding: 12px 16px 8px;
}
.confirm-trade-exchange__balance:last-of-type {
  border-radius: 0 0 8px 8px;
  border-top: none;
}
.confirm-trade-exchange__exchange-amount-coin-icon {
  width: 24px;
  height: 24px;
}
.confirm-trade-exchange__main-button {
  background-color: #00c26f;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  padding: 13px 0;
  cursor: pointer;
  max-width: 480px;
  width: 100%;
  align-self: center;
}
.confirm-trade-exchange__main-button.confirm-trade-exchange__main-button_white {
  background-color: rgba(0, 0, 0, 0);
  color: #00c26f;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00c26f;
}
.confirm-trade-exchange__main-button_loader {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .confirm-trade-exchange__main {
    margin: 32px 36px 0;
  }
  .confirm-trade-exchange__header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -34px;
    width: calc(100% + 68px);
    height: 1px;
    background-color: #e5e5e9;
  }
}
.set-transaction-step--content {
  width: 100%;
}
.set-transaction-step .now-button {
  width: 100%;
  height: 50px;
}
@media all and (max-width: 767px) {
  .set-transaction-step .now-button {
    width: 100%;
  }
}
.set-transaction-step--input-title {
  margin-bottom: 4px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  font-style: normal;
}
.set-transaction-step--input-field:first-of-type {
  margin-top: 0;
}
.set-transaction-step--input-field {
  position: relative;
  margin-top: 25px;
}
.set-transaction-step--input-field .now-input--icon {
  position: absolute;
  right: 15px;
  bottom: 9px;
  color: #00c26f;
}
@media all and (max-width: 379px) {
  .set-transaction-step--input-field .now-input--input {
    font-size: 17px;
  }
}
.set-transaction-step--input-field__is-required {
  position: relative;
}
.set-transaction-step--input-field__is-required .now-input__default {
  display: block;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.set-transaction-step--input-field__is-required .warning-field {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: left;
  background-color: #b3edd4;
  border: 1px solid #00c26f;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 0 20px;
}
.set-transaction-step--input-field__is-required .warning-field p {
  font-size: 14px;
  line-height: 16px;
  color: #5d5a60;
  margin: 0;
}
.set-transaction-step--input-field__show-error {
  position: relative;
}
.set-transaction-step--input-field__show-error .now-input__default {
  border: 1px solid rgba(255, 216, 92, 0.5) !important;
  border-radius: 4px 4px 0 0;
}
.set-transaction-step--input-field__show-error .warning-field {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: left;
  background-color: #ffedb3;
  border: 1px solid rgba(255, 216, 92, 0.5);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.set-transaction-step--input-field__show-error .warning-field p {
  padding: 19px;
  font-size: 14px;
  line-height: 16px;
  color: #35354c;
  letter-spacing: 0.0736842px;
}
.set-transaction-step--input-field__show-error .warning-field p a {
  font-size: 14px;
  line-height: 16px;
  color: #35354c;
  text-decoration: underline;
  letter-spacing: 0.0736842px;
}
.set-transaction-step--input-field__show-error .warning-field__hide-content {
  display: none;
}
.set-transaction-step--qr-scanner-button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 15px 13px 0;
  cursor: pointer;
  z-index: 2;
}
.set-transaction-step--field-hint-link {
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 12px;
  line-height: 17px;
  color: #808086;
  cursor: pointer;
  transition: 0.1s ease;
}
.set-transaction-step--field-hint-link:hover {
  color: #00c26f;
}
.set-transaction-step .wallet {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  height: 75px;
  margin-bottom: 15px;
  padding: 5px 10px;
  background: rgba(61, 61, 112, 0.04);
  border-radius: 4px;
}
.set-transaction-step .wallet:last-child {
  margin-bottom: 0;
}
.set-transaction-step .wallet--icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallet--icon {
    width: 60px;
    height: 60px;
  }
}
.set-transaction-step .wallet--icon img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.set-transaction-step .wallet--inner {
  width: 100%;
  margin: 0 9px;
  padding: 0 11px;
}
.set-transaction-step .wallet--head {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  height: 65px;
}
.set-transaction-step .wallet--info {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 100px;
  vertical-align: top;
}
.set-transaction-step .wallet--name {
  font-size: 15px;
  line-height: 1.1;
  color: #000;
}
.set-transaction-step .wallet--currency {
  font-size: 13px;
  color: #aba9b5;
  text-transform: uppercase;
  letter-spacing: 0.06px;
}
.set-transaction-step .wallet--show-details {
  display: inline-block;
  padding: 4px 6px;
  font-size: 11px;
  vertical-align: top;
  color: #828282;
  cursor: pointer;
  opacity: 0.7;
}
.set-transaction-step .wallet--platforms {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  max-width: 100px;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallet--platforms {
    display: none;
  }
}
.set-transaction-step .wallet--platforms_big-list {
  display: inline-grid;
  align-items: center;
  max-width: 100px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: end;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallet--platforms_big-list {
    display: none;
  }
}
.set-transaction-step .wallet--platform {
  margin-left: 5px;
}
.set-transaction-step .wallet--platform:first-child {
  margin: 0;
}
.set-transaction-step .wallet--details {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 10px;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallet--details {
    display: none;
  }
}
.set-transaction-step .wallet--link {
  display: flex;
  align-items: center;
}
.set-transaction-step .wallet--details-item {
  height: 38px;
  padding-right: 30px;
  padding-left: 5px;
  border-left: 1px solid rgba(196, 194, 211, 0.4);
}
.set-transaction-step .wallet--details-item:last-child {
  padding-right: 0;
}
.set-transaction-step .wallet--info-wrapper {
  display: flex;
}
.set-transaction-step .wallet--details-item-title {
  margin-bottom: 2px;
  font-size: 12px;
  color: #aba9b5;
  letter-spacing: 0.06px;
}
.set-transaction-step .wallet--details-item-value {
  font-size: 14px;
}
.set-transaction-step .wallets-list {
  width: 700px;
  margin: 20px 0;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallets-list {
    width: 100%;
  }
}
.set-transaction-step .wallets-list--head {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.set-transaction-step .wallets-list--head > h3 {
  margin-right: 17px;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  color: #2b2b36;
  letter-spacing: 0.09px;
}
.set-transaction-step .wallets-list--content {
  padding-top: 15px;
  padding-left: 20px;
  border-left: 1px solid rgba(196, 194, 211, 0.4);
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallets-list--content {
    padding: 0;
    border: 0;
  }
}
.set-transaction-step .wallets-list--block {
  display: flex;
  flex-direction: column;
}
.set-transaction-step .wallets-list--block:first-child {
  margin-bottom: 36px;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallets-list--block:first-child {
    margin-bottom: 18px;
  }
}
.set-transaction-step .wallets-list--block-title {
  font-size: 14px;
  color: #aba9b5;
  letter-spacing: 0;
}
@media all and (max-width: 1199px) {
  .set-transaction-step .wallets-list--block-title {
    margin-bottom: 5px;
  }
}
.set-transaction-step--refund-hint-message {
  margin-top: 40px;
}
.set-transaction-step .exchange-stepper--warning-field {
  width: 100%;
  margin: 26px 0;
}
.set-transaction-step .exchange-stepper--warning-field_mt-26 {
  margin-top: 26px;
}
.set-transaction-step__useful-tips {
  display: none;
}
.set-transaction-step_custom-swap .exchange-calculator--swap-button-img {
  transform: rotate(90deg);
}
.set-transaction-step_custom-swap .new-stepper-button-lock {
  display: none;
}
.set-transaction-step_custom-swap .exchange-calculator--estimation-field {
  pointer-events: none;
  cursor: default;
}
.exchange-stepper__terms {
  margin: 12px 0 24px 0;
}
.exchange-stepper__terms-item {
  margin: 8px 0 0 0;
  padding: 0;
  text-align: center;
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
}
.exchange-stepper__terms-item a {
  color: #00c26f;
}
.exchange-stepper__terms-item a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .exchange-stepper__terms {
    margin: 16px 0 24px 0;
  }
  .exchange-stepper__terms-item {
    margin: 4px 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .set-transaction-step__useful-tips_auth {
    margin-bottom: 24px;
  }
  .set-transaction-step__useful-tips_creating-trx {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .set-transaction-step__useful-tips {
    display: flex;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 32px 70px;
  }
}
@media screen and (max-width: 575px) {
  .confirm-transaction-step--container {
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 6px;
    padding: 11px 10px 0 10px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .confirm-transaction-step--send-section {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .confirm-transaction-step--send-section {
    margin-bottom: 12px;
  }
}
.confirm-transaction-step--details {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.confirm-transaction-step--extra-info-section {
  margin-bottom: 25px;
}
.confirm-transaction-step--control-button {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .confirm-transaction-step--agreements {
    max-width: 440px;
  }
}
.confirm-transaction-step--agreements label {
  display: flex;
  flex-direction: row;
}
.confirm-transaction-step--agreements label > span {
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  color: #a4a3aa;
  margin-top: 4px;
  align-self: center;
}
.confirm-transaction-step--agreements label > span a {
  text-decoration: underline;
  color: #00c26f;
  white-space: nowrap;
}
.confirm-transaction-step--agreements label > div {
  width: 30px !important;
}
.confirm-transaction-step--phishing-warning {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 12px;
  border-radius: 8px;
  background: #e5e5e9;
  max-width: 262px;
  margin: 40px auto 0 auto;
}
.confirm-transaction-step--get-sure-info {
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  padding: 0;
  margin: 0 0 12px 0;
  letter-spacing: 0.043px;
  color: #2b2b36;
}
.confirm-transaction-step--rate {
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.043196px;
  color: #2b2b36;
}
.confirm-transaction-step--rate-content {
  margin-inline-end: 10px;
}
@media all and (min-width: 576px) {
  .confirm-transaction-step--rate-content {
    margin-inline-end: 13px;
  }
}
.confirm-transaction-step--fix-rate-timer {
  color: #2b2b36;
  font-size: 15px;
}
.confirm-transaction-step--fix-rate-timer svg {
  width: 13px;
}
.confirm-transaction-step--recipient-wallet {
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  word-break: break-all;
  letter-spacing: 0.043196px;
  color: #2b2b36;
}
.confirm-transaction-step--label {
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  color: #a4a3aa;
}
.confirm-transaction-step--amount {
  font-weight: bold;
  font-size: 34px;
  line-height: 140%;
  margin-inline-end: 100px;
  color: #2b2b36;
}
@media all and (max-width: 767px) {
  .confirm-transaction-step--amount {
    font-size: 28px;
    margin-inline-end: 0px;
  }
}
.confirm-transaction-step--extra-content {
  font-size: 15px;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: 0.043196px;
  margin-bottom: 16px;
  color: #2b2b36;
  word-break: break-all;
}
@media all and (max-width: 575px) {
  .confirm-transaction-step .now-button__disable {
    display: none;
  }
}
.confirm-transaction-step .now-button__white {
  height: 50px;
  width: 152px;
}
@media all and (max-width: 575px) {
  .confirm-transaction-step .now-button__white {
    width: 100%;
  }
}
@media all and (max-width: 575px) {
  .confirm-transaction-step .now-button__hid {
    display: none;
  }
}
.confirm-transaction-step .exchange-stepper--warning-field {
  margin-bottom: 20px;
}
@media all and (max-width: 575px) {
  .confirm-transaction-step .exchange-stepper--warning-field {
    width: 100%;
  }
}
@media all and (min-width: 576px) {
  .confirm-transaction-step .exchange-stepper--warning-field {
    width: 438px;
  }
}
.confirmation-agreements {
  margin-top: 24px;
}
.confirm-transaction-step .now-button__green,
.confirm-transaction-step .now-button__disable {
  height: 50px;
  width: 273px;
}
.confirm-transaction-step .now-button__green svg,
.confirm-transaction-step .now-button__disable svg {
  transform: translateY(5px);
}
@media all and (max-width: 575px) {
  .confirm-transaction-step .now-button__green,
  .confirm-transaction-step .now-button__disable {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .confirm-transaction-step .now-button__green,
  .confirm-transaction-step .now-button__disable {
    margin-inline-end: 13px;
  }
}
.confirmation-extra-info__label {
  font-weight: normal;
  font-size: 13px;
  line-height: 140%;
  color: #a4a3aa;
}
.confirmation-extra-info__content {
  font-size: 15px;
  line-height: 150%;
  font-weight: normal;
  letter-spacing: 0.043196px;
  margin-bottom: 16px;
  color: #2b2b37;
  word-break: break-all;
}
.often-change {
  border-radius: 8px;
  border: 1px solid #e2e7ed;
  background: #fff;
  width: 100%;
}
.often-change__main {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  outline: none;
}
.often-change__main-icons {
  display: none;
}
.often-change__currency-icon {
  height: 32px;
  width: 32px;
}
.often-change__currency-icon:last-child {
  position: absolute;
  right: 0;
}
html[dir="rtl"] .often-change__currency-icon:last-child {
  right: unset;
  left: 0;
}
.often-change__main-title {
  padding: 0;
  margin: 0;
  color: #2b2b36;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.often-change__main-icon {
  margin-inline-start: auto;
  transition: all 0.2s ease-in-out;
}
.often-change.often-change_opened .often-change__main-icon {
  transform: rotateZ(-180deg);
}
.often-change__hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  padding: 0 16px;
}
.often-change.often-change_opened .often-change__hidden-content {
  max-height: 220px;
  padding: 0 16px 12px 16px;
}
.often-change__hidden-content-text {
  color: #2b2b36;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.043px;
  margin: 4px 0 0 0;
  padding: 0;
}
.often-change__hidden-first {
  display: flex;
  flex-direction: column;
}
.often-change__hidden-address.new-stepper-copy-text {
  color: #2b2b36;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.6px;
  letter-spacing: 0.043px;
}
.often-change__hidden-address .new-stepper-copy-button {
  position: relative;
  top: 4px;
}
.often-change__hidden-link {
  color: #2b2b36;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.043px;
  position: relative;
  margin-top: 12px;
  display: inline-block;
}
.often-change__hidden-link:before,
.often-change__hidden-link:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 6px;
  border-radius: 1px;
  background: #2b2b36;
}
.often-change__hidden-link:before {
  top: 9px;
  right: -10px;
  transform: rotateZ(45deg);
}
.often-change__hidden-link:after {
  top: 5px;
  right: -10px;
  transform: rotateZ(-45deg);
}
html[dir="rtl"] .often-change__hidden-link:before,
html[dir="rtl"] .often-change__hidden-link:after {
  right: unset;
  left: -10px;
}
.often-change__hidden-link:hover {
  color: #00c26f;
}
.often-change__hidden-link:hover:before,
.often-change__hidden-link:hover:after {
  background: #00c26f;
}
@media screen and (min-width: 768px) {
  .often-change__main {
    padding: 8px 20px;
  }
  .often-change__main-icons {
    display: block;
    margin-inline-end: 12px;
    width: 48px;
    position: relative;
  }
  .often-change.often-change_opened .often-change__hidden-content {
    max-height: 120px;
    padding-top: 0;
    padding-inline-end: 16px;
    padding-bottom: 12px;
    padding-inline-start: 80px;
  }
  .often-change__hidden-content {
    padding-top: 0;
    padding-inline-end: 16px;
    padding-bottom: 0;
    padding-inline-start: 80px;
  }
  .often-change__hidden-first {
    flex-direction: row;
  }
  .often-change__hidden-content-text {
    margin-inline-end: 8px;
  }
}
.long-time-change {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #dce2ea;
  padding: 16px;
  margin: 32px 0;
  position: relative;
}
.long-time-change__success {
  width: 100%;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-height: 0;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  overflow: hidden;
}
.long-time-change__success .long-time-change__title {
  text-align: center;
  color: #00c26f;
}
.long-time-change__success .long-time-change__description {
  text-align: center;
  color: #808086;
}
.long-time-change__success .long-time-change__description span {
  text-align: center;
  color: #2b2b36;
}
.long-time-change__form {
  width: 100%;
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-height: 0;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  overflow: hidden;
}
.long-time-change__success_active {
  max-height: 320px;
  opacity: 1;
}
.long-time-change__form_active {
  max-height: 320px;
  opacity: 1;
}
.long-time-change__title {
  width: 100%;
  max-width: 516px;
  color: #2b2b36;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.44px;
  margin: 0;
  padding: 0;
}
.long-time-change__description {
  width: 100%;
  max-width: 516px;
  color: #2b2b36;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.3px;
  margin: 4px 0 0 0;
  padding: 0;
  opacity: 1;
}
.long-time-change__email-field {
  width: 100%;
  max-width: 516px;
  margin: 16px 0 0 0;
  padding: 0;
}
.long-time-change__button {
  width: 100%;
  max-width: 516px;
  margin: 12px 0 0 0;
}
@media screen and (min-width: 768px) {
  .long-time-change {
    padding: 32px;
    margin: 0 0 40px 0;
  }
  .long-time-change__title {
    text-align: center;
  }
  .long-time-change__description {
    text-align: center;
  }
  .long-time-change__button {
    margin: 16px 0 0 0;
  }
}
.trade-transaction-info__exchange-amounts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  padding: 6.5px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px 0;
}
.trade-transaction-info__title {
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #2b2b37;
  padding-bottom: 8px;
}
.trade-transaction-info__exchange-amount {
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
}
.trade-transaction-info__exchange-amount-text {
  white-space: nowrap;
  padding-left: 12px;
  font-size: 22px;
  line-height: 30.8px;
  letter-spacing: 0.3px;
  color: #5b587d;
  overflow-wrap: break-word;
  word-break: break-all;
  white-space: break-spaces;
}
.trade-transaction-info__exchange-amount-text span {
  white-space: nowrap;
}
.trade-transaction-info__exchange-amount-text.trade-transaction-info__exchange-amount-text_green {
  color: #00c26f;
}
.trade-transaction-info__exchange-amount-icon {
  width: 24px;
  height: 24px;
}
.trade-transaction-info__exchange-amount:last-of-type::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -8px;
  width: calc(100% + 32px);
  height: 1px;
  background-color: #dce2ea;
}
.trade-transaction-info__exchange-amount:last-of-type::after {
  content: "";
  position: absolute;
  right: 27px;
  top: -15px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-image: url(11028edf13b60bd67857.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #dce2ea;
  background-color: #fff;
}
.trade-transaction-info__span {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .trade-transaction-info__span {
    font-size: 20px;
  }
  .trade-transaction-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .trade-transaction-info__exchange-amounts {
    display: grid;
    grid-auto-columns: max-content;
    grid-template-columns: max-content max-content;
    gap: 56px;
    padding: 12px 16px;
  }
  .trade-transaction-info__exchange-amount:last-of-type::before {
    content: "";
    position: absolute;
    left: -19px;
    top: -12px;
    height: calc(100% + 24px);
    width: 1px;
    background-color: #dce2ea;
  }
  .trade-transaction-info__exchange-amount:last-of-type::after {
    content: "";
    position: absolute;
    left: -28px;
    top: calc(50% - 7px);
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-image: url(11028edf13b60bd67857.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    border: 1px solid #dce2ea;
    background-color: #fff;
  }
}
.need-help-transaction-block {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  background-color: #fff;
  box-shadow: 0 2.4px 20px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
}
.need-help-transaction-block__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.27px;
  color: #2b2b37;
  padding-bottom: 12px;
  margin: 0;
}
.need-help-transaction-block__span {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  color: #2b2b37;
}
@media screen and (min-width: 768px) {
  .need-help-transaction-block {
    padding: 28px 70px;
  }
}
.trade-transaction-details {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2.4px 30px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
  padding: 24px 16px 16px;
  margin-bottom: 40px;
}
.trade-transaction-details__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #2b2b36;
  text-align: center;
  letter-spacing: 0.4px;
  margin: 0;
  opacity: 1;
}
.trade-transaction-details__currencies-block {
  display: flex;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #f4f4f5;
  flex-direction: column;
}
.trade-transaction-details__currency-block {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.trade-transaction-details__currency-block:first-of-type {
  flex-direction: row-reverse;
  align-self: self-start;
}
.trade-transaction-details__currency-amount {
  font-size: 18px;
  font-weight: 500;
  color: #2b2b36;
}
.trade-transaction-details__currency-block_from
  .trade-transaction-details__currency-amount {
  color: #00c26f;
}
.trade-transaction-details__currency-block:last-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f0f0f0;
}
.trade-transaction-details__currency-block:last-of-type::after {
  content: "";
  position: absolute;
  top: -9px;
  right: 40px;
  transform: rotate(90deg);
  width: 18px;
  height: 18px;
  background-image: url(2e95f102a1dfe75ae654.svg);
}
@media screen and (min-width: 768px) {
  .trade-transaction-details {
    padding: 28px 20px 40px;
  }
  .trade-transaction-details__title {
    font-size: 20px;
    line-height: 25px;
  }
  .trade-transaction-details__currencies-block {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .trade-transaction-details__currency-block {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
  }
  .trade-transaction-details__currency-block:last-of-type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #f0f0f0;
  }
  .trade-transaction-details__currency-block:last-of-type::after {
    content: "";
    transform: rotate(0);
    position: absolute;
    left: -8px;
    right: 0;
    top: calc(50% - 9px);
    width: 18px;
    height: 18px;
    background-image: url(2e95f102a1dfe75ae654.svg);
  }
}
.transaction-step {
  position: relative;
}
.transaction-step--get-label,
.transaction-step--recipient-wallet-label,
.transaction-step--refund-address-label {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #2b2b36;
}
.transaction-step--get-amount,
.transaction-step--recipient-wallet,
.transaction-step--refund-address {
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  color: #2b2b36;
  margin-bottom: 15px;
  word-break: break-all;
}
.transaction-step--tx-id {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.transaction-step--tx-id .copy-btn {
  color: rgba(43, 43, 55, 0.6);
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  width: 20px;
}
.transaction-step--tx-id .copy-btn:hover {
  color: #2b2b37;
}
.transaction-step--tx-id .copy-btn--note {
  color: rgba(43, 43, 55, 0.25);
  position: absolute;
  right: 0;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .transaction-step--tx-id {
    padding-inline-start: 15px;
  }
}
@media screen and (min-width: 768px) {
  .transaction-step--tx-id {
    position: relative;
    left: 0;
  }
}
.transaction-step--tx-id .tx-id--label {
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.2px;
  color: rgba(43, 43, 55, 0.25);
  opacity: 0.8;
  margin-inline-end: 8px;
}
.transaction-step--tx-id .tx-id--content {
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.2px;
  padding: 4px 10px;
  margin-inline-end: 8px;
  color: rgba(43, 43, 55, 0.25);
  background: rgba(53, 53, 76, 0.05);
  border-radius: 20px;
}
.transaction-step--deposit-info {
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-sizing: border-box;
  border-radius: 6px;
  display: grid;
  grid-template: "details qr" "timer timer" "attention attention" "settings settings";
  grid-template-columns: 50% 50%;
}
.transaction-step--deposit-info__done {
  position: relative;
  box-shadow: 0 2.4px 15px rgba(43, 43, 54, 0.12);
  border-radius: 8px;
  border: 0;
  overflow: hidden;
}
.transaction-step--deposit-info__done::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 74px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: hsla(0, 0%, 100%, 0.93);
  background-image: url(6424654872d19cff3ea4.svg);
}
@media all and (max-width: 575px) {
  .transaction-step--deposit-info {
    grid-template: "details details" "qr qr" "timer timer" "attention attention" "settings settings";
  }
}
.transaction-step--deposit-info .timer {
  grid-area: timer;
  display: flex;
}
.transaction-step .deposit-info {
  margin-bottom: 30px;
}
.transaction-step .deposit-info--content {
  width: 100%;
  padding: 16px;
  grid-area: details;
}
@media screen and (min-width: 768px) {
  .transaction-step .deposit-info--content {
    padding-top: 24px;
    padding-inline-start: 24px;
    padding-bottom: 24px;
    padding-inline-end: 0px;
  }
}
.transaction-step .deposit-info--amount-label,
.transaction-step .deposit-info--address-label,
.transaction-step .deposit-info--extra-id-label,
.transaction-step .deposit-info--fiat-label {
  font-size: 14px;
  line-height: 20px;
  color: #808086;
}
.transaction-step .deposit-info--amount,
.transaction-step .deposit-info--address,
.transaction-step .deposit-info--extra-id {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #2b2b36;
  margin-bottom: 16px;
  word-break: keep-all;
  display: flex;
  align-items: center;
}
.transaction-step .deposit-info--fiat-info {
  font-weight: bold;
  font-size: 24px;
  line-height: 140%;
  color: #2b2b36;
  margin-bottom: 10px;
}
.transaction-step .deposit-info--address,
.transaction-step .deposit-info--extra-id {
  line-height: 24px;
  font-size: 16px;
}
.transaction-step .deposit-info--address .copy-btn,
.transaction-step .deposit-info--extra-id .copy-btn {
  display: inline-flex;
  margin-inline-start: 5px;
  cursor: pointer;
  vertical-align: initial;
  align-items: center;
  font-size: 18px;
  height: 18px;
}
.transaction-step .deposit-info--address .copy-btn--note,
.transaction-step .deposit-info--extra-id .copy-btn--note {
  margin-inline-start: 6px;
  font-size: 18px;
  font-weight: normal;
}
.transaction-step .deposit-info--deposit-info-qr {
  grid-area: qr;
  padding: 0 15px 21px;
}
@media all and (max-width: 575px) {
  .transaction-step .deposit-info--deposit-info-qr {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .transaction-step .deposit-info--deposit-info-qr {
    padding: 21px;
  }
}
.transaction-step .exchange-progress {
  margin-bottom: 35px;
}
.transaction-step .exchange-stepper--panel {
  margin-bottom: 0;
}
.transaction-step .exchange-stepper--step .subscription-block--mail-container {
  width: 100%;
  padding-inline-end: 10px;
}
@media screen and (max-width: 767px) {
  .transaction-step
    .exchange-stepper--step
    .subscription-block--mail-container {
    max-width: 70px;
  }
}
@media screen and (max-width: 991px) {
  .transaction-step
    .exchange-stepper--step
    .subscription-block--mail-container {
    margin: 0 auto 18px auto;
  }
}
@media screen and (min-width: 768px) {
  .transaction-step
    .exchange-stepper--step
    .subscription-block--mail-container {
    max-width: 100px;
  }
}
.transaction-step
  .exchange-stepper--step
  .subscription-block--mail-container
  > img {
  width: 100%;
  margin-inline-start: -4px;
}
.transaction-step .subscription-block--text h3 {
  margin-bottom: 0.66em;
  font-size: 18px;
  color: #2b2b36;
  letter-spacing: 0.3px;
  text-align: start;
  font-weight: bold;
  line-height: 22px;
}
.transaction-step .failed-icon {
  position: relative;
  margin: 0 auto;
  height: 36px;
  width: 36px;
  background: url(3463b3d729abf5e839e5.svg) center center no-repeat;
}
.transaction-step .failed-icon:before {
  position: absolute;
  content: "";
  background: url(0504111b7efb9c20b419.svg) center center no-repeat;
  width: 200%;
  height: 200%;
  top: -51%;
  left: -51%;
}
.transaction-step .failed-icon:after {
  position: absolute;
  content: "";
  background: url(1e9b16937180a8b119c6.svg) center center no-repeat;
  height: 10px;
  width: 20px;
  top: 35%;
  left: 110%;
}
.transaction-step--tx-failed-panel {
  width: 500px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .transaction-step--tx-failed-panel {
    margin-top: 15px;
    width: 100%;
  }
}
.transaction-step--tx-failed-panel .shape-icon-circle {
  margin-top: -70px;
}
@media all and (max-width: 767px) {
  .transaction-step--tx-failed-panel .shape-icon-circle {
    margin-top: -50px;
  }
}
.transaction-step .transaction-step--tx-failed-info {
  width: 100%;
}
@media all and (max-width: 767px) {
  .transaction-step .transaction-step--tx-failed-info {
    width: 100%;
  }
}
.transaction-step .transaction-step--tx-failed-info h2 {
  font-size: 20px;
  color: #000;
}
.transaction-step .transaction-step--tx-failed-info p {
  color: #000;
}
.transaction-step
  .transaction-step--tx-failed-info
  .transaction-step--sub-title {
  font-size: 16px;
  margin-bottom: 30px;
}
.transaction-step .transaction-step--tx-failed-info .transaction-step--text {
  font-size: 14px;
}
.transaction-step .verification-info {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.transaction-step .verification-info .failed-icon {
  margin: 0px auto 36px auto;
}
@media all and (max-width: 767px) {
  .transaction-step .verification-info .failed-icon {
    margin: 24px auto 36px auto;
  }
}
.transaction-step .verification-info .shape-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
  position: relative;
}
@media all and (max-width: 767px) {
  .transaction-step .verification-info .shape-icon-circle {
    margin-top: -35px;
  }
}
.transaction-step .verification-info p {
  line-height: initial;
}
.transaction-step .verification-info__circular-progress {
  margin: 64px auto;
}
.transaction-step .verification-info--content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transaction-step .verification-info--content p:first-child {
  margin-top: 0;
}
.transaction-step .verification-info--title {
  text-align: center;
  font-size: 16px;
  width: 520px;
  margin: 0 auto;
}
@media all and (max-width: 575px) {
  .transaction-step .verification-info--title {
    width: 100%;
  }
}
.transaction-step .verification-info--email {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.transaction-step .verification-info--accordion {
  list-style-type: none;
  padding-inline-start: 0;
  background: #fff;
  box-shadow: 0px 4px 20px rgba(43, 43, 54, 0.1);
  border-radius: 8px;
}
.transaction-step .verification-info--accordion .accordion--item-li {
  padding-top: 10px;
  padding-inline-end: 10px;
  padding-bottom: 0;
  padding-inline-start: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.transaction-step .verification-info--accordion .accordion__title {
  color: #2b2b36;
  opacity: 1;
}
.transaction-step .verification-info--accordion .accordion__text {
  color: #6b6b72;
}
.transaction-step
  .verification-info--accordion
  .accordion__text
  .accordion-paragraph {
  padding-inline-start: 0;
  opacity: 1;
  margin: 10px 0 10px 0;
}
.transaction-step .verification-info--accordion_margin_top {
  margin-top: 75px;
}
.transaction-step .verification-info--read-more {
  text-align: center;
  color: #808086;
  margin-bottom: 0;
  font-size: 13px;
}
.transaction-step--contact-form .now-button {
  width: 258px;
  height: 50px;
  margin: 20px 0;
}
@media all and (max-width: 575px) {
  .transaction-step--contact-form .now-button {
    width: 100%;
  }
}
.transaction-step--contact-form .textarea-message {
  width: 100%;
  outline: none;
  resize: none;
  margin-bottom: 0;
}
.transaction-step--contact-form .textarea-message__gray {
  border: 1px solid #dce2ea;
}
.transaction-step--contact-form .textarea-message__green {
  border: 1px solid #00c26f;
}
.transaction-step--contact-form .now-input {
  margin-bottom: 20px;
}
@media all and (max-width: 575px) {
  .transaction-step .recaptcha-container > div > div > div {
    width: auto !important;
    text-align: end;
  }
}
.transaction-step .deposit-success-icon {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #00c26f;
}
.transaction-step .subscription-panel {
  display: flex;
  width: 100%;
}
.transaction-step .subscription-panel--form {
  padding-inline-start: 30px;
  width: 100%;
}
@media all and (max-width: 767px) {
  .transaction-step .subscription-panel--form {
    padding-inline-start: 0;
  }
}
.transaction-step .subscription-panel--form h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  align-items: center;
  letter-spacing: 0.043196px;
  color: #2b2b36;
}
@media all and (max-width: 575px) {
  .transaction-step .subscription-panel--form h3 {
    margin-bottom: 40px;
  }
}
.transaction-step .subscription-panel--promo-consent {
  display: flex;
  align-items: center;
}
.transaction-step .subscription-panel--promo-consent > div {
  width: auto !important;
}
.transaction-step .subscription-panel--promo-note {
  font-size: 13px;
  line-height: 140%;
  color: #a4a3aa;
}
@media all and (max-width: 480px) {
  .transaction-step .subscription-panel--promo-note {
    margin-top: 20px;
  }
}
.transaction-step .subscription-panel--field-set {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
.transaction-step .subscription-panel--field-set .field-set--field-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-inline-end: 10px;
  position: relative;
  margin-bottom: 20px;
}
@media all and (max-width: 575px) {
  .transaction-step .subscription-panel--field-set {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.transaction-step .subscription-panel--field-set .subscription-error {
  position: absolute;
  left: 10px;
  bottom: -10px;
  color: #dc1d2e;
}
@media all and (max-width: 575px) {
  .transaction-step .subscription-panel--field-set .subscription-error {
    left: 10px;
    top: -21px;
  }
}
.transaction-step .subscription-panel .now-button {
  width: 180px;
  height: 50px;
}
.transaction-step .subscription-panel .now-button .loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 575px) {
  .transaction-step .subscription-panel .now-button {
    width: 100%;
  }
}
.transaction-step .subscription-panel .now-button__disabled {
  opacity: 0.3;
}
.transaction-step .subscription-panel .now-input {
  margin-inline-end: 10px;
  height: 50px;
}
.transaction-step .subscription-panel .now-input .now-input--input {
  border: 1px solid rgba(164, 163, 170, 0.3);
  border-radius: 4px;
}
.transaction-step .subscription-panel .now-input .input__border-green {
  border-color: #00c26f;
}
.transaction-step .subscription-panel .now-input .input__border-warning {
  border: 1px solid rgba(255, 216, 92, 0.5);
}
.transaction-step .subscription-panel .now-input .input__border-disabled {
  border: 1px solid #e2e7ed;
}
.transaction-step .subscription-panel--image {
  width: 89px;
  height: 104px;
  transform: translateX(-10px);
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .transaction-step .subscription-panel--image {
    height: 154px;
  }
}
@media all and (max-width: 767px) {
  .transaction-step .subscription-panel--image {
    margin: 15px auto;
  }
}
@media screen and (max-width: 767px) {
  .transaction-step .subscription-panel {
    flex-direction: column;
    text-align: center;
  }
  .transaction-step .subscription-panel--image {
    height: 79px;
  }
}
.transaction-step .estimate-block {
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2.41432px 15px rgba(43, 43, 54, 0.12);
  border-radius: 8px;
  margin-bottom: 20px;
}
@media all and (max-width: 575px) {
  .transaction-step .estimate-block {
    flex-direction: column;
  }
}
.transaction-step .estimate-block .estimate-block--from,
.transaction-step .estimate-block .estimate-block--to {
  width: 50%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 575px) {
  .transaction-step .estimate-block .estimate-block--from,
  .transaction-step .estimate-block .estimate-block--to {
    width: 100%;
  }
}
.transaction-step .estimate-block .estimate-block--from {
  border-right: 1px solid rgba(43, 43, 54, 0.06);
  position: relative;
}
@media all and (max-width: 575px) {
  .transaction-step .estimate-block .estimate-block--from {
    border-right: none;
    border-bottom: 1px solid rgba(43, 43, 54, 0.06);
  }
}
.transaction-step .estimate-block .estimate-block--amount {
  color: #2b2b36;
  font-size: 18px;
}
.transaction-step .estimate-block .estimate-block--arrow-from {
  position: absolute;
  right: -12px;
  outline: none;
  border: 1px solid #e7e7e7;
  top: 17px;
  height: 22px;
  width: 22px;
  justify-content: center;
  background: #fff;
  align-items: center;
  display: flex;
  transform: rotate(270deg);
  border-radius: 50%;
}
@media all and (max-width: 575px) {
  .transaction-step .estimate-block .estimate-block--arrow-from {
    right: 20px;
    bottom: -12px;
    top: initial;
    transform: rotate(0deg);
  }
}
.transaction-step .transaction-detail-title {
  font-size: 18px;
  color: #2b2b36;
  font-family: "Roboto-Bold", sans-serif;
}
.transaction-step .data-transaction {
  width: 100%;
  background: #fff;
  box-shadow: 0px 2.41432px 15px rgba(43, 43, 54, 0.12);
  border-radius: 8px;
  padding-top: 20px;
  padding-inline-end: 20px;
  padding-bottom: 0;
  padding-inline-start: 20px;
}
.transaction-step .data-transaction .data-transaction--recipient-wallet,
.transaction-step .data-transaction .data-transaction--memo {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.transaction-step .data-transaction .data-transaction--recipient-wallet-title,
.transaction-step .data-transaction .data-transaction--memo-title {
  color: rgba(43, 43, 54, 0.6);
  font-size: 13px;
  margin-bottom: 7px;
}
.transaction-step .data-transaction .data-transaction--recipient-wallet-value,
.transaction-step .data-transaction .data-transaction--memo-value {
  color: #2b2b36;
  font-size: 15px;
  word-break: break-word;
}
html[dir="rtl"] .transaction-step .estimate-block .estimate-block--from {
  border-right: unset;
  border-left: 1px solid rgba(43, 43, 54, 0.06);
}
html[dir="rtl"] .transaction-step .estimate-block .estimate-block--arrow-from {
  right: unset;
  left: -12px;
  transform: rotate(90deg);
}
.transaction-step__child-exchanges {
  margin: 20px 0;
}
.transaction-step .transaction_step__details_failed {
  margin-top: 40px;
  margin-bottom: 40px;
}
.transaction-step
  .transaction_step__details_failed
  ~ .exchange-stepper__telegram-info {
  margin-bottom: 24px;
}
.transaction-step.exchange-stepper--step:has(.need-help-transaction-block)
  .exchange-stepper__telegram-info {
  margin-bottom: 24px;
  margin-top: 24px;
}
.transaction-step
  .transaction_step__details_failed
  ~ .exchange-stepper__telegram-info_auth {
  margin-bottom: 24px;
}
.transaction-step--get-amount {
  display: flex;
  align-items: center;
}
.transaction-step__payout-hash-label {
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: #2b2b36;
}
.transaction-step__payout-hash-value {
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  color: #00c26f;
  margin-bottom: 15px;
  word-break: break-all;
}
.transaction-step__payout-hash-value:hover {
  opacity: 0.8;
  color: #00c26f;
}
.warning-field-block {
  background: #ffedb3;
  color: #5d5a60;
  height: 48px;
  display: flex;
  align-items: center;
  padding-inline-start: 20px;
  position: absolute;
  top: 47px;
  z-index: 1;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.exchange-stepper--panel__warning-field {
  margin-bottom: 16px;
}
.exchange-stepper--panel__warning-field:last-child {
  margin-bottom: 0;
}
.transaction-step-deposit-info__warning-message {
  grid-area: attention;
  width: calc(100% - 32px);
  word-break: break-word;
  margin: 0 16px 23px;
}
.transaction-step-deposit-info__dropdown-settings {
  grid-area: settings;
}
.transaction-step-deposit-info__dropdown-content {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.transaction-step-deposit-info__dropdown-block-wrap {
  position: relative;
}
.transaction-step-deposit-info__dropdown-block-wrap:last-child::after {
  background-color: rgba(0, 0, 0, 0);
}
.transaction-step-deposit-info__trust-wallet {
  padding-bottom: 24px;
}
.transaction-step__useful-tips {
  display: none;
}
.verification-info__verify {
  max-width: 568px;
  margin: 0 auto;
}
.verification-info__verify-title {
  min-height: 80px;
  font-size: 16px;
  text-align: center;
  margin: 0;
}
button.verification-info__verify-button {
  max-width: 195px;
  margin-top: 25px;
}
.exchange-stepper__accordion {
  padding: 0;
  margin: 24px 0;
}
.exchange-stepper__accordion-link {
  color: #2b2b36;
  text-decoration: underline;
}
.exchange-stepper__accordion .accordion {
  padding: 16px;
  border-radius: 6px;
}
.exchange-stepper__accordion .accordion__text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.043px;
  text-align: left;
  color: #2b2b36;
  opacity: 1;
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-top: 0;
}
.exchange-stepper__accordion h3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #6a6a7f;
}
.exchange-stepper__accordion .accordion__icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.exchange-stepper__accordion .accordion__content {
  border-radius: 0 0 6px 6px;
}
.exchange-stepper__subscription {
  margin-top: 20px;
}
.exchange-stepper__telegram-info {
  margin-top: 20px;
}
.failed-transaction {
  margin-bottom: 40px;
  margin-top: -3px;
}
.failed-transaction__content {
  max-width: 500px;
  margin: 0 auto;
}
.failed-transaction__text {
  font-size: 14px;
  color: #000;
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.6px;
}
.exchange-stepper__often-change {
  margin-top: 24px;
}
.transaction-step__error-screen {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 120px;
}
.transaction-step__error-screen .transaction-step__child-exchanges {
  margin-top: 0;
  margin-bottom: 46px;
}
.transaction-step__error-screen:has(.transaction-step__child-exchanges) {
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  .transaction-step-deposit-info__dropdown-content {
    padding: 0;
  }
  .transaction-step-deposit-info__dropdown-block-wrap {
    padding: 24px;
  }
  .transaction-step-deposit-info__dropdown-block-wrap_metamask {
    display: block;
  }
  .transaction-step-deposit-info__dropdown-block-wrap::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f4f5;
  }
  .transaction-step-deposit-info__dropdown-block {
    max-width: 510px;
  }
  .transaction-step-deposit-info__warning-message {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }
  .exchange-stepper__accordion {
    padding: 0;
    margin: 16px 0;
  }
  .exchange-stepper__accordion .accordion {
    padding-right: 20px;
    padding-left: 70px;
    padding-bottom: 16px;
    border-radius: 6px;
  }
  .exchange-stepper__accordion .accordion__text p {
    font-size: 14px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 16px;
  }
  .exchange-stepper__accordion h3 {
    font-size: 14px;
  }
  .transaction-step.exchange-stepper--step:has(.need-help-transaction-block)
    .exchange-stepper__telegram-info {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
@media all and (min-width: 768px) {
  .exchange-stepper__subscription {
    margin-top: 16px;
  }
  .exchange-stepper__telegram-info {
    margin-top: 16px;
  }
}
@media all and (min-width: 992px) {
  .transaction-step__child-exchanges {
    margin: 16px 0;
  }
  .transaction-step--tx-id {
    justify-content: flex-end;
    margin: 9px 0;
  }
  .transaction-step .verification-info {
    margin-top: 0;
  }
  .transaction-step__error-screen {
    margin-bottom: 160px;
  }
  .transaction-step__error-screen:has(.transaction-step__child-exchanges) {
    margin-bottom: 0;
  }
}
@media all and (min-width: 1200px) {
  .transaction-step__useful-tips {
    display: flex;
    padding: 32px 70px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .transaction-step__child-exchanges {
    display: none;
  }
  .transaction-step__child-exchanges-failed {
    display: block;
  }
  .exchange-stepper__telegram-info {
    margin-bottom: 24px;
  }
  .transaction-step__error-screen .new-stepper-transaction-id {
    position: static;
  }
}
.deposit-info__button-tabs .button-tabs__buttons {
  max-width: 220px;
  margin: 0 auto 10px auto;
  width: 100%;
}
.timer {
  position: relative;
  width: 94%;
  height: 64px;
  padding: 11px 17px;
  background: rgba(61, 61, 112, 0.04);
  margin: 35px auto;
  border-radius: 4px;
}
@media all and (max-width: 575px) {
  .timer {
    margin: 0 auto 23px auto;
  }
}
.timer__progress {
  position: absolute;
  background-color: #00c26f;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: width 200ms linear;
  border-radius: 4px;
}
.timer__time {
  position: relative;
  font-size: 36px;
  color: #2b2b36;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 12px;
  line-height: 1;
}
.timer__info {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #2b2b36;
  letter-spacing: 0.08px;
  text-align: left;
  line-height: 14px;
}
.tx-step--status {
  display: flex;
  width: 100%;
  margin: 35px auto;
}
@media all and (max-width: 767px) {
  .tx-step--status {
    display: block;
    height: auto;
  }
}
.tx-step--status-item {
  width: 33.3333%;
  margin: 0 auto;
  position: relative;
  display: flex;
  height: 86px;
  align-items: center;
  line-height: 26px;
}
@media all and (max-width: 767px) {
  .tx-step--status-item {
    margin-bottom: 2px;
    height: auto;
    width: 100%;
  }
}
.tx-step--status-item .icon,
.tx-step--status-item .button__arrow {
  margin-right: 8px;
  position: absolute;
  top: -3px;
  left: 4px;
  color: #fff;
  font-size: 10px;
}
.linear-progress {
  height: 3px;
  background-color: red;
  width: 100%;
  position: absolute;
  left: 20px;
  right: -91px;
  top: 27px;
}
.tx-step--status-text {
  position: relative;
  z-index: 3;
  color: #00c26f;
}
@media all and (max-width: 767px) {
  .tx-step--status-text {
    margin-left: 20px;
  }
}
.tx-step--status-progress-wrap {
  height: 29px;
  width: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tx-step--status-item.active {
  position: relative;
  display: flex;
  padding-left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00c26f;
}
.tx-step--status-item.active .tx-step--status-text {
  margin-left: 5px;
}
.tx-step--status-item.inactive {
  position: relative;
  display: flex;
  padding-left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(172, 183, 191, 0.2);
}
.tx-step--status-error {
  width: 100%;
  color: #fff;
  background-color: #bf0000;
  border: 0;
}
.tx-step--status-content {
  flex-direction: column;
  display: flex;
  margin: auto;
  align-items: center;
  height: 86px;
  justify-content: space-evenly;
}
@media all and (max-width: 767px) {
  .tx-step--status-content {
    position: relative;
    flex-direction: row;
    margin: 0 auto;
    height: 50px;
    width: 173px;
    justify-content: stretch;
  }
}
.progress-line {
  height: 3px;
  width: 74%;
  position: absolute;
  top: 23px;
  left: 63%;
}
@media all and (max-width: 767px) {
  .progress-line {
    width: 10px;
    transform: rotate(90deg);
    left: 9px;
    top: 51px;
  }
}
html[dir="rtl"] .progress-line {
  left: unset;
  right: 63%;
}
.progress-line.progress-active {
  background-color: #00c26f;
}
.progress-line.progress-inactive {
  background-color: rgba(172, 183, 191, 0.2);
}
.tx-step--status-text__inactive {
  color: #a4a3aa;
  font-size: 15px;
}
.tx-step--status-text__active {
  font-size: 16px;
}
@media all and (max-width: 767px) {
  html[dir="rtl"] .progress-line {
    left: unset;
    right: 9px;
  }
}
.dialog {
  text-align: center;
  background-color: #f6f4f8;
}
.dialog .promo-consent {
  margin: 10px 0;
  width: 100%;
  padding: 10px 0;
  text-align: left;
}
.dialog--title {
  color: #00c26f;
  background-color: #fff;
  font-size: 28px;
  padding: 30px 10px 25px;
  line-height: 1;
}
@media all and (max-width: 767px) {
  .dialog--title {
    padding: 15px 10px;
  }
}
.dialog--content {
  padding: 30px 60px;
}
@media all and (max-width: 767px) {
  .dialog--content {
    padding: 10px 20px;
  }
}
.dialog--container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .dialog--container {
    flex-direction: row;
  }
}
.dialog--content-link {
  text-align: left;
  display: inline-block;
}
.dialog--content p {
  text-align: left;
}
.dialog__small .dialog--title {
  padding: 30px 20px 25px;
  font-size: 28px;
}
@media all and (max-width: 767px) {
  .dialog__small .dialog--title {
    padding: 15px 10px;
    font-size: 24px;
  }
}
.dialog__small .dialog--content {
  padding: 20px 60px;
}
@media all and (max-width: 767px) {
  .dialog__small .dialog--content {
    padding: 10px;
  }
}
.dialog__redirect .dialog--content {
  font-size: 20px;
}
.dialog__redirect .button {
  float: right;
  font-size: 16px;
  padding: 0 40px;
  width: 100%;
}
.dialog__redirect p {
  margin: 25px 0;
  line-height: 1.1;
}
.dialog--content-big-img {
  min-width: 190px;
  margin: auto;
  margin-right: 20px;
}
.dialog .button-close {
  position: absolute;
  right: -35px;
  top: -35px;
}
.dialog--body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}
.dialog--body::-webkit-scrollbar-thumb {
  background: #00c26f;
}
.dialog--actions {
  background-color: #f6f4f8;
  padding: 0 60px 40px !important;
}
.no-photo {
  width: 0;
  height: 0;
}
.dialog__redirect .dialog--content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dialog__redirect .dialog--content-container {
    flex-direction: column;
  }
}
.dialog--text-article {
  font-size: 20px;
}
.dialog--text-note {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .dialog--img-container {
    width: 100%;
    max-width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .dialog--img-container {
    width: 40%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .dialog--text-content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dialog--text-content {
    width: 55%;
  }
}
.dialog--img-redirect {
  width: 100%;
}
.telegram-info {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .telegram-info {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .telegram-info {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .telegram-info--image {
    height: 79px;
  }
}
@media screen and (max-width: 767px) {
  .telegram-info--text {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .telegram-info--text {
    padding-left: 30px;
    font-size: 15px;
  }
}
.telegram-info--text p {
  font-size: inherit;
  line-height: 150%;
}
.telegram-info--text a {
  color: #00c26f;
  white-space: pre;
}
.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;
}
.sum-sub-widget {
  position: relative;
  z-index: 0;
  min-height: 210px;
}
.sum-sub-widget__loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sum-sub-widget__loader-icon {
  width: 89px;
  height: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #00c26f;
}
.sum-sub-widget__loader-icon svg {
  width: 35px;
  height: 35px;
  animation-name: sum-sub-widget-icon-rotate;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.sum-sub-widget-content {
  position: relative;
  z-index: 1;
}
@keyframes sum-sub-widget-icon-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.dashboard-navigation-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 10px 16px 0px;
  outline: 0;
}
.dashboard-navigation-profile__title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-right: 10px;
  margin-left: 10px;
}
.dashboard-navigation-profile__icon svg {
  display: block;
  transition: transform ease 0.3s;
}
.dashboard-navigation__profile-zero-level:hover {
  fill: #27bee2;
}
.dashboard-navigation__profile-first-level:hover {
  fill: #f3c8a1;
}
.dashboard-navigation__profile-second-level:hover {
  fill: #c6c9d0;
}
.dashboard-navigation__profile-third-level:hover {
  fill: #f0d49e;
}
.dashboard-navigation__profile-paid-level {
  position: absolute;
  margin-left: 15px;
  top: 11px;
}
.dashboard-navigation-profile__icon {
  padding-top: 16px;
}
.dashboard-navigation-profile_disabled .dashboard-navigation-profile__icon {
  cursor: initial;
}
@media screen and (min-width: 992px) {
  .dashboard-navigation-profile {
    justify-content: flex-start;
    cursor: default;
  }
  .dashboard-navigation-profile__icon {
    cursor: pointer;
  }
  .dashboard-navigation-profile__icon svg {
    fill: url("#circle-star-icon-paint-linear");
  }
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.dashboard-navigation-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  overflow: hidden;
}
.dashboatd-navigation-list__apps {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 32px;
  border-top: 1px solid #dce2ea;
  margin: 0 8px;
}
.dashboatd-navigation-list__apps-links {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 8px;
}
.dashboatd-navigation-list__apps-span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.15px;
  padding-bottom: 16px;
}
.dashboatd-navigation-list__apps-link {
  position: relative;
  width: 100%;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
}
.dashboatd-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 90px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
.dashboard-navigation-list__item .dashboard-navigation-list__link {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.dashboard-navigation-list__link,
.dashboard-navigation-list__link:focus {
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  border-radius: 6px;
  padding: 12px;
  outline: 0;
  transition: color 0.15s, background-color ease 0.15s;
}
.dashboard-navigation-list__link_active {
  font-weight: 500;
  background-color: #f6f6f6;
}
.dashboard-navigation-list__item:last-child {
  margin-top: 32px;
  margin-bottom: 28px;
}
.dashboard-navigation-list__icon {
  width: 32px;
  height: 24px;
  padding-right: 8px;
}
html[dir="rtl"] .dashboard-navigation-list__icon {
  padding-right: 0;
  padding-left: 8px;
}
.dashboard-navigation-list__span-promo {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 3px 6px;
  margin-left: 4px;
}
@media screen and (min-width: 431px) {
  .dashboard-navigation-list__icon {
    width: 40px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .dashboatd-navigation-list__apps-link {
    width: 141px;
  }
  .dashboard-navigation-list__link,
  .dashboard-navigation-list__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-list__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-list__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-list__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
}
@media screen and (min-width: 992px) {
  .dashboatd-navigation-list__apps-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .dashboatd-navigation-list__apps {
    align-items: center;
  }
}
@media (hover: hover) {
  .dashboard-navigation-list__link:hover {
    color: #00c26f;
  }
}
.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-navigation-tooltip {
  position: relative;
}
.dashboard-navigation-tooltip__element {
  position: absolute;
  top: 0;
  left: 36px;
  width: 211px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity, visibility, ease 0.3s;
}
.dashboard-navigation-tooltip__element:before {
  display: none;
}
.dashboard-navigation-tooltip:hover .dashboard-navigation-tooltip__element {
  visibility: visible;
  opacity: 1;
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.more-navigation-dropdown {
  cursor: pointer;
  transition: color ease 0.2s;
  overflow: visible;
  flex-direction: column;
  gap: 16px;
}
.more-dropdown__list {
  position: absolute;
  z-index: 1000;
  bottom: -60%;
  right: -1px;
  width: 100vw;
  margin: 0 0 8px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  list-style-type: none;
  box-shadow: 0 0 8px 0 rgba(43, 43, 54, 0.1607843137);
  transform: translateY(100vh);
  padding: 16px 0 8px;
  flex-direction: column;
}
.more-dropdown__list-header {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  padding: 0 16px;
}
.more-dropdown__list-header_active {
  display: flex;
}
.more-dropdown__info {
  display: none;
  border-radius: 8px;
  margin-bottom: 16px;
}
.more-dropdown__info_active {
  display: grid;
}
.more-dropdown__list-title-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.more-dropdown__list-title {
  color: #6a6a7f;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.more-dropdown__list-close-button {
  border: none;
  background: none;
  padding: 0;
}
.more-dropdown__list--with-transition {
  transition: 0.7s transform cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__list--active {
  transform: translateY(0);
  display: flex;
}
.more-dropdown__overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 80px;
  height: 100%;
  left: 0;
  width: 100vw;
  z-index: 997;
  pointer-events: none;
  opacity: 0;
  transition: 0.7s opacity cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__overlay--active {
  opacity: 1;
  pointer-events: all;
}
.more-navigation-dropdown__list-item {
  color: #3d3d70;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.more-navigation-dropdown__list-item:first-child {
  margin-top: 7px;
}
.more-navigation-dropdown__list-item:last-child {
  margin-bottom: 7px;
}
.more-navigation-dropdown__list-item:hover a {
  color: inherit;
}
.more-navigation-dropdown__list-item_border_top {
  position: relative;
}
.more-dropdown__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transition: none;
  padding: 10px 0;
  border: none;
  background: none;
  color: #2b2b37;
  gap: 8px;
}
.more-navigation-list__button {
  padding: 0 16px;
}
.more-dropdown__link:focus {
  color: #2b2b37;
}
.more-navigation-list__button:active {
  background-color: #f8f8f8;
  color: #2b2b37;
}
.more-navigation-list__button:active a,
.more-navigation-list__button:active button {
  color: #2b2b37;
}
.more-navigation-list__button:nth-child(7) a,
.more-navigation-list__button:nth-child(9) a,
.more-navigation-list__button:nth-child(7) button,
.more-navigation-list__button:nth-child(9) button {
  border-bottom: solid 1px #eae8ed;
  padding-bottom: 18px;
}
.more-navigation-list__button:nth-child(8) a,
.more-navigation-list__button:nth-child(10) a,
.more-navigation-list__button:nth-child(8) button,
.more-navigation-list__button:nth-child(10) button {
  padding-top: 18px;
}
.more-dropdown__link img {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
}
.more-dropdown__link_active {
  color: #6a6a7f;
}
.more-navigation-list__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 16px;
  margin-top: 16px;
  color: #9696a5;
}
.more-drop-down__profile-stats .dashboard-profile-stats__items {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.more-drop-down__profile-stats .dashboard-profile-stats__subscription-level {
  position: relative;
  display: flex;
  padding: 6px 8px;
  border: 1px solid #dce2ea;
  gap: 6px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.23px;
  text-align: left;
  color: #2b2b36;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}
.more-drop-down__profile-stats .dashboard-profile-stats__item {
  width: auto;
}
.more-navigation-list__apps-link {
  display: block;
  position: relative;
  width: auto;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
  margin: 16px;
}
.more-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 375px) {
  .more-dropdown__list {
    right: -1px;
  }
  .more-dropdown__list-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 425px) {
  .more-dropdown__list {
    right: -1px;
  }
}
.container-dashboard-navigation-tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 1001;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: center;
  height: 80px;
}
.dashboard-navigation-tab {
  list-style-type: none;
  margin: 0 0 24px;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: space-between;
  height: 60px;
}
.dashboard-navigation-tab__item {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.dashboard-navigation-tab__link {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  padding: 8px 0;
  outline: 0;
  transition: all ease 0.2s;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #eae8ed;
  background: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  gap: 4px;
}
.dashboard-navigation-tab__link_active {
  font-weight: 500;
  color: #2b2b37;
  border-radius: 0;
  border-top: 1px solid #00c26f;
  background-color: #f8f8f8;
}
.dashboard-navigation-tab__icon {
  width: 24px;
  height: 24px;
}
.dashboard-navigation-tab__link_active .dashboard-navigation-tab__name {
  color: #2b2b36;
}
.dashboard-navigation-tab__name {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #6a6a7f;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation-tab__link,
  .dashboard-navigation-tab__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-tab__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-tab__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-tab__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
  .container-dashboard-navigation-tab {
    display: none;
  }
}
.dashboard-navigation {
  position: relative;
  background-color: #fff;
  padding-left: 0;
}
.dashboard-navigation__profile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  border-bottom: 1px solid #dce2ea;
}
.dashboard-navigation-profile__title {
  position: relative;
}
.dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 93%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
html[dir="rtl"] .dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
.dashboard-navigation__list {
  padding: 16px 12px;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard-navigation {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
  }
  .dashboard-navigation__profile {
    padding: 0;
  }
  .dashboard-navigation__list {
    padding: 0;
    border-top: none;
    margin-top: 0;
    margin-right: 8px;
    overflow: visible;
  }
}
.try-mobile-app {
  position: relative;
  background-color: #fafafa;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top right;
  border-radius: 6px;
  overflow: hidden;
  padding: 30px;
}
.try-mobile-app__title {
  font-size: 30px;
  line-height: 40px;
  color: #000;
}
.try-mobile-app__links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 35px;
  gap: 14px;
}
.try-mobile-app__link {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2b37;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  width: 48px;
  height: 48px;
  transition: border-color ease 0.3s;
}
.try-mobile-app__link:first-child {
  margin-left: 0;
}
.try-mobile-app__link:hover {
  border-color: #00c26f;
}
.try-mobile-app__mobile-image {
  display: none;
  position: absolute;
  top: 40px;
  right: 20px;
}
html[dir="rtl"] .try-mobile-app__mobile-image {
  right: unset;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .try-mobile-app {
    background-size: 77% 100%;
    padding: 50px 60px;
  }
  .try-mobile-app__title {
    font-size: 55px;
    line-height: 66px;
  }
  .try-mobile-app__links {
    margin-top: 65px;
  }
  .try-mobile-app__mobile-image {
    display: block;
  }
}
.text-with-tooltip {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: default;
}
.text-with-tooltip:hover .text-with-tooltip__tooltip {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}
.text-with-tooltip__tooltip {
  position: absolute;
  bottom: 25px;
  left: -77px;
  z-index: 1;
  width: 164px;
  font-weight: 400;
  padding: 9px 5px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(53, 53, 76, 0.2);
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity, ease 0.2s;
}
@media screen and (min-width: 768px) {
  .text-with-tooltip__tooltip {
    left: -76px;
  }
}
.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 {
  background-color: rgba(0, 0, 0, 0);
  border-color: #f39321;
  margin: 0 0 24px;
  border-radius: 8px;
}
.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;
  }
  .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-message_dashboard {
    margin: 0 0 24px;
  }
}
.radio-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.5px solid #e2e7ed;
  border-radius: 4px;
  box-sizing: border-box;
  height: 40px;
  padding: 4px;
}
.radio-buttons__item {
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a4a3aa;
  background: none;
  width: calc(50% - 2.5px);
  height: 100%;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.radio-buttons__item:hover {
  opacity: 0.8;
}
.radio-buttons__item_active {
  background: #6a6a7f;
  color: #fff;
}
.radio-buttons.radio-buttons_light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 0;
  height: 40px;
  padding: 0;
  margin-bottom: 16px;
  width: 100%;
}
.radio-buttons_light .radio-buttons__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  border-radius: 0;
  border-bottom: 3px solid #d3d7da;
  width: 50%;
  padding: 0;
}
.radio-buttons_light .radio-buttons__item.radio-buttons__item_active {
  background: none;
  color: #2b2b36;
  border-bottom: 3px solid #00c26f;
}
.button-tabs {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.button-tabs_switching {
  overflow: hidden;
}
.button-tabs_animated .button-tabs__tabs {
  transition: all 0.3s ease-in-out;
}
.button-tabs__buttons {
  margin-bottom: 4px;
}
.button-tabs__tabs {
  display: flex;
  flex-direction: column;
}
.button-tabs__tabs_fixed-width {
  flex-direction: row;
  height: auto;
}
.tabs__item {
  display: none;
  justify-content: center;
  align-items: flex-start;
}
.tabs__item.tabs__item_active,
.button-tabs_switching .tabs__item {
  display: flex;
}
@media screen and (min-width: 992px) {
  .button-tabs__buttons.radio-buttons_light {
    width: 348px;
    margin-bottom: 23px;
  }
}
.high-network-fees {
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2.4px 20px rgba(43, 43, 54, 0.07);
  border-radius: 12px;
  padding-bottom: 24px;
}
.high-network-fees__title {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  color: #2b2b37;
  font-weight: 500;
  background-color: #fdf4d8;
  border: 1px solid #e2e7ed;
  border-radius: 12px 12px 0 0;
  padding: 12px 36px;
}
.high-network-fees__content {
  font-size: 16px;
  line-height: 20px;
  color: #2b2b37;
  padding: 16px;
}
.high-network-fees__content_without-margin p {
  margin: 0;
  padding: 0;
  line-height: 20px;
}
.high-network-fees__button {
  max-width: 241px;
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  background-color: #f39321;
  border-radius: 6px;
  border-color: #f39321;
}
.high-network-fees__button:hover {
  color: #fff;
  background-color: #ffa748;
  border-color: #ffa748;
}
.high-network-fees__button-cancel {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2b2b37;
  background: none;
  border: 0;
  padding: 0;
  outline: 0;
  margin-top: 20px;
  border-bottom: 1px solid #2b2b37;
  transition: border-color ease 0.3s;
}
.high-network-fees__button-cancel:hover {
  border-bottom-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 768px) {
  .high-network-fees {
    padding-bottom: 32px;
  }
  .high-network-fees__title {
    padding: 16px 0;
  }
  .high-network-fees__content {
    padding: 24px 32px;
  }
  .high-network-fees__button-cancel {
    margin-top: 24px;
  }
}
.one-tap-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  background-color: #fff;
  border: 1px solid #eef1f2;
  border-radius: 8px;
  padding: 8px 16px;
}
.one-tap-button:focus,
.one-tap-button:hover {
  color: #2b2b37;
}
.one-tap-button__icon-left {
  flex-shrink: 0;
}
.one-tap-button__text {
  flex-grow: 1;
  text-align: center;
  padding: 0 4px;
}
.one-tap-button__icon-right {
  flex-shrink: 0;
}
.one-tap-button__icon-right svg {
  fill: #2b2b37;
}
.one-tap-button_dark {
  background-color: #2b2b37;
  color: #fff;
}
.one-tap-button_dark .one-tap-button__icon-right svg {
  fill: #888889;
}
@media screen and (min-width: 375px) {
  .one-tap-button {
    font-size: 16px;
  }
}
.get-promocode-button {
  width: 100%;
  height: 48px;
  background: #c4c4c4;
  background: linear-gradient(90deg, #2b2b37 0%, #4f4f64 59.2%, #2b2b37 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  border: none;
}
.get-promocode-button:before,
.get-promocode-button:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  left: -6px;
}
.get-promocode-button:after {
  left: auto;
  right: -6px;
}
.get-promocode-button__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.3px;
  color: #fff;
}
.get-promocode-button__text-green {
  font-weight: 600;
  color: #00c26f;
  margin-left: 7px;
}
.get-promocode-button__promocode {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.3px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.get-promocode-button__promocode-copy {
  margin-left: 7px;
}
.get-promocode {
  max-width: 90%;
  text-align: center;
  margin: 0 auto;
}
.get-promocode__header {
  font-size: 16px;
  line-height: 20px;
  margin: 24px 0;
  padding: 0;
  color: #333;
}
.get-promocode__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #e6f9f1;
  border: 1px solid #00c26f;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
}
.get-promocode__info-item {
  margin: 4px 0;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  align-items: center;
  letter-spacing: 0.043196px;
  color: rgba(43, 43, 54, 0.5);
}
.get-promocode__info-item-title {
  margin-right: 16px;
  flex-grow: 1;
  max-width: 70%;
  text-align: left;
}
@media screen and (min-width: 576px) {
  .get-promocode {
    max-width: 408px;
  }
}
.currency-qrcode {
  position: relative;
}
.currency-qrcode__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -3px;
}
.currency-qrcode__logo_centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.currency-qrcode__coin-icon {
  width: 40px;
  height: 40px;
}
.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;
  }
}
.child-exchanges__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.2px;
  text-align: start;
  color: #808085;
  margin-bottom: 8px;
  padding: 0 12px;
}
.child-exchanges__header-info-icon {
  margin-inline-start: 8px;
  position: relative;
  top: -2px;
}
.child-exchanges__tooltip {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #2b2b37;
}
.child-exchanges__tooltip_custom {
  background: #fff;
  box-shadow: 0 0 10px rgba(43, 43, 54, 0.2);
  border-radius: 8px;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  max-width: 255px;
  color: #2b2b36;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0;
  text-align: center;
}
.child-exchanges__tooltip-arrow {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 5px);
  width: 0;
  height: 0;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-top: 4px solid #fff;
  z-index: 10;
}
.child-exchanges__text-status {
  display: inline-block;
  padding: 4px;
  margin-top: 6px;
  color: #a4a3aa;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 4px;
  background: #f6f6f7;
  letter-spacing: 0.1px;
}
.child-exchanges__text-status_finished {
  background: #e6f9f1;
  color: #00c26f;
}
.child-exchanges__text-status_failed {
  background: #f9f0e7;
  color: #f39321;
}
.child-exchanges__list-wrapper {
  overflow: hidden;
  border-radius: 8px;
}
.child-exchanges__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow-y: auto;
}
.child-exchanges__list-item {
  padding: 12px;
  border-bottom: 1px solid #e2e7ed;
  transition: all 0.3s ease-out;
  cursor: pointer;
  background-color: #fff;
}
.child-exchanges__list-item_current {
  background-color: #fcfcfe;
  border-color: #e2e7ed;
  opacity: 0.5;
  cursor: default;
}
.child-exchanges__list-item_current .child-exchanges__list-item-arrow {
  display: none;
}
.child-exchanges__list-item_current:hover a {
  cursor: default;
}
.child-exchanges__list-item a {
  color: #2b2b37;
}
.child-exchanges__list-item:hover .child-exchanges__list-item-arrow {
  filter: invert(47%) sepia(71%) saturate(1371%) hue-rotate(93deg)
    brightness(97%) contrast(88%);
}
.child-exchanges__list-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #2b2b37;
  background: rgba(0, 0, 0, 0);
  border: none;
}
html[dir="rtl"] .child-exchanges__list-item-arrow {
  transform: scaleX(-1);
}
.child-exchanges__list-item-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.child-exchanges__list-item:hover {
  background-color: #fbfbfe;
}
.child-exchanges__list-item:last-child {
  border-bottom: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.child-exchanges__list-item-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 4px;
}
.child-exchanges__list-item-token {
  height: 12px;
}
.child-exchanges__currency-icon {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  line-height: 0;
}
.child-exchanges__currency-icon span {
  font-size: 8px;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0.21px;
  text-align: center;
}
.child-exchanges__list-date {
  height: 20px;
  padding: 2px 12px;
  color: #808085;
  background-color: #f7f7f9;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: start;
}
.child-exchanges__list-item-amount {
  word-break: break-word;
}
@media screen and (min-width: 1200px) {
  .child-exchanges__title {
    text-align: end;
    margin-bottom: 7.5px;
    padding: 4px 0;
    position: absolute !important;
    right: -220px;
    top: -15px;
  }
  .child-exchanges__list {
    max-height: 870px;
  }
  .child-exchanges__main-wrapper {
    position: absolute;
    top: 12px;
    right: -220px;
    width: 200px;
  }
}
.payment-systems {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.payment-systems_big {
  margin-bottom: 24px;
  gap: 16px;
}
.payment-systems_big img {
  max-width: 42px;
  height: 24px;
}
.payment-systems_small {
  margin-top: 12px;
  justify-self: flex-start;
}
.payment-systems_small img {
  width: 28px;
  height: 16px;
}
.payment-systems--image {
  width: 42px;
  height: 24px;
}
@media (min-width: 576px) {
  .payment-systems_small {
    margin-top: 0;
    justify-self: flex-end;
  }
  .payment-systems_big img {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 70px;
    height: 40px;
  }
  .payment-systems_big {
    margin-bottom: 24px;
    gap: 24px;
  }
}
.call-to-actions-buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 48px;
}
.call-to-actions-buttons__item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 8px 24px;
  background-color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(43, 43, 54, 0.04);
}
.call-to-actions-buttons__item-image {
  width: 20px;
  height: 20px;
}
.call-to-actions-buttons__item-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: start;
}
.call-to-actions-buttons__item-arrow {
  margin-inline-start: auto;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
html[dir="rtl"] .call-to-actions-buttons__item-arrow {
  transform: scaleX(-1);
}
.call-to-actions-buttons__item-arrow path {
  stroke: #fff;
}
.call-to-actions-buttons__item-arrow_blue rect {
  fill: #057afc;
  stroke: #057afc;
}
.call-to-actions-buttons__item-arrow_green rect {
  fill: #00c26f;
  stroke: #00c26f;
}
.call-to-actions-buttons__item-arrow path,
.call-to-actions-buttons__item-arrow rect {
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .call-to-actions-buttons {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 0;
  }
  .call-to-actions-buttons__item {
    justify-content: space-between;
    padding: 8px 16px;
    border-radius: 40px 6px 6px 40px;
  }
  html[dir="rtl"] .call-to-actions-buttons__item {
    border-radius: 6px 40px 40px 6px;
  }
  .call-to-actions-buttons__item-arrow rect {
    fill: #fff;
  }
  .call-to-actions-buttons__item-arrow_blue path,
  .call-to-actions-buttons__item-arrow_blue rect {
    stroke: #057afc;
  }
  .call-to-actions-buttons__item-arrow_green path,
  .call-to-actions-buttons__item-arrow_green rect {
    stroke: #00c26f;
  }
  .call-to-actions-buttons__item:hover .call-to-actions-buttons__item-arrow {
    transform: scale(1.16);
  }
  .call-to-actions-buttons__item:hover
    .call-to-actions-buttons__item-arrow_blue
    path,
  .call-to-actions-buttons__item:hover
    .call-to-actions-buttons__item-arrow_green
    path {
    stroke: #fff;
  }
  .call-to-actions-buttons__item:hover
    .call-to-actions-buttons__item-arrow_blue
    rect {
    fill: #057afc;
  }
  .call-to-actions-buttons__item:hover
    .call-to-actions-buttons__item-arrow_green
    rect {
    fill: #00c26f;
  }
  .call-to-actions-buttons__item-image {
    position: relative;
    left: -18px;
    width: 48px;
    height: 48px;
  }
  html[dir="rtl"] .call-to-actions-buttons__item-image {
    left: unset;
    right: -18px;
  }
  .call-to-actions-buttons__item-text {
    text-align: end;
  }
  .call-to-actions-buttons__item-arrow {
    width: 24px;
    height: 24px;
  }
}
.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);
}
.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;
}
.list-with-check {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.list-with-check li {
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-left: 32px;
  margin-top: 24px;
}
.list-with-check li:first-child {
  margin-top: 0;
}
.list-with-check li:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(194e5c77e879f41f1690.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.list-with-check li span:first-child {
  display: block;
  font-weight: 400;
  color: #2b2b37;
  margin-bottom: 8px;
}
.made-with-love {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #808086;
  text-align: center;
  padding: 24px 0;
}
.made-with-love__emoji {
  display: inline-block;
  margin: 0 3px;
}
.marketplace-product-card {
  display: block;
  width: 100%;
  color: #2b2b37;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(43, 43, 54, 0.1);
  border-radius: 6px;
  padding: 16px;
}
.marketplace-product-card__image {
  min-height: 80px;
}
.marketplace-product-card__image img {
  display: block;
}
.marketplace-product-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
}
.marketplace-product-card__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  margin-top: 8px;
}
.marketplace-product-card__price {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
}
.account-benefits {
  background-color: #252531;
  padding: 40px 8px 0;
  border-radius: 12px;
}
.account-benefits__title {
  max-width: 500px;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.account-benefits__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #00c26f;
  margin: 8px auto 0 auto;
  padding: 0;
  text-align: center;
}
.account-benefits__list {
  list-style-type: none;
  padding: 0;
  margin: 24px 0 0;
}
.account-benefits__list-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin-top: 12px;
}
.account-benefits__list-item:first-child {
  margin-top: 0;
}
.account-benefits__list-item img {
  display: inline-block;
  vertical-align: top;
}
.account-benefits__list-item span {
  display: block;
  margin-top: 4px;
}
.account-benefits__list-item-number {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.01em;
  color: #00c26f;
}
.account-benefits__buttons {
  margin-top: 24px;
  padding: 0 8px;
}
.account-benefits__button {
  height: 44px;
  font-weight: 500;
  margin: 16px 0 0;
  border-radius: 4px;
}
.account-benefits__button:first-child {
  margin-top: 0;
}
.account-benefits__button_border-green {
  color: #fff;
  background: rgba(0, 0, 0, 0);
  border-color: #00c26f;
}
.account-benefits__button_border-green:hover {
  background-color: rgba(0, 194, 111, 0.2);
}
.account-benefits__button img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.account-benefits__right {
  margin-top: 32px;
}
.account-benefits__phone-image {
  height: 345px;
  overflow: hidden;
}
.account-benefits__phone-image img {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .account-benefits {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    padding: 48px 28px 48px 40px;
  }
  .account-benefits__left {
    width: 50%;
  }
  .account-benefits__title {
    font-size: 30px;
    line-height: 48px;
    text-align: left;
    margin: 0;
  }
  .account-benefits__subtitle {
    text-align: left;
    margin: 8px 0 0 0;
  }
  .account-benefits__list-item {
    text-align: left;
    margin-top: 16px;
  }
  .account-benefits__buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    padding: 0;
  }
  .account-benefits__button {
    width: auto;
    margin-top: 0;
    margin-left: 16px;
    padding-left: 36px;
    padding-right: 36px;
  }
  .account-benefits__button:first-child {
    margin-left: 0;
  }
  .account-benefits__right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 50%;
    min-height: 100%;
    padding-bottom: 12px;
  }
  .account-benefits__phone-image {
    position: relative;
    z-index: 1;
    height: auto;
    overflow: visible;
  }
  .account-benefits__phone-image:before {
    content: "";
    width: 95%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: auto;
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.45);
    border-radius: 25px;
  }
  .account-benefits__exchange-image {
    position: absolute;
    top: 20px;
    right: 38px;
    z-index: 0;
    display: block;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  }
}
@media screen and (min-width: 1200px) {
  .account-benefits__title {
    font-size: 36px;
  }
  .account-benefits__exchange-image {
    top: 10px;
  }
}
.main-page-promo-banners-mobile {
  margin: 0 auto;
  background: rgba(0, 0, 0, 0);
  display: block;
  margin-top: 8px;
  border: none;
}
.main-page-promo-banners-mobile__img {
  display: block;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-page-promo-banners-mobile {
    margin-top: 32px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .main-page-promo-banners-mobile {
    display: none;
  }
}
.main-page-pro-banner {
  background: radial-gradient(
    35.4% 669.15% at 50% 50%,
    #373b4a 0%,
    #262630 100%
  );
  border-radius: 12px;
  height: 60px;
}
.main-page-pro-banner__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: url(b3ce68fe78168186beb7.svg) center/cover no-repeat;
  transition: background-image 0.3s ease;
}
.main-page-pro-banner__container.main-page-pro-banner__container-promo {
  background: url(0e4a63f19ba46d719a06.png) left/cover no-repeat;
}
.main-page-pro-banner__container.main-page-pro-banner__container-promo_january {
  background: url(70a6f7353de59e08e812.png) left/cover no-repeat;
}
.main-page-pro-banner__container.main-page-pro-banner__container-promo_march {
  background: url(774e8f62666f929e1af9.png) left/cover no-repeat;
}
.main-page-pro-banner:hover
  .main-page-pro-banner__container.main-page-pro-banner__container-promo {
  background: url(7126f2d0c8a01212b2b4.png) left/cover no-repeat;
}
.main-page-pro-banner:hover
  .main-page-pro-banner__container.main-page-pro-banner__container-promo_january {
  background: url(034cc2878f799312889c.png) left/cover no-repeat;
}
.main-page-pro-banner:hover
  .main-page-pro-banner__container.main-page-pro-banner__container-promo_march {
  background: url(13aabb37969dda7b9330.png) left/cover no-repeat;
}
.main-page-pro-banner__container.main-page-pro-banner__container-promo_march::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background: url(a517c5c40c6753f4a891.png) left/cover no-repeat;
  width: 190px;
  height: 60px;
}
.main-page-pro-banner:hover .main-page-pro-banner__container {
  background: url(a29f72ead5183eec5f36.svg);
}
.main-page-pro-banner__text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.34px;
  text-align: center;
  color: #fff;
}
.main-page-pro-banner__clickable-area {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-page-pro-banner__button {
  position: absolute;
  right: 40px;
  width: 134px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #00b890 5.71%, #00c26f 45.17%);
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.main-page-pro-banner__button.main-page-pro-banner__promo-button {
  background: linear-gradient(
    156.18deg,
    #26c667 -71.93%,
    #20ae5b -18.83%,
    #20b05c 6.93%,
    #23b861 22.2%,
    #28c76a 34.73%,
    #30db76 45.78%,
    rgba(57, 244, 134, 0.9) 55.75%,
    rgba(61, 255, 141, 0.95) 58.95%,
    #32e17a 66.35%,
    #2aca6c 74.14%,
    #24ba62 82.56%,
    #21b15c 91.98%,
    #20ae5b 104.42%,
    #26c167 128.14%,
    #38f385 176.25%,
    #3dff8d 186.36%,
    rgba(32, 174, 91, 0) 216.7%
  );
}
.main-page-pro-banner__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(117.21deg, #8e909e 41.57%, #a3a5bf 101.11%);
  transition: opacity 0.3s ease;
  opacity: 1;
}
.main-page-pro-banner:hover .main-page-pro-banner__button::after {
  opacity: 0;
}
.main-page-pro-banner__button-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.17;
  color: #fff;
  z-index: 1;
}
.main-page-pro-banner:hover
  .main-page-pro-banner__text
  .promo-banner__text-span {
  color: #00c26f;
}
.main-page-referral-links-banner_desktop {
  display: none;
}
.main-page-referral-links-banner__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 60px;
}
.main-page-referral-links-banner__button-wrapper {
  position: absolute;
  top: 50%;
  left: 86%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.main-page-referral-links-banner-desktop__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-page-referral-links-banner__text {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
.main-page-referral-links-banner__button-text {
  position: relative;
  z-index: 2;
  display: flex;
  color: #fff;
  padding: 10px 12px;
  height: 40px;
  min-width: 124px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: #8e909e;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.main-page-referral-links-banner__link:hover
  .main-page-referral-links-banner__button-text {
  background-color: #00c26f;
}
.main-page-referral-links-banner__link
  .main-page-referral-links-banner-desktop__image {
  display: block;
}
.main-page-referral-links-banner__link
  .main-page-referral-links-banner-desktop__image,
.main-page-referral-links-banner__link
  .main-page-referral-links-banner-desktop__image
  img {
  width: 100%;
  height: 60px;
  transition: transform 0.3s ease;
}
.main-page-referral-links-banner__link:hover {
  animation: main-page-referral-links-banner-animation 2s both infinite ease;
}
.main-page-referral-links-banner__link
  .main-page-referral-links-banner__button {
  transition: fill 0.3s ease;
}
.main-page-referral-links-banner__link:hover
  .main-page-referral-links-banner__button {
  fill: #06ac65;
}
.main-page-promo-banner__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background: url(0e4a63f19ba46d719a06.png) left/cover no-repeat;
  transition: background-image 0.3s ease;
}
.main-page-promo-banner__container.main-page-promo-banner__container_january {
  background: url(70a6f7353de59e08e812.png) left/cover no-repeat;
}
.main-page-promo-banner__container.main-page-promo-banner__container_march {
  background: url(774e8f62666f929e1af9.png) left/cover no-repeat;
}
.main-page-promo-banner__container.main-page-promo-banner__container_march::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background: url(a517c5c40c6753f4a891.png) left/cover no-repeat;
  width: 190px;
  height: 60px;
}
.main-page-promo-banner:hover .main-page-promo-banner__container {
  background: url(7126f2d0c8a01212b2b4.png) left/cover no-repeat;
}
.main-page-promo-banner:hover
  .main-page-promo-banner__container.main-page-promo-banner__container_january {
  background: url(034cc2878f799312889c.png) left/cover no-repeat;
}
.main-page-promo-banner:hover
  .main-page-promo-banner__container.main-page-promo-banner__container_march {
  background: url(13aabb37969dda7b9330.png) left/cover no-repeat;
}
.main-page-promo-banner__text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.34px;
  text-align: center;
  color: #fff;
}
.main-page-promo-banner__clickable-area {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-page-promo-banner__button {
  position: absolute;
  right: 40px;
  width: 134px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #00b890 5.71%, #00c26f 45.17%);
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.main-page-promo-banner__button.main-page-promo-banner__promo-button {
  background: linear-gradient(
    156.18deg,
    #26c667 -71.93%,
    #20ae5b -18.83%,
    #20b05c 6.93%,
    #23b861 22.2%,
    #28c76a 34.73%,
    #30db76 45.78%,
    rgba(57, 244, 134, 0.9) 55.75%,
    rgba(61, 255, 141, 0.95) 58.95%,
    #32e17a 66.35%,
    #2aca6c 74.14%,
    #24ba62 82.56%,
    #21b15c 91.98%,
    #20ae5b 104.42%,
    #26c167 128.14%,
    #38f385 176.25%,
    #3dff8d 186.36%,
    rgba(32, 174, 91, 0) 216.7%
  );
}
.main-page-promo-banner__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(117.21deg, #8e909e 41.57%, #a3a5bf 101.11%);
  transition: opacity 0.3s ease;
  opacity: 1;
}
.main-page-promo-banner:hover .main-page-promo-banner__button::after {
  opacity: 0;
}
.main-page-promo-banner__button-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.17;
  color: #fff;
  z-index: 1;
}
.main-page-promo-banner:hover
  .main-page-promo-banner__text
  .promo-banner__text-span {
  color: #00c26f;
}
@media (min-width: 768px) {
  .main-page-referral-links-banner_desktop {
    display: block;
    margin-top: 48px;
  }
  .main-page-referral-links-banner_mobile {
    display: none;
  }
  .main-page-referral-links-banner_desktop
    .main-page-referral-links-banner__link
    .main-page-referral-links-banner-desktop__image {
    display: block;
    border-radius: 10px;
    transition: opacity 0.5s ease;
  }
  .main-page-referral-links-banner_desktop
    .main-page-referral-links-banner__link
    .main-page-referral-links-banner-desktop__image:nth-child(2) {
    position: absolute;
    z-index: 1;
    opacity: 0;
  }
  .main-page-referral-links-banner_desktop
    .main-page-referral-links-banner__link:hover
    .main-page-referral-links-banner-desktop__image:nth-child(1) {
    opacity: 0;
  }
  .main-page-referral-links-banner_desktop
    .main-page-referral-links-banner__link:hover
    .main-page-referral-links-banner-desktop__image:nth-child(2) {
    opacity: 1;
  }
}
@keyframes main-page-referral-links-banner-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.main-screen-premium__box {
  padding-top: 16px;
  padding-bottom: 0;
}
.main-screen-premium__image-mobile {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.main-screen-premium__images {
  display: none;
}
.main-screen-premium__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
.main-screen-premium__description {
  max-width: 590px;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  margin: 8px auto 0;
}
.main-screen-premium__button {
  height: 44px;
  margin-top: 40px;
  border-radius: 4px;
}
.main-screen-premium__log-in {
  min-height: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #f4f4f5;
  text-align: center;
  margin-top: 24px;
  outline: 0;
}
.main-screen-premium__log-in-link {
  color: #fff;
  text-decoration: underline;
  outline: 0;
  transition: color ease 0.3s;
}
.main-screen-premium__log-in-link:hover {
  color: #00c26f;
  text-decoration: none;
}
.main-screen-premium__trustpilot {
  margin-top: 73px;
}
.main-screen-premium__trustpilot a {
  display: block;
  text-align: center;
}
.main-screen-premium__promo-banner {
  margin-bottom: 20px;
}
.main-screen-premium__promo-banner .main-page-referral-links-banner {
  display: none;
}
.main-screen-premium__promo-banner .main-page-pro-banner {
  display: none;
}
@media screen and (max-width: 374px) {
  .main-screen-premium__image-mobile {
    height: 72vw;
  }
}
@media screen and (min-width: 768px) {
  .main-screen-premium__promo-banner .main-page-referral-links-banner {
    display: block;
  }
  .main-screen-premium__promo-banner .main-page-pro-banner {
    display: block;
  }
  .main-screen-premium__button {
    width: auto;
    padding-left: 36px;
    padding-right: 36px;
  }
  .main-screen-premium__promo-banner {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .main-screen-premium__promo-banner {
    margin-top: 172px;
    margin-bottom: 30px;
  }
  .main-screen-premium__box {
    position: relative;
    z-index: 1;
    padding-top: 136px;
    padding-bottom: 48px;
  }
  .main-screen-premium__image-mobile {
    display: none;
  }
  .main-screen-premium__images {
    position: absolute;
    top: 24px;
    left: 0;
    z-index: -1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .main-screen-premium__title {
    position: relative;
    font-size: 56px;
    line-height: 78px;
    margin-top: 0;
  }
  .main-screen-premium__button {
    margin-top: 40px;
  }
  .main-screen-premium__log-in {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .main-screen-premium__trustpilot {
    margin-top: 92px;
  }
}
.account-benefits-section__box {
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (min-width: 375px) {
  .account-benefits-section__box {
    margin-left: 0;
    margin-right: 0;
  }
}
.profit-section {
  background-color: #fafafd;
  padding-top: 120px;
  padding-bottom: 40px;
}
.profit-section__left {
  min-height: 304px;
}
.profit-section__picture {
  display: block;
}
.profit-section__picture img {
  display: block;
  margin: 0 auto;
}
.profit-section__right {
  margin-top: 24px;
}
.profit-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0 0 16px;
}
.profit-section__title strong {
  font-weight: 500;
}
.profit-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
}
.profit-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}
.profit-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
  border-radius: 4px;
}
.profit-section__button:first-child {
  margin-left: 0;
}
.profit-section__button_white {
  display: none;
  color: #2b2b37;
  background-color: #fafafd;
  border-color: #d3d7da;
}
.profit-section__button_white:hover,
.profit-section__button_white:focus {
  color: #2b2b37;
  background-color: rgba(211, 215, 218, 0.2);
}
@media screen and (min-width: 992px) {
  .profit-section {
    padding-bottom: 48px;
  }
  .profit-section__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .profit-section__left {
    margin-right: 50px;
  }
  .profit-section__right {
    margin-top: 0;
  }
  .profit-section__picture img {
    margin: 0;
  }
  .profit-section__button {
    width: auto;
    flex-grow: 0;
    padding-left: 36px;
    padding-right: 36px;
  }
  .profit-section__button_white {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .profit-section__left {
    width: 51%;
    min-height: 480px;
    flex-shrink: 0;
    margin-right: 0;
  }
  .profit-section__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
  .profit-section__text {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .profit-section__buttons {
    margin-top: 40px;
  }
}
.crypto-loans-section {
  background-color: #fafafd;
  padding-top: 40px;
  padding-bottom: 40px;
}
.crypto-loans-section__left {
  min-height: 304px;
}
.crypto-loans-section__picture {
  display: block;
}
.crypto-loans-section__picture img {
  display: block;
  margin: 0 auto;
}
.crypto-loans-section__right {
  margin-top: 24px;
}
.crypto-loans-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0 0 16px;
}
.crypto-loans-section__title strong {
  font-weight: 500;
}
.crypto-loans-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
}
.crypto-loans-section__list {
  margin: 12px 0;
}
.crypto-loans-section__list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin-top: 12px;
}
.crypto-loans-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}
.crypto-loans-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
  border-radius: 4px;
}
.crypto-loans-section__button:first-child {
  margin-left: 0;
}
.crypto-loans-section__button_white {
  color: #2b2b37;
  background-color: #fafafd;
  border-color: #d3d7da;
}
.crypto-loans-section__button_white:hover,
.crypto-loans-section__button_white:focus {
  color: #2b2b37;
  background-color: rgba(211, 215, 218, 0.2);
}
@media screen and (min-width: 992px) {
  .crypto-loans-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .crypto-loans-section__box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .crypto-loans-section__right {
    flex-grow: 1;
    width: 51%;
    margin-left: 0;
    margin-right: 50px;
  }
  .crypto-loans-section__picture img {
    margin: 0;
  }
  .crypto-loans-section__button {
    width: auto;
    flex-grow: 0;
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .crypto-loans-section__left {
    display: flex;
    justify-content: flex-end;
    min-height: 480px;
    flex-shrink: 0;
    margin-left: 0;
  }
  .crypto-loans-section__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
  .crypto-loans-section__text {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .crypto-loans-section__list li {
    font-size: 20px;
    line-height: 28px;
  }
  .crypto-loans-section__list li:before {
    top: 2px;
  }
  .crypto-loans-section__buttons {
    margin-top: 40px;
  }
}
.premium-marketplace-section {
  background-color: #fafafd;
  padding: 40px 0;
}
.premium-marketplace-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0;
}
.premium-marketplace-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin-top: 16px;
}
.premium-marketplace-section__products {
  width: calc(100% + 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 18px -15px 0;
  padding: 6px 15px 13px;
  overflow-x: auto;
  scrollbar-width: none;
}
.premium-marketplace-section__products::-webkit-scrollbar {
  display: none;
}
.premium-marketplace-section__product {
  width: 280px;
  flex-shrink: 0;
  margin-left: 16px;
}
.premium-marketplace-section__product:first-child {
  margin-left: 0;
}
.premium-marketplace-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}
.premium-marketplace-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
}
.premium-marketplace-section__button:first-child {
  margin-left: 0;
}
.premium-marketplace-section__button_white {
  color: #2b2b37;
  background-color: #fafafd;
  border-color: #d3d7da;
}
.premium-marketplace-section__button_white:hover {
  color: #2b2b37;
  background-color: rgba(211, 215, 218, 0.2);
}
@media screen and (min-width: 375px) {
  .premium-marketplace-section__product {
    width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .premium-marketplace-section__products {
    width: calc(100% + 16px);
    flex-wrap: wrap;
    margin: 2px 0 0 -16px;
    padding: 0;
    overflow: visible;
  }
  .premium-marketplace-section__product {
    margin-top: 16px;
  }
  .premium-marketplace-section__product:first-child {
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  .premium-marketplace-section__title {
    font-size: 36px;
    line-height: 48px;
  }
  .premium-marketplace-section__text {
    font-size: 20px;
    line-height: 28px;
  }
  .premium-marketplace-section__products {
    margin-top: 8px;
  }
  .premium-marketplace-section__product {
    width: calc(33.3% - 16px);
  }
  .premium-marketplace-section__buttons {
    justify-content: center;
    margin-top: 40px;
  }
  .premium-marketplace-section__button {
    width: auto;
    flex-grow: 0;
    padding-left: 36px;
    padding-right: 36px;
  }
}
.premium-trade-whale-section {
  background-color: #fafafd;
  padding: 40px 0;
}
.premium-trade-whale-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  text-align: center;
  margin: 0;
}
.premium-trade-whale-section__title strong {
  font-weight: 500;
}
.premium-trade-whale-section__soon {
  display: block;
  width: 178px;
  height: 36px;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #6a6a7f;
  text-align: center;
  background-color: #fff;
  border: 1px solid #dce2ea;
  border-radius: 4px;
  margin: 12px auto 0;
}
.premium-trade-whale-section__list {
  margin-top: 32px;
}
.premium-trade-whale-section__box {
  display: flex;
  flex-direction: column-reverse;
}
.premium-trade-whale-section__left {
  margin-top: 24px;
}
.premium-trade-whale-section__buttons {
  width: 100%;
  margin-top: 40px;
}
.premium-trade-whale-section__button {
  height: 44px;
  font-weight: 500;
  border-radius: 4px;
}
.premium-trade-whale-section__image img {
  display: block;
  width: 288px;
  margin: 0 auto;
}
.premium-trade-whale-section__description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
  padding: 0;
}
.premium-trade-whale-section__list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .premium-trade-whale-section {
    padding: 48px 0 0 0;
  }
  .premium-trade-whale-section__box {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .premium-trade-whale-section__image img {
    width: 100%;
    max-width: 455px;
  }
  .premium-trade-whale-section__left {
    width: 60%;
    min-height: 380px;
    margin-top: 0;
  }
  .premium-trade-whale-section__title {
    text-align: left;
  }
  .premium-trade-whale-section__soon {
    display: inline-block;
    vertical-align: middle;
    margin: -6px 0 0 24px;
  }
  .premium-trade-whale-section__right {
    width: 32%;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }
  .premium-trade-whale-section__button {
    width: 122px;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .premium-trade-whale-section__left {
    width: 51%;
    min-height: 480px;
  }
  .premium-trade-whale-section__title {
    font-size: 36px;
    line-height: 48px;
  }
  .premium-trade-whale-section__list {
    margin-top: 40px;
  }
  .premium-trade-whale-section__right {
    width: 47%;
  }
  .premium-trade-whale-section__description {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .premium-trade-whale-section__list li {
    font-size: 20px;
    line-height: 28px;
  }
  .premium-trade-whale-section__list li:before {
    top: 2px;
  }
}
.subscription-levels-section__buttons {
  width: 100%;
  margin-top: 40px;
  padding: 0 16px;
}
.subscription-levels-section__button {
  height: 44px;
  font-weight: 500;
  border-radius: 4px;
}
.subscription-levels-section__level .subscription-level p {
  white-space: break-spaces;
}
@media screen and (min-width: 992px) {
  .subscription-levels-section {
    max-width: 1134px;
    margin: 0 auto;
  }
  .subscription-levels-section__level .subscription-level {
    width: 100%;
    max-width: 344px;
  }
  .subscription-levels-section__buttons {
    padding: 0;
  }
  .subscription-levels-section__button {
    width: auto;
    padding-left: 36px;
    padding-right: 36px;
  }
}
.protect-funds-section {
  background-color: #fafafd;
  padding-bottom: 40px;
  padding-top: 40px;
}
.protect-funds-section__left {
  min-height: 304px;
}
.protect-funds-section__picture {
  display: block;
}
.protect-funds-section__picture img {
  display: block;
  margin: 0 auto;
}
.protect-funds-section__right {
  margin-top: 24px;
}
.protect-funds-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0 0 16px;
}
.protect-funds-section__title strong {
  font-weight: 500;
}
.protect-funds-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
}
.protect-funds-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}
.protect-funds-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
  border-radius: 4px;
}
.protect-funds-section__button:first-child {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  .protect-funds-section {
    padding-bottom: 48px;
    padding-top: 48px;
  }
  .protect-funds-section__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .protect-funds-section__left {
    margin-right: 50px;
  }
  .protect-funds-section__right {
    margin-top: 0;
    margin-right: 50px;
  }
  .protect-funds-section__picture img {
    margin-right: auto;
    margin-left: 0;
  }
  .protect-funds-section__button {
    width: auto;
    flex-grow: 0;
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .protect-funds-section__right {
    width: 51%;
  }
  .protect-funds-section__left {
    min-height: 480px;
    flex-shrink: 0;
    margin-left: 0;
    width: 51%;
    margin-right: auto;
  }
  .protect-funds-section__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
  .protect-funds-section__text {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .protect-funds-section__buttons {
    margin-top: 40px;
  }
}
.make-funds-work-section {
  background-color: #fafafd;
  padding-top: 40px;
  padding-bottom: 64px;
}
.make-funds-work-section__left {
  min-height: 304px;
}
.make-funds-work-section__picture {
  display: block;
}
.make-funds-work-section__picture img {
  display: block;
  margin: 0 auto;
  width: 288px;
  height: 304px;
}
.make-funds-work-section__right {
  margin-top: 24px;
}
.make-funds-work-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0 0 16px;
}
.make-funds-work-section__title strong {
  font-weight: 500;
}
.make-funds-work-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
}
.make-funds-work-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
.make-funds-work-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
  border-radius: 4px;
}
.make-funds-work-section__button_white {
  background-color: #fafafd;
  border: 1px solid #d3d7da;
  color: #2b2b37;
}
.make-funds-work-section__button_white:hover,
.make-funds-work-section__button_white:focus {
  color: #2b2b37;
  background-color: rgba(211, 215, 218, 0.2);
}
.make-funds-work-section__button:first-child {
  margin-left: 0;
}
.make-funds-work-section__coming-soon-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  margin: 0 0 12px;
}
.make-funds-work-section__steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.make-funds-work-section__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e5e5e9;
  border-radius: 8px;
}
.make-funds-work-section__step-order {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  border: 1px solid #e5e5e9;
  border-radius: 50%;
  background-color: #fafafd;
  transform: translate(-50%, -50%);
}
.make-funds-work-section__step-order-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0;
  text-align: left;
  color: #00c26f;
}
.make-funds-work-section__step-text {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
}
.make-funds-work-section__step-image {
  display: block;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 992px) {
  .make-funds-work-section {
    padding-top: 96px;
    padding-bottom: 64px;
  }
  .make-funds-work-section__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .make-funds-work-section__right {
    margin-top: 0;
    margin-right: 50px;
    width: 51%;
  }
  .make-funds-work-section__picture img {
    margin: 0;
    width: 455px;
    height: 100%;
  }
  .make-funds-work-section__button {
    width: 155px;
    height: 44px;
  }
  .make-funds-work-section__buttons {
    width: -moz-fit-content;
    width: fit-content;
  }
  .make-funds-work-section__step-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .make-funds-work-section__left {
    display: flex;
    align-items: center;
    min-height: 480px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .make-funds-work-section__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
  .make-funds-work-section__text {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .make-funds-work-section__buttons {
    margin-top: 40px;
  }
}
.secure-crypto-custody-section {
  background-color: #fafafd;
  padding-top: 40px;
  padding-bottom: 40px;
}
.secure-crypto-custody-section__left {
  min-height: 304px;
}
.secure-crypto-custody-section__picture {
  display: block;
}
.secure-crypto-custody-section__picture img {
  display: block;
  margin: 0 auto;
  width: 288px;
}
.secure-crypto-custody-section__right {
  margin-top: 24px;
}
.secure-crypto-custody-section__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  margin: 0 0 16px;
}
.secure-crypto-custody-section__title strong {
  font-weight: 500;
}
.secure-crypto-custody-section__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 12px 0;
}
.secure-crypto-custody-section__list {
  margin: 12px 0;
}
.secure-crypto-custody-section__list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin-top: 12px;
}
.secure-crypto-custody-section__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}
.secure-crypto-custody-section__button {
  width: calc(50% - 8px);
  height: 44px;
  flex-grow: 1;
  font-weight: 500;
  margin: 0 0 0 16px;
  border-radius: 4px;
}
.secure-crypto-custody-section__button:first-child {
  margin-left: 0;
}
.secure-crypto-custody-section__button_white {
  color: #2b2b37;
  background-color: #fafafd;
  border-color: #d3d7da;
}
.secure-crypto-custody-section__button_white:hover,
.secure-crypto-custody-section__button_white:focus {
  color: #2b2b37;
  background-color: rgba(211, 215, 218, 0.2);
}
@media screen and (min-width: 991px) {
  .secure-crypto-custody-section__left {
    margin-right: 50px;
  }
}
@media screen and (min-width: 992px) {
  .secure-crypto-custody-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .secure-crypto-custody-section__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .secure-crypto-custody-section__right {
    flex-grow: 1;
  }
  .secure-crypto-custody-section__picture img {
    margin: 0;
  }
  .secure-crypto-custody-section__button {
    width: auto;
    flex-grow: 0;
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .secure-crypto-custody-section__left {
    display: flex;
    justify-content: flex-start;
    min-height: 480px;
    flex-shrink: 0;
    margin-right: auto;
    width: 51%;
  }
  .secure-crypto-custody-section__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
  .secure-crypto-custody-section__text {
    font-size: 20px;
    line-height: 28px;
    margin: 16px 0;
  }
  .secure-crypto-custody-section__list li {
    font-size: 20px;
    line-height: 28px;
  }
  .secure-crypto-custody-section__list li:before {
    top: 2px;
  }
  .secure-crypto-custody-section__buttons {
    margin-top: 40px;
  }
  .secure-crypto-custody-section__picture img {
    width: 455px;
  }
}
.premium-page {
  background-color: #fafafd;
}
.premium-page__main-screen {
  background-color: #2b2b37;
  padding-bottom: 470px;
}
.premium-page__account {
  margin-top: -421px;
}
.premium-page__subscription-levels {
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
}
.premium-page__benefits-title,
.premium-page__subscription-levels-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #2b2b37;
  margin: 104px 0 12px 0;
}
.premium-page__subscription-levels-text {
  display: block;
  margin: 0 16px 22px 16px;
  max-width: 820px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #2b2b37;
  opacity: 1;
  text-align: center;
}
.premium-page .subscription-level__header-popular {
  display: none;
}
.premium-page__subscription-levels .subscription-level__header-popular {
  display: none;
}
.premium-page__with-love {
  padding-top: 20px;
}
.premium-page-faq-row {
  margin-top: 40px;
  padding: 0 16px;
}
.premium-page-faq-row__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #bfbfc3;
  margin: 0;
  padding: 0;
}
.premium-page-faq-row .crypto-loan-faq-chapter {
  margin-top: 24px;
}
.premium-page-faq-row .crypto-loan-faq-chapter__questions {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .premium-page-faq-row {
    margin-top: 56px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .premium-page__subscription-levels-text {
    font-size: 20px;
    margin: 0 auto 40px auto;
  }
}
@media screen and (min-width: 992px) {
  .premium-page__main-screen {
    padding-bottom: 270px;
  }
  .premium-page__account {
    margin-top: -270px;
  }
  .premium-page__benefits-title,
  .premium-page__subscription-levels-title {
    font-size: 48px;
    line-height: 64px;
  }
  .premium-page__benefits-title {
    margin: 120px 0 0 0;
  }
  .premium-page__subscription-levels-title {
    margin: 120px 0 16px 0;
  }
  .premium-page__with-love {
    padding-top: 36px;
  }
}
.dashboard-navigation-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 10px 16px 0px;
  outline: 0;
}
.dashboard-navigation-profile__title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-right: 10px;
  margin-left: 10px;
}
.dashboard-navigation-profile__icon svg {
  display: block;
  transition: transform ease 0.3s;
}
.dashboard-navigation__profile-zero-level:hover {
  fill: #27bee2;
}
.dashboard-navigation__profile-first-level:hover {
  fill: #f3c8a1;
}
.dashboard-navigation__profile-second-level:hover {
  fill: #c6c9d0;
}
.dashboard-navigation__profile-third-level:hover {
  fill: #f0d49e;
}
.dashboard-navigation__profile-paid-level {
  position: absolute;
  margin-left: 15px;
  top: 11px;
}
.dashboard-navigation-profile__icon {
  padding-top: 16px;
}
.dashboard-navigation-profile_disabled .dashboard-navigation-profile__icon {
  cursor: initial;
}
@media screen and (min-width: 992px) {
  .dashboard-navigation-profile {
    justify-content: flex-start;
    cursor: default;
  }
  .dashboard-navigation-profile__icon {
    cursor: pointer;
  }
  .dashboard-navigation-profile__icon svg {
    fill: url("#circle-star-icon-paint-linear");
  }
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.dashboard-navigation-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  overflow: hidden;
}
.dashboatd-navigation-list__apps {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 32px;
  border-top: 1px solid #dce2ea;
  margin: 0 8px;
}
.dashboatd-navigation-list__apps-links {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 8px;
}
.dashboatd-navigation-list__apps-span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.15px;
  padding-bottom: 16px;
}
.dashboatd-navigation-list__apps-link {
  position: relative;
  width: 100%;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
}
.dashboatd-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 90px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
.dashboard-navigation-list__item .dashboard-navigation-list__link {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.dashboard-navigation-list__link,
.dashboard-navigation-list__link:focus {
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  border-radius: 6px;
  padding: 12px;
  outline: 0;
  transition: color 0.15s, background-color ease 0.15s;
}
.dashboard-navigation-list__link_active {
  font-weight: 500;
  background-color: #f6f6f6;
}
.dashboard-navigation-list__item:last-child {
  margin-top: 32px;
  margin-bottom: 28px;
}
.dashboard-navigation-list__icon {
  width: 32px;
  height: 24px;
  padding-right: 8px;
}
html[dir="rtl"] .dashboard-navigation-list__icon {
  padding-right: 0;
  padding-left: 8px;
}
.dashboard-navigation-list__span-promo {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 3px 6px;
  margin-left: 4px;
}
@media screen and (min-width: 431px) {
  .dashboard-navigation-list__icon {
    width: 40px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .dashboatd-navigation-list__apps-link {
    width: 141px;
  }
  .dashboard-navigation-list__link,
  .dashboard-navigation-list__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-list__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-list__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-list__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
}
@media screen and (min-width: 992px) {
  .dashboatd-navigation-list__apps-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .dashboatd-navigation-list__apps {
    align-items: center;
  }
}
@media (hover: hover) {
  .dashboard-navigation-list__link:hover {
    color: #00c26f;
  }
}
.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-navigation-tooltip {
  position: relative;
}
.dashboard-navigation-tooltip__element {
  position: absolute;
  top: 0;
  left: 36px;
  width: 211px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity, visibility, ease 0.3s;
}
.dashboard-navigation-tooltip__element:before {
  display: none;
}
.dashboard-navigation-tooltip:hover .dashboard-navigation-tooltip__element {
  visibility: visible;
  opacity: 1;
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.more-navigation-dropdown {
  cursor: pointer;
  transition: color ease 0.2s;
  overflow: visible;
  flex-direction: column;
  gap: 16px;
}
.more-dropdown__list {
  position: absolute;
  z-index: 1000;
  bottom: -60%;
  right: -1px;
  width: 100vw;
  margin: 0 0 8px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  list-style-type: none;
  box-shadow: 0 0 8px 0 rgba(43, 43, 54, 0.1607843137);
  transform: translateY(100vh);
  padding: 16px 0 8px;
  flex-direction: column;
}
.more-dropdown__list-header {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  padding: 0 16px;
}
.more-dropdown__list-header_active {
  display: flex;
}
.more-dropdown__info {
  display: none;
  border-radius: 8px;
  margin-bottom: 16px;
}
.more-dropdown__info_active {
  display: grid;
}
.more-dropdown__list-title-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.more-dropdown__list-title {
  color: #6a6a7f;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.more-dropdown__list-close-button {
  border: none;
  background: none;
  padding: 0;
}
.more-dropdown__list--with-transition {
  transition: 0.7s transform cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__list--active {
  transform: translateY(0);
  display: flex;
}
.more-dropdown__overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 80px;
  height: 100%;
  left: 0;
  width: 100vw;
  z-index: 997;
  pointer-events: none;
  opacity: 0;
  transition: 0.7s opacity cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__overlay--active {
  opacity: 1;
  pointer-events: all;
}
.more-navigation-dropdown__list-item {
  color: #3d3d70;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.more-navigation-dropdown__list-item:first-child {
  margin-top: 7px;
}
.more-navigation-dropdown__list-item:last-child {
  margin-bottom: 7px;
}
.more-navigation-dropdown__list-item:hover a {
  color: inherit;
}
.more-navigation-dropdown__list-item_border_top {
  position: relative;
}
.more-dropdown__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transition: none;
  padding: 10px 0;
  border: none;
  background: none;
  color: #2b2b37;
  gap: 8px;
}
.more-navigation-list__button {
  padding: 0 16px;
}
.more-dropdown__link:focus {
  color: #2b2b37;
}
.more-navigation-list__button:active {
  background-color: #f8f8f8;
  color: #2b2b37;
}
.more-navigation-list__button:active a,
.more-navigation-list__button:active button {
  color: #2b2b37;
}
.more-navigation-list__button:nth-child(7) a,
.more-navigation-list__button:nth-child(9) a,
.more-navigation-list__button:nth-child(7) button,
.more-navigation-list__button:nth-child(9) button {
  border-bottom: solid 1px #eae8ed;
  padding-bottom: 18px;
}
.more-navigation-list__button:nth-child(8) a,
.more-navigation-list__button:nth-child(10) a,
.more-navigation-list__button:nth-child(8) button,
.more-navigation-list__button:nth-child(10) button {
  padding-top: 18px;
}
.more-dropdown__link img {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
}
.more-dropdown__link_active {
  color: #6a6a7f;
}
.more-navigation-list__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 16px;
  margin-top: 16px;
  color: #9696a5;
}
.more-drop-down__profile-stats .dashboard-profile-stats__items {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.more-drop-down__profile-stats .dashboard-profile-stats__subscription-level {
  position: relative;
  display: flex;
  padding: 6px 8px;
  border: 1px solid #dce2ea;
  gap: 6px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.23px;
  text-align: left;
  color: #2b2b36;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}
.more-drop-down__profile-stats .dashboard-profile-stats__item {
  width: auto;
}
.more-navigation-list__apps-link {
  display: block;
  position: relative;
  width: auto;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
  margin: 16px;
}
.more-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 375px) {
  .more-dropdown__list {
    right: -1px;
  }
  .more-dropdown__list-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 425px) {
  .more-dropdown__list {
    right: -1px;
  }
}
.container-dashboard-navigation-tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 1001;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: center;
  height: 80px;
}
.dashboard-navigation-tab {
  list-style-type: none;
  margin: 0 0 24px;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: space-between;
  height: 60px;
}
.dashboard-navigation-tab__item {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.dashboard-navigation-tab__link {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  padding: 8px 0;
  outline: 0;
  transition: all ease 0.2s;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #eae8ed;
  background: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  gap: 4px;
}
.dashboard-navigation-tab__link_active {
  font-weight: 500;
  color: #2b2b37;
  border-radius: 0;
  border-top: 1px solid #00c26f;
  background-color: #f8f8f8;
}
.dashboard-navigation-tab__icon {
  width: 24px;
  height: 24px;
}
.dashboard-navigation-tab__link_active .dashboard-navigation-tab__name {
  color: #2b2b36;
}
.dashboard-navigation-tab__name {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #6a6a7f;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation-tab__link,
  .dashboard-navigation-tab__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-tab__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-tab__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-tab__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
  .container-dashboard-navigation-tab {
    display: none;
  }
}
.dashboard-navigation {
  position: relative;
  background-color: #fff;
  padding-left: 0;
}
.dashboard-navigation__profile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  border-bottom: 1px solid #dce2ea;
}
.dashboard-navigation-profile__title {
  position: relative;
}
.dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 93%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
html[dir="rtl"] .dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
.dashboard-navigation__list {
  padding: 16px 12px;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard-navigation {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
  }
  .dashboard-navigation__profile {
    padding: 0;
  }
  .dashboard-navigation__list {
    padding: 0;
    border-top: none;
    margin-top: 0;
    margin-right: 8px;
    overflow: visible;
  }
}
.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;
}
.two-factor-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.two-factor-modal__title {
  position: absolute;
  width: 100%;
  top: 0;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  padding: 17px 13px 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  color: #2b2b37;
}
.two-factor-modal__image {
  width: 190px;
  height: 200px;
  margin-top: 36px;
  margin-bottom: 8px;
}
.two-factor-modal__header {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04px;
  color: #00c26f;
  margin: 24px 0 0 0;
  padding: 0;
}
.two-factor-modal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  letter-spacing: 0.4px;
  color: #2b2b36;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 0;
  text-align: center;
}
.two-factor-modal__button {
  margin-top: 24px;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  width: 100%;
  padding: 13px 0;
  background: #00c26f;
  border-radius: 4px;
  border: none;
  outline: none;
}
.two-factor-modal__button:hover {
  opacity: 0.8;
}
@media screen and (min-width: 992px) {
  .two-factor-modal__title {
    padding: 17px;
  }
  .two-factor-modal__button {
    margin-top: 32px;
  }
  .two-factor-modal__description {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
  }
  .two-factor-modal__image {
    margin: 24px 0;
  }
}
.dashboard-profile-stats__promo {
  background-color: #000c2c;
  padding: 9px 42px 9px 15px;
  border-radius: 8px;
  background-image: url(fa07034b052539f2faf6.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  transition: transform 0.3s ease;
  z-index: 2;
  border: none;
}
.dashboard-profile-stats__promo.dashboard-profile-stats__promo_january {
  background-image: url(6ddfb9057a52e49a94eb.png);
  background-position: bottom right;
}
.dashboard-profile-stats__promo.dashboard-profile-stats__promo_march {
  background-image: url(95c1d9ad71bad4387242.png);
  background-position: bottom right;
  cursor: pointer;
}
.dashboard-profile-stats__promo:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.dashboard-profile-stats__promo-info {
  display: flex;
  padding-bottom: 4px;
}
.dashboard-profile-stats__promo-title {
  font-weight: 700;
  line-height: 18px;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
  opacity: 1;
  position: relative;
}
.dashboard-profile-stats__promo-timer {
  margin: 0;
  padding: 3px 6px;
  border: 1px solid #8ef56c;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #8ef56c;
  border-radius: 2px;
  display: inline-block;
}
.dashboard-profile-stats__promo-block {
  display: flex;
  gap: 7px;
}
.dashboard-profile-stats__promo-arrow {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #8ef56c;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 500;
}
.dashboard-profile-stats__promo-arrow-image {
  width: 12px;
  height: 12px;
}
.dashboard-profile-stats__balance-tooltip_image {
  vertical-align: text-bottom;
  padding-right: 8px;
}
.dashboard-profile-stats__promo-main-text {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #dfd0ff;
  border: 1px solid #dfd0ff;
  padding: 3px 6px;
  margin: 0;
  border-radius: 2px;
}
.dashboard-profile-stats__promo-title.dashboard-profile-stats__promo-title_arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  height: 6px;
  width: 6px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
@media screen and (min-width: 431px) {
  .dashboard-profile-stats__promo {
    margin-left: 8px;
    background-image: url(ab989c2f5f7140ce4d41.svg);
  }
  .dashboard-profile-stats__promo.dashboard-profile-stats__promo_january {
    background-image: url(5cbdb12fae7d14a014f6.png);
  }
  .dashboard-profile-stats__promo.dashboard-profile-stats__promo_march {
    background-image: url(8ac293a00b06c8dd0807.png);
  }
}
.dashboard-profile-stats {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  gap: 0;
}
.dashboard-profile-stats__left-side {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
  padding: 0 16px;
}
.dashboard-profile-stats__right-side {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 16px 16px 24px 16px;
}
.dashboard-profile-stats__item {
  display: flex;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  border: solid 1px #d67d13;
  padding: 4px 12px;
  opacity: 1;
  cursor: pointer;
  font-weight: 500;
}
.dashboard-profile-stats__item:hover {
  background-color: rgba(254, 165, 59, 0.1);
}
.dashboard-profile-stats__item:active {
  background-color: rgba(254, 165, 59, 0.1);
}
.dashboard-profile-stats__item:hover .dashboard-profile-stats__item-text {
  color: #ea9127;
}
.dashboard-profile-stats__item-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color 0.2s ease;
  color: #d67d13;
}
.dashboard-profile-stats__balance {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  background-color: #f6f4f8;
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  outline: none;
  grid-column: 1 / span 2;
  grid-row: 2;
}
.dashboard-profile-stats__verify-action-close {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  border: none;
  padding: 0;
}
.dashboard-profile-stats__verify-action-close:hover {
  cursor: pointer;
}
.dashboard-profile-stats__verify-action-close:focus {
  outline: none;
}
.dashboard-profile-stats__balance.mobile_block {
  grid-column: 1;
  grid-row: 1;
  min-width: 145px;
  max-width: 194px;
  display: flex;
  justify-content: center;
  gap: 13px;
  padding: 8px 12px;
}
.dashboard-profile-stats__balance.level_block {
  flex-direction: column;
  align-items: start;
  padding: 0;
  margin: 0;
}
.dashboard-profile-stats__balance.cashback_block {
  display: flex;
  justify-content: center;
  gap: 30px;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  justify-self: right;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0);
}
.dashboard-profile-stats__balance.cashback_block:hover {
  border: 1px solid #00c26f;
  cursor: pointer;
}
.dashboard-profile-stats__balance.cashback_block:focus {
  background-color: #e6f9f1;
  border: 1px solid #00c26f;
}
.dashboard-profile-stats__balance-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-profile-stats__balance-action {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.dashboard-profile-stats__balance-button {
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  padding: 8px;
  border: none;
  background-position: center;
  background-repeat: no-repeat;
}
.dashboard-profile-stats__balance-button:hover {
  background-color: #e6f9f1;
  cursor: pointer;
}
.dashboard-profile-stats__balance-button:focus {
  background-color: #b3edd4;
}
.button-deposit {
  background-image: url(d5b1cf42f45c2fb13e4f.svg);
  background-size: 22px;
}
.button-exchange {
  background-image: url(7a3c7b9908683e9f2312.svg);
  background-size: 20px;
}
.dashboard-profile-stats__balance-link {
  background-image: url(2cc7067b4a98f77d48a2.svg);
  width: 9px;
  height: 14px;
}
.dashboard-profile-stats__subscription-span {
  font-weight: 500;
  color: #2b2b36;
  padding: 0;
  margin: 0;
}
.dashboard-profile-stats__subscription-upgrade {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #00c26f;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  cursor: pointer;
}
.dashboard-profile-stats__subscription-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.dashboard-profile-stats__subscription-info:has(.dashboard-profile-stats__subscription-upgrade_promo) {
  margin-top: 5px;
}
.level-elipse {
  border-radius: 50px;
  width: 24px;
  height: 24px;
  padding: 5px 5px 4px 5px;
}
.level-PAID0 {
  background-color: #dce2ea;
}
.level-PAID1 {
  background-color: #cceddf;
}
.level-PAID2 {
  background-color: #ccdef0;
}
.dashboard-profile-stats__balance-text_big {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.dashboard-profile-stats__info {
  display: flex;
  justify-content: space-between;
}
.dashboard-profile-stats__verify-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.dashboard-profile-stats__verify-title {
  color: #a4a3aa;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  align-self: flex-end;
}
.dashboard-profile-stats__balance-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: right;
  color: #a4a3aa;
  width: auto;
}
.dashboard-profile-stats__balance-text_black {
  color: #2b2b37;
  text-align: left;
}
.dashboard-profile-stats__balance-deposit {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 0;
}
.dashboard-profile-stats__subscription-upgrade_promo {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  padding: 0 18px 0 6px;
  position: relative;
  border: none;
  border-radius: 2px;
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
}
.dashboard-profile-stats__subscription-upgrade_promo::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  border: solid #fff;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  width: 6px;
  height: 6px;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.dashboard-profile-stats__balance-text_loading {
  background: radial-gradient(circle, #fff 0%, #f6f6f6 100%);
  color: rgba(0, 0, 0, 0);
  background-size: 200% 200%;
  animation: gradientAnimation 5s ease infinite;
}
.dashboard-profile-stats__subscription-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #9696a5;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 431px) {
  .dashboard-profile-stats__balance-text {
    text-align: left;
    text-wrap: nowrap;
  }
  .dashboard-profile-stats__info {
    display: flex;
    flex-direction: column;
  }
  .dashboard-profile-stats__left-side {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  .dashboard-profile-stats__right-side {
    display: flex;
    width: 100%;
    margin: 0 12px;
  }
  .dashboard-profile-stats__verify-info {
    flex-direction: row;
    align-items: start;
    gap: 8px;
    justify-content: left;
  }
  .dashboard-profile-stats__subscription-info {
    justify-content: left;
  }
  .level-elipse {
    width: 44px;
    height: 44px;
    padding: 10px 9px 8px 9px;
  }
  .dashboard-profile-stats__balance-info {
    gap: 2px;
  }
  .dashboard-profile-stats {
    display: flex;
    max-width: 1134px;
    background-color: #fff;
    position: relative;
    border-radius: 0 0 8px 8px;
    gap: 30px;
  }
  .dashboard-profile-stats:has(.dashboard-profile-stats__promo) {
    gap: 10px;
  }
  .dashboard-profile-stats__title {
    display: block;
  }
  .dashboard-profile-stats__balance {
    gap: 24px;
    background-color: #f6f4f8;
    width: 50%;
  }
  .dashboard-profile-stats__balance.cashback_block {
    gap: 24px;
    width: 50%;
    justify-content: space-between;
  }
  .dashboard-profile-stats__balance .cashback_block:focus {
    background-color: #e6f9f1;
    border: 1px solid #00c26f;
  }
  .dashboard-profile-stats__subscription-level {
    display: flex;
  }
  .dashboard-profile-stats__item {
    width: auto;
  }
  .dashboard-profile-stats__items {
    width: auto;
    justify-content: normal;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .dashboard-profile-stats__balance {
    width: auto;
  }
  .dashboard-profile-stats__balance.cashback_block {
    width: 100%;
    justify-content: center;
  }
  .dashboard-profile-stats__right-side {
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard-profile-stats {
    padding: 18.5px 16px 18.5px 20px;
    margin: 0 auto;
  }
  .dashboard-profile-stats__balance-tooltip {
    background-image: url(bdb26c108692e62f34e7.svg);
    display: block;
    width: 12px;
    margin-left: 4px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
    position: relative;
    cursor: pointer;
  }
  .dashboard-profile-stats__balance-tooltip .dashboard-profile-stats-tooltip {
    left: 1.5px;
  }
  .dashboard-profile-stats__balance-tooltip
    .dashboard-profile-stats-tooltip__element.simple-tooltip {
    width: 160px;
  }
  .dashboard-profile-stats__balance-text {
    display: flex;
  }
}
@media screen and (min-width: 1199px) {
  .dashboard-profile-stats__balance-tooltip
    .dashboard-profile-stats-tooltip__element.simple-tooltip {
    width: 207px;
  }
  .dashboard-profile-stats__promo_january
    .dashboard-profile-stats__balance-tooltip
    .dashboard-profile-stats-tooltip__element.simple-tooltip {
    width: 160px;
  }
}
.DayPicker {
  font-size: 14px;
  line-height: 16px;
}
.DayPicker-Day--today {
  color: #00c26f;
  font-weight: normal;
}
.Selectable
  .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
  background-color: #c5ecdb !important;
  color: #000 !important;
}
.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  background-color: #00c26f !important;
  color: #fff !important;
}
.Selectable .DayPicker-Day {
  border-radius: 0 !important;
}
.Selectable .DayPicker-Day--start {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.Selectable .DayPicker-Day--end {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
.sum-sub-widget {
  position: relative;
  z-index: 0;
  min-height: 210px;
}
.sum-sub-widget__loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sum-sub-widget__loader-icon {
  width: 89px;
  height: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #00c26f;
}
.sum-sub-widget__loader-icon svg {
  width: 35px;
  height: 35px;
  animation-name: sum-sub-widget-icon-rotate;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.sum-sub-widget-content {
  position: relative;
  z-index: 1;
}
@keyframes sum-sub-widget-icon-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.switcher {
  display: block;
  margin: 0;
  padding: 4px;
  border: none;
  width: 64px;
  height: 32px;
  background: #d3d7da;
  border-radius: 16px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.switcher-inner {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 24px;
  height: 24px;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.switcher-inner_loading {
  animation: loadingCircle 1s infinite linear;
}
.switcher-loading-icon {
  position: absolute;
  right: 4px;
  top: 2px;
}
.switcher.switcher_enabled {
  background: #00c26f;
}
.switcher.switcher_enabled .switcher-inner {
  left: calc(50% + 4px);
  color: #00c26f;
}
.switcher.switcher_disabled .switcher-inner {
  left: 4px;
  color: #d3d7da;
}
@keyframes loadingCircle {
  100% {
    transform: rotate(360deg);
  }
}
.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 {
  background-color: rgba(0, 0, 0, 0);
  border-color: #f39321;
  margin: 0 0 24px;
  border-radius: 8px;
}
.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;
  }
  .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-message_dashboard {
    margin: 0 0 24px;
  }
}
.cashback-banner {
  width: 100%;
  min-height: 96px;
  background-color: #2b2b36;
  filter: drop-shadow(0px 5px 10px rgba(43, 43, 54, 0.1));
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cashback-banner__data {
  display: flex;
  grid-gap: 40px;
  margin: 8px 0 8px 48px;
  align-items: center;
}
html[dir="rtl"] .cashback-banner__data {
  margin: 8px 48px 8px 0;
}
.cashback-banner__text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  width: 100%;
  color: #bfbfc3;
}
.cashback-banner__value {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.3px;
  color: #fff;
}
.cashback-banner__convert {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 12px;
  min-height: 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: #bfbfc3;
  align-self: self-end;
}
.cashback-banner__learn-more {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: right;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-right: 20%;
  min-width: -moz-max-content;
  min-width: max-content;
}
html[dir="rtl"] .cashback-banner__learn-more {
  margin-right: 0;
  margin-left: 20%;
}
.cashback-banner__learn-more:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: -32px;
  top: 2px;
}
.cashback-banner__learn-more:hover svg {
  fill: #3bee81;
  color: #3bee81;
}
.cashback-banner__learn-more:hover {
  color: #3bee81;
}
.cashback-banner__learn-more svg {
  position: absolute;
  width: 24px;
  height: 24px;
  right: -32px;
  top: 2px;
}
.cashback-banner__learn-more a {
  color: inherit;
}
.cashback-banner__content {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 8px;
}
.cashback-banner__image {
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 767px) {
  .cashback-banner {
    background-image: url(8b3b78bf6a0459c81575.svg),
      url(57e5570f78ae74c4d74e.svg);
    background-position: left center, right center;
    background-repeat: no-repeat;
  }
  html[dir="rtl"] .cashback-banner {
    background-position: right center, left center;
  }
}
@media screen and (max-width: 767px) {
  .cashback-banner {
    flex-direction: column;
    align-items: stretch;
    background-image: url(67719018b474f8930d55.svg);
    background-position: left center;
    background-repeat: no-repeat;
  }
  .cashback-banner__data {
    display: flex;
    grid-gap: 8px;
    margin: 0;
    padding: 16px 0 8px 16px;
    align-items: center;
  }
  .cashback-banner__convert {
    width: 100%;
  }
  .cashback-banner__learn-more {
    margin-right: 56px;
    padding-bottom: 16px;
  }
}
.tx-history-table {
  width: 100%;
}
.dashboard-history-table__row-loader {
  padding-top: 10px;
}
.dashboard-history-table__row-loader-icon {
  margin: 0 auto;
}
.tx-history-table .pro-history__table-cell,
.deposit-history-table .pro-history__table-cell {
  padding: 0;
  min-height: 48px;
}
.pro-history__table-cell-link {
  padding: 16px;
  color: #2b2b37;
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
.pro-history__table-cell-link:hover {
  color: #2b2b37;
}
.pro-history__table-cell-link:active {
  color: #2b2b37;
}
.history-switcher {
  width: 100%;
  display: flex;
  overflow-x: scroll;
}
.history-switcher__button {
  outline: none;
  border: none;
  background: none;
  padding: 12px 16px;
  margin: 0 16px 0 0;
  display: flex;
  align-items: center;
  color: #808086;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-radius: 6px;
}
.history-switcher__button .history-switcher__button-icon {
  width: 24px;
  margin-right: 12px;
}
html[dir="rtl"] .history-switcher__button .history-switcher__button-icon {
  margin-right: 0;
  margin-left: 12px;
}
.history-switcher__button_active {
  background: #efefef;
}
.history-switcher__button:hover {
  background: #efefef;
}
@media screen and (min-width: 576px) {
  .history-switcher {
    overflow-x: auto;
  }
}
.deposit-history-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
}
.deposit-history-table__table {
  width: 100%;
  min-height: auto;
}
.deposit-history-table__head {
  border-bottom: 1px solid #e0e0e0;
}
.deposit-history-table__head th {
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.deposit-history-table__body {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.2px;
}
.deposit-history-table__row:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.04);
}
.deposit-history-table__row {
  border-bottom: 1px solid #e0e0e0;
}
.deposit-history-table__row-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.deposit-history-table th,
.deposit-history-table td {
  padding: 16px 24px;
  text-align: left;
}
.deposit-history-table__head .deposit-history-table__header_empty {
  padding: 16px 14px;
}
.deposit-history-table__pagination {
  margin-top: auto;
}
.deposit-history-table__loader {
  display: inline;
  margin: -10px 0;
}
.deposit-history-table__row-loader-icon {
  margin: 0 auto;
}
.deposit-history-table__empty {
  min-height: 35vh;
}
@media screen and (min-width: 768px) {
  .deposit-history-table {
    min-height: 736px;
  }
  .deposit-history-table__empty {
    min-height: 540px;
  }
  .deposit-history-table__row-container {
    justify-content: flex-start;
  }
  .deposit-history-table__head .deposit-history-table__head-empty {
    padding: 16px 24px;
  }
}
.withdraw-history-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
}
.withdraw-history-table__table {
  width: 100%;
  min-height: auto;
}
.withdraw-history-table__head {
  border-bottom: 1px solid #e0e0e0;
}
.withdraw-history-table__head th {
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.withdraw-history-table__body {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.2px;
}
.withdraw-history-table__row:hover {
  background: rgba(0, 0, 0, 0.04);
}
.withdraw-history-table__row {
  border-bottom: 1px solid #e0e0e0;
}
.withdraw-history-table__head .withdraw-history-table__header_empty {
  padding: 16px 14px;
}
.withdraw-history-table th,
.withdraw-history-table td {
  padding: 16px 24px;
  text-align: left;
}
.withdraw-history-table__pagination {
  margin-top: auto;
}
.withdraw-history-table__loader {
  display: inline;
}
.withdraw-history-table__row-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.withdraw-history-table__row-loader-icon {
  margin: 0 auto;
}
.withdraw-history-table__empty {
  min-height: 35vh;
}
@media screen and (min-width: 768px) {
  .withdraw-history-table {
    min-height: 736px;
  }
  .withdraw-history-table__empty {
    min-height: 540px;
  }
  .withdraw-history-table__row-container {
    justify-content: flex-start;
  }
  .withdraw-history-table__head .withdraw-history-table__head-empty {
    padding: 16px 24px;
  }
}
.trade-history-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
}
.trade-history-table__table {
  width: 100%;
  min-height: auto;
}
.trade-history-table__head {
  border-bottom: 1px solid #e0e0e0;
}
.trade-history-table__head th {
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.trade-history-table__body {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.2px;
}
.trade-history-table__row:hover {
  background: rgba(0, 0, 0, 0.04);
}
.trade-history-table__row {
  border-bottom: 1px solid #e0e0e0;
}
.trade-history-table__head .trade-history-table__header_empty {
  padding: 16px 14px;
}
.trade-history-table th,
.trade-history-table td {
  padding: 16px 24px;
  text-align: left;
}
.trade-history-table__pagination {
  margin-top: auto;
}
.trade-history-table__loader {
  display: inline;
}
.trade-history-table__row-loader-icon {
  margin: 0 auto;
}
.trade-history-table__data-loader-icon {
  display: inline;
  margin: 0 -5px;
}
.trade-history-table__empty {
  min-height: 35vh;
}
@media screen and (min-width: 768px) {
  .trade-history-table {
    min-height: 736px;
  }
  .trade-history-table__empty {
    min-height: 540px;
  }
  .trade-history-table__head .trade-history-table__head-empty {
    padding: 16px 24px;
  }
}
.reward-history-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
}
.reward-history-table__table {
  width: 100%;
  min-height: auto;
}
.reward-history-table__head {
  border-bottom: 1px solid #e0e0e0;
}
.reward-history-table__head th {
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.reward-history-table__body {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.2px;
}
.reward-history-table__row:hover {
  background: rgba(0, 0, 0, 0.04);
}
.reward-history-table__row {
  border-bottom: 1px solid #e0e0e0;
}
.reward-history-table th,
.reward-history-table td {
  padding: 16px 24px;
  text-align: left;
  font-style: none;
}
.reward-history-table__pagination {
  margin-top: auto;
}
.reward-history-table__loader {
  display: inline;
}
.reward-history-table__row-loader-icon {
  margin: 0 auto;
}
.reward-history-table__empty {
  min-height: 35vh;
}
@media screen and (min-width: 768px) {
  .reward-history-table {
    min-height: 736px;
  }
  .reward-history-table__empty {
    min-height: 540px;
  }
}
html[dir="rtl"] .dashboard-history-pagination__button {
  transform: rotate(180deg) !important;
}
.dashboard-history-pagination__button {
  transform: none;
}
.staking-banner-history {
  width: 100%;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 40px;
  align-items: flex-start;
  background-image: url(99f306a838f9ed2629ba.png);
  background-image: -webkit-image-set(
    url(6a770617e48faa7528f7.webp) type("image/webp"),
    url(99f306a838f9ed2629ba.png) type("image/png")
  );
  background-image: image-set(
    url(6a770617e48faa7528f7.webp) type("image/webp"),
    url(99f306a838f9ed2629ba.png) type("image/png")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.staking-banner-history__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: center;
  padding: 19px 0 0 20px;
  text-align: left;
}
html[dir="rtl"] .staking-banner-history__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: center;
  padding: 19px 20px 0 0;
  text-align: right;
}
.staking-banner-history__title {
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  margin: 0;
  padding: 0;
}
.staking-banner-history__description {
  display: block;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.27px;
  color: #fff;
  font-weight: 400;
  max-width: calc(100% - 105px);
  flex-shrink: 1;
  min-width: 0;
}
.staking-banner-history__button {
  position: relative;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #00c26f;
  padding: 11px 16px;
  font-size: 16px;
  border-radius: 8px;
  outline: none;
  color: #fff;
  margin-left: 20px;
  margin-bottom: 19px;
}
html[dir="rtl"] .staking-banner-history__button {
  margin-left: 0;
  margin-right: 20px;
}
.staking-banner-history__image-block {
  position: absolute;
  right: -50px;
  bottom: -15px;
  height: 133px;
  width: 226px;
  overflow: hidden;
}
html[dir="rtl"] .staking-banner-history__image-block {
  position: absolute;
  right: auto;
  left: -30px;
  bottom: -15px;
  height: 133px;
  width: 226px;
  overflow: hidden;
}
.staking-banner-history__image {
  width: 226px;
  height: 133px;
}
@media screen and (min-width: 768px) {
  .staking-banner-history__image-block {
    position: relative;
    height: 100px;
    overflow: hidden;
    align-self: flex-end;
    right: auto;
    bottom: auto;
  }
  html[dir="rtl"] .staking-banner-history__image-block {
    position: relative;
    height: 100px;
    overflow: hidden;
    align-self: flex-start;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .staking-banner-history {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }
  .staking-banner-history__title {
    font-size: 24px;
    line-height: 28px;
  }
  .staking-banner-history__button {
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
    white-space: nowrap;
    margin-left: 0;
    margin-bottom: 0;
  }
  html[dir="rtl"] .staking-banner-history__button {
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
    white-space: nowrap;
    margin-left: 20px;
    margin-bottom: 0;
  }
  .staking-banner-history__description {
    padding-right: 0;
    max-width: 100%;
  }
  .staking-banner-history__text {
    align-self: center;
    padding: 21px 0 24px;
  }
  .staking-banner-history__button::after {
    content: "";
    background: url(c12bf6a8b3d1c5858f82.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  .staking-banner-history__button {
    margin-right: 40px;
  }
}
.cashback-banner-row {
  margin-bottom: 16px;
  margin-top: 16px;
}
.value-loader {
  animation-name: value-loader-rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.pro-history {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.premium-history-page__dashboard-calculator {
  border-radius: 8px;
  background: #fff;
  margin-top: 16px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.pro-history__tabs {
  min-height: 822px;
}
.premium-history-page__history-switcher {
  padding: 24px 16px;
  margin: 0;
}
@keyframes value-loader-rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .premium-history-page__history-switcher {
    padding: 24px 24px 16px 24px;
  }
}
@media screen and (min-width: 992px) {
  .cashback-banner-row {
    margin-top: 0;
  }
}
.staking-info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .staking-info {
    flex-direction: column;
  }
}
.staking-info--right {
  width: 443px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .staking-info--right {
    width: 100%;
    margin-bottom: 12px;
  }
}
.staking-info--right .staking-bottom-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .staking-info--right .staking-bottom-cards {
    margin-top: 12px;
  }
}
.staking-info--right .staking-bottom-cards--current-price,
.staking-info--right .staking-bottom-cards--yearly-profit {
  width: 50%;
}
.staking-info--right .staking-bottom-cards--current-price {
  margin-right: 12px;
}
.staking-info--left {
  width: 489px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  .staking-info--left {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .staking-info--left {
    padding: 20px 20px;
  }
}
.staking-info--left .left-card-main-text {
  color: #2b2b36;
  opacity: 1;
}
.staking-info--left .stake-your-now {
  display: flex;
}
.staking-info--left .stake-your-now--text {
  color: #2b2b36;
  width: 220px;
  margin-left: 36px;
  font-size: 20px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-info--left .stake-your-now--text {
    width: 100%;
    font-size: 18px;
  }
}
.staking-info--left .stake-your-now--text a {
  color: #2b2b36;
  text-decoration: underline;
}
.staking-right--countdown {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px 44px;
}
@media screen and (max-width: 480px) {
  .staking-right--countdown {
    padding: 20px 0;
  }
}
.staking-right--countdown .time {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--countdown .time {
    font-size: 36px;
  }
}
.staking-right--countdown .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "AbrilFatfaceRegular", sans-serif;
  margin-top: 16px;
}
.countdown--title {
  font-size: 10px;
  color: #808086;
  font-weight: 400;
  text-align: center;
}
.countdown--element {
  text-align: center;
  width: 57px;
}
.countdown--number {
  font-size: 26px;
  color: #2b2b36;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(43, 43, 54, 0.05);
  border-radius: 4px;
}
.countdown--delimiter {
  font-size: 26px;
  font-weight: 300;
  color: #2b2b36;
  position: relative;
  top: -11px;
  margin: 0 10px;
}
@media screen and (max-width: 480px) {
  .countdown--delimiter {
    margin: 0;
  }
}
.countdown--label {
  font-weight: 300;
  text-transform: lowercase;
  font-family: "Roboto", sans-serif;
  font-size: 9px;
  color: #2b2b36;
}
@media (min-width: 768px) {
  .countdown--wrapper {
    display: inline-flex;
  }
  .countdown {
    margin-top: 0;
    margin-left: 16px;
  }
  .countdown--title {
    margin-top: 14px;
  }
}
.staking-right--current-price {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 27px 24px;
}
@media screen and (max-width: 480px) {
  .staking-right--current-price {
    padding: 22px 0;
  }
}
.staking-right--current-price .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
  margin-top: 0;
}
.staking-right--current-price .price {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--current-price .price {
    font-size: 36px;
  }
}
.staking-right--yearly-profit {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 27px 24px;
}
@media screen and (max-width: 480px) {
  .staking-right--yearly-profit {
    padding: 22px 0;
  }
}
.staking-right--yearly-profit .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
  margin-top: 0;
}
.staking-right--yearly-profit .percent {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--yearly-profit .percent {
    font-size: 36px;
  }
}
.staking-calculator h1 {
  color: #fff;
  font-size: 32px;
  line-height: 140%;
  margin: 0;
}
@media (min-width: 768px) {
  .staking-calculator h1 {
    font-size: 50px;
    line-height: 59px;
  }
}
@media (min-width: 992px) {
  .staking-calculator__elements {
    display: flex;
    justify-content: space-between;
  }
}
.staking-calculator .elements__fields-range {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .staking-calculator .elements__fields-range {
    width: 100%;
  }
}
.staking-calculator .field-total {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 992px) {
  .staking-calculator .field-total {
    width: 50%;
    margin-top: 0;
  }
}
.staking-calculator__subtitle {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 180%;
}
.staking-calculator__subtitle:not(:first-child) {
  margin-top: 8px;
}
.staking-calculator__subtitle:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .staking-calculator__subtitle {
    font-size: 18px;
    line-height: 180%;
  }
  .staking-calculator__subtitle:not(:first-child) {
    margin-top: 20px;
  }
  .staking-calculator__subtitle:not(:last-child) {
    margin-bottom: 20px;
  }
}
.staking-calculator__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.staking-calculator__bottom:not(:first-child) {
  margin-top: 36px;
}
@media (min-width: 992px) {
  .staking-calculator__bottom:not(:first-child) {
    margin-top: 84px;
  }
}
.staking-calculator__more-info {
  text-align: center;
  font-size: 14px;
  color: #bfbfc3;
  margin: 0;
  opacity: 1;
  line-height: 140%;
}
.staking-calculator__more-info:not(:first-child) {
  margin-top: 8px;
}
.staking-calculator__more-info a {
  color: #00c26f;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .staking-calculator__more-info:not(:first-child) {
    margin-top: 16px;
  }
}
.staking-calculator__button {
  background: #00c26f;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #fff;
  padding: 16px 0;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  max-width: 416px;
  width: 100%;
}
.staking-calculator__button:hover {
  background: #00d178;
}
.staking-calculator__level-selector.radio-buttons {
  border: 1px solid #434554;
  padding: 0;
  margin-bottom: 24px;
  background: #252531;
}
.staking-calculator__level-selector.radio-buttons .radio-buttons__item {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  color: #d3d7da;
  background: #252531;
  width: 50%;
}
.staking-calculator__level-selector.radio-buttons
  .radio-buttons__item.radio-buttons__item_active {
  background: #00c26f;
  color: #fff;
}
.staking-calculator_with_hidden_period {
  display: flex;
  flex-direction: column;
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo.radio-buttons__item_active {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo
  .radio-button__item-span_promo {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  color: #fff;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-left: 10px;
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo.radio-buttons__item_active
  .radio-button__item-span_promo {
  background: #fff;
  color: #7e40e3;
}
@media screen and (min-width: 768px) {
  .staking-calculator__level-selector.radio-buttons {
    max-width: 310px;
  }
  .staking-calculator__level-selector.radio-buttons .radio-buttons__item {
    max-width: 155px;
  }
}
.amount-range-block {
  position: relative;
  background-color: #252531;
  border-radius: 8px 8px 0 0;
  padding: 22px 19px 11px;
  border: 1px solid #40404a;
}
.amount-range-block--amount-title,
.amount-range-block--amount-value {
  padding: 0 24px;
}
.amount-range-block--amount-title {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.amount-range-block--amount-title:not(:last-child) {
  margin-bottom: 6px;
}
.amount-range-block .input-amount {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  position: relative;
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.amount-range-block input[type="number"] {
  -moz-appearance: textfield;
}
.amount-range-block input::-webkit-outer-spin-button,
.amount-range-block input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount-range-block--amount-value {
  font-size: 24px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .amount-range-block--amount-value {
    font-size: 18px;
  }
}
.amount-range-block--amount-value span {
  font-weight: bold;
  margin-right: 5px;
}
.amount-range-block--wrap {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  transform: translateY(50%);
}
.amount-range-block--wrap input[type="range"] {
  border: none;
  -webkit-appearance: none;
  width: 100%;
  position: relative;
}
.amount-range-block--wrap input[type="range"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #00c26f;
}
.amount-range-block--wrap input[type="range"]:after {
  background: red;
}
.amount-range-block--wrap input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 3px solid #00c26f;
  -webkit-appearance: none;
  background-color: #fff;
  margin-top: -4px;
  z-index: 99;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.amount-range-block--wrap input[type="range"]:focus {
  outline: none;
}
.amount-range-block--wrap .input-range {
  padding-right: 0;
  width: 100%;
  padding-left: 0;
  left: 0;
}
.period-range-block {
  position: relative;
  background-color: #252531;
  border-radius: 8px 8px 0 0;
  padding: 22px 19px 11px;
  border: 1px solid #40404a;
}
.period-range-block--period-title,
.period-range-block--period-value {
  padding: 0 24px;
}
.period-range-block--period-title {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.period-range-block--period-title:not(:last-child) {
  margin-bottom: 6px;
}
.period-range-block--period-value {
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  font-weight: normal;
  width: 100%;
  padding: 0;
}
.period-range-block--wrap {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  transform: translateY(50%);
}
.period-range-block--wrap .input-range {
  padding-right: 0;
  width: 100%;
  padding-left: 0;
  left: 0;
}
.period-range-block--wrap input[type="range"] {
  border: none;
  -webkit-appearance: none;
  width: 100%;
  position: relative;
}
.period-range-block--wrap input[type="range"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #00c26f;
}
.period-range-block--wrap input[type="range"]:after {
  background: red;
}
.period-range-block--wrap input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 3px solid #00c26f;
  -webkit-appearance: none;
  background-color: #fff;
  margin-top: -4px;
  z-index: 99;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.period-range-block--wrap input[type="range"]:focus {
  outline: none;
}
.total-reward-block,
.roi-block {
  justify-content: center;
  align-items: center;
}
.total-title {
  color: #fff;
  margin-bottom: 0;
  font-weight: 100;
  font-size: 14px;
}
.total-title__value {
  font-weight: 500;
}
.roi-block--tooltip-wrapper {
  display: flex;
  align-items: center;
}
.roi-block--tooltip-wrapper .roi-title {
  margin-right: 5px;
}
.usd-wrapper {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin-top: -16px;
}
.staking-tooltip-roi {
  left: auto !important;
  right: 0;
}
.total-value {
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
}
.total-value .now-text {
  font-weight: 100;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .total-value {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .total-title {
    font-size: 15px;
  }
  .total-value {
    font-size: 31px;
  }
  .total-value .now-text {
    font-size: 21px;
  }
}
.total-earning-block .total-title,
.total-earning-block .total-value {
  color: #00c26f;
}
.roi-value {
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-left: 5px;
  font-size: 14px;
  font-weight: bold;
}
.roi-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 9px;
}
.roi-wrapper .roi-title {
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}
.dashboard-navigation-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 10px 16px 0px;
  outline: 0;
}
.dashboard-navigation-profile__title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-right: 10px;
  margin-left: 10px;
}
.dashboard-navigation-profile__icon svg {
  display: block;
  transition: transform ease 0.3s;
}
.dashboard-navigation__profile-zero-level:hover {
  fill: #27bee2;
}
.dashboard-navigation__profile-first-level:hover {
  fill: #f3c8a1;
}
.dashboard-navigation__profile-second-level:hover {
  fill: #c6c9d0;
}
.dashboard-navigation__profile-third-level:hover {
  fill: #f0d49e;
}
.dashboard-navigation__profile-paid-level {
  position: absolute;
  margin-left: 15px;
  top: 11px;
}
.dashboard-navigation-profile__icon {
  padding-top: 16px;
}
.dashboard-navigation-profile_disabled .dashboard-navigation-profile__icon {
  cursor: initial;
}
@media screen and (min-width: 992px) {
  .dashboard-navigation-profile {
    justify-content: flex-start;
    cursor: default;
  }
  .dashboard-navigation-profile__icon {
    cursor: pointer;
  }
  .dashboard-navigation-profile__icon svg {
    fill: url("#circle-star-icon-paint-linear");
  }
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.dashboard-navigation-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  overflow: hidden;
}
.dashboatd-navigation-list__apps {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 32px;
  border-top: 1px solid #dce2ea;
  margin: 0 8px;
}
.dashboatd-navigation-list__apps-links {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 8px;
}
.dashboatd-navigation-list__apps-span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.15px;
  padding-bottom: 16px;
}
.dashboatd-navigation-list__apps-link {
  position: relative;
  width: 100%;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
}
.dashboatd-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 90px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.dashboatd-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
.dashboard-navigation-list__item .dashboard-navigation-list__link {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.dashboard-navigation-list__link,
.dashboard-navigation-list__link:focus {
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  border-radius: 6px;
  padding: 12px;
  outline: 0;
  transition: color 0.15s, background-color ease 0.15s;
}
.dashboard-navigation-list__link_active {
  font-weight: 500;
  background-color: #f6f6f6;
}
.dashboard-navigation-list__item:last-child {
  margin-top: 32px;
  margin-bottom: 28px;
}
.dashboard-navigation-list__icon {
  width: 32px;
  height: 24px;
  padding-right: 8px;
}
html[dir="rtl"] .dashboard-navigation-list__icon {
  padding-right: 0;
  padding-left: 8px;
}
.dashboard-navigation-list__span-promo {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 3px 6px;
  margin-left: 4px;
}
@media screen and (min-width: 431px) {
  .dashboard-navigation-list__icon {
    width: 40px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .dashboatd-navigation-list__apps-link {
    width: 141px;
  }
  .dashboard-navigation-list__link,
  .dashboard-navigation-list__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-list__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-list__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-list__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
}
@media screen and (min-width: 992px) {
  .dashboatd-navigation-list__apps-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .dashboatd-navigation-list__apps {
    align-items: center;
  }
}
@media (hover: hover) {
  .dashboard-navigation-list__link:hover {
    color: #00c26f;
  }
}
.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-navigation-tooltip {
  position: relative;
}
.dashboard-navigation-tooltip__element {
  position: absolute;
  top: 0;
  left: 36px;
  width: 211px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity, visibility, ease 0.3s;
}
.dashboard-navigation-tooltip__element:before {
  display: none;
}
.dashboard-navigation-tooltip:hover .dashboard-navigation-tooltip__element {
  visibility: visible;
  opacity: 1;
}
.dashboard-navigation-list__icon-promo {
  margin-left: 4px;
}
.dashboard-navigation-list__promo-timer {
  margin: 0;
  margin-left: 8px;
  padding: 6px;
  border: 1px solid #00c26f;
  border-radius: 2px;
  color: #00c26f;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  max-width: 88px;
}
.more-navigation-dropdown {
  cursor: pointer;
  transition: color ease 0.2s;
  overflow: visible;
  flex-direction: column;
  gap: 16px;
}
.more-dropdown__list {
  position: absolute;
  z-index: 1000;
  bottom: -60%;
  right: -1px;
  width: 100vw;
  margin: 0 0 8px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  list-style-type: none;
  box-shadow: 0 0 8px 0 rgba(43, 43, 54, 0.1607843137);
  transform: translateY(100vh);
  padding: 16px 0 8px;
  flex-direction: column;
}
.more-dropdown__list-header {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  padding: 0 16px;
}
.more-dropdown__list-header_active {
  display: flex;
}
.more-dropdown__info {
  display: none;
  border-radius: 8px;
  margin-bottom: 16px;
}
.more-dropdown__info_active {
  display: grid;
}
.more-dropdown__list-title-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.more-dropdown__list-title {
  color: #6a6a7f;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.more-dropdown__list-close-button {
  border: none;
  background: none;
  padding: 0;
}
.more-dropdown__list--with-transition {
  transition: 0.7s transform cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__list--active {
  transform: translateY(0);
  display: flex;
}
.more-dropdown__overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 80px;
  height: 100%;
  left: 0;
  width: 100vw;
  z-index: 997;
  pointer-events: none;
  opacity: 0;
  transition: 0.7s opacity cubic-bezier(0.4, 0.9, 0.2, 1);
}
.more-dropdown__overlay--active {
  opacity: 1;
  pointer-events: all;
}
.more-navigation-dropdown__list-item {
  color: #3d3d70;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.more-navigation-dropdown__list-item:first-child {
  margin-top: 7px;
}
.more-navigation-dropdown__list-item:last-child {
  margin-bottom: 7px;
}
.more-navigation-dropdown__list-item:hover a {
  color: inherit;
}
.more-navigation-dropdown__list-item_border_top {
  position: relative;
}
.more-dropdown__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transition: none;
  padding: 10px 0;
  border: none;
  background: none;
  color: #2b2b37;
  gap: 8px;
}
.more-navigation-list__button {
  padding: 0 16px;
}
.more-dropdown__link:focus {
  color: #2b2b37;
}
.more-navigation-list__button:active {
  background-color: #f8f8f8;
  color: #2b2b37;
}
.more-navigation-list__button:active a,
.more-navigation-list__button:active button {
  color: #2b2b37;
}
.more-navigation-list__button:nth-child(7) a,
.more-navigation-list__button:nth-child(9) a,
.more-navigation-list__button:nth-child(7) button,
.more-navigation-list__button:nth-child(9) button {
  border-bottom: solid 1px #eae8ed;
  padding-bottom: 18px;
}
.more-navigation-list__button:nth-child(8) a,
.more-navigation-list__button:nth-child(10) a,
.more-navigation-list__button:nth-child(8) button,
.more-navigation-list__button:nth-child(10) button {
  padding-top: 18px;
}
.more-dropdown__link img {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
}
.more-dropdown__link_active {
  color: #6a6a7f;
}
.more-navigation-list__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 16px;
  margin-top: 16px;
  color: #9696a5;
}
.more-drop-down__profile-stats .dashboard-profile-stats__items {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.more-drop-down__profile-stats .dashboard-profile-stats__subscription-level {
  position: relative;
  display: flex;
  padding: 6px 8px;
  border: 1px solid #dce2ea;
  gap: 6px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.23px;
  text-align: left;
  color: #2b2b36;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}
.more-drop-down__profile-stats .dashboard-profile-stats__item {
  width: auto;
}
.more-navigation-list__apps-link {
  display: block;
  position: relative;
  width: auto;
  border: 1px solid #b4bcc7;
  border-radius: 6px;
  padding: 8px 0 8px 18px;
  min-height: 40px;
  margin: 16px;
}
.more-navigation-list__apps-link_apple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(e314a68a7270e9245291.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  background-image: url(793d8b37a41e21e0a7f7.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  margin-left: 18px;
  width: 100%;
  height: 100%;
}
.more-navigation-list__apps-link_google::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-image: url(60b9137d50d98da96d65.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  margin-left: 49px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 375px) {
  .more-dropdown__list {
    right: -1px;
  }
  .more-dropdown__list-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 425px) {
  .more-dropdown__list {
    right: -1px;
  }
}
.container-dashboard-navigation-tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 1001;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: center;
  height: 80px;
}
.dashboard-navigation-tab {
  list-style-type: none;
  margin: 0 0 24px;
  padding: 0;
  transition: max-height ease 0.3s;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  overflow: visible;
  justify-content: space-between;
  height: 60px;
}
.dashboard-navigation-tab__item {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.dashboard-navigation-tab__link {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  padding: 8px 0;
  outline: 0;
  transition: all ease 0.2s;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #eae8ed;
  background: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  gap: 4px;
}
.dashboard-navigation-tab__link_active {
  font-weight: 500;
  color: #2b2b37;
  border-radius: 0;
  border-top: 1px solid #00c26f;
  background-color: #f8f8f8;
}
.dashboard-navigation-tab__icon {
  width: 24px;
  height: 24px;
}
.dashboard-navigation-tab__link_active .dashboard-navigation-tab__name {
  color: #2b2b36;
}
.dashboard-navigation-tab__name {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #6a6a7f;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation-tab__link,
  .dashboard-navigation-tab__link:focus {
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  .dashboard-navigation-tab__item:not(:first-child) {
    margin-top: 12px;
  }
  .dashboard-navigation-tab__item:last-child {
    margin-top: 40px;
  }
  .dashboard-navigation-tab__link_active {
    font-weight: 400;
    background-color: #e6e9eb;
  }
  .container-dashboard-navigation-tab {
    display: none;
  }
}
.dashboard-navigation {
  position: relative;
  background-color: #fff;
  padding-left: 0;
}
.dashboard-navigation__profile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  border-bottom: 1px solid #dce2ea;
}
.dashboard-navigation-profile__title {
  position: relative;
}
.dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 93%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
html[dir="rtl"] .dashboard-navigation-profile__title::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f39321;
}
.dashboard-navigation__list {
  padding: 16px 12px;
}
@media screen and (min-width: 768px) {
  .dashboard-navigation {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard-navigation {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
  }
  .dashboard-navigation__profile {
    padding: 0;
  }
  .dashboard-navigation__list {
    padding: 0;
    border-top: none;
    margin-top: 0;
    margin-right: 8px;
    overflow: visible;
  }
}
: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;
}
.staking-info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .staking-info {
    flex-direction: column;
  }
}
.staking-info--right {
  width: 443px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .staking-info--right {
    width: 100%;
    margin-bottom: 12px;
  }
}
.staking-info--right .staking-bottom-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .staking-info--right .staking-bottom-cards {
    margin-top: 12px;
  }
}
.staking-info--right .staking-bottom-cards--current-price,
.staking-info--right .staking-bottom-cards--yearly-profit {
  width: 50%;
}
.staking-info--right .staking-bottom-cards--current-price {
  margin-right: 12px;
}
.staking-info--left {
  width: 489px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  .staking-info--left {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .staking-info--left {
    padding: 20px 20px;
  }
}
.staking-info--left .left-card-main-text {
  color: #2b2b36;
  opacity: 1;
}
.staking-info--left .stake-your-now {
  display: flex;
}
.staking-info--left .stake-your-now--text {
  color: #2b2b36;
  width: 220px;
  margin-left: 36px;
  font-size: 20px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-info--left .stake-your-now--text {
    width: 100%;
    font-size: 18px;
  }
}
.staking-info--left .stake-your-now--text a {
  color: #2b2b36;
  text-decoration: underline;
}
.staking-right--countdown {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px 44px;
}
@media screen and (max-width: 480px) {
  .staking-right--countdown {
    padding: 20px 0;
  }
}
.staking-right--countdown .time {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--countdown .time {
    font-size: 36px;
  }
}
.staking-right--countdown .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "AbrilFatfaceRegular", sans-serif;
  margin-top: 16px;
}
.countdown--title {
  font-size: 10px;
  color: #808086;
  font-weight: 400;
  text-align: center;
}
.countdown--element {
  text-align: center;
  width: 57px;
}
.countdown--number {
  font-size: 26px;
  color: #2b2b36;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(43, 43, 54, 0.05);
  border-radius: 4px;
}
.countdown--delimiter {
  font-size: 26px;
  font-weight: 300;
  color: #2b2b36;
  position: relative;
  top: -11px;
  margin: 0 10px;
}
@media screen and (max-width: 480px) {
  .countdown--delimiter {
    margin: 0;
  }
}
.countdown--label {
  font-weight: 300;
  text-transform: lowercase;
  font-family: "Roboto", sans-serif;
  font-size: 9px;
  color: #2b2b36;
}
@media (min-width: 768px) {
  .countdown--wrapper {
    display: inline-flex;
  }
  .countdown {
    margin-top: 0;
    margin-left: 16px;
  }
  .countdown--title {
    margin-top: 14px;
  }
}
.staking-right--current-price {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 27px 24px;
}
@media screen and (max-width: 480px) {
  .staking-right--current-price {
    padding: 22px 0;
  }
}
.staking-right--current-price .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
  margin-top: 0;
}
.staking-right--current-price .price {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--current-price .price {
    font-size: 36px;
  }
}
.staking-right--yearly-profit {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 27px 24px;
}
@media screen and (max-width: 480px) {
  .staking-right--yearly-profit {
    padding: 22px 0;
  }
}
.staking-right--yearly-profit .title {
  font-size: 12px;
  color: rgba(43, 43, 54, 0.5);
  font-weight: 100;
  margin-top: 0;
}
.staking-right--yearly-profit .percent {
  font-family: "AbrilFatfaceRegular", sans-serif;
  font-size: 46px;
  color: #64646c;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .staking-right--yearly-profit .percent {
    font-size: 36px;
  }
}
.breadcrumbs {
  background-color: #2b2b36;
  padding: 10px 0;
}
.breadcrumbs .container {
  width: 100%;
  padding: 0 16px;
}
.breadcrumbs_dark {
  background: #2b2b36;
}
.breadcrumbs_light {
  background: #f6f4f8;
}
.breadcrumbs__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: -4px 0 0 0;
}
.breadcrumbs__list_scrollable {
  overflow-x: auto;
  width: 100%;
  border-spacing: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.breadcrumbs__list_scrollable::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.breadcrumbs__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline-end: 36px;
  margin-top: 4px;
}
.breadcrumbs__item:last-child {
  padding-inline-end: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__arrow {
  display: none;
}
.breadcrumbs__link {
  font-size: 15px;
  line-height: 18px;
  color: #616174;
}
a.breadcrumbs__link:hover {
  color: #3bee81;
}
.breadcrumbs__arrow {
  position: absolute;
  top: 6px;
  right: 18px;
  width: 6px;
  height: 6px;
  border: 1px solid #616174;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
html[dir="rtl"] .breadcrumbs__arrow {
  right: unset;
  left: 18px;
  transform: rotate(225deg);
}
@media screen and (min-width: 992px) {
  .breadcrumbs {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1440px) {
  .breadcrumbs .container {
    padding: 0 40px;
  }
}
.staking-calculator h1 {
  color: #fff;
  font-size: 32px;
  line-height: 140%;
  margin: 0;
}
@media (min-width: 768px) {
  .staking-calculator h1 {
    font-size: 50px;
    line-height: 59px;
  }
}
@media (min-width: 992px) {
  .staking-calculator__elements {
    display: flex;
    justify-content: space-between;
  }
}
.staking-calculator .elements__fields-range {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .staking-calculator .elements__fields-range {
    width: 100%;
  }
}
.staking-calculator .field-total {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 992px) {
  .staking-calculator .field-total {
    width: 50%;
    margin-top: 0;
  }
}
.staking-calculator__subtitle {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 180%;
}
.staking-calculator__subtitle:not(:first-child) {
  margin-top: 8px;
}
.staking-calculator__subtitle:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .staking-calculator__subtitle {
    font-size: 18px;
    line-height: 180%;
  }
  .staking-calculator__subtitle:not(:first-child) {
    margin-top: 20px;
  }
  .staking-calculator__subtitle:not(:last-child) {
    margin-bottom: 20px;
  }
}
.staking-calculator__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.staking-calculator__bottom:not(:first-child) {
  margin-top: 36px;
}
@media (min-width: 992px) {
  .staking-calculator__bottom:not(:first-child) {
    margin-top: 84px;
  }
}
.staking-calculator__more-info {
  text-align: center;
  font-size: 14px;
  color: #bfbfc3;
  margin: 0;
  opacity: 1;
  line-height: 140%;
}
.staking-calculator__more-info:not(:first-child) {
  margin-top: 8px;
}
.staking-calculator__more-info a {
  color: #00c26f;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .staking-calculator__more-info:not(:first-child) {
    margin-top: 16px;
  }
}
.staking-calculator__button {
  background: #00c26f;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #fff;
  padding: 16px 0;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  max-width: 416px;
  width: 100%;
}
.staking-calculator__button:hover {
  background: #00d178;
}
.staking-calculator__level-selector.radio-buttons {
  border: 1px solid #434554;
  padding: 0;
  margin-bottom: 24px;
  background: #252531;
}
.staking-calculator__level-selector.radio-buttons .radio-buttons__item {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  color: #d3d7da;
  background: #252531;
  width: 50%;
}
.staking-calculator__level-selector.radio-buttons
  .radio-buttons__item.radio-buttons__item_active {
  background: #00c26f;
  color: #fff;
}
.staking-calculator_with_hidden_period {
  display: flex;
  flex-direction: column;
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo.radio-buttons__item_active {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo
  .radio-button__item-span_promo {
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  color: #fff;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-left: 10px;
}
.staking-calculator__level-selector_promo.radio-buttons
  .radio-buttons__item_promo.radio-buttons__item_active
  .radio-button__item-span_promo {
  background: #fff;
  color: #7e40e3;
}
@media screen and (min-width: 768px) {
  .staking-calculator__level-selector.radio-buttons {
    max-width: 310px;
  }
  .staking-calculator__level-selector.radio-buttons .radio-buttons__item {
    max-width: 155px;
  }
}
.amount-range-block {
  position: relative;
  background-color: #252531;
  border-radius: 8px 8px 0 0;
  padding: 22px 19px 11px;
  border: 1px solid #40404a;
}
.amount-range-block--amount-title,
.amount-range-block--amount-value {
  padding: 0 24px;
}
.amount-range-block--amount-title {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.amount-range-block--amount-title:not(:last-child) {
  margin-bottom: 6px;
}
.amount-range-block .input-amount {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  position: relative;
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.amount-range-block input[type="number"] {
  -moz-appearance: textfield;
}
.amount-range-block input::-webkit-outer-spin-button,
.amount-range-block input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount-range-block--amount-value {
  font-size: 24px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .amount-range-block--amount-value {
    font-size: 18px;
  }
}
.amount-range-block--amount-value span {
  font-weight: bold;
  margin-right: 5px;
}
.amount-range-block--wrap {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  transform: translateY(50%);
}
.amount-range-block--wrap input[type="range"] {
  border: none;
  -webkit-appearance: none;
  width: 100%;
  position: relative;
}
.amount-range-block--wrap input[type="range"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #00c26f;
}
.amount-range-block--wrap input[type="range"]:after {
  background: red;
}
.amount-range-block--wrap input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 3px solid #00c26f;
  -webkit-appearance: none;
  background-color: #fff;
  margin-top: -4px;
  z-index: 99;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.amount-range-block--wrap input[type="range"]:focus {
  outline: none;
}
.amount-range-block--wrap .input-range {
  padding-right: 0;
  width: 100%;
  padding-left: 0;
  left: 0;
}
.period-range-block {
  position: relative;
  background-color: #252531;
  border-radius: 8px 8px 0 0;
  padding: 22px 19px 11px;
  border: 1px solid #40404a;
}
.period-range-block--period-title,
.period-range-block--period-value {
  padding: 0 24px;
}
.period-range-block--period-title {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
}
.period-range-block--period-title:not(:last-child) {
  margin-bottom: 6px;
}
.period-range-block--period-value {
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  font-weight: normal;
  width: 100%;
  padding: 0;
}
.period-range-block--wrap {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  transform: translateY(50%);
}
.period-range-block--wrap .input-range {
  padding-right: 0;
  width: 100%;
  padding-left: 0;
  left: 0;
}
.period-range-block--wrap input[type="range"] {
  border: none;
  -webkit-appearance: none;
  width: 100%;
  position: relative;
}
.period-range-block--wrap input[type="range"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #00c26f;
}
.period-range-block--wrap input[type="range"]:after {
  background: red;
}
.period-range-block--wrap input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 3px solid #00c26f;
  -webkit-appearance: none;
  background-color: #fff;
  margin-top: -4px;
  z-index: 99;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.period-range-block--wrap input[type="range"]:focus {
  outline: none;
}
.total-reward-block,
.roi-block {
  justify-content: center;
  align-items: center;
}
.total-title {
  color: #fff;
  margin-bottom: 0;
  font-weight: 100;
  font-size: 14px;
}
.total-title__value {
  font-weight: 500;
}
.roi-block--tooltip-wrapper {
  display: flex;
  align-items: center;
}
.roi-block--tooltip-wrapper .roi-title {
  margin-right: 5px;
}
.usd-wrapper {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin-top: -16px;
}
.staking-tooltip-roi {
  left: auto !important;
  right: 0;
}
.total-value {
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
}
.total-value .now-text {
  font-weight: 100;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .total-value {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .total-title {
    font-size: 15px;
  }
  .total-value {
    font-size: 31px;
  }
  .total-value .now-text {
    font-size: 21px;
  }
}
.total-earning-block .total-title,
.total-earning-block .total-value {
  color: #00c26f;
}
.roi-value {
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-left: 5px;
  font-size: 14px;
  font-weight: bold;
}
.roi-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 9px;
}
.roi-wrapper .roi-title {
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}
.staking-card {
  box-sizing: border-box;
}
.staking-card_field:not(:first-child) {
  margin-top: 36px;
}
.staking-loader {
  min-height: 300px;
}
.staking-loader svg {
  position: relative;
  width: 100%;
  top: 50px;
}
#staking-block {
  min-height: 881px;
}
@media screen and (min-width: 576px) {
  #staking-block {
    min-height: 861px;
  }
}
@media screen and (min-width: 768px) {
  #staking-block {
    min-height: 890px;
  }
}
@media screen and (min-width: 992px) {
  #staking-block {
    min-height: 565px;
  }
}
@media screen and (min-width: 1200px) {
  #staking-block {
    min-height: 537px;
  }
}
.pie-chart {
  cursor: pointer;
  position: relative;
}
.pie-chart .svg {
  display: block;
  max-width: 100%;
  border-radius: 50%;
  transform: rotate(-90deg);
  stroke: none;
}
.pie-chart .svg .svg-circle {
  fill: rgba(0, 0, 0, 0);
  fill-opacity: 1;
}
.pie-chart .svg-circle-third {
  fill: none;
}
.pie-chart:hover .svg-circle {
  stroke-width: 94%;
  stroke: rgba(244, 244, 245, 0.05);
}
.readout {
  position: relative;
  height: 0;
}
.svg-circle-bg {
  fill: none;
  stroke: #e0e0e0;
}
.svg-circle-text {
  font-size: 2rem;
  text-anchor: middle;
  font-weight: bold;
}
output {
  position: absolute;
  text-align: center;
  z-index: 1;
  left: 0;
  right: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
: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;
}
.nt-exchange__form-wrap {
  background: #fff;
  box-sizing: border-box;
  border-radius: 13px;
  padding: 16px 8px;
  box-shadow: 2px 4px 21px rgba(43, 43, 54, 0.05);
}
.nt-exchange__row:not(:first-child) {
  margin-top: 16px;
}
.nt-exchange__title,
.nt-exchange__subtitle {
  line-height: 140%;
}
.nt-exchange__title {
  font-size: 22px;
  font-weight: 500;
}
.nt-exchange__subtitle {
  font-weight: normal;
  font-size: 14px;
}
.nt-exchange__notice,
.nt-exchange__notice a {
  font-size: 16px;
  line-height: 140%;
  color: #2b2b37;
  position: relative;
}
.nt-exchange__notice a {
  font-weight: 400;
}
.nt-exchange__notice span {
  position: absolute;
  top: 7px;
  right: -14px;
  width: 7px;
  height: 8px;
  border: 1px solid #2b2b37;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
.nt-exchange__notice a:hover,
.nt-exchange__notice span:hover {
  color: #545477;
  border-color: #545477;
}
@media (min-width: 768px) {
  .nt-exchange__title {
    font-size: 24px;
  }
  .nt-exchange__subtitle {
    font-size: 16px;
  }
  .nt-exchange__form-wrap {
    padding: 30px;
    box-shadow: 0 0 17px rgba(43, 43, 54, 0.05);
  }
}
.graph-stake {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.graph-stake__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  padding: 8px 33px 8px 27px;
  margin-bottom: -1px;
  border-radius: 8px 8px 0 0;
}
.graph-stake__info-text {
  font-size: 16px;
  line-height: 22px;
  color: #40404a;
}
.graph-stake__period {
  width: 200px;
  min-height: 34px;
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  z-index: 2;
  margin: auto;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
  text-align: center;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 23px;
  padding: 6px 0;
}
.graph-stake__icon {
  width: 100%;
  height: 100%;
  border: 1px solid #f2f2f2;
  overflow: hidden;
}
.graph-stake__icon svg {
  display: block;
}
.graph-stake__range-slider {
  position: absolute;
  z-index: 1;
  bottom: 36px;
  left: 0;
  right: 0;
}
.graph-stake__section {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.graph-stake__section-item {
  position: relative;
  height: 100%;
}
.graph-stake__section-item-line {
  width: 1px;
  height: calc(100% - 40px);
  background-color: #f2f2f2;
}
.graph-stake__section-item-text {
  font-size: 14px;
  line-height: 20px;
  color: #64646c;
  position: absolute;
  bottom: 5px;
  left: -8px;
  white-space: nowrap;
}
.graph-stake__section-item:first-child .graph-stake__section-item-text {
  left: 0;
}
.graph-stake__section-item:last-child .graph-stake__section-item-text {
  left: auto;
  right: 0;
}
.graph-stake__section-item:nth-child(2),
.graph-stake__section-item:nth-child(4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .graph-stake__section-item-text {
    font-size: 20px;
    line-height: 28px;
    bottom: 0;
  }
  .graph-stake__section-item:nth-child(2),
  .graph-stake__section-item:nth-child(4) {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .graph-stake__icon {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .graph-stake__info {
    width: 318px;
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 auto;
    border-top: 0;
    border-radius: 0 0 20px 20px;
    padding: 4px 46px 4px 33px;
  }
  .graph-stake__period {
    display: none;
  }
  .graph-stake__section {
    top: 0;
    height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
  }
}
.promo-plan-sale-block__text-mobile_march {
  font-size: 14px;
  line-height: 18px;
  color: #808086;
  margin-right: 4px;
  display: none;
}
.promo-plan-sale-block__img_march {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.promo-plan-sale-block__text_march {
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
}
.promo-plan-sale-block__text-desktop_march {
  display: none;
}
.promo-plan-sale-block__span-strike_march {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #9696a5;
  position: relative;
}
.promo-plan-sale-block__span-strike_march::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  height: 2px;
  width: 35px;
  background-color: #834ae6;
  transform: rotate(-16.86deg);
}
.promo-plan-sale-block__span-bold_march {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #434554;
  margin-left: 4px;
}
.promo-plan-sale-block__span_march {
  margin-left: 4px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #434554;
  display: none;
}
@media screen and (min-width: 375px) {
  .promo-plan-sale-block__text-mobile_march {
    display: inline;
  }
  .promo-plan-sale-block__span_march {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .promo-plan-sale-block__text-desktop_march {
    display: inline;
    margin-left: 5px;
  }
  .promo-plan-sale-block__text-mobile_march {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .promo-plan-sale-block__text-desktop_march {
    display: none;
  }
  .promo-plan-sale-block__span_march {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .promo-plan-sale-block__text-desktop_march {
    display: inline;
  }
  .promo-plan-sale-block__span_march {
    display: inline;
  }
}
.cashback-now-balance {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
  position: relative;
}
.cashback-now-balance__content {
  padding: 0 24px 24px 24px;
}
.cashback-now-balance__title {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-bottom: 8px;
  margin: 0 0 16px;
  padding-top: 16px;
  padding-left: 24px;
}
html[dir="rtl"] .cashback-now-balance__title {
  padding-left: 0;
  padding-right: 24px;
}
.cashback-now-balance__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.cashback-now-balance__row-image {
  width: 40px;
  height: 40px;
}
.cashback-now-balance__row_now {
  margin-bottom: 24px;
}
.cashback-now-balance__row_monthly-limit {
  margin-top: 16px;
}
.cashback-now-balance__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cashback-now-balance__stats-info {
  display: flex;
}
.cashback-now-balance__stats-value {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  margin: 0;
  color: #2b2b37;
}
.cashback-now-balance__stats-value_promo {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  margin: 0;
  font-weight: 700;
  color: #f39321;
  margin-left: 4px;
}
html[dir="rtl"] .cashback-now-balance__stats-value {
  text-align: right;
}
.cashback-now-balance__stats-value.cashback-now-balance__stats-value_now {
  font-size: 24px;
}
.cashback-now-balance__stats-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.41px;
  letter-spacing: 0.4px;
  text-align: left;
  margin: 0;
  color: #808086;
}
html[dir="rtl"] .cashback-now-balance__stats-text {
  text-align: right;
}
.cashback-now-balance__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-top: 16px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
.cashback-now-balance__button-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin: 0;
  color: #00c26f;
}
.cashback-now-balance__stats-tooltip {
  background-image: url(bdb26c108692e62f34e7.svg);
  display: block;
  width: 16px;
  margin-left: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  position: relative;
  cursor: pointer;
}
.cashback-now-balance__stats-tooltip .dashboard-profile-stats-tooltip {
  left: 1.5px;
}
.cashback-now-balance__stats-tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip {
  width: 200px;
}
.cashback-now-balance__stats-promo {
  display: flex;
  gap: 4px;
}
.cashback-now-balance__stats-value-strike::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background-color: #8d70f2;
  transform: rotate(-25.11deg);
  position: absolute;
  top: 13px;
  left: -4px;
}
.cashback-now-balance__stats-promo-value {
  margin: 0;
  padding: 2px 6px;
  border-radius: 4px;
  background: linear-gradient(
    101.43deg,
    #4ea1f5 -14.97%,
    #5c95f4 6.26%,
    #8278f2 46.57%,
    #8e6ff2 57.92%,
    #8a80e8 65.17%,
    #81add1 79.58%,
    #76eab1 96.67%
  );
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  margin-left: 4px;
  align-self: center;
}
.cashback-now-balance__stats-promo-span {
  display: none;
}
.cashback-now-balance__promo-block_march {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 24px;
  left: 24px;
  gap: 4px;
}
.cashback-now-balance__content:has(.cashback-now-balance__promo-block_march) {
  padding-bottom: 48px;
}
.cashback-now-balance__content:has(.cashback-now-balance__promo-block_march)
  .cashback-now-balance__button {
  margin-left: auto;
  white-space: nowrap;
  margin-bottom: -24px;
  margin-top: 46px;
}
@media screen and (min-width: 375px) {
  .cashback-now-balance__content:has(.cashback-now-balance__promo-block_march)
    .cashback-now-balance__button {
    margin-left: 160px;
  }
}
@media screen and (min-width: 768px) {
  .cashback-now-balance__content:has(.cashback-now-balance__promo-block_march)
    .cashback-now-balance__button {
    margin: 16px 0 0 0;
  }
  .cashback-now-balance__promo-block_march {
    left: 200px;
  }
  .cashback-now-balance__stats-promo-tooltip-image {
    vertical-align: text-bottom;
    padding-right: 8px;
  }
  .cashback-now-balance__stats-promo-span {
    background-image: url(bdb26c108692e62f34e7.svg);
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
    cursor: pointer;
    position: relative;
    align-self: flex-start;
    margin-top: 3px;
  }
  .cashback-now-balance__stats-promo-span:hover
    .cashback-now-balance__stats-promo-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 25px;
    left: -72px;
  }
  .cashback-now-balance__stats-promo-span
    .cashback-now-balance__stats-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;
  }
  .cashback-now-balance__stats-promo-tooltip:before {
    width: 8px;
    height: 8px;
    border-bottom-left-radius: 2px;
  }
}
@media screen and (min-width: 992px) {
  .cashback-now-balance {
    width: 37%;
  }
  .cashback-now-balance__promo-block_march {
    right: 10px;
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .cashback-now-balance__promo-block_march {
    right: 24px;
  }
}
.cashback-stats {
  display: flex;
  gap: 16px;
}
.cashback-block {
  background: #fff;
  border-radius: 6px;
  min-width: 41.27%;
}
.cashback-block:last-child {
  width: 100%;
  margin-left: 24px;
}
html[dir="rtl"] .cashback-block:last-child {
  margin-right: 24px;
  margin-left: 0;
}
.cashback-block:last-child .cashback-block--values {
  margin-top: 16px;
}
.cashback-block--title {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding-bottom: 8px;
  margin: 0;
  padding-top: 16px;
  padding-left: 24px;
}
html[dir="rtl"] .cashback-block--title {
  padding-right: 24px;
  padding-left: 0;
}
.cashback-block--values.cashback-block--values_with-diagram {
  gap: 16px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0;
}
.cashback-stats__user-stats {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
}
.cashback-block__content {
  padding: 16px 24px 24px 24px;
}
.cashback-block--values {
  display: flex;
  padding: 0 16px;
  margin-top: 24px;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 24px;
  align-items: center;
}
.cashback-block--values-column {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.cashback-block--subtitle {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.4px;
  color: #808086;
}
.cashback-block--value {
  font-style: normal;
  font-weight: normal;
  text-align: left;
  color: #2b2b37;
  width: 100%;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.4px;
}
html[dir="rtl"] .cashback-block--value {
  text-align: right;
}
.cashback-block--estimate {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #808086;
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.cashback-block__estimate_old-limit {
  position: relative;
  margin: 0 5px;
  color: #00c26f;
  font-weight: 500;
}
.cashback-block__estimate_new-limit {
  color: #00c26f;
  font-weight: 700;
}
.cashback-block__tooltip-date {
  font-weight: 700;
  font-size: 14px;
  color: #2b2b37;
}
.cashback-block__estimate_info-icon {
  cursor: pointer;
  margin-left: 8px;
  padding-top: 16px;
  margin-top: -16px;
  display: flex;
  align-items: center;
}
.cashback-block--circle {
  min-width: 106px;
}
.single-chart {
  width: 33%;
  justify-content: space-around;
}
.circular-chart {
  display: block;
  margin: 0;
  max-width: 100%;
  max-height: 250px;
}
.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}
.circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: square;
  animation: progress 1s ease-out forwards;
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.circular-chart.orange .circle {
  stroke: #00c26f;
}
.circular-chart.green .circle {
  stroke: #4cc790;
}
.circular-chart.blue .circle {
  stroke: #3c9ee5;
}
.percentage {
  fill: #2b2b37;
  font-size: 0.6em;
  text-anchor: middle;
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .cashback-block--circle {
    padding-right: 16px;
  }
  .circular-chart {
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  .cashback-stats__now-balance {
    background-color: #fff;
    width: 37%;
  }
  .cashback-stats__user-stats {
    width: 63%;
  }
}
@media screen and (max-width: 992px) {
  .cashback-stats {
    flex-direction: column;
  }
  .cashback-block:last-child {
    margin-top: 16px;
    margin-left: 0;
  }
  .cashback-block--values {
    align-items: inherit;
  }
  .cashback-block--subtitle,
  .cashback-block--value,
  .cashback-block--estimate {
    height: -moz-max-content;
    height: max-content;
  }
  .cashback-block:first-child
    .cashback-block--values
    .cashback-block--values-column {
    flex-direction: column;
    justify-content: center;
  }
  .cashback-block:last-child .cashback-block--values {
    flex-direction: column;
  }
  .cashback-block--values:last-child .cashback-block--values-column {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cashback-block--values:last-child .cashback-block--subtitle {
    width: 100%;
  }
  .cashback-block:last-child .cashback-block--estimate {
    align-self: center;
    margin-left: 8px;
  }
  .cashback-block:first-child .cashback-block--estimate {
    width: 100%;
  }
  .cashback-block--circle {
    min-width: 106px;
  }
}
@media screen and (min-width: 380px) {
  .cashback-block--value {
    font-size: 24px;
    line-height: 28px;
    width: -moz-max-content;
    width: max-content;
  }
}
.actions-with-balance {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 5px 10px 0 rgba(43, 43, 54, 0.0392156863);
  border-radius: 6px;
  padding-top: 16px;
}
.actions-with-balance__content {
  padding: 16px 16px 24px;
}
.actions-with-balance__title {
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  padding: 0 16px 8px 16px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}
.actions-with-balance__section {
  margin-top: 24px;
}
.actions-with-balance--input:focus {
  outline: none;
}
.actions-with-balance--input:focus ~ .actions-with-balance--field-label,
.actions-with-balance--input:valid ~ .actions-with-balance--field-label {
  top: 8px;
  left: 12px;
  font-size: 12px;
  line-height: 14px;
}
@media screen and (max-width: 992px) {
  .actions-with-balance--form-content {
    grid-gap: 0;
    position: relative;
  }
  .actions-with-balance--form-content div:last-child {
    width: auto;
  }
  .actions-with-balance {
    padding-top: 16px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .actions-with-balance--field,
  .actions-with-balance--input {
    width: 100%;
  }
}
.pie-chart:hover .svg-circle {
  display: none;
}
.pie-chart {
  cursor: auto;
}
.staking-calculator h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
}
.staking-card_field:not(:first-child) {
  margin-top: 24px;
}
.staking-calculator__subtitle {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #f4f4f5;
}
.amount-range-block--amount-title {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #9c9ca7;
}
.input-amount {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}
.staking-calculator__more-info a:hover {
  border-color: #3bee81;
}
.js-scroll-link:hover {
  color: #3bee81;
}
.amount-range-block .input-amount {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}
.total-title {
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
}
.total-value {
  font-style: normal;
  font-weight: normal;
  font-size: 31.7331px;
  line-height: 140%;
  text-align: center;
}
.now-text {
  font-style: normal;
  font-weight: normal;
  font-size: 31.7331px;
  line-height: 140%;
  text-align: center;
}
.staking-calculator__more-info a {
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.34px;
  color: #fff;
}
.staking-calculator__bottom:not(:first-child) {
  margin-top: 30px;
}
.staking-calculator__bottom {
  margin-top: 32px;
  align-items: baseline;
  justify-content: left;
  flex-direction: row;
  grid-gap: 25px;
}
.staking-calculator__button {
  width: 302px;
  height: 48px;
  left: 345px;
  top: 556px;
  background: #00c26f;
  border-radius: 8px;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.447368px;
  color: #fff;
}
.staking-calculator__button:hover {
  color: #fff;
}
.staking-calculator__more-info {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.34px;
  color: #fff;
}
.loader-container_centered {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .staking-calculator .elements__fields-range {
    width: 60%;
  }
  .staking-calculator__subtitle {
    width: 90%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1000px) {
  .staking-calculator__elements {
    grid-gap: 16px;
  }
  .staking-calculator .elements__fields-range {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .staking-calculator__bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .staking-calculator__subtitle:not(:last-child) {
    margin-bottom: 22px;
    margin-top: 14px;
  }
}
@media screen and (min-width: 992px) {
  .staking-calculator .field-total {
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    align-self: end;
  }
}
@media screen and (max-width: 768px) {
  .staking-calculator h1 {
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
    color: #fff;
  }
  .staking-calculator__subtitle {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #f4f4f5;
  }
  .staking-card_field:not(:first-child) {
    margin-top: 16px !important;
  }
  .staking-calculator__subtitle:not(:last-child) {
    margin-bottom: 16px;
  }
  .staking-calculator .field-total,
  .staking-calculator__bottom:not(:first-child) {
    margin-top: 24px;
  }
  .staking-calculator__bottom {
    grid-gap: 24px;
  }
}
.benefits-history--title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  padding: 16px 16px 8px;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
}
.benefits-history--table-background {
  background: #fff;
  border: none;
}
.benefits-history__table-box {
  min-height: auto;
  overflow-x: auto;
}
.benefits-history__table-box.benefits-history__table-box_full-size {
  min-height: 738px;
}
.benefits-history__table {
  width: 100%;
}
.benefits-history-table__pagination {
  font-size: 14px;
  color: #757575;
}
th.benefits-history__table-header {
  font-weight: normal;
  color: #9696a5;
  font-size: 14px;
  line-height: 20px;
  border: none;
  width: 21.25%;
  min-width: 50vw;
  padding: 16px 16px 12px 24px;
  text-align: left;
}
html[dir="rtl"] th.benefits-history__table-header {
  text-align: right;
}
th.benefits-history__table-header:last-child {
  width: 15%;
}
.MuiTableHead-root {
  border-bottom: 1px solid #e0e0e0;
}
.MuiTypography-body2,
.MuiTablePagination-input {
  font-size: 12px !important;
}
.MuiSvgIcon-root {
  font-size: 20px !important;
  color: #9e9e9e !important;
}
.MuiToolbar-root p:nth-child(2),
.MuiToolbar-root div:nth-child(3) {
  display: none !important;
}
.value-loader {
  animation-name: value-loader-rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.benefits-history__empty-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 304px;
  gap: 16px;
}
.benefits-history__empty-placeholder-image {
  width: 174px;
  height: 104px;
}
.benefits-history__empty-placeholder-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.34px;
  text-align: center;
  color: #9c9ca7;
}
@keyframes value-loader-rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 992px) {
  .benefits-history__table-box {
    min-height: 304px;
  }
  .benefits-history__table-box.benefits-history__table-box_full-size {
    min-height: 520px;
  }
}
@media screen and (min-width: 380px) {
  th.benefits-history__table-header {
    min-width: 33.3vw;
  }
}
@media screen and (min-width: 576px) {
  th.benefits-history__table-header {
    min-width: auto;
  }
}
.subscription-level {
  width: auto;
  margin-right: 10px;
  height: 584px;
  background: #fff;
  box-shadow: 0px 5px 10px rgba(43, 43, 54, 0.1);
  border-radius: 6px;
  color: #35354c;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.subscription-level:has(.subscription-level__header-promo) {
  overflow: hidden;
}
.subscription-level p {
  opacity: 1;
}
.subscription-level.subscription-level_dark {
  background: #2b2b37;
  color: #fff;
}
.subscription-level.subscription-level_dark .subscription-level__feature-text {
  color: #fff;
}
.subscription-level__header {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.subscription-level__header-image {
  width: 24px;
}
.subscription-level__header-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #35354c;
  margin: 0 0 0 4px;
  padding: 0;
}
html[dir="rtl"] .subscription-level__header-name {
  margin: 0 4px 0 0;
}
.subscription-level_dark .subscription-level__header-name {
  color: #fff;
}
.subscription-level__header-current {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #9696a5;
  margin: 2px 0 0 4px;
  padding: 0;
}
html[dir="rtl"] .subscription-level__header-current {
  margin: 2px 0 0 4px;
}
.subscription-level_dark .subscription-level__header-current {
  color: #9696a5;
}
.subscription-level__header-popular {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  background: linear-gradient(180deg, #00c26f 0%, #007a46 133.33%);
  border-radius: 4px;
  padding: 4px 10px;
  margin-left: auto;
  color: #fff;
}
html[dir="rtl"] .subscription-level__header-popular {
  margin-left: 0;
  margin-right: auto;
}
.subscription-level__price {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
}
.subscription-level__next-billing {
  display: flex;
  margin-bottom: 16px;
  margin-top: auto;
  gap: 4px;
}
.subscription-level__next-billing-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #dce2ea;
  margin: 0;
}
.subscription-level__next-billing-date {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #dce2ea;
  margin: 0;
}
.subscription-level__price-usd {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #323240;
}
.subscription-level__price-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #35354c;
  margin-left: 8px;
  margin-bottom: 9px;
}
html[dir="rtl"] .subscription-level__price-info {
  margin-left: 0;
  margin-right: 8px;
}
.subscription-level_dark .subscription-level__price-usd,
.subscription-level_dark .subscription-level__price-info {
  color: #fff;
}
.subscription-level__features {
  margin-top: 24px;
  color: #fff;
}
.subscription-level__features-header {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  color: #9696a5 !important;
}
.subscription-level__feature {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
}
.subscription-level__feature-icon {
  width: 16px;
  margin-top: 3px;
}
.subscription-level__feature-text {
  font-size: 16px;
  line-height: 24px;
  color: #35354c;
  font-weight: 300;
  margin: 0 0 0 8px;
  padding: 0;
}
.subscription-level__feature-text span {
  font-weight: 500;
}
.subscription-level__feature-text_new-line {
  display: block;
}
.subscription-level__feature-soon {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  background: #8080be;
  border-radius: 4px;
  padding: 0 8px;
  top: 4px;
  position: relative;
}
.subscription-level__button {
  background: #00c26f;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.45px;
  color: #fff;
  width: 100%;
  padding: 15px;
  margin-top: auto;
  border: none;
  outline: none;
}
.subscription-level__button:hover {
  opacity: 0.8;
}
.subscription-level__button_disabled {
  pointer-events: none;
  opacity: 0.6;
}
.subscription-level__action-text {
  margin-top: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #35354c;
}
.subscription-level__action-text button {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  margin: 0 0 0 4px;
  padding: 0;
}
.subscription-level__action-text button:hover {
  opacity: 0.8;
}
.subscription-level__button_custom {
  background: #fff;
  color: #00c26f;
  border: 1px solid #00c26f;
}
span.subscription-level__feature-text_new-line
  span.subscription-level__feature-text-soon {
  margin: 0 0 0 10px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 16px;
  background-color: #8080be;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}
.subscription-level__header-promo {
  position: absolute;
  top: 0;
  right: -55px;
  transform: rotate(30deg);
  background: linear-gradient(
    50.52deg,
    #c061ff -55.97%,
    #b35af9 -49.2%,
    #9b4eef -33.16%,
    #8945e8 -16.27%,
    #7f40e4 1.91%,
    #7c3fe3 23.65%,
    #7e43e4 33.52%,
    #8750e7 44.15%,
    #9665ec 55.15%,
    #aa83f3 66.39%,
    #c4aafc 77.71%,
    #cab3ff 79.98%,
    #b797f8 85.56%,
    #a47af1 92.86%,
    #9563eb 100.66%,
    #8a53e8 109.07%,
    #8349e5 118.52%,
    #8247e5 131.22%,
    #834be6 147.64%,
    #8857e9 164.88%,
    #906cee 182.49%,
    #9c8af5 200.37%,
    #aaaffe 218.3%,
    #abb1ff 218.85%
  );
  padding: 2px 28px 2px 0;
  width: 100%;
  background-size: 500% 100%;
  background-position: 0% 0%;
  animation: gradientAnimation 2s ease-out infinite;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: end;
}
.subscription-level__price-span_promo {
  font-size: 24px;
  line-height: 47px;
  font-weight: 500;
  color: #434554;
  position: relative;
  margin-right: 8px;
}
.subscription-level__price-span_promo::before {
  content: "";
  position: absolute;
  display: block;
  top: 22px;
  left: -2px;
  height: 2px;
  width: 60px;
  background-color: #834ae6;
  transform: rotate(-19.33deg);
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% -20%;
  }
}
@media screen and (min-width: 340px) {
  .subscription-level {
    width: 301px;
    min-width: 301px;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .subscription-level__header-promo {
    right: -58px;
    transform: rotate(25deg);
    padding: 2px 38px 2px 0;
  }
}
.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;
}
.subscription-levels {
  margin-top: 16px;
  width: 100%;
  justify-content: space-between;
}
.subscription-levels__wrapper {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0;
}
.subscription-levels__wrapper::-webkit-scrollbar {
  display: none;
}
.subscription-level__wrapper {
  width: 100%;
  min-width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: calc((100% - 320px) * -1);
}
.subscription-levels .slick-initialized .slick-slide {
  display: flex;
  justify-content: center;
}
.subscription-levels .slick-slider-custom__dots_lines {
  gap: 8px;
  width: 85%;
  margin: auto;
  height: 6px;
  padding: 0;
  padding-top: 8px;
  padding-right: 12px;
}
@media screen and (min-width: 431px) {
  .subscription-levels {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .subscription-levels__wrapper {
    width: 100%;
    justify-content: space-between;
    padding: 0 0 8px;
    overflow: visible;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .subscription-level__wrapper {
    width: 100%;
    margin: 0;
  }
  .subscription-levels {
    display: flex;
  }
  .subscription-level {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .subscription-levels__wrapper {
    overflow-x: hidden;
    padding-bottom: 0;
  }
}
.subscription-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.subscription-modal__icon {
  margin-top: 20px;
  height: 90px;
  width: auto;
}
.subscription-modal__header {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04px;
  color: #00c26f;
  margin: 24px 0 0 0;
  padding: 0;
}
.subscription-modal__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04px;
  color: #2b2b36;
  margin: 8px 0 0 0;
  padding: 0;
}
.subscription-modal__deposit-error {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  border-radius: 4px;
  padding: 5px 16px;
  letter-spacing: 0.04px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0;
  min-height: 24px;
}
.subscription-modal__deposit-error_active {
  background-color: #fcedba;
}
.subscription-modal__button {
  min-height: 50px;
  margin-top: 24px;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.4px;
  color: #fff;
  width: 170px;
  background: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  outline: none;
}
.subscription-modal__button:hover {
  opacity: 0.8;
}
.subscription-modal__buttons {
  display: flex;
  flex-direction: column;
}
.subscription-modal__button_white {
  background-color: #fff;
  color: #00c26f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscription-modal__deposit-modal button[aria-label="close"] {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  top: 16px;
  right: 16px;
}
.subscription-modal__deposit-modal button[aria-label="close"] svg {
  fill: #cbcacf;
}
@media (min-width: 768px) {
  .subscription-modal__deposit-modal button[aria-label="close"] {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-radius: 0;
    top: 12px;
    right: 12px;
  }
}
@media screen and (min-width: 431px) {
  .subscription-modal__buttons {
    flex-direction: row;
    gap: 20px;
  }
}
.benefits-history__status {
  border-radius: 4px;
  padding: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  letter-spacing: 0.1px;
}
.benefits-history__status_green {
  background: #e6f9f1;
  color: #00c26f;
}
.benefits-history__status_orange {
  background: #f9f0e7;
  color: #f39321;
}
.benefits-history__status_gray {
  background: #f6f6f7;
  color: #a4a3aa;
}
.benefits-history-table__tr_deposit {
  cursor: pointer;
}
.benefits-history-table__tr_desktop:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.benefits-history-table__status {
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  letter-spacing: 0.1px;
  color: #a4a3aa;
  background: #f6f6f7;
}
.benefits-history-table__status_active {
  background: #e6f9f1;
  color: #00c26f;
}
.benefits-history-table__tr {
  border-bottom: 1px solid #e5e5e9;
}
.benefits-history-table__td {
  font-weight: 400;
  color: #2b2b37;
  font-size: 16px;
  text-transform: capitalize;
  padding: 11px 24px;
  line-height: 24px;
}
.benefits-history-table__td.benefits-history-table__td_date {
  color: #9696a5;
}
.benefits-history-table__td.benefits-history-table__td_status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.benefits-history-table__tooltip {
  width: 208px;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  font-weight: 300;
  padding: 10px 12px;
  margin-bottom: 10px;
  margin-left: 15px;
}
.benefits-history-table__tooltip::before {
  left: auto;
  right: 19px;
}
.benefits-history-table__tooltip .simple-tooltip__title {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  color: #2b2b37;
}
@media (min-width: 768px) {
  .benefits-history-table__tooltip {
    margin-left: 35px;
  }
  .benefits-history-table__tooltip::before {
    right: 38px;
  }
  .benefits-history-table__popper-tooltip {
    margin-right: 10px;
  }
}
@media (min-width: 1400px) {
  .benefits-history-table__tooltip {
    margin-left: 0;
  }
  .benefits-history-table__tooltip::before {
    left: 0;
    right: 0;
  }
}
.payout-section {
  position: relative;
  display: flex;
  align-items: center;
}
.payout-section__description {
  width: 100%;
  max-width: 415px;
  padding-right: 84px;
  margin-bottom: 24px;
}
.payout-section__description p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin: 0;
  opacity: 1;
}
.payout-section__description p + p {
  margin-top: 15px;
}
.payout-section__description .payout-section__description_bold {
  font-weight: 500;
}
.payout-section__description.payout-section__description_warning {
  padding: 8px 12px;
  background-color: #fdf4d8;
  border: 1px solid #f4c73b;
  border-radius: 6px;
}
.payout-section__field {
  width: 100%;
  margin-top: 8px;
}
.payout-section__field:first-child {
  margin-top: 0;
}
.payout-section__image {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
}
.payout-section__text-helper {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  padding: 8px 0 16px 8px;
}
.payout-section__button-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.payout-section__button {
  width: 140px;
  margin: 0;
}
.payout-section__button_disabled {
  opacity: 0.4;
}
.payout-section__success {
  font-size: 14px;
  line-height: 18px;
  color: #00c26f;
  margin-left: 24px;
}
.payout-section__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;
  display: flex;
  margin-top: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .payout-section__description {
    max-width: 580px;
    padding-right: 84px;
  }
  .payout-section__form {
    max-width: 360px;
  }
  .payout-section__image {
    display: block;
    width: 240px;
    position: relative;
    top: auto;
    right: auto;
  }
}
@media screen and (min-width: 992px) {
  .payout-section__description {
    max-width: 620px;
    padding-right: 0;
  }
}
.benefits-withdraw__modal .clear-modal__paper-sm,
.benefits-withdraw__modal .clear-modal__paper {
  max-width: initial;
  width: auto;
}
.withdraw-modal {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.withdraw-modal__header {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  height: 56px;
  width: 100%;
}
.withdraw-modal__header-text {
  margin: 0;
  padding: 0;
}
.currency-sup.withdraw-modal__header-network {
  margin-left: 8px;
  font-size: 8px;
  line-height: 8px;
  height: 12px;
  top: -1px;
  padding: 2px 4px;
  display: flex;
  align-items: center;
}
.currency-sup.withdraw-modal__header-network span {
  font-size: 8px;
  line-height: 8px;
  height: 7px;
}
.withdraw-modal__content {
  padding: 24px 16px 48px 16px;
  width: 100%;
}
.withdraw-modal__content-success {
  min-width: 290px;
}
.withdraw-modal__confirm-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #2b2b37;
  margin: 0;
  padding: 0;
}
.withdraw-modal__code-input {
  margin-top: 24px;
}
.withdraw-modal__secure-image {
  margin: 24px auto 0 auto;
  display: block;
  height: 82px;
}
.withdraw-modal__secure-title {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.4px;
  margin: 24px 0 0 0;
  padding: 0;
  max-width: 400px;
}
.withdraw-modal__secure-description {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 12px 0 0 0;
  padding: 0;
  max-width: 400px;
}
.withdraw-modal__button {
  width: 100%;
  outline: none;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
  border-radius: 4px;
  background: #00c26f;
  padding: 13px 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .withdraw-modal__content {
    padding: 24px 64px 48px 64px;
  }
}
.deposit-finished {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px 16px 42px;
}
.deposit-finished__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.deposit-finished__title {
  font-size: 32px;
  font-weight: 600;
  color: #00c26f;
  line-height: 140%;
  letter-spacing: 0.3px;
  margin: 0;
}
.deposit-finished__description {
  max-width: 90%;
  font-size: 16px;
  font-weight: 400;
  color: #2b2b36;
  line-height: 140%;
  letter-spacing: 0.3px;
  margin: 0;
  text-align: center;
  opacity: 1;
}
.deposit-finished__additional-info {
  max-width: 90%;
  font-size: 16px;
  font-weight: 400;
  color: #2b2b36;
  line-height: 140%;
  letter-spacing: 0.3px;
  margin: 0;
  text-align: center;
  opacity: 1;
}
.deposit-finished__button {
  font-size: 16px;
  font-weight: 900;
  background-color: #00c26f;
  letter-spacing: 0.45px;
  color: #fff;
  margin: 24px 0 0;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
}
.deposit-finished__currencies {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 2px 10px rgba(43, 43, 54, 0.12);
  border-radius: 6px;
  text-align: left;
  font-size: 22px;
  margin: 16px auto 0;
}
.deposit-finished__currencies-amount {
  padding: 15px;
  display: flex;
  align-items: center;
}
.deposit-finished__currencies-amount-icon {
  color: #00c26f;
}
.deposit-finished__currencies-send {
  color: rgba(43, 43, 54, 0.41);
}
.deposit-finished__currencies-receive {
  color: #00c26f;
}
.deposit-finished__currencies-amount_bottom {
  position: relative;
  border-top: 1px solid #e7e7e7;
}
.deposit-finished__currencies-amount-btn {
  position: absolute;
  right: 28px;
  outline: none;
  border: 1px solid #e7e7e7;
  top: -13px;
  height: 22px;
  width: 22px;
  justify-content: center;
  background: #fff;
  align-items: center;
  display: flex;
  border-radius: 50%;
}
.deposit-finished__currencies-amount-btn:hover {
  background: #2b2b36;
}
.deposit-finished__promocode {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 12px;
}
.deposit-finished__promocode .get-promocode__header {
  color: #2b2b36;
  margin: 12px 0;
}
@media all and (min-width: 992px) {
  .deposit-finished__container {
    max-width: 60%;
  }
}
.proof-identity-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.proof-identity-modal__title {
  position: absolute;
  width: 100%;
  top: 0;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  padding: 17px 13px 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  color: #2b2b37;
}
.proof-identity-modal__image {
  width: 190px;
  height: 110px;
  margin-top: 36px;
  margin-bottom: 0;
}
.proof-identity-modal__header {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04px;
  color: #00c26f;
  margin: 24px 0 0 0;
  padding: 0;
}
.proof-identity-modal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  letter-spacing: 0.4px;
  color: #2b2b36;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 0;
}
.proof-identity-modal__advantages-list {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.proof-identity-modal__advantage-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-identity-modal__advantage-icon {
  width: 16px;
  height: 16px;
}
.proof-identity-modal__advantage-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.proof-identity-modal__advantage-text_bold {
  font-weight: 500;
}
.proof-identity-modal__button {
  margin-top: 24px;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  width: 100%;
  padding: 13px 0;
  background: #00c26f;
  border-radius: 4px;
  border: none;
  outline: none;
}
.proof-identity-modal__button:hover {
  opacity: 0.8;
}
.proof-identity-modal__footer {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.proof-identity-modal__footer-icon {
  width: 16px;
  height: 16px;
  bottom: 12px;
  left: 7%;
  position: relative;
}
.proof-identity-modal__footer-text {
  margin: 0;
  color: #9c9ca7;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 321px) {
  .proof-identity-modal__footer-icon {
    bottom: 12px;
    left: 2%;
  }
}
@media screen and (min-width: 390px) {
  .proof-identity-modal__footer-icon {
    left: 4%;
  }
}
@media screen and (min-width: 390px) {
  .proof-identity-modal__footer-icon {
    left: 4%;
  }
  .proof-identity-modal__image {
    width: 190px;
    height: 200px;
    margin-top: 36px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 395px) {
  .proof-identity-modal__footer-icon {
    left: 0;
  }
}
@media screen and (min-width: 404px) {
  .proof-identity-modal__footer-icon {
    left: 2%;
  }
}
@media screen and (min-width: 425px) {
  .proof-identity-modal__footer-icon {
    left: 3%;
  }
}
@media screen and (min-width: 435px) {
  .proof-identity-modal__footer-icon {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .proof-identity-modal__title {
    padding: 17px;
  }
  .proof-identity-modal__footer-icon {
    display: block;
  }
  .proof-identity-modal__button {
    margin-top: 32px;
  }
  .proof-identity-modal__description {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .proof-identity-modal__advantage-text {
    font-size: 20px;
    line-height: 28px;
  }
  .proof-identity-modal__footer-text {
    text-align: left;
  }
  .proof-identity-modal__image {
    margin: 24px 0;
  }
  .proof-identity-modal__advantages-list {
    gap: 16px;
  }
}
.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;
  }
}
.text-with-tooltip {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: default;
}
.text-with-tooltip:hover .text-with-tooltip__tooltip {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}
.text-with-tooltip__tooltip {
  position: absolute;
  bottom: 25px;
  left: -77px;
  z-index: 1;
  width: 164px;
  font-weight: 400;
  padding: 9px 5px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(53, 53, 76, 0.2);
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity, ease 0.2s;
}
@media screen and (min-width: 768px) {
  .text-with-tooltip__tooltip {
    left: -76px;
  }
}
.one-tap-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #2b2b37;
  background-color: #fff;
  border: 1px solid #eef1f2;
  border-radius: 8px;
  padding: 8px 16px;
}
.one-tap-button:focus,
.one-tap-button:hover {
  color: #2b2b37;
}
.one-tap-button__icon-left {
  flex-shrink: 0;
}
.one-tap-button__text {
  flex-grow: 1;
  text-align: center;
  padding: 0 4px;
}
.one-tap-button__icon-right {
  flex-shrink: 0;
}
.one-tap-button__icon-right svg {
  fill: #2b2b37;
}
.one-tap-button_dark {
  background-color: #2b2b37;
  color: #fff;
}
.one-tap-button_dark .one-tap-button__icon-right svg {
  fill: #888889;
}
@media screen and (min-width: 375px) {
  .one-tap-button {
    font-size: 16px;
  }
}
.slick-slider-button {
  position: relative;
  display: block;
  width: 80px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  padding: 0;
}
.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;
}
.cashback-page {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}
.pro-page__suspense-wrapper .cashback-page__maintenance {
  margin: 100px auto auto;
}
.staking-card {
  box-sizing: border-box;
}
.staking-block {
  padding: 32px;
  background: #2b2b36;
  box-shadow: 0 5px 10px rgba(43, 43, 54, 0.1);
  border-radius: 6px;
  min-height: 448px;
  width: 100%;
}
.staking-block_loading {
  background: none;
}
.staking-block__loader-container {
  min-height: 464px;
}
.staking-loader {
  min-height: 300px;
}
.staking-loader svg {
  position: relative;
  width: 100%;
  top: 50px;
}
.cashback-row {
  margin-top: 16px;
  margin-bottom: 16px;
}
.cashback-page__benefits-calculator {
  padding: 32px;
  background: #2b2b36;
  box-shadow: 0 5px 10px rgba(43, 43, 54, 0.1);
  border-radius: 6px;
  min-height: 448px;
  width: 100%;
}
.cashback-page__benefits-calculator_no-balance {
  margin: 0;
}
.loyalty-faq-row {
  margin: 0 0 40px 0;
}
.benefits-history-row {
  margin-top: 16px;
  margin-bottom: 16px;
}
.benefits-history-row .benefits-history--table-background {
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
  border-radius: 8px;
}
.cashback-page__header-tabs {
  margin-top: 25px;
  min-height: 480px;
}
.benefits-faq-row {
  margin-top: 40px;
}
.benefits-faq-row__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #bfbfc3;
  margin: 0;
  padding: 0;
  max-width: 300px;
}
.benefits-faq-row .crypto-loan-faq-chapter {
  margin-top: 24px;
}
.benefits-faq-row .crypto-loan-faq-chapter__questions {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .cashback-page__benefits-calculator_no-balance {
    margin-top: 0;
  }
  .cashback-page__benefits-calculator {
    margin-bottom: 24px;
  }
  .benefits-faq-row {
    margin-top: 48px;
    padding: 0;
  }
  .cashback-page__header-tabs {
    margin-top: 0px;
  }
  .benefits-faq-row__title {
    max-width: none;
  }
  .cashback-row {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .loyalty-faq-row {
    margin: 0 16px 40px 16px;
  }
  .profile-menu {
    width: 100%;
  }
  .dashboard-navigation-tooltip svg {
    margin-left: 10px !important;
  }
  .dashboard-navigation-list .dashboard-navigation__list {
    max-height: 100%;
  }
  .header {
    margin-bottom: 0;
  }
  .staking-block {
    border-radius: 0;
    padding: 24px 16px;
  }
  .makeStyles-section-1 {
    margin-top: 0;
  }
}
.two-fa-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 484px;
  height: 100%;
}
.two-fa-modal--heading {
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.0736842px;
  margin-bottom: 24px;
}
.two-fa-modal__image {
  width: 137px;
  margin: 0 auto;
}
.two-fa-modal__copy {
  padding: 2px 8px;
  background: #eaeaeb;
  border-radius: 4px;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.1px;
  color: #000;
  cursor: copy;
  border: none;
  transition: all 0.1s ease-in-out;
}
.two-fa-modal__copy_copied {
  background: #00c26f;
}
.two-fa-modal--description {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.1px;
  color: #000;
  margin-top: 8px;
  margin-bottom: 24px;
}
.two-fa-modal--description span {
  display: block;
}
.two-fa-modal--description.disabled-form {
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 24px;
}
.two-fa-modal--description-bold {
  font-weight: 500;
}
.two-fa-modal--input {
  width: 100%;
}
.two-fa-modal__input_margin {
  margin-bottom: 25px;
}
.two-fa-modal--button {
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.447368px;
  color: #fff;
  padding: 15px 0;
  width: 100%;
  background: #00c26f;
  border-radius: 6px;
  justify-content: center;
  border: none;
  margin-top: auto;
}
.two-fa-modal--button:disabled {
  background: #eee;
}
.title_danger {
  color: #eeb23d;
}
.two-fa-modal__email-error .authorization-section__icon {
  margin-top: 56px;
}
.dashboard-authenticator__supported-apps {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin-left: -10px;
}
.dashboard-authenticator__supported-apps a {
  width: auto;
}
@media screen and (min-width: 375px) {
  .dashboard-authenticator__supported-apps {
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
  }
}
.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;
  }
}
.marketplace-section {
  display: block;
}
.marketplace-section__text {
  font-size: 14px;
  line-height: 20px;
  color: #2b2b37;
  font-weight: 300;
  letter-spacing: 0.34px;
}
.marketplace-section__bank-card {
  margin-top: 16px;
}
.friendly-bank-card {
  perspective: 700px;
}
.friendly-bank-card_show-back-side .friendly-bank-card__box {
  transform: rotateY(-180deg);
}
.friendly-bank-card_ordered {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.friendly-bank-card_ordered:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: hsla(0, 0%, 100%, 0.6);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
.friendly-bank-card__ordered-text {
  position: absolute;
  top: 27px;
  right: -35px;
  z-index: 2;
  width: 150px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  text-align: center;
  background-color: #00c26f;
  padding: 3px 0;
  transform: rotate(45deg);
}
.friendly-bank-card__box {
  position: relative;
  border: 1px solid #e2e7ed;
  border-radius: 8px;
  padding: 16px;
  transform-style: preserve-3d;
  transition: transform ease 0.6s;
}
.friendly-bank-card__front-side,
.friendly-bank-card__back-side {
  backface-visibility: hidden;
  background-color: #fff;
}
.friendly-bank-card__front-side {
  position: absolute;
  top: 16px;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
}
.friendly-bank-card__back-side {
  transform: rotateY(-180deg);
}
.friendly-bank-card__content {
  max-height: calc(100% - 56px);
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  overflow: hidden;
}
.friendly-bank-card__content p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  opacity: 1;
  margin: 10px 0 0;
}
.friendly-bank-card__back-side p:first-child {
  margin-top: 0;
}
.friendly-bank-card__image {
  margin-bottom: 16px;
}
.friendly-bank-card__image img {
  display: block;
}
.friendly-bank-card__title {
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  font-weight: 500;
}
.friendly-bank-card__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b37;
  letter-spacing: 0.34px;
  margin-top: 8px;
}
.friendly-bank-card__price {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  margin-top: 16px;
}
.friendly-bank-card__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
}
.friendly-bank-card__button {
  width: auto;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 16px;
  margin: 0 0 0 10px;
}
.friendly-bank-card__button:first-child {
  margin-left: 0;
}
.friendly-bank-card__button-learn-more {
  background-color: #fff;
  color: #2b2b37;
  border-color: #e0e0e0;
  transition: border-color ease 0.3s;
}
.friendly-bank-card__button-learn-more:hover {
  background-color: #fff;
  color: #2b2b37;
  border-color: #00c26f;
}
.friendly-bank-card__back-side-buttons {
  margin-top: auto;
  padding-top: 16px;
}
.friendly-bank-card__close {
  position: absolute;
  z-index: 1;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  padding: 9px;
  cursor: pointer;
}
.friendly-bank-card__close:hover .friendly-bank-card__close-line:first-child {
  animation-name: friendly-bank-card-first-line-rotate;
  animation-duration: 1s;
}
.friendly-bank-card__close:hover .friendly-bank-card__close-line:last-child {
  animation-name: friendly-bank-card-last-line-rotate;
  animation-duration: 1s;
}
.friendly-bank-card__close-line {
  position: absolute;
  top: 15px;
  display: block;
  width: calc(100% - 18px);
  height: 1px;
  background-color: #97969f;
}
.friendly-bank-card__close-line:first-child {
  transform: rotate(45deg);
}
.friendly-bank-card__close-line:last-child {
  transform: rotate(-45deg);
}
@media screen and (min-width: 374px) {
  .friendly-bank-card__front-side {
    position: static;
    display: block;
  }
  .friendly-bank-card__buttons {
    margin-top: 16px;
  }
  .friendly-bank-card__button {
    padding: 10px 24px;
    margin-left: 16px;
  }
  .friendly-bank-card__back-side {
    position: absolute;
    top: 16px;
    left: 16px;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    padding-right: 40px;
  }
  .friendly-bank-card__close {
    top: 0;
    right: 0;
  }
}
@keyframes friendly-bank-card-first-line-rotate {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(65deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes friendly-bank-card-last-line-rotate {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-65deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
.friendly-bank-card-form {
  display: block;
  width: 100%;
}
.friendly-bank-card-form__title {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.4px;
  color: #2b2b37;
}
.friendly-bank-card-form__title-group {
  font-size: 16px;
  line-height: 22px;
  color: #2b2b37;
  margin-top: 24px;
}
.friendly-bank-card-form__group {
  margin-top: 16px;
}
.friendly-bank-card-form__field_new {
  position: relative;
  margin-top: 16px;
}
.friendly-bank-card-form__field_new:first-child {
  margin-top: 0;
}
.friendly-bank-card-form__field_new .new-input {
  font-size: 16px;
  line-height: 22px;
  color: #808086;
  padding: 0 12px;
}
.friendly-bank-card-form__field_new .custom-select__selector,
.friendly-bank-card-form__field_new .custom-select__option {
  color: #808086;
}
.friendly-bank-card-form__field_new .new-warning {
  top: -7px;
}
.friendly-bank-card-form__field-description {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #808086;
  margin-top: 8px;
}
.friendly-bank-card-form__button {
  max-width: 210px;
  margin-top: 24px;
}
.friendly-bank-card-form__error-text {
  font-size: 12px;
  line-height: 14px;
  color: #f39321;
  text-align: center;
  margin-top: 8px;
}
.custom-select {
  display: block;
  width: 100%;
}
.custom-select__header {
  font-size: 14px;
  line-height: 20px;
  color: #808086;
  margin-bottom: 4px;
  cursor: default;
}
.custom-select__wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}
.custom-select__selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 22px;
  color: #2b2b37;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 16px 0 12px;
}
.custom-select__selector_active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-select__selector_active .custom-select__selector-arrow {
  transform: rotate(180deg);
}
.custom-select__selector_error {
  border-color: #fcedba;
}
.custom-select__selector-placeholder {
  color: #808086;
}
.custom-select__selector-arrow {
  transition: transform ease 0.3s;
}
.custom-select__selector-arrow svg {
  display: block;
}
.custom-select__content {
  width: 100%;
  max-height: 300px;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 12px 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow-y: auto;
}
.custom-select__option {
  font-size: 16px;
  line-height: 22px;
  color: #2b2b37;
  background-color: #fff;
  padding: 12px;
}
.custom-select__option:hover {
  background-color: #f6f6f6;
}
.block-timer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #2b2b37;
  padding: 5px;
}
.block-timer__wrapper {
  display: flex;
  font-size: 10px;
  z-index: 4;
}
.block-timer__timeline {
  background-color: #e5e5e9;
  border-radius: 8px;
  width: 100%;
  height: 4px;
  position: relative;
  margin-top: 2px;
}
.timeline__background {
  position: absolute;
  left: 0;
  background-color: #00c26f;
  height: 100%;
  z-index: 2;
  width: 0;
  border-radius: 8px;
}
.block-timer__time {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b36;
  margin-right: 8px;
  z-index: 4;
}
.block-timer__label {
  align-self: flex-end;
  font-size: 12px;
  line-height: 17px;
  color: #2b2b36;
}
.tx-status-stepper {
  display: block;
}
@media screen and (min-width: 768px) {
  .tx-status-stepper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.tx-step-item {
  position: relative;
  width: 155px;
  height: 50px;
  margin: 0 auto;
}
.tx-step-item__success {
  display: block;
  width: 12px;
  height: 12px;
}
.tx-step-item__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tx-step-item__progress-wrap {
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tx-step-item__progress_inactive {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #eef1f2;
}
.tx-step-item__progress_active {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00c26f;
}
.tx-step-item__text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  color: #a4a3aa;
  margin-left: 12px;
}
.tx-step-item__text_active {
  font-size: 17px;
}
.tx-step-item__progress-line {
  width: 2px;
  height: 10px;
  position: absolute;
  top: 45px;
  left: 13px;
  background-color: #eef1f2;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .tx-step-item {
    width: 25%;
  }
  .tx-step-item__content {
    display: block;
    text-align: center;
  }
  .tx-step-item__progress-wrap {
    width: 32px;
    height: 32px;
    margin: 0 auto;
  }
  .tx-step-item__text {
    margin-left: 0;
    margin-top: 16px;
    white-space: nowrap;
  }
  .tx-step-item__text_active {
    font-size: 18px;
  }
  .tx-step-item__progress-line {
    width: calc(100% - 39px);
    height: 3px;
    top: 15px;
    left: 65%;
  }
}
.radio-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.5px solid #e2e7ed;
  border-radius: 4px;
  box-sizing: border-box;
  height: 40px;
  padding: 4px;
}
.radio-buttons__item {
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a4a3aa;
  background: none;
  width: calc(50% - 2.5px);
  height: 100%;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.radio-buttons__item:hover {
  opacity: 0.8;
}
.radio-buttons__item_active {
  background: #6a6a7f;
  color: #fff;
}
.radio-buttons.radio-buttons_light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 0;
  height: 40px;
  padding: 0;
  margin-bottom: 16px;
  width: 100%;
}
.radio-buttons_light .radio-buttons__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.15px;
  color: #2b2b36;
  border-radius: 0;
  border-bottom: 3px solid #d3d7da;
  width: 50%;
  padding: 0;
}
.radio-buttons_light .radio-buttons__item.radio-buttons__item_active {
  background: none;
  color: #2b2b36;
  border-bottom: 3px solid #00c26f;
}
.button-tabs {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.button-tabs_switching {
  overflow: hidden;
}
.button-tabs_animated .button-tabs__tabs {
  transition: all 0.3s ease-in-out;
}
.button-tabs__buttons {
  margin-bottom: 4px;
}
.button-tabs__tabs {
  display: flex;
  flex-direction: column;
}
.button-tabs__tabs_fixed-width {
  flex-direction: row;
  height: auto;
}
.tabs__item {
  display: none;
  justify-content: center;
  align-items: flex-start;
}
.tabs__item.tabs__item_active,
.button-tabs_switching .tabs__item {
  display: flex;
}
@media screen and (min-width: 992px) {
  .button-tabs__buttons.radio-buttons_light {
    width: 348px;
    margin-bottom: 23px;
  }
}
.verification {
  display: block;
  width: 100%;
}
.verification__title {
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  color: #2b2b36;
}
.verification__text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000;
  margin-top: 16px;
}
.verification__button {
  margin-top: 16px;
}
.deposit-time-up {
  text-align: center;
}
.deposit-time-up__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #2b2b37;
}
.deposit-time-up__text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #2b2b37;
  margin-top: 8px;
}
.deposit-time-up__image {
  margin-top: 24px;
}
.deposit-time-up__image img {
  display: block;
  margin: 0 auto;
}
.deposit-time-up__button {
  width: 117px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .deposit-time-up__image {
    margin-top: 16px;
  }
  .deposit-time-up__button {
    margin-top: 41px;
  }
}
.aml-check-history__status {
  border-radius: 4px;
  padding: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  letter-spacing: 0.1px;
}
.aml-check-history__status_green {
  background: #e6f9f1;
  color: #00c26f;
}
.aml-check-history__status_orange {
  background: #f9f0e7;
  color: #f39321;
}
.aml-check-history__status_dark_orange {
  background: #fff8f2;
  color: #ff6b00;
}
.aml-check-history__status_red {
  background: #fff2f1;
  color: #f42841;
}
.aml-check-history-table__row_deposit {
  cursor: pointer;
}
: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;
}
.aml-check-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aml-check-modal__header {
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #00c26f;
  padding: 0;
  margin: 0;
}
.aml-check-modal__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #35354c;
  padding: 0;
  margin: 8px 0 0 0;
}
.aml-check-modal__error {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.aml-check-modal__error-icon {
  margin: 12px 0 0 0;
  padding: 0;
}
.aml-check-modal__error-title {
  margin: 24px 0 0 0;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.6px;
  color: #3d3d58;
}
.aml-check-modal__error-description {
  margin: 8px 0 0 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.6px;
  color: #2b2b36;
}
.aml-check-modal__error-button {
  margin: 24px 0 0 0;
  max-width: 180px;
}
.aml-check-modal__error-link {
  margin: 39px 0 0 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.447368px;
  color: #00c26f;
}
.aml-check-modal__result-wrapper {
  border: 1px solid #e5e5e9;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  margin-top: 20px;
}
.aml-check-modal__wallet {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.4px;
  color: #808086;
  padding: 0;
  margin: 0;
}
.aml-check-modal__address {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b37;
  padding: 0;
  margin: 8px 0 0 0;
  word-wrap: break-word;
}
.aml-check-modal__result {
  background: #fff2f1;
  border: 1px solid #f42841;
  border-radius: 6px;
  padding: 6px 12px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
.aml-check-modal__result-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #2b2b37;
  padding: 0;
  margin: 0;
}
.aml-check-modal__result-status {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #04a972;
  padding: 0;
  margin: 0;
}
.aml-check-history--title {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  padding: 16px 16px 8px;
}
.aml-check-history--table-background {
  margin-top: 24px;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px !important;
  border: none !important;
}
.aml-check-history__empty-placeholder {
  min-height: 35vh;
}
.aml-check-history__table-box {
  min-height: auto;
  overflow-x: auto;
}
.aml-check-history-table__pagination {
  font-size: 14px;
  color: #757575;
}
th.aml-check-history__table-header {
  font-weight: normal;
  color: #9d9d9d;
  font-size: 12px;
  border: none;
  width: 21.25%;
  min-width: 50vw;
}
html[dir="rtl"] th.aml-check-history__table-header {
  text-align: right;
}
th.aml-check-history__table-header:last-child {
  width: 15%;
}
.aml-check-history__table-header.aml-check-history__table-header_empty {
  min-width: auto;
}
.MuiTableHead-root {
  border-bottom: 1px solid #e0e0e0;
}
.MuiTypography-body2,
.MuiTablePagination-input {
  font-size: 12px !important;
}
.MuiSvgIcon-root {
  font-size: 20px !important;
  color: #9e9e9e !important;
}
.MuiToolbar-root p:nth-child(2),
.MuiToolbar-root div:nth-child(3) {
  display: none !important;
}
.value-loader {
  animation-name: value-loader-rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes value-loader-rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 380px) {
  th.aml-check-history__table-header {
    min-width: 33.3vw;
  }
}
@media screen and (min-width: 576px) {
  th.aml-check-history__table-header {
    min-width: auto;
  }
}
@media screen and (min-width: 992px) {
  .aml-check-history__table-box {
    min-height: 580px;
  }
  .aml-check-history__empty-placeholder {
    min-height: 540px;
  }
}
.currencies-group__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.currencies-group__item:hover {
  background: #fafafd;
}
.currencies-group__item_dark.currencies-group__item:hover {
  background: #5d5a60;
}
.currencies-group__item-image {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
html[dir="rtl"] .currencies-group__item-image {
  margin-right: 0;
  margin-left: 12px;
}
.currencies-group__item-image img {
  width: 100%;
}
.currencies-group__item-content {
  border-bottom: 1px solid #e9e7ee;
  padding: 8px 0;
  flex-grow: 1;
}
.currencies-group__item-ticker {
  display: flex;
  align-items: center;
}
.currencies-group__item-ticker-text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #000;
  text-transform: uppercase;
}
.currencies-group__item-ticker-network {
  margin-left: 4px;
}
.currencies-group__item-name {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #9696a5;
}
.selector-currency {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.selector-currency_horizontal {
  flex-direction: row;
}
.selector-currency_horizontal .selector-currency__header {
  max-width: 240px;
  margin-right: 24px;
  flex-grow: 1;
}
.selector-currency__header-text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
}
.selector-currency__header-search {
  background: #fafafd;
  border: 1px solid #e9e7ee;
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 8px;
  margin-bottom: 3px;
  width: 100%;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.selector-currency__search-icon {
  margin-right: 8px;
}
html[dir="rtl"] .selector-currency__search-icon {
  margin-right: 0;
  margin-left: 8px;
}
.selector-currency__search-input {
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000;
  width: 100%;
  padding: 0;
  margin: 0;
}
.selector-currency__search-input::-moz-placeholder {
  color: #9696a5;
  font-size: 14px;
}
.selector-currency__search-input::placeholder {
  color: #9696a5;
  font-size: 14px;
}
.selector-currency_horizontal .selector-currency__list {
  display: block;
  flex-grow: 3;
}
.selector-currency__list {
  display: contents;
}
.selector-currency__list-item {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: scroll;
}
.currency-list__not-found {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #49496c;
  margin-top: 8px;
}
.custom-selector {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.custom-selector__label {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #2b2b36;
  margin-bottom: 8px;
}
.custom-selector__wrapper {
  display: flex;
  position: relative;
  border: 1px solid #e9e7ee;
  border-radius: 6px;
  height: 48px;
  width: 100%;
}
.custom-selector__button-selector {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  outline: none;
}
.custom-selector__label-selector {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
  text-transform: uppercase;
  padding-left: 16px;
  cursor: pointer;
}
html[dir="rtl"] .custom-selector__label-selector {
  padding-right: 16px;
  padding-left: 0;
}
.custom-selector__image {
  margin-right: 5px;
  display: flex;
}
.custom-selector__image img {
  width: 20px;
}
html[dir="rtl"] .custom-selector__image {
  margin-right: 0;
  margin-left: 5px;
}
.custom-selector__ticker {
  vertical-align: middle;
}
.custom-selector__ticker sup {
  font-size: 8px;
  padding-bottom: 8px;
  position: absolute;
  top: 5px;
  left: 26px;
}
.custom-selector__icon-selector {
  position: absolute;
  display: block;
  border: 5px solid rgba(0, 0, 0, 0);
  width: 0;
  height: 0;
  border-top-color: #333;
  background-color: #fff;
  right: 8px;
  top: 21px;
}
html[dir="rtl"] .custom-selector__icon-selector {
  right: unset;
  left: 8px;
}
.modal-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
  border-radius: 12px;
  overflow: hidden;
}
.modal-frame_opened {
  display: block;
}
.modal-frame__background {
  background: rgba(33, 33, 33, 0.3);
  width: 100%;
  height: 100%;
}
.modal-frame__background_centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-frame__body {
  position: absolute;
  background: #fff;
  padding: 16px;
  height: 100%;
  width: 100%;
  max-width: 752px;
  left: 0;
  top: 0;
  border: 1px solid #e9e7ee;
  border-radius: 12px;
}
.modal-frame__body.modal-frame__body_centered {
  max-width: 600px;
  max-height: 750px;
  top: initial;
  left: initial;
}
.modal-frame__close-btn {
  position: absolute;
  background: none;
  outline: none;
  border: none;
  right: 16px;
  top: 16px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 10;
}
html[dir="rtl"] .modal-frame__close-btn {
  right: unset;
  left: 16px;
}
.modal-frame__close-btn:hover {
  transform: scale(1.1);
}
.modal-frame__close-btn:active {
  transform: scale(1);
}
.modal-frame__close-btn_horizontal {
  right: 24px;
  top: 12px;
}
.aml-check-address__button-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 14px;
}
.aml-check-address__button {
  margin: 0;
  max-width: 272px;
  height: 48px;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  gap: 8px;
}
.aml-check-address__description {
  margin-top: 24px;
  color: #2b2b37;
  font-size: 14px;
  line-height: 20px;
  line-break: auto;
  font-weight: 300;
}
.aml-check-address__input {
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px 0 0 6px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #2b2b37;
  transition: all 0.3s ease;
}
html[dir="rtl"] .aml-check-address__input {
  border-radius: 0 6px 6px 0;
}
.aml-check-address__input_error {
  border-color: #fcebb8;
}
.aml-check-address__input_complete {
  border-color: #00c26f;
}
.aml-check-address__selector {
  margin: 24px 0 40px 0;
  display: flex;
  position: relative;
}
.aml-check-address__selector-currency {
  position: relative;
  left: -1px;
}
html[dir="rtl"] .aml-check-address__selector-currency {
  left: unset;
  right: -1px;
}
.aml-check-address__selector-currency .custom-selector__wrapper {
  border: 1px solid #e0e0e0;
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
}
html[dir="rtl"]
  .aml-check-address__selector-currency
  .custom-selector__wrapper {
  border-radius: 6px 0 0 6px;
}
.aml-check-address__selector-currency_error .custom-selector__wrapper {
  border-color: #fcebb8;
}
.aml-check-address__selector-currency_complete .custom-selector__wrapper {
  border-color: #00c26f;
}
.aml-check-address__error-message {
  background: #fcefc1;
  border: 1px solid #fcebb8;
  color: #808086;
  position: absolute;
  bottom: -28px;
  width: calc(100% - 1px);
  padding: 6px 12px;
  border-radius: 0 0 6px 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease;
  animation-name: warning-fade;
  animation-duration: 0.3s;
}
.aml-check-address {
  position: relative;
}
.aml-check-address__selector-modal {
  min-height: 355px;
  max-width: 400px;
  right: 0;
  border-radius: 6px;
  position: fixed;
  top: 0;
}
html[dir="rtl"] .aml-check-address__selector-modal {
  right: unset;
  left: 0;
}
.aml-check-address__selector-modal .modal-frame__background {
  background: none;
  border-radius: 6px;
}
.aml-check-address__selector-modal .modal-frame__body {
  border-radius: 6px;
}
.aml-check-address__beta {
  width: 50px;
  height: 24px;
  background: #00c26f;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.32px;
  color: #fff;
  margin-left: 8px;
  cursor: default;
}
.aml-check-address__tooltip {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #2b2b37;
  z-index: 999;
}
.aml-check-address__tooltip_custom {
  background: #fff;
  box-shadow: 0 0 10px rgba(43, 43, 54, 0.2);
  border-radius: 8px;
  padding: 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  width: -moz-max-content;
  width: max-content;
  max-width: 264px;
}
.aml-check-address__tooltip-arrow {
  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 #fff;
}
.aml-check-address__button_check {
  max-width: 180px;
}
@media screen and (min-width: 768px) {
  .aml-check-address__selector-modal {
    position: absolute;
  }
}
@media screen and (min-width: 992px) {
  .aml-check-address {
    height: 100%;
  }
}
@keyframes warning-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.premium-aml-check-banner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-radius: 8px;
  background-image: url(9fcbf8af8a2ab5e5f6ef.png);
  align-items: center;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.premium-aml-check-banner__text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 21px 16px;
}
.premium-aml-check-banner__title {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  opacity: 1;
}
.premium-aml-check-banner__description {
  color: #fff;
  letter-spacing: 0.27px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18.75px;
}
.premium-aml-check-banner__image {
  display: none;
}
@media screen and (min-width: 375px) {
  .premium-aml-check-banner__image {
    display: block;
    height: 70px;
    box-sizing: border-box;
    padding-right: 8px;
  }
}
@media screen and (min-width: 768px) {
  .premium-aml-check-banner {
    background-image: url(6a3f78fd97a91b36980f.png);
  }
  .premium-aml-check-banner__image {
    height: 88px;
    padding-right: 18px;
  }
  .premium-aml-check-banner__text-block {
    padding: 25px 24px;
  }
}
@media screen and (min-width: 992px) {
  .premium-aml-check-banner__image {
    height: 92px;
    padding-right: 47px;
  }
  .premium-aml-check-banner__text-block {
    padding: 23px 24px;
  }
}
.promo-plan-sale-block__text-mobile_march {
  font-size: 14px;
  line-height: 18px;
  color: #808086;
  margin-right: 4px;
  display: none;
}
.promo-plan-sale-block__img_march {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.promo-plan-sale-block__text_march {
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
}
.promo-plan-sale-block__text-desktop_march {
  display: none;
}
.promo-plan-sale-block__span-strike_march {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #9696a5;
  position: relative;
}
.promo-plan-sale-block__span-strike_march::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  height: 2px;
  width: 35px;
  background-color: #834ae6;
  transform: rotate(-16.86deg);
}
.promo-plan-sale-block__span-bold_march {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #434554;
  margin-left: 4px;
}
.promo-plan-sale-block__span_march {
  margin-left: 4px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #434554;
  display: none;
}
@media screen and (min-width: 375px) {
  .promo-plan-sale-block__text-mobile_march {
    display: inline;
  }
  .promo-plan-sale-block__span_march {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .promo-plan-sale-block__text-desktop_march {
    display: inline;
    margin-left: 5px;
  }
  .promo-plan-sale-block__text-mobile_march {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .promo-plan-sale-block__text-desktop_march {
    display: none;
  }
  .promo-plan-sale-block__span_march {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .promo-plan-sale-block__text-desktop_march {
    display: inline;
  }
  .promo-plan-sale-block__span_march {
    display: inline;
  }
}
.aml-check__promo-block_march {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  left: 24px;
  gap: 4px;
}
.new-button.aml-check__button-promo {
  max-width: 100%;
  margin-top: 84px;
}
@media screen and (min-width: 431px) {
  .aml-check__promo-block_march {
    left: 24px;
    bottom: 14px;
  }
  .new-button.aml-check__button-promo {
    margin-left: 175px;
    max-width: 180px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .aml-check__promo-block_march {
    left: 215px;
  }
  .new-button.aml-check__button-promo {
    margin-left: 0;
  }
}
: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;
  }
}
.balance-header-info {
  background: #fff;
  box-shadow: 0 5px 10px rgba(43, 43, 54, 0.1);
  border-radius: 8px;
}
.balance-header__title {
  color: #6a6a7f;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 16px 16px 8px 16px;
}
.balance-header__info {
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}
.header-info__block {
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 0;
}
.header-info__block:first-child {
  margin: 0;
}
html[dir="rtl"] .header-info__block:first-child {
  margin: 0;
}
.info-block__title {
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  padding: 0;
  margin: 0;
}
.info-block__value {
  display: flex;
  margin: 8px 0 0 0;
  align-items: center;
}
.info-block__value-main {
  color: #2b2b37;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 8px 0 0;
  padding: 0;
}
html[dir="rtl"] .info-block__value-main {
  margin: 0 0 0 8px;
}
.info-block__value-secondary {
  color: #6a6a7f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
}
.info-block__value-secondary_colored[value^="-"] {
  color: #f42841;
}
.info-block__value-secondary_colored[value^="+"] {
  color: #00c26f;
}
html[dir="rtl"] .info-block__value-secondary_colored {
  unicode-bidi: bidi-override;
}
.balance-header__warning {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  box-sizing: border-box;
  border-radius: 6px;
  margin: 0;
}
.balance-header__warning p {
  margin: 12px 0 0 0;
  padding: 0;
}
.balance-header__warning p:first-child {
  margin: 0;
}
.dashboard-profile-action-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .dashboard-profile-action-list {
    justify-content: flex-start;
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .dashboard-profile-action-list {
    margin-top: 0;
    margin-left: auto;
    justify-content: flex-start;
    gap: 36px;
  }
  html[dir="rtl"] .dashboard-profile-action-list {
    margin-right: auto;
    margin-left: 0;
  }
  .balance-header__info {
    flex-direction: row;
    padding: 24px;
  }
  .info-block__title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal;
  }
  .header-info__block {
    margin: 0 0 0 64px;
  }
  html[dir="rtl"] .header-info__block {
    margin: 0 64px 0 0;
  }
  .info-block__value {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-block__value-secondary {
    margin: 8px 0 0 0;
  }
}
.search-field {
  border-radius: 6px;
  background: rgba(196, 196, 196, 0.2);
  width: calc(100% - 32px);
  position: relative;
  padding: 6px 16px;
}
.search-field__input {
  color: #808086;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: none;
  outline: none;
  width: 100%;
  background: none;
  margin: 0;
  padding: 0;
}
.search-field__icon {
  width: 16px;
  position: absolute;
  right: 16px;
}
html[dir="rtl"] .search-field__icon {
  left: 16px;
  right: unset;
}
@media screen and (min-width: 768px) {
  .search-field {
    max-width: 240px;
  }
}
.sort-panel {
  padding: 16px 24px;
  display: flex;
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.sort-panel__column {
  display: flex;
  flex-grow: 1;
  align-items: center;
  max-width: 160px;
}
.sort-panel__column_main {
  flex-grow: 1.5;
  max-width: 300px;
}
.sort-panel__button {
  background: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.sort-panel__button:hover {
  color: #00c26f;
}
.sort-panel__button-icon {
  margin: 0 0 0 4px;
}
html[dir="rtl"] .sort-panel__button-icon {
  margin: 0 4px 0 0;
}
.sort-panel__button-divider {
  margin: 6px;
}
.currency-row-tooltip-wrap {
  position: relative;
  width: 12px;
  height: 12px;
}
.currency-row__tooltip {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 12px;
  background-image: url(bdb26c108692e62f34e7.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  cursor: pointer;
}
.currency-row__tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip {
  top: 50%;
  right: calc(100% + 5px);
  left: initial;
  transform: translateY(-50%);
  padding: 5px;
}
.currency-row__tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip::after {
  display: none;
}
.currency-row__tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip
  .simple-tooltip__content {
  font-size: 12px;
}
.currency-row {
  border-radius: 6px;
  background: #fff;
  padding: 16px 16px 4px 16px;
  margin-top: 16px;
  box-shadow: 0 2px 6px 0 rgba(43, 43, 54, 0.08);
  position: relative;
}
.currency-row__wrapper {
  display: flex;
  align-items: center;
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.currency-row__column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 160px;
}
.currency-row__column_main {
  flex-grow: 0;
  max-width: 75%;
}
.currency-row__coin-info {
  display: flex;
  align-items: center;
}
.coin-info__icon {
  width: 24px;
  align-self: flex-start;
}
.coin-info__data {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 12px;
}
html[dir="rtl"] .coin-info__data {
  margin: 0 12px 0 0;
}
.coin-info__data-name {
  display: flex;
  align-items: center;
}
.coin-info__data-name-value {
  color: #2b2b36;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
}
.coin-info__data-name-value > span {
  color: #808086;
}
.coin-info__data-price {
  color: #808086;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 8px 0 0 0;
}
.coin-info__data-price span[value^="-"] {
  color: #f42841;
}
.coin-info__data-price span[value^="+"] {
  color: #00c26f;
}
.column-amount {
  letter-spacing: 0.2px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.column__amount-price {
  color: #808086;
  line-height: normal;
  letter-spacing: 0.4px;
  margin-top: 8px;
}
.currency-row__column-staked {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.4px;
  color: #fff;
  background: #00c26f;
  padding: 2px 8px;
  margin-top: 8px;
  border-radius: 2px;
  display: inline-block;
  cursor: initial;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.currency-row__column-staked_mobile {
  margin-top: 0;
  position: absolute;
  top: -9px;
  right: 16px;
  display: none;
}
.currency-row_staked .currency-row__column-staked_mobile {
  display: block;
}
.currency-row-staked__tooltip {
  border: 1px solid #00c26f;
  border-radius: 4px 4px 4px 0px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-align: left;
  background: #fff;
  z-index: 1000;
  max-width: 282px;
}
.currency-row-staked__tooltip_mobile {
  border-radius: 4px 4px 0 4px;
  max-width: 161px;
}
.currency-row-staked__tooltip p {
  position: relative;
  font-size: 12px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.4px;
  opacity: 1;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.currency-row-staked__tooltip span {
  color: #00c26f;
}
.currency-row-staked__tooltip span:hover {
  cursor: pointer;
  color: #23527c;
}
.currency-row__staking-empty {
  border: 1px solid #00c26f;
  padding: 12px;
  border-radius: 4px;
  background: #f9fffc;
  display: flex;
  margin: 16px 0 8px 0;
  width: 100%;
}
.staking-empty__content-wrapper {
  display: flex;
  flex-direction: column;
}
.staking-empty__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: left;
}
.staking-empty__description {
  margin: 4px 0 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  text-align: left;
}
.staking-empty__button {
  align-self: flex-end;
  margin-left: 24px;
  background: #00c26f;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-align: center;
  color: #fff;
  padding: 4px 40px;
  outline: none;
  display: none;
  margin-top: 10px;
}
html[dir="rtl"] .staking-empty__button {
  margin-right: 24px;
  margin-left: 0;
}
.staking-empty__button:hover {
  opacity: 0.8;
}
.currency-row__helper-dots {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 25px;
}
html[dir="rtl"] .currency-row__helper-dots {
  right: unset;
  left: 25px;
}
.currency-row__helper-dots span {
  background: #e0e0e0;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 1px 0;
}
.currency-row__actions {
  border-top: 1px solid #e0e0e0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.actions__button {
  display: flex;
  border: none;
  outline: none;
  background: none;
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.actions__button:hover {
  color: #00c26f;
}
.actions__button_blue:hover {
  color: #4f96ff;
}
.actions__button:hover img {
  opacity: 0.8;
}
.actions__button-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.currency-row__column_secondary {
  display: none;
}
.coin-info__data-promo-img {
  font-size: 16px;
  line-height: 16px;
  padding-inline-start: 4px;
  vertical-align: bottom;
}
.currency-row__wrapper-christmas::before {
  display: none;
}
.currency-row__column-staked.currency-row__column-staked_grey {
  color: #a4a3aa;
  background: #f6f6f7;
  display: flex;
  max-width: 85px;
}
.currency-row__column-staked.currency-row__column-staked_mobile.currency-row__column-staked_grey {
  border: 1px solid #d3d7da;
}
.currency-row__column-staked-grey-tooltip {
  background-image: url(bdb26c108692e62f34e7.svg);
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  position: relative;
}
.actions__button .dashboard-profile-stats-tooltip {
  z-index: 100;
  top: 0;
  right: 0;
}
.actions__button
  .dashboard-profile-stats-tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip {
  top: 35px;
}
.actions__button
  .dashboard-profile-stats-tooltip
  .dashboard-profile-stats-tooltip__element.simple-tooltip
  .simple-tooltip__content {
  font-size: 12px;
  line-height: 14px;
}
@media screen and (min-width: 767px) {
  .actions__button
    .dashboard-profile-stats-tooltip
    .dashboard-profile-stats-tooltip__element.simple-tooltip {
    top: 50px;
  }
  .currency-row__staking-empty {
    flex-direction: column;
    margin: 0;
  }
  .coin-info__data-promo-img {
    display: none;
  }
  .currency-row__wrapper-christmas::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(538a91f1e2d722eb1980.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 375px;
    height: 114px;
    z-index: 0;
  }
  .currency-row__wrapper-january::before {
    content: "";
    display: block;
    position: absolute;
    top: 45px;
    left: 150px;
    background-image: url(935a536f1b51dacc69f5.svg);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    width: 117.54px;
    height: 51px;
    z-index: 0;
  }
  .currency-row__wrapper-january .currency-row__column_main {
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .currency-row__tooltip
    .dashboard-profile-stats-tooltip__element.simple-tooltip {
    top: 50%;
    left: calc(100% + 5px);
    transform: translateY(-50%);
  }
  .currency-row {
    overflow: hidden;
    position: relative;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    height: 90px;
  }
  .currency-row__staked-empty.currency-row_staked {
    height: 150px;
  }
  .currency-row__staked-empty .currency-row__wrapper {
    flex-wrap: nowrap;
    gap: 20px;
  }
  .currency-row__staked-empty .currency-row__wrapper .currency-row__column {
    min-width: 280px;
  }
  .currency-row__staking-empty {
    justify-content: space-between;
  }
  .currency-row__wrapper {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 24px;
    height: 100%;
    width: 100%;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    left: 0;
  }
  .currency-row_staked .currency-row__column-staked_mobile {
    display: none;
  }
  .staking-empty__button {
    display: block;
  }
  .currency-row__actions_hidden {
    display: none;
  }
  .currency-row__column {
    flex-grow: 1;
    justify-content: flex-start;
  }
  .currency-row__column_main {
    flex-grow: 1.5;
    max-width: 300px;
  }
  .currency-row__column_secondary {
    display: block;
  }
  .coin-info__icon {
    align-self: center;
  }
  .currency-row__actions {
    position: absolute;
    height: calc(100% - 1px);
    right: -480px;
    top: 0;
    background: linear-gradient(270deg, #fff 92%, rgba(255, 255, 255, 0) 100%);
    padding-left: 40px;
    margin-top: 0;
    border-top: none;
    width: auto;
    transition: right 0.5s ease-in-out;
  }
  .currency-row:hover .currency-row__actions,
  .currency-row__actions_active {
    right: 0;
  }
  .actions__button {
    margin-right: 40px;
    flex-direction: column;
  }
  .actions__button img {
    margin-bottom: 4px;
  }
  .actions__button-icon-wrapper {
    margin-bottom: 4px;
  }
  .column-amount {
    align-items: flex-start;
  }
  .currency-row__helper-dots {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .currency-row__staked-empty.currency-row_staked {
    height: 110px;
  }
  .currency-row__staking-empty {
    flex-direction: row;
  }
}
.balance-deposit {
  min-height: 300px;
  position: relative;
}
.balance-deposit__header {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  height: 56px;
}
.balance-deposit__header img {
  margin-left: 8px;
  width: 20px;
}
.balance-deposit__loader {
  margin: 100px 0;
  text-align: center;
}
.balance-deposit__content {
  padding: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 262px;
}
.deposit-content__info {
  max-width: 330px;
}
.deposit-content__info-title {
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.34px;
  margin-top: 16px;
}
.deposit-content__info-title a {
  color: #00c26f;
  text-decoration: none;
  cursor: pointer;
}
.deposit-content__info-title a:hover {
  color: #00c26f;
}
.deposit-content__info-title:first-child {
  margin-top: 0;
}
.deposit-content__info-value {
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin-top: 8px;
}
.deposit-content__qr {
  display: none;
}
.deposit-content__qr_show {
  margin-top: 24px;
  display: block;
}
.deposit-content__qr-tabs {
  width: 160px;
}
.deposit-content__qr-tab {
  display: block;
  margin: 0 auto;
  width: 160px;
}
.balance-deposit__warning-fee {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.043px;
  display: flex;
  align-items: center;
  min-height: 54px;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.balance-deposit__warning-wrapper {
  display: flex;
  align-items: center;
  margin-left: 32px;
}
.balance-deposit__alert-img-wrapper {
  width: 32px;
}
.balance-deposit__warning-wrapper:first-child {
  margin: 0;
}
.balance-deposit__warning-fee-text span {
  color: #2b2b37;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.043px;
  display: inline;
}
.balance-deposit__warning-fee img {
  margin-right: 12px;
}
.balance-deposit__warning {
  border: 1px solid #f0f0f0;
  background: #fcefc1;
  color: rgba(43, 43, 54, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.043px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
}
.balance-deposit__warning img {
  margin-right: 12px;
}
.deposit-content__button-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  width: 100%;
  padding: 10px;
  outline: none;
  border-radius: 4px;
  border: 1px solid #eef1f2;
  background: #fff;
  margin-top: 24px;
}
.deposit-content__button-qr img {
  margin-right: 4px;
}
.balance-deposit__header-icon {
  display: flex;
  align-items: center;
}
.balance-deposit__currency-network {
  margin-left: 8px;
}
.balance-deposit__error {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5d5a60;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background-color: #fcedba;
  border-radius: 8px;
  padding: 16px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
}
.balance-deposit__error_bp {
  position: static;
  margin-top: 12px;
}
.balance-deposit__status-stepper {
  width: 100%;
  margin: 24px 0;
}
.balance-deposit__status-stepper .tx-step-item__progress-line {
  width: 100%;
}
.balance-deposit__now-custody-terms {
  color: #9696a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
  margin-top: 12px;
  text-align: center;
}
.balance-deposit__now-custody-terms a {
  color: #9696a5;
  text-decoration-line: underline;
  cursor: pointer;
}
.balance-deposit__now-custody-terms a:hover {
  color: #9696a5;
}
.balance-deposit__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 48px 16px;
}
.balance-deposit__done-image {
  margin: 24px auto;
}
.balance-deposit__done-text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.balance-deposit__done-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;
}
.balance-deposit__done-button:hover {
  opacity: 0.8;
}
.balance-deposit__done-button_secondary {
  background: none;
  color: #00c26f;
  width: auto;
  margin: 16px auto 0 auto;
}
.balance-deposit__content_bp {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  height: 100%;
  min-height: 300px;
}
.balance-deposit__content-top_bp {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.balance-deposit__now-custody-terms_bp {
  margin: 0;
}
.pro-balance__coin-operations .balance-deposit__now-custody-terms a {
  color: #00c26f;
}
.qr-modal {
  bottom: 0 !important;
  top: unset !important;
}
.qr-modal__paper {
  height: 100% !important;
  margin: 0 !important;
  max-height: 100% !important;
  border-radius: 10px 10px 0 0 !important;
}
.qr-modal__paper-sm {
  padding: 24px 16px 0 !important;
}
.qr-modal__paper-sm .deposit-content__qr_show {
  margin-top: 16px !important;
}
.qr-modal__paper-sm .deposit-content__info-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  text-align: center;
}
.qr-modal__paper-sm .button-tabs__buttons {
  margin-bottom: 12px;
}
.balance-deposit__qr-modal {
  bottom: 0 !important;
  top: unset !important;
  width: 100%;
  height: 248px;
}
.balance-deposit__qr-modal_big {
  height: 288px;
  bottom: 0 !important;
  top: unset !important;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .balance-deposit__header {
    flex-direction: row;
  }
  .balance-deposit__content {
    padding: 16px 64px;
    justify-content: space-between;
  }
  .balance-deposit__warning {
    padding: 12px 80px;
  }
  .deposit-content__qr {
    display: block;
  }
  .deposit-content__button-qr {
    display: none;
  }
  .deposit-content__qr_show {
    margin-top: 0;
  }
  .deposit-content__info {
    min-height: 160px;
  }
  .balance-deposit__now-custody-terms {
    margin-top: 16px;
    margin-left: 48px;
  }
  .balance-deposit__done {
    padding: 0 64px 24px 64px;
  }
  .balance-deposit__done-text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 834px) {
  .balance-deposit__content_bp {
    min-height: unset;
  }
  .balance-deposit__warning-fee {
    align-items: flex-start;
    width: 100%;
  }
}
.amount-field {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  border-radius: 8px;
  border: 1px solid #e9e7ee;
}
.amount-field__title {
  color: #808086;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  top: 8px;
  left: 16px;
}
.amount-field__input {
  border-radius: 8px 0 0 8px;
  border: 0;
  border-right: none;
  background: #fff;
  color: #2b2b37;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.267px;
  padding: 24px 16px 8px 16px;
  outline: none;
  margin: 0;
  flex-grow: 1.5;
  width: 100%;
}
html[dir="rtl"] .amount-field__input {
  border-radius: 0 6px 6px 0;
  border-right: 1px solid #e9e7ee;
  border-left: none;
}
input.amount-field__input::-webkit-outer-spin-button,
input.amount-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.amount-field__input[type="number"] {
  -moz-appearance: textfield;
}
.amount-field__currency {
  border-radius: 0 8px 8px 0;
  border-left: 1px solid #e9e7ee;
  background: #fff;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2b2b37;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.267px;
  flex-grow: 1;
  position: relative;
  min-width: 170px;
}
html[dir="rtl"] .amount-field__currency {
  border-radius: 8px 0 0 8px;
}
.amount-field__currency.combobox_open {
  padding: 0;
  border: none;
}
.amount-field__currency .combobox--field {
  width: 100%;
}
.amount-field__currency .combobox--field__dropdown-open {
  position: absolute;
  left: auto;
  right: -1px;
  top: -1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 998;
  cursor: initial;
}
.amount-field__currency .combobox--dropdown {
  top: 98px;
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 0 0 5px 5px;
  background: #fff;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.amount-field__currency .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;
}
.amount-field__currency .combobox__btn-close {
  top: 10px;
}
.amount-field__currency .combobox__items-list {
  max-height: 100%;
}
.amount-field__currency .combobox-dropdown-item {
  display: flex;
}
.amount-field__currency .currency-item {
  width: 100%;
  align-items: center;
}
.amount-field__currency .combobox-dropdown-item .currency-item__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 1;
}
.amount-field__currency .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;
}
.amount-field__currency .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;
}
.amount-field__currency .combobox-dropdown-item .currency-item--ticker {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.amount-field__currency .combobox-dropdown-item .currency-item--name {
  display: block;
  font-weight: 300;
  font-size: 14px;
  text-align: start;
  color: #808086;
}
.amount-field__currency .combobox-dropdown-item .currency-item__balance {
  position: absolute;
  right: 12px;
  text-align: right;
  font-weight: 400;
}
.amount-field__currency .combobox-dropdown-item .currency-item__balance-span {
  color: #808086;
}
.amount-field_error {
  border: 1px solid rgba(255, 216, 92, 0.5);
}
.amount-field_error-visible {
  border-radius: 8px 8px 0 0;
}
.amount-field__error {
  background-color: #fcedba;
  color: #5d5a60;
  border: none;
  position: absolute;
  top: 70%;
  left: -1px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: calc(100% + 2px);
  min-height: 34px;
  text-align: left;
  border-radius: 0 0 8px 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity, visibility, ease 0.2s;
  padding: 0 16px;
}
.amount-field_error .amount-field__error.amount-field__error_hide-content {
  opacity: 0;
  visibility: hidden;
}
.amount-field_error-visible .amount-field__currency {
  border-radius: 0 8px 0 0;
}
.amount-field_error-visible .amount-field__input {
  border-radius: 8px 0 0 0;
}
.amount-field_error-visible .network-info__background {
  border-radius: 0;
}
.amount-field_error .amount-field__error {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.amount-field__error-action-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #5d5a60;
  text-decoration: underline;
  cursor: pointer;
}
.amount-field_loader {
  position: absolute;
  left: 16px;
  bottom: 0;
}
.amount-field__currency .combobox__network {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .amount-field__currency .combobox--field__dropdown-open {
    width: 342px;
  }
}
.balance-withdraw {
  min-height: 456px;
}
.balance-withdraw_two-factor-disabled {
  min-height: 360px;
}
.balance-withdraw_two-factor-disabled .balance-withdraw__step {
  min-height: auto;
}
.balance-withdraw__header {
  min-height: 56px;
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 9px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.balance-withdraw__header img {
  margin-bottom: 4px;
  width: 20px;
}
.balance-withdraw__content {
  padding: 24px 16px 48px 16px;
  width: 100%;
}
.balance-withdraw__footer {
  margin-top: auto;
}
.balance-withdraw__content_switching .balance-withdraw__content-frame {
  overflow-x: hidden;
}
.balance-withdraw__content_switching .balance-withdraw__step {
  display: flex;
}
.balance-withdraw__content_switching .balance-withdraw__steps {
  transition: all 0.3s ease-in-out;
}
.balance-withdraw__steps {
  display: flex;
  flex-direction: column;
}
.balance-withdraw__step {
  min-width: 100%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  min-height: 402px;
}
.balance-withdraw__step_big {
  min-height: 488px;
}
.balance-withdraw__step_active {
  display: flex;
  flex: 1;
}
.balance-withdraw__available {
  margin-top: 5px;
  color: #5b587d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  height: 20px;
}
.available__button {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0 0 0 4px;
  border-bottom: 1px dashed #00c26f;
}
.balance-withdraw__button-wrapper {
  margin-top: auto;
}
.balance-withdraw__button {
  width: 100%;
  outline: none;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  border-radius: 8px;
  background: #00c26f;
  padding: 13px 24px;
  margin-top: 12px;
}
.balance-withdraw-tooltip-wrapper {
  position: relative;
  display: flex;
  gap: 3px;
  align-items: center;
}
.balance-withdraw-tooltip-wrapper:hover .balance-withdraw__tooltip {
  display: block;
}
.balance-withdraw-tooltip-wrapper .balance-withdraw__tooltip {
  display: none;
  position: absolute;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -56px;
  padding: 8px;
  z-index: 10;
}
.balance-withdraw-tooltip-wrapper
  .balance-withdraw__tooltip
  .simple-tooltip__content {
  padding-top: 0;
}
.balance-withdraw-tooltip-wrapper .balance-withdraw__tooltip::before {
  top: -6px;
  bottom: initial;
}
.balance-withdraw__amount-field .amount-field__title {
  color: #aeb0bd;
}
.balance-withdraw__button:hover {
  opacity: 0.8;
}
.balance-withdraw__button-seccondary {
  background: none;
  color: #00c26f;
  margin: 16px auto 0 auto;
  border: 1px solid #00c26f;
}
.balance-withdraw__code-input {
  margin: 0;
}
.balance-withdraw__code-button {
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #00c26f;
  font-size: 14px;
  font-weight: 500;
}
.balance-withdraw__code-button:disabled {
  color: #aeb0bd;
}
.balance-withdraw__code-button-text {
  text-decoration: none;
}
.address-field__extensions {
  margin-top: 8px;
}
.balance-withdraw__address-field {
  z-index: 100;
}
.balance-withdraw__address-field .extension-item__tooltip {
  position: absolute;
  bottom: 35px;
  left: -50px;
  width: 130px;
}
.balance-withdraw__address-field .new-stepper-field__label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.address-field__extensions .new-stepper-extensions__text {
  color: #a4a3aa;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.balance-deposit__two-factor-disabled {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto 0;
}
.balance-withdraw__secure-image,
.balance-withdraw__success-image {
  margin: 0 auto;
  display: block;
}
.balance-withdraw__secure-image {
  height: 82px;
}
.balance-withdraw__secure-text {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin: 24px 0 0 0;
  padding: 0;
}
.balance-withdraw__success-text {
  margin: 8px 0 24px 0;
  color: #2b2b37;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
}
.balance-withdraw__success-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.balance-withdraw__error {
  background: #fcefc1;
  border: 1px solid #fcebb8;
  color: #808086;
  border-radius: 6px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 24px;
}
.balance-withdraw__back-button {
  position: absolute;
  left: 10px;
  top: 11px;
  border: none;
  background: none;
}
.balance-withdraw__info {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
}
.balance-withdraw__info-step {
  margin: 0;
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.balance-withdraw-input-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.balance-withdraw__info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.balance-withdraw__info-row__title {
  min-width: 128px;
  font-size: 16px;
  line-height: 24px;
  color: #6a6a7f;
}
.balance-withdraw__info-row__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 24px;
  font-size: 16px;
  color: #2b2b37;
  word-break: break-all;
}
.balance-withdraw__info-coin__icon {
  display: none;
}
.balance-withdraw__info__address {
  word-break: break-all;
}
.balance-withdraw__info-step-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.balance-withdraw__info-timer {
  font-size: 14px;
  font-weight: 500;
  color: #aeb0bd;
}
.balance-withdraw__second-step {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.balance-withdraw__second-step_active {
  height: 150px;
}
.balance-withdraw__estimate {
  margin-top: 24px;
  display: flex;
  align-items: center;
  position: relative;
}
.balance-withdraw__estimate-img-wrapper {
  width: 20px;
}
.balance-withdraw__estimate-text {
  margin: 0 0 0 8px;
  color: #2b2b37;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
  padding: 0;
}
.balance-withdraw__estimate .balance-withdraw__fee-skeleton {
  height: 12px;
  margin-left: 4px;
}
.balance-withdraw__whitelist-text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
}
.balance-withdraw-success__title {
  margin: 24px 0 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #2b2b37;
  text-align: center;
}
.text_success {
  text-align: center;
}
.title_success {
  text-align: center;
  margin: 24px 0 12px 0;
}
.balance-withdraw__whitelist-tag {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.balance-withdraw__whitelist-tag .balance-withdraw__whitelist-tag-span {
  color: #9696a5;
}
.balance-withdraw__whitelist-info {
  margin: 24px 0;
  width: 100%;
  background-color: #f6f4f8;
  padding: 16px;
  border-radius: 8px;
  overflow-wrap: break-word;
  word-break: break-all;
}
.balance-withdraw__whitelist-info-title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2b2b36;
}
.balance-withdraw__whitelist-info-title_success {
  justify-content: center;
  font-weight: 400;
}
.balance-withdraw__whitelist-button_succes {
  margin-top: 78px;
}
.balance-withdraw__whitelist-code-input {
  margin-top: 12px;
}
.balance-withdraw_whitelist-resend-button {
  background-color: rgba(0, 0, 0, 0);
  margin: 4px 0 0 0;
  padding: 0;
  color: #00c26f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  border: none;
  text-align: left;
}
.balance-withdraw__whitelist-action {
  display: grid;
  width: inherit;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.balance-withdraw__whitelist-info-address {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.balance-withdraw__whitelist-info-address_success {
  color: #9696a5;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-all;
}
.balance-withdraw__estimate-text_secondary {
  color: #9696a5;
}
.balance-withdraw__estimate-loader {
  position: relative;
  display: inline;
  margin: 0 0 0 4px;
}
.balance-withdraw__available-title {
  position: relative;
}
.balance-withdraw__available-title_second {
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.balance-withdraw__warning {
  margin: 12px 0 0 0;
  color: #2b2b37;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
}
.balance-withdraw__step .new-stepper-warning__content p {
  font-size: 14px;
  line-height: 14px;
}
.balance-action__modal:has(.balance-withdraw) div.clear-modal__paper-sm,
.balance-action__modal:has(.balance-withdraw) div.clear-modal__paper {
  margin: 0;
  position: absolute;
  top: 0;
  min-height: 528px;
  max-height: initial;
  height: 100%;
  border-radius: 0;
}
@media screen and (min-width: 431px) {
  .balance-withdraw__info-coin__icon {
    display: block;
  }
  .balance-action__modal:has(.balance-withdraw) div.clear-modal__paper-sm,
  .balance-action__modal:has(.balance-withdraw) div.clear-modal__paper {
    margin: 16px;
    position: relative;
    top: initial;
    height: initial;
    bottom: 0;
    min-height: auto;
    border-radius: 12px;
  }
  .balance-withdraw__whitelist-button_succes {
    margin-top: 24px;
  }
}
.balance-withdraw-success-image-wrapper {
  height: 110px;
}
.balance-withdraw__success-image {
  width: auto;
  height: 100%;
}
.balance-withdraw__info__address__copy {
  display: inline-flex;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .balance-withdraw {
    height: 624px;
    display: flex;
    flex-direction: column;
  }
  .balance-withdraw_two-factor-disabled {
    height: 360px;
  }
  .balance-withdraw__header {
    flex-direction: row;
    padding: 12px;
  }
  .balance-withdraw__content {
    flex: 1;
    padding: 24px 64px 48px 64px;
  }
  .balance-withdraw__content-frame {
    height: 100%;
  }
  .balance-withdraw__steps {
    height: 100%;
  }
  .balance-withdraw__whitelist-action {
    display: grid;
    width: inherit;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .balance-withdraw__header img {
    margin-left: 8px;
    margin-bottom: 0;
  }
}
.balance-table-header-promo__title {
  display: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #2b2b36;
  position: relative;
  white-space: nowrap;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.balance-table-header-promo__title::before {
  content: "";
  position: absolute;
  right: -22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-image: url(261b0c6b4131670cb2e6.svg);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.balance-table-header-promo__title:hover {
  color: #00c26f;
}
.balance-table-header-promo__title:hover::before {
  content: "";
  position: absolute;
  right: -22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-image: url(f0bff8b773cf20c5d3c2.svg);
}
@media screen and (min-width: 767px) {
  .balance-table-header-promo__title {
    display: inline;
  }
}
.balance-table__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.balance-table__switcher-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 16px;
}
.balance-table__switcher-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #6a6a7f;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 1;
}
.balance-table__search-field {
  margin: 0 16px;
}
.balance-table__sort-panel {
  margin-top: 12px;
  display: none;
}
.balance-table__pagination {
  padding: 25px 24px;
  justify-content: flex-end;
  align-items: center;
  display: none;
}
.pagination__number {
  margin-right: 24px;
  color: #808086;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
html[dir="rtl"] .pagination__number {
  margin-right: 0;
  margin-left: 24px;
}
.pagination__buttons {
  width: 53px;
  display: flex;
  justify-content: space-between;
}
.pagination__button {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  opacity: 0.7;
}
html[dir="rtl"] .pagination__button {
  transform: rotate(180deg);
}
.pagination__button_active {
  opacity: 1;
}
.balance-table__load-more {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 17px 0 rgba(43, 43, 54, 0.05);
  padding: 9px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 16px;
  color: #2b2b36;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.3px;
  border: none;
  outline: none;
  width: calc(100% - 32px);
}
.balance-table__load-more:hover {
  opacity: 0.8;
}
.balance-table__empty-block {
  padding: 40px 16px 56px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}
.balance-table__empty-block-img-wrapper {
  width: 124px;
  height: 91px;
}
.balance-table__empty-img {
  width: 100%;
  height: 100%;
}
.balance-table__empty-text {
  font-size: 16px;
  line-height: 24px;
  color: #6a6a7f;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.balance-table__empty-button {
  font-size: 16px;
  line-height: 24px;
  color: #00c26f;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding: 12px 24px;
  border: 1px solid #00c26f;
  outline: none;
  letter-spacing: 0.4px;
  width: 100%;
}
@media screen and (min-width: 360px) {
  .balance-table__switcher-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 834px) {
  .balance-table__empty-button {
    width: unset;
  }
}
@media screen and (min-width: 767px) {
  .balance-table__header-right-block {
    display: flex;
    align-items: center;
  }
  .balance-table__header-right-block .search-field.balance-table__search-field {
    min-width: 240px;
  }
}
@media screen and (min-width: 768px) {
  .balance-table__search-field {
    margin: 0 24px;
  }
  .balance-table__sort-panel {
    display: flex;
  }
  .balance-table__pagination {
    display: flex;
  }
  .balance-table__load-more {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .balance-table__switcher-block {
    margin: 0 24px;
    align-items: center;
    justify-content: normal;
    gap: 12px;
  }
  .balance-table__header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.balance-empty-banner {
  padding: 24px;
  background-color: #f6f4f8;
  border-radius: 8px;
}
.balance-empty-banner__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.27px;
  text-align: left;
  color: #2b2b36;
  margin-bottom: 20px;
}
.balance-empty-banner__steps-list {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.balance-empty-banner__steps-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  gap: 4px;
  border-radius: 8px;
  background-color: #fff;
}
.balance-empty-banner__steps-item-icon {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border: 3px solid #f6f4f8;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.balance-empty-banner__steps-item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #2b2b36;
  margin: 0;
}
.balance-empty-banner__steps-item-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin: 0;
  color: #2b2b36;
}
.balance-empty-banner__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: self-start;
}
.balance-empty-banner__deposit-button {
  background-color: #00c26f;
  color: #fff;
  border-radius: 6px;
  padding: 9px 69px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .balance-empty-banner__steps-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .balance-empty-banner__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .balance-empty-banner__deposit-button {
    width: auto;
    margin-top: 0;
  }
}
.pro-balance-deposit-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pro-balance-deposit-success-image {
  width: 80px;
  height: 80px;
}
.pro-balance-deposit-success-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #00c26f;
  padding: 0;
  margin: 0;
  text-align: center;
}
.pro-balance-deposit-success-table {
  display: flex;
  flex-direction: column;
  border: solid 1px #e5e5e9;
  border-radius: 8px;
  padding: 16px 0;
  max-width: 372px;
  width: 100%;
  position: relative;
}
.pro-balance-deposit-success-table__old-amount {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 0 16px 18px;
  align-items: center;
}
.pro-balance-deposit-success-table__new-amount {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 18px 16px 0;
}
.pro-balance-deposit-success-table__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
}
.pro-balance-deposit-success-buttons-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: column;
  max-width: 372px;
  width: 100%;
}
.pro-balance-deposit-success-button {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 8px;
  justify-content: center;
}
.pro-balance-deposit-success-button_main {
  color: #fff;
  background: #00c26f;
  border: none;
}
.pro-balance-deposit-success-button_main:hover {
  background: #00a451;
}
.pro-balance-deposit-success-button_main:active {
  background: #007a34;
}
.pro-balance-deposit-success-button_secondary {
  color: #00c26f;
  background: rgba(0, 0, 0, 0);
  border: solid 1px #00c26f;
}
.pro-balance-deposit-success-button_secondary:hover {
  background: rgba(0, 194, 111, 0.2);
}
.pro-balance-deposit-success-button_secondary:active {
  background: rgba(0, 194, 111, 0.1);
}
.pro-balance-deposit-success-table__old-amount-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: #2b2b37;
}
.pro-balance-deposit-success-table__new-amount-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: #00c26f;
}
@media screen and (min-width: 426px) {
  .pro-balance-deposit-success-buttons-wrapper {
    max-width: unset;
    flex-direction: row;
    width: unset;
  }
}
.pro-balance__assets {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(43, 43, 54, 0.04);
  display: flex;
  flex-direction: column;
  border: solid 1px #e5e5e9;
}
.pro-balance__assets-heading {
  margin: 0;
  padding: 16px 20px 8px;
  font-weight: 400;
  border-bottom: solid 1px #e5e5e9;
  color: #2b2b37;
  font-size: 20px;
  line-height: 24px;
}
.pro-balance__estimated-balance {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: solid 1px #e5e5e9;
}
.pro-balance__estimated-balance-regular-text {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #6a6a7f;
  font-weight: 400;
}
.pro-balance__estimated-balance-warning-text {
  color: #da8f16;
  display: inline-flex;
  gap: 4px;
}
.pro-balance__estimated-balance-warning-link {
  color: #da8f16;
  text-decoration: underline;
}
.pro-balance__estimated-balance-usd-info-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: baseline;
}
.pro-balance__estimated-balance-usd-amount {
  font-size: 20px;
  line-height: 24px;
  color: #2b2b37;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 834px) {
  .pro-balance__assets {
    width: 374px;
    background-color: rgba(0, 0, 0, 0);
  }
  .pro-balance__assets-heading {
    font-size: 24px;
    line-height: 28px;
  }
  .pro-balance__estimated-balance-usd-amount {
    font-size: 24px;
    line-height: 28px;
  }
}
.pro-balance-asset-item {
  display: grid;
  grid-template-columns: 32px 1fr 1fr;
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px 20px;
  background: none;
  border: none;
  width: 100%;
  -moz-column-gap: 12px;
  column-gap: 12px;
  border-bottom: solid 1px #e5e5e9;
}
.pro-balance-asset-item:hover {
  background-color: #f8f8f8;
}
.pro-balance-asset-item_active {
  background-color: #fff;
}
.pro-balance-asset-item__column {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pro-balance-asset-item__icon-wrapper {
  grid-column: 1;
  align-self: center;
}
.pro-balance-asset-item__text-wrapper {
  grid-column: 2;
  align-items: flex-start;
}
.pro-balance-asset-item__numbers-wrapper {
  grid-column: 3;
  align-items: flex-end;
  font-size: 12px;
}
.pro-balance-asset-item__row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pro-balance-asset-item__row .currency-sup span {
  font-size: 10px;
  line-height: 10px;
}
.pro-balance-asset-item__ticker {
  margin: 0;
  padding: 0;
  color: #2b2b37;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.pro-balance-asset-item__name {
  margin: 0;
  padding: 0;
  color: #6a6a7f;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  word-break: break-word;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100vw - 32px - 40px - 32px - 24px - 125px);
  overflow: hidden;
}
.pro-balance-asset-item__change {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
.pro-balance-asset-item__change_red {
  color: #f42841;
}
.pro-balance-asset-item__change_green {
  color: #00c26f;
}
.pro-balance-asset-item__row .pro-balance__coin-usd-amount {
  font-size: 12px;
}
.pro-balance-asset-item__row .pro-balance-asset-item__ticker {
  font-size: 14px;
}
.pro-balance-asset-item__row .coin-info__data-name-network {
  max-width: 62px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-balance-asset-item__amount,
.pro-balance-asset-item__row .pro-balance__coin-usd-amount {
  max-width: 70px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 360px) {
  .pro-balance-asset-item__ticker {
    font-size: 18px;
    line-height: 24px;
  }
  .pro-balance-asset-item__name {
    font-size: 14px;
    max-width: calc(100vw - 32px - 40px - 32px - 24px - 140px);
  }
  .pro-balance-asset-item__row .currency-sup span {
    font-size: 12px;
    line-height: 12px;
  }
  .pro-balance-asset-item__numbers-wrapper {
    font-size: 14px;
  }
  .pro-balance-asset-item__change {
    font-size: 14px;
  }
  .pro-balance-asset-item__row .pro-balance__coin-usd-amount {
    font-size: 14px;
  }
  .pro-balance-asset-item__row .pro-balance-asset-item__ticker {
    font-size: 16px;
  }
  .pro-balance-asset-item__amount,
  .pro-balance-asset-item__row .pro-balance__coin-usd-amount {
    max-width: 100px;
  }
}
@media screen and (min-width: 400px) {
  .pro-balance-asset-item__amount,
  .pro-balance-asset-item__row .pro-balance__coin-usd-amount {
    max-width: 138px;
  }
}
@media screen and (min-width: 500px) {
  .pro-balance-asset-item__amount,
  .pro-balance-asset-item__row .pro-balance__coin-usd-amount {
    max-width: unset;
  }
}
@media screen and (min-width: 834px) {
  .pro-balance-asset-item__amount,
  .pro-balance-asset-item__row .pro-balance__coin-usd-amount {
    max-width: 138px;
  }
}
.pro-balance__coin {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.pro-balance__coin-balance {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(43, 43, 54, 0.04);
}
.pro-balance__coin-operations {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(43, 43, 54, 0.04);
  min-height: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.pro-balance__coin-info {
  padding: 16px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  display: grid;
  grid-template-columns: 40px 1fr;
}
.pro-balance__coin-icon-wrapper {
  grid-column: 1;
  align-self: center;
}
.pro-balance__coin-icon {
  width: 40px;
  height: 40px;
}
.pro-balance__coin-price-wrapper {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pro-balance__coin-price-top-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: baseline;
}
.pro-balance__coin-amount {
  color: #2b2b37;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  padding: 0;
  margin: 0 4px 0 0;
}
.pro-balance__coin-change {
  font-size: 14px;
  line-height: 20px;
}
.pro-balance__coin-range {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: #6a6a7f;
}
.pro-balance__coin-usd-amount {
  font-size: 14px;
  line-height: 20px;
  color: #6a6a7f;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.pro-balance__coin-operations-tabs {
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-bottom: solid 1px #e5e5e9;
  overflow-x: scroll;
  scrollbar-width: none;
  padding: 16px 16px 0;
}
.pro-balance__coin-operations-tab-button {
  border: none;
  background: none;
  padding: 0 0 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0;
}
.pro-balance__coin-operations-tab-button_active {
  border-bottom: solid 1px #00c26f;
}
.pro-balance__coin-operations-tab-button-text {
  color: #6a6a7f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.pro-balance__coin-operations-tab-button-text_active {
  color: #2b2b37;
}
.pro-balance__coin-operations-content {
  height: calc(100% - 52px);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-height: 348px;
}
.pro-balance__coin-operations-content .balance-deposit {
  height: 100%;
  max-width: 100%;
}
.pro-balance__coin-operations-content .new-stepper-body_main-page {
  background: rgba(0, 0, 0, 0);
  padding: 0;
  max-width: 548px;
  width: 100%;
  margin: 0 auto;
  border: none;
}
.pro-balance__coin-operations-content .exchange-calculator .now-input--input,
.exchange-calculator--currency-field {
  background-color: #fcfcfc;
  color: #2b2b37;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.pro-balance
  .pro-balance__coin-operations-content
  .exchange-calculator--fields-section__amount,
.pro-balance
  .pro-balance__coin-operations-content
  .exchange-calculator--fields-section__estimation {
  border-color: #eae8ed;
  min-height: 56px;
}
.pro-balance .pro-balance__coin-operations-content .now-input--label {
  color: #6a6a7f;
  font-size: 12px;
}
.pro-balance__coin-operations-content .currency-item--ticker,
.new-stepper-hints__label,
.new-stepper-hints__rate {
  color: #2b2b37;
}
.pro-balance__coin-operations-content .combobox--dropdown-arrow {
  fill: #6a6a7f;
}
.pro-balance
  .pro-balance__coin-operations-content
  .new-stepper-hints__wrapper-border {
  border-inline-start: 1px solid #e5e5e9;
}
.pro-balance
  .pro-balance__coin-operations-content
  .new-stepper-hints__item:before {
  background-color: #e5e5e9;
}
.pro-balance__coin-operations-content .new-stepper-button-mt {
  margin-top: 24px;
  border-radius: 8px;
}
.pro-balance__coin-operations-buy-warning {
  color: #6a6a7f;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  padding: 0;
  margin: 16px auto 0;
  max-width: 548px;
  width: 100%;
}
.pro-balance__coin-operations-buy-warning-link {
  color: #00c26f;
}
.pro-balance__coin-operations-buy-warning-link:hover {
  opacity: 0.8;
  color: #00c26f;
}
.pro-balance__coin-operations-content .exchange-stepper--panel {
  padding: 24px 16px;
}
.pro-balance__coin-operations-content .new-stepper-fiat__to-currency {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  border: 1px solid #e5e5e9;
}
.pro-balance__coin-operations-content .new-stepper-currency-to-currency-item {
  padding: 16px;
}
.pro-balance__coin-operations-content .new-stepper-fiat-to-crypto__arrow {
  position: static;
  margin: auto;
}
.pro-balance__coin-operations-content .new-stepper-fiat-to-crypto__from {
  border-right: 1px solid #e5e5e9;
}
.pro-balance__coin-operations-content .new-stepper-fiat__section {
  box-shadow: none;
  margin: 0;
}
.pro-balance__coin-operations-content .trade-calculator {
  padding: 0;
  margin: 0 auto;
  max-width: 548px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pro-balance__coin-operations-content .trade-calculator__field {
  background-color: #fcfcfc;
  min-height: 56px;
  border-color: #eae8ed;
}
.pro-balance__coin-operations-content .trade-calculator .now-input--labels {
  top: -5px;
  left: 20px;
}
.pro-balance__coin-operations-content .trade-calculator .now-input {
  align-self: center;
  border-right: 1px solid #eae8ed;
  height: 100%;
}
.pro-balance__coin-operations-content .trade-calculator .now-input--input {
  padding: 17px 20px 0;
  border-right: none;
  font-weight: 500;
  background-color: #fcfcfc;
  height: 54px;
  font-size: 16px;
  line-height: 24px;
}
.pro-balance__coin-operations-content
  .trade-calculator
  .now-input--input:focus {
  outline: none;
}
.pro-balance__coin-operations-content .trade-calculator .tc-field__loader {
  top: 21px;
  left: 9px;
}
.pro-balance__coin-operations-content .trade-calculator__exchange-button {
  margin-top: 24px;
  border-radius: 8px;
}
.pro-balance__coin-operations-content .trade-calculator__now-custody-terms {
  align-self: flex-start;
  margin-top: 16px;
  margin-bottom: 0;
  color: #6a6a7f;
  letter-spacing: normal;
  text-align: left;
}
.pro-balance__coin-operations-content .exchange-calculator__trade-calculator {
  min-height: unset;
  height: 100%;
}
.pro-balance__coin-operations-content .confirm-trade-exchange__main {
  margin: 0 auto;
  max-width: 548px;
  padding: 24px 0;
  gap: 24px;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amounts {
  border: solid 1px #e5e5e9;
  flex-direction: column;
  padding: 0;
  max-width: 548px;
  width: 100%;
  gap: 0;
}
.pro-balance__coin-operations-content .confirm-trade-exchange__exchange-amount {
  padding: 16px 0;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount:first-child,
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount:last-child {
  padding: 16px;
  border-right: none;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount:first-child {
  border-bottom: 1px solid #e5e5e9;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount:last-of-type::before,
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount-span,
.pro-balance__coin-operations-content .confirm-trade-exchange__header {
  display: none;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount:last-of-type::after {
  top: -9px;
  left: calc(50% - 9px);
  rotate: 90deg;
  background-image: url(24916a4d89b54a74a16f.svg);
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-amount-coin-text {
  font-size: 18px;
  line-height: 24px;
}
.pro-balance__coin-operations-content .confirm-trade-exchange__exchange-info {
  gap: 24px;
  align-items: center;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-rate-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.pro-balance__coin-operations-content
  .confirm-trade-exchange__exchange-rate-text {
  padding: 0;
}
.pro-balance__coin-operations-content .combobox__light {
  background-color: #fcfcfc;
  border: none;
}
.pro-balance__coin-operations-content
  .trade-transaction-info
  .trade-transaction-info__exchange-amounts {
  margin: 16px 0 0;
  display: flex;
  gap: 0;
  padding: 16px 0;
  width: 80%;
}
.pro-balance__coin-operations-content
  .trade-transaction-info
  .trade-transaction-info__exchange-amount:last-of-type::before {
  display: none;
}
.pro-balance__coin-operations-content
  .trade-transaction-info
  .trade-transaction-info__exchange-amount:first-child {
  padding: 0 16px 16px;
  border-bottom: 1px solid #e5e5e9;
}
.pro-balance__coin-operations-content
  .trade-transaction-info
  .trade-transaction-info__exchange-amount:last-child {
  padding: 16px 16px 0;
}
.pro-balance__coin-operations-content
  .trade-transaction-info
  .trade-transaction-info__exchange-amount:last-of-type::after {
  left: calc(50% - 9px);
  top: -9px;
  transform: unset;
}
.pro-balance__coin-operations-content .trade-transaction-info .new-button {
  margin-top: 24px;
  width: 240px;
  gap: 4px;
}
.pro-balance__coin-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  border-bottom: solid 1px #e5e5e9;
  padding: 16px 16px 8px;
}
.pro-balance__coin-header .pro-balance__assets-heading {
  border: none;
  padding: 0;
}
.pro-balance__coin-back-button {
  display: flex;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
.balance-deposit__now-custody-terms_bp {
  margin: 0;
  text-align: left;
}
.pro-balance__coin-operations-content .now-input__light .now-input--input {
  padding-inline-start: 12px;
  padding-inline-end: 12px;
}
.pro-balance__coin-operations-content
  .exchange-calculator--selected-currency-item {
  padding-inline-start: 12px;
}
.pro-balance__coin-operations-content .now-input__light .now-input--labels {
  top: 4px;
  left: 12px;
}
.pro-balance__coin-operations .deposit-content__info-value {
  font-weight: 400;
  color: #6a6a7f;
}
.pro-balance__coin-operations-tab-button-icon {
  display: none;
}
.pro-balance__coin-operations .deposit-content__button-qr {
  border-radius: 8px;
  margin: 0;
  border-color: #00c26f;
  color: #00c26f;
}
.pro-balance__coin-operations .new-stepper-form_margin {
  margin: 0;
}
.pro-balance__coin-operations-content .exchange-calculator .now-input--input {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.pro-balance__coin-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.pro-balance__coin-name {
  color: #6a6a7f;
}
.balance-deposit__error_short {
  max-width: 548px;
}
@media screen and (min-width: 426px) {
  .pro-balance__coin-operations-tab-button-icon {
    display: block;
  }
}
@media screen and (min-width: 834px) {
  .pro-balance__coin {
    display: grid;
    grid-template-rows: 144px max-content;
  }
  .pro-balance__coin-icon {
    width: 48px;
    height: 48px;
  }
  .pro-balance__coin-amount {
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
  }
  .pro-balance__coin-change,
  .pro-balance__coin-range {
    font-size: 16px;
    line-height: 24px;
  }
  .pro-balance__coin-back-button {
    display: none;
  }
  .pro-balance__coin-info {
    grid-template-columns: 48px 1fr;
    padding: 16px 20px 20px;
  }
  .pro-balance__coin-operations-tabs {
    padding: 19px 12px 0;
    overflow-x: unset;
  }
  .pro-balance__coin-operations-tab-button {
    margin-bottom: -1px;
  }
  .pro-balance__coin-operations {
    min-height: 428px;
  }
  .pro-balance__coin-operations-content {
    padding: 24px 24px 40px;
    min-height: unset;
  }
  .pro-balance__coin-operations-content .exchange-calculator .now-input--input {
    font-size: 24px;
    line-height: 32px;
  }
  .pro-balance__coin-operations-content .trade-calculator__now-custody-terms {
    margin-top: auto;
  }
  .pro-balance .pro-balance__coin-operations-content .now-input--label {
    font-size: 14px;
  }
  .pro-balance__coin-operations-content .now-input__light .now-input--labels {
    top: 8px;
    left: 16px;
  }
  .pro-balance__coin-operations-content .now-input__light .now-input--input {
    padding-inline-start: 16px;
    padding-inline-end: 16px;
  }
  .pro-balance__coin-operations-content
    .exchange-calculator--selected-currency-item {
    padding-inline-start: 16px;
  }
  .pro-balance__coin-operations-content .trade-calculator .now-input--input {
    height: 66px;
    font-size: 24px;
    line-height: 32px;
  }
  .balance-deposit__now-custody-terms_bp {
    text-align: center;
  }
  .pro-balance
    .pro-balance__coin-operations-content
    .exchange-calculator--fields-section__amount,
  .pro-balance
    .pro-balance__coin-operations-content
    .exchange-calculator--fields-section__estimation,
  .pro-balance__coin-operations-content .trade-calculator__field {
    min-height: 68px;
  }
  .pro-balance__coin-operations-content
    .confirm-trade-exchange__exchange-amounts {
    flex-direction: row;
    padding: 0 16px;
    max-width: unset;
  }
  .pro-balance__coin-operations-content
    .confirm-trade-exchange__exchange-amount:first-child {
    padding-right: 24px;
    border-bottom: none;
    border-right: 1px solid #e5e5e9;
  }
  .pro-balance__coin-operations-content
    .confirm-trade-exchange__exchange-amount:last-child {
    padding-left: 24px;
  }
  .pro-balance__coin-operations-content
    .confirm-trade-exchange__exchange-amount:last-of-type::after {
    top: calc(50% - 9px);
    left: -9px;
    rotate: none;
  }
}
.amount-field {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  border-radius: 8px;
  border: 1px solid #e9e7ee;
}
.amount-field__title {
  color: #808086;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  top: 8px;
  left: 16px;
}
.amount-field__input {
  border-radius: 8px 0 0 8px;
  border: 0;
  border-right: none;
  background: #fff;
  color: #2b2b37;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.267px;
  padding: 24px 16px 8px 16px;
  outline: none;
  margin: 0;
  flex-grow: 1.5;
  width: 100%;
}
html[dir="rtl"] .amount-field__input {
  border-radius: 0 6px 6px 0;
  border-right: 1px solid #e9e7ee;
  border-left: none;
}
input.amount-field__input::-webkit-outer-spin-button,
input.amount-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.amount-field__input[type="number"] {
  -moz-appearance: textfield;
}
.amount-field__currency {
  border-radius: 0 8px 8px 0;
  border-left: 1px solid #e9e7ee;
  background: #fff;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2b2b37;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.267px;
  flex-grow: 1;
  position: relative;
  min-width: 170px;
}
html[dir="rtl"] .amount-field__currency {
  border-radius: 8px 0 0 8px;
}
.amount-field__currency.combobox_open {
  padding: 0;
  border: none;
}
.amount-field__currency .combobox--field {
  width: 100%;
}
.amount-field__currency .combobox--field__dropdown-open {
  position: absolute;
  left: auto;
  right: -1px;
  top: -1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 998;
  cursor: initial;
}
.amount-field__currency .combobox--dropdown {
  top: 98px;
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 0 0 5px 5px;
  background: #fff;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.amount-field__currency .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;
}
.amount-field__currency .combobox__btn-close {
  top: 10px;
}
.amount-field__currency .combobox__items-list {
  max-height: 100%;
}
.amount-field__currency .combobox-dropdown-item {
  display: flex;
}
.amount-field__currency .currency-item {
  width: 100%;
  align-items: center;
}
.amount-field__currency .combobox-dropdown-item .currency-item__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 1;
}
.amount-field__currency .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;
}
.amount-field__currency .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;
}
.amount-field__currency .combobox-dropdown-item .currency-item--ticker {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.amount-field__currency .combobox-dropdown-item .currency-item--name {
  display: block;
  font-weight: 300;
  font-size: 14px;
  text-align: start;
  color: #808086;
}
.amount-field__currency .combobox-dropdown-item .currency-item__balance {
  position: absolute;
  right: 12px;
  text-align: right;
  font-weight: 400;
}
.amount-field__currency .combobox-dropdown-item .currency-item__balance-span {
  color: #808086;
}
.amount-field_error {
  border: 1px solid rgba(255, 216, 92, 0.5);
}
.amount-field_error-visible {
  border-radius: 8px 8px 0 0;
}
.amount-field__error {
  background-color: #fcedba;
  color: #5d5a60;
  border: none;
  position: absolute;
  top: 70%;
  left: -1px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: calc(100% + 2px);
  min-height: 34px;
  text-align: left;
  border-radius: 0 0 8px 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity, visibility, ease 0.2s;
  padding: 0 16px;
}
.amount-field_error .amount-field__error.amount-field__error_hide-content {
  opacity: 0;
  visibility: hidden;
}
.amount-field_error-visible .amount-field__currency {
  border-radius: 0 8px 0 0;
}
.amount-field_error-visible .amount-field__input {
  border-radius: 8px 0 0 0;
}
.amount-field_error-visible .network-info__background {
  border-radius: 0;
}
.amount-field_error .amount-field__error {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.amount-field__error-action-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #5d5a60;
  text-decoration: underline;
  cursor: pointer;
}
.amount-field_loader {
  position: absolute;
  left: 16px;
  bottom: 0;
}
.amount-field__currency .combobox__network {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .amount-field__currency .combobox--field__dropdown-open {
    width: 342px;
  }
}
.balance-withdraw {
  min-height: 456px;
}
.balance-withdraw_two-factor-disabled {
  min-height: 360px;
}
.balance-withdraw_two-factor-disabled .balance-withdraw__step {
  min-height: auto;
}
.balance-withdraw__header {
  min-height: 56px;
  color: #2b2b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 9px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.balance-withdraw__header img {
  margin-bottom: 4px;
  width: 20px;
}
.balance-withdraw__content {
  padding: 24px 16px 48px 16px;
  width: 100%;
}
.balance-withdraw__footer {
  margin-top: auto;
}
.balance-withdraw__content_switching .balance-withdraw__content-frame {
  overflow-x: hidden;
}
.balance-withdraw__content_switching .balance-withdraw__step {
  display: flex;
}
.balance-withdraw__content_switching .balance-withdraw__steps {
  transition: all 0.3s ease-in-out;
}
.balance-withdraw__steps {
  display: flex;
  flex-direction: column;
}
.balance-withdraw__step {
  min-width: 100%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  min-height: 402px;
}
.balance-withdraw__step_big {
  min-height: 488px;
}
.balance-withdraw__step_active {
  display: flex;
  flex: 1;
}
.balance-withdraw__available {
  margin-top: 5px;
  color: #5b587d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  height: 20px;
}
.available__button {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0 0 0 4px;
  border-bottom: 1px dashed #00c26f;
}
.balance-withdraw__button-wrapper {
  margin-top: auto;
}
.balance-withdraw__button {
  width: 100%;
  outline: none;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  border-radius: 8px;
  background: #00c26f;
  padding: 13px 24px;
  margin-top: 12px;
}
.balance-withdraw-tooltip-wrapper {
  position: relative;
  display: flex;
  gap: 3px;
  align-items: center;
}
.balance-withdraw-tooltip-wrapper:hover .balance-withdraw__tooltip {
  display: block;
}
.balance-withdraw-tooltip-wrapper .balance-withdraw__tooltip {
  display: none;
  position: absolute;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -56px;
  padding: 8px;
  z-index: 10;
}
.balance-withdraw-tooltip-wrapper
  .balance-withdraw__tooltip
  .simple-tooltip__content {
  padding-top: 0;
}
.balance-withdraw-tooltip-wrapper .balance-withdraw__tooltip::before {
  top: -6px;
  bottom: initial;
}
.balance-withdraw__amount-field .amount-field__title {
  color: #aeb0bd;
}
.balance-withdraw__button:hover {
  opacity: 0.8;
}
.balance-withdraw__button-seccondary {
  background: none;
  color: #00c26f;
  margin: 16px auto 0 auto;
  border: 1px solid #00c26f;
}
.balance-withdraw__code-input {
  margin: 0;
}
.balance-withdraw__code-button {
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #00c26f;
  font-size: 14px;
  font-weight: 500;
}
.balance-withdraw__code-button:disabled {
  color: #aeb0bd;
}
.balance-withdraw__code-button-text {
  text-decoration: none;
}
.address-field__extensions {
  margin-top: 8px;
}
.balance-withdraw__address-field {
  z-index: 100;
}
.balance-withdraw__address-field .extension-item__tooltip {
  position: absolute;
  bottom: 35px;
  left: -50px;
  width: 130px;
}
.balance-withdraw__address-field .new-stepper-field__label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.address-field__extensions .new-stepper-extensions__text {
  color: #a4a3aa;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.balance-deposit__two-factor-disabled {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto 0;
}
.balance-withdraw__secure-image,
.balance-withdraw__success-image {
  margin: 0 auto;
  display: block;
}
.balance-withdraw__secure-image {
  height: 82px;
}
.balance-withdraw__secure-text {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin: 24px 0 0 0;
  padding: 0;
}
.balance-withdraw__success-text {
  margin: 8px 0 24px 0;
  color: #2b2b37;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
}
.balance-withdraw__success-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.balance-withdraw__error {
  background: #fcefc1;
  border: 1px solid #fcebb8;
  color: #808086;
  border-radius: 6px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 24px;
}
.balance-withdraw__back-button {
  position: absolute;
  left: 10px;
  top: 11px;
  border: none;
  background: none;
}
.balance-withdraw__info {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
}
.balance-withdraw__info-step {
  margin: 0;
  color: #2b2b37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.balance-withdraw-input-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.balance-withdraw__info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.balance-withdraw__info-row__title {
  min-width: 128px;
  font-size: 16px;
  line-height: 24px;
  color: #6a6a7f;
}
.balance-withdraw__info-row__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 24px;
  font-size: 16px;
  color: #2b2b37;
  word-break: break-all;
}
.balance-withdraw__info-coin__icon {
  display: none;
}
.balance-withdraw__info__address {
  word-break: break-all;
}
.balance-withdraw__info-step-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.balance-withdraw__info-timer {
  font-size: 14px;
  font-weight: 500;
  color: #aeb0bd;
}
.balance-withdraw__second-step {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.balance-withdraw__second-step_active {
  height: 150px;
}
.balance-withdraw__estimate {
  margin-top: 24px;
  display: flex;
  align-items: center;
  position: relative;
}
.balance-withdraw__estimate-img-wrapper {
  width: 20px;
}
.balance-withdraw__estimate-text {
  margin: 0 0 0 8px;
  color: #2b2b37;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
  padding: 0;
}
.balance-withdraw__estimate .balance-withdraw__fee-skeleton {
  height: 12px;
  margin-left: 4px;
}
.balance-withdraw__whitelist-text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
}
.balance-withdraw-success__title {
  margin: 24px 0 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #2b2b37;
  text-align: center;
}
.text_success {
  text-align: center;
}
.title_success {
  text-align: center;
  margin: 24px 0 12px 0;
}
.balance-withdraw__whitelist-tag {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  margin: 0;
  padding: 0;
}
.balance-withdraw__whitelist-tag .balance-withdraw__whitelist-tag-span {
  color: #9696a5;
}
.balance-withdraw__whitelist-info {
  margin: 24px 0;
  width: 100%;
  background-color: #f6f4f8;
  padding: 16px;
  border-radius: 8px;
  overflow-wrap: break-word;
  word-break: break-all;
}
.balance-withdraw__whitelist-info-title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2b2b36;
}
.balance-withdraw__whitelist-info-title_success {
  justify-content: center;
  font-weight: 400;
}
.balance-withdraw__whitelist-button_succes {
  margin-top: 78px;
}
.balance-withdraw__whitelist-code-input {
  margin-top: 12px;
}
.balance-withdraw_whitelist-resend-button {
  background-color: rgba(0, 0, 0, 0);
  margin: 4px 0 0 0;
  padding: 0;
  color: #00c26f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  border: none;
  text-align: left;
}
.balance-withdraw__whitelist-action {
  display: grid;
  width: inherit;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.balance-withdraw__whitelist-info-address {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.balance-withdraw__whitelist-info-address_success {
  color: #9696a5;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-all;
}
.balance-withdraw__estimate-text_secondary {
  color: #9696a5;
}
.balance-withdraw__estimate-loader {
  position: relative;
  display: inline;
  margin: 0 0 0 4px;
}
.balance-withdraw__available-title {
  position: relative;
}
.balance-withdraw__available-title_second {
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.balance-withdraw__warning {
  margin: 12px 0 0 0;
  color: #2b2b37;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.043px;
}
.balance-withdraw__step .new-stepper-warning__content p {
  font-size: 14px;
  line-height: 14px;
}
.balance-action__modal:has(.balance-withdraw) div.clear-modal__paper-sm,
.balance-action__modal:has(.balance-withdraw) div.clear-modal__paper {
  margin: 0;
  position: absolute;
  top: 0;
  min-height: 528px;
  max-height: initial;
  height: 100%;
  border-radius: 0;
}
@media screen and (min-width: 431px) {
  .balance-withdraw__info-coin__icon {
    display: block;
  }
  .balance-action__modal:has(.balance-withdraw) div.clear-modal__paper-sm,
  .balance-action__modal:has(.balance-withdraw) div.clear-modal__paper {
    margin: 16px;
    position: relative;
    top: initial;
    height: initial;
    bottom: 0;
    min-height: auto;
    border-radius: 12px;
  }
  .balance-withdraw__whitelist-button_succes {
    margin-top: 24px;
  }
}
.balance-withdraw-success-image-wrapper {
  height: 110px;
}
.balance-withdraw__success-image {
  width: auto;
  height: 100%;
}
.balance-withdraw__info__address__copy {
  display: inline-flex;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .balance-withdraw {
    height: 624px;
    display: flex;
    flex-direction: column;
  }
  .balance-withdraw_two-factor-disabled {
    height: 360px;
  }
  .balance-withdraw__header {
    flex-direction: row;
    padding: 12px;
  }
  .balance-withdraw__content {
    flex: 1;
    padding: 24px 64px 48px 64px;
  }
  .balance-withdraw__content-frame {
    height: 100%;
  }
  .balance-withdraw__steps {
    height: 100%;
  }
  .balance-withdraw__whitelist-action {
    display: grid;
    width: inherit;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .balance-withdraw__header img {
    margin-left: 8px;
    margin-bottom: 0;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.dashboard-profile-round-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  border: none;
}
.dashboard-profile-round-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
}
.dashboard-profile-round-button_primary .dashboard-profile-round-wrapper {
  background: #00c26f;
}
.dashboard-profile-round-button_primary .dashboard-profile-round-wrapper:hover {
  background: #00a451;
}
.dashboard-profile-round-button_primary
  .dashboard-profile-round-wrapper:active {
  background: #00903d;
}
.dashboard-profile-round-button_primary
  .dashboard-profile-round-wrapper:disabled {
  background: #9696a5;
}
.dashboard-profile-round-button_secondary .dashboard-profile-round-wrapper {
  background: #f6f4f8;
}
.dashboard-profile-round-button_secondary
  .dashboard-profile-round-wrapper:hover {
  background: #e6f9f1;
}
.dashboard-profile-round-button_secondary
  .dashboard-profile-round-wrapper:active {
  background: #d0f9e8;
}
.dashboard-profile-round-button_secondary
  .dashboard-profile-round-wrapper:disabled {
  background: #f6f4f8;
}
.dashboard-profile-round-button__text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #2b2b37;
}
.pro-balance-page__section {
  padding-left: 0;
  padding-right: 0;
}
.pro-balance-page__balance-table {
  margin: 24px 0 0 0;
}
.pro-balance-page__loader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-balance {
  display: flex;
  flex-direction: column;
  gap: 16px 32px;
  width: 100%;
}
.pro-balance__assets-controls {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  border-bottom: solid 1px #e5e5e9;
}
.pro-balance__buttons-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.pro-balance__icon-button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pro-balance__icon-button:hover:not(.pro-balance__icon-button_disabled) {
  opacity: 0.7;
}
.pro-balance__icon-button_disabled {
  opacity: 0.5;
  cursor: default;
}
.pro-balance__icon-button_hidden {
  opacity: 0;
  visibility: hidden;
  width: 0;
  margin-right: -24px;
}
.pro-balance__switcher-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.pro-balance__switcher-wrapper_hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}
.pro-balance__switcher {
  width: 48px;
  height: 24px;
}
.pro-balance__switcher span {
  width: 18px;
  height: 18px;
  top: 3px;
}
.pro-balance__switcher.switcher_enabled:after {
  left: calc(50% + 3px);
}
.pro-balance__search-container {
  position: absolute;
  top: 12px;
  left: 0;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s ease;
  margin-left: 56px;
  z-index: 1;
  height: 24px;
}
.pro-balance__search-container_visible {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.pro-balance__search-input-wrapper {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 20px;
  line-height: 1;
  flex: 1;
  max-width: 100%;
}
.pro-balance__search-input-wrapper .search-field__input {
  height: 20px;
  font-size: 14px;
  outline: none;
  min-width: 0;
  padding: 0;
  border: none;
  margin-bottom: 0;
  border-radius: 0;
  background: none;
  max-width: 100%;
  color: #2b2b37;
  font-weight: 400;
}
.pro-balance__search-input-wrapper .search-field__input::-moz-placeholder {
  color: #6a6a7f;
}
.pro-balance__search-input-wrapper .search-field__input::placeholder {
  color: #6a6a7f;
}
.pro-balance__close-search {
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.pro-balance__close-search:hover {
  opacity: 1;
}
.pro-balance__filter-button {
  position: relative;
}
.balance-deposit__content_bp .balance-deposit__warning-fee {
  margin-top: auto;
}
.pro-balance__filter-dropdown {
  position: absolute;
  top: 30px;
  left: 38px;
  width: 212px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #e5e5e9;
  box-shadow: 0 0 4px 0 rgba(43, 43, 54, 0.2);
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pro-balance__filter-dropdown-header {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 16px 16px 4px;
  justify-content: space-between;
  margin: 0;
  list-style-type: none;
}
.pro-balance__filter-dropdown-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  letter-spacing: 0.4px;
}
.pro-balance__filter-dropdown-close {
  width: 20px;
  height: 20px;
}
.pro-balance__filter-dropdown-close-icon {
  width: 20px;
  height: 20px;
}
.pro-balance__filter-dropdown-item {
  border-bottom: 1px solid #e5e5e9;
}
.pro-balance__filter-dropdown-item:last-child {
  border-bottom: none;
}
.pro-balance__filter-dropdown-item-button {
  border: none;
  background: none;
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 12px 16px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.pro-balance__filter-dropdown-item-button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.pro-balance__filter-dropdown-item-button:hover {
  background-color: #f8f8f8;
}
.pro-balance__filter-dropdown-item-button:active {
  background-color: #f6f4f8;
}
.pro-balance__filter-dropdown-item-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.pro-balance__filter-dropdown-item-icon {
  width: 16px;
  height: 16px;
}
.pro-balance-table {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pro-balance-assets__pagination {
  margin-top: auto;
  padding-bottom: 24px;
}
.pro-balance-assets__pagination .new-pagination__page-button {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 20px;
}
.pro-balance__loading {
  margin: auto;
}
.bp-trade-transaction-info__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bp-trade-transaction-info__image {
  width: 80px;
  height: 80px;
}
.bp-trade-transaction-info__title {
  color: #00c26f;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.bp-trade-transaction-info__id-wrapper {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}
.bp-trade-transaction-info__id-text {
  color: #6a6a7f;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.bp-trade-transaction-info__header .new-stepper-transaction-id {
  margin: 0;
}
.pro-balance .balance-withdraw {
  height: 100%;
  min-height: unset;
}
.pro-balance .balance-withdraw__header {
  display: none;
}
.pro-balance .balance-withdraw__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 548px;
  width: 100%;
}
.pro-balance .balance-withdraw__button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.pro-balance .balance-withdraw__back-button {
  background-color: rgba(0, 0, 0, 0);
  border: solid 1px #00c26f;
  color: #00c26f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 24px;
  height: 48px;
  position: static;
  border-radius: 8px;
  width: 148px;
}
.pro-balance .balance-withdraw__button {
  margin: 0;
}
.pro-balance .balance-withdraw__amount-field .amount-field__input,
.pro-balance .balance-withdraw__amount-field .amount-field__currency,
.pro-balance .new-stepper-field__input {
  background-color: #fcfcfc;
  border-color: #eae8ed;
}
.pro-balance .balance-withdraw__amount-field .amount-field__input {
  border-right: 1px solid #eae8ed;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 17px 12px 0;
}
.pro-balance .balance-withdraw__amount-field .amount-field__currency {
  padding: 0;
  border: none;
}
.pro-balance .new-stepper-field__placeholder {
  color: #aeb0bd;
  z-index: 2;
}
.pro-balance .balance-withdraw__amount-field .amount-field__title {
  color: #6a6a7f;
  font-weight: 400;
  top: 4px;
  left: 12px;
  font-size: 12px;
  line-height: 16px;
}
.pro-balance .balance-withdraw__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pro-balance .exchange-calculator__light .exchange-calculator--amount-field,
.pro-balance
  .exchange-calculator__light
  .exchange-calculator--estimation-field {
  border-color: #eae8ed;
}
.pro-balance .balance-withdraw__amount-field {
  height: 56px;
  min-height: unset;
}
.pro-page__suspense-wrapper {
  width: 100%;
}
.pro-balance .balance-withdraw__available-title_second {
  display: none;
}
.pro-balance__filter-modal {
  bottom: 0 !important;
  top: unset !important;
  width: 100%;
  height: 348px;
}
.filter-modal-sm {
  padding: 0 !important;
}
.pro-balance__filter-modal-content {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.pro-balance .confirm-trade-exchange__main-button {
  max-width: unset;
}
@media screen and (min-width: 834px) {
  .pro-page__suspense-wrapper {
    width: unset;
  }
  .pro-balance {
    display: grid;
    grid-template-rows: 1092px;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
  }
  .pro-balance .balance-withdraw__amount-field {
    height: 68px;
  }
  .pro-balance .balance-withdraw__amount-field .amount-field__input {
    padding: 18px 16px 0;
    font-size: 24px;
    line-height: 32px;
  }
  .pro-balance .balance-withdraw__amount-field .amount-field__title {
    top: 10px;
    left: 16px;
    font-size: 14px;
  }
  .pro-balance .balance-withdraw__available-title_second {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .pro-balance-page__section {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .pro-balance {
    grid-template-columns: 374px 728px;
    gap: 16px 32px;
  }
}
.verify-kyc-suggestion-modal .clear-modal__paper-sm,
.verify-kyc-suggestion-modal .clear-modal__paper {
  max-width: initial;
  width: auto;
}
.verify-kyc-suggestion-modal__content {
  padding: 48px 16px 40px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.verify-kyc-suggestion-modal__secure-image {
  width: 190px;
  height: 110px;
  margin-top: 36px;
  margin-bottom: 0;
}
.verify-kyc-suggestion-modal__secure-title {
  position: absolute;
  width: 100%;
  top: 0;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  padding: 17px 13px 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  color: #2b2b37;
}
.verify-kyc-suggestion-modal__secure-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  letter-spacing: 0.4px;
  color: #2b2b36;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 0;
}
.verify-kyc-suggestion-modal__advantages-list {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.verify-kyc-suggestion-modal__advantage-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.verify-kyc-suggestion-modal__advantage-icon {
  width: 16px;
  height: 16px;
}
.verify-kyc-suggestion-modal__advantage-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.verify-kyc-suggestion-modal__button {
  width: 100%;
  outline: none;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
  border-radius: 4px;
  background: #00c26f;
  padding: 13px 24px;
  margin-top: 24px;
}
.verify-kyc-suggestion-modal__button_secondary {
  background: none;
  border: 1px solid #00c26f;
  color: #00c26f;
  margin-top: 16px;
}
.verify-kyc-suggestion-modal__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.verify-kyc-suggestion-modal__footer-icon {
  width: 16px;
  height: 16px;
  bottom: 12px;
  left: 7%;
  position: relative;
}
.verify-kyc-suggestion-modal__footer-text {
  margin: 0;
  color: #9c9ca7;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .verify-kyc-suggestion-modal__secure-description,
  .verify-kyc-suggestion-modal__secure-title {
    width: 528px;
  }
}
@media screen and (min-width: 768px) {
  .verify-kyc-suggestion-modal__content {
    padding: 48px 40px 40px 40px;
  }
}
@media screen and (min-width: 321px) {
  .verify-kyc-suggestion-modal__footer-icon {
    bottom: 12px;
    left: 2%;
  }
}
@media screen and (min-width: 390px) {
  .verify-kyc-suggestion-modal__footer-icon {
    left: 4%;
  }
}
@media screen and (min-width: 390px) {
  .verify-kyc-suggestion-modal__footer-icon {
    left: 4%;
  }
  .verify-kyc-suggestion-modal__secure-image {
    width: 190px;
    height: 200px;
    margin-top: 36px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 395px) {
  .verify-kyc-suggestion-modal__footer-icon {
    left: 0;
  }
}
@media screen and (min-width: 404px) {
  .verify-kyc-suggestion-modal__footer-icon {
    left: 2%;
  }
}
@media screen and (min-width: 425px) {
  .verify-kyc-suggestion-modal__footer-icon {
    left: 3%;
  }
}
@media screen and (min-width: 435px) {
  .verify-kyc-suggestion-modal__footer-icon {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .verify-kyc-suggestion-modal__secure-title {
    padding: 17px;
  }
  .verify-kyc-suggestion-modal__footer-icon {
    display: block;
  }
  .verify-kyc-suggestion-modal__secure-description {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .verify-kyc-suggestion-modal__advantage-text {
    font-size: 20px;
    line-height: 28px;
  }
  .verify-kyc-suggestion-modal__footer-text {
    text-align: left;
  }
  .verify-kyc-suggestion-modal__secure-image {
    margin: 24px 0;
  }
  .verify-kyc-suggestion-modal__advantages-list {
    gap: 16px;
  }
}
.subscription-history-table__status {
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  letter-spacing: 0.1px;
  color: #a4a3aa;
  background: #f6f6f7;
}
.subscription-history-table__status_active {
  background: #e6f9f1;
  color: #00c26f;
}
.subscription-history-table__tr {
  border-bottom: 1px solid #e5e5e9;
}
.subscription-history-table__td {
  font-weight: 400;
  color: #2b2b37;
  font-size: 16px;
  text-transform: capitalize;
  padding: 11px 24px;
  line-height: 24px;
}
.subscription-history-table__td.subscription-history-table__td_lowercase {
  text-transform: lowercase;
}
.subscription-history-table__td.subscription-history-table__td_date {
  color: #9696a5;
}
.subscription-history-table__td.subscription-history-table__td_status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscription-history-table {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
  border: none;
}
.subscription-history-table__table {
  width: 100%;
}
.subscription-history-table__empty-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 304px;
  gap: 16px;
}
.subscription-history-table__empty-placeholder-image {
  width: 174px;
  height: 104px;
}
.subscription-history-table__empty-placeholder-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.34px;
  text-align: center;
  color: #9c9ca7;
}
.subscription-history-table__box {
  overflow-x: auto;
  min-height: 304px;
}
.subscription-history-table__box.subscription-history-table__box_full-size {
  min-height: 748px;
}
.subscription-history-table__pagination {
  padding-top: 4px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
}
.subscription-history-table__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  padding: 16px 16px 8px;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
}
.subscription-history-table__header {
  font-weight: normal;
  color: #9696a5;
  font-size: 14px;
  line-height: 20px;
  border: none;
  width: 21.25%;
  min-width: 50vw;
  padding: 16px 16px 12px 24px;
  text-align: left;
}
html[dir="rtl"] .subscription-history-table__header {
  text-align: right;
}
.subscription-history-table__header:last-child {
  width: 15%;
}
@media screen and (min-width: 380px) {
  .subscription-history-table__header {
    min-width: 33.3vw;
  }
}
@media screen and (min-width: 576px) {
  .subscription-history-table__header {
    min-width: auto;
  }
}
@media screen and (min-width: 992px) {
  .subscription-history-table__box.subscription-history-table__box_full-size {
    min-height: 520px;
  }
}
.pricing-deposit {
  background-color: #fff;
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
}
.pricing-deposit__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #2b2b37;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 16px 8px;
  margin: 0;
}
.pricing-deposit__deposit-section {
  padding: 16px 16px 24px;
}
.pricing-page {
  margin-top: 24px;
  padding-left: 0;
  padding-right: 0;
}
.pricing-page__history-table {
  margin-top: 16px;
}
.pricing-page__faq {
  margin-top: 24px;
}
.pricing-page__faq-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #bfbfc3;
  margin: 0;
  padding: 0;
  max-width: 300px;
}
.pricing-page__faq .crypto-loan-faq-chapter {
  margin-top: 24px;
}
.pricing-page__faq .crypto-loan-faq-chapter__questions {
  margin-top: 0;
}
.pricing-page__deposit-modal button[aria-label="close"] {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  top: 16px;
  right: 16px;
}
.pricing-page__deposit-modal button[aria-label="close"] svg {
  fill: #cbcacf;
}
@media (min-width: 768px) {
  .pricing-page__deposit-modal button[aria-label="close"] {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-radius: 0;
    top: 12px;
    right: 12px;
  }
}
@media screen and (min-width: 992px) {
  .pricing-page {
    margin-top: 0;
  }
  .pricing-page__faq {
    margin-top: 48px;
    padding: 0;
  }
  .pricing-page__faq-title {
    max-width: none;
  }
}
.black-friday__title {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  max-width: 80%;
}
.black-friday__content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  padding: 12px 0 32px;
  margin: 0;
}
.black-friday__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 0;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.christmas-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.christmas-content::before {
  content: "";
  position: absolute;
  background-image: url(02822578e090f617322c.svg);
  background-position: right;
  background-repeat: no-repeat;
  transform: rotate(10deg);
  top: -22px;
  right: -9px;
  width: 439px;
  height: 130px;
}
.christmas-content__title {
  padding-left: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  z-index: 1;
}
.christmas-content__block {
  margin-top: 12px;
  padding: 0 16px;
}
.christmas-content__block-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
  padding: 0;
  margin: 0;
  list-style: none;
}
.christmas-content__block-dates {
  display: flex;
  max-width: 193px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 12px;
  border: 1px solid #dce2ea;
  margin-bottom: 20px;
}
.christmas-content__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 28px 0 20px;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.christmas-content__block-info-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0 26px;
}
.christmas-content__block-info-rule {
  padding-left: 26px;
  text-indent: -26px;
}
.christmas-content__social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.christmas-content__blog-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
  color: #2b2b37;
}
.christmas-content__blog-link:hover {
  color: #00c26f;
}
.christmas-content__blog-link:visited {
  color: #2b2b37;
}
.christmas-content__blog-link:focus {
  color: #2b2b37;
}
.christmas-content__social-text {
  font-size: 16px;
  line-height: 24px;
  color: #9696a5;
  margin-right: 8px;
}
.christmas-content__social-link {
  margin-right: 8px;
}
.christmas-content__social .christmas-content__social-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 576px) {
  .christmas-content__title {
    align-self: center;
  }
  .christmas-content__block {
    padding: 24px 48px 16px;
    border-top: 1px solid #f0f0f0;
  }
  .christmas-content::after {
    content: "";
    position: absolute;
    background-image: url(3e8d4c07dc910fbe1847.svg);
    background-position: right;
    background-repeat: no-repeat;
    top: -55px;
    left: -103px;
    width: 439px;
    height: 130px;
  }
}
.january-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.january-content__title {
  padding-left: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2b2b37;
  z-index: 1;
}
.january-content__block {
  margin-top: 12px;
  padding: 0 16px;
}
.january-content__block-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2b2b36;
  padding: 0;
  margin: 0;
  list-style: none;
}
.january-content__block-dates {
  display: flex;
  max-width: 193px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2b2b36;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 12px;
  border: 1px solid #dce2ea;
  margin-bottom: 20px;
}
.january-content__button {
  background-color: #00c26f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 15px 0;
  margin: 28px 0 20px;
  width: 100%;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.january-content__block-info-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0;
  text-indent: 0;
  list-style: none;
  padding-left: 0;
}
.january-content__block-info-point {
  position: relative;
  padding-left: 26px;
}
.january-content__block-info-point::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #00c26f;
  border-radius: 50%;
}
.january-content__block-info-rule {
  padding-left: 26px;
  text-indent: -26px;
}
.january-content__block-info-rule span {
  margin-bottom: 8px;
}
.january-content__social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.january-content__blog-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
  color: #9696a5;
  position: relative;
  padding-right: 22px;
}
.january-content__blog-link:hover {
  color: #00c26f;
}
.january-content__blog-link:visited {
  color: #2b2b37;
}
.january-content__blog-link:focus {
  color: #2b2b37;
}
.january-content__blog-link::before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-55%);
  right: -4px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-image: url(261b0c6b4131670cb2e6.svg);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.january-content__blog-link:hover::before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-55%);
  right: -4px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-image: url(f0bff8b773cf20c5d3c2.svg);
}
.january-content__social-text {
  font-size: 16px;
  line-height: 24px;
  color: #9696a5;
  margin-right: 8px;
}
.january-content__social-link {
  margin-right: 8px;
}
.january-content__social .january-content__social-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 576px) {
  .january-content__title {
    align-self: center;
  }
  .january-content__block {
    padding: 24px 48px 16px;
    border-top: 1px solid #f0f0f0;
  }
}
.pro-modal {
  display: none;
  position: fixed;
  width: 100vw;
  bottom: -100%;
  z-index: 1002;
  background-color: #fff;
  transition: bottom 1s ease-in-out;
  padding: 16px 0;
  border-radius: 10px 10px 0 0;
}
.pro-modal_open {
  display: block;
  bottom: 0;
}
.pro-modal__close-button {
  position: absolute;
  top: 10px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  z-index: 100;
}
.pro-modal-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.pro-modal-container.pro-modal_overlay::before {
  display: block;
}
@media screen and (min-width: 576px) {
  .pro-modal {
    width: auto;
    padding: 16px 0;
    border-radius: 10px;
    max-width: 656px;
    min-width: 550px;
  }
  .pro-modal_open {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.staking-stats-balance {
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 16px;
}
.staking-stats-balance__title {
  padding: 0 16px 10px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 24px;
  line-height: 28.13px;
  font-weight: 400;
  color: #2b2b37;
  width: 100%;
  opacity: 1;
}
.staking-stats-balance__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 27px 0 16px;
}
.staking-stats-balance__info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.staking-stats-balance__info-block-img-wrapper {
  width: 48px;
  height: 48px;
}
.staking-stats-balance__info-block:first-child {
  margin-bottom: 16px;
}
.staking-stats-balance__info-block-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.27px;
  margin: 0;
}
.staking-stats-balance__info-block:first-child
  .staking-stats-balance__info-block-title {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
}
.staking-stats-balance__info-block-span {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.4px;
  font-weight: 400;
  color: #808086;
}
@media screen and (min-width: 768px) {
  .staking-stats-balance {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .staking-stats-balance__title {
    padding: 0 24px 10px;
  }
  .staking-stats-balance__info {
    padding: 16px 24px;
  }
}
.range-input {
  position: relative;
}
.range-input__range {
  position: absolute;
  top: 50px;
  left: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  outline: none;
  cursor: pointer;
  padding: 0;
  border-radius: 3px;
  border: none;
  background: linear-gradient(
    to right,
    #00c26f var(--progress),
    #00c26f var(--progress),
    #c3c3c3 var(--progress),
    #c3c3c3 100%
  );
  margin: 0;
}
.range-input__range::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 0;
  border: none;
}
.range-input__range::-moz-range-track {
  height: 3px;
  border-radius: 0;
  border: none;
}
.range-input__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #00c26f;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-top: -5px;
}
.range-input__range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #00c26f;
  border-radius: 50%;
  cursor: pointer;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-top: -5px;
}
.range-input__number {
  width: 100%;
  -moz-appearance: textfield;
  outline: none;
  border-radius: 5px 5px 0 0;
  margin: 0;
  padding: 20px 18px 4px;
  background-color: rgba(0, 0, 0, 0);
}
.range-input__number::-webkit-inner-spin-button,
.range-input__number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.range-input__number-span {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 18px;
  color: #9696a5;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.range-input__number-label {
  position: absolute;
  left: 18px;
  top: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: #9696a5;
}
.staking-stats-deposit {
  box-shadow: 0px 5px 10px 0px rgba(43, 43, 54, 0.0392156863);
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: -webkit-fill-available;
  white-space: nowrap;
}
.staking-stats-deposit__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 16px 6px;
}
.staking-stats-deposit__title {
  font-size: 24px;
  line-height: 28.13px;
  font-weight: 400;
  color: #2b2b37;
  margin: 0;
  opacity: 1;
}
.staking-stats-deposit__timer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.staking-stats-deposit__timer-span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #9696a5;
}
.staking-stats-balance__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 27px 0 16px;
}
.staking-stats-deposit__timer-days {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 8px;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(78, 161, 245, 0.3) 0%,
    rgba(92, 149, 244, 0.3) 19.02%,
    rgba(130, 120, 242, 0.3) 55.12%,
    rgba(142, 111, 242, 0.3) 65.29%,
    rgba(138, 128, 232, 0.3) 71.78%,
    rgba(129, 173, 209, 0.3) 84.69%,
    rgba(118, 234, 177, 0.3) 100%
  );
}
.staking-stats-deposit__timer-days::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #4ea1f5 0%,
    #5c95f4 19.02%,
    #8278f2 55.12%,
    #8e6ff2 65.29%,
    #8a80e8 71.78%,
    #81add1 84.69%,
    #76eab1 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: 1;
}
.staking-stats-deposit__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 27px 0 16px;
  width: 100%;
}
.staking-stats-deposit__main-deposit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.staking-stats-deposit__main-info {
  margin: 0;
  margin-left: 20px;
  padding: 0;
  list-style: none;
}
.staking-stats-deposit__main-info-item {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 8px;
  position: relative;
}
.staking-stats-deposit__main-info-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  width: 12px;
  height: 12px;
  background-image: url(5ab452b8bea95d09ff81.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.staking-stats-deposit__main-deposit-range-input {
  width: -webkit-fill-available;
  position: relative;
  margin-bottom: 24px;
}
.staking-stats-deposit__main-deposit-range-input .range-input__number {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.staking-stats-deposit__main-deposit-button {
  border: none;
  border-radius: 6px;
  background-color: #00c26f;
  padding: 13px 29px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
@media screen and (min-width: 431px) {
  .staking-stats-deposit__header {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .staking-stats-deposit__main-deposit {
    flex-direction: row;
  }
  .staking-stats-deposit__main-deposit-range-input {
    margin-right: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .staking-stats-deposit__header {
    padding: 0 24px 6px;
  }
  .staking-stats-deposit__main {
    padding: 16px 24px;
  }
}
.staking-stats {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .staking-stats {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
}
.staking-calc {
  width: 100%;
  background-color: #2b2b36;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.staking-calc__main {
  width: -webkit-fill-available;
}
.staking-calc__main-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.13px;
  color: #fff;
  margin: 0 0 12px;
  opacity: 1;
}
.staking-calc__main-description {
  color: #f4f4f5;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.staking-calc__main-range-input {
  margin: 16px 0 15px;
}
.staking-calc__main-range-input:last-of-type {
  margin-bottom: 28px;
  margin-top: 0;
}
.staking-calc__main-range-input .range-input__number {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border: 1px solid #40404a;
}
.staking-calc__main-range-input .range-input__range {
  background: linear-gradient(
    to right,
    #00c26f var(--progress),
    #00c26f var(--progress),
    #616174 var(--progress),
    #616174 100%
  );
}
.staking-calc__progress-bar-container {
  width: 291px;
  height: 291px;
  position: absolute;
  bottom: 150px;
}
.staking-calc__progress-bar {
  width: inherit;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
      closest-side,
      #2b2b36 85%,
      transparent 86% 100%,
      white 0
    ),
    conic-gradient(#00c26f calc(var(--progress-value) * 1%), #e0e0e0 0);
  transition: background 0.2s ease-in-out;
}
.staking-calc__progress-bar::before {
  transition: background 0.2s ease-in-out;
}
.staking-calc__progress-bar-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
}
.staking-calc__progress-bar-info {
  position: absolute;
  content: "";
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.staking-calc__progress-bar-amount {
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
}
.staking-calc__progress-bar-amount_usd {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}
.staking-calc__progress-bar-title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.staking-calc__progress-bar-apy {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
.staking-calc__main-span {
  display: inline-block;
  width: 100%;
  margin: 12px 0 0;
  color: #bfbfc3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.staking-calc__main-span a:hover {
  color: #00c26f;
  text-decoration: underline;
}
.staking-calc__main-button {
  border: none;
  border-radius: 6px;
  background-color: #00c26f;
  padding: 13px 40px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  width: 100%;
  margin: 319px 0 0;
}
@media screen and (min-width: 455px) {
  .staking-calc__progress-bar-container {
    bottom: 130px;
  }
}
@media screen and (min-width: 768px) {
  .staking-calc__main-range-input {
    margin-top: 28px;
  }
  .staking-calc__main {
    margin-right: 85px;
  }
  .staking-calc {
    flex-direction: row;
  }
  .staking-calc__main-button {
    width: auto;
    margin: 0;
  }
  .staking-calc__progress-bar-container {
    position: relative;
    bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .staking-calc__main-range-input {
    margin-right: 60px;
  }
}
.ordinary-table__status {
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  letter-spacing: 0.1px;
  color: #a4a3aa;
  background: #f6f6f7;
}
.ordinary-table__status.ordinary-table__status_green {
  background: #e6f9f1;
  color: #00c26f;
}
.ordinary-table__status.ordinary-table__status_orange {
  background: #f9f0e7;
  color: #f39321;
}
.ordinary-table__status.ordinary-table__status_grey {
  background: #f6f6f7;
  color: #a4a3aa;
}
.ordinary-table__status_active {
  background: #e6f9f1;
  color: #00c26f;
}
.ordinary-table__tr {
  border-bottom: 1px solid #e5e5e9;
}
.ordinary-table__td {
  font-weight: 400;
  color: #2b2b37;
  font-size: 16px;
  text-transform: capitalize;
  padding: 11px 24px;
  line-height: 24px;
}
.ordinary-table__td.ordinary-table__td_date {
  color: #9696a5;
}
.ordinary-table__td.ordinary-table__td_status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .ordinary-table__tr:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }
}
.ordinary-table__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
.ordinary-table__button {
  display: flex;
  color: #00c26f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  padding-right: 36px;
  padding-top: 20px;
  white-space: nowrap;
}
.ordinary-table__button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #00c26f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.ordinary-table__button:hover::before {
  transform: scaleX(1);
}
.ordinary-table__button::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 21px;
  width: 8px;
  height: 8px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  margin: auto;
}
.ordinary-table__title {
  font-size: 24px;
  line-height: 28px;
  color: #2b2b37;
  padding: 16px 16px 8px;
  margin: 0;
  font-weight: 400;
}
.ordinary-table {
  background: #fff;
  border: none;
  border-radius: 8px;
  padding-bottom: 24px;
}
.ordinary-table__table-box {
  min-height: auto;
  overflow-x: auto;
}
.ordinary-table__table {
  width: 100%;
}
th.ordinary-table__table-header {
  font-weight: normal;
  color: #9696a5;
  font-size: 14px;
  line-height: 20px;
  border: none;
  width: 21.25%;
  min-width: 50vw;
  padding: 16px 16px 12px 24px;
  text-align: left;
}
html[dir="rtl"] th.ordinary-table__table-header {
  text-align: right;
}
th.ordinary-table__table-header:last-child {
  width: 15%;
}
.MuiTableHead-root {
  border-bottom: 1px solid #e0e0e0;
}
.MuiTypography-body2,
.MuiTablePagination-input {
  font-size: 12px !important;
}
.MuiSvgIcon-root {
  font-size: 20px !important;
  color: #9e9e9e !important;
}
.MuiToolbar-root p:nth-child(2),
.MuiToolbar-root div:nth-child(3) {
  display: none !important;
}
.value-loader {
  animation-name: value-loader-rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.ordinary-table__empty-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 304px;
  gap: 16px;
}
.ordinary-table__empty-placeholder-image {
  width: 174px;
  height: 104px;
}
.ordinary-table__empty-placeholder-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.34px;
  text-align: center;
  color: #9c9ca7;
}
@keyframes value-loader-rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 992px) {
  .ordinary-table__table-box {
    min-height: 304px;
  }
  .ordinary-table__table-box.ordinary-table__table-box_full-size {
    min-height: 520px;
  }
}
@media screen and (min-width: 380px) {
  th.ordinary-table__table-header {
    min-width: 33.3vw;
  }
}
@media screen and (min-width: 576px) {
  th.ordinary-table__table-header {
    min-width: auto;
  }
}
: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-token-accordion {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  transition: background-color 0.6s ease;
  padding: 0 38px 0 0;
  text-align: left;
  justify-content: space-between;
  position: relative;
}
.now-token-accordion__article {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.now-token-accordion:focus {
  outline: none;
}
.now-token-accordion__title {
  color: #2b2b36;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}
.now-token-accordion__content {
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  color: #000;
  max-height: 0;
}
.now-token-accordion__text p {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #808086;
  margin: 8px 0 0;
  opacity: 1;
}
.now-token-accordion__text p:first-child {
  margin-top: 0;
}
.now-token-accordion__text *:first-child {
  padding-top: 8px;
}
.now-token-accordion__icon {
  color: #00c26f;
  width: 16px;
  height: auto;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  margin-left: auto;
  transition: transform 0.2s ease;
}
.now-token-accordion_shown .now-token-accordion__icon {
  transform: rotate(45deg);
}
.now-token-accordion_shown .now-token-accordion__content,
html.no-js .now-token-accordion__content {
  max-height: 1000px;
}
@media (min-width: 768px) {
  .now-token-accordion__article {
    padding: 21px;
  }
  .now-token-accordion__title {
    font-size: 21px;
    line-height: 25px;
  }
  .now-token-accordion__text {
    padding-left: 20px;
    max-width: 80%;
  }
  .now-token-accordion__text p {
    font-size: 15px;
    line-height: 18px;
  }
  .now-token-accordion__text *:first-child {
    padding-top: 16px;
  }
  .now-token-accordion__text *:last-child {
    padding-bottom: 8px;
  }
  .now-token-accordion__icon {
    top: 3px;
  }
}
: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;
}
.staking-qa-accordion {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  transition: background-color 0.6s ease;
  padding: 0 38px 0 0;
  text-align: left;
  justify-content: space-between;
  position: relative;
}
.staking-qa-accordion__article {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.staking-qa-accordion:focus {
  outline: none;
}
.staking-qa-accordion__title {
  color: #2b2b36;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}
.staking-qa-accordion__content {
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.1s ease;
  color: #000;
}
.staking-qa-accordion__text p {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #808086;
  margin: 8px 0 0;
  opacity: 1;
}
.staking-qa-accordion__text p:first-child {
  margin-top: 0;
}
.staking-qa-accordion__text *:first-child {
  padding-top: 8px;
}
.staking-qa-accordion__icon {
  color: #00c26f;
  width: 16px;
  height: auto;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  margin-left: auto;
  transition: transform 0.2s ease;
}
.staking-qa-accordion_shown .staking-qa-accordion__icon {
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .staking-qa-accordion__article {
    padding: 21px;
  }
  .staking-qa-accordion__title {
    font-size: 21px;
    line-height: 25px;
  }
  .staking-qa-accordion__text {
    padding-left: 20px;
    max-width: 80%;
  }
  .staking-qa-accordion__text p {
    font-size: 15px;
    line-height: 18px;
  }
  .staking-qa-accordion__text *:first-child {
    padding-top: 16px;
  }
  .staking-qa-accordion__text *:last-child {
    padding-bottom: 8px;
  }
  .staking-qa-accordion__icon {
    top: 3px;
  }
}
.staking-qa {
  background: #fff;
  box-shadow: 2px 4px 21px rgba(43, 43, 54, 0.05);
  border-radius: 8px;
}
.staking-qa__item:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.staking-page {
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.staking-page__block {
  margin-bottom: 16px;
}
.staking-page__block:nth-child(1) {
  order: 1;
}
.staking-page__block:nth-child(2) {
  order: 2;
}
.staking-page__block:nth-child(3) {
  order: 3;
}
.staking-page__block:nth-child(4) {
  order: 4;
}
.staking-page__block.staking-page__block_moved {
  order: 4;
}
.staking-page__block-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #2b2b37;
  margin: 40px 0 24px;
  opacity: 1;
}
@media screen and (min-width: 576px) {
  .staking-page {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .staking-page {
    margin-top: 0;
  }
  .staking-page__block-title {
    margin-top: 48px;
  }
}
.pro-modal-ui {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
div.pro-modal__paper-sm,
div.pro-modal__paper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  max-height: 100%;
  height: 100%;
}
.pro-modal__icon-close {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
}
.pro-modal__content {
  padding: 16px 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  div.pro-modal__paper-sm,
  div.pro-modal__paper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    width: auto;
    max-width: 90%;
    max-height: 90%;
    height: auto;
  }
}
.dashboard-settings-tx-nottification__span {
  color: #9696a5;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
a.dashboard-settings-tx-nottification__span:hover {
  color: #00c26f;
}
.dashboard-settings-tx-notification__info {
  padding: 16px 0 24px;
}
.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;
}
.premium-tooltip-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.premium-tooltip-icon-wrapper {
  position: relative;
  width: 12px;
  height: 12px;
}
.premium-tooltip-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 12px;
  background-image: url(bdb26c108692e62f34e7.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  cursor: pointer;
}
.premium-tooltip-icon .dashboard-profile-stats-tooltip__element.simple-tooltip {
  top: 50%;
  right: initial;
  left: 20px;
  transform: translateY(-50%);
  padding: 5px;
}
.premium-tooltip-icon.premium-tooltip-icon_left
  .dashboard-profile-stats-tooltip__element.simple-tooltip {
  right: calc(100% + 10px);
  left: initial;
}
.premium-tooltip-icon
  .dashboard-profile-stats-tooltip__element.simple-tooltip::after {
  display: none;
}
.premium-tooltip-icon
  .dashboard-profile-stats-tooltip__element.simple-tooltip
  .simple-tooltip__content {
  font-size: 12px;
}
.pro-header {
  display: flex;
  padding: 0 16px;
  flex-direction: row;
  gap: 36px;
  height: 76px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 2;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.pro-header_visible {
  transform: translateY(0);
}
.pro-header__left-part {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}
.pro-header__logo {
  width: 102px;
  height: 32px;
}
.pro-header__tab {
  border: none;
  background-color: #fff;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.pro-header__tab_active {
  border-bottom: 2px solid #00c26f;
  background-color: #f8f8f8;
}
.pro-header__tab:hover .pro-header__tab-icon path {
  fill: #00c26f;
}
.pro-header__tab-icon {
  transition: transform ease 0.2s;
}
.pro-header__tab:hover .pro-header__tab-icon {
  transform: rotate(-180deg);
}
.pro-header__tab-icon_hover {
  transform: rotate(-180deg);
}
.pro-header__nav-tabs {
  display: none;
  margin-top: -2px;
}
.pro-header__tab-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #2b2b37;
}
.pro-header__tab:hover .pro-header__tab-text {
  color: #00c26f;
}
.pro-header__tab-text_hover {
  color: #00c26f;
}
.pro-header__right-part {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.pro-header__icon {
  width: 24px;
  height: 24px;
}
.pro-header__button {
  padding: 10px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
}
.pro-header__button:hover .pro-header__icon path {
  stroke: #00c26f;
}
.pro-header__button:active .pro-header__icon path {
  stroke: #00a451;
}
.pro-header__button_active .pro-header__icon path {
  stroke: #00a451;
}
.pro-header__more-dropdown {
  width: 164px;
  z-index: 100;
  top: 73px;
}
.pro-header__profile-dropdown {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  top: 55px;
}
.pro-header__profile-dropdown .pro-header-dropdown__item:nth-child(2) {
  margin-bottom: 8px;
  position: relative;
}
.pro-header__profile-dropdown .pro-header-dropdown__item:nth-child(2):after {
  content: "";
  height: 1px;
  width: calc(100% - 32px);
  background-color: #eae8ed;
  position: absolute;
  bottom: -8px;
}
.pro-header__profile-dropdown .pro-header-dropdown__item:nth-child(3) {
  margin-top: 8px;
}
.pro-header__help-dropdown {
  width: 140px;
  top: 55px;
}
.pro-header__more-container {
  position: relative;
}
.pro-header__button-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .pro-header {
    gap: 16px;
  }
  .pro-header__left-part {
    gap: 16px;
  }
  .pro-header__tab {
    padding: 28px 12px;
  }
  .pro-header__right-part {
    gap: 0;
    display: flex;
  }
  .pro-header__nav-tabs {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .pro-header {
    padding: 0 40px;
    gap: 36px;
  }
  .pro-header__left-part {
    gap: 36px;
  }
  .pro-header__tab {
    padding: 28px 20px;
  }
  .pro-header__right-part {
    gap: 8px;
  }
  .pro-header__profile-dropdown {
    width: 300px;
  }
}
.pro-mobile-qr {
  display: none;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #eae8ed;
  transition: all 0.3s ease;
  border-radius: 6px;
  background: #f8f8f8;
  margin: 0;
  cursor: pointer;
}
.pro-mobile-qr:hover {
  border-color: #00c26f;
}
.pro-mobile-qr_active {
  border-color: #00c26f;
}
.pro-mobile-qr__tooltip {
  background-color: #fff;
  border-radius: 9px;
  width: 122px;
  height: 122px;
  padding: 12px;
  border: 2px solid #00c26f;
  z-index: 9;
}
.pro-mobile-qr__tooltip::after {
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  width: 0;
  height: 0;
  border-left: 14px solid rgba(0, 0, 0, 0);
  border-right: 14px solid rgba(0, 0, 0, 0);
  border-top: 14px solid #00c26f;
}
.pro-mobile-qr__tooltip[data-popper-placement*="top"]::after {
  bottom: -14px;
}
.pro-mobile-qr__tooltip[data-popper-placement*="bottom"]::after {
  top: -14px;
  transform: rotateZ(180deg);
}
.pro-mobile-qr__tooltip::before {
  content: "";
  position: absolute;
  left: calc(50% - 11px);
  width: 0;
  height: 0;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  border-top: 12px solid #fff;
  z-index: 8;
}
.pro-mobile-qr__tooltip[data-popper-placement*="top"]::before {
  bottom: -11px;
}
.mobile-qr__tooltip[data-popper-placement*="bottom"]::before {
  top: -11px;
  transform: rotateZ(180deg);
}
.pro-mobile-qr__tooltip-content {
  background-color: #fff;
  width: 96px;
  height: 96px;
  border-radius: 4px;
}
@media screen and (min-width: 992px) {
  .pro-mobile-qr {
    display: flex;
  }
}
.pro-footer__lang-dropdown-wrapper {
  position: relative;
}
.pro-footer__lang-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 8px;
  max-width: 228px;
  width: 170px;
}
.pro-footer__lang-dropdown-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pro-footer__lang-dropdown-text {
  color: #2b2b37;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.pro-footer__lang-dropdown-menu-wrapper {
  position: absolute;
  z-index: 999;
  padding-bottom: 12px;
  bottom: 44px;
  background-color: rgba(0, 0, 0, 0);
}
.pro-footer__lang-dropdown-menu {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid #eae8ed;
  background-color: #f8f8f8;
  max-width: 228px;
  width: 170px;
  padding: 8px 0;
  margin: 0;
}
.pro-footer__lang-dropdown-menu-item {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.pro-footer__lang-dropdown-menu-item-link {
  display: flex;
  flex-direction: row;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0);
  color: #2b2b37;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  justify-content: space-between;
  align-items: center;
}
.pro-footer__lang-dropdown-menu-item-link:hover {
  background-color: #fff;
  color: #2b2b37;
}
.pro-footer__lang-dropdown-icon {
  transition: transform 0.3s ease;
}
.pro-footer__lang-dropdown-icon_active {
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .pro-footer__lang-dropdown {
    width: 228px;
  }
  .pro-footer__lang-dropdown-menu {
    width: 228px;
  }
}
.pro-footer {
  display: block;
  background: #fff;
  padding: 56px 0 110px;
  width: 100%;
  position: relative;
}
.pro-footer__navigation-title {
  font-size: 14px;
  line-height: 20px;
  color: #6a6a7f;
  margin: 0 0 24px;
  font-weight: 500;
  white-space: nowrap;
}
.pro-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;
}
.pro-footer__navigation-list-item:not(:last-of-type) {
  margin-bottom: 16px;
}
.pro-footer__navigation-list-item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #2b2b37;
  line-height: 20px;
  font-size: 14px;
  white-space: normal;
  word-break: break-word;
}
.pro-footer__navigation-list-item a.active-navigation-link {
  color: #56566e;
}
.pro-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: #fff;
  border-radius: 4px;
}
.footer--bottom {
  margin-top: 0;
}
.pro-footer--logotype {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  border-bottom: none;
}
.pro-footer .logotype {
  display: none;
}
.pro-footer .logotype--sub {
  display: none;
}
.pro-footer--social-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0;
  gap: 24px;
  border-top: 1px solid #eae8ed;
  margin: 0 16px;
}
.pro-footer--copyright {
  display: flex;
  justify-content: space-between;
  padding: 28px 16px 0;
  align-items: center;
}
.pro-footer--copyright .copyright {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}
.social-copyright__mobile {
  margin-top: 28px;
}
.pro-footer--copyright-text,
.pro-footer--copyright-description {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6a6a7f;
}
.pro-footer--links {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
}
.pro-footer--bestchange {
  width: 115px;
  margin-bottom: 15px;
}
.pro-footer--bestchange img {
  max-width: 100%;
  height: auto;
  display: block;
}
.pro-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;
}
.pro-footer--mobile-apps > p {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #6a6a7f;
}
.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;
}
.pro-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;
}
.pro-social-icon {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.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: rgba(0, 0, 0, 0);
}
.pro-footer-mobile-apps__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #eae8ed;
  width: calc(50% - 6px);
  padding: 8px 24px;
  border-radius: 8px;
  transition: all ease 0.3s;
  background: #f8f8f8;
  box-sizing: border-box;
  gap: 12px;
  height: 48px;
}
.pro-footer-mobile-apps__link_apple {
  width: 100%;
}
.pro-footer-mobile-apps__link:last-child {
  margin-bottom: 0;
}
.pro-footer-mobile-apps__link:hover {
  border-color: #00c26f;
  box-sizing: border-box;
}
.pro-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 .pro-footer-mobile-apps__link {
  border-color: #363645;
}
.pro-mobile-apps-icons {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.footer .logotype--main {
  margin-inline-end: 10px;
}
.pro-footer--social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 40px;
  height: 40px;
  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;
}
.desktop-footer {
  max-width: 1134px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
@media screen and (max-width: 991px) {
  .social-copyright {
    width: -moz-max-content;
    width: max-content;
    margin-top: 30px;
  }
  .container {
    width: initial;
  }
  .separator {
    display: none;
  }
  .pro-footer--mobile-apps {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin: 0;
    grid-gap: 16px;
    padding: 0 16px;
  }
  .pro-footer--mobile-apps > p {
    margin: 0;
    font-size: 14px;
  }
  .footer--apk-download {
    width: 138px;
    height: 48px;
  }
  .pro-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;
  }
  .pro-footer--accordion section {
    width: 100%;
    border-bottom: 1px solid #eae8ed;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .exchange-pairs-end,
  .pro-footer__navigation-list {
    margin-top: 0 !important;
  }
  .pro-footer--accordion section > a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #6a6a7f;
    align-items: center;
  }
  .pro-footer__navigation-list-item a {
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    position: relative;
  }
  .pro-footer--accordion h2 + div {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }
  .pro-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;
  }
  .pro-footer--accordion section.active .footer--accordion-content {
    display: flex;
    margin-top: 16px;
  }
  .pro-footer--accordion section.active .footer--accordion-toggle__button {
    transform: rotate(45deg);
  }
  .pro-footer__navigation-list_autoheight {
    min-height: unset;
  }
  .nowrap {
    white-space: nowrap;
  }
}
@media (min-width: 410px) {
  .pro-footer--bestchange {
    margin: 0;
  }
}
@media screen and (min-width: 380px) {
  .pro-footer__navigation {
    padding: 0;
  }
  .pro-footer__navigation-item:not(:first-of-type) {
    padding-inline-start: 10px;
  }
}
@media screen and (max-width: 576px) {
  .pro-footer--copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media screen and (min-width: 992px) {
  .pro-footer__navigation-item {
    width: 20%;
  }
  .pro-footer {
    padding: 40px 0;
  }
  .pro-footer .logotype {
    display: block;
  }
  .pro-footer--mobile-apps {
    justify-content: flex-end;
  }
  .pro-footer--mobile-apps > p,
  .pro-footer--mobile-apps {
    margin-top: 0;
    margin-bottom: 0;
  }
  .pro-mobile-apps-icons {
    grid-gap: 24px;
    width: auto;
  }
  .pro-footer-mobile-apps__link {
    width: 48px;
  }
  .pro-footer-mobile-apps__link:last-child {
    margin-inline-end: 0;
  }
  .pro-social-icon {
    width: 24px;
    height: 24px;
  }
  .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;
  }
  .pro-footer__social-copyright {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  .pro-footer__social {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pro-footer__social .pro-footer__navigation-title {
    margin: 0;
  }
  .pro-footer--social-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    border: none;
    margin: 0;
    padding: 0;
  }
  .pro-footer--social {
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 18px;
  }
  .pro-footer--copyright {
    white-space: nowrap;
    padding: 32px 0 0;
  }
  .footer--bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  .pro-footer--logotype {
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 1134px;
    margin: 0 auto 32px;
    padding: 6px 16px 0;
  }
  .pro-footer--logotype::after {
    content: "";
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #eae8ed;
    display: block;
    margin-top: 32px;
  }
  .exchange-pairs-end {
    padding-inline-start: 0;
  }
  .pro-footer__navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .desktop-footer .pro-footer__navigation {
    border-bottom: 1px solid #eae8ed;
    padding-bottom: 32px;
  }
  .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;
  }
  .pro-footer--links {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
  }
  .pro-footer--links .separator {
    display: block;
  }
  .footer--trustpilot-text {
    flex-basis: 100%;
  }
  .footer--trustpilot {
    width: 83px;
    height: 24px;
  }
  .pro-footer .logotype--sub {
    display: block;
  }
  .pro-footer__trustpilot-widget {
    scale: 0.5;
    position: absolute !important;
    left: -250px;
    top: -40px;
  }
  html[dir="rtl"] .pro-footer__trustpilot-widget {
    transform-origin: right;
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .pro-mobile-apps-icons {
    grid-gap: 24px;
  }
  .footer--trustpilot {
    width: 98px;
  }
  .nowrap {
    white-space: nowrap;
  }
  .copyright {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .pro-footer--logotype {
    padding: 6px 0 0;
  }
  .desktop-footer {
    padding: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0.2;
  }
}
.pro-header-dropdown {
  position: absolute;
  display: none;
  flex-direction: column;
  background-color: #fff;
  border: solid 1px #eae8ed;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(43, 43, 54, 0.04);
  z-index: 999;
  overflow: hidden;
  right: 50%;
  transform: translate(50%, 0);
}
.pro-header-dropdown-visible {
  display: flex;
}
.pro-header-dropdown:before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0dc171;
}
.pro-header-dropdown__icon-wrapper {
  width: 20px;
  height: 20px;
}
.pro-header-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
}
.pro-header-dropdown__item_active .pro-header-dropdown__label {
  color: #6a6a7f;
}
.pro-header-dropdown__item:hover {
  background-color: #f8f8f8;
}
.pro-header-dropdown__item:first-child {
  margin-top: 8px;
}
.pro-header-dropdown__item:last-child {
  margin-bottom: 8px;
}
.pro-header-dropdown__label {
  color: #2b2b37;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.pro-header-dropdown__loader {
  height: 20px;
  width: 20px;
}
.pro-header-sub-info {
  justify-content: flex-start;
  padding: 16px;
  background-color: #f8f8f8;
  gap: 8px;
  display: grid;
  grid-template-columns: 36px 1fr;
  margin: 0 16px 8px;
}
.pro-header-sub-info__image-wrapper {
  grid-column: 1;
}
.pro-header-sub-info__level {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 224px;
}
.pro-header-sub-info .level-elipse {
  width: 36px;
  height: 36px;
}
.pro-header-sub-info .dashboard-profile-stats__info {
  gap: 4px;
}
.pro-header-sub-info__email {
  color: #2b2b37;
  font-size: 14px;
  line-height: 18px;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .pro-header-sub-info {
    margin: 0 0 8px;
  }
}
.page_dashboard .header {
  display: none;
}
.page_dashboard .footer {
  display: none;
}
.page_dashboard .exchange-stepper__useful-tips {
  display: flex;
}
.page_dashboard .circular-progress {
  height: calc(100vh - 108px);
  margin-top: 100px;
}
.page_dashboard .warning-api {
  background-color: rgba(0, 0, 0, 0);
}
.page_dashboard .warning-api .warning-api-message {
  background-color: rgba(0, 0, 0, 0);
}
.pro-page__suspense-wrapper {
  min-height: calc(100vh - 108px);
}
.pro-page {
  display: flex;
  flex-direction: column;
  margin: 100px 0 24px;
}
.pro-page__not-found {
  margin-top: 90px;
}
.pro-page__main {
  max-width: 1134px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
.pro-page__main .circular-progress {
  margin-top: 26px;
}
.pro-page__main .exchange-stepper {
  margin-top: 0;
}
.pro-page .pro-page__main .circular-progress {
  margin-top: 0;
}
.pro-page .exchange-stepper .container {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .pro-page {
    margin: 108px 0 32px;
  }
  .page_dashboard .circular-progress {
    margin-top: 108px;
  }
  .pro-page .pro-page__main .circular-progress {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .pro-page__main {
    padding: 0;
  }
}
.maintenance-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 480px;
  margin: auto;
  text-align: center;
}
.maintenance-screen__img-wrapper {
  height: 105px;
  width: 174px;
}
.maintenance-screen__content-text {
  color: #6a6a7f;
  font-size: 16px;
  line-height: 24px;
}
.maintenance-screen__content-link {
  color: #00c26f;
  text-decoration: none;
  font-weight: 600;
}
