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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-warning__controls {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.now-button_loading {
  cursor: wait;
}

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

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

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

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

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

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

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

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

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

.logotype--main {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer__navigation {
  padding: 0 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.new-badge {
  position: relative;
}

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

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

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

.footer .logotype {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer--accordion {
  display: none;
}

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

.exchange-pairs {
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

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

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

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

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

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

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

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

  height: auto;

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

.svg-currencies-exchange-sprite--24h {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 0;
  width: 50px;
  height: 48px;
}
.svg-currencies-exchange-sprite--24h-volume {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 51.0204081633% 0;
  width: 48px;
  height: 47px;
}
.svg-currencies-exchange-sprite--7d {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 0 100%;
  width: 48px;
  height: 48px;
}
.svg-currencies-exchange-sprite--coin-supply {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 98.9898989899% 96%;
  width: 47px;
  height: 46px;
}
.svg-currencies-exchange-sprite--market-cap {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 48.9795918367% 92.3076923077%;
  width: 48px;
  height: 44px;
}
.svg-currencies-exchange-sprite--price {
  background: url(d4e29262ca348cf7ed43.svg) no-repeat;
  background-position: 100% 0;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--24h {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 52.3316062176% 12.4309392265%;
  width: 50px;
  height: 48px;
}
.svg-tokens-sprite--7d {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 48.9690721649% 25.9668508287%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--appstore-badge {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 50.6849315068% 0;
  width: 144px;
  height: 45px;
}
.svg-tokens-sprite--bug {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 71.3936430318% 67.5257731959%;
  width: 27px;
  height: 22px;
}
.svg-tokens-sprite--burn {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 76.3157894737% 67.5257731959%;
  width: 18px;
  height: 22px;
}
.svg-tokens-sprite--burn-step-0 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 55.6390977444%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-1 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 49.3150684932% 55.6390977444%;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-2 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 100% 0;
  width: 144px;
  height: 144px;
}
.svg-tokens-sprite--burn-step-3 {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 0;
  width: 148px;
  height: 148px;
}
.svg-tokens-sprite--burning-logo {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 37.5634517766% 26.1838440111%;
  width: 42px;
  height: 51px;
}
.svg-tokens-sprite--circulating-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.3402061856% 25.8953168044%;
  width: 48px;
  height: 47px;
}
.svg-tokens-sprite--coin-supply {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 74.5501285347% 80.2197802198%;
  width: 47px;
  height: 46px;
}
.svg-tokens-sprite--find {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 96.0526315789% 49.3150684932%;
  width: 132px;
  height: 118px;
}
.svg-tokens-sprite--fire {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 61.421319797% 93.6639118457%;
  width: 42px;
  height: 47px;
}
.svg-tokens-sprite--list {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 81.4009661836% 66.4974619289%;
  width: 22px;
  height: 16px;
}
.svg-tokens-sprite--locked-amount {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 38.7434554974% 12.4653739612%;
  width: 54px;
  height: 49px;
}
.svg-tokens-sprite--price {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 62.3711340206% 80.6629834254%;
  width: 48px;
  height: 48px;
}
.svg-tokens-sprite--report {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 0 100%;
  width: 125px;
  height: 118px;
}
.svg-tokens-sprite--reward {
  background: url(02ce0f0c3bb1b44b075a.svg) no-repeat;
  background-position: 39.1849529781% 99.6587030717%;
  width: 117px;
  height: 117px;
}
.svg-swap-sprite--atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.5358255452% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--atomic-blue {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.1526479751% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--ava-coin {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 82.6837060703% 52.3411371237%;
  width: 82px;
  height: 81px;
}
.svg-swap-sprite--awc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 44.7552447552% 55.5979643766%;
  width: 503px;
  height: 491px;
}
.svg-swap-sprite--bnb {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 56.9010416667%;
  width: 512px;
  height: 509px;
}
.svg-swap-sprite--bnb-erc {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.024691358% 42.6282051282%;
  width: 27px;
  height: 29px;
}
.svg-swap-sprite--bnb-mainnet {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 91.341991342% 42.6966292135%;
  width: 30px;
  height: 31px;
}
.svg-swap-sprite--guarda {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 68.7886825818% 0;
  width: 516px;
  height: 380px;
}
.svg-swap-sprite--logo-atomic {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.1315789474% 46.5517241379%;
  width: 127px;
  height: 59px;
}
.svg-swap-sprite--now {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 100% 0;
  width: 353px;
  height: 353px;
}
.svg-swap-sprite--now-black {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 93.769470405% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--now-green {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 96.3862928349% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 0;
  width: 778px;
  height: 437px;
}
.svg-swap-sprite--travala-dark {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 99.0031152648% 45.9109311741%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-left {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.3879781421% 33.2079021637%;
  width: 183px;
  height: 214px;
}
.svg-swap-sprite--travala-light {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 85.7320872274% 50.6882591093%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-logo {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 88.3489096573% 50.6882591093%;
  width: 42px;
  height: 42px;
}
.svg-swap-sprite--travala-right {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 98.3355525965% 32.1493624772%;
  width: 145px;
  height: 179px;
}
.svg-swap-sprite--usdt {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 0 100%;
  width: 360px;
  height: 331px;
}
.svg-swap-sprite--usdt-erc20 {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 90.852520224% 50.606305578%;
  width: 40px;
  height: 40px;
}
.svg-swap-sprite--usdt-omni {
  background: url(6876a3cb1935150b46d6.svg) no-repeat;
  background-position: 94.7498455837% 42.5940752602%;
  width: 28px;
  height: 28px;
}
.svg-lightning-sprite--cross-blockchains {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 68.6141304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--ellipse {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 48.4438430311% 0;
  width: 799px;
  height: 813px;
}
.svg-lightning-sprite--ellipse-green {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-lightning-sprite--ellipse-light {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 100%;
  width: 626px;
  height: 659px;
}
.svg-lightning-sprite--group {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 71.7391304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--lightning {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 0 0;
  width: 716px;
  height: 919px;
}
.svg-lightning-sprite--low-cost {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 74.8641304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--nodes {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 77.9891304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--scalability {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 81.1141304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--stopwatch {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 84.2391304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-lightning-sprite--wallets {
  background: url(789b24ff7ddc5127a8d6.svg) no-repeat;
  background-position: 87.3641304348% 51.8543046358%;
  width: 69px;
  height: 68px;
}
.svg-swap-tokens-sprite--arrow {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 51.9843851659% 84.4660194175%;
  width: 24px;
  height: 30px;
}
.svg-swap-tokens-sprite--atomic {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 3.7061548643% 99.1189427313%;
  width: 50px;
  height: 49px;
}
.svg-swap-tokens-sprite--bnb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 100%;
  width: 56px;
  height: 57px;
}
.svg-swap-tokens-sprite--cake {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 11.5874079035% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--coin {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 70.9888670596% 87.7969762419%;
  width: 34px;
  height: 31px;
}
.svg-swap-tokens-sprite--coins {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.0893098782% 92.3863636364%;
  width: 83px;
  height: 77px;
}
.svg-swap-tokens-sprite--deliver {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 16.1419959812% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--discuss {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 20.6965840589% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--ellipse {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 0;
  width: 799px;
  height: 813px;
}
.svg-swap-tokens-sprite--ellipse-green {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 100% 0;
  width: 762px;
  height: 783px;
}
.svg-swap-tokens-sprite--fb {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 12.5736738703% 97.8260869565%;
  width: 34px;
  height: 37px;
}
.svg-swap-tokens-sprite--mail {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 25.2511721366% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--medium {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 14.8002619515% 97.5081256771%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--now {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 57.0950468541% 88.8524590164%;
  width: 67px;
  height: 42px;
}
.svg-swap-tokens-sprite--partners {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 29.8057602143% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--reddit {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 17.0268500327% 97.5081256771%;
  width: 34px;
  height: 34px;
}
.svg-swap-tokens-sprite--team {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 34.360348292% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tel {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 38.9149363697% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--tg {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 66.0092044707% 88.082340195%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--timer {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 43.4695244474% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--token {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 73.0718954248% 87.7969762419%;
  width: 31px;
  height: 31px;
}
.svg-swap-tokens-sprite--tokens {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 0 93.4482758621%;
  width: 90px;
  height: 87px;
}
.svg-swap-tokens-sprite--travala-dark {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 60.5661619487% 88.8524590164%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-light {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 63.3311389072% 88.8524590164%;
  width: 42px;
  height: 42px;
}
.svg-swap-tokens-sprite--travala-t {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 6.978275181% 99.1189427313%;
  width: 42px;
  height: 49px;
}
.svg-swap-tokens-sprite--tw {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 68.6390532544% 88.082340195%;
  width: 40px;
  height: 34px;
}
.svg-swap-tokens-sprite--usdt {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 9.756097561% 98.5761226725%;
  width: 44px;
  height: 44px;
}
.svg-swap-tokens-sprite--watches {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 48.0241125251% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-swap-tokens-sprite--wechat {
  background: url(ace7acc9b17dc1810fa1.svg) no-repeat;
  background-position: 52.5787006028% 91.4510686164%;
  width: 68px;
  height: 68px;
}
.svg-sprite--apple-pay {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.7900552486% 72.7828746177%;
  width: 30px;
  height: 16px;
}
.svg-sprite--appstore-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 60.4501607717%;
  width: 100px;
  height: 32px;
}
.svg-sprite--appstore-big {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 0;
  width: 144px;
  height: 45px;
}
.svg-sprite--banxa {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 71.4285714286% 41.9047619048%;
  width: 28px;
  height: 28px;
}
.svg-sprite--bestchange {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.6821192053% 48.7577639752%;
  width: 90px;
  height: 21px;
}
.svg-sprite--checked {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 99.4623655914% 66.8730650155%;
  width: 20px;
  height: 20px;
}
.svg-sprite--coinify {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--exchange-arrows {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 26.9754768392% 79.6875%;
  width: 25px;
  height: 23px;
}
.svg-sprite--gplay-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 70.7395498392%;
  width: 100px;
  height: 32px;
}
.svg-sprite--guardarian {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--logotype {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.0599369085% 64.8829431438%;
  width: 75px;
  height: 44px;
}
.svg-sprite--logotype-sub {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 50.3759398496% 42.1725239617%;
  width: 126px;
  height: 30px;
}
.svg-sprite--mail {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 0;
  width: 151px;
  height: 132px;
}
.svg-sprite--ny-logo {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 98.0066445183% 34.2756183746%;
  width: 91px;
  height: 60px;
}
.svg-sprite--payment-methods {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.6507936508% 54.4342507645%;
  width: 77px;
  height: 16px;
}
.svg-sprite--play-btn {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 0;
  width: 97px;
  height: 97px;
}
.svg-sprite--play-market {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 15.1006711409%;
  width: 144px;
  height: 45px;
}
.svg-sprite--play-market-white-border {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 82.2580645161%;
  width: 99px;
  height: 33px;
}
.svg-sprite--simplex {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--slider-arrow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 100%;
  width: 32px;
  height: 55px;
}
.svg-sprite--star-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 60.4361370717%;
  width: 22px;
  height: 22px;
}
.svg-sprite--stars {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 43.9716312057% 51.7133956386%;
  width: 110px;
  height: 22px;
}
.svg-sprite--stars-yellow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 88.5885885886% 76.0383386581%;
  width: 59px;
  height: 30px;
}
.svg-sprite--transak {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--trustpilot-fresh {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 65.3543307087%;
  width: 124px;
  height: 89px;
}
.svg-sprite--trustpilot-full {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 42.7184466019%;
  width: 134px;
  height: 34px;
}
.svg-sprite--visa-master {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 58.984375% 29.702970297%;
  width: 136px;
  height: 40px;
}
.svg-sprite--wordpress-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 79.3010752688% 82.9721362229%;
  width: 20px;
  height: 20px;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/d35560f975237042678e.woff) format("woff"),
    url(../fonts/2445189fae179285f7ec.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/53ebab6c7d265306f80d.woff) format("woff"),
    url(../fonts/795493644e3c7a22dfac.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/adc53e86b2f7cb173750.woff) format("woff"),
    url(../fonts/24e7ca4b0acf1a0dac78.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/285509d0eb9b5f31386c.woff) format("woff"),
    url(../fonts/db797e0aed0d44216930.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/94657033fd8e28659819.woff) format("woff"),
    url(../fonts/7ed42f773b172d236bc4.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/7e045f32011f2f549512.woff) format("woff"),
    url(../fonts/25ff2156254ba20a4704.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/0e771f884d5d7b341ac0.woff) format("woff"),
    url(../fonts/3a2c17eec3e71883dd0f.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ceaa06cbe56757d8069.woff) format("woff"),
    url(../fonts/3b59f4fac87f52efe27c.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/ed6a9b4bf546ecff24c6.woff) format("woff"),
    url(../fonts/7623c8b105a0e0b99cbb.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/1ab91631bafc1838cf55.woff) format("woff"),
    url(../fonts/8a2157e7f70d26bbbbaf.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/b01b7927b533ea3e1554.woff) format("woff"),
    url(../fonts/24cfe7008702c8f812ac.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/02f08a63db46edcb42d1.woff) format("woff"),
    url(../fonts/897a05889d4894a27cf2.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/16f3b5c18f8356360098.woff) format("woff"),
    url(../fonts/acf574aebf333444b31c.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ca831153ca66ca187ac.woff) format("woff"),
    url(../fonts/9e7ae88d3f68ed19d64a.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/3044fd8e8933d7f91242.woff) format("woff"),
    url(../fonts/81880694cc8b8f79eed4.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/a12c527ee24dcc6ccb75.woff) format("woff"),
    url(../fonts/746e4b5d434b64a4206f.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
@font-face {
  font-family: "icons";
  font-display: swap;
  src: url(../fonts/ce582a188fd8f253a833.eot);
  src: url(../fonts/ce582a188fd8f253a833.eot?#iefix) format("eot"),
    url(../fonts/1755b8cf47b3e6787be6.woff2) format("woff2"),
    url(../fonts/8f8ac1080bff8d4a07f1.woff) format("woff"),
    url(../fonts/42a431091930c9d7b618.ttf) format("truetype"),
    url(49dc41ccc1f9731f9695.svg#icons) format("svg");
}
.icon:before,
.button__arrow:before {
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
.icon-arrow-big:before {
  content: "";
}
.icon-arrow-down:before {
  content: "";
}
.icon-bitcointalk:before {
  content: "";
}
.icon-button-arrow:before,
.button__arrow:before {
  content: "";
}
.icon-check:before {
  content: "";
}
.icon-coinify:before {
  content: "";
}
.icon-copy:before {
  content: "";
}
.icon-error:before {
  content: "";
}
.icon-exchange:before {
  content: "";
}
.icon-facebook:before {
  content: "";
}
.icon-guarda:before {
  content: "";
}
.icon-info:before {
  content: "";
}
.icon-instagram:before {
  content: "";
}
.icon-medium:before {
  content: "";
}
.icon-no:before {
  content: "";
}
.icon-ok:before {
  content: "";
}
.icon-open:before {
  content: "";
}
.icon-rate-up:before {
  content: "";
}
.icon-reddit:before {
  content: "";
}
.icon-search:before {
  content: "";
}
.icon-simplex:before {
  content: "";
}
.icon-star:before {
  content: "";
}
.icon-success:before {
  content: "";
}
.icon-tg:before {
  content: "";
}
.icon-twitter:before {
  content: "";
}
.icon-youtube:before {
  content: "";
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
html {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-style: normal;
  background: #f6f4f8;
}
body {
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
a {
  color: #00c26f;
}
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  color: #00c26f;
  text-decoration: none;
}
a.active-navigation-link {
  cursor: default;
}
a[disabled] {
  pointer-events: none;
}
#error-help-form {
  display: none;
}
h1 {
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 400;
  font-size: 36px;
  color: #2b2b36;
}
h2 {
  margin-top: 40px;
  font-weight: normal;
  font-size: 24px;
  color: #00c26f;
}
h3 {
  margin-top: 0;
  font-size: 24px;
  color: #5c5780;
}
h4 {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 18px;
  color: #5c5780;
}
p {
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #2b2b36;
  letter-spacing: 0.1px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 15px;
  }
}
input,
textarea {
  margin-bottom: 25px;
  padding: 10px 20px;
  font-size: 20px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: 0.01375em;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
}
@media (max-width: 768px) {
  input,
  textarea {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
textarea {
  resize: vertical;
}
::-webkit-input-placeholder {
  color: #b6c0cb;
}
::-moz-placeholder {
  color: #b6c0cb;
}
:-moz-placeholder {
  color: #b6c0cb;
}
:-ms-input-placeholder {
  color: #b6c0cb;
}
.scroll-lock {
  overflow: hidden;
}
.relative {
  position: relative;
}
.small {
  font-weight: 300;
  font-size: 0.75em;
}
.dark {
  color: #56566e;
}
.title-text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
#app-root {
  min-height: 700px;
}
body.page_dashboard #app {
  min-height: 70vh;
  box-sizing: border-box;
  padding-bottom: 0;
  position: relative;
}
.circular-progress {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
.page_exchange .page__warning-api {
  margin-bottom: 40px;
}
body.page_partners-log-in_shown .top-menu-login-link {
  display: inline-block;
  vertical-align: middle;
}
body.page_partners-log-in_shown .header-join-pro-button {
  display: none;
}
body.page_for-partners .footer,
body.page_multichain-bridge .footer,
body.page_crypto-exchange .footer {
  padding-top: 308px;
}
body.page_warm-wallets .footer {
  padding-top: 365px;
}
.loader-icon {
  display: block;
}
.loader-icon_absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized) {
  display: flex;
  background-color: #49496c;
  border-color: #49496c;
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized):hover {
  background-color: #4f4f79;
  border-color: #4f4f79;
}
.page_authorization-new-theme .authorization-user__buttons {
  display: none;
}
@media screen and (min-width: 992px) {
  .page_exchange .page__warning-api {
    margin-bottom: 90px;
  }
  body.page_for-partners .footer,
  body.page_multichain-bridge .footer,
  body.page_crypto-exchange .footer {
    padding-top: 380px;
  }
  body.page_warm-wallets .footer {
    padding-top: 355px;
  }
}
@media screen and (min-width: 1200px) {
  body.page_partners-log-in_shown .top-menu-login-link {
    display: none;
  }
}
#app-header {
  display: contents;
}
.bread-crumbs--container {
  z-index: 3;
}
.bread-crumbs--icon__dark {
  color: #5c5780;
}
.bread-crumbs--icon__light {
  color: #a4a3aa;
}
.bread-crumbs--icon::after {
  margin-inline-start: 10px;
  margin-bottom: 4px;
  content: "";
  font-size: 6px;
  list-style: none;
  transform: rotate(270deg);
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
html[dir="rtl"] .bread-crumbs--icon::after {
  transform: rotate(90deg);
}
.bread-crumbs--item {
  align-items: flex-end;
  list-style: none;
  margin-inline-end: 10px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--item {
    margin: 0 5px;
  }
}
.bread-crumbs--item__dark {
  color: #5c5780;
}
.bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.bread-crumbs--item__light {
  color: #a4a3aa;
}
.bread-crumbs--item__hide {
  display: none;
}
.bread-crumbs--item__hide + .bread-crumbs--icon {
  display: none;
}
.bread-crumbs--text {
  color: inherit;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}
@media all and (max-width: 575px) {
  .bread-crumbs--text {
    font-size: 13px;
  }
}
.bread-crumbs--item:last-child {
  margin-inline-end: 0;
}
.bread-crumbs--item:not(:last-child):hover .bread-crumbs--text {
  color: #00c26f;
}
.bread-crumbs .container {
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 1440px) {
  .bread-crumbs .container {
    padding: 0 40px;
  }
}
.button {
  background: #00c26f;
  border: none;
  color: #fff;
  height: 50px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  width: auto;
  padding: 0 50px;
  cursor: pointer;
  position: relative;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .button {
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
  }
}
.button:active {
  opacity: 0.8;
}
.button:hover {
  color: #fff;
  background: #16d785;
}
.button:disabled {
  background: #cacaca;
  cursor: not-allowed;
}
.button:hover:disabled {
  background: #cacaca;
}
.button--icon {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  line-height: 1;
  margin-inline-end: 10px;
}
.button__black {
  background: #2b2b36;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}
.button__black:hover {
  background: #00c26f;
}
.button__arrow {
  padding-right: 50px;
}
.button__arrow:hover {
  background-color: #3d3d70;
}
.button__arrow::before {
  display: block;
  color: #00c26f;
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 12px;
}
.button__arrow:hover::before {
  color: #fff;
}
.button__long {
  width: 100%;
  max-width: 220px;
}
.button__full {
  width: 100%;
}
.button__thin {
  width: 100px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  background: #00c26f;
  padding: 1px 15px 0;
  transition: background-color ease 0.3s;
}
.button__thin:hover {
  background: #00c87a;
}
.button__thin.button__arrow {
  text-align: left;
}
.button__thin.button__arrow::before {
  color: #fff;
}
.button__narrow {
  border-radius: 5px;
  height: 46px;
  line-height: 46px;
  padding: 0 46px;
}
.button__bordered {
  background: rgba(0, 0, 0, 0);
  border: 2px solid #00c26f;
  color: #00c26f;
  line-height: 40px;
  border-radius: 5px;
}
.button__bordered:hover {
  background: rgba(0, 0, 0, 0);
  opacity: 0.5;
  color: #00c26f;
}
.button__small {
  border-radius: 5px;
  height: 30px;
  font-size: 13px;
  line-height: 28px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .button__small {
    padding: 0 18px;
  }
}
.button__tiny {
  border-radius: 5px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  padding: 0 20px;
}
.button__bordered.button__tiny {
  border-width: 1px;
}
.button-close {
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
.button-close::before,
.button-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  margin: auto;
  background-color: #fff;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.button-close__dark::before,
.button-close__dark::after {
  background-color: #56566e;
}
.button-close__small {
  width: 15px;
  height: 15px;
}
.button-close__small::before,
.button-close__small::after {
  width: 15px;
}
.button-close::after {
  transform: rotate(-45deg);
}
.button__orange-action {
  background-color: rgba(0, 0, 0, 0);
  color: #eaa523;
  border: 2px solid #eaa523;
  border-color: #eaa523;
  position: relative;
  width: auto;
  height: 34px;
  line-height: 30px;
  padding: 0px 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
.button__orange-action:hover {
  color: #fff;
  background: #eaa523;
}
.recommended-wallet-button {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  background-image: linear-gradient(#2b2a36, #2b2a36),
    linear-gradient(
      268.76deg,
      #fb9600 1.78%,
      #00c26f 25.98%,
      #6696d6 50.43%,
      #f28984 76.64%,
      #5fcef0 98.23%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0 20px;
  transition: color ease 0.3s;
}
.recommended-wallet-button:hover {
  color: #00c26f;
}
.recommended-wallet-button:hover .recommended-wallet-button__stars-icon {
  top: -19px;
  right: -26px;
  transform: rotate(10deg);
}
html[dir="rtl"]
  .recommended-wallet-button:hover
  .recommended-wallet-button__stars-icon {
  left: -26px;
  right: unset;
}
.recommended-wallet-button__logo {
  margin-inline-start: 8px;
}
.recommended-wallet-button__stars-icon {
  display: block;
  position: absolute;
  top: -17px;
  right: -24px;
  transition: all ease 0.3s;
}
html[dir="rtl"] .recommended-wallet-button__stars-icon {
  transform: scaleX(-1);
  right: unset;
  left: -24px;
}
.recommended-wallet-button_desktop {
  display: none;
}
.recommended-wallet-button_mobile {
  display: inline-flex;
}
.button--stars-icon {
  width: 55px;
  height: 26px;
  position: absolute;
  top: -16px;
  right: -35px;
  transform-origin: center;
  transform: scale(0.7) rotate(27deg);
}
.button__gray {
  color: #808086;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3px;
  background: #333341;
  border-radius: 4px;
}
.button__gray:hover {
  color: #fff;
  background: #434352;
}
.button__gray_active {
  color: #fff;
  background: #434352;
}
@media screen and (min-width: 992px) {
  .recommended-wallet-button_desktop {
    display: inline-flex;
  }
  .recommended-wallet-button_mobile {
    display: none;
  }
}
input[required] {
  outline: none;
  box-shadow: none;
}
.field {
  margin-bottom: 9px;
  max-width: 540px;
}
@media (max-width: 768px) {
  .field {
    margin-bottom: 16px;
  }
}
.field::after {
  content: "";
  display: block;
  clear: both;
}
.field input {
  width: 100%;
  margin: 0;
  padding-right: 20px;
}
.field__buttoned {
  display: inline-flex;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .field__buttoned {
    display: block;
  }
}
.field__fullwidth {
  max-width: none;
  width: 100%;
}
.field__fullwidth > .relative {
  width: 100%;
}
.field__buttoned .button {
  margin: 0;
  margin-left: 10px;
  height: 50px;
  line-height: 48px;
}
@media (max-width: 768px) {
  .field__buttoned .button {
    margin-left: 0;
    margin-top: 10px;
  }
}
.field--label {
  color: #56566e;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.field button {
  margin-top: 10px;
}
.field--action {
  color: #00c26f;
  cursor: pointer;
}
.field--action__top {
  float: right;
}
.field--button {
  float: right;
  padding-left: 5px;
  padding-right: 5px;
  min-width: 180px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .field--button {
    float: none;
  }
}
.field--note {
  background-color: #faf8fb;
  max-width: 60%;
  border-radius: 5px;
  padding: 5px;
  float: left;
  margin-top: 10px;
}
.field-note {
  max-width: 540px;
  font-size: 15px;
  color: #a4a3aa;
  letter-spacing: 0.3px;
  text-align: left;
  line-height: 22px;
}
@media (max-width: 768px) {
  .field-note {
    font-size: 14px;
  }
}
.field--error {
  color: red;
}
.field--status {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 27px;
}
.field--status .icon-success {
  color: #00c26f;
  font-size: 18px;
}
.field input:focus {
  outline-color: #00c26f;
}
.field.field__dark input {
  background: #36324a;
  color: #d7dfe8;
  border-color: rgba(0, 0, 0, 0);
}
.field__dark {
  background: #36324a;
}
.form--title {
  color: #00c26f;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.014em;
}
.form--recapcha {
  float: left;
}
input.editable-on-focus {
  border-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  transition: all 300ms;
  box-shadow: none;
  outline: none;
  color: #b6c0cb;
}
input.editable-on-focus:focus {
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  color: #5c5780;
}
input.editable-on-focus + .editable-on-focus--save {
  opacity: 0;
  display: block;
  position: absolute;
  cursor: pointer;
  color: #00c26f;
}
input.editable-on-focus:focus + .editable-on-focus--save {
  opacity: 1;
}
.flex-table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
  overflow: hidden;
}
.flex-table--cell,
.flex-table--head-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  padding: 13px;
  background: #fff;
}
.flex-table--head-cell {
  background: #f3f5f8;
  line-height: 1;
}
.flex-table--cell {
  padding: 30px 13px;
  font-size: 18px;
  color: #56566e;
}
.flex-table--cell.even {
  background: #f3f5f8;
}
.flex-table__2 > .flex-table--cell,
.flex-table__2 > .flex-table--head-cell {
  flex-basis: 50%;
}
.flex-table__3 > .flex-table--cell,
.flex-table__3 > .flex-table--head-cell {
  flex-basis: 33.33%;
}
.flex-table__4 > .flex-table--cell,
.flex-table__4 > .flex-table--head-cell {
  flex-basis: 25%;
}
.flex-table__5 > .flex-table--cell,
.flex-table__5 > .flex-table--head-cell {
  flex-basis: 20%;
}
.flex-table__6 > .flex-table--cell,
.flex-table__6 > .flex-table--head-cell {
  flex-basis: 16.6%;
}
.flex-table__7 > .flex-table--cell,
.flex-table__7 > .flex-table--head-cell {
  flex-basis: 14.28%;
}
.flex-table--cell__compact {
  padding-top: 10px;
  padding-bottom: 10px;
}
.flex-grow-normal {
  flex-grow: 1;
}
.content {
  padding-bottom: 90px;
  min-height: calc(100vh - 105px - 424px);
}
.content a {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border-bottom-color ease 0.3s;
}
.content a:hover {
  color: #00c26f;
  border-bottom-color: #00c26f;
}
.static-page .bread-crumbs--item {
  line-height: 12px;
}
.static-page .bread-crumbs--item__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--item__active.bread-crumbs--item__dark {
  color: #56566e;
}
.static-page .bread-crumbs--item__light {
  color: #a4a3aa;
}
.static-page .bread-crumbs--icon {
  list-style: none;
}
.static-page .bread-crumbs--icon__dark {
  color: #5c5780;
}
.static-page .bread-crumbs--icon__light {
  color: #a4a3aa;
}
.static-page ul,
.static-page ol {
  color: #56566e;
}
.static-page li {
  position: relative;
  z-index: 1;
  opacity: 0.8;
  font-size: 17px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .static-page li {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  .static-page li {
    font-size: 15px;
  }
}
.field__inline {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.primary-color {
  color: #00c26f;
}
.darken-green-color {
  color: #00c26f;
}
.underlined {
  text-decoration: underline;
}
.upper {
  text-transform: uppercase;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.middle {
  display: flex;
  align-items: center;
}
.flex-left {
  justify-content: flex-start;
}
.flex-right {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.dif {
  display: inline-flex;
}
.clearfix {
  clear: both;
}
.link-like {
  color: #00c26f;
  cursor: pointer;
}
.link-like:hover {
  text-decoration: underline;
}
.normal {
  font-weight: 400;
}
.light {
  font-weight: 300;
}
.np {
  padding: 0;
}
.rounded {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  width: 120px;
  height: 120px;
}
.rounded img {
  width: 100%;
}
.text-bigger {
  font-size: 1.5em;
}
.primary {
  color: #00c26f;
}
.white {
  color: #fff;
}
.bg-gray {
  background-color: #f6f4f8;
}
.bg-white {
  background-color: #fff;
}
.box {
  background-color: #f6f4f8;
  padding: 30px;
  margin: 45px 0;
}
.address-text {
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
}
.hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px solid #eae8ef;
}
.hr__small {
  border: 0;
  overflow: visible;
}
.hr__small::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #eae8ef;
  margin: auto;
}
.relative {
  position: relative;
}
.striped {
  background: repeating-linear-gradient(
    45deg,
    #ddd 1px,
    #ddd 2px,
    transparent 3px,
    transparent 8px,
    #ddd 9px
  );
}
.section {
  padding: 32px 40px;
  margin: 16px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 10px;
  }
}
.section h1:first-child,
.section h2:first-child,
.section h3:first-child,
.section p:first-child {
  margin-top: 0;
}
.section__dark {
  background-color: #2b2b36;
  color: #dadadb;
}
.section__white {
  background-color: #fff;
}
@media (max-width: 480px) {
  .section__white {
    overflow: auto;
    padding: 10px;
  }
}
.section__bordered-green {
  border: 2px solid #00c26f;
}
.section__no-padding {
  padding: 0;
}
.d-none {
  display: none;
}
.sequence {
  list-style: none;
  display: block;
  margin: 0;
  padding: 10px 0;
  padding-left: 30px;
  font-size: 12px;
  position: relative;
}
.sequence__compact {
  height: 35px;
}
.sequence::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 10px;
  width: 1px;
  height: 10px;
  background-color: #d8d8d8;
}
.sequence--item {
  height: auto;
  position: relative;
  padding: 0;
  max-height: 0px;
  opacity: 0;
  transition: max-height 500ms, opacity 500ms, padding 500ms;
}
.sequence--item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -26.5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d8d8d8;
}
.sequence--item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
}
.sequence--item:last-child::after {
  display: none;
}
.sequence--item__active {
  color: #3bee81;
  cursor: pointer;
  font-size: 14px;
}
.sequence--item__visible {
  max-height: 9999px;
  opacity: 1;
}
.sequence--item-content {
  padding: 10px 0;
}
.sequence--item-name {
  line-height: 1;
}
.sequence--item__iconed::before {
  display: none;
}
.sequence--item-icon {
  position: absolute;
  left: -26.5px;
  top: 0;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  line-height: 1.5;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1px;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #333;
  text-align: left;
  text-decoration: none;
  background-color: #fff;
  border-radius: 3px;
  min-height: 34px;
  border: 1px solid #b1b1b1;
}
.rc-tooltip-arrow,
.rc-tooltip-arrow-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: -5px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #b1b1b1;
}
.rc-tooltip-placement-top .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topRight .rc-tooltip-arrow-inner {
  bottom: 1px;
  margin-left: -6px;
  border-width: 6px 6px 0;
  border-top-color: #fff;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #b1b1b1;
}
.rc-tooltip-placement-right .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow-inner {
  left: 1px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
  border-right-color: #fff;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: -5px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #b1b1b1;
}
.rc-tooltip-placement-left .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow-inner {
  right: 1px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-left-color: #fff;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: -5px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #b1b1b1;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow-inner {
  top: 1px;
  margin-left: -6px;
  border-width: 0 6px 6px;
  border-bottom-color: #fff;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}
@media (max-width: 480px) {
  .rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
    right: 50%;
  }
}
.socials {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
}
.socials--social {
  margin-right: 17px;
  color: #5c5780;
}
.socials--social:hover {
  color: #00c26f;
}
.socials .icon-youtube {
  position: relative;
  top: 0.1em;
}
.socials .icon-bitcointalk {
  position: relative;
  top: 0.1em;
  font-size: 1.2em;
}
.react-tabs {
  background: #f6f4f8;
}
.react-tabs__tab-list {
  display: inline-flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.react-tabs__tab {
  position: relative;
  padding: 16px 32px;
  font-weight: bold;
  font-size: 19px;
  color: #cdccd1;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.react-tabs__tab--selected {
  color: #2b2b36;
  background-color: #fff;
}
.react-tabs__tab--selected:last-child::after,
.react-tabs__tab--selected:last-child::before {
  display: none;
}
.react-tabs__tab-panel {
  background-color: #fff;
}
.react-tabs__tab-panel--selected {
  padding: 32px;
}
.list__iconed {
  list-style: none;
  padding: 0;
}
.list--item {
  position: relative;
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 26px;
}
.list--icon {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 8px;
  color: #00c26f;
}
.list__iconed li::before {
  content: "";
}
svg.main-anim.active .ring-1 {
  stroke-dasharray: 864px 864px;
  stroke-dashoffset: 864px;
  animation: ring-1 2s 1s linear;
  animation-fill-mode: forwards;
}
svg.main-anim.active .ring-2 {
  stroke-dasharray: 1021px;
  stroke-dashoffset: 1021px;
  animation: ring-2 2s 2s linear forwards;
}
svg.main-anim.active .scaled-1 {
  transform-origin: center center;
  transform: scale(0);
  animation: scale 0.5s ease-in forwards;
}
svg.main-anim.active .scaled-2 {
  transform-origin: 167.5px 163.5px;
  transform: scale(0);
  animation: scale 0.5s 0.25s ease-in forwards;
}
@keyframes ring-1 {
  from {
    stroke-dashoffset: 864px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ring-2 {
  from {
    stroke-dashoffset: 1021px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
svg.main-anim.active path.star-1 {
  animation: star-anim-1 5s 0.5s linear infinite;
}
svg.main-anim.active path.star-2 {
  animation: star-anim-2 5s 1s linear infinite;
}
svg.main-anim.active path.star-3 {
  animation: star-anim-3 5s 1.5s linear infinite;
}
svg.main-anim.active path.star-4 {
  animation: star-anim-4 5s 2s linear infinite;
}
svg.main-anim.active path.star-5 {
  animation: star-anim-5 5s 2.5s linear infinite;
}
svg.main-anim.active .star-container > path {
  opacity: 0;
}
svg.main-anim {
  opacity: 0;
  z-index: 1;
  flex-shrink: 0;
}
svg.main-anim.active {
  opacity: 1;
}
@media all and (min-width: 767px) and (max-width: 1199px) {
  svg.main-anim.active {
    transform: scale(0.5);
  }
}
@keyframes star-anim-1 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 259px 279px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 277px 234.5px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 295px 190px;
  }
}
@keyframes star-anim-2 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 30px 130px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 55px 115px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 80px 100px;
  }
}
@keyframes star-anim-3 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 190px 40px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 230px 70px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 270px 100px;
  }
}
@keyframes star-anim-4 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 10px 150px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 35px 200px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 60px 250px;
  }
}
@keyframes star-anim-5 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 250px 320px;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: 220px 295px;
  }
  100% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 190px 270px;
  }
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
.d-flex_fix {
  display: flex;
}
.justify-content-center_fix {
  justify-content: center;
}
.align-items-center_fix {
  align-items: center;
}
.flex-wrap_fix {
  flex-wrap: wrap;
}
.flex-column_fix {
  flex-direction: column;
}
.language-adviser {
  display: none;
  position: relative;
  background-color: #2b2b36;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  font-size: 15px;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 300ms;
  will-change: transform;
}
.language-adviser__show {
  display: block;
}
.language-adviser--content {
  display: flex;
  height: 48px;
  color: #fff;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.583333px;
}
@media (max-width: 575px) {
  .language-adviser--content span {
    margin-bottom: 9px;
  }
}
@media (min-width: 576px) {
  .language-adviser--content span {
    margin-right: 30px;
  }
}
.language-adviser--content a {
  color: #fff;
  min-width: 66px;
  padding: 3px;
  height: 24px;
  border: 1px solid rgba(164, 163, 170, 0.6);
  border-radius: 4px;
}
@media all and (max-width: 575px) {
  .language-adviser--content {
    flex-direction: column;
    height: auto;
    padding: 9px 14px;
  }
}
.language-adviser--close-btn {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.language-adviser--close-btn:before,
.language-adviser--close-btn:after {
  position: absolute;
  left: 10px;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #fff;
}
.language-adviser--close-btn:before {
  transform: rotate(45deg);
}
.language-adviser--close-btn:after {
  transform: rotate(-45deg);
}
.new-field__header,
.new-field__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
}
.new-field__footer {
  padding: 8px 0;
}
.new-field__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
.new-field__second-label,
.new-field__footer-label {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  text-align: end;
  letter-spacing: 0.1px;
  margin-inline-start: auto;
  transition: color ease 0.3s;
}
.new-field__footer-label:hover {
  color: #00c26f;
}
.new-field__input-placeholder .new-input:focus + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:not(:placeholder-shown)
  + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:-webkit-autofill
  + .new-field-input__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-field__input {
  position: relative;
  z-index: 1;
}
.new-field__input-placeholder .new-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input::placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input {
  height: 56px;
  padding-top: 16px;
}
.new-field-input__placeholder {
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 16px;
  line-height: 20px;
  color: #808086;
  font-weight: 300;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
html[dir="rtl"] .new-field-input__placeholder {
  transform-origin: top right;
}
.new-field__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
html[dir="rtl"] .new-field__icon {
  right: unset;
  left: 12px;
}
.new-field__qr-button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 20px;
}
.new-field__icon svg {
  display: block;
  transition: fill ease 0.3s;
}
.new-field__warning {
  top: -6px;
}
.new-field__field-prompts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  height: 18px;
  line-height: 100%;
}
.new-field__prompt {
  min-height: 14px;
  font-size: 12px;
  line-height: 14px;
  color: #6a6a7f;
  letter-spacing: 0.1px;
  margin-inline-end: auto;
}
.new-field__quality-prompt {
  font-size: 14px;
  margin-inline-start: auto;
}
.quality-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.quality-prompt_low {
  color: #df3131;
}
.quality-prompt_medium {
  color: #f39321;
}
.quality-prompt_high {
  color: #00c26f;
}
.quality-prompt__icon {
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 992px) {
  .new-field__prompt {
    font-size: 14px;
  }
}
.new-input {
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #2b2b36;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  outline: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-start: 16px;
  padding-inline-end: 45px;
  margin: 0;
  transition: borderColor, boxShadow, ease 0.3s;
}
.new-input::-moz-placeholder {
  color: #808086;
}
.new-input::placeholder {
  color: #808086;
}
.new-input:is(:-webkit-autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.new-input:is(:-webkit-autofill, :autofill) {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.new-input.new-input_success {
  border-color: #00c26f;
  box-shadow: 0 0 0 2px rgba(0, 194, 111, 0.2), 0 0 0 30px #fff inset !important;
}
.new-input_error {
  border-color: #fcedba;
}
.new-warning {
  position: relative;
  z-index: 2;
}
.new-warning__content {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  letter-spacing: 0.1px;
  background-color: #fcedba;
  border-radius: 0 0 4px 4px;
  padding: 5px 16px;
}
.new-warning_absolute .new-warning__content {
  position: absolute;
  top: 0;
  left: 0;
  word-break: break-all;
}
.new-field.registration__password .new-warning_absolute .new-warning__content {
  word-break: normal;
}
.new-warning__content.new-warning__content_button {
  border: none;
  text-align: left;
}
.new-warning__content.new-warning__content_button .error-with-action span {
  text-decoration: underline;
  cursor: pointer;
}
.new-agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.new-agreement__checkbox {
  margin-inline-end: 8px;
}
.new-agreement__content {
  font-size: 14px;
  line-height: 18px;
  color: #6a6a7f;
  transition: all 0.3s ease;
}
.new-agreement__content a {
  color: #00c26f;
  text-decoration: underline;
  transition: color ease 0.3s;
}
.new-agreement__content a:hover {
  text-decoration: none;
  color: #00c26f;
}
.new-agreement__content_orange,
.new-agreement__content_orange a {
  color: #f39321;
}
.new-checkbox {
  cursor: pointer;
}
.new-checkbox__input {
  display: none;
}
.new-checkbox__input:checked + .new-checkbox__box {
  border-color: #00c26f;
  background-color: #00c26f;
}
.new-checkbox__input:checked + .new-checkbox__box svg {
  opacity: 1;
}
.new-checkbox__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #808086;
  border-radius: 4px;
  background-color: #fff;
  transition: background ease 0.3s;
}
.new-checkbox__box svg {
  opacity: 0;
  transition: opacity ease 0.3s;
}
.new-checkbox_error .new-checkbox__box {
  animation-name: new-checkbox-scale;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-color: #f39321;
}
@keyframes new-checkbox-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.new-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.new-button:hover {
  background-color: #00c87a;
  color: #fff;
}
.new-button:focus {
  outline: 0;
  -webkit-text-decoration: 0;
  text-decoration: 0;
  color: #fff;
}
.new-button:disabled {
  pointer-events: none;
}
.new-button_white {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
  transition: background, color, ease 0.3s;
}
.new-button_white:focus {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
}
.authorization-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.authorization-section__icon {
  display: flex;
  justify-content: center;
}
.authorization-section.login-section .authorization-section__icon,
.authorization-section.registration-section .authorization-section__icon {
  display: none;
}
.authorization-section-header {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 8px;
}
.authorization-section__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #2b2b36;
}
.authorization-section__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #6a6a7f;
  text-align: center;
}
.authorization-section__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.authorization-section__mobile-benefits
  .authorization-section__mobile-benefit-icon:last-of-type {
  display: none;
}
.authorization-section__mobile-benefits {
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
}
.authorization-section__mobile-benefit {
  margin: 0 auto;
}
.authorization-section__mobile-benefit-icon {
  width: 12px;
  height: 14px;
}
.security-verification .authorization-section-header {
  flex-direction: column;
  align-items: flex-start;
}
.security-verification .authorization-section__description {
  text-align: left;
  font-size: 16px;
  color: #6a6a7f;
  line-height: 24px;
}
.forgot-password-section .authorization-section-header {
  flex-direction: column;
  align-items: flex-start;
}
.forgot-password-section .authorization-section__description {
  text-align: left;
  font-size: 16px;
  color: #6a6a7f;
}
.link-expired .authorization-section-header {
  flex-direction: column;
}
.link-expired .authorization-section__content {
  flex-grow: 0;
  margin-top: auto;
}
.success-block .authorization-section-header {
  flex-direction: column;
}
.success-block .authorization-section__icon {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .authorization-section.login-section .authorization-section__icon,
  .authorization-section.registration-section .authorization-section__icon {
    display: flex;
    justify-content: center;
    width: 19px;
    height: 17px;
  }
}
@media screen and (min-width: 768px) {
  .security-verification .authorization-section-header {
    gap: 12px;
  }
  .authorization-section-header {
    margin-bottom: 32px;
  }
  .authorization-section__title {
    font-size: 24px;
    line-height: 32px;
  }
  .authorization-section__description {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-section__mobile-benefits {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .authorization-section.login-section .authorization-section__icon,
  .authorization-section.registration-section .authorization-section__icon {
    display: none;
  }
}
.authorization-loader__container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: hsla(0, 0%, 100%, 0.7);
}
.authorization-loader__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.registration {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.registration__email .new-field__input input {
  text-transform: lowercase;
}
.registration__email .new-field__input input::-moz-placeholder {
  text-transform: none;
}
.registration__email .new-field__input input::placeholder {
  text-transform: none;
}
.registration__password {
  margin-top: 16px;
}
.registration__repeated-password {
  margin-top: 16px;
}
.registration__agreement {
  margin-top: 16px;
  margin-bottom: 16px;
}
.registration__button {
  margin-top: auto;
}
.registration__footer {
  margin-top: 16px;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
}
.registration__footer_captcha {
  margin-bottom: 16px;
}
.registration__footer-link {
  position: relative;
  margin-inline-start: auto;
  padding-right: 18px;
  font-size: 14px;
  color: #00c26f;
  text-decoration: none;
  outline: 0;
  text-underline-offset: 4px;
  transition: all 0.1s ease-in;
}
.registration__footer-link:hover {
  color: #00a451;
  text-decoration: underline;
}
.registration__footer-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #00c26f;
  border-top: 2px solid #00c26f;
  transform: rotate(45deg);
  transition: all 0.1s ease-in;
}
.registration__footer-link:hover::after {
  border-color: #00a451;
}
.recaptcha-registration-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.registration__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.registration__captcha-error_visible {
  opacity: 1;
}
.recaptcha-registration-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
}
.recaptcha {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
}
.recaptcha.recaptcha_registration {
  height: 66%;
}
.recaptcha.recaptcha_registration-error {
  border-color: #f39321;
}
.recaptcha-registration-wrapper__loader {
  margin: 0 auto;
}
.registration__agreement_second-field {
  margin-bottom: 0;
}
.registration__hint {
  position: relative;
  margin: 32px 0 12px 0;
  padding: 8px 0;
  min-height: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #6a6a7f;
  text-align: center;
}
.registration__hint::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #eae8ed;
}
.registration__hint__text {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: #f6f4f8;
  z-index: 1;
}
.registration__error {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .registration__hint__text {
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .registration__footer {
    font-size: 14px;
    line-height: 140%;
  }
}
.login {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.login__password {
  margin-top: 16px;
}
.login__button {
  margin-top: auto;
}
.login__button_recapture {
  margin-top: 24px;
}
.login__footer {
  font-size: 14px;
  line-height: 140%;
  color: #2b2b36;
  text-align: center;
  margin-top: 16px;
}
.login__footer-link {
  color: #2b2b36;
  text-decoration: underline;
  outline: 0;
  transition: color ease 0.3s;
}
.login__footer-link:hover {
  text-decoration: none;
  color: #00c26f;
}
.login__social-buttons {
  margin-bottom: 24px;
}
.login__hint {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1px;
  color: #808086;
  text-align: center;
  padding: 0;
  margin: 0 0 16px 0;
  min-height: 14px;
}
.login__error {
  margin-top: 24px;
}
.login__captcha-error {
  margin: 6px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.login__captcha-error_visible {
  opacity: 1;
}
.recaptcha-login-wrapper {
  min-height: 120px;
  text-align: center;
  line-height: 0;
  margin: 24px auto 0;
}
.recaptcha-login-wrapper__hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.recaptcha {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0);
  width: calc(100% - 2px);
  height: 78%;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.recaptcha.recaptcha_login {
  height: 65%;
}
.recaptcha.recaptcha_login-error {
  border-color: #f39321;
}
.warning-tooltip {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #e62e04;
  background-color: #fff;
  opacity: 1;
}
.warning-tooltip .rc-tooltip-arrow {
  display: none;
}
.warning-tooltip::after,
.warning-tooltip::before {
  top: 100%;
  left: 10%;
  border: solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.warning-tooltip::after {
  border-color: hsla(0, 0%, 100%, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.warning-tooltip::before {
  border-color: rgba(230, 46, 4, 0);
  border-top-color: #e62e04;
  border-width: 7px;
  margin-left: -7px;
}
.warning-tooltip__success {
  border: 1px solid #00c26f;
}
.warning-tooltip__success::before {
  border-top-color: #00c26f;
}
.warning-tooltip__warning {
  border: 1px solid #fec107;
}
.warning-tooltip__warning::before {
  border-top-color: #fec107;
}
.warning-tooltip .rc-tooltip-inner {
  background-color: #fff;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  padding: 2px 20px;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  border-right-color: #e62e04;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  border-left-color: #e62e04;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  border-top-color: #e62e04;
  bottom: -6px;
}
.warning-tooltip .rc-tooltip-placement-right .rc-tooltip-arrow {
  border-right-color: #fff;
}
.warning {
  margin: 5px 0;
  background-color: rgba(61, 61, 112, 0.04);
  padding: 13px 23px 11px 35px;
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 379px) {
  .warning {
    padding-left: 30px;
  }
}
.warning-tooltip .warning {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: relative;
  border-radius: 0;
  margin: 0;
}
.exchange-input + .warning {
  margin-top: 14px;
}
.warning--icon {
  position: absolute;
  top: 12px;
  left: 12px;
}
.warning--content {
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.3px;
  white-space: pre-wrap;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #808086;
}
.warning--description {
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
.warning__exchange-creation-error {
  margin-bottom: 30px;
}
.metamask-login__button {
  margin-top: 24px;
}
.metamask-login__icon {
  width: 120px;
  margin: 40px auto 0 auto;
}
.metamask-login__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.0736842px;
  color: #000;
  margin-top: 16px;
}
.metamask-login__warning {
  margin-top: 16px;
}
.metamask-login__warning.phishing-warning .warning {
  padding: 13px 23px 11px 35px;
  display: flex;
}
.metamask-login__warning.phishing-warning .warning--description img {
  border: none;
}
.metamask-login__error {
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  box-sizing: border-box;
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0736842px;
  color: #808086;
}
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-buttons__button {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #eae8ed;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.social-buttons__button:hover {
  border-color: #00c26f;
}
.social-buttons__button_big {
  width: 80px;
  height: 80px;
}
.social-buttons__button_big img {
  width: 48px;
}
.social-buttons__button:last-child {
  margin-inline-end: 0;
}
.button_loader-image {
  width: 40px;
}
.social-buttons__connected {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c26f;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
#walletconnect-wrapper a {
  color: #337ab7;
  text-decoration: none;
}
#walletconnect-wrapper .walletconnect-connect__button {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .social-buttons__button {
    flex: initial;
  }
}
.set-up-login__button {
  margin-top: 25px;
}
.set-up-wallet .authorization-section__content {
  padding-top: 0;
}
.set-up-wallet__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.074px;
  color: #000;
  margin: 0;
}
.set-up-wallet__buttons {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
.wallet-connect-modal .authorization-section__content {
  align-items: center;
}
.wallet-connect-modal__icon {
  width: 120px;
  height: 120px;
}
.wallet-connect-modal__status {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.07px;
  color: #000;
  margin-top: 16px;
}
.wallet-connect-modal__pending {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.4px;
  color: #00c26f;
}
.wallet-connect-modal__error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  margin-top: 160px;
  width: 100%;
}
.wallet-connect-modal__error-button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  text-decoration-line: underline;
}
.forgot-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.forgot-password__button {
  margin-top: auto;
}
.forgot-password__recaptcha {
  margin: 25px auto 0 auto;
}
.forgot-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
}
.forgot-password__captcha-error {
  margin: 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.forgot-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha.recaptcha_forgot-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_forgot-password {
  height: 74.5%;
}
.success-block__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.success-block__button {
  margin-top: auto;
}
.success-block__button_timer {
  border: 1px solid #aeb0bd;
  background: #fff;
  color: #aeb0bd;
}
.success-block__button-time {
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .success-block__button_timer {
    background: #fff;
  }
}
.security-verification__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.security-verification__button {
  margin-top: auto;
}
.security-verification__recaptcha {
  margin: 32px auto 0 auto;
}
.security-verification__recaptcha-hint {
  text-align: center;
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.security-verification__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.security-verification__captcha-error_visible {
  opacity: 1;
}
.recaptcha_verification-error {
  border: 1px solid #f39321;
  width: calc(100% - 2px);
  height: 74.5%;
  border-radius: 4px;
}
.security-verification__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.security-verification__button {
  margin-top: auto;
}
.security-verification__recaptcha {
  margin: 32px auto 0 auto;
}
.security-verification__recaptcha-hint {
  text-align: center;
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.security-verification__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  cursor: default;
}
.security-verification__captcha-error_visible {
  opacity: 1;
}
.recaptcha_verification-error {
  border: 1px solid #f39321;
  width: calc(100% - 2px);
  height: 74.5%;
  border-radius: 4px;
}
.security-verification__code-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.security-verification__resend-button {
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #6a6a7f;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  border: none;
}
.security-verification__form .new-warning__content.new-warning__content_button {
  cursor: default;
}
.security-verification__resend-button.security-verification__timer {
  cursor: default;
}
.security-verification__subtitle {
  color: #2b2b37;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.reset-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.reset-password__password-repeated {
  margin-top: 25px;
}
.reset-password__button {
  margin-top: auto;
}
.change-password {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.change-password__password,
.change-password__password-repeated {
  margin-top: 25px;
}
.change-password__button {
  margin-top: auto;
}
.change-password__button_modal {
  margin-top: 10px;
}
.change-password__recaptcha-wrapper {
  min-height: 118px;
  text-align: center;
  line-height: 0;
  margin: 24px auto;
}
.recaptcha {
  display: inline-block;
}
.change-password__recaptcha-hint {
  opacity: 1;
  margin: 0 0 6px 0;
  color: #808086;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
}
.change-password__captcha-error {
  margin: 4px 0 0 0;
  color: #f39321;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 14px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: default;
}
.change-password__captcha-error_visible {
  opacity: 1;
}
.recaptcha_change-password-error {
  border-color: #f39321;
}
.recaptcha.recaptcha_change-password {
  height: 66%;
}
.signup-benefits-desktop {
  width: 447px;
  height: 626px;
  background: url(8baab255ecdda83a57b6.svg) center center no-repeat;
  background-size: cover;
  padding: 48px 53px;
}
.signup-benefits-desktop__item-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}
.signup-benefits-desktop__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.signup-benefits-desktop__item {
  display: flex;
  gap: 8px;
  margin: 0;
}
.signup-benefits-desktop__item-icon {
  width: 12px;
  height: 24px;
}
.signup-benefits-desktop__item-title_green {
  color: #00c26f;
}
.signup-benefits-desktop__item-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
  opacity: 1;
}
.authorization-modal {
  max-width: 447px;
}
.authorization-modal__content {
  max-width: 447px;
  min-height: 510px;
}
.authorization-modal__content:has(.registration-section) {
  height: 580px;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.login-section) {
  height: auto;
  padding: 48px 11px;
  min-height: 598px;
}
.authorization-modal__content:has(.metamask-login) {
  min-height: 605px;
}
.authorization-modal__content.authorization-modal__content_additional-block {
  height: 626px;
}
.authorization-modal-dialog-paper.authorization-modal-dialog-paper_desktop {
  display: flex;
  flex-direction: row;
  max-width: 894px;
}
html[dir="rtl"] .authorization-modal .authorization-modal__content button {
  right: unset;
  left: 12px;
}
@media screen and (min-width: 480px) {
  .authorization-modal__content:has(.registration-section) {
    padding: 48px 20px;
  }
  .authorization-modal__content:has(.login-section) {
    padding: 48px 20px;
  }
}
@media screen and (min-width: 991px) {
  .authorization-modal__content:has(.registration-section) {
    height: 626px;
    padding: 38px 55px;
  }
  .authorization-modal__content:has(.login-section) {
    height: 626px;
    padding: 38px 55px;
  }
}
.link-expired__button {
  margin-top: 25px;
}
.link-expired__button-time {
  padding-left: 5px;
}
.wallet-connect-error {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #808086;
  padding: 6px 12px;
  background: #fcedba;
  border: 1px solid #ffd85c;
  border-radius: 6px;
  justify-self: flex-end;
  width: 100%;
}
.authorization {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 568px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.authorization__back {
  height: 20px;
  margin: 0 0 24px 0;
  padding: 0;
  padding-left: 22px;
  background: rgba(0, 0, 0, 0);
  border: none;
  font-size: 14px;
  color: #6a6a7f;
  z-index: 1;
  cursor: pointer;
}
.authorization__back:hover {
  color: #00c26f;
}
.authorization__back span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #6a6a7f;
  border-top: 2px solid #6a6a7f;
  transform: rotate(-45deg);
}
.authorization__back:hover span::after {
  border-color: #00c26f;
}
.authorization__success {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.authorization__success-button {
  margin-top: auto;
}
.walletconnect-modal__footer {
  flex-wrap: wrap;
}
.turnstile-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .authorization__back {
    left: -43px;
  }
}
@media screen and (min-width: 992px) {
  .authorization {
    min-height: initial;
  }
}
.mobile-menu-item {
  font-size: 24px;
  margin-bottom: 10px;
}
.mobile-menu-item__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 160px;
  outline: 0;
}
.mobile-menu-item__name svg {
  display: block;
  position: static;
}
.mobile-menu-item__submenu {
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0 15px;
}
.mobile-menu-item__submenu-item {
  font-size: 24px;
  margin-top: 10px;
}
.mobile-menu-item__submenu-item:first-child {
  margin-top: 0;
}
.mobile-menu-item__submenu-link {
  color: #fff;
}
.breadcrumbs {
  background-color: #2b2b36;
  padding: 10px 0;
}
.breadcrumbs .container {
  width: 100%;
  padding: 0 16px;
}
.breadcrumbs_dark {
  background: #2b2b36;
}
.breadcrumbs_light {
  background: #f6f4f8;
}
.breadcrumbs__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: -4px 0 0 0;
}
.breadcrumbs__list_scrollable {
  overflow-x: auto;
  width: 100%;
  border-spacing: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.breadcrumbs__list_scrollable::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.breadcrumbs__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline-end: 36px;
  margin-top: 4px;
}
.breadcrumbs__item:last-child {
  padding-inline-end: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__arrow {
  display: none;
}
.breadcrumbs__link {
  font-size: 15px;
  line-height: 18px;
  color: #616174;
}
a.breadcrumbs__link:hover {
  color: #3bee81;
}
.breadcrumbs__arrow {
  position: absolute;
  top: 6px;
  right: 18px;
  width: 6px;
  height: 6px;
  border: 1px solid #616174;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
html[dir="rtl"] .breadcrumbs__arrow {
  right: unset;
  left: 18px;
  transform: rotate(225deg);
}
@media screen and (min-width: 992px) {
  .breadcrumbs {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1440px) {
  .breadcrumbs .container {
    padding: 0 40px;
  }
}
.new-field__header,
.new-field__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
}
.new-field__footer {
  padding: 8px 0;
}
.new-field__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #2b2b36;
  letter-spacing: 0.1px;
}
.new-field__second-label,
.new-field__footer-label {
  font-size: 12px;
  line-height: 14px;
  color: #808086;
  text-align: end;
  letter-spacing: 0.1px;
  margin-inline-start: auto;
  transition: color ease 0.3s;
}
.new-field__footer-label:hover {
  color: #00c26f;
}
.new-field__input-placeholder .new-input:focus + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:not(:placeholder-shown)
  + .new-field-input__placeholder,
.new-field__input-placeholder
  .new-input:-webkit-autofill
  + .new-field-input__placeholder {
  transform: translate(3px, 2px) scale(0.8);
  z-index: 1;
  overflow: visible;
}
.new-field__input {
  position: relative;
  z-index: 1;
}
.new-field__input-placeholder .new-input::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input::placeholder {
  opacity: 0;
  visibility: hidden;
}
.new-field__input-placeholder .new-input {
  height: 56px;
  padding-top: 16px;
}
.new-field-input__placeholder {
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: 16px;
  line-height: 20px;
  color: #808086;
  font-weight: 300;
  letter-spacing: 0.01375em;
  padding-inline-start: 16px;
  transform: translate(0, 13px) scale(1);
  transform-origin: top left;
  transition: transform ease 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
html[dir="rtl"] .new-field-input__placeholder {
  transform-origin: top right;
}
.new-field__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
html[dir="rtl"] .new-field__icon {
  right: unset;
  left: 12px;
}
.new-field__qr-button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 20px;
}
.new-field__icon svg {
  display: block;
  transition: fill ease 0.3s;
}
.new-field__warning {
  top: -6px;
}
.new-field__field-prompts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  height: 18px;
  line-height: 100%;
}
.new-field__prompt {
  min-height: 14px;
  font-size: 12px;
  line-height: 14px;
  color: #6a6a7f;
  letter-spacing: 0.1px;
  margin-inline-end: auto;
}
.new-field__quality-prompt {
  font-size: 14px;
  margin-inline-start: auto;
}
.quality-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.quality-prompt_low {
  color: #df3131;
}
.quality-prompt_medium {
  color: #f39321;
}
.quality-prompt_high {
  color: #00c26f;
}
.quality-prompt__icon {
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 992px) {
  .new-field__prompt {
    font-size: 14px;
  }
}
.new-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
  font-weight: 700;
  background-color: #00c26f;
  border-radius: 6px;
  border: 1px solid #00c26f;
  text-align: center;
  padding: 0 5px;
  margin: 0 auto;
  cursor: pointer;
  transition: background ease 0.3s;
}
.new-button:hover {
  background-color: #00c87a;
  color: #fff;
}
.new-button:focus {
  outline: 0;
  -webkit-text-decoration: 0;
  text-decoration: 0;
  color: #fff;
}
.new-button:disabled {
  pointer-events: none;
}
.new-button_white {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
  transition: background, color, ease 0.3s;
}
.new-button_white:focus {
  background-color: #fff;
  color: #00c26f;
  border-color: #00c26f;
}
.new-textarea-field__textarea {
  position: relative;
  z-index: 1;
}
.new-textarea-field__warning {
  top: -6px;
}
.support-form {
  width: 100%;
  max-width: 746px;
  min-height: 420px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 48px 16px;
}
.support-form__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #2b2b37;
}
.support-form__description {
  max-width: 320px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #2b2b37;
  margin: 12px auto 0;
}
.support-form__field-input {
  position: relative;
  z-index: 2;
  margin-top: 8px;
}
.support-form__field-input_first {
  margin-top: 16px;
  z-index: 3;
}
.support-form__field-input_new .new-input {
  font-size: 16px;
  line-height: 20px;
  color: #6a6a7f;
}
.support-form__field-textarea {
  margin-top: 8px;
}
.support-form__buttons {
  margin-top: 16px;
}
.support-form__button {
  position: relative;
  height: 44px;
  margin-top: 16px;
}
.support-form__button:first-child {
  margin-top: 0;
}
.support-form__button-text {
  display: block;
  position: relative;
  z-index: 1;
  left: 0;
  opacity: 1;
  visibility: visible;
  transition: all ease 0.4s;
}
.support-form__button-text > div {
  display: block;
}
.support-form__button-text_hide {
  left: -40px;
  opacity: 0;
  visibility: hidden;
}
.support-form__button-sent-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: all ease 0.4s;
}
.support-form__button-sent-img_active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.support-form__message {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #f39321;
  margin-top: 8px;
}
.support-form_dark-theme {
  background-color: #23232c;
}
.support-form_dark-theme .support-form__title,
.support-form_dark-theme .support-form__description {
  color: #fff;
}
.support-form_dark-theme .new-input,
.support-form_dark-theme .new-textarea {
  background-color: #2b2b36;
  border-color: #49496c;
  color: #9696a5;
}
.support-form_dark-theme .new-input::-moz-placeholder,
.support-form_dark-theme .new-textarea::-moz-placeholder {
  color: #9696a5;
}
.support-form_dark-theme .new-input::placeholder,
.support-form_dark-theme .new-textarea::placeholder {
  color: #9696a5;
}
.support-form_dark-theme .new-input_error {
  border-color: #fcedba;
}
.support-form__success-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.support-form__success-image {
  background: url(f1a02111c0fef89183c0.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 132px;
  max-width: 380px;
}
.support-form__success-header {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #2b2b37;
  margin: 8px 0 0 0;
  padding: 0;
}
.support-form__success-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #2b2b37;
  margin: 8px;
  padding: 0;
  width: 100%;
  max-width: 552px;
}
.support-form__success-button-group {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.support-form__success-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  min-width: 183px;
  background: #f8f8f8;
  border: 1px solid #00c26f;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #00c26f;
  margin: 16px 0 0 0;
  width: 100%;
}
.support-form__success-button:hover {
  opacity: 0.8;
}
a.support-form__success-button:hover,
a.support-form__success-button:visited {
  color: #00c26f;
}
a.support-form__success-button_main {
  color: #fff;
  background: #00c26f;
}
a.support-form__success-button_main:hover,
a.support-form__success-button_main:visited {
  color: #fff;
}
.support-form__button_border {
  background-color: rgba(0, 0, 0, 0);
  color: #00c26f;
  border-color: #00c26f;
  transition: background, color, ease 0.3s;
}
.support-form__button_border:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #00c26f;
  border-color: #00c26f;
}
.support-form_dark-theme .support-form__success-header,
.support-form_dark-theme .support-form__success-text {
  color: #fff;
  opacity: 1;
}
.support-form_dark-theme .support-form__success-button {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.support-form_dark-theme .support-form__success-button_main {
  background-color: #00c26f;
}
.support-form_dark-theme .support-form__success-button_main:hover {
  background-color: #00c87a;
}
@media screen and (min-width: 576px) {
  .support-form__success-button-group {
    flex-direction: row;
    width: auto;
  }
  .support-form__success-button {
    width: auto;
    margin: 16px 12px 0 12px;
  }
}
@media screen and (min-width: 768px) {
  .support-form__description {
    max-width: 475px;
  }
  .support-form__success-header {
    font-size: 40px;
    line-height: 48px;
  }
  .support-form__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .support-form__button {
    width: 176px;
    margin: 0 0 0 16px;
  }
  .support-form__button:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .support-form {
    padding: 48px 97px;
  }
  .support-form__title {
    font-size: 40px;
    line-height: 48px;
  }
  .support-form__description {
    margin-top: 16px;
  }
  .support-form__message {
    font-size: 16px;
  }
}
.new-pagination {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.new-pagination__page-button {
  background: #fff;
  outline: none;
  border: 1px solid #d3d7da;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-inline-end: 10px;
  margin-top: 10px;
  transition: all 0.2s ease;
}
.new-pagination__page-button:last-child {
  margin-inline-end: 0;
}
.new-pagination__page-button_active {
  border: 1px solid #00c26f;
  cursor: initial;
}
.new-pagination__page-button:hover {
  opacity: 1;
  border-color: #00c26f;
}
.new-pagination__page-button:active {
  background-color: #e6f9f1;
}
.new-pagination__page-button.new-pagination__page-button_active:hover {
  opacity: 1;
}
.new-pagination__splitter {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #2b2b37;
  margin-top: auto;
  margin-bottom: 0;
  margin-inline-start: 0;
  margin-inline-end: 12px;
  padding: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .new-pagination__page-button {
    margin-inline-end: 12px;
    margin-top: 12px;
  }
}
.asset-recovering-banner {
  background-image: url(cab87ce808d7398e949f.svg);
  background-repeat: repeat;
  background-position: center;
  width: 100%;
  position: relative;
  z-index: 0;
}
.asset-recovering-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(096e1559decd038e0a87.svg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.asset-recovering-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(15d8f989b4b91e047fb1.svg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.asset-recovering-banner__container {
  max-width: 1134px;
  padding: 16px 16px 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.asset-recovering-banner__text-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.asset-recovering-banner__image-wrapper {
  margin: 28px auto 0;
}
.asset-recovering-banner__image {
  width: 225px;
}
.asset-recovering-banner__star {
  display: none;
}
@media screen and (min-width: 992px) {
  .asset-recovering-banner__container {
    max-width: 1134px;
    padding: 16px 16px 120px;
    display: flex;
    flex-direction: row-reverse;
    gap: 132px;
    margin: 0 auto;
  }
  .asset-recovering-banner__text-container {
    max-width: 680px;
    justify-content: center;
    gap: 20px;
  }
  .asset-recovering-banner__image-wrapper {
    margin: 78px auto 0;
    position: relative;
  }
  .asset-recovering-banner__image {
    width: 288px;
  }
  .asset-recovering-banner__star {
    display: block;
    position: absolute;
  }
  .asset-recovering-banner__star_small {
    width: 22px;
    height: 22px;
    top: -18px;
    right: -11px;
  }
  .asset-recovering-banner__star_big {
    width: 40px;
    height: 40px;
    right: -46px;
    top: -4px;
  }
}
.asset-recovering-content {
  padding: 120px 16px 60px;
  background-color: #f6f4f8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asset-recovering-content__posts {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.asset-recovering-content__post {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px;
  background-color: #fff;
  border: solid 1px #e5e5e9;
  border-radius: 16px;
  cursor: pointer;
}
.asset-recovering-content__post:hover {
  border: solid 1px #00c26f;
}
.asset-recovering-content__post-image-container {
  height: 157px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.asset-recovering-content__post-image {
  width: 100%;
  height: 100%;
}
.asset-recovering-content__post-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #2b2b37;
  margin: 0;
  padding: 0;
  word-break: break-word;
}
.asset-recovering-content__post-time {
  font-size: 14px;
  line-height: 18px;
  color: #6a6a7f;
  margin: auto 0 0;
  padding: 0;
}
@media screen and (min-width: 360px) {
  .asset-recovering-content__post-image-container {
    height: 140px;
  }
}
@media screen and (min-width: 420px) {
  .asset-recovering-content__post-image-container {
    height: 190px;
  }
}
@media screen and (min-width: 520px) {
  .asset-recovering-content__post-image-container {
    height: 220px;
  }
}
@media screen and (min-width: 580px) {
  .asset-recovering-content__posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .asset-recovering-content__post-image-container {
    height: 120px;
  }
}
@media screen and (min-width: 680px) {
  .asset-recovering-content__post-image-container {
    height: 140px;
  }
}
@media screen and (min-width: 780px) {
  .asset-recovering-content__post-image-container {
    height: 170px;
  }
}
@media screen and (min-width: 880px) {
  .asset-recovering-content__post-image-container {
    height: 190px;
  }
}
@media screen and (min-width: 992px) {
  .asset-recovering-content {
    max-width: 1134px;
    margin: 0 auto;
  }
  .asset-recovering-content__posts {
    grid-template-columns: repeat(3, 1fr);
  }
  .asset-recovering-content__post-image-container {
    height: 140px;
  }
}
@media screen and (min-width: 1080px) {
  .asset-recovering-content__post-image-container {
    height: 157xpx;
  }
}
.asset-recovering-cooperating {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 16px 120px;
}
.asset-recovering-cooperating__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.asset-recovering-cooperating__image {
  height: 48px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .asset-recovering-cooperating {
    max-width: 1134px;
    margin: 0 auto;
  }
  .asset-recovering-cooperating__list {
    flex-direction: row;
    gap: 60px;
  }
}
.asset-recovering-measures {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 16px;
}
.asset-recovering-measures__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.asset-recovering-measures__list-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.asset-recovering-measures__list-item:first-child {
  margin-top: 20px;
}
.asset-recovering-measures__list-item-icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 992px) {
  .asset-recovering-measures {
    max-width: 1134px;
    margin: 0 auto;
  }
  .asset-recovering-measures__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
  }
  .asset-recovering-measures__list-item:first-child {
    margin-top: 0;
  }
}
.asset-recovering-principles {
  padding: 120px 16px 60px;
  background-color: #2b2b37;
}
.asset-recovering-principles__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.asset-recovering-principles__image-wrapper {
  display: none;
}
.asset-recovering-principles__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.asset-recovering-principles__accordion {
  display: flex;
  border: 1px solid #46475d;
  border-radius: 16px;
  background-color: #343443;
  padding: 20px 16px 0;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
}
.asset-recovering-principles__accordion-item {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid #3d3d58;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  max-height: 41px;
}
.asset-recovering-principles__accordion-item:last-child {
  border-bottom: none;
}
.asset-recovering-principles__accordion-header-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
}
.asset-recovering-principles__accordion-header-wrapper:hover {
  color: #00c26f;
}
.asset-recovering-principles__accordion-header-wrapper
  .asset-recovering__list-item-header_white {
  color: inherit;
}
.asset-recovering-principles__accordion-button {
  background: rgba(0, 0, 0, 0);
  border: none;
  width: 20px;
  height: 20px;
  align-self: center;
  padding: 0;
  margin: 0;
}
.asset-recovering-principles__accordion-par-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.asset-recovering-principles__inner-list {
  margin: 0 0 0 12px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.asset-recovering-principles__inner-list li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.asset-recovering-principles__inner-list-marker {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #00c26f;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .asset-recovering-principles__wrapper {
    max-width: 1134px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
  }
  .asset-recovering-principles__image-wrapper {
    display: block;
  }
  .asset-recovering-principles__image {
    width: 285px;
    transform: rotate(5.96deg);
  }
  .asset-recovering-principles__text-wrapper {
    max-width: 748px;
  }
  .asset-recovering-principles__accordion-item {
    max-height: 49px;
  }
}
.asset-recovering-security-matters {
  background-color: #343443;
  border-width: 1px 0;
  border-style: solid;
  border-color: #46475d;
  padding: 120px 16px;
}
.asset-recovering-security-matters__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .asset-recovering-security-matters {
    padding: 60px 16px;
  }
  .asset-recovering-security-matters__text-wrapper {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1134px;
    margin: 0 auto;
    align-items: center;
  }
}
.asset-recovering-support {
  background-color: #343443;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-image-source: linear-gradient(
    94.56deg,
    #46475d -6.78%,
    #9395c3 223.89%
  );
  padding: 60px 16px 0;
}
.asset-recovering-support__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asset-recovering-support__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.asset-recovering-support__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #3b3b49;
  padding: 32px 16px;
  margin: 0 -16px;
}
.asset-recovering-support__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.asset-recovering-support__form .new-input,
.asset-recovering-support__form .new-textarea {
  box-sizing: border-box;
  margin: 0;
  font-family: inherit;
  height: 56px;
  width: 100%;
  padding: 14px 16px;
  border: solid 1px #46475d;
  background-color: #3e3e58;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  border-radius: 8px;
}
.asset-recovering-support__form .new-input::-moz-placeholder,
.asset-recovering-support__form .new-textarea::-moz-placeholder {
  color: #aeb0bd;
}
.asset-recovering-support__form .new-input::-moz-placeholder,
.asset-recovering-support__form .new-textarea::-moz-placeholder {
  color: #aeb0bd;
}
.asset-recovering-support__form .new-input::placeholder,
.asset-recovering-support__form .new-textarea::placeholder {
  color: #aeb0bd;
}
.asset-recovering-support__form .new-input:focus,
.asset-recovering-support__form .new-textarea:focus {
  outline: none;
  border-color: #00c26f;
}
.asset-recovering-support__form .new-input:hover,
.asset-recovering-support__form .new-textarea:hover {
  border-color: #00c26f;
}
.asset-recovering-support__form .new-textarea {
  height: 120px;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  resize: none;
}
.asset-recovering-support__form .new-textarea::-webkit-scrollbar {
  display: none;
}
.asset-recovering-support__button {
  height: 44px;
  width: 100%;
  padding: 12px 24px;
  color: #fff;
  background-color: #00c26f;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 8px;
}
.asset-recovering-support__button:hover {
  border-color: #00c26f;
}
.asset-recovering-support__form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 60px;
}
.asset-recovering-support__form-success-image {
  height: 120px;
}
.asset-recovering-support__form-success-text {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .asset-recovering-support {
    background-color: #2b2b37;
    border: 0;
    position: relative;
  }
  .asset-recovering-support::before {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-image: linear-gradient(
      90deg,
      #4ea1f5 -39.45%,
      #5c95f4 11.48%,
      #81add1 187.35%
    );
    filter: blur(120px);
    opacity: 0.6;
    box-shadow: 0 0 164px 82px #5c95f4;
    top: 55%;
    left: calc((100vw - 1134px) / 1.5);
  }
  .asset-recovering-support::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 150px;
    height: 100px;
    border-radius: 50%;
    background-image: linear-gradient(
      90deg,
      #4ea1f5 -39.45%,
      #5c95f4 11.48%,
      #81add1 187.35%
    );
    filter: blur(90px);
    opacity: 0.6;
    box-shadow: 0 0 164px 82px #5c95f4;
    top: 40%;
    right: calc((100vw - 1134px) / 1.8);
  }
  .asset-recovering-support__wrapper {
    max-width: 1134px;
    margin: 0 auto;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #3b3b49;
    border: 1px solid #46475d;
    gap: 0;
    position: relative;
    z-index: 1;
  }
  .asset-recovering-support__text-wrapper {
    padding: 60px;
    margin: 0;
    background-image: url(19954c0b265a095e3422.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .asset-recovering-support__form-wrapper {
    padding: 60px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0);
  }
  .asset-recovering-support__form .new-textarea {
    height: 220px;
  }
}
.asset-recovering-tips {
  padding: 120px 16px;
  background-color: #2b2b37;
}
.asset-recovering-tips__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.asset-recovering-tips__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.asset-recovering-tips__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #343443;
  border: solid 1px #46475d;
  border-radius: 16px;
  padding: 16px;
}
.asset-recovering-tips__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.asset-recovering-tips__title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  word-break: break-word;
}
.asset-recovering-tips__description {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  color: #aeb0bd;
  word-break: break-word;
}
@media screen and (min-width: 580px) {
  .asset-recovering-tips__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .asset-recovering-tips__wrapper {
    max-width: 1134px;
    margin: 0 auto;
  }
  .asset-recovering-tips__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.asset-recovering {
  width: 100%;
}
.asset-recovering-title {
  padding: 0;
  margin: 32px 0 0;
  font-size: 34px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}
.asset-recovering-title_green {
  color: #00c26f;
}
.asset-recovering-title_normal {
  font-weight: 400;
}
.asset-recovering-text {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.34px;
  color: #aeb0bd;
  word-break: break-word;
}
.asset-recovering-text_light-bg {
  color: #6a6a7f;
}
.asset-recovering-section-title {
  margin: 0;
  padding: 0;
  color: #2b2b36;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  word-break: break-word;
}
.asset-recovering-section-title_white {
  color: #fff;
}
.asset-recovering__list-item-header {
  color: #2b2b37;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.34px;
  padding: 0;
  margin: 0;
  word-break: break-word;
}
.asset-recovering__list-item-header_white {
  color: #fff;
}
.asset-recovering__list-item-text {
  color: #6a6a7f;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  word-break: break-word;
}
.asset-recovering__list-item-text_dark-bg {
  color: #aeb0bd;
}
.asset-recovering__list-item-text_green {
  color: #00c26f;
}
@media screen and (min-width: 992px) {
  .asset-recovering-title {
    font-size: 48px;
    line-height: 56px;
  }
  .asset-recovering-section-title {
    font-size: 34px;
    line-height: 42px;
  }
  .asset-recovering-text {
    max-width: 800px;
    width: 100%;
  }
  .asset-recovering__list-item-header {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
  }
  .asset-recovering__list-item-text {
    font-size: 20px;
    line-height: 28px;
  }
}
.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;
}
.our-team__card {
  border: 2px solid #e5e5e9;
  border-radius: 12px;
}
.our-team__card-content {
  padding: 24px 24px 32px;
}
.our-team__card-name {
  display: inline-block;
  margin-bottom: 8px;
  margin-top: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0;
  text-align: left;
  color: #2b2b37;
}
.our-team__card-position {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: #2b2b37;
}
.our-team__card-image {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.our-team__contacts {
  display: flex;
  padding-top: 24px;
  gap: 20px;
}
.our-team__contacts-image {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 992px) {
  .our-team__card {
    max-width: 346px;
  }
  .our-team__card-name {
    font-size: 32px;
  }
}
.our-team {
  padding: 60px 16px;
  background-color: #fff;
}
.our-team__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
  color: #2b2b37;
}
.our-team__description {
  margin-top: 0;
  margin-bottom: 40px;
  max-width: 712px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: #2b2b37;
  opacity: 1;
}
.our-team__slider {
  width: 100%;
  margin: 0 auto;
}
.our-team__slider .slick-slider .slick-track {
  height: -moz-fit-content;
  height: fit-content;
}
.our-team__slider .slick-slider .slick-list {
  padding: 0;
}
.our-team__slider .slick-slider .slick-slider-custom__dots {
  padding-top: 12px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .our-team__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: 0;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .our-team {
    padding: 120px 16px;
  }
  .our-team__description {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  .our-team__slider {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 0 48px;
  }
  .our-team__slider .slick-track {
    display: flex;
    justify-content: center;
    gap: 48px;
  }
  .our-team__slider .slick-track > div > div {
    height: 100%;
  }
  .our-team__slider .slick-track > div {
    max-width: 346px;
  }
}
@media screen and (min-width: 1200px) {
  .our-team__slider {
    padding: 0 89px;
  }
}
