.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;
  }
}
.svg-sprite--apple-pay {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.7900552486% 72.7828746177%;
  width: 30px;
  height: 16px;
}
.svg-sprite--appstore-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 60.4501607717%;
  width: 100px;
  height: 32px;
}
.svg-sprite--appstore-big {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 0;
  width: 144px;
  height: 45px;
}
.svg-sprite--banxa {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 71.4285714286% 41.9047619048%;
  width: 28px;
  height: 28px;
}
.svg-sprite--bestchange {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 97.6821192053% 48.7577639752%;
  width: 90px;
  height: 21px;
}
.svg-sprite--checked {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 99.4623655914% 66.8730650155%;
  width: 20px;
  height: 20px;
}
.svg-sprite--coinify {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--exchange-arrows {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 26.9754768392% 79.6875%;
  width: 25px;
  height: 23px;
}
.svg-sprite--gplay-badge {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 42.4657534247% 70.7395498392%;
  width: 100px;
  height: 32px;
}
.svg-sprite--guardarian {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 59.6825396825%;
  width: 28px;
  height: 28px;
}
.svg-sprite--logotype {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.0599369085% 64.8829431438%;
  width: 75px;
  height: 44px;
}
.svg-sprite--logotype-sub {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 50.3759398496% 42.1725239617%;
  width: 126px;
  height: 30px;
}
.svg-sprite--mail {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 0;
  width: 151px;
  height: 132px;
}
.svg-sprite--ny-logo {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 98.0066445183% 34.2756183746%;
  width: 91px;
  height: 60px;
}
.svg-sprite--payment-methods {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 93.6507936508% 54.4342507645%;
  width: 77px;
  height: 16px;
}
.svg-sprite--play-btn {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 0;
  width: 97px;
  height: 97px;
}
.svg-sprite--play-market {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 60.8870967742% 15.1006711409%;
  width: 144px;
  height: 45px;
}
.svg-sprite--play-market-white-border {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 82.2580645161%;
  width: 99px;
  height: 33px;
}
.svg-sprite--simplex {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 61.5384615385% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--slider-arrow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 100%;
  width: 32px;
  height: 55px;
}
.svg-sprite--star-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 100% 60.4361370717%;
  width: 22px;
  height: 22px;
}
.svg-sprite--stars {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 43.9716312057% 51.7133956386%;
  width: 110px;
  height: 22px;
}
.svg-sprite--stars-yellow {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 88.5885885886% 76.0383386581%;
  width: 59px;
  height: 30px;
}
.svg-sprite--transak {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 69.2307692308% 69.8412698413%;
  width: 28px;
  height: 28px;
}
.svg-sprite--trustpilot-fresh {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 65.3543307087%;
  width: 124px;
  height: 89px;
}
.svg-sprite--trustpilot-full {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 0 42.7184466019%;
  width: 134px;
  height: 34px;
}
.svg-sprite--visa-master {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 58.984375% 29.702970297%;
  width: 136px;
  height: 40px;
}
.svg-sprite--wordpress-icon {
  background: url(7703217b4504c9366d6a.svg) no-repeat;
  background-position: 79.3010752688% 82.9721362229%;
  width: 20px;
  height: 20px;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/d35560f975237042678e.woff) format("woff"),
    url(../fonts/2445189fae179285f7ec.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/53ebab6c7d265306f80d.woff) format("woff"),
    url(../fonts/795493644e3c7a22dfac.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/adc53e86b2f7cb173750.woff) format("woff"),
    url(../fonts/24e7ca4b0acf1a0dac78.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/285509d0eb9b5f31386c.woff) format("woff"),
    url(../fonts/db797e0aed0d44216930.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/94657033fd8e28659819.woff) format("woff"),
    url(../fonts/7ed42f773b172d236bc4.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/7e045f32011f2f549512.woff) format("woff"),
    url(../fonts/25ff2156254ba20a4704.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/0e771f884d5d7b341ac0.woff) format("woff"),
    url(../fonts/3a2c17eec3e71883dd0f.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ceaa06cbe56757d8069.woff) format("woff"),
    url(../fonts/3b59f4fac87f52efe27c.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/ed6a9b4bf546ecff24c6.woff) format("woff"),
    url(../fonts/7623c8b105a0e0b99cbb.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/1ab91631bafc1838cf55.woff) format("woff"),
    url(../fonts/8a2157e7f70d26bbbbaf.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/b01b7927b533ea3e1554.woff) format("woff"),
    url(../fonts/24cfe7008702c8f812ac.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/02f08a63db46edcb42d1.woff) format("woff"),
    url(../fonts/897a05889d4894a27cf2.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/16f3b5c18f8356360098.woff) format("woff"),
    url(../fonts/acf574aebf333444b31c.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/9ca831153ca66ca187ac.woff) format("woff"),
    url(../fonts/9e7ae88d3f68ed19d64a.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/3044fd8e8933d7f91242.woff) format("woff"),
    url(../fonts/81880694cc8b8f79eed4.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/a12c527ee24dcc6ccb75.woff) format("woff"),
    url(../fonts/746e4b5d434b64a4206f.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
:export {
  font: Roboto, Arial, Helvetica, sans-serif;
  colorPrimary: #00c26f;
  colorPrimaryLight: #16d785;
  colorSecondary: #5c5780;
  colorBackground: #f6f4f8;
  colorDark: #2b2b36;
  colorDarkText: #2c4240;
  colorTextOnDarkBg: #56566e;
  colorRed: #dc1d2e;
  colorTextOnDarkBgLight: #706c90;
  colorWhite: #fff;
  colorBlack: #000;
  colorGray: #e5e5e5;
  colorDarkGray: #c4c3c9;
  colorDarkInput: #36324a;
  colorLight: #383861;
  colorLightGradient: #3d3d70;
  colorGlow: #6d6bd9;
  colorWhiteArticle: #d7dfe8;
  colorLightGreen: #d8fce6;
  colorBtn: #383857;
  colorFirstItemUsing: #454391;
  colorSecondItemUsing: #5452ac;
  colorBtnLight: #50e3a2;
  colorBlur: #26b6f6;
  colorYellow: #ffd12a;
  colorYellowLight: #f2c94c;
  colorBannerTopic: #f2f2f2;
  colorDarkLight: #333;
  colorBorderGreen: #00c26f;
  colorInputBorder: #d1cfdd;
  colorScrollbarPrimary: #e9e7ee;
  colorScrollbarSecondary: #00c26f;
  colorBlue: #2551ae;
  colorLightGray: #f7f7f9;
  bannerFirstBlockGradient: linear-gradient(
    270.79deg,
    #a086fc 1.82%,
    #ffda54 99.89%
  );
  bannerLastBlockGradient: linear-gradient(
    270.79deg,
    #7977ef 1.82%,
    #45da93 122.34%
  );
  headerGradient: linear-gradient(28.39deg, #3d3d70 4.29%, #2b2b36 42.96%);
  secondaryGradient: linear-gradient(16.24deg, #3d3d70 4.29%, #2b2b36 42.96%);
  rangeGradient: linear-gradient(
    to right,
    #00c26f 0%,
    rgba(255, 255, 255, 0.3) 0
  );
  footerGradient: linear-gradient(10.32deg, #3d3d70 4.29%, #2b2b36 42.96%);
  headerHeight: 105px;
  footerHeight: 424px;
  minContentHeight: calc(100vh - 105px - 424px);
  mobileWidth: 768px;
  tabletWidth: 992px;
  smallDesktopWidth: 1200px;
  smallMobileWidth: 480px;
  screenMaxWidthXL: 1599px;
  screenMinWidthXL: 1200px;
  screenMaxWidthL: 1199px;
  screenMinWidthL: 992px;
  screenMaxWidthM: 991px;
  screenMinWidthM: 768px;
  screenMaxWidthS: 767px;
  screenMinWidthS: 576px;
  screenMaxWidthXS: 575px;
  screenMinWidthXS: 380px;
  screenMaxWidthXXS: 379px;
}
html {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-style: normal;
  background: #f6f4f8;
}
body {
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
a {
  color: #00c26f;
}
a:hover,
a:active {
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  color: #00c26f;
  text-decoration: none;
}
a.active-navigation-link {
  cursor: default;
}
a[disabled] {
  pointer-events: none;
}
#error-help-form {
  display: none;
}
h1 {
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 400;
  font-size: 36px;
  color: #2b2b36;
}
h2 {
  margin-top: 40px;
  font-weight: normal;
  font-size: 24px;
  color: #00c26f;
}
h3 {
  margin-top: 0;
  font-size: 24px;
  color: #5c5780;
}
h4 {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 18px;
  color: #5c5780;
}
p {
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #2b2b36;
  letter-spacing: 0.1px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 15px;
  }
}
input,
textarea {
  margin-bottom: 25px;
  padding: 10px 20px;
  font-size: 20px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: 0.01375em;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 5px;
}
@media (max-width: 768px) {
  input,
  textarea {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
textarea {
  resize: vertical;
}
::-webkit-input-placeholder {
  color: #b6c0cb;
}
::-moz-placeholder {
  color: #b6c0cb;
}
:-moz-placeholder {
  color: #b6c0cb;
}
:-ms-input-placeholder {
  color: #b6c0cb;
}
.scroll-lock {
  overflow: hidden;
}
.relative {
  position: relative;
}
.small {
  font-weight: 300;
  font-size: 0.75em;
}
.dark {
  color: #56566e;
}
.title-text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
#app-root {
  min-height: 700px;
}
body.page_dashboard #app {
  min-height: 70vh;
  box-sizing: border-box;
  padding-bottom: 0;
  position: relative;
}
.circular-progress {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto;
}
.page_exchange .page__warning-api {
  margin-bottom: 40px;
}
body.page_partners-log-in_shown .top-menu-login-link {
  display: inline-block;
  vertical-align: middle;
}
body.page_partners-log-in_shown .header-join-pro-button {
  display: none;
}
body.page_for-partners .footer,
body.page_multichain-bridge .footer,
body.page_crypto-exchange .footer {
  padding-top: 308px;
}
body.page_warm-wallets .footer {
  padding-top: 365px;
}
.loader-icon {
  display: block;
}
.loader-icon_absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized) {
  display: flex;
  background-color: #49496c;
  border-color: #49496c;
}
.page_authorization-new-theme
  .authorization-user__icon:not(.authorization-user__icon_authorized):hover {
  background-color: #4f4f79;
  border-color: #4f4f79;
}
.page_authorization-new-theme .authorization-user__buttons {
  display: none;
}
@media screen and (min-width: 992px) {
  .page_exchange .page__warning-api {
    margin-bottom: 90px;
  }
  body.page_for-partners .footer,
  body.page_multichain-bridge .footer,
  body.page_crypto-exchange .footer {
    padding-top: 380px;
  }
  body.page_warm-wallets .footer {
    padding-top: 355px;
  }
}
@media screen and (min-width: 1200px) {
  body.page_partners-log-in_shown .top-menu-login-link {
    display: none;
  }
}
@font-face {
  font-family: "icons";
  font-display: swap;
  src: url(../fonts/ce582a188fd8f253a833.eot);
  src: url(../fonts/ce582a188fd8f253a833.eot?#iefix) format("eot"),
    url(../fonts/1755b8cf47b3e6787be6.woff2) format("woff2"),
    url(../fonts/8f8ac1080bff8d4a07f1.woff) format("woff"),
    url(../fonts/42a431091930c9d7b618.ttf) format("truetype"),
    url(49dc41ccc1f9731f9695.svg#icons) format("svg");
}
.icon:before,
.button__arrow:before {
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}
.icon-arrow-big:before {
  content: "";
}
.icon-arrow-down:before {
  content: "";
}
.icon-bitcointalk:before {
  content: "";
}
.icon-button-arrow:before,
.button__arrow:before {
  content: "";
}
.icon-check:before {
  content: "";
}
.icon-coinify:before {
  content: "";
}
.icon-copy:before {
  content: "";
}
.icon-error:before {
  content: "";
}
.icon-exchange:before {
  content: "";
}
.icon-facebook:before {
  content: "";
}
.icon-guarda:before {
  content: "";
}
.icon-info:before {
  content: "";
}
.icon-instagram:before {
  content: "";
}
.icon-medium:before {
  content: "";
}
.icon-no:before {
  content: "";
}
.icon-ok:before {
  content: "";
}
.icon-open:before {
  content: "";
}
.icon-rate-up:before {
  content: "";
}
.icon-reddit:before {
  content: "";
}
.icon-search:before {
  content: "";
}
.icon-simplex:before {
  content: "";
}
.icon-star:before {
  content: "";
}
.icon-success:before {
  content: "";
}
.icon-tg:before {
  content: "";
}
.icon-twitter:before {
  content: "";
}
.icon-youtube:before {
  content: "";
}
.button {
  background: #00c26f;
  border: none;
  color: #fff;
  height: 50px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  width: auto;
  padding: 0 50px;
  cursor: pointer;
  position: relative;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .button {
    height: 42px;
    line-height: 42px;
    padding: 0 30px;
  }
}
.button:active {
  opacity: 0.8;
}
.button:hover {
  color: #fff;
  background: #16d785;
}
.button:disabled {
  background: #cacaca;
  cursor: not-allowed;
}
.button:hover:disabled {
  background: #cacaca;
}
.button--icon {
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
  line-height: 1;
  margin-inline-end: 10px;
}
.button__black {
  background: #2b2b36;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}
.button__black:hover {
  background: #00c26f;
}
.button__arrow {
  padding-right: 50px;
}
.button__arrow:hover {
  background-color: #3d3d70;
}
.button__arrow::before {
  display: block;
  color: #00c26f;
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 12px;
}
.button__arrow:hover::before {
  color: #fff;
}
.button__long {
  width: 100%;
  max-width: 220px;
}
.button__full {
  width: 100%;
}
.button__thin {
  width: 100px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  background: #00c26f;
  padding: 1px 15px 0;
  transition: background-color ease 0.3s;
}
.button__thin:hover {
  background: #00c87a;
}
.button__thin.button__arrow {
  text-align: left;
}
.button__thin.button__arrow::before {
  color: #fff;
}
.button__narrow {
  border-radius: 5px;
  height: 46px;
  line-height: 46px;
  padding: 0 46px;
}
.button__bordered {
  background: rgba(0, 0, 0, 0);
  border: 2px solid #00c26f;
  color: #00c26f;
  line-height: 40px;
  border-radius: 5px;
}
.button__bordered:hover {
  background: rgba(0, 0, 0, 0);
  opacity: 0.5;
  color: #00c26f;
}
.button__small {
  border-radius: 5px;
  height: 30px;
  font-size: 13px;
  line-height: 28px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .button__small {
    padding: 0 18px;
  }
}
.button__tiny {
  border-radius: 5px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  padding: 0 20px;
}
.button__bordered.button__tiny {
  border-width: 1px;
}
.button-close {
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
.button-close::before,
.button-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  margin: auto;
  background-color: #fff;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.button-close__dark::before,
.button-close__dark::after {
  background-color: #56566e;
}
.button-close__small {
  width: 15px;
  height: 15px;
}
.button-close__small::before,
.button-close__small::after {
  width: 15px;
}
.button-close::after {
  transform: rotate(-45deg);
}
.button__orange-action {
  background-color: rgba(0, 0, 0, 0);
  color: #eaa523;
  border: 2px solid #eaa523;
  border-color: #eaa523;
  position: relative;
  width: auto;
  height: 34px;
  line-height: 30px;
  padding: 0px 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
.button__orange-action:hover {
  color: #fff;
  background: #eaa523;
}
.recommended-wallet-button {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  background-image: linear-gradient(#2b2a36, #2b2a36),
    linear-gradient(
      268.76deg,
      #fb9600 1.78%,
      #00c26f 25.98%,
      #6696d6 50.43%,
      #f28984 76.64%,
      #5fcef0 98.23%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0 20px;
  transition: color ease 0.3s;
}
.recommended-wallet-button:hover {
  color: #00c26f;
}
.recommended-wallet-button:hover .recommended-wallet-button__stars-icon {
  top: -19px;
  right: -26px;
  transform: rotate(10deg);
}
html[dir="rtl"]
  .recommended-wallet-button:hover
  .recommended-wallet-button__stars-icon {
  left: -26px;
  right: unset;
}
.recommended-wallet-button__logo {
  margin-inline-start: 8px;
}
.recommended-wallet-button__stars-icon {
  display: block;
  position: absolute;
  top: -17px;
  right: -24px;
  transition: all ease 0.3s;
}
html[dir="rtl"] .recommended-wallet-button__stars-icon {
  transform: scaleX(-1);
  right: unset;
  left: -24px;
}
.recommended-wallet-button_desktop {
  display: none;
}
.recommended-wallet-button_mobile {
  display: inline-flex;
}
.button--stars-icon {
  width: 55px;
  height: 26px;
  position: absolute;
  top: -16px;
  right: -35px;
  transform-origin: center;
  transform: scale(0.7) rotate(27deg);
}
.button__gray {
  color: #808086;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3px;
  background: #333341;
  border-radius: 4px;
}
.button__gray:hover {
  color: #fff;
  background: #434352;
}
.button__gray_active {
  color: #fff;
  background: #434352;
}
@media screen and (min-width: 992px) {
  .recommended-wallet-button_desktop {
    display: inline-flex;
  }
  .recommended-wallet-button_mobile {
    display: none;
  }
}
#app-header {
  display: contents;
}
.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;
  }
}
.inner-content-wrapper {
  padding-bottom: 56px;
}
.inner-content-wrapper__aside {
  margin-left: -15px;
  margin-right: -15px;
}
.inner-content-wrapper__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  margin-top: 40px;
}
.inner-content-wrapper__content h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #2b2b37;
  margin: 0 0 8px;
}
.inner-content-wrapper__content h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  margin: 56px 0 24px;
}
.inner-content-wrapper__content h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  margin: 46px 0 20px;
}
.inner-content-wrapper__content h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #2b2b37;
  margin: 24px 0 16px;
}
.inner-content-wrapper__content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b37;
  opacity: 1;
  margin: 16px 0;
}
.inner-content-wrapper__content p a {
  color: #00c26f;
}
.inner-content-wrapper__content p a:hover {
  color: #00c26f;
}
@media screen and (min-width: 768px) {
  .inner-content-wrapper__aside {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .inner-content-wrapper {
    padding-top: 40px;
    padding-bottom: 120px;
  }
  .inner-content-wrapper__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .inner-content-wrapper__aside {
    width: 232px;
    flex-shrink: 0;
    margin-inline-end: 30px;
  }
  .inner-content-wrapper__content {
    width: calc(100% - 262px);
    flex-grow: 1;
    margin-top: 0;
  }
  .inner-content-wrapper__content h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .inner-content-wrapper__aside {
    margin-inline-end: 67px;
  }
  .inner-content-wrapper__content {
    width: calc(100% - 299px);
  }
}
.aside-menu {
  background-color: #fff;
}
.aside-menu_active .aside-menu__header:before {
  top: 21px;
  transform: rotate(225deg);
}
.aside-menu__header {
  position: relative;
  border-bottom: 1px solid #dce2ea;
  padding: 10px 16px;
  outline: 0;
}
.aside-menu__header:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 16px;
  right: 22px;
  border: 2px solid #757575;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: all ease 0.3s;
}
html[dir="rtl"] .aside-menu__header:before {
  left: 22px;
  right: unset;
}
.aside-menu__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #2b2b37;
}
.aside-menu__content {
  transition: max-height ease 0.3s;
  overflow: hidden;
}
.aside-menu__list {
  list-style-type: none;
  padding: 16px;
  margin: 0;
}
.aside-menu__item {
  margin-top: 8px;
}
.aside-menu__item:first-child {
  margin-top: 0;
}
.aside-menu__submenu {
  max-height: 0;
  visibility: hidden;
  margin-top: 8px;
  transition: max-height ease 0.3s;
  overflow: hidden;
}
.aside-menu__item_active .aside-menu__submenu {
  max-height: 500px;
  visibility: visible;
}
@media screen and (min-width: 992px) {
  .aside-menu {
    background-color: rgba(0, 0, 0, 0);
  }
  .aside-menu__header {
    border-bottom: none;
    padding: 0;
  }
  .aside-menu__header:before {
    display: none;
  }
  .aside-menu__content {
    transition: none;
    overflow: visible;
  }
  .aside-menu__list {
    padding: 0;
    margin-top: 24px;
  }
}
.aside-menu-link {
  display: block;
  width: 232px;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding: 8px;
  transition: color ease 0.3s;
}
.aside-menu-link:hover {
  color: #00c26f;
}
.aside-menu-link_active {
  background-color: #e6e9eb;
  pointer-events: none;
}
.aside-menu-link_active:hover,
.aside-menu-link_active:focus {
  color: #2b2b36;
}
.aside-menu-link__icon {
  width: 32px;
  height: 32px;
  margin-inline-end: 8px;
}
@media screen and (min-width: 992px) {
  .aside-menu-link {
    width: 100%;
  }
}
.aside-submenu {
  list-style-type: none;
  padding-inline-start: 32px;
  margin: 0;
}
.aside-submenu__item {
  margin-top: 8px;
}
.aside-submenu__item:first-child {
  margin-top: 0;
}
.aside-submenu__link {
  max-width: 248px;
}
.aside-submenu-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding: 8px;
  transition: color ease 0.3s;
}
.aside-submenu-link:hover {
  color: #00c26f;
}
.aside-submenu-link_active {
  background-color: #e6e9eb;
  pointer-events: none;
}
.aside-submenu-link_active:hover,
.aside-submenu-link_active:focus {
  color: #2b2b36;
}
.aside-submenu-link-with-arrow {
  position: relative;
  z-index: 1;
  padding-inline-start: 32px;
}
.aside-submenu-link-with-arrow:before {
  content: "";
  width: 8px;
  height: 7px;
  background-image: url(df77960058dfee57c742.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 16px;
  margin-top: -4px;
}
html[dir="rtl"] .aside-submenu-link-with-arrow:before {
  left: unset;
  right: 16px;
  transform: rotate(180deg);
}
.aside-submenu-link__icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
@media screen and (min-width: 992px) {
  .aside-submenu-link {
    width: 100%;
  }
}
.custom-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #00c26f;
  padding-inline-end: 18px;
  cursor: pointer;
}
html[dir="rtl"] .custom-link {
  padding-inline-end: unset;
  padding-inline-start: 18px;
}
.custom-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #00c26f;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  margin: auto;
}
html[dir="rtl"] .custom-link:after {
  right: unset;
  transform: rotate(135deg);
}
.custom-link:hover {
  color: #00c26f;
}
@media screen and (min-width: 992px) {
  .custom-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00c26f;
    transition: width ease 0.2s;
  }
  .custom-link:hover:before {
    width: calc(100% - 18px);
  }
  .custom-link:focus:before {
    width: 0;
  }
}
.content-link-card {
  height: 314px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #e5e5e9;
  border-radius: 8px;
  padding: 24px 16px;
  overflow: hidden;
}
.content-link-card__picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content-link-card__picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
h2.content-link-card__title {
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #fff;
  margin: 0;
}
.content-link-card__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
}
.content-link-card__link {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-top: auto;
  outline: 0;
}
.content-link-card__link:after {
  top: 1px;
  border-width: 1px;
  border-color: #fff;
}
.content-link-card__link:hover,
.content-link-card__link:focus {
  color: #fff;
}
@media screen and (min-width: 375px) {
  h2.content-link-card__title {
    font-size: 32px;
    line-height: 44px;
  }
  .content-link-card__text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) {
  .content-link-card__link:before {
    background-color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .content-link-card {
    height: 280px;
    padding: 24px;
  }
  .content-link-card__title {
    font-size: 40px;
    line-height: 56px;
  }
}
.blog-post-preview {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e9;
  border-radius: 8px;
  padding: 20px 16px;
  transition: box-shadow ease 0.3s;
}
.blog-post-preview_square {
  flex-direction: column;
  max-width: 100%;
  max-height: 351px;
  padding: 20px 16px;
  box-shadow: none;
  border: 1px solid #e5e5e9;
}
.blog-post-preview__image {
  width: 100%;
}
.blog-post-preview_square .blog-post-preview__image {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 157px;
  margin-bottom: 20px;
}
.blog-post-preview_square .blog-post-preview__image img {
  border-radius: 8px;
  width: 100%;
  height: 157px;
}
.blog-post-preview__image picture {
  display: block;
}
.blog-post-preview__image img {
  border-radius: 8px;
  width: 100%;
  max-height: 157px;
  height: 100%;
}
.blog-post-preview__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: #2b2b36;
  margin-top: 20px;
  width: 100%;
}
.blog-post-preview__title {
  display: block;
}
.blog-post-preview__title span {
  font-size: 20px;
  line-height: 28px;
  color: #2b2b36;
  margin: 0;
  transition: color ease 0.3s;
}
.blog-post-preview_square .blog-post-preview__title span {
  display: -webkit-box;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.0015em;
  font-size: 20px;
  line-height: 28px;
  color: #2b2b37;
  transition: color ease 0.3s;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.blog-post-preview__title:hover span {
  color: #00c26f;
}
.blog-post-preview__author {
  display: block;
}
.blog-post-preview_square .blog-post-preview__author {
  margin-top: auto;
}
.blog-post-preview__author a {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #2b2b36;
  margin-top: 8px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.blog-post-preview__author a:hover {
  color: #00c26f;
}
.blog-post-preview__published-time {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #707070;
  transition: color ease 0.3s;
}
.blog-post-preview__published-time:hover {
  color: #00c26f;
}
.blog-post-preview__footer {
  display: flex;
  margin-top: 8px;
  gap: 4px;
}
.blog-post-preview__time-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.004em;
  text-align: left;
  color: #707070;
}
@media screen and (min-width: 380px) {
  .blog-post-preview__image {
    height: 157px;
  }
}
@media screen and (min-width: 576px) {
  .blog-post-preview {
    align-items: center;
  }
  .blog-post-preview_square {
    align-items: flex-start;
  }
  .blog-post-preview__image img {
    min-height: 100px;
    max-height: 300px;
    height: 100%;
  }
  .blog-post-preview__image {
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .blog-post-preview {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px 32px;
    transition: box-shadow ease 0.3s;
  }
  .blog-post-preview_square {
    flex-direction: column;
  }
  .blog-post-preview__title {
    transition: color ease 0.3s;
  }
  .blog-post-preview:hover .blog-post-preview__title {
    color: #00c26f;
  }
  .blog-post-preview__image {
    max-width: 100%;
    margin-inline-end: 16px;
    height: 100px;
    width: 198px;
  }
  .blog-post-preview__image img {
    width: 198px;
    height: 100px;
    border-radius: 0;
  }
  .blog-post-preview_square .blog-post-preview__image img {
    max-width: 311px;
  }
  .blog-post-preview__content {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post-preview_square {
    max-width: 358px;
    padding: 20px 24px;
  }
}
.accordion {
  border-top: 1px solid #e5e5e9;
  border-bottom: 1px solid #e5e5e9;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 16px 0;
  outline: none;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  border: none;
}
.accordion__header:hover {
  cursor: pointer;
}
.accordion__title {
  max-width: calc(100% - 30px);
  font-size: 16px;
  line-height: 20px;
  color: #2b2b37;
  margin: 0;
  padding: 0;
}
.accordion__button {
  position: relative;
  display: block;
  width: 13px;
  height: 1px;
  background: #2b2b37;
  border: none;
  outline: none;
  padding: 0;
  margin: 1px 0 0 0;
  transition: all 0.2s ease-in-out;
}
.accordion__button:before {
  content: "";
  display: block;
  background: #2b2b37;
  position: relative;
  width: 1px;
  height: 13px;
  top: -6px;
  left: 6px;
}
.accordion__button_open,
html.no-js .accordion__button {
  transform: rotate(45deg);
}
.accordion__content {
  display: block;
  max-width: 842px;
  max-height: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.34px;
  color: #2b2b37;
  opacity: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.accordion__content_open,
html.no-js .accordion__content {
  max-height: 800px;
  opacity: 1;
  padding-bottom: 16px;
}
.accordion__content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.34px;
  color: #2b2b37;
  opacity: 1;
  margin: 10px 0;
}
.accordion__content a:hover {
  color: #00c26f;
}
@media screen and (min-width: 768px) {
  .accordion__title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.34px;
  }
  .accordion__button {
    margin-top: 2px;
    width: 20px;
    height: 2px;
  }
  .accordion__button:before {
    width: 2px;
    height: 20px;
    top: -9px;
    left: 9px;
  }
  .accordion__content {
    font-size: 20px;
    line-height: 28px;
  }
  .accordion__content p {
    font-size: 20px;
    line-height: 28px;
    margin: 15px 0;
  }
}
@media screen and (min-width: 992px) {
  .accordion__header {
    padding-right: 50px;
  }
}
.legal-security-screen {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px 16px 30px;
  overflow: hidden;
}
.legal-security-screen__picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.legal-security-screen__picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.legal-security-screen__time {
  min-height: 44px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  letter-spacing: 0;
}
.legal-security-screen__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin-top: 4px;
}
h1.legal-security-screen__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin: 0;
}
.legal-security-screen__button {
  width: 168px;
  height: 44px;
  font-weight: 500;
  border-radius: 4px;
  margin: 16px 0 0;
}
.legal-security-screen__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .legal-security-screen__time {
    min-height: auto;
  }
  .legal-security-screen__content {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .legal-security-screen {
    height: 400px;
    padding: 40px;
  }
  h1.legal-security-screen__title {
    font-size: 64px;
    line-height: 72px;
  }
  .legal-security-screen__text {
    font-size: 24px;
    line-height: 32px;
    margin-top: 16px;
  }
}
.legal-security-content-menu-item__link {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #2b2b36;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  outline: 0;
  transition: color, border, ease 0.3s;
}
.legal-security-content-menu-item__link:hover {
  color: #00c26f;
  border-color: #00c26f;
}
.legal-security-content-menu__title {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #2b2b36;
  margin: 0;
}
.legal-security-content-menu__list {
  list-style-type: none;
  padding: 0;
  margin: 12px 0 0 10px;
}
.legal-security-content-menu__list-item {
  margin-top: 12px;
}
.legal-security-content-menu__list-item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .legal-security-content-menu__title {
    font-size: 24px;
    line-height: 32px;
  }
  .legal-security-content-menu__list {
    margin: 16px 0 0 16px;
  }
}
h2.legal-security-partners__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #2b2b36;
  margin: 0;
}
.legal-security-partners__links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 16px -16px 0;
  padding: 0 16px;
  overflow-x: auto;
}
.legal-security-partners__link {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 8px;
  margin-left: 32px;
}
.legal-security-partners__link:first-child {
  margin-left: 0;
}
.legal-security-partners__link img {
  display: block;
}
@media screen and (min-width: 768px) {
  .legal-security-partners__links {
    flex-wrap: wrap;
    margin: 0 0 0 -32px;
    padding: 0;
    overflow-x: visible;
  }
  .legal-security-partners__link {
    margin-top: 16px;
  }
  .legal-security-partners__link:first-child {
    margin-left: 32px;
  }
}
@media screen and (min-width: 992px) {
  .legal-security-partners__link {
    transition: box-shadow ease 0.3s;
  }
  .legal-security-partners__link:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1200px) {
  h2.legal-security-partners__title {
    font-size: 28px;
    line-height: 36px;
  }
  .legal-security-partners__links {
    margin-top: 24px;
  }
  .legal-security-partners__link {
    display: block;
    flex-shrink: 0;
  }
}
h2.legal-security-posts__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #2b2b36;
  margin: 0;
}
.legal-security-posts__content {
  margin-top: 16px;
}
.legal-security-posts__preview {
  border: 1px solid #dce2ea;
  border-radius: 8px;
  box-shadow: none;
  margin-top: 16px;
}
.legal-security-posts__preview:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1200px) {
  h2.legal-security-posts__title {
    font-size: 28px;
    line-height: 36px;
  }
  .legal-security-posts__content {
    margin-top: 24px;
  }
  .legal-security-posts__preview {
    margin-top: 24px;
  }
}
.legal-security-not-found__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #808086;
  margin-top: 32px;
}
.legal-security-not-found__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: #808086;
  margin-top: 12px;
}
.legal-security-not-found__text a {
  color: #00c26f;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border ease 0.3s;
}
.legal-security-not-found__text a:hover {
  color: #00c26f;
  border-color: #00c26f;
}
.legal-security-faq__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #2b2b36;
  margin: 0;
}
.legal-security-faq__accordion {
  margin-top: 16px;
}
.legal-security-faq__accordion-item:not(:first-child) {
  border-top: 0;
}
@media screen and (min-width: 992px) {
  .legal-security-faq__title {
    font-size: 28px;
    line-height: 36px;
  }
  .legal-security-faq__accordion {
    margin-top: 32px;
  }
}
.legal-security-search {
  border: 1px solid #e5e5e9;
  border-radius: 4px;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.legal-security-search__input {
  background: none;
  border: none;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
  margin-left: 16px;
  margin-bottom: 0;
  padding: 0;
  outline: none;
}
.legal-security-search__input::-moz-placeholder {
  color: #707070;
}
.legal-security-search__input::placeholder {
  color: #707070;
}
.legal-security-search__button {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  outline: none;
  margin: 0;
  padding-right: 11px;
  padding-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.legal-security-search__button-image {
  width: 17px;
  height: 17px;
}
.legal-security-page__inner-content_new-style .aside-menu-link {
  width: 248px;
}
.legal-security-page__inner-content_new-style .inner-content-wrapper__content {
  min-height: 70vh;
  margin-top: 24px;
}
.legal-security-page__loader {
  display: flex;
  justify-content: center;
}
.legal-security-page__box {
  min-height: 100%;
  background-color: #fff;
  border-radius: 16px;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.legal-security-page__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #2b2b36;
  background-color: #d9f6e9;
  padding: 24px 16px;
}
.legal-security-page__box-content {
  background-color: #fff;
  padding: 0 16px 40px;
}
.legal-security-page__cards {
  margin-top: 40px;
}
.legal-security-page__card {
  margin-top: 40px;
}
.legal-security-page__card:first-child {
  margin-top: 0;
}
.legal-security-page__partners {
  margin-top: 40px;
}
.legal-security-page__content-menu {
  margin-top: 32px;
}
.legal-security-page__content {
  background-color: #fff;
  margin-top: 40px;
}
.legal-security-page__content h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #2b2b36;
  margin: 32px 0 8px;
}
.legal-security-page__content h3 {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #2b2b36;
  margin: 32px 0 8px;
}
.legal-security-page__content h3:first-child {
  margin-top: 0;
}
.legal-security-page__content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
  margin: 8px 0;
}
.legal-security-page__content ul {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
  margin: 8px 0;
}
.legal-security-page__content img {
  display: block;
  max-width: 100%;
  margin: 32px auto;
}
.legal-security-page__content a {
  color: #00c26f;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border ease 0.3s;
}
.legal-security-page__content a:hover {
  color: #00c26f;
  border-color: #00c26f;
}
.legal-security-page__posts {
  margin-top: 40px;
}
.legal-security-page__not-found {
  text-align: center;
  margin-top: 40px;
}
.legal-security-page__faq {
  margin-top: 40px;
}
.legal-security-page__search {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .legal-security-page__box {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .legal-security-page__inner-content_new-style .inner-content-wrapper__aside {
    width: 248px;
  }
  .legal-security-page__inner-content_new-style
    .inner-content-wrapper__content {
    margin-top: 0;
  }
  .legal-security-page__not-found {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .legal-security-page__inner-content_new-style .inner-content-wrapper__aside {
    margin-inline-end: 50px;
  }
  .legal-security-page__description {
    font-size: 20px;
    line-height: 28px;
    padding: 64px 40px;
  }
  .legal-security-page__box-content {
    padding: 0 40px 48px;
  }
  .legal-security-page__cards {
    margin-top: 48px;
  }
  .legal-security-page__card {
    margin-top: 48px;
  }
  .legal-security-page__partners {
    margin-top: 48px;
  }
  .legal-security-page__content {
    margin-top: 48px;
  }
  .legal-security-page__content h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 32px 0 8px;
  }
  .legal-security-page__content h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .legal-security-page__posts {
    margin-top: 48px;
  }
  .legal-security-page__faq {
    margin-top: 48px;
  }
}
