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

: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;
}
.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);
}
.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;
  }
}
.network-item {
  display: flex;
  align-items: center;
}
.network-item__icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.network-item__texts {
  display: flex;
  flex-direction: column;
}
html[dir="rtl"] .network-item__icon {
  margin-right: 0;
  margin-left: 12px;
}
.network-item__ticker {
  font-size: 14px;
  line-height: 20px;
  color: #2b2b36;
}
.network-item__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #a4a3aa;
}
.network-combobox {
  width: 340px;
  margin-bottom: 16px;
}
.network-combobox.exchange-calculator__network-field
  .combobox--field__dropdown-open {
  right: auto;
  left: 0;
}
.network-combobox.combobox.combobox_open {
  position: relative;
  width: 100%;
}
.network-combobox.exchange-calculator__network-field .combobox--field {
  min-width: 100%;
}
.network-combobox.exchange-calculator__network-field .combobox--dropdown__open {
  width: 100%;
}
.network-combobox__dropdown-item {
  margin-top: 8px;
}
.network-combobox.combobox__dark .combobox--dropdown-arrow {
  fill: #9696a5;
}
.network-combobox__selected-item .network-item__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .network-combobox__dropdown-item {
    margin-top: 12px;
  }
}
.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;
}
.exchange-blockchain-calculator {
  position: relative;
  border-radius: 12px;
}
.exchange-calculator__network-field {
  position: relative;
  margin-bottom: 8px;
  background-color: #3e3e58;
  border: 1px solid #46475d;
  border-radius: 8px;
  height: 40px;
  width: 100%;
  padding-left: 16px;
}
.exchange-blockchain-calculator__recipient-field
  .new-stepper-field__wrapper-input {
  background-color: #3e3e58;
  border: 1px solid #46475d;
}
.exchange-blockchain-calculator__recipient-field .new-stepper-field__input {
  color: #fff;
}
.new-stepper-button-mt.exchange-blockchain-calculator__exchange-button {
  margin-top: 16px;
}
.exchange-blockchain-calculator__sub-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #808086;
}
.exchange-calculator__fields-section__amount {
  margin-top: 0;
}
.exchange-blockchain-calculator .new-stepper-body {
  border-radius: 12px;
}
.exchange-blockchain-calculator__swap-button {
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .exchange-blockchain-calculator .exchange-calculator .combobox--dropdown {
    width: 100%;
  }
  .exchange-blockchain-calculator
    .network-combobox.exchange-calculator__network-field
    .combobox--field {
    width: 100%;
  }
  .exchange-blockchain-calculator
    .exchange-calculator
    .combobox--field__dropdown-open {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .exchange-blockchain-calculator
    .exchange-calculator
    .combobox--field__dropdown-open {
    width: 342px;
  }
  .exchange-blockchain-calculator
    .network-combobox.exchange-calculator__network-field
    .combobox--field {
    width: 342px;
  }
}
.swap-faq__accordion {
  border-bottom: 1px solid #3d3d4b;
  padding: 0px;
}
.swap-faq__accordion .accordion {
  background-color: #2b2b36;
  color: #fff;
  padding: 16px 0px;
  gap: 5px;
}
.swap-faq__accordion .accordion__content {
  color: #fff;
  background-color: #2b2b36;
}
.swap-faq__accordion .accordion__content .accordion__text p {
  color: #fff;
}
.swap-faq__accordion .accordion__title {
  display: inline-flex;
  align-items: center;
  color: #fff;
  min-height: 20px;
}
.swap-faq__accordion .accordion__icon-plus {
  background: #fff;
  min-width: 20px;
}
.swap-faq__accordion .accordion__icon-plus:before {
  background: #fff;
}
.swap-faq__accordion-wrapper .swap-faq__accordion:first-child {
  border-top: 1px solid #3d3d4b;
}
.swap-faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 0px;
}
.swap-faq__title {
  color: #fff;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
}
@media screen and (min-width: 992px) {
  .swap-faq__title {
    font-size: 34px;
    line-height: 42px;
  }
  .swap-faq__accordion {
    border-bottom: 1px solid #3d3d4b;
    padding: 0px;
  }
  .swap-faq__accordion .accordion {
    padding: 16px 40px 16px 0px;
  }
  .swap-faq__accordion .accordion__content {
    color: #fff;
    background-color: #2b2b36;
  }
  .swap-faq__accordion .accordion__content .accordion__text p {
    color: #fff;
  }
  .swap-faq__accordion .accordion__title {
    height: 40px;
  }
  .swap-faq__accordion .accordion__icon-plus {
    background: #fff;
  }
  .swap-faq__accordion .accordion__icon-plus:before {
    background: #fff;
  }
}
.swap-page {
  position: relative;
  background-color: #2b2b37;
  padding-top: 32px;
  padding-bottom: 80px;
  z-index: 2;
}
.swap-page__exchange-blockchain-calculator {
  border-radius: 12px;
  max-width: 552px;
  z-index: 1;
  border-image-source: linear-gradient(
    122.29deg,
    #4ea1f5 6.56%,
    #5c95f4 23.84%,
    #8278f2 56.64%,
    #8e6ff2 65.88%,
    #8a80e8 71.78%,
    #81add1 83.5%,
    #76eab1 97.42%
  );
  -webkit-backdrop-filter: blur(26.3px);
  backdrop-filter: blur(26.3px);
  align-self: center;
}
.swap-page__exchange-blockchain-calculator::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    122.29deg,
    #4ea1f5 6.56%,
    #5c95f4 23.84%,
    #8278f2 56.64%,
    #8e6ff2 65.88%,
    #8a80e8 71.78%,
    #81add1 83.5%,
    #76eab1 97.42%
  );
  border-radius: 16px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;
  width: inherit;
}
.swap-page__exchange-blockchain-calculator::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    122.29deg,
    #4ea1f5 6.56%,
    #5c95f4 23.84%,
    #8278f2 56.64%,
    #8e6ff2 65.88%,
    #8a80e8 71.78%,
    #81add1 83.5%,
    #76eab1 97.42%
  );
  border-radius: 16px;
  z-index: -1;
  width: inherit;
}
.swap-page__main-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.swap-page__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 552px;
}
.swap-page__trustpilot-container {
  width: 156px;
  height: 78px;
  align-self: end;
}
.swap-page__trustpilot-container .trustpilot-widget {
  height: 78px;
}
.swap-page__mobile-section {
  display: flex;
  justify-content: space-between;
}
.swap-page__apps-item {
  background: #3e3f57;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-inline-end: 12px;
  border-radius: 50%;
  position: relative;
}
.swap-page__apps {
  display: flex;
  justify-content: space-between;
  height: 40px;
}
.swap-page__apps-item:last-child {
  margin-inline-end: 0;
}
.swap-page__apps-item:hover svg.swap-page__apps-item-icon {
  fill: #00c26f;
}
.swap-page__apps-item-icon {
  position: relative;
}
.swap-page__apps-item-icon.play-market-icon {
  left: 2px;
}
.swap-page__apps-item-icon.app-store-icon {
  top: -2px;
}
.swap-page__apps-item-icon.app-gallery-icon {
  top: -1px;
}
.swap-page__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  color: #fff;
}
.swap-page__description {
  display: none;
  margin: 0;
}
.swap-page .exchange-calculator .combobox--field__dropdown-open {
  border-radius: 12px;
}
.swap-page__exchange-blockchain-calculator .new-stepper-extensions {
  margin-top: 8px;
}
.swap-page__inner-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 80px;
}
@media screen and (min-width: 380px) {
  .swap-page__apps-item {
    margin-inline-end: 16px;
  }
}
@media screen and (min-width: 768px) {
  .swap-page {
    padding-top: 40px;
  }
  .swap-page__exchange-blockchain-calculator {
    width: 552px;
  }
  .swap-page__exchange-blockchain-calculator::before {
    min-height: 569px;
    width: initial;
  }
  .swap-page__exchange-blockchain-calculator::after {
    width: initial;
  }
  .swap-page .exchange-calculator .combobox--field__dropdown-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .swap-page__title {
    font-size: 48px;
    line-height: 56px;
  }
  .swap-page__description {
    display: inline-flex;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.34px;
    text-align: left;
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .swap-page__main-block {
    gap: 30px;
  }
  .swap-page__trustpilot-container {
    align-self: start;
  }
  .swap-page__mobile-section {
    display: none;
  }
  .swap-page__inner-block {
    flex-direction: row;
    gap: 30px;
  }
}
