@charset "UTF-8";
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
:root {
  --white: #fff;
  --black: #000;
  --global_bg: rgba(9, 9, 9, 1);
  --transparent: rgba(0, 0, 0, 0);
  --grey: rgba(255, 255, 255, .4);
  --violet: rgba(142, 128, 244, 1);
  --placeholder: rgba(255, 255, 255, .25);
  --placeholder_transparent: rgba(255, 255, 255, 0);
  --btn_bg: rgba(142, 128, 244, 1);
  --footer_bg: rgba(13, 13, 14, 1);
  --item_bg: rgba(13, 13, 13, .49);
  --block_bg: rgba(13, 13, 13, .85);
  --btn_header_bg: rgba(255, 255, 255, .1);
  --text_shadow: rgba(133, 132, 134, 1);
  --text_tab: rgba(102, 102, 102, 1);
  --box_shadow: rgba(0, 0, 0, .25);
  --box_shadow_btn: rgba(49, 40, 118, .28);
  --border_color: rgba(89, 89, 89, 1);
  --border_violet: rgba(57, 52, 92, 1);
  --border_shadow: rgba(255, 255, 255, .12);
  --line_gradient_from: #808CF4;
  --line_gradient_to: #BA80F4;
  --line_gradient: rgba(142, 128, 244, 1), rgba(169, 221, 218, 1);
  --bg_gradient_violet: linear-gradient(225deg, #7371FE 0%, #ABA9FE 100%);
  --scroll_gradient_violet: linear-gradient(90deg, #7371FE 0%, #ABA9FE 100%);
  --bg_gradient_btn: linear-gradient(135deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, 0) 100%);
  --bg_gradient_reviews: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .01) 100%);
  --mask_gradient_brend: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
  --mask_gradient_coin: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 1) 100%);
  --mask_gradient_chart: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 50%);
  --mask_gradient_picture-up: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  --mask_gradient_picture-down: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  --bg-white-06: rgba(255, 255, 255, .06);
  --stroke-white-08: rgba(255, 255, 255, .08);
  --stroke-white-10: rgba(255, 255, 255, .1);
  --text-white-60: rgba(255, 255, 255, .6);
  --bg-black-80: rgba(0, 0, 0, .8);
  --bg-black-40: rgba(0, 0, 0, .4);
}

@media (max-width: 767px) {
  :root {
    --mask_gradient_chart: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 75%);
  }
}
img {
  aspect-ratio: auto;
}

/*reset*/
html,
body,
label,
input,
button,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
a,
blockquote,
figure,
pre {
  margin: 0;
  padding: 0;
  margin-block-end: 0;
  margin-inline-end: 0;
  margin-block-start: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
  text-transform: inherit;
  white-space: inherit;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
}

ul,
ol {
  list-style: none;
}

label,
input,
button,
textarea,
pre {
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

textarea {
  resize: unset;
}

input,
button {
  -webkit-appearance: none;
}

a,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

label,
input,
button,
textarea,
a,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre {
  font: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
}

* body *,
body *,
*,
* body *:before,
body *:before,
*:before,
* body *:after,
body *:after,
*:after {
  outline: none;
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:focus::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:focus::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:focus:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input:focus:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:focus::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:focus::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:focus:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

textarea:focus:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.container-global {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  margin: 0 auto;
  min-height: 100%;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.03em;
  font-family: sans-serif;
  background-color: #000;
  font-display: swap;
  overflow-x: hidden;
}

body .header__under > .nav-menu {
  display: flex !important;
}

body .header__under > .nav-menu ul:not(.dropdown-menu__into) {
  right: auto !important;
}

body .nav-menu {
  top: 0;
  left: 0;
  display: inline-block;
  padding: 32px 40px 40px;
  max-height: 100%;
  height: 100%;
  max-width: 441px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 0 32px 32px 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  background: linear-gradient(0, rgba(0, 0, 0, 0.6));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  position: fixed;
  border: 1px solid var(--stroke-white-08);
  transform: translateX(-100%);
  overflow-y: auto;
}

body .nav-menu__content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  gap: 64px 0;
  width: 100%;
  min-height: 100%;
}

body .nav-menu__content--header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 0 22px;
  width: 100%;
}

body .nav-menu__content--header .header__btn {
  align-self: stretch;
}

body .nav-menu__content--header .header__btn .lang {
  top: 2px;
  right: auto;
  left: 3px;
}

body .nav-menu__content--footer {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}

body .nav-menu__content--footer .header__social {
  position: relative;
  width: 100%;
}

body .nav-menu__content--footer .header__social > * {
  flex-shrink: 0;
}

body .nav-menu__content--footer .header__btn {
  width: 100%;
}

body .nav-menu__content--footer .header__btn .sing-up {
  width: 100%;
}

body .nav-menu__content .menu-list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

body .nav-menu__content .menu-list > ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 26px 0;
  width: 100%;
  font-size: 32px;
  line-height: 1.375;
  text-transform: uppercase;
}

body .nav-menu__content .menu-list > ul p,
body .nav-menu__content .menu-list > ul span {
  position: relative;
}

body .nav-menu__content .menu-list > ul p:after,
body .nav-menu__content .menu-list > ul span:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 0px);
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: 0.3s all ease;
}

body .nav-menu__content .menu-list > ul li:hover p:after,
body .nav-menu__content .menu-list > ul li:hover span:after {
  width: 100%;
}

body .header.active .btn-menu {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

body .header.active .btn-menu > p > span {
  transform-origin: 26% 40%;
}

body .header.active .btn-menu > p > span:not(:nth-child(1)) {
  width: 10px;
}

body .header.active .btn-menu > p > span:nth-child(2) {
  width: 17px;
}

body .header.active .btn-menu__close > p > span {
  margin: 0;
  transform-origin: 40% 80%;
}

body .header.active .btn-menu__close > p > span:nth-child(1) {
  width: 19px;
  transform: rotate(45deg);
}

body .header.active .btn-menu__close > p > span:nth-child(2) {
  display: none;
}

body .header.active .btn-menu__close > p > span:nth-child(3) {
  width: 19px;
  transform: rotate(-45deg);
}

body.open-menu {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  max-height: 100%;
  overflow: hidden;
}

html:not(.page-cabinet) body.open-menu > * {
  position: fixed;
  top: 0;
  max-width: 1920px;
  max-height: 100%;
  overflow: hidden;
}

body.open-menu .global-feedback.feedback-list {
  display: none;
}

.custom-font {
  font-family: "Helvetica", sans-serif;
  font-display: swap;
}

main,
header,
section,
footer {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
}

main {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1272px;
  width: 100%;
}

.aos-init {
  pointer-events: none;
}

.aos-init.aos-animate {
  pointer-events: unset;
}

.btn-menu,
.btn-menu__close {
  cursor: pointer;
  position: relative;
  display: inline-block;
  order: 3;
  width: 50px;
  height: 50px;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  transition: 0.3s all ease;
  z-index: 5;
}

.btn-menu::after,
.btn-menu__close::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-menu > p,
.btn-menu__close > p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  top: 50%;
  left: 50%;
  width: 23px;
  transform: translate(-50%, -50%);
}

.btn-menu > p > span,
.btn-menu__close > p > span {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  margin: 3px 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transform-origin: -10% 40%;
  background-color: var(--white);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-menu > p > span:nth-child(2),
.btn-menu__close > p > span:nth-child(2) {
  width: 14px;
}

.btn-menu:not(.btn-menu__close):hover,
.btn-menu__close:not(.btn-menu__close):hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.btn-menu:not(.btn-menu__close):hover > p > span:not(:nth-child(1)),
.btn-menu__close:not(.btn-menu__close):hover > p > span:not(:nth-child(1)) {
  width: 10px;
}

.btn-menu:not(.btn-menu__close):hover > p > span:nth-child(2),
.btn-menu__close:not(.btn-menu__close):hover > p > span:nth-child(2) {
  width: 17px;
}

.btn-menu__close {
  position: absolute;
  top: 8px;
  right: -22px;
  width: 44px;
  height: 44px;
}

.btn-menu__close > p {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 16px;
}

.btn-menu__close > p > span {
  margin: 0;
  transform-origin: 40% 80%;
}

.btn-menu__close > p > span:nth-child(1) {
  width: 19px;
  transform: rotate(45deg);
}

.btn-menu__close > p > span:nth-child(2) {
  display: none;
}

.btn-menu__close > p > span:nth-child(3) {
  width: 19px;
  transform: rotate(-45deg);
}

.btn-menu__close:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.fade {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  max-height: 100%;
  height: 100%;
  max-width: 441px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  will-change: backdrop-filter, transform;
  transform: translateX(-100%);
  transition: 0.3s all ease;
  overflow-y: auto;
}

.fade::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(-165deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.fade:after {
  display: none;
}

.fade.show {
  transform: translateX(0);
}

.icon-container {
  cursor: pointer;
  display: table;
  gap: 0 8px;
  min-width: 50px;
  height: 50px;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  transition: 0.3s all ease;
}

.icon-container::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.icon-container a {
  display: table-cell;
  padding: 0 12px;
  text-align: center;
  vertical-align: middle;
}

.icon-container a > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  padding: 0 4px 0 0;
}

.icon-container:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.icon-container .icon-gradient {
  position: relative;
  flex-shrink: 0;
}

.icon-container .icon-gradient:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-container.trading .icon-gradient {
  width: 24px;
  height: 24px;
}

.icon-container.trading .icon-gradient:before {
  background: url("img/icon/trading.svg") center center no-repeat;
}

.icon-container.telegram .icon-gradient {
  width: 24px;
  height: 24px;
}

.icon-container.telegram .icon-gradient:before {
  background: url("img/icon/telegram.svg") center center no-repeat;
}

.icon-container.twiter .icon-gradient {
  margin: 0 auto;
  width: 24px;
  height: 24px;
}

.icon-container.twiter .icon-gradient:before {
  background: url("img/icon/twiter.svg") center center no-repeat;
}

.icon-container.twiter a > * {
  padding: 0 1px;
}

.icon-container.youtube .icon-gradient {
  margin: 0 auto;
  width: 24px;
  height: 17px;
}

.icon-container.youtube .icon-gradient:before {
  background: url("img/icon/youtube.svg") center center no-repeat;
}

.icon-container.youtube a > * {
  padding: 0 1px;
}

.decoration-picture {
  position: absolute;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.decoration-picture picture {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.decoration-picture:before,
.decoration-picture:after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  z-index: 1;
}

.decoration-picture:before {
  top: 0;
}

.decoration-picture:after {
  bottom: 0;
}

.container-btn {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.btn-gradient-border,
.btn-gradient {
  cursor: pointer;
  display: table;
  padding: 17px 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.03em;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  align-self: stretch;
  transition: 0.3s all ease;
}

.btn-gradient-border > *,
.btn-gradient > * {
  display: table-cell;
  text-align: center;
  color: var(--white);
  vertical-align: middle;
}

.btn-gradient-border > * > *,
.btn-gradient > * > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 10px;
}

.btn-gradient-border:hover,
.btn-gradient:hover {
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.btn-gradient-border {
  padding: 17px 28px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
}

.btn-gradient-border::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(14deg, rgb(171, 169, 254) 0%, rgb(115, 113, 254) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-gradient-border:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-gradient-border:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(14deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-gradient {
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgb(115, 113, 254);
  background: linear-gradient(14deg, rgb(171, 169, 254) 0%, rgb(115, 113, 254) 100%);
}

.btn-gradient.btn-green {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgb(110, 196, 64);
  background: linear-gradient(13deg, rgb(62, 139, 21) 0%, rgb(162, 254, 113) 100%);
}

.btn-gradient.btn-green > span {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}

.btn-gradient.btn-green img,
.btn-gradient.btn-green svg {
  transform: rotate(4deg) translateY(-2px);
}

.btn-gradient.btn-red {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgb(178, 55, 58);
  background: linear-gradient(-15deg, rgb(191, 40, 42) 0%, rgb(255, 86, 89) 100%);
}

.btn-gradient.btn-red > span {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}

.btn-gradient.btn-red img,
.btn-gradient.btn-red svg {
  transform: rotate(94deg) translate(-1px, -1px);
}

.bg-gradient-card {
  pointer-events: none;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  inset: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
}

.bg-gradient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(-165deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.scroll-control {
  pointer-events: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.btn-up {
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 8px;
  background: var(--bg_gradient_violet);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
  z-index: 1000;
  opacity: 0;
}

.btn-up.visible {
  opacity: 1;
  visibility: visible;
}

.btn-up.visible:hover {
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.glass-block {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.08);
  overflow-wrap: break-word;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  overflow: visible;
  padding: 2rem;
  width: 300px;
  margin: 50px auto;
  color: white;
  text-align: center;
}

.glass-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: inherit;
  filter: url(#smoothBlur);
  transform: translateZ(0);
}

.glass-block::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.glass-block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(115, 113, 254, 0.5) 0%, rgba(171, 169, 254, 0.5) 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -2;
  background-color: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 .text-gradient,
h2 .text-gradient,
h3 .text-gradient {
  width: auto !important;
}

h1 {
  font-size: 64px;
  font-weight: 700;
}

h2 {
  font-size: 104px;
}

h3 {
  font-size: 32px;
}

h2,
h3 {
  font-weight: 400;
}

.section-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.section-header__under {
  display: flex;
  gap: 0 64px;
  padding: 24px 0 33px;
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.section-header__under > * {
  position: relative;
  flex-grow: 1;
  padding: 7px 0 0;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.section-header__under > *.section-header__under-right {
  padding: 24px 24px;
  max-width: 517px;
  font-size: 18px;
  line-height: 1.389;
}

.section-header__under > *.section-header__under-right .bg-gradient-card {
  border-radius: 24px;
}

.section-header__under > * > *:not(.bg-gradient-card) {
  position: relative;
}

.section-header > * {
  flex-shrink: 0;
  width: 100%;
}

.section-header > *:not(h1, h2, h3) {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.remove-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.remove-item .close-feedback {
  cursor: pointer;
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 28px;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  transition: 0.3s all ease;
  z-index: 5;
}

.remove-item .close-feedback::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.remove-item .close-feedback:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/icon/close.svg) center center no-repeat;
  background-size: auto 12px;
  transition: 0.3s all ease;
}

.remove-item .close-feedback:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.remove-item .close-feedback:hover:before {
  transform: rotate(270deg);
}

.remove-item.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.global__types--carousel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 21px 0;
  padding: 21px 0 0;
  width: 100%;
  visibility: hidden;
}

.global__types--carousel > .bg-gradient-card {
  display: none;
}

.global__types--carousel.carousel-ready {
  visibility: visible;
}

.global__types--carousel.fade-animation .global__types--item {
  transform: translate(0, 0);
}

.global__types--carousel.fade-animation .global__types--item.initial-active {
  opacity: 1;
  pointer-events: all;
  transform: translate(0, 0);
  transition: none !important;
  z-index: 2;
}

.global__types--carousel.fade-animation .global__types--item.fade-only {
  pointer-events: none;
  transition: opacity 0.55s ease;
  transform: translate(0, 0);
  opacity: 0;
}

.global__types--carousel.fade-animation .global__types--item.fade-only.fade-active {
  pointer-events: all;
  transition: opacity 0.55s ease;
  transform: translate(0, 0);
  opacity: 1;
}

.global__types--carousel.fade-animation .global__types--item {
  transform: translate(0, 0);
}

.global__types--carousel.fade-animation .global__types--item.initial-active {
  opacity: 1;
  pointer-events: all;
  transform: translate(0, 0);
  transition: none !important;
  z-index: 2;
}

.global__types--carousel.fade-animation .global__types--item.fade-only {
  pointer-events: none;
  transition: opacity 0.55s ease;
  transform: translate(0, 0);
  opacity: 0;
}

.global__types--carousel.fade-animation .global__types--item.fade-only.fade-active {
  transition: opacity 0.55s ease;
  transform: translate(0, 0);
  opacity: 1;
}

.global__types--carousel.horizontal-animation .global__types--item.initial-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  transition: none !important;
  z-index: 2;
}

.global__types--carousel.horizontal-animation .global__types--item.show-global {
  pointer-events: all;
  transform: translate(0, 0);
  opacity: 1;
}

.global__types--carousel.horizontal-animation .global__types--item.slide-out-left {
  pointer-events: none;
  transform: translateX(-100%);
  opacity: 0;
}

.global__types--carousel.horizontal-animation .global__types--item.slide-out-right {
  pointer-events: none;
  transform: translateX(100%);
  opacity: 0;
}

.global__types--carousel.vertical-animation .global__types--item.initial-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  transition: none !important;
  z-index: 2;
}

.global__types--carousel.vertical-animation .global__types--item {
  bottom: auto;
  top: 0;
}

.global__types--carousel.vertical-animation .global__types--item.show-global {
  pointer-events: all;
  transform: translate(0, 0);
  opacity: 1;
}

.global__types--carousel.vertical-animation .global__types--item.slide-out-top {
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
}

.global__types--carousel.vertical-animation .global__types--item.slide-out-bottom {
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
}

.global__types--nav,
.global__types .container-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
}

.global__types--nav nav,
.global__types .container-btn nav {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 4px;
  width: 100%;
}

.global__types--nav ul,
.global__types .container-btn ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  align-self: stretch;
}

.global__types--nav ul > *:not(.slider-btn),
.global__types .container-btn ul > *:not(.slider-btn) {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 24px;
  min-width: 245px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s all ease;
  z-index: 2;
}

.global__types--nav ul > *:not(.slider-btn):first-child:hover,
.global__types .container-btn ul > *:not(.slider-btn):first-child:hover {
  background-color: rgba(255, 255, 255, 0.025);
}

.global__types--nav ul > *:not(.slider-btn):not(:first-child):hover,
.global__types .container-btn ul > *:not(.slider-btn):not(:first-child):hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.global__types--nav ul > *:not(.slider-btn).active,
.global__types .container-btn ul > *:not(.slider-btn).active {
  pointer-events: none;
}

.global__types--nav ul .slider-btn,
.global__types .container-btn ul .slider-btn {
  pointer-events: none;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 32px;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: left 0.35s cubic-bezier(0.68, -0.2, 0.265, 1.2), top 0.35s cubic-bezier(0.68, -0.2, 0.265, 1.2), width 0.35s cubic-bezier(0.68, -0.2, 0.265, 1.2), height 0.35s cubic-bezier(0.68, -0.2, 0.265, 1.2);
}

.global__types--container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  transition: height 0.6s ease;
}

.global__types--item {
  position: absolute;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.55s ease, opacity 0.55s ease;
  will-change: transform;
}

.global-info {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.global-info > .bg-gradient-card {
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.global-info > svg path {
  fill-opacity: 0.6;
  transition: 0.3s all ease;
}

.global-info > *:not(.bg-gradient-card, .global-info__description) {
  position: relative;
}

.global-info__description {
  position: absolute;
  pointer-events: none;
  display: none;
  top: calc(100% + 24px);
  right: -80px;
  padding: 16px 25px;
  max-width: 405px;
  width: -moz-max-content;
  width: max-content;
  min-height: 50px;
  z-index: 5;
}

.global-info__description > *:not(.global-info__description--overflow) {
  position: relative;
}

.global-info__description--overflow {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  overflow: hidden;
}

.global-info__description--overflow .bg-gradient-card {
  top: auto;
  bottom: 1px;
  height: calc(100% + 2px);
  border-radius: 29px;
}

.global-info__description--overflow .bg-gradient-card:after {
  padding: 1px 2px 1px 1px;
}

.global-info__description:before {
  pointer-events: none;
  position: absolute;
  content: "";
  right: 17px;
  max-width: 324px;
  width: calc(100% - 34px);
  bottom: calc(100% - 2px);
  height: 12px;
  background: url(img/bg/bg-description.svg) right -17px top 0 no-repeat;
  z-index: 2;
}

.global-info__description:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 1px;
  left: 18px;
  width: calc(100% - 40px - 319px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.13);
}

.global-info:hover > svg path {
  fill-opacity: 1;
}

.global-info:hover > .bg-gradient-card {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.global-info:hover .global-info__description {
  display: inherit;
}

.global-line {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.global-coin {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
}

.global-coin > * {
  width: auto;
}

.global__item--header {
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.global__item--header > p {
  font-size: 88px;
  letter-spacing: -0.03em;
}

.global__item--header > span {
  padding: 0 21px 20px 15px;
}

.global__item--description {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 5px 0 83px;
  width: 100%;
}

.global__item--description ul.custom,
.global__item--description ol.custom {
  gap: 10px 0;
}

.global__item--description .container-btn {
  padding: 34px 0 0;
  gap: 0 25px;
  width: 100%;
}

.global__item--description .container-btn .btn-gradient {
  padding: 17px 40px;
  font-weight: 700;
}

.global__item--description .container-btn .info-closure {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 2px 0 0;
  gap: 0 12px;
}

.global__item--description .container-btn .info-closure > p {
  color: var(--text-white-60);
}

.global__item--description .container-btn .info-closure .global-info {
  width: 20px;
  height: 20px;
}

.global__item--description .container-btn .info-closure .global-info > img,
.global__item--description .container-btn .info-closure .global-info > svg {
  width: 20px;
  height: auto;
}

.global__item--description .container-btn .info-closure .global-info > .bg-gradient-card {
  display: none;
}

.global__item--description .container-btn .info-closure .global-info__description {
  right: -94px;
}

.global__growth {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 15px 16px;
  gap: 4px 0;
}

.global__growth > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
  text-align: left;
  font-weight: 300;
}

.global__growth--coin {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
}

.global__growth--group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 0 60px;
}

.global__growth--group .container-btn {
  position: relative;
  margin: 0 6.5rem 0 0;
}

.global__growth--description {
  padding: 3px 0 0;
  font-size: 16px;
  text-align: left;
  letter-spacing: -0.015em;
  color: var(--text-white-60);
}

.global__growth--value {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  font-size: 22px;
  letter-spacing: -0.0288em;
}

.global__growth--value > p {
  font-weight: 400;
}

.global-input,
.global-textarea {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.global-input label,
.global-textarea label {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.global-input label > *:not(.bg-gradient-card, .global-input__placeholder, .global-textarea__placeholder, .simplebar-track),
.global-textarea label > *:not(.bg-gradient-card, .global-input__placeholder, .global-textarea__placeholder, .simplebar-track) {
  position: relative;
  width: 100%;
}

.global-input input,
.global-input textarea,
.global-textarea input,
.global-textarea textarea {
  pointer-events: all;
  padding: 16px 21px 15px 20px;
  width: 100%;
  border-radius: 32px;
  letter-spacing: -0.03em;
}

.global-input__placeholder {
  position: absolute;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  top: 0;
  left: 0;
  padding: 16px 21px 15px 20px;
  width: 100%;
  height: 100%;
  color: var(--text-white-60);
  transition: 0.3s all ease;
}

.global-input__placeholder:after {
  color: var(--white);
}

.global-input.on-focus .global-input__placeholder {
  color: var(--transparent);
}

.global-input.on-focus .global-input__placeholder:after {
  color: var(--white);
}

.global-input.input-icon {
  padding: 0;
}

.global-input.input-icon input,
.global-input.input-icon textarea {
  padding: 16px 21px 15px 52px;
}

.global-input.input-icon .global-input__placeholder {
  padding-left: 52px;
}

.global-input.input-icon .global-input__btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transform: translateY(-50%);
}

.global-input.input-icon .global-input__btn > *:not(.bg-gradient-card) {
  pointer-events: none;
  position: absolute;
}

.global-input.input-icon .global-input__btn > *:not(.bg-gradient-card):last-of-type:not(:first-of-type) path {
  fill-opacity: 0;
}

.global-input.input-icon .global-input__btn > *:not(.bg-gradient-card) path {
  transition: 0.3s all ease;
}

.global-input.input-icon .global-input__btn:hover > *:not(.bg-gradient-card, :last-of-type:not(:first-of-type)) path {
  fill-opacity: 1;
}

.global-input.input-icon .global-input__btn:hover .bg-gradient-card {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.global-input.input-icon:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 16px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background-size: auto 24px;
  z-index: 2;
}

.global-input.input-icon.input-login:before {
  background: url(img/icon/form/login.svg) center center no-repeat;
}

.global-input.input-icon.input-email:before {
  background: url(img/icon/form/mail.svg) center center no-repeat;
}

.global-input.input-icon.input-password {
  padding-right: 0;
}

.global-input.input-icon.input-password .global-input__btn.btn-generate {
  right: 52px;
}

.global-input.input-icon.input-password .global-input__placeholder {
  padding: 16px 98px 15px 52px;
}

.global-input.input-icon.input-password input {
  padding: 16px 98px 15px 52px;
}

.global-input.input-icon.input-password.show-password .global-input__btn > *:not(.bg-gradient-card):first-of-type:not(:last-of-type) path {
  fill-opacity: 0;
}

.global-input.input-icon.input-password.show-password .global-input__btn > *:not(.bg-gradient-card):last-of-type:not(:first-of-type) path {
  fill-opacity: 0.6;
}

.global-input.input-icon.input-password.show-password .global-input__btn:hover > *:not(.bg-gradient-card, :first-of-type:not(:last-of-type)) path {
  fill-opacity: 1;
}

.global-input.input-icon.input-password:before {
  background: url(img/icon/form/lock.svg) center center no-repeat;
  background-size: auto 24px;
}

.global-input.input-icon.input-referral {
  margin: 24px 0 0;
}

.global-input.input-icon.input-referral:before {
  background: url(img/icon/form/add-user.svg) center center no-repeat;
}

.global-textarea {
  cursor: text;
}

.global-textarea__placeholder {
  position: absolute;
  pointer-events: all;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  top: 0;
  left: 0;
  padding: 16px 21px 15px 20px;
  width: 100%;
  height: 100%;
  color: var(--text-white-60);
  transition: 0.3s all ease;
}

.global-textarea__placeholder:after {
  color: var(--white);
}

.global-textarea.on-focus .global-textarea__placeholder {
  color: var(--transparent);
}

.global-textarea.on-focus .global-textarea__placeholder:after {
  color: var(--white);
}

.global-upload {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  padding: 2px 0 0;
  font-size: 16px;
  color: var(--text-white-60);
  letter-spacing: -0.03em;
}

.global-carousel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.global-carousel.carousel-vertical {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.global-carousel:not(.carousel-vertical):after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 50%;
  width: 104%;
  height: 100%;
  background: var(--mask_gradient_brend);
  transform: translateX(-50%);
}

.global-carousel .carousel-wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  pointer-events: all;
}

.global-carousel .carousel-slide {
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: auto;
}

.global-carousel .carousel-slide .slide__content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.global-carousel .carousel-slide .slide__content > svg,
.global-carousel .carousel-slide .slide__content > img {
  width: auto;
  height: 65px;
}

.global__chart.shake {
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-5px);
  }
  40%, 80% {
    transform: translateX(5px);
  }
}
.global__chart.pulse {
  animation: pulse 0.9s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.global__chart.error-up #dashed-up,
.global__chart.success-down #dashed-up {
  stroke: inherit;
  stroke-opacity: 0.7;
  opacity: 1;
}

.global__chart.error-down #dashed-down,
.global__chart.success-up #dashed-down {
  stroke: inherit;
  stroke-opacity: 0.7;
  opacity: 1;
}

.global__chart.success-up #dashed-down {
  stroke: inherit;
  opacity: 0.7;
}

.global__chart.success-down #dashed-up {
  stroke: inherit;
  opacity: 0.7;
}

.global__chart:not(.success-up, .success-down, .error-down, .error-up) #dashed-up,
.global__chart:not(.success-up, .success-down, .error-down, .error-up) #dashed-down {
  stroke-opacity: 0;
  stroke: var(--transparent) !important;
  visibility: hidden;
  opacity: 0;
}

.global__chart #stroke-up {
  stroke-opacity: 0.2;
  opacity: 1;
}

.global__chart #stroke-down {
  stroke-opacity: 0.2;
  opacity: 1;
}

.global__chart #stroke-circle-up {
  stroke: var(--text-white-60);
  stroke-width: 2px;
}

.global__chart #stroke-circle-down {
  stroke: var(--text-white-60);
  stroke-width: 2px;
}

.global__chart button.success {
  background-color: green;
  color: white;
}

.global__chart button.error {
  background-color: red;
  color: white;
}

.global-aside {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 450px;
  width: 100%;
}

.global-feedback {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}

.global-feedback.feedback-list {
  pointer-events: none;
  position: fixed;
  z-index: 7;
}

.global-feedback.feedback-list:not(.size-large) {
  right: 40px;
  /* right: 20px; */
  gap: 12px 0;
  z-index: 10;
}

.global-feedback.feedback-list .message {
  pointer-events: all;
  margin: 0;
}

.global-feedback.feedback-list.position-over {
  top: 10px;
  max-width: 360px;
  /* top: 114px; */
}

.global-feedback.feedback-list.position-over.size-large {
  position: relative;
  top: 0;
  left: 0;
  max-width: unset;
  background: var(--bg-black-80);
  border-bottom: 1px solid var(--stroke-white-08);
}

.global-feedback.feedback-list.position-over.size-large .message {
  padding: 10px 0 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

.global-feedback.feedback-list.position-over.size-large .message .close-feedback {
  right: 0;
  top: 0;
}

.global-feedback.feedback-list.position-over.size-large .message picture {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.global-feedback.feedback-list.position-over.size-large > * > * {
  padding: 0;
}

.global-feedback.feedback-list.position-over.size-large > * > * .global__growth {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-direction: unset;
  gap: 0 69px;
  padding: 0;
  margin: 0 auto;
  max-width: 1272px;
  width: 100%;
}

.global-feedback.feedback-list.position-over.size-large > * > * .global__growth > *:not(.close-feedback) {
  width: auto;
}

.global-feedback.feedback-list.position-over.size-large > * > * .global__growth--coin {
  align-self: flex-end;
}

.global-feedback.feedback-list.position-over.size-large > * > * .global__growth--description {
  max-width: 355px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  z-index: 5;
}

.global-feedback.feedback-list.position-over.size-large .bg-gradient-blur {
  top: 15%;
  left: 45%;
  width: 196px;
  height: 196px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  overflow: visible;
  transform: translate(-50%, 0);
}

.global-feedback.feedback-list.position-over.size-large .bg-gradient-blur::before {
  content: "";
  position: relative;
  overflow: visible;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  background-color: rgba(115, 113, 254, 0.8);
}

.global-feedback.feedback-list.position-over.size-large .container-btn .bg-gradient-blur {
  top: 15%;
  left: 15%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  overflow: visible;
  transform: translate(-50%, 0);
}

.global-feedback.feedback-list.position-over.size-large .container-btn .bg-gradient-blur::before {
  content: "";
  position: relative;
  overflow: visible;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  filter: blur(85px);
  pointer-events: none;
  z-index: -1;
  background-color: rgba(115, 113, 254, 0.8);
}

.global-feedback.feedback-list.position-over.size-large .container-btn .btn-gradient {
  position: relative;
  z-index: 3;
}

.global-feedback.feedback-list.position-under {
  max-width: 192px;
  /* bottom: 40px; */
  bottom: 20px;
}

.global-feedback.feedback-list.position-under .text-gradient {
  font-weight: 300;
}

.global-feedback.feedback-list.position-under .global__growth {
  gap: 1px 0;
  padding: 12px 12px;
}

.global-feedback.feedback-list.position-under .global__growth--description {
  padding: 1px 0 0;
  letter-spacing: -0.03em;
}

.global-feedback.feedback-list.position-under.size-large {
  left: 40px;
  /* left: 20px; */
}

.global-feedback.feedback-list:not(.position-over).size-large {
  max-width: 613px;
  z-index: 10;
}

.global-feedback.feedback-list:not(.position-over).size-large .message {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(115, 113, 254, 0.4);
  background: linear-gradient(14deg, rgba(171, 169, 254, 0.4) 0%, rgba(115, 113, 254, 0.4) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
}

.global-feedback.feedback-list:not(.position-over).size-large .message::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(135deg, rgba(115, 113, 254, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-direction: unset;
  gap: 0 16px;
  padding: 16px 16px;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth > *:not(.bg-gradient-card, .close-feedback, .global__growth--coin) {
  width: auto;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth .close-feedback {
  top: auto;
  right: 16px;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth--coin {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 16px 16px;
  width: 72px;
  height: 72px;
  width: auto;
  height: auto;
  border-radius: 16px;
  background: var(--white);
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth--coin > * {
  width: 40px;
  height: auto;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px 0;
  font-size: 16px;
  color: var(--white);
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth--description > * {
  letter-spacing: -0.03em;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth--description strong {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn {
  padding: 0 0 0 8px;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn > *,
.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn .btn-gradient-border {
  padding: 14px 24px;
  color: var(--black);
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 777px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn > *::after,
.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn .btn-gradient-border::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(14deg, rgba(171, 169, 254, 0) 0%, rgba(115, 113, 254, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn > * > *,
.global-feedback.feedback-list:not(.position-over).size-large .global__growth .container-btn .btn-gradient-border > * {
  color: var(--black);
}

.global-feedback:not(.size-large) .message {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
}

.global-feedback:not(.size-large) .message::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(95, 95, 95) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback:not(.size-large) .message:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.global-feedback:not(.size-large) .message:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(95, 95, 95) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback:not(.size-large) .message:not(.feedback-growth) {
  margin: 12px 0 0;
  padding: 13px 12px;
}

.global-feedback:not(.size-large) .message:not(.feedback-growth) .close-feedback {
  top: -3px;
  right: -3px;
}

.global-feedback:not(.size-large) .message:not(.feedback-growth) > * > * {
  padding: 0 0 0 36px;
}

.global-feedback .message {
  cursor: default;
  position: relative;
  display: table;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--text-white-60);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.global-feedback .message > * {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.global-feedback .message:not(.feedback-growth) > * > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px 14px;
  text-align: left;
  letter-spacing: -0.03em;
  z-index: 3;
}

.global-feedback .message:not(.feedback-growth) > * > * strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.global-feedback .message:not(.feedback-growth) > * > * > * {
  width: 100%;
  text-align: left;
}

.global-feedback .message.feedback-growth .close-feedback {
  top: 9px;
  right: 9px;
}

.global-feedback .message:hover {
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.global-feedback .message .close-feedback {
  cursor: pointer;
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 28px;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  transition: 0.3s all ease;
  z-index: 5;
}

.global-feedback .message .close-feedback::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback .message .close-feedback:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/icon/close.svg) center center no-repeat;
  background-size: auto 12px;
  transition: 0.3s all ease;
}

.global-feedback .message .close-feedback:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.global-feedback .message .close-feedback:hover:before {
  transform: rotate(270deg);
}

.global-feedback .message.feedback-error {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.global-feedback .message.feedback-error::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(214, 56, 59) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback .message.feedback-error:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.global-feedback .message.feedback-error:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(214, 56, 59) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback .message.feedback-error > * > *:before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  background: url(img/icon/error.svg) center center no-repeat;
  background-size: 100% auto;
}

.global-feedback .message.feedback-success {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.global-feedback .message.feedback-success::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(102, 185, 58) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-feedback .message.feedback-success > * > *:before {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
  height: 24px;
  background: url(img/icon/success.svg) center center no-repeat;
  background-size: 100% auto;
}

.global-feedback .message.feedback-success:hover {
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.global-feedback .message.feedback-success:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(76deg, rgb(102, 185, 58) 0%, rgb(31, 31, 31) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.global-recaptcha {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.global-recaptcha img,
.global-recaptcha svg {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.input-checkbox {
  cursor: pointer;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-direction: unset;
  gap: 0 !important;
  padding: 14px 0;
  width: 100%;
  border: unset;
  font-weight: 400;
}

.input-checkbox > input {
  pointer-events: none !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: rgba(0, 0, 0, 0) !important;
  background: rgba(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

.input-checkbox > input + .bg-gradient-card {
  pointer-events: all;
  position: relative;
  flex-shrink: 0;
  inset: unset;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.input-checkbox > input + .bg-gradient-card > * {
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  transform: translate(4px, 4px);
}

.input-checkbox > input + .bg-gradient-card > * * {
  fill-opacity: 0;
  transition: 0.3s all ease;
}

.input-checkbox > input:checked + .bg-gradient-card > * * {
  fill-opacity: 1;
}

.input-checkbox > p:not(.placeholder) {
  pointer-events: all;
  margin: 0 0 0 12px;
  max-width: 250px;
  font-size: 18px;
}

.input-checkbox > p:not(.placeholder) a > * {
  position: relative;
}

.input-checkbox > p:not(.placeholder) a > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bg_gradient_violet);
  transition: 0.3s all ease;
}

.input-checkbox > p:not(.placeholder) a:hover > *:after {
  width: 100%;
}

.carousel-lens-wrapper {
  position: relative;
}

.carousel-lens {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, transparent 20%, black 35%, black 65%, transparent 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 20%, black 35%, black 65%, transparent 80%, transparent 100%);
}

.carousel-lens > * {
  transform: scale(1.15);
  transform-origin: center center;
}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  animation-duration: 0.01s;
}

.password-strength {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 6px;
  top: calc(100% + 6px);
  left: 50%;
  width: calc(100% - 60px);
  transform: translateX(-50%);
}

.password-strength span {
  flex-grow: 1;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #2b2b2b;
  opacity: 0.3;
  transform: scaleY(1);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.password-strength[data-level="1"] span:nth-child(-n+1),
.password-strength[data-level="2"] span:nth-child(-n+2),
.password-strength[data-level="3"] span:nth-child(-n+3),
.password-strength[data-level="4"] span:nth-child(-n+4),
.password-strength[data-level="5"] span:nth-child(-n+5) {
  opacity: 1;
}

.password-strength[data-level="1"] span {
  background: #ff4d4f;
}

.password-strength[data-level="2"] span {
  background: #ff7a45;
}

.password-strength[data-level="3"] span {
  background: #fadb14;
}

.password-strength[data-level="4"] span {
  background: #73d13d;
}

.password-strength[data-level="5"] span {
  background: #00c853;
}

.password-strength.animate span {
  animation: strength-pop 0.35s ease;
}

@keyframes strength-pop {
  0% {
    transform: scaleY(0.4);
  }
  60% {
    transform: scaleY(1.4);
  }
  100% {
    transform: scaleY(1);
  }
}
ul.custom,
ol.custom {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}

ul.custom li,
ol.custom li {
  position: relative;
  padding: 8px 0 0 44px;
}

ul.custom li .bg-gradient-card,
ol.custom li .bg-gradient-card {
  top: 3px;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 32px 0 32px 32px;
}

ul.custom li .bg-gradient-card:before,
ol.custom li .bg-gradient-card:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(img/icon/check.svg) center center no-repeat;
  transform: translate(-50%, -50%);
  z-index: 3;
}

form {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  width: 100%;
  z-index: 2;
}

form > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
}

form .container-scroll {
  pointer-events: all;
  width: 100%;
  height: 136px;
  overflow-y: auto;
}

form .auxiliary-text {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  gap: 0 12px;
  padding: 8px 0;
  width: 100%;
}

form .auxiliary-text a > * {
  position: relative;
}

form .auxiliary-text a > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bg_gradient_violet);
  transition: 0.3s all ease;
}

form .auxiliary-text a:hover > *:after {
  width: 100%;
}

form .auxiliary-text.text-center {
  padding: 16px 0 0;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.simplebar-content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  min-height: 100%;
}

.simplebar-scrollbar:before {
  background: var(--scroll_gradient_violet);
}

.lang {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.lang:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--transparent);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
  z-index: 2;
}

.lang .bg-gradient-card {
  border-radius: 32px;
}

.lang__flag {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
}

.lang__flag > * {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  min-width: 100%;
  max-width: 150%;
  min-height: 100%;
  max-height: 150%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.lang__active {
  position: relative;
  cursor: pointer;
  display: table;
  padding: 0 14px;
  height: 50px;
}

.lang__active:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 1px;
  left: 50%;
  width: calc(100% - 24px);
  height: 1px;
  background: var(--transparent);
  transform: translateX(-50%);
}

.lang__active--result {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.lang__active--result > * {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0 23px 0 0;
  gap: 0 6px;
}

.lang__active--result > * p,
.lang__active--result > * span {
  position: relative;
}

.lang__active--result > * p:after,
.lang__active--result > * span:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 3px;
  left: calc(100% + 9px);
  width: 12px;
  height: 12px;
  background: url(img/icon/arow-dropdown.svg) center center no-repeat;
  background-size: 100% auto;
  transform: rotate(0deg);
  transition: 0.3s all ease;
}

.lang__list {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 5;
}

.lang__list ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.lang__list li {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
}

.lang__list li.lang-active {
  display: none;
}

.lang__list li a {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  padding: 9px 12px;
  width: 100%;
  transition: 0.3s all ease;
}

.lang__list li a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--transparent);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.lang__list li:hover a:after {
  background: var(--stroke-white-08);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.lang:not(.show-list):hover:after {
  background: var(--bg-white-06);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0.7);
}

.lang.show-list {
  border-radius: 24px;
}

.lang.show-list .lang__active--result > * p:after,
.lang.show-list .lang__active--result > * span:after {
  transform: rotate(-90deg);
}

.lang.show-list .lang__active:after {
  background: var(--stroke-white-10);
}

.lang.show-list .bg-gradient-card {
  border-radius: 24px;
}

.lang.show-list-up {
  top: auto;
  bottom: calc(100% - 50px);
}

.lang.show-list-up .lang__active {
  order: 2;
}

.lang.show-list-up .lang__active:after {
  bottom: auto;
  top: 2px;
}

.lang__list {
  overflow: hidden;
  height: 0;
  transition: 0.3s all ease;
}

.lang.show-list .lang__list {
  height: auto;
}

.lang__list li {
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s all ease;
}

.lang.show-list .lang__list li {
  opacity: 1;
  transform: translateY(0);
}

.lang.show-list .lang__list li:first-child a:before {
  background: var(--stroke-white-10);
}

.logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  font-weight: 400;
}

.logo > * {
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  gap: 0 12px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.logo > * span {
  padding: 0 0 4px;
}

.header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  padding: 24px 0;
  z-index: 10;
}

.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  z-index: 5;
}

.header__social {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  left: 50%;
  transform: translateX(-50%);
}

.header__social > * {
  flex-shrink: 0;
}

.header__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
}

.header__btn .lang {
  right: calc(100% + 8px);
}

.header__btn .sing-up {
  cursor: pointer;
  display: table;
  padding: 0 24px;
  height: 50px;
  font-weight: 700;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 32px;
  overflow: hidden;
  background-color: rgb(115, 113, 254);
  background: linear-gradient(-165deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
}

.header__btn .sing-up p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.header__btn .sing-up:hover {
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.header__btn .sing-up.sing-user {
  padding: 0;
  width: 50px;
}

.header:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background: var(--mask_gradient_picture-down);
}

.footer {
  position: relative;
  margin: 188px auto 0;
  z-index: 3;
}

.footer > *:not(.bg-gradient-card) {
  position: relative;
  z-index: 2;
}

.footer > .bg-gradient-card {
  border-radius: 32px 32px 0 0;
}

.footer .logo > * span {
  padding: 0 0 1px;
}

.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  padding: 70px 20px 43px;
}

.footer .wrapper > *:not(.footer__info) {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  align-self: stretch;
}

.footer .wrapper > *:not(.footer__info):not(.footer__lang-copyright) {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.footer .wrapper > *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav) {
  flex-direction: column;
}

.footer__info {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  gap: 20px 20px;
  padding: 0 20px;
  width: 100%;
  left: 0;
  transform: translateY(-96px);
  align-self: flex-start;
}

.footer__info > * {
  position: relative;
}

.footer__info > * > *:not(.bg-gradient-card) {
  position: relative;
  word-break: break-all;
}

.footer__info--ssl {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  padding: 12px 18px 14px 12px;
}

.footer__info--coin {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 0 8px;
}

.footer__info--coin > * {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer__info--coin > * > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.footer__info--coin > * > * > *:not(.bg-gradient-card) {
  position: relative;
}

.footer__info--coin > * > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.footer__info--coin > * > *:hover:after {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.footer__address {
  gap: 13px 0;
  max-width: 235px;
}

.footer__nav {
  gap: 0 81px;
  max-width: 476px;
  width: 100%;
}

.footer__nav ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 21px 0;
  width: 100%;
}

.footer__nav ul > * {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer__nav ul > * > * {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  padding: 4px 0;
  width: -moz-max-content;
  width: max-content;
}

.footer__nav ul > * > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 5px);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-white-60);
  transition: 0.3s all ease;
}

.footer__nav ul > * > *:hover:after {
  width: 100%;
}

.footer__lang-copyright {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  max-width: 235px;
}

.footer__lang-copyright .lang {
  margin: 2px 0 auto;
}

.footer__copyright {
  margin: 0 0 3px;
}

.main {
  padding: 32px 0 70px;
}

.main .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
  z-index: 2;
}

.main .wrapper > * {
  flex-shrink: 0;
}

.main__coin {
  position: relative;
  width: 41.234%;
}

.main__coin .bg-gradient-blur {
  width: calc(100% - 11px);
  height: calc(100% - 90px);
}

.main__info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 21px 0;
  padding: 42px 0 0;
  width: 50.812%;
}

.main__info h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.01em;
}

.main__info h1 .text-gradient {
  width: auto !important;
}

.main__info h1 strong,
.main__info h1 b {
  display: inline-block;
  font-weight: 400;
}

.main__info h1 strong {
  width: 100%;
}

.main__info h1 strong:not(:last-child) {
  padding: 0 0 30px;
}

.main__info h1 strong:last-child {
  padding: 5px 2px 0 0;
  text-align: right;
}

.main__info h1 b {
  display: inline-block;
  padding: 22px 55px 28px 42px;
  font-size: 88px;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 777px;
  overflow: hidden;
  background-color: rgb(115, 113, 254);
  background: linear-gradient(-165deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  transform: rotate(-3.7deg) translateX(55px);
}

.main__info h1 b > span {
  padding: 0 9px 0 0;
}

.main__info h1 b > span span {
  font-weight: 300;
}

.main__info h1 b img,
.main__info h1 b svg {
  position: relative;
  /* transform: rotate(4deg) translateY(8px); */
  transform: rotate(4deg) translateY(-35%);
}

.main__info > p {
  padding: 15px 0 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.main__info .container-btn {
  gap: 0 16px;
  width: 100%;
  justify-content: flex-start;
}

.main__info .container-btn .btn-gradient {
  padding: 17px 34px 17px 24px;
}

.main__cards {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 21px 0;
  padding: 20px 0 0;
  width: 100%;
}

.main__cards .carousel-logos .carousel-wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.main .decoration-picture {
  left: auto;
  z-index: 1;
}

.main__coin,
.item-decoration {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.main__coin picture,
.item-decoration picture {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.item-decoration {
  position: absolute;
}

.bg-gradient-blur {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  overflow: visible;
  transform: translate(-50%, -50%);
}

.bg-gradient-blur::before {
  content: "";
  position: relative;
  overflow: visible;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  background-color: rgba(115, 113, 254, 0.8);
}

.card__slider {
  width: 100%;
  overflow: hidden;
}

.card__slider .slide__description p {
  line-height: 1.132;
}

.card__slider .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  min-height: 400px;
}

.card__slider .swiper-wrapper .swiper-slide {
  position: relative;
  flex-shrink: 0;
  margin: 0;
}

.card__slider .swiper-container {
  position: relative;
}

.card__slider .swiper-container.statistics-slider .swiper-slide {
  max-width: calc(25% - 18px);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.statistics-audience {
  transform: translateY(7.305625rem);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.marketing-campaigns {
  transform: translateY(4.870625rem);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.monthly-distribution {
  transform: translateY(2.435rem);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.shopping-budget {
  transform: translateY(0);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.shopping-budget .slide__content .chart-item {
  padding: 14px 0 0;
}

.card__slider .swiper-container.statistics-slider .swiper-slide.shopping-budget .slide__content .chart-item.budget .chart-item__description {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px 0;
  top: 52%;
  left: 50%;
  transform: translate(-50%, 0);
}

.card__slider .swiper-container.statistics-slider .swiper-slide.shopping-budget .slide__content .chart-item.budget .chart-item__description span {
  display: inline-block;
  font-size: 1.46125rem;
  line-height: 1.2018819504;
}

.card__slider .swiper-container.statistics-slider .slide__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 23px;
  width: 100%;
  min-height: 283px;
  letter-spacing: 0;
  font-size: 0.974375rem;
  line-height: 1.3983322643;
  border-radius: 29px;
  overflow: hidden;
}

.card__slider .swiper-container.statistics-slider .slide__content > *:not(.bg-gradient-card) {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.card__slider .swiper-container.statistics-slider .slide__content svg {
  pointer-events: none;
}

.card__slider .swiper-container.statistics-slider .slide__content--header {
  width: 100%;
  letter-spacing: 0;
  transform: translateY(-4px);
}

.card__slider .swiper-container.statistics-slider .slide__content--footer {
  padding: 28px 0 0;
  width: 100%;
}

.card__slider .swiper-container.statistics-slider .slide__content--footer p > span:last-child {
  padding: 0 0 0 1px;
  text-transform: uppercase;
}

.card__slider .swiper-container.statistics-slider .slide__content .text-gradient-violet {
  font-size: 1.753125rem;
  line-height: 1.1122994652;
}

.card__slider .swiper-container.statistics-slider .slide__content:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background: var(--mask_gradient_chart);
  z-index: 5;
}

.card__slider .container-arrow {
  display: none;
}

.produce {
  padding: 130px 0 0;
}

.produce .section-header {
  flex-direction: unset;
  gap: 0 68px;
}

.produce .section-header h2 {
  max-width: 642px;
  text-align: right;
}

.produce .section-header > *:not(h2) {
  padding: 0 0 25px 5px;
  max-width: 513px;
  text-align: left;
}

.produce__cards {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  transform: translateY(-37px);
  z-index: 3;
}

.produce__cards--item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px 0;
  padding: 24px;
  width: calc(33.3333333333% - 11px);
  align-self: stretch;
}

.produce__cards--item *:not(.bg-gradient-card) {
  position: relative;
}

.produce__cards--item .container-btn {
  flex-grow: 1;
  padding: 7px 0 0;
}

.produce__cards--item .container-btn .btn-gradient {
  padding: 17px 40px;
  align-self: flex-end;
}

.produce__item--info,
.produce__item--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}

.produce__item--description {
  gap: 17px 0;
}

.produce__item--description p {
  line-height: 1.39;
  color: var(--text-white-60);
}

.produce__info--logo {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.produce__info--tag {
  position: relative;
  padding: 8px 22px 8px 20px;
}

.produce__info--tag > .bg-gradient-card {
  border-radius: 777px;
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  -webkit-backdrop-filter: blur(0);
  -moz-backdrop-filter: blur(0);
  -o-backdrop-filter: blur(0);
  backdrop-filter: url("data:image/svg+xml;utf8,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='0%' y='0%' width='130%' height='130%'><feGaussianBlur in='SourceGraphic' stdDeviation='10'/></filter></svg>#svgBlur");
  backdrop-filter: blur(0);
}

.about {
  position: relative;
  padding: 161px 0;
}

.about .decoration-picture {
  transform: translateY(-29px);
  overflow: visible;
}

.about .decoration-picture picture {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.about .decoration-picture > * {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.about .decoration-picture > *:before,
.about .decoration-picture > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter, transform;
  -webkit-transform: translateZ(0);
  z-index: 2;
}

.about .decoration-left {
  transform: translate(14.4%, -36px);
}

.about .decoration-left:before {
  width: 190px;
  height: 190px;
  transform: translate(146%, 32.5%);
}

.about .decoration-left:after {
  width: 133px;
  height: 133px;
  transform: translate(73.4%, 362%);
}

.about .decoration-right {
  transform: translate(234.3%, -54px);
}

.about .decoration-right:before {
  display: none;
}

.about .decoration-right:after {
  width: 108px;
  height: 108px;
  transform: translate(262%, 48%);
}

.about .section-header {
  gap: 20px 0;
}

.about .section-header h2 {
  font-size: 88px;
  text-align: center;
}

.about .section-header > *:not(h2) {
  margin: 0 auto;
  max-width: 642px;
  line-height: 1.35;
  text-align: center;
}

.about .wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 28px 0;
  flex-direction: column;
}

.about .wrapper > * {
  width: 100%;
}

.about .wrapper .container-btn {
  padding: 9px 0 0;
  justify-content: center;
}

.about .wrapper .container-btn .btn-gradient {
  padding: 17px 40px;
}

.investments {
  padding: 39px 0 70px;
}

.investments .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 2;
}

.investments .wrapper > * {
  flex-shrink: 0;
}

.investments .section-header {
  gap: 7px 0;
}

.investments .section-header h2 {
  text-align: left;
}

.investments .section-header > *:not(h2) {
  margin: 0 auto 0 0;
  max-width: 670px;
  text-align: left;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.investments__info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(63.312% - 56px);
}

.investments__types .global__types--nav {
  gap: 0 8px;
}

.investments__types .global__types--nav > * {
  flex-shrink: 0;
  align-self: stretch;
}

.investments__types .global__types--nav nav {
  max-width: 499px;
}

.investments__calculator {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px 24px 16px;
  margin: 14px 0 0;
  width: 36.688%;
}

.investments__calculator > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
}

.investments__calculator--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px 0;
}

.investments__calculator--description h3 {
  padding: 0 0 3px;
}

.investments__calculator--description > p {
  padding: 0 0 1px;
  color: var(--text-white-60);
}

.investments__calculator--description > p > span {
  padding: 0 0 0 10px;
  color: var(--white);
}

.investments__calculator--description > p > b {
  font-size: 88px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.investments__calculator--description > p > b > span {
  width: auto !important;
}

.investments__calculator--description > p .text-gradient-violet:after {
  content: "%";
}

.investments__calculator--description ul.custom,
.investments__calculator--description ol.custom {
  gap: 10px 0;
  margin: -19px 0 0;
  padding: 18px 0 21px;
  border-top: 1px solid var(--stroke-white-10);
  border-bottom: 1px solid var(--stroke-white-10);
}

.investments__calculator--form {
  gap: 16px 0;
  padding: 22px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.investments__calculator--form > strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.investments__calculator--form.usd .investments__calculator--input .min-value:after,
.investments__calculator--form.usd .investments__calculator--input .max-value:after {
  content: "$";
}

.investments__calculator--form.usd .investments__calculator--result .text-gradient-violet:after {
  content: " $";
}

.investments__calculator--form.usd .global-input__placeholder {
  color: var(--transparent);
}

.investments__calculator--form.usd .global-input__placeholder:after {
  content: "$";
  color: var(--white);
}

.investments__calculator--form .container-btn {
  transform: translateY(-8px);
  justify-content: center;
}

.investments__calculator--form .container-btn .btn-gradient {
  padding: 17px 41px;
  font-size: 18px;
}

.investments__calculator--input {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 0 2px 0 0;
}

.investments__calculator--input .min-value,
.investments__calculator--input .max-value {
  position: relative;
}

.investments__calculator--result {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 0 2px 0 0;
  transform: translateY(-5px);
}

.investments__calculator--result > p {
  padding: 12px 0 0;
}

.investments__calculator--result .text-gradient-violet {
  position: relative;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.statistics {
  position: relative;
  padding: 46px 0 90px;
}

.statistics .decoration-picture {
  top: auto;
  left: 50%;
  height: -moz-max-content;
  height: max-content;
  transform: translate(-50%, -600px);
  overflow: hidden;
}

.statistics .decoration-picture:before,
.statistics .decoration-picture:after {
  height: 46.4814814815%;
}

.statistics .decoration-picture:before {
  top: 0;
  background: var(--mask_gradient_picture-down);
}

.statistics .decoration-picture:after {
  bottom: 0;
  background: var(--mask_gradient_picture-up);
}

.statistics .wrapper {
  z-index: 2;
}

.statistics h2 {
  padding: 0 0 0 13.6%;
}

.statistics__description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 56px 0;
  width: 100%;
}

.statistics__description--month {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px 0;
  padding: 27px 36px 16px 24px;
  margin: -47px 13.6363636364% 0 auto;
  min-width: 610px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-white-60);
}

.statistics__description--month > *:not(.bg-gradient-card) {
  position: relative;
  letter-spacing: -0.03em;
}

.statistics__description--month p:last-of-type {
  width: 100%;
  text-align: right;
}

.statistics__description--month b {
  padding: 0 20px 0 0;
  font-size: 104px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.statistics__description--month b > span {
  width: auto !important;
}

.statistics__description--month b > *:after {
  content: "$";
}

.statistics__description--details {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.statistics__description--details > * {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-shrink: 0;
  width: 25%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.statistics__description--details > * > *:not(.statistics__item--icon) {
  padding: 16px 0 0;
  width: 100%;
  text-align: center;
}

.statistics__description--details > * > *:not(.statistics__item--icon):last-child {
  padding: 6px 0 0;
}

.statistics__description--details > * b {
  line-height: 1;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.statistics__description--details > * b span {
  width: auto !important;
}

.statistics__item--icon {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.statistics .global__types--carousel {
  gap: 31px 0;
  padding: 52px 0 0;
}

.statistics .global__types--nav nav {
  margin: 0 auto;
  width: auto;
  justify-content: center;
}

.statistics .global__types--nav ul {
  width: auto;
}

.statistics .global-carousel {
  width: 100%;
}

.statistics .global-carousel .carousel-wrapper:not(.infinite-carousel-track) {
  gap: 0 16px;
}

.statistics .global-carousel .carousel-slide {
  flex: 1 0 auto;
  max-width: 240px;
  width: 100%;
  align-self: stretch;
}

.statistics .global-carousel .carousel-slide > * {
  position: relative;
  flex-direction: column;
  gap: 11px 0;
  padding: 17px 24px 18px;
  width: 100%;
  font-weight: 300;
  align-self: stretch;
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card) {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__time {
  font-size: 16px;
  color: var(--text-white-60);
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__coin {
  padding: 0 0 4px;
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card):not(:last-child, .carousel-slide__coin, .carousel-slide__time) {
  padding: 0 0 8px;
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card):not(:last-child, .carousel-slide__coin, .carousel-slide__time) span {
  width: auto !important;
}

.statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__time {
  padding: 0 0 7px;
}

.statistics .global-carousel .carousel-slide__value {
  text-transform: uppercase;
}

.statistics .global-carousel .carousel-slide__user .carousel-slide__coin {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.statistics .global-carousel .carousel-slide__user .text-cut {
  padding: 4px 0 0 4px;
}

.statistics .global-carousel:not(.carousel-vertical):after {
  background: var(--mask_gradient_coin);
}

.crypto-market {
  position: relative;
  padding: 98px 0;
}

.crypto-market .decoration-picture {
  top: auto;
  left: 50%;
  height: -moz-max-content;
  height: max-content;
  transform: translate(-50%, -73px);
  overflow: hidden;
}

.crypto-market .decoration-picture:before {
  height: 66.6666666667%;
  background: var(--mask_gradient_picture-down);
}

.crypto-market .decoration-picture:after {
  height: 48.0842911877%;
  background: var(--mask_gradient_picture-up);
}

.crypto-market__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 32px 26px;
  gap: 31px 0;
  border-radius: 32px;
  overflow: hidden;
}

.crypto-market__content > *:not(.bg-gradient-card) {
  position: relative;
}

.crypto-market .section-header {
  gap: 22px 0;
  text-align: center;
}

.crypto-market .section-header h2 {
  padding: 0 0 4px;
  font-size: 48px;
  line-height: 1.3;
}

.crypto-market .section-header > *:not(h2) {
  max-width: 670px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.crypto-market__predict {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.crypto-market__predict circle#point {
  stroke: var(--text-white-60);
  stroke-width: 2px;
}

.crypto-market__test {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px 0;
  padding: 25px 24px 24px;
  width: calc(100% - 858px - 20px);
}

.crypto-market__test > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
}

.crypto-market__test > .bg-gradient-card {
  border-radius: 24px;
}

.crypto-market__test h3 {
  font-size: 48px;
  line-height: 1.1;
}

.crypto-market__test .container-btn {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px 0;
}

.crypto-market__test .container-btn .btn-gradient {
  width: 100%;
}

.affiliate-system {
  position: relative;
  padding: 102px 0;
}

.affiliate-system .decoration-picture {
  transform: translateY(439px);
  z-index: 1;
}

.affiliate-system .decoration-picture:before,
.affiliate-system .decoration-picture:after {
  height: 44.6222222222%;
}

.affiliate-system .decoration-picture:before {
  top: 0;
  background: var(--mask_gradient_picture-down);
}

.affiliate-system .decoration-picture:after {
  bottom: 0;
  background: var(--mask_gradient_picture-up);
}

.affiliate-system .wrapper {
  position: relative;
  z-index: 2;
}

.affiliate-system h2 {
  font-size: 88px;
  text-align: center;
}

.affiliate-system__content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  padding: 26px 0 0;
  width: 100%;
}

.affiliate-system__content .global__types--nav {
  margin: 0 40px;
  width: auto;
  z-index: 2;
}

.affiliate-system__content .global__types--nav ul > *:not(.slider-btn),
.affiliate-system__content .global__types--nav .container-btn ul > *:not(.slider-btn) {
  min-width: 250px;
  padding: 7px 24px 9px 25px;
}

.affiliate-system__content .global__types--carousel {
  gap: 0;
}

.affiliate-system__content .global__types--container {
  padding: 56px 40px 0;
  transform: translateY(-24px);
  overflow: visible;
}

.affiliate-system__content .global__types--item {
  gap: 27px 0;
  padding: 62px 40px 0;
}

.affiliate-system__content .global__types--item .item-decoration .bg-gradient-blur {
  width: 300px;
  height: 300px;
}

.affiliate-system__content .global__types--item:nth-child(2) .item-decoration {
  bottom: 1px;
  right: -42px;
}

.affiliate-system__content .global__types--item:nth-child(3) .item-decoration {
  bottom: 1px;
  right: 1px;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description {
  padding: 0 0 33px;
  width: 58.507%;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul {
  flex-wrap: wrap;
  gap: 8px 8px;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li {
  max-width: 32.493%;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li > .bg-gradient-card {
  border-radius: 24px;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description > p {
  padding: 33px 0 0;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--description .container-btn {
  padding: 19px 0 0;
}

.affiliate-system__content .global__types--item:nth-child(3) .global__item--header > *:not(h3) {
  transform: translateY(-4px);
}

.affiliate-system__content .global__types--item:nth-child(3) .global-line {
  gap: 0 8px;
}

.affiliate-system__content .global__types--item:nth-child(3) .global-line > b {
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.affiliate-system__content .global__types--item:nth-child(3) .global-line > b > span {
  padding: 0 0 3px 3px;
  font-size: 18px;
  text-transform: uppercase;
}

.affiliate-system__content .global__types--item:nth-child(4) .item-decoration {
  top: calc(50% + 1px);
  right: -58px;
  transform: translateY(-50%);
}

.affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li {
  gap: 6px 0;
  max-width: 15.278%;
}

.affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li > .bg-gradient-card {
  border-radius: 24px;
}

.affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li > p {
  padding: 0 0 2px;
}

.affiliate-system__content .global__item--header {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.affiliate-system__content .global__item--header h3 {
  font-size: 64px;
}

.affiliate-system__content .global__item--header > *:not(h3) {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  transform: translateY(-1px);
}

.affiliate-system__content .global__item--description {
  padding: 0;
}

.affiliate-system__content .global__item--description > ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 0 8px;
  width: 100%;
}

.affiliate-system__content .global__item--description > ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px 0;
  padding: 18px 11px;
  max-width: 14.671%;
  width: 100%;
  align-self: stretch;
}

.affiliate-system__content .global__item--description > ul li > *:not(.bg-gradient-card) {
  position: relative;
}

.affiliate-system__content .global__item--description > ul li > b {
  font-size: 32px;
  font-weight: 400;
}

.affiliate-system__content .global__item--description > ul li > b span:not(.text-gradient-violet) {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.affiliate-system__content .global__item--description > ul li > p {
  padding: 0 0 5px;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.affiliate-system__content .global__item--description > ul li > span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.affiliate-system__content .global__item--description > p {
  padding: 34px 0 0;
  width: 100%;
}

.affiliate-system__content .global__item--description .container-btn {
  gap: 0 16px;
  padding: 20px 0 41px;
  overflow: hidden;
}

.affiliate-system__content .global__item--description .container-btn .btn-gradient {
  padding: 17px 34px 17px 24px;
}

.faq {
  position: relative;
  padding: 81px 0;
  padding: 74px 0;
  z-index: 2;
}

.faq .section-header {
  padding: 0 0 0 2.6%;
}

.faq__answer {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
  transform: translateY(-42px);
}

.faq__answer.__settings .faq__answer--header > span {
  pointer-events: all;
  position: relative;
  top: auto !important;
  right: auto !important;
  width: 25%;
  height: auto;
  background: unset !important;
  transform: unset;
}

.faq__answer > * {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px 32px 9px;
  width: 100%;
  transition: 0.3s all ease;
}

.faq__answer > * strong {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.faq__answer > * > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
}

.faq__answer > *.active .faq__answer--header > span {
  transform: rotate(0deg);
}

.faq__answer--header {
  cursor: pointer;
  padding: 0 40px 13px 0;
}

.faq__answer--header > span {
  position: absolute;
  pointer-events: none;
  right: -3px;
  top: 5px;
  width: 25px;
  height: 25px;
  background: url(img/icon/arow-violet.svg) center center no-repeat;
  background-size: 20px auto;
  transform: rotate(90deg);
  transition: 0.3s all ease;
}

.faq__answer--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  transition: height 0.3s ease;
  overflow: hidden;
}

.help {
  position: relative;
  padding: 71px 0 0;
}

.help .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.help .wrapper [data-aos-animate].aos-animate .bg-gradient-card,
.help .wrapper [data-aos-animate].animate .bg-gradient-card,
.help .wrapper .aos-init[data-aos-animate].aos-animate .bg-gradient-card,
.help .wrapper .aos-init[data-aos-animate].animate .bg-gradient-card,
.help .wrapper [data-aos=animate-item].aos-animate .bg-gradient-card,
.help .wrapper [data-aos=animate-item].animate .bg-gradient-card {
  opacity: 1;
}

.help .decoration-picture {
  transform: translateY(-382px);
}

.help .decoration-picture:before,
.help .decoration-picture:after {
  height: 44.6222222222%;
}

.help .decoration-picture:before {
  top: 0;
  background: var(--mask_gradient_picture-down);
}

.help .decoration-picture:after {
  bottom: 0;
  background: var(--mask_gradient_picture-up);
}

.help h2 {
  padding: 20px 0 0;
  line-height: 1.38;
}

.help__info {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  max-width: 680px;
  width: 100%;
}

.help__form {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  max-width: 544px;
  width: 100%;
}

.help__form form {
  gap: 10px 0;
  padding: 32px 32px;
}

/* .help__form form .bg-gradient-card {
  opacity: 0;
  transition-duration: calc(var(--aos-duration) * 3);
  transition-delay: var(--aos-delay);
} */
.help__form .global-input__placeholder {
  padding: 16px 21px 16px 20px;
}

.help__form .global-input input {
  padding: 16px 21px 16px 20px;
}

.help__form .global-textarea__placeholder {
  padding: 16px 21px 16px 20px;
}

.help__form .global-textarea textarea {
  padding: 16px 21px 16px 20px;
  min-height: 100%;
  align-self: flex-start;
}

.help__form .container-btn {
  padding: 12px 0 0;
}

.privacy {
  padding: 71px 0 0;
  margin: 0 0 -2px;
}

.privacy .wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px 0;
  font-size: 22px;
  font-weight: 300;
  z-index: 2;
}

.privacy .wrapper *:not(h1, h2, h3, h4, span) {
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.privacy .wrapper h1 {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.privacy .wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.privacy .wrapper ol {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 31px 0 0;
  width: 100%;
  list-style: none;
  counter-reset: item;
}

.privacy .wrapper ol * {
  width: 100%;
}

.privacy .wrapper ol ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 0 0 48px;
  gap: 15px 0;
  margin: 16px 0 22px;
  font-size: 18px;
}

.privacy .wrapper ol ul > * {
  position: relative;
}

.privacy .wrapper ol ul > *:before {
  pointer-events: none;
  position: absolute;
  content: "";
  right: calc(100% + 12px);
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: var(--bg_gradient_violet);
}

.privacy .wrapper > ol {
  gap: 48px 0;
}

.privacy .wrapper ol > li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  counter-increment: item;
}

.privacy .wrapper ol > li ul {
  position: relative;
  width: calc(100% + 40px);
  transform: translateX(-40px);
}

.privacy .wrapper ol > li:last-child ul:last-of-type {
  margin: 14px 0 3px;
}

.privacy .wrapper ol > li {
  padding-left: 40px;
}

.privacy .wrapper ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  position: absolute;
  content: counter(item) ". ";
  left: -50px;
  width: 40px;
  text-align: right;
  color: var(--text-white-60);
  font-weight: bold;
}

.privacy .wrapper ol > li > ol {
  gap: 5px 0;
  padding: 21px 0 0;
  counter-reset: subitem;
}

.privacy .wrapper ol > li > ol > li {
  counter-increment: subitem;
}

.privacy .wrapper ol > li > ol > li {
  padding-left: 40px;
}

.privacy .wrapper ol > li > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  position: absolute;
  content: counter(item) "." counter(subitem) ". ";
  left: -50px;
  width: 40px;
  text-align: right;
  color: var(--text-white-60);
  font-weight: normal;
}

.privacy .wrapper ol > li > ol > li > ol {
  counter-reset: subsubitem;
}

.privacy .wrapper ol > li > ol > li > ol > li {
  counter-increment: subsubitem;
}

.privacy .wrapper ol > li > ol > li > ol > li {
  padding-left: 40px;
}

.privacy .wrapper ol > li > ol > li > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  position: absolute;
  content: counter(item) "." counter(subitem) "." counter(subsubitem) ". ";
  left: -50px;
  width: 40px;
  text-align: right;
  color: var(--text-white-60);
  font-weight: normal;
}

.reviews {
  padding: 87px 0 0;
}

.reviews .decoration-picture {
  top: auto;
  left: 50%;
  height: -moz-max-content;
  height: max-content;
  transform: translate(-50%, -185px);
  overflow: hidden;
}

.reviews .decoration-picture:before {
  display: none;
}

.reviews .decoration-picture:after {
  height: 44.487%;
  background: var(--mask_gradient_picture-up);
}

.reviews .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  gap: 0 70px;
  z-index: 3;
}

.reviews .global-aside {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 42px 32px 25px;
}

.reviews .global-aside h2,
.reviews .global-aside h3 {
  padding: 0 0 12px;
  font-size: 32px;
}

.reviews .global-aside form {
  gap: 10px 0;
}

.reviews .global-aside form .reviews__item--picture {
  padding: 12px 0 0;
  gap: 22px 22px;
  justify-content: space-between;
}

.reviews .global-aside form .reviews__item--picture .close-feedback {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
}

.reviews .global-aside form .reviews__item--picture picture {
  width: 182px;
  height: 182px;
}

.reviews .global-aside form .container-btn {
  padding: 11px 0 0;
  justify-content: space-between;
}

.reviews .section-header {
  gap: 14px 0;
}

.reviews h1 {
  font-weight: 400;
}

.reviews__content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 46px 0;
  max-width: calc(100% - 450px - 70px);
  width: 100%;
}

.reviews__list {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.96rem 0;
  width: 100%;
}

.reviews__list--item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px 0;
  padding: 27px 24px 24px;
  width: 100%;
}

.reviews__list--item > *:not(.bg-gradient-card) {
  position: relative;
}

.reviews__item--header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}

.reviews__item--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px 0;
  width: 100%;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.reviews__item--description > *:last-child {
  padding: 0 0 0.052rem;
}

.reviews__item--avatar {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
}

.reviews__item--avatar picture {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--bg_gradient_btn);
}

.reviews__item--avatar picture > * {
  position: relative;
  z-index: 2;
}

.reviews__item--avatar picture:before {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/icon/user-default.svg) center center no-repeat;
  background-size: 24px auto;
  z-index: 1;
}

.reviews__item--info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.reviews__item--info strong {
  width: auto !important;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.reviews__item--picture {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.reviews__item--picture picture {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: 160px;
  height: 160px;
  border-radius: 24px;
  background: var(--bg_gradient_reviews);
  overflow: hidden;
}

.reviews__item--picture picture > * {
  position: relative;
  z-index: 1;
}

.reviews__pagination {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 9px 0 0;
  width: 100%;
}

.reviews__pagination > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0 24px;
  width: 100%;
}

.reviews__pagination > * > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  min-width: 11px;
  flex-shrink: 0;
}

.reviews__pagination > * > * *:not(.bg-gradient-card) {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.reviews__pagination > * > * *:not(.bg-gradient-card).current-page {
  pointer-events: none;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 1px solid var(--stroke-white-08);
  overflow: hidden;
}

.reviews__pagination > * > *:first-child,
.reviews__pagination > * > *:last-child {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
}

.reviews__pagination > * > *:first-child > *,
.reviews__pagination > * > *:last-child > * {
  height: 100%;
}

.reviews__pagination > * > *:first-child > *:after,
.reviews__pagination > * > *:last-child > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.reviews__pagination > * > *:first-child > *:hover:after,
.reviews__pagination > * > *:last-child > *:hover:after {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.reviews__pagination > * > *:first-child:after,
.reviews__pagination > * > *:last-child:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/icon/arrow-pagination.svg) center center no-repeat;
  background-size: 16px auto;
  z-index: 2;
}

.reviews__pagination > *:not(.btn-complete-all) > *:first-child {
  transform: translateX(-18px);
}

.reviews__pagination > *:not(.btn-complete-all) > *:last-child {
  transform: translateX(18px);
}

.reviews__pagination > *:not(.btn-complete-all) > *:last-child:after {
  transform: rotate(180deg);
}

.sing,
.registration,
.recovery {
  padding: 80px 0 34px;
}

.sing .decoration-picture,
.registration .decoration-picture,
.recovery .decoration-picture {
  left: auto;
  min-height: unset;
}

.sing .decoration-picture:after,
.registration .decoration-picture:after,
.recovery .decoration-picture:after {
  height: 19.661335842%;
  background: var(--mask_gradient_picture-up);
}

.sing .wrapper,
.registration .wrapper,
.recovery .wrapper {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 3;
}

.sing form,
.registration form,
.recovery form {
  gap: 10px 0;
  padding: 32px 24px;
  max-width: 460px;
}

.sing form h1,
.registration form h1,
.recovery form h1 {
  padding: 0 0 22px;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}

.sing form h1 .text-gradient,
.registration form h1 .text-gradient,
.recovery form h1 .text-gradient {
  width: 100% !important;
}

.sing form .container-btn,
.registration form .container-btn,
.recovery form .container-btn {
  padding: 14px 0 0;
}

.sing form .btn-gradient,
.registration form .btn-gradient,
.recovery form .btn-gradient {
  position: relative;
  width: 100%;
}

.sing form .btn-gradient > *,
.registration form .btn-gradient > *,
.recovery form .btn-gradient > * {
  pointer-events: none;
  color: var(--transparent);
}

.sing form .btn-gradient > *:after,
.registration form .btn-gradient > *:after,
.recovery form .btn-gradient > *:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--white);
  transform: translateY(-50%);
}

.sing form > *:not(.bg-gradient-card),
.registration form > *:not(.bg-gradient-card),
.recovery form > *:not(.bg-gradient-card) {
  position: relative;
  width: 100%;
  z-index: 2;
}

.sing.sing form .btn-gradient > *:after,
.registration.sing form .btn-gradient > *:after,
.recovery.sing form .btn-gradient > *:after {
  content: "Войти";
}

.sing.registration form .btn-gradient > *:after,
.registration.registration form .btn-gradient > *:after,
.recovery.registration form .btn-gradient > *:after {
  content: "Создать аккаунт";
}

.sing.recovery form .btn-gradient > *:after,
.registration.recovery form .btn-gradient > *:after,
.recovery.recovery form .btn-gradient > *:after {
  content: "Восстановить аккаунт";
}

*[data-gradient] {
  max-width: 100%;
}

.text-gradient {
  position: relative;
  display: inline-block;
  color: rgba(192, 192, 192, 0.56);
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: rgba(192, 192, 192, 0.56);
  background: linear-gradient(145deg, rgba(192, 192, 192, 0.56) -10%, #e8e8e8 61%, rgb(255, 255, 255) 110%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: rgba(0, 0, 0, 0);
}

.text-gradient-violet {
  position: relative;
  display: inline-block;
  color: rgb(115, 113, 254);
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: rgb(115, 113, 254);
  background: linear-gradient(-165deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: rgba(0, 0, 0, 0);
}

.base {
  position: relative;
  padding: 36px 0 0;
}

.base.reviews .global-aside {
  left: 0;
  right: auto;
}

.base .reviews__content {
  flex-direction: unset;
  flex-wrap: wrap;
  gap: 0;
  max-width: 100%;
}

.base .reviews__content h1 {
  padding: 0 0 0 32px;
  margin: 0 0 -42px;
  font-size: 104px;
}

.base .reviews__list {
  position: relative;
  padding: 37px 20px 30px 32px;
  margin: 0 0 0 auto;
  max-width: calc(100% - 320px - 96px);
}

.base .reviews__list .wrapper {
  padding: 0;
  max-width: 100%;
}

.base .reviews__list .wrapper h2 {
  padding: 0 0 15px;
  font-size: 48px;
  line-height: 1.1;
}

.base .reviews__list .wrapper ol > li {
  padding-left: 6px;
}

.base .reviews__list .wrapper ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  left: -46px;
  font-weight: 300;
}

.base .reviews__list .wrapper ol > li > ol {
  gap: 0;
}

.base .reviews__list .wrapper ol > li > ol > li {
  padding-left: 7px;
}

.base .reviews__list .wrapper > ol {
  padding: 31px 0 0 26px;
  gap: 50px 0;
}

.base .reviews__list .wrapper > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  left: -48px;
  font-weight: 400;
}

.base .reviews__pagination {
  padding: 32px 0 0;
  margin: 0 0 0 auto;
  max-width: calc(100% - 320px - 96px);
}

.base .reviews__pagination > * {
  justify-content: space-between;
}

.base .reviews__pagination > * > * {
  flex-shrink: 0;
  flex-grow: 1;
  max-width: 380px;
  height: auto;
  border-radius: 24px;
  align-self: stretch;
}

.base .reviews__pagination > * > * > a {
  padding: 8px 24px 15px;
}

.base .reviews__pagination > * > * p {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  align-self: flex-start;
}

.base .reviews__pagination > * > * p .text-gradient {
  width: auto !important;
  font-size: 24px;
  font-weight: 400;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}

.base .reviews__pagination > * > * .bg-gradient-card {
  border-radius: 24px;
}

.base .reviews__pagination > * > *:first-child:not(:last-child),
.base .reviews__pagination > * > *:last-child,
.base .reviews__pagination > * > *:last-child:first-child {
  position: relative;
  transform: unset;
}

.base .reviews__pagination > * > *:first-child:not(:last-child) > *:after,
.base .reviews__pagination > * > *:last-child > *:after,
.base .reviews__pagination > * > *:last-child:first-child > *:after {
  inset: 0;
  border-radius: 12px;
}

.base .reviews__pagination > * > *:first-child:not(:last-child):after,
.base .reviews__pagination > * > *:last-child:after,
.base .reviews__pagination > * > *:last-child:first-child:after {
  width: 28px;
  height: 28px;
  background-size: 22px auto;
}

.base .reviews__pagination > * > *:first-child:not(:last-child):after {
  left: 25px;
  transform: rotate(45deg);
}

.base .reviews__pagination > * > *:last-child,
.base .reviews__pagination > * > *:last-child:first-child {
  margin: 0 0 0 auto;
}

.base .reviews__pagination > * > *:last-child p,
.base .reviews__pagination > * > *:last-child:first-child p {
  align-content: flex-start;
  align-items: flex-start;
}

.base .reviews__pagination > * > *:last-child p .text-gradient,
.base .reviews__pagination > * > *:last-child:first-child p .text-gradient {
  justify-content: flex-start;
}

.base .reviews__pagination > * > *:last-child:after,
.base .reviews__pagination > * > *:last-child:first-child:after {
  right: 25px;
  transform: rotate(135deg);
}

.base .global-aside {
  position: relative;
  padding: 35px 0 32px;
  max-width: 320px;
}

.base .global-aside h2 {
  position: relative;
  padding: 0 32px 22px;
  width: 100%;
}

.base .global-aside h2:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: calc(100% - 64px);
  border-bottom: 1px solid var(--stroke-white-10);
  transform: translateX(-50%);
}

.base .global-aside ul {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  padding: 27px 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.base .global-aside ul .simplebar-content {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.base .global-aside ul .simplebar-track.simplebar-horizontal {
  height: 8px;
}

.base .global-aside ul li {
  position: relative;
  padding: 0 28px 0 32px;
  width: 100%;
}

.base .global-aside ul li .text-gradient {
  background: linear-gradient(145deg, rgba(192, 192, 192, 0.56) -10%, #e8e8e8 61%, rgb(255, 255, 255) 110%);
  transition: 0.3s all;
}

.base .global-aside ul li:before,
.base .global-aside ul li:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: -2px;
  width: 4px;
  height: 100%;
  background-color: rgba(115, 113, 254, 0);
  background: linear-gradient(-165deg, rgba(115, 113, 254, 0) 0%, rgba(171, 169, 254, 0) 100%);
}

.base .global-aside ul li:before {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.base .global-aside ul li:after {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.base .global-aside ul li.active .text-gradient,
.base .global-aside ul li:hover .text-gradient {
  color: rgb(115, 113, 254);
  background: linear-gradient(-165deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
  color: rgba(0, 0, 0, 0);
}

.base .global-aside ul li.active {
  pointer-events: none;
}

.base .global-aside ul li.active:before,
.base .global-aside ul li.active:after {
  background-color: rgb(115, 113, 254);
  background: linear-gradient(-165deg, rgb(115, 113, 254) 0%, rgb(171, 169, 254) 100%);
}

.base .global-aside ul a {
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.base .global-aside ul a .text-gradient {
  width: auto !important;
  white-space: normal;
}

.base-trading .reviews__list,
.base-documents .reviews__list {
  padding: 37px 32px 30px;
  max-width: calc(100% - 320px - 40px);
}

.base-trading .reviews__list .wrapper > ol,
.base-documents .reviews__list .wrapper > ol {
  padding: 31px 0 0;
}

.base-trading .reviews__list .wrapper > ol > li,
.base-documents .reviews__list .wrapper > ol > li {
  padding: 0;
  line-height: 1.347;
}

.base-trading .reviews__list .wrapper > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before,
.base-documents .reviews__list .wrapper > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
  display: none;
}

.base-trading .reviews__list .wrapper > ol > li ol > li,
.base-documents .reviews__list .wrapper > ol > li ol > li {
  padding-left: 39px;
}

.base-trading .reviews__list--other,
.base-documents .reviews__list--other {
  position: relative;
  display: flex;
  margin: 28px 0 20px;
  width: 100%;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}

.base-trading .reviews__list--other > p,
.base-documents .reviews__list--other > p {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.base-trading .reviews__list--other > p span,
.base-documents .reviews__list--other > p span {
  padding: 12px 0 0 20px;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.base-trading .reviews__list--other > p img,
.base-trading .reviews__list--other > p svg,
.base-documents .reviews__list--other > p img,
.base-documents .reviews__list--other > p svg {
  position: relative;
  margin: 45px 0;
  z-index: 2;
}

.base-trading .reviews__list--other-description,
.base-documents .reviews__list--other-description {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.base-trading .reviews__list--other-description > p,
.base-documents .reviews__list--other-description > p {
  font-size: 18px;
}

.base-trading .reviews__list--other-address,
.base-documents .reviews__list--other-address {
  position: relative;
  display: flex;
  gap: 0 24px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.base-trading .reviews__list--other-address *:not(img, svg),
.base-documents .reviews__list--other-address *:not(img, svg) {
  max-width: 430px;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.base-trading .reviews__list--other-address img,
.base-trading .reviews__list--other-address svg,
.base-documents .reviews__list--other-address img,
.base-documents .reviews__list--other-address svg {
  position: relative;
}

.base-trading .reviews__list--other-icon,
.base-documents .reviews__list--other-icon {
  position: relative;
  display: flex;
  width: 58px;
  height: 58px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.base-trading .reviews__pagination,
.base-documents .reviews__pagination {
  max-width: calc(100% - 320px - 40px);
}

.base-documents .reviews__list--other {
  flex-direction: column;
  margin: 28px 0 0;
  justify-content: flex-start;
}

.carousel-documnets {
  position: relative;
  margin: 0 auto 51px;
  width: 100%;
  max-width: 408px;
}

.carousel-documnets .swiper-container {
  width: 100%;
  overflow: hidden;
}

.carousel-documnets .slide__content {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}

.carousel-documnets .container-arrow {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-documnets .container-arrow .swiper-button-prev,
.carousel-documnets .container-arrow .swiper-button-next {
  pointer-events: all;
  position: absolute;
  width: 54px;
  height: 54px;
}

.carousel-documnets .container-arrow .swiper-button-prev:after,
.carousel-documnets .container-arrow .swiper-button-prev:after,
.carousel-documnets .container-arrow .swiper-button-next:after,
.carousel-documnets .container-arrow .swiper-button-next:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/icon/arrow-pagination.svg) center center no-repeat;
  background-size: 22px auto;
  z-index: 2;
}

.carousel-documnets .container-arrow .swiper-button-prev {
  right: calc(100% + 32px);
  left: auto;
}

.carousel-documnets .container-arrow .swiper-button-prev:after {
  transform: rotate(45deg);
}

.carousel-documnets .container-arrow .swiper-button-next {
  left: calc(100% + 32px);
  right: auto;
}

.carousel-documnets .container-arrow .swiper-button-next:after {
  transform: rotate(135deg);
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.economy {
  padding: 57px 0 0;
  width: 100%;
}

.economy .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.economy__info {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
  padding: 0 0 25px;
  max-width: 450px;
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.economy__info h1 {
  font-weight: 400;
  line-height: 1.37;
}

.economy__info p {
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.economy__info .container-btn {
  padding: 16px 0 0;
  width: 100%;
}

.economy__info .btn-gradient {
  padding: 17px 10px;
  max-width: 192px;
  width: 100%;
  font-size: 18px;
}

.economy__picture {
  display: flex;
  max-width: calc(100% - 505px);
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.produce.economy-cards {
  position: relative;
  padding: 36px 0 63px;
}

.produce.economy-cards .section-header h2 {
  max-width: unset;
  text-align: left;
}

.produce.economy-cards .produce__cards {
  display: flex;
  gap: 16px;
  padding: 0 0 34px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  transform: unset;
}

.produce.economy-cards .produce__cards--item {
  padding: 0;
  width: 100%;
}

.produce.economy-cards .produce-card.card {
  position: relative;
  cursor: pointer;
  transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(50%);
  opacity: 0;
  z-index: 2;
}

.produce.economy-cards .produce-card.card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.produce.economy-cards .produce__info--logo {
  width: 100%;
}

.produce.economy-cards .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.produce.economy-cards .masonry-footer {
  position: absolute;
  display: flex;
  top: 100%;
  left: 0;
  width: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 5;
}

.produce.economy-cards .masonry-footer .loading-result {
  position: relative;
  padding: 0 24px;
}

.produce.economy-cards .masonry-footer:before,
.produce.economy-cards .masonry-footer:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  width: calc(50% - 120px);
  height: 1px;
  background: var(--stroke-white-10);
  transform: translateY(-50%);
}

.produce.economy-cards .masonry-footer:before {
  left: 20px;
}

.produce.economy-cards .masonry-footer:after {
  right: 20px;
}

.produce.economy-cards .load-more {
  position: relative;
  display: flex;
  gap: 0 16px;
  cursor: pointer;
  padding: 0 24px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.03em;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.produce.economy-cards .load-more:after {
  position: relative;
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/icon/arow-dropdown.svg) center center no-repeat;
  background-size: 16px auto;
  transition: 0.3s all;
}

.produce.economy-cards .load-more:hover:after,
.produce.economy-cards .load-more.active:after {
  transform: rotate(45deg);
}

.produce.economy-cards .loading {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.page-cabinet .header {
  padding: 20px 0 15px;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions {
  padding: 15px 0px 0px;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet-task__content {
  margin: 9px 0 0;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header {
  gap: 0;
  justify-content: flex-start;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > * {
  flex-shrink: 0;
  padding: 0 20px 0 0;
  max-width: unset;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:first-child {
  padding: 0 20px 0 24px;
  max-width: 27.6%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(2) {
  max-width: 23.5%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(3) {
  max-width: 19%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(4) {
  max-width: 20%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:last-child {
  max-width: 9.9%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li {
  padding: 24px 0;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header {
  cursor: default;
  justify-content: flex-start;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > * {
  flex-shrink: 0;
  padding: 0 20px 0 0;
  max-width: unset;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:first-child {
  padding: 0 20px 0 24px;
  max-width: 27.6%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(2) {
  max-width: 23.5%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(3) {
  max-width: 19%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(4) {
  max-width: 20%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:last-child {
  max-width: 9.9%;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *.btn-complete {
  pointer-events: none;
  background-color: rgb(178, 55, 58);
  background: linear-gradient(-15deg, rgb(191, 40, 42) 0%, rgb(255, 86, 89) 100%);
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *.btn-complete > * {
  cursor: pointer;
  pointer-events: all;
  color: var(--transparent);
  transition: 0.3s all ease;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *.btn-complete > *:hover {
  color: var(--grey);
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination {
  padding: 0 24px;
  margin: 28px 0 0;
  justify-content: space-between;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination > * {
  flex-shrink: 0;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination > ul {
  padding: 0 18px;
  width: auto;
  justify-content: flex-start;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination .btn-complete-all {
  padding: 0 24px;
  max-width: 244px;
  border-radius: 777px;
}

.page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination .btn-complete-all span:after {
  display: none;
}

.page-cabinet .settings {
  display: flex;
  flex-direction: column;
  padding: 31px 0 5px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings h1,
.page-cabinet .settings h2 {
  margin: 0 0 -47px;
}

.page-cabinet .settings__data {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__data > * {
  position: relative;
  display: flex;
  padding: 32px 32px 32px;
  width: calc(50% - 8px);
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}

.page-cabinet .settings__data > * > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .settings__data > *.settings__data--user {
  gap: 0 24px;
}

.page-cabinet .settings__data > *.settings__data--user form {
  padding: 38px 0 0;
  align-self: stretch;
}

.page-cabinet .settings__data > *.settings__data--user form .container-btn {
  margin: auto 0 0;
  width: 100%;
  justify-content: flex-end;
}

.page-cabinet .settings__data > *.settings__data--user .global-input {
  margin: 54px 0 0;
}

.page-cabinet .settings__data > *.settings__data--user .global-input .global-input__placeholder {
  bottom: calc(100% - 3px);
  top: auto;
  padding: 16px 0 15px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .settings__data > *.settings__data--user .global-input:first-child {
  margin: 0;
}

.page-cabinet .settings__data > *.settings__data--user .global-input.on-focus .global-input__placeholder {
  bottom: calc(100% - 3px);
  top: auto;
  padding: 16px 0 15px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .settings__data > *.settings__data--defense {
  flex-direction: column;
}

.page-cabinet .settings__data > *.settings__data--defense .container-btn {
  padding: 33px 0 0;
  margin: auto 0 0;
}

.page-cabinet .settings__data--avatar {
  display: flex;
  flex-shrink: 0;
  width: 120px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__data--picture {
  display: flex;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  overflow: hidden;
}

.page-cabinet .settings__data--edit {
  cursor: pointer;
  position: absolute;
  display: flex;
  top: calc(100% - 11px);
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transform: translateX(-50%);
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__data--edit > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .settings__data--edit:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.page-cabinet .settings__data--edit:hover:after {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0 rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.page-cabinet .settings__data--header {
  position: relative;
  display: flex;
  gap: 0 12px;
  width: 100%;
  font-size: 32px;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__data--header strong {
  font-weight: 400;
}

.page-cabinet .settings__data--description {
  display: flex;
  padding: 38px 0 0;
  width: 100%;
  line-height: 1.4;
  font-weight: 300;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__data--icon {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__data--icon > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .settings__bot {
  display: flex;
  padding: 32px 32px;
  margin: 25px 0 0;
  width: 100%;
  border-radius: 32px;
  background-color: rgb(115, 113, 254);
  background: linear-gradient(14deg, rgb(171, 169, 254) 0%, rgb(115, 113, 254) 100%);
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__bot > * {
  flex-shrink: 0;
}

.page-cabinet .settings__bot--icon {
  position: relative;
  display: flex;
  margin: 0 24px 0 0;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__bot--icon > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .settings__bot--description {
  flex-shrink: 1;
  display: flex;
  margin: 0 56px 0 0;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__bot--description strong {
  padding: 3px 0 3px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .settings__bot--description p {
  line-height: 1.4;
  font-weight: 300;
}

.page-cabinet .settings__bot .container-btn {
  margin: -3px 0 0;
}

.page-cabinet .settings__bot .container-btn .btn-gradient {
  padding: 17px 40px 17px 41px;
  background: var(--white);
}

.page-cabinet .settings__bot .container-btn .btn-gradient > * {
  color: var(--black);
}

.page-cabinet .settings__finance {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 33px;
  margin: 21px 0 0;
  width: 100%;
  border-radius: 32px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance strong {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .settings__finance--parameters {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance--select {
  display: flex;
  gap: 0 48px;
  margin: 17px 0 0;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance--select > * {
  align-self: stretch;
}

.page-cabinet .settings__finance--select > * > span {
  padding: 0 0 14px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .settings__finance--valute {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance--valute .custom-select {
  top: calc(100% - 60px);
}

.page-cabinet .settings__finance--valute .custom-select.active .custom-select__dropdown {
  height: 187px;
}

.page-cabinet .settings__finance--period {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance--period .input-radio {
  cursor: pointer;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-direction: unset;
  gap: 0 !important;
  padding: 14px 0;
  width: 100%;
  border: unset;
  font-weight: 400;
}

.page-cabinet .settings__finance--period .input-radio > * {
  width: 50%;
}

.page-cabinet .settings__finance--period .input-radio > p {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.page-cabinet .settings__finance--period .input-radio > input {
  pointer-events: none !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: rgba(0, 0, 0, 0) !important;
  background: rgba(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

.page-cabinet .settings__finance--period .input-radio > input + .btn-gradient {
  position: absolute;
  pointer-events: all;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
}

.page-cabinet .settings__finance--period .input-radio > input:checked + .btn-gradient {
  pointer-events: none;
  opacity: 1;
}

.page-cabinet .settings__finance--radio {
  position: relative;
  display: flex;
  padding: 4px 4px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__finance--charity {
  position: relative;
  display: flex;
  margin: 12px 0 0;
  padding: 20px 24px 14px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .settings__finance--charity > .btn-gradient {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  opacity: 0.2;
}

.page-cabinet .settings__finance--charity .input-checkbox {
  pointer-events: all;
  flex-shrink: 0;
  padding: 16px 0;
  margin: 0 0 0 24px;
  width: 56px;
  transform: translateY(-2px);
}

.page-cabinet .settings__finance--charity .input-checkbox > input {
  pointer-events: none !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: rgba(0, 0, 0, 0) !important;
  background: rgba(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

.page-cabinet .settings__finance--charity .input-checkbox > input + .btn-gradient {
  position: absolute;
  pointer-events: all;
  top: 4px;
  left: 4px;
  padding: 0;
  width: 24px;
  height: 24px;
  min-height: unset;
  transition: all 0.3s ease;
}

.page-cabinet .settings__finance--charity .input-checkbox > input:checked + .btn-gradient {
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
}

.page-cabinet .settings__finance--description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__finance--description strong {
  font-size: 24px;
  font-weight: 400;
}

.page-cabinet .settings__finance--description p {
  padding: 3px 0 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .settings__password,
.page-cabinet .settings__personal {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 35px 32px 31px;
  margin: 24px 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__password > strong,
.page-cabinet .settings__personal > strong {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .settings__password form,
.page-cabinet .settings__personal form {
  display: flex;
  flex-direction: unset;
  gap: 0 20px;
  padding: 53px 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .settings__password form .input-label,
.page-cabinet .settings__personal form .input-label {
  position: absolute;
  bottom: calc(100% + 15px);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .settings__password form > *,
.page-cabinet .settings__personal form > * {
  flex-shrink: 0;
}

.page-cabinet .settings__password form > *:not(.bg-gradient-card),
.page-cabinet .settings__personal form > *:not(.bg-gradient-card) {
  max-width: 312px;
}

.page-cabinet .settings__personal form > *:not(.bg-gradient-card) {
  max-width: 478px;
}

.page-cabinet .header .wrapper-cabinet {
  position: relative;
  max-width: 1875px;
}

.page-cabinet .header-cabinet__info {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .header-cabinet__info .logo {
  display: none;
}

.page-cabinet .header-cabinet__finance {
  display: flex;
  gap: 0 24px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .header-cabinet__finance .btn-back {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
  overflow: hidden;
  z-index: 5;
}

.page-cabinet .header-cabinet__finance .btn-back:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/icon/arow-white-h.svg) center center no-repeat;
  background-size: 24px auto;
  transition: 0.3s all ease;
}

.page-cabinet .header-cabinet__finance .btn-back:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
}

.page-cabinet .header-cabinet__finance .btn-back:hover:after {
  left: -5px;
}

.page-cabinet .header-cabinet__finance ul {
  display: flex;
  gap: 0 8px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .header-cabinet__finance--item {
  position: relative;
  display: flex;
  gap: 0 12px;
  padding: 8px 24px 8px 8px;
  border-radius: 48px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .header-cabinet__finance--icon {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .header-cabinet__finance--icon img,
.page-cabinet .header-cabinet__finance--icon svg {
  position: relative;
}

.page-cabinet .header-cabinet__finance--description {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .header-cabinet__finance--description > span {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .header:before {
  display: none;
}

.page-cabinet .header .btn-menu {
  display: none;
}

.page-cabinet .header .header__btn {
  gap: 0 6px;
  margin: 0 -22px 0 0;
}

.page-cabinet .header .header__btn .lang {
  right: calc(100% + 6px);
  top: 7px;
}

.page-cabinet .header .header__btn .sing-up__cabinet {
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 8px 14px 8px 24px;
  font-size: 24px;
  border-radius: 48px;
  letter-spacing: -0.03em;
  background: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  justify-content: center;
  align-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.page-cabinet .header .header__btn .sing-up__cabinet > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .header .header__btn .sing-up__cabinet .text-cut.mail-cut {
  width: auto !important;
}

.page-cabinet .header .header__btn .sing-up__cabinet--avatar {
  position: relative;
  display: flex;
  flex-shrink: 0;
  margin: 0 8px 0 24px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  overflow: hidden;
}

.page-cabinet .header .header__btn .sing-up__cabinet:after {
  position: relative;
  pointer-events: none;
  content: "";
  width: 24px;
  height: 24px;
  background: url(img/icon/arow-violet.svg) center center no-repeat;
  background-size: 14px auto;
  transform: rotate(90deg);
  transition: 0.3s all ease;
}

.page-cabinet .header .header__btn .sing-up__cabinet:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.page-cabinet .notice {
  cursor: pointer;
  position: relative;
  display: flex;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .notice img,
.page-cabinet .notice svg {
  position: relative;
}

.page-cabinet .notice:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.page-cabinet .btn-menu p {
  display: flex;
  position: relative;
  width: 21px;
  height: 19px;
  border-radius: 5px;
  border: 2px solid var(--text-white-60);
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-cabinet .btn-menu p:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  right: 2px;
  width: 2px;
  height: 10px;
  background: var(--text-white-60);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(-50%);
}

.page-cabinet .btn-menu:hover p {
  border-color: var(--white);
}

.page-cabinet .btn-menu:hover p:after {
  background: var(--white);
}

.page-cabinet .open-menu {
  overflow: unset;
}

.page-cabinet .open-menu .btn-menu p {
  border-color: var(--white);
}

.page-cabinet .open-menu .btn-menu p:after {
  right: calc(100% - 4px);
  background: var(--white);
}

.page-cabinet .open-menu .aside-cabinet .btn-menu {
  left: 207px;
}

.page-cabinet .open-menu .aside-cabinet .btn-menu p:after {
  left: calc(100% - 4px);
  right: auto;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu {
  padding: 32px 26px 13px 12px;
  width: 231px;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu .simplebar-horizontal {
  visibility: hidden !important;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu .nav-menu__content .menu-list > ul:after {
  left: 14px;
  width: calc(100% - 26px);
  transform: unset;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu .logo {
  padding: 0 0 14px 34px;
  width: auto;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu .logo span {
  color: rgb(255, 255, 255);
}

.page-cabinet .open-menu .aside-cabinet .nav-menu__content .menu-list > ul li {
  padding: 14px 11px 14px 23px;
  width: 100%;
}

.page-cabinet .open-menu .aside-cabinet .nav-menu__content .menu-list > ul li a {
  gap: 0 12px;
}

.page-cabinet .open-menu > *:not(.scroll-control, .btn-up, .cabinet-support, .popup) {
  position: relative;
  max-height: unset;
}

.page-cabinet h1,
.page-cabinet h2 {
  padding: 0 0 0 32px;
  margin: 0 0 -42px;
  font-size: 104px;
  text-align: left;
  font-weight: 400;
}

.page-cabinet h3 {
  width: 100%;
  text-align: center;
}

.page-cabinet main .wrapper-cabinet {
  display: flex;
  padding: 17px 0 0;
  max-width: 1866px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .aside-cabinet {
  position: relative;
  margin: 0 0 113px;
  max-width: 0;
  z-index: 11;
}

.page-cabinet .aside-cabinet .btn-menu {
  position: absolute;
  top: 89px;
  left: 80px;
}

.page-cabinet .aside-cabinet .btn-menu p:after {
  right: auto;
  left: 2px;
}

.page-cabinet .aside-cabinet .nav-menu {
  position: relative;
  top: auto;
  left: auto;
  padding: 32px 21px 18px;
  max-width: unset;
  width: 104px;
  border-radius: 56px;
  transition: 0.3s all ease;
  transform: unset;
}

.page-cabinet .aside-cabinet .nav-menu .simplebar-horizontal {
  visibility: hidden !important;
}

.page-cabinet .aside-cabinet .nav-menu__content {
  max-height: 100%;
  max-height: 850px;
  overflow: hidden;
}

.page-cabinet .aside-cabinet .nav-menu__content .logo {
  padding: 0 0 14px 4px;
  width: 100%;
  transition: 0.3s all ease;
  overflow: hidden;
}

.page-cabinet .aside-cabinet .nav-menu__content .logo span {
  color: rgba(0, 0, 0, 0);
  transition: 0.3s all ease;
}

.page-cabinet .aside-cabinet .nav-menu__content span {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list {
  padding: 16px 0 0;
  gap: 18px 0;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul {
  position: relative;
  gap: 4px 0;
  padding: 18px 0 0;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li {
  pointer-events: none;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 14px;
  width: 60px;
  transition: 0.3s all ease;
  overflow: hidden;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li > .bg-gradient-card {
  transition: 0.3s all ease;
  opacity: 0;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a {
  pointer-events: all;
  display: flex;
  gap: 0 25px;
  font-size: 22px;
  font-weight: 300;
  text-transform: capitalize;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p img,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p svg {
  width: 32px;
  height: 32px;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p img:last-of-type.icon-svg,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p svg:last-of-type.icon-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p img:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p svg:last-of-type.icon-svg path {
  transition: 0.3s all ease;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p:after {
  display: none;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a span:after {
  content: attr(data-text);
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  background: none;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgb(157, 157, 157);
  transition: 0.3s all ease;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li:hover p img:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li:hover p svg:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active p img:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active p svg:last-of-type.icon-svg path {
  fill: rgba(0, 0, 0, 0);
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li:hover span:after,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active span:after {
  color: rgba(255, 255, 255, 0);
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active {
  pointer-events: none;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active a {
  pointer-events: none;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active > .bg-gradient-card {
  opacity: 1;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout {
  padding: 18px 0 0;
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout span.text-gradient-violet {
  background: linear-gradient(-165deg, rgb(191, 40, 42) 0%, rgb(255, 86, 89) 100%);
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout li:hover p img:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout li:hover p svg:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout li.active p img:last-of-type.icon-svg path,
.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul.logout li.active p svg:last-of-type.icon-svg path {
  fill: url(#paint0_linear_208_3273);
}

.page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul:after {
  pointer-events: none;
  position: absolute;
  content: "";
  bottom: calc(100% - 1px);
  left: 50%;
  width: calc(100% - 10px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.184) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
  transition: 0.3s all ease;
}

.page-cabinet .cabinet-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-support {
  pointer-events: none;
  position: fixed;
  top: 50%;
  right: 0;
  display: flex;
  gap: 0 8px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  transform: translate(8.8em, -50%) rotate(-90deg);
}

.page-cabinet .cabinet-support a {
  position: relative;
  pointer-events: all;
  display: flex;
  padding: 11px 16px 14px 12px;
  gap: 0 8px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  white-space: nowrap;
}

.page-cabinet .cabinet-support a > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .cabinet-support a .bg-gradient-card {
  border-radius: 24px 24px 0 0;
}

.page-cabinet .cabinet-support a .bg-gradient-card:after {
  background: linear-gradient(70deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.page-cabinet .cabinet-support a span {
  position: relative;
}

.page-cabinet .cabinet-support a span:after {
  position: absolute;
  content: attr(data-text);
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  background: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
  color: rgb(157, 157, 157);
  transition: 0.3s all ease;
}

.page-cabinet .cabinet-support a:hover span:after {
  color: var(--transparent);
}

.page-cabinet .cabinet-deposit {
  padding: 30px 0 0;
}

.page-cabinet .cabinet__table {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 32px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table > *:not(.bg-gradient-card, .cabinet__table-type) {
  position: relative;
}

.page-cabinet .cabinet__table-type {
  pointer-events: none;
  position: absolute;
  top: -19px;
  right: 32px;
  padding: 9px 16px 10px 17px;
  font-size: 16px;
}

.page-cabinet .cabinet__table--line {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--finance {
  position: relative;
  display: flex;
  gap: 0 16px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--info {
  display: flex;
  gap: 0 12px;
  flex-grow: 1;
  margin: 0 0 0 98px;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px 0;
  font-size: 16px;
  font-weight: 300;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--item > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) {
  position: relative;
  color: var(--text-white-60);
  white-space: nowrap;
}

.page-cabinet .cabinet__table--item > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) > * {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet__table--item.__violet {
  padding: 26px 25px 22px 24px;
}

.page-cabinet .cabinet__table--item.__violet .btn-gradient-border:after {
  background: linear-gradient(115deg, rgba(99, 91, 255, 0.5) 10%, rgba(255, 255, 255, 0.07) 100%);
}

.page-cabinet .cabinet__table--item.__violet .bg-gradient-card {
  position: absolute;
  display: flex;
  top: 50%;
  left: calc(100% - 10px);
  width: 36px;
  height: 36px;
  border-radius: 100%;
  transform: translateY(-50%);
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 2;
}

.page-cabinet .cabinet__table--item.__violet .bg-gradient-card:after {
  padding: 2px;
}

.page-cabinet .cabinet__table--item.__violet .bg-gradient-card:before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(img/icon/arow-white-h.svg) center center no-repeat;
  background-size: 15px auto;
  transform: rotate(180deg);
  z-index: 3;
}

.page-cabinet .cabinet__table--item.__grey {
  padding: 26px 33px 22px;
}

.page-cabinet .cabinet__table--item.__grey:not(:first-child) > * {
  margin: 0 auto;
}

.page-cabinet .cabinet__table--item.__grey .btn-gradient-border:after {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.07) 10%, rgba(255, 255, 255, 0.04) 100%);
}

.page-cabinet .cabinet__table--item > .btn-gradient-border {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.page-cabinet .cabinet__table--item > .btn-gradient-border:after {
  padding: 0.1em;
}

.page-cabinet .cabinet__table--description {
  position: relative;
  display: flex;
  gap: 16px 0;
  padding: 64px 0 34px;
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--description .bg-gradient-card {
  position: absolute;
  display: flex;
  inset: unset;
  top: -3px;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transform: translateX(-50%);
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 2;
}

.page-cabinet .cabinet__table--description .bg-gradient-card:after {
  padding: 1px;
}

.page-cabinet .cabinet__table--description .bg-gradient-card:before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  background: url(img/icon/cabinet/not-withdraw.svg) center center no-repeat;
  background-size: 30px auto;
  z-index: 3;
}

.page-cabinet .cabinet__table--description > *:not(h3, .bg-gradient-card, .container-btn) {
  padding: 0 28px;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-white-60);
}

.page-cabinet .cabinet__table--description .container-btn {
  display: flex;
  gap: 0 16px;
  padding: 15px 0 0;
  width: 100%;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet__table--description .container-btn .btn-gradient {
  padding: 17px 29px;
}

.page-cabinet .cabinet-statistics {
  padding: 19px 0 95px;
  width: 100%;
}

.page-cabinet .cabinet-statistics .cabinet__table {
  gap: 69px 0;
  padding: 31px 32px 70px;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__info {
  gap: 0 18px;
  justify-content: space-between;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart {
  gap: 0 12px;
  justify-content: space-between;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item {
  position: relative;
  max-width: calc(12.5% - 11px);
  width: 100%;
  height: 320px;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .bg-gradient-card {
  border-radius: 24px;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .btn-gradient {
  pointer-events: none;
  position: absolute;
  inset: unset;
  bottom: 12px;
  left: 50%;
  padding: 5px 0;
  max-width: calc(100% - 24px);
  width: 100%;
  max-height: calc(100% - 24px);
  min-height: 10px;
  border-radius: 16px;
  transform: translateX(-50%);
  z-index: 2;
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent,
.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent > *,
.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-date > * {
  font-size: 18px;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent {
  bottom: calc(100% + 10px);
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-date {
  top: calc(100% + 14px);
}

.page-cabinet .cabinet-statistics .cabinet__table--line.__empty {
  justify-content: center;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey {
  padding: 18px 16px 22px;
  gap: 24px 0;
  max-width: calc(25% - 14px);
  width: 100%;
  align-self: stretch;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey .bg-gradient-card {
  position: absolute;
  display: flex;
  inset: unset;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 2;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey .bg-gradient-card:after {
  padding: 0;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey .bg-gradient-card:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-size: 24px auto;
  z-index: 3;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey:not(:first-child) > * {
  margin: 0;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-deposit .bg-gradient-card:before {
  background: url(img/icon/cabinet/table-deposit.svg) center center no-repeat;
  background-size: 24px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-percent .bg-gradient-card:before {
  background: url(img/icon/cabinet/table-percent.svg) center center no-repeat;
  background-size: 24px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-money .bg-gradient-card:before {
  background: url(img/icon/cabinet/table-money.svg) center center no-repeat;
  background-size: 24px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-withdraw .bg-gradient-card:before {
  background: url(img/icon/cabinet/table-withdraw.svg) center center no-repeat;
  background-size: 24px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-group .bg-gradient-card:before {
  background: url(img/icon/cabinet/menu/group.svg) center center no-repeat;
  background-size: 24px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-append .bg-gradient-card:before {
  background: url(img/icon/cabinet/menu/withdraw-in-v.svg) center center no-repeat;
  background-size: 30px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-withdraw-out .bg-gradient-card:before {
  background: url(img/icon/cabinet/menu/withdraw-out-v.svg) center center no-repeat;
  background-size: 30px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-reinvest .bg-gradient-card:before {
  background: url(img/icon/cabinet/menu/reinvestment-v.svg) center center no-repeat;
  background-size: 30px auto;
}

.page-cabinet .cabinet-statistics .cabinet__table--item.__grey.table-close .bg-gradient-card:before {
  background: url(img/icon/cabinet/menu/close-v.svg) center center no-repeat;
  background-size: 30px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy {
  padding: 31px 0 95px;
}

.page-cabinet .cabinet-statistics.cabinet-academy h2 {
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 32px;
  text-align: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table {
  gap: 30px 0;
  padding: 34px 32px 70px;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--header {
  position: relative;
  padding: 65px 0 0;
  width: 100%;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--header .bg-gradient-card {
  display: none;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--header:after {
  position: absolute;
  content: "";
  top: 6px;
  left: 50%;
  width: 40px;
  height: 40px;
  background: url(img/icon/cabinet/questioning.svg) center center no-repeat;
  transform: translateX(-50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table h3 {
  font-size: 22px;
  font-weight: 300;
  white-space: normal;
  color: var(--white);
  text-transform: unset;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--line {
  flex-wrap: wrap;
  gap: 16px 16px;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--item {
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--item:before {
  --size: 0;
  width: var(--size);
  height: var(--size);
  position: absolute;
  content: "";
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  background: radial-gradient(rgba(161, 159, 254, 0.25), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(161, 159, 254, 0.1);
  transition: width 0.48s ease, height 0.48s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--item:hover:before {
  --size: 300px;
}

.page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--show {
  display: none;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table {
  padding: 34px 32px 25px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back {
  position: absolute;
  left: 0;
  display: flex;
  gap: 0 4px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  transition: 0.1s all linear;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/icon/arrow-pagination.svg) center center no-repeat;
  background-size: 16px auto;
  transition: 0.1s all linear;
  z-index: 2;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back:hover {
  gap: 0 8px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back:hover:before {
  width: 16px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey {
  gap: 19px 0;
  padding: 24px 16px 22px;
  height: 142px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey > * {
  flex-shrink: 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey strong.text-gradient {
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey .bg-gradient-card {
  position: relative;
  right: auto;
  top: auto;
  margin: 0 auto;
  width: 48px;
  height: 48px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey .bg-gradient-card:before {
  width: 48px;
  height: 48px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) {
  gap: 15px 0;
  max-width: calc(50% - 8px);
  height: auto;
  font-size: 18px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) {
  color: var(--white);
  font-weight: 400;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) strong.text-gradient {
  padding: 4px 0 0;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p .bg-gradient-card {
  width: 32px;
  height: 32px;
  border-radius: 100% 0 100% 100%;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p .bg-gradient-card:before {
  width: 32px;
  height: 32px;
  background: url(img/icon/cabinet/check-v.svg) center center no-repeat;
  background-size: 16px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p .bg-gradient-card:after {
  padding: 1px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p:not([data-gradient]) {
  display: flex;
  gap: 0 12px;
  margin: 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p[data-gradient] {
  padding: 2px 0 1px;
  text-align: center;
  white-space: normal;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) p[data-gradient] > * {
  font-size: 18px;
  font-weight: 300;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2):hover:before {
  --size: 800px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__header {
  padding: 0 100px;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form {
  display: flex;
  gap: 0 64px;
  padding: 2px 0 0;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul {
  display: flex;
  flex-grow: 1;
  gap: 12px 0;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li {
  position: relative;
  padding: 4px 0 4px 44px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li .bg-gradient-card {
  inset: unset;
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 100% 0 100% 100%;
  transform: translateY(-50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li .bg-gradient-card:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li.__info .bg-gradient-card:before {
  background-image: url(img/icon/info-v.svg);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li.__check .bg-gradient-card:before {
  background-image: url(img/icon/cabinet/check-v.svg);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > * > ul li.__not .bg-gradient-card:before {
  background-image: url(img/icon/cabinet/close-v.svg);
  background-size: 12px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate {
  gap: 32px 0;
  max-width: calc(38.014% - 32px);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form {
  gap: 24px 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form label {
  position: relative;
  padding: 0 70px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form label:after {
  pointer-events: none;
  position: absolute;
  content: attr(data-coin);
  top: 50%;
  right: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form .global-input {
  gap: 14px 0;
  padding: 3px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form .global-input > p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form .global-input input {
  padding: 16px 21px 16px 20px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form .btn-gradient {
  width: 100%;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate form .btn-gradient > * {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description {
  padding: 32px 32px 32px;
  max-width: calc(61.986% - 32px);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  padding: 0 0 21px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--header strong {
  width: 100%;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--header p {
  font-weight: 300;
  letter-spacing: -0.0095em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--header + .cabinet__calculate--info {
  gap: 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--header + .cabinet__calculate--info > span {
  padding: 0 0 9px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px 0;
  width: 100%;
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--info > p {
  width: 100%;
  font-size: 88px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > * {
  display: flex;
  align-self: stretch;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > * > span {
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > * > p {
  font-size: 32px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) {
  position: relative;
  flex-direction: column;
  gap: 4px 0;
  padding: 33px 0 21px 0;
  width: 50%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) > * {
  width: 100%;
  text-align: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):nth-child(2n+1) {
  padding-right: 49px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):nth-child(2n) {
  padding-left: 49px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):nth-child(2n):before {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--stroke-white-10);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):nth-child(-n+2):after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--stroke-white-10);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child {
  padding: 1px 0 0;
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child > span {
  padding: 11px 0 0;
  font-size: 16px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child > p {
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency {
  padding: 0 0 68px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency .custom-select__result {
  padding: 7px 40px 7px 8px;
  font-weight: 700;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency .custom-select__result > p .bg-gradient-card {
  position: relative;
  width: 40px;
  height: 40px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency .custom-select__result > p .bg-gradient-card > * {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: auto;
  transform: translate(-50%, -50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency > p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency ul .bg-gradient-card {
  position: relative;
  width: 40px;
  height: 40px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form .cabinet__table--filter-currency ul .bg-gradient-card > * {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: auto;
  transform: translate(-50%, -50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal {
  padding: 2px 0 6px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate {
  position: relative;
  padding: 32px 32px 32px;
  margin: 0 auto;
  max-width: 560px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form {
  gap: 4px 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .text-info {
  display: flex;
  padding: 13px 0 0;
  width: 100%;
  font-weight: 300;
  letter-spacing: -0.015em;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .text-info > p {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .text-info > p a {
  position: relative;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .text-info > p a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 4px);
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(141, 139, 254);
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .text-info > p a:hover:after {
  left: 100%;
  width: 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input {
  padding: 28px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input ~ .text-info {
  padding: 10px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .btn-paste {
  cursor: pointer;
  pointer-events: none;
  position: absolute;
  display: flex;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .btn-paste > * {
  pointer-events: all;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .btn-paste > * path {
  stroke: var(--transparent);
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .btn-paste > *:hover path {
  fill-opacity: 0;
  stroke: #7371FE;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul {
  padding: 30px 0 25px;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li {
  position: relative;
  padding: 4px 0 4px 44px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li .bg-gradient-card {
  inset: unset;
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 100% 0 100% 100%;
  transform: translateY(-50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li .bg-gradient-card:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li.__info .bg-gradient-card:before {
  background-image: url(img/icon/info-v.svg);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li.__check .bg-gradient-card:before {
  background-image: url(img/icon/cabinet/check-v.svg);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li.__not .bg-gradient-card:before {
  background-image: url(img/icon/cabinet/close-v.svg);
  background-size: 12px auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay {
  gap: 0 26px;
  padding: 2px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > *:not(div) {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > span {
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > div {
  display: flex;
  gap: 0 12px;
  padding: 0 0 2px;
  line-height: 1;
  font-size: 24px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > div > p {
  padding: 3px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > div.status-pay__info img,
.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > * > div.status-pay__info svg {
  animation: smoothRotate 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes smoothRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > *:first-child {
  max-width: calc(46.233% - 13px);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > *:last-child {
  max-width: calc(53.768% - 13px);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn {
  position: absolute;
  top: 50%;
  right: 40px;
  cursor: pointer;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: translateY(-50%);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn path {
  stroke: var(--transparent);
  transition: 0.3s all ease;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn:hover path {
  fill-opacity: 0.7;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn.copy-success {
  pointer-events: none;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn.copy-success path {
  fill-opacity: 0;
  stroke-width: 0.03em;
  stroke: #7371FE;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--link-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay {
  display: flex;
  gap: 0 24px;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay > * {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  font-weight: 300;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay > * > *:not(.bg-gradient-card) {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay > * .text-gradient {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__copy {
  flex-grow: 1;
  gap: 22px 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__copy > * {
  flex-grow: 1;
  gap: 14px 0;
  padding: 20px 40px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__copy > * > p {
  position: relative;
  padding: 4px 0 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr {
  position: relative;
  padding: 32px 32px 30px;
  max-width: 316px;
  gap: 17px 0;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr img,
.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr svg {
  max-width: 100%;
  height: auto;
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr--info {
  padding: 0 15%;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.015em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .container-btn {
  padding: 10px 0 7px;
  width: 100%;
  justify-content: center;
}

.page-cabinet .cabinet-branding {
  padding: 31px 0 4px;
}

.page-cabinet .cabinet-branding .cabinet__table {
  padding: 18px 32px 70px;
}

.page-cabinet .cabinet-branding .cabinet__table > * > * {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px 0;
  width: 100%;
  border-radius: 32px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-branding .cabinet__table > * > * > p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-branding .cabinet__table > * > *.cabinet__table--link {
  max-width: 700px;
}

.page-cabinet .cabinet-branding .cabinet__table > * > *.cabinet__table--link > * > p {
  max-width: 620px;
  white-space: nowrap;
}

.page-cabinet .cabinet-branding .cabinet__table > * > * > *:not(p) {
  position: relative;
  display: flex;
  padding: 8px 8px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.167;
  letter-spacing: -0.03em;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-branding .cabinet__table > * > * > *:not(p) > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .cabinet-branding .cabinet__table > * > * > *:not(p) > p {
  padding: 10px 12px 9px;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn {
  position: relative;
  cursor: pointer;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn path {
  stroke: var(--transparent);
  transition: 0.3s all ease;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn:hover path {
  fill-opacity: 1;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn.copy-success {
  pointer-events: none;
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn.copy-success path {
  fill-opacity: 0;
  stroke: var(--white);
}

.page-cabinet .cabinet-branding .cabinet__table--link-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.page-cabinet .cabinet-branding .cabinet__table--count {
  margin: 0 0 0 auto;
  max-width: 136px;
}

.page-cabinet .cabinet-branding .cabinet__table--invite {
  max-width: 277px;
}

.page-cabinet .cabinet-branding .cabinet__table--line.__refferal {
  gap: 0 17px;
  justify-content: space-between;
}

.page-cabinet .cabinet-merch {
  padding: 0 0 80px;
}

.page-cabinet .cabinet-task {
  position: relative;
  padding: 31px 0 36px;
}

.page-cabinet .cabinet-task .cabinet-task__content {
  position: relative;
  padding: 34px 32px 30px;
  width: 100%;
}

.page-cabinet .cabinet-task .cabinet-task__content h3,
.page-cabinet .cabinet-task .cabinet-task__content h2 {
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 32px;
  text-align: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer {
  gap: 12px 0;
  padding: 33px 0 0;
  transform: unset;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer > li {
  gap: 0;
  padding: 11px 12px 0 12px;
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer > * strong {
  font-size: 24px;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header > * {
  flex-shrink: 0;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header > span {
  right: 3px;
  top: 15px;
  background: unset;
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header > span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(img/icon/arow-violet.svg) center center no-repeat;
  background-size: 16px auto;
  transform: translate(-50%, -50%);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-info {
  display: flex;
  gap: 0 16px;
  max-width: 600px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-icon,
.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-icon img,
.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-icon svg,
.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin img,
.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin svg {
  position: relative;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-icon {
  width: 50px;
  height: 50px;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-score {
  display: flex;
  gap: 0 8px;
  padding: 0 24px 5px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-score > p {
  display: flex;
  gap: 0 4px;
  line-height: 1;
  font-size: 18px;
  color: #8D8BFE;
  text-transform: uppercase;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-score > p span {
  font-size: 32px;
  font-weight: 400;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin {
  display: flex;
  padding: 0 0 0 8px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 4px);
  left: 50%;
  width: calc(100% - 24px);
  height: 1px;
  background: rgba(255, 255, 255, 0);
  transform: translateX(-50%);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: unset;
  padding: 0 12px;
  font-size: 22px;
  font-weight: 300;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-text {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  max-width: 428px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info {
  position: relative;
  display: flex;
  padding: 13px 12px 12px 47px;
  margin: 32px 0 0;
  max-width: 428px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info > *:not(img, svg, .bg-gradient-card) {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info img,
.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info svg {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol {
  position: relative;
  display: flex;
  gap: 26px 0;
  padding: 4px 0 0;
  width: 100%;
  list-style: none;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li {
  position: relative;
  padding: 0 0 0 48px;
  counter-increment: item;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 5px);
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(141, 139, 254);
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li a:hover:after {
  left: 100%;
  width: 0;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  width: 2px;
  height: calc(100% + 26px);
  background: linear-gradient(14deg, rgb(171, 169, 254) 0%, rgb(115, 113, 254) 100%);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li:last-of-type:before {
  display: none;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol .btn-gradient {
  pointer-events: none;
  position: absolute;
  top: -4px;
  left: -1px;
  display: flex;
  padding: 0;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol .btn-gradient:before {
  position: absolute;
  content: counter(item);
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: var(--white);
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  max-width: 477px;
  width: 100%;
  font-size: 18px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other form {
  gap: 12px 0;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other form .container-btn {
  padding: 4px 0 0;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other form .container-btn > * {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description .show-popup__info {
  cursor: pointer;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description .show-popup__info:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(141, 139, 254);
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description .show-popup__info:hover:after {
  left: 100%;
  width: 0;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer .active {
  gap: 29px 0;
  padding: 11px 12px 12px 12px;
}

.page-cabinet .cabinet-task .cabinet-task__content .faq__answer .active .faq__answer--header:after {
  background: rgba(255, 255, 255, 0.1);
}

.page-cabinet .cabinet-transactions {
  padding: 31px 0 71px;
}

.page-cabinet .cabinet-transactions .cabinet__table {
  padding: 18px 32px 26px;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-btn {
  display: none;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-header {
  display: none;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form {
  flex-direction: unset;
  gap: 0 14px;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form > * {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  max-width: calc(25% - 15px);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form > * > p {
  font-size: 16px;
  font-weight: 300;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form > *.cabinet__table--filter-calendar {
  max-width: calc(50% - 20px);
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form > *:not(.cabinet__table--filter-calendar) {
  padding: 0 0 72px;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-content form .simplebar-track {
  bottom: 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input {
  display: flex;
  gap: 0 17px;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field {
  position: relative;
  display: flex;
  max-width: calc(50% - 9px);
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field label {
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 0 8px 0 20px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field label input {
  cursor: pointer;
  pointer-events: none;
  padding: 12px 0;
  width: 100%;
  height: 56px;
  letter-spacing: -0.03em;
  visibility: hidden;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field .global-input__placeholder {
  color: var(--white);
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field path {
  transition: 0.3s all linear;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field:hover path {
  fill-opacity: 0.7;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field.on-focus input {
  visibility: visible;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .field.on-focus .global-input__placeholder {
  color: var(--transparent);
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .icon-calendar {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-cabinet .cabinet-transactions .cabinet__table--filter-input .icon-calendar > * {
  margin: 0 20px 0 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions {
  padding: 26px 0 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header {
  display: flex;
  gap: 0 14px;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header > * {
  padding: 0 0 0 25px;
  max-width: calc(25% - 15px);
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-last-child(-n+2) {
  padding: 0 0 0 4px;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content {
  padding: 0;
  margin: 8px 0 0;
  border-radius: 32px;
  overflow: hidden;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer {
  gap: 0;
  padding: 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header {
  padding: 0 0 0 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header > *:not(span) {
  display: flex;
  gap: 0 12px;
  padding: 0 0 0 25px;
  max-width: calc(25% - 15px);
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header > *:not(span):nth-last-of-type(-n + 2) {
  padding: 0 0 0 4px;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header > *:not(span):last-of-type {
  padding: 0 50px 0 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header > span {
  top: 0;
  right: 19px;
  background: url(img/icon/arow-violet.svg) center center no-repeat;
  background-size: 11px auto;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header > span:after {
  display: none;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--header:after {
  display: none;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description {
  padding: 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description > * {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  padding: 0 0 0 25px;
  max-width: calc(25% - 15px);
  width: 100%;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description > * span {
  font-size: 16px;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description > *.faq__answer--socket {
  padding: 0 0 0 10px;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description > *.faq__answer--status {
  padding: 0;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer--description > *:first-of-type {
  max-width: calc(50% - 20px);
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer li {
  padding: 21px 0 19px;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer li:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.184) 50%, rgba(255, 255, 255, 0) 100%);
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .faq__answer li.active {
  padding: 21px 0 8px;
  background: rgba(217, 217, 217, 0.06);
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty {
  padding: 0;
  justify-content: center;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  padding: 72px 0 46px;
  max-width: 320px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions > p {
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon img,
.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon svg {
  position: relative;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon .bg-gradient-card {
  border-radius: 32px 0 32px 32px;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > *.simplebar-track {
  display: none;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * > .simplebar-placeholder {
  width: auto !important;
  height: auto !important;
  min-height: 94px !important;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * > .simplebar-mask {
  overflow: unset;
  z-index: auto;
}

.page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * > .simplebar-mask > * > .simplebar-content-wrapper {
  overflow: unset !important;
}

.page-cabinet .cabinet-transactions .cabinet__table .reviews__pagination {
  padding: 29px 0 0;
}

.page-cabinet .cabinet-motivation {
  padding: 31px 0 16px;
}

.page-cabinet .cabinet-motivation .motivation__content {
  position: relative;
  display: flex;
  gap: 32px 0;
  padding: 31px 32px 32px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--description {
  position: relative;
  display: flex;
  gap: 0 32px;
  width: 100%;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--description > * {
  flex-shrink: 0;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--account {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--account > p {
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--header {
  display: flex;
  gap: 0 14px;
  width: 100%;
  font-size: 32px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--header .btn-gradient {
  pointer-events: none;
  padding: 0;
  display: flex;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  font-weight: 400;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--header strong {
  padding: 6px 0 0;
  font-weight: 400;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  padding: 18px 33px 17px;
  letter-spacing: -0.03em;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance > span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white-60);
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance .text-gradient-violet {
  font-size: 32px;
}

.page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .cabinet-motivation .motivation__content--progress {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1px 0 0;
  gap: 10px 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--bar {
  position: relative;
  display: flex;
  padding: 8px 8px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--bar .btn-gradient {
  pointer-events: none;
  position: relative;
  padding: 16px 0;
}

.page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--description {
  display: flex;
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .cabinet-motivation .motivation__content--info {
  position: relative;
  display: flex;
  gap: 0 10px;
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .cabinet-motivation .motivation__content--info > * {
  flex-shrink: 0;
  max-width: 100%;
}

.page-cabinet.page-motivation .cabinet-branding {
  padding: 31px 0 0;
}

.page-cabinet.page-motivation .cabinet-task__content > .bg-gradient-card {
  display: none;
}

.page-cabinet.page-motivation .affiliate-system {
  padding: 4px 0 102px;
}

.page-cabinet.page-motivation .affiliate-system__content {
  position: relative;
  padding: 32px 32px;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--carousel {
  padding: 0;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--nav {
  margin: 0;
  width: 100%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--nav ul,
.page-cabinet.page-motivation .affiliate-system__content .global__types--nav .container-btn ul {
  justify-content: space-between;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--nav ul > *:not(.slider-btn),
.page-cabinet.page-motivation .affiliate-system__content .global__types--nav .container-btn ul > *:not(.slider-btn) {
  min-width: unset;
  max-width: 20%;
  width: 100%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container {
  padding: 0;
  margin: 31px 0 0;
  transform: unset;
  overflow: hidden;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table {
  gap: 40px 0;
  padding: 0;
  margin: -6px 0 0;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__info .cabinet__table--item {
  gap: 26px 0;
  height: 120px;
  font-size: 14px;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > * {
  padding: 0 0 0 24px;
  letter-spacing: -0.02em;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(2) {
  padding: 0 0 0 4.8%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(3) {
  padding: 0 0 0 7.1%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(4) {
  padding: 0 0 0 5.8%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer--header > *:not(span) {
  padding: 0 0 0 23px;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer--header > *:not(span).faq__answer--replenishment {
  padding: 0 0 0 4.8%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer--header > *:not(span).faq__answer--percent {
  padding: 0 0 0 7.1%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer--header > *:not(span).faq__answer--profit {
  padding: 0 0 0 5.8%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer li {
  padding: 25px 0 23px;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions .faq__answer li:after {
  top: 100%;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table--line.__transactions.__empty .not-transactions {
  padding: 32px 0 40px;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table .cabinet__table {
  gap: 24px 0;
  padding: 0 0 30px;
  letter-spacing: -0.04em;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table .cabinet__table > .bg-gradient-card {
  inset: unset;
  top: 33px;
  bottom: 0;
  right: 0;
  left: 0;
  height: calc(100% - 33px);
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table .cabinet__table--line {
  padding: 0;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet__table .cabinet__table .reviews__pagination {
  padding: 0;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--container .cabinet-task__content {
  margin: 7px 0 0;
  font-weight: 300;
}

.page-cabinet.page-motivation .affiliate-system__content .global__types--item {
  padding: 0;
}

.page-cabinet .custom-select {
  position: absolute;
  left: 0;
  top: calc(100% - 56px);
  display: flex;
  flex-direction: column;
  padding: 56px 0 0;
  width: 100%;
  max-height: 391px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  z-index: 5;
}

.page-cabinet .custom-select input {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.page-cabinet .custom-select__result {
  cursor: pointer;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  padding: 12px 40px 12px 20px;
  width: 100%;
  height: 56px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .custom-select__result > p {
  position: relative;
  display: flex;
  gap: 0 12px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.page-cabinet .custom-select__result:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: url(img/icon/arow-dropdown.svg) center center no-repeat;
  background-size: 14px auto;
  transform: rotate(0deg);
  transition: 0.3s all ease;
}

.page-cabinet .custom-select__dropdown {
  width: 100%;
  height: 0;
  border-radius: 0 0 32px 32px;
  transition: 0.3s all linear;
}

.page-cabinet .custom-select__dropdown ul {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .custom-select__dropdown ul li {
  cursor: pointer;
  display: flex;
  gap: 0 12px;
  padding: 10px 20px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  transition: 0.3s all linear;
}

.page-cabinet .custom-select__dropdown ul li:last-child {
  padding: 10px 20px 20px;
}

.page-cabinet .custom-select__dropdown ul li:hover {
  background: var(--bg-white-06);
}

.page-cabinet .custom-select.active .custom-select__dropdown {
  height: 335px;
}

.page-cabinet .custom-select.active .custom-select__result {
  color: var(--text-white-60);
}

.page-cabinet .custom-select.active .custom-select__result:after {
  transform: rotate(-90deg);
}

.page-cabinet .custom-select.show-up {
  top: auto;
  bottom: 0;
  padding: 0 0 56px;
}

.page-cabinet .custom-select.show-up .custom-select__result {
  top: auto;
  bottom: 0;
}

.page-cabinet .custom-select.show-up .custom-select__dropdown {
  border-radius: 32px 32px 0 0;
}

.page-cabinet .custom-select.show-up .custom-select__dropdown ul {
  flex-direction: column-reverse;
  padding: 0 0 10px;
}

.page-cabinet .custom-select.show-up .custom-select__dropdown ul li:last-child {
  padding: 20px 20px 10px;
}

.page-cabinet .merch__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  padding: 32px 32px;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .merch__content--item {
  position: relative;
  display: flex;
  max-width: calc(33.3333333333% - 16px);
  width: 100%;
  border-radius: 24px;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  z-index: 2;
}

.page-cabinet .merch__content--item picture {
  position: relative;
  display: flex;
  padding: 93.216% 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .merch__content--item picture > * {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  transition: 0.3s all linear;
}

.page-cabinet .merch__content--item .btn-gradient {
  position: absolute;
  bottom: 32px;
  max-width: 266px;
  width: 100%;
}

.page-cabinet .merch__content--item:nth-child(-n+2) {
  max-width: calc(50% - 12px);
}

.page-cabinet .merch__content--item:nth-child(-n+2) picture {
  padding: 100% 0 0;
}

.page-cabinet .merch__content--item:hover picture > * {
  transform: translate(-50%, -50%) scale(1.05);
}

.page-cabinet .timer-count {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 17px 0;
  padding: 2px 0 0 20px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .timer-count > p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.page-cabinet .timer__items {
  display: flex;
  gap: 0 8px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .timer__items .text-gradient {
  width: auto !important;
}

.page-cabinet .timer__items .cabinet__table--item {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  padding: 13px 0;
  max-width: 90px;
  width: 100%;
  line-height: 1;
  font-size: 32px;
  font-weight: 400;
}

.page-cabinet .timer__items .cabinet__table--item:first-child {
  display: none;
}

.page-cabinet .timer__items .cabinet__table--item:after {
  position: relative;
  margin: 0 auto;
  content: attr(data-text);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: var(--text-white-60);
}

.page-cabinet .timer__result {
  display: none !important;
}

.page-cabinet .crypto-market__predict {
  position: relative;
  padding: 32px 32px;
}

.page-cabinet .crypto-market__predict > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .crypto-market__predict .global__chart.error-up #fill-area {
  transform: translate(-3.63em, -5px) rotate(0.7deg) scale(1.1);
}

.page-cabinet .crypto-market__predict .global__chart.error-down #fill-area {
  transform: translate(0.1em, 4px) rotate(0.4deg);
}

.page-cabinet .crypto-market__predict .global__chart.success-up #fill-area {
  transform: translate(0.1em, 4px) rotate(0.4deg);
}

.page-cabinet .crypto-market__predict .global__chart.success-down #fill-area {
  transform: translate(-3.63em, -5px) rotate(0.7deg) scale(1.1);
}

.page-cabinet .crypto-market__predict .global__chart #point,
.page-cabinet .crypto-market__predict .global__chart #stroke-up,
.page-cabinet .crypto-market__predict .global__chart #dashed-up,
.page-cabinet .crypto-market__predict .global__chart #arround-up,
.page-cabinet .crypto-market__predict .global__chart #arrow-up {
  transform: translateY(12px);
}

.page-cabinet .crypto-market__predict .global__chart #stroke-down,
.page-cabinet .crypto-market__predict .global__chart #dashed-down,
.page-cabinet .crypto-market__predict .global__chart #arround-down,
.page-cabinet .crypto-market__predict .global__chart #arrow-down {
  transform: translateY(15px);
}

.page-cabinet .crypto-market__test {
  padding: 22px 23px 25px;
  align-self: stretch;
}

.page-cabinet .crypto-market__test h3 {
  font-size: 24px;
  line-height: 1.375;
}

.page-cabinet .popup {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.page-cabinet .popup .popup-close {
  cursor: pointer;
  position: absolute;
  display: flex;
  display: none;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 100%;
  z-index: 5;
}

.page-cabinet .popup .popup-close:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/icon/close.svg) center center no-repeat;
  background-size: 20px auto;
  transition: 0.3s all ease;
}

.page-cabinet .popup .popup-close:hover:after {
  transform: rotate(270deg);
}

.page-cabinet .popup > .bg-gradient-card {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 820px;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s all ease;
}

.page-cabinet .popup .cabinet__table--header {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 99px 32px 32px;
  width: 100%;
  z-index: 4;
}

.page-cabinet .popup .cabinet__table--header .bg-gradient-card {
  border-radius: 0 0 32px 32px;
}

.page-cabinet .popup .cabinet__table--header h3 {
  position: relative;
  font-size: 48px;
  text-align: left;
  line-height: 1.1;
  white-space: normal;
}

.page-cabinet .popup .cabinet__table--header:after {
  position: absolute;
  content: "";
  top: 22px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: url(img/icon/cabinet/questioning.svg) center center no-repeat;
  background-size: 47px 47px;
  transform: unset;
}

.page-cabinet .popup .cabinet__table--item.__grey {
  padding: 0;
  width: 100%;
}

.page-cabinet .popup .cabinet__table--show {
  width: 100%;
  white-space: normal;
}

.page-cabinet .popup .cabinet__table--show .wrapper {
  padding: 0;
}

.page-cabinet .popup .cabinet__table--show .wrapper h4 {
  padding: 0 0 0 38px;
  width: 100%;
  font-size: 32px;
  text-align: left;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-cabinet .popup .cabinet__table--show .wrapper *:not(h1, h2, h3, h4, span) {
  position: relative;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.325;
  color: var(--white);
}

.page-cabinet .popup .cabinet__table--show .wrapper span:first-child:before {
  left: -48px;
}

.page-cabinet .popup .cabinet__table--show .wrapper > ol {
  padding: 32px 30px 32px 27px;
}

.page-cabinet .popup .cabinet__table--show .wrapper > ol > li {
  padding-left: 0;
}

.page-cabinet .popup .cabinet__table--show .wrapper > ol > li > ol {
  gap: 2px 0;
  padding: 23px 0 0;
}

.page-cabinet .popup .cabinet__table--show .wrapper > ol > li > ol > li {
  padding-left: 5px;
  text-indent: 39px;
}

.page-cabinet .popup .cabinet__table--show .wrapper > ol > li > ol > li > p:first-child:before {
  position: absolute;
  content: counter(item) "." counter(subitem) ". ";
  left: -39px;
  width: 40px;
  font-weight: 300;
  text-align: right;
}

.page-cabinet .popup .cabinet__table--show .wrapper ol ul > *:before {
  content: "";
  right: auto;
  top: 12px;
  left: 0;
}

.page-cabinet .popup .cabinet__table--show picture {
  display: flex;
  margin: 47px 6px 0;
  max-width: 100%;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .popup .cabinet__table--show picture > * {
  max-width: 100%;
  width: auto;
  height: auto;
}

.page-cabinet .popup .btn-gradient-border {
  border-radius: 0;
}

.page-cabinet .popup-bg {
  width: 100%;
  height: 100%;
  background: var(--transparent);
  transition: 0.3s all ease;
}

.page-cabinet .popup__content {
  pointer-events: all;
  position: absolute;
  width: 100%;
  height: 100%;
}

.page-cabinet .popup__content--scroll {
  margin: 0;
  max-height: 100%;
  width: 100%;
}

.page-cabinet .popup:not(.show__task--info) .popup__content {
  top: 0;
  right: 0;
  max-width: 820px;
  transform: translateX(100%);
  transition: 0.3s all ease;
}

.page-cabinet .popup.active {
  z-index: 12;
}

.page-cabinet .popup.active > .bg-gradient-card {
  transform: translateX(0%);
}

.page-cabinet .popup.active .popup-bg {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.7);
}

.page-cabinet .popup.active .popup__content {
  transform: translateX(0%);
}

.page-cabinet .popup.active .popup-close {
  display: flex;
}

.page-cabinet .popup.active.show__task--info .popup__content {
  display: flex;
  top: 50%;
  left: 50%;
  right: auto;
  max-width: 635px;
  width: 100%;
  height: auto;
  max-height: 80%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .popup.active.show__task--info .task__item {
  display: flex;
}

.page-cabinet .custom-font:before {
  pointer-events: none;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 11;
}

.page-cabinet .custom-font.open-user-menu .header {
  z-index: auto;
}

.page-cabinet .custom-font.open-user-menu .header .wrapper-cabinet {
  z-index: auto;
}

.page-cabinet .custom-font.open-user-menu .header .header__btn .sing-up__cabinet {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.page-cabinet .custom-font.open-user-menu .header .header__btn .sing-up__cabinet:after {
  transform: rotate(0deg);
}

.page-cabinet .custom-font.open-user-menu .aside-cabinet {
  z-index: 10;
}

.page-cabinet .custom-font.open-user-menu .user-menu {
  display: flex;
  transform: translateX(0%);
}

.page-cabinet .custom-font.open-user-menu .sing-up__cabinet {
  z-index: 11;
}

.page-cabinet .custom-font.open-user-menu:before {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.7);
}

.page-cabinet .task__item {
  display: none;
  gap: 16px 0;
  padding: 48px 40px 40px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .task__item > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .task__item--header {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  width: 100%;
  font-size: 32px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-cabinet .task__item--header-icon {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.page-cabinet .task__item--header-icon .bg-gradient-card {
  border-radius: 100%;
}

.page-cabinet .task__item--header-icon > *:not(.bg-gradient-card) {
  position: relative;
}

.page-cabinet .task__item--header > p span {
  width: auto !important;
}

.page-cabinet .task__item--description {
  padding: 0 5%;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.03em;
}

.page-cabinet .task__item--description a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% - 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(141, 139, 254);
  transition: 0.3s all linear;
}

.page-cabinet .task__item--description a:hover:after {
  left: 100%;
  width: 0;
}

.page-cabinet .task__item--loader {
  display: flex;
  padding: 16px 0 0;
  width: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.user-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 100px;
  right: 12px;
  padding: 24px 24px;
  max-width: 462px;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 100px - 20px);
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  transform: translateX(calc(100% + 20px));
  transition: 0.3s all ease;
  z-index: 11;
}

.user-menu__header {
  display: flex;
  gap: 0 24px;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.user-menu__info {
  display: flex;
  gap: 2px 0;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu__info > span {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
}

.user-menu__info > p {
  font-size: 32px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.user-menu__deposit {
  width: 100%;
  font-size: 48px;
  letter-spacing: -0.03em;
}

.user-menu__deposit-toogle {
  cursor: pointer;
  position: absolute;
  display: flex;
  top: 43%;
  right: 0;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  transition: 0.3s all ease;
}

.user-menu__deposit-toogle:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(img/icon/arow-violet.svg) center center no-repeat;
  background-size: 14px auto;
  transform: rotate(90deg);
  transition: 0.3s all ease;
}

.user-menu__deposit-toogle.active:after {
  transform: rotate(0deg);
}

.user-menu__content {
  display: flex;
  flex-grow: 1;
  width: 100%;
  max-height: 100%;
}

.user-menu__promo {
  position: relative;
  display: flex;
  gap: 0 10px;
  padding: 16px 24px;
  width: 100%;
  font-weight: 700;
  border-radius: 700px;
  letter-spacing: -0.03em;
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  transition: 0.3s all ease;
}

.user-menu__promo > *:not(.bg-gradient-card) {
  position: relative;
}

.user-menu__promo:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0.7);
}

.user-menu__coin {
  display: flex;
  flex-direction: column;
  padding: 22px 0 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu__coin > strong {
  padding: 0 0 20px;
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.user-menu__coin--list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu__coin--list li {
  display: flex;
  width: 100%;
  gap: 0 20px;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.user-menu__coin--icon {
  display: flex;
  gap: 0 12px;
  font-size: 24px;
  color: var(--white);
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.user-menu__coin--icon > p {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.user-menu__coin--icon > p > *:not(.bg-gradient-card) {
  position: relative;
  max-width: 32px;
  width: auto;
  height: auto;
}

.user-menu .global-feedback .message.feedback-error {
  display: flex;
  gap: 0 24px;
  padding: 20px 20px;
  margin: -2px 0 20px;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu .global-feedback .message.feedback-error .container-btn {
  gap: 12px 0;
  max-width: 165px;
  width: 100%;
}

.user-menu .global-feedback .message.feedback-error > strong {
  max-width: 185px;
  width: 100%;
}

.user-menu .global-feedback .message.feedback-error > strong .bg-gradient-card {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.user-menu .global-feedback .message.feedback-error > strong .bg-gradient-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/icon/cabinet/privacy.svg) center center no-repeat;
  background-size: 24px auto;
  z-index: 3;
}

.user-menu .global-feedback .message.feedback-error > strong > p {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
  font-size: 24px;
  letter-spacing: -0.03em;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu .global-feedback .message.feedback-error > * {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}

.user-menu .global-feedback .message.feedback-error > * > *:not(.bg-gradient-card):before {
  display: none;
}

.user-menu .global-feedback .message.feedback-error > * > *:not(.bg-gradient-card).btn-gradient-border {
  padding: 18px 28px 19px;
  width: 100%;
}

.user-menu .simplebar-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu .simplebar-content > .container-btn {
  width: 100%;
}

.user-menu .simplebar-track {
  right: -20px;
}

.user-menu .cabinet-statistics {
  position: relative;
  padding: 0 0 18px;
  margin: 19px 0 22px;
}

.user-menu .cabinet-statistics .cabinet__table {
  gap: 15px 0;
  padding: 22px 20px 0;
  height: auto;
  max-height: 269px;
  transition: 0.3s height ease;
}

.user-menu .cabinet-statistics .cabinet__table--line:not(.__chart) {
  position: relative;
  display: flex;
  padding: 0 30px 0 0;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.user-menu .cabinet-statistics .cabinet__table--line:not(.__chart) > span {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-white-60);
}

.user-menu .cabinet-statistics .cabinet__table--line.__chart {
  display: none;
  gap: 0 8px;
}

.user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item {
  max-width: calc(16.6666666667% - 7px);
  height: 100px;
}

.user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .btn-gradient {
  padding: 2px 0;
  min-height: 4px;
}

.user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent {
  bottom: auto;
  top: calc(100% + 14px);
}

.user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent > * {
  font-size: 16px;
}

.user-menu .cabinet-statistics .cabinet__table.__show {
  padding: 22px 20px 43px;
  transition: 0.3s height ease;
}

.user-menu .cabinet-statistics .container-btn {
  position: relative;
  padding: 15px 20px 0;
  gap: 0 12px;
  width: 100%;
  justify-content: space-between;
}

.user-menu .cabinet-statistics .container-btn .btn-gradient-border {
  max-width: 155px;
  width: 100%;
}

.user-menu .cabinet-statistics .container-btn .btn-gradient-border > * {
  margin: 0 auto;
}

.user-menu .cabinet-statistics .container-btn .btn-gradient {
  flex-grow: 1;
}

.user-menu .cabinet-statistics .container-btn .btn-gradient > * {
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .page-cabinet .cabinet-support li {
    transition: 0.3s all;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table {
    padding: 22px 20px 0;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table.__show {
    padding: 22px 20px 43px;
  }
  .page-cabinet .cabinet__table {
    padding: 24px 24px;
  }
  .page-cabinet .cabinet__table--finance {
    align-self: stretch;
  }
  .page-cabinet .cabinet__table--finance > * {
    justify-content: center;
    align-self: stretch;
  }
  .page-cabinet .cabinet__table--info {
    flex-wrap: wrap;
    gap: 16px 16px;
    margin: 0 0 0 16px;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey {
    flex-direction: unset;
    gap: 0 16px;
    flex-grow: 1;
    padding: 15px 24px;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) > * {
    font-size: 24px;
  }
  .page-cabinet .cabinet__table--info .timer-count {
    flex-direction: unset;
    gap: 0 16px;
    padding: 0;
    width: 100%;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet__table--info .timer-count > * {
    flex-shrink: 0;
  }
  .page-cabinet .cabinet__table--info .timer__items {
    flex-grow: 1;
    gap: 0 16px;
  }
  .page-cabinet .cabinet__table--info .timer__items > * {
    flex-direction: unset;
    gap: 0 8px;
    padding: 15px 16px;
    font-size: 24px;
    max-width: calc(33.3333333333% - 12px);
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet__table--info .timer__items > * > *:not(:first-child) {
    margin: 0;
  }
  .page-cabinet .cabinet__table--info .timer__items > *:nth-child(1):after {
    content: "д.";
  }
  .page-cabinet .cabinet__table--info .timer__items > *:nth-child(2):after {
    content: "ч.";
  }
  .page-cabinet .cabinet__table--info .timer__items > *:nth-child(3):after {
    content: "м.";
  }
  .page-cabinet .cabinet__table--info .timer__items > *:nth-child(4):after {
    content: "с.";
  }
  .page-cabinet .cabinet__table--info .timer__items > *:after {
    margin: 0;
    color: var(--white);
    align-self: flex-end;
  }
  .page-cabinet .cabinet__table-type {
    top: auto;
    right: 24px;
    bottom: calc(100% + 16px);
  }
  .page-cabinet .cabinet__table .faq__answer--id > p {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .page-cabinet .cabinet-statistics .cabinet__table {
    padding: 24px 24px 62px;
  }
  .page-cabinet .cabinet-branding .cabinet__table--invite {
    max-width: 225px;
  }
  .page-cabinet .cabinet-branding .cabinet__table > * > *.cabinet__table--link {
    max-width: 541px;
  }
  .page-cabinet .cabinet-branding .cabinet__table > * > *.cabinet__table--link > * > p {
    max-width: unset;
    flex-grow: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .page-cabinet .cabinet-branding .cabinet__table .cabinet__table--link-btn {
    flex-shrink: 0;
  }
  .page-cabinet .wrapper-cabinet .wrapper {
    max-width: 1024px;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__predict {
    flex-direction: column;
    padding: 24px 24px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test {
    flex-direction: unset;
    gap: 0 24px;
    width: 100%;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test > *:not(.bg-gradient-card) {
    width: calc(33.3333333333% - 16px);
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test > *:not(.bg-gradient-card).container-btn {
    gap: 0 24px;
    flex-direction: unset;
    width: calc(100% - (33.3333333333% - 16px));
  }
  .page-cabinet .wrapper-cabinet .global__chart {
    width: 100%;
  }
  .page-cabinet .wrapper-cabinet .global__chart > * {
    width: 100%;
    height: auto;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr {
    max-width: 240px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr--info {
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay > * .text-gradient {
    font-size: 24px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header:after {
    top: calc(100% + 5px);
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other {
    max-width: 370px;
  }
  .wrapper-cabinet .wrapper {
    transition: 0.3s all;
  }
  .wrapper-cabinet .wrapper section > h1,
  .wrapper-cabinet .wrapper section > h2 {
    margin: 0 0 -26px;
    font-size: 72px;
  }
  .custom-font.open-menu.active .wrapper-cabinet .wrapper {
    transform: translateX(130px);
  }
  .custom-font.open-menu.active .cabinet-support li {
    transform: translateY(130px);
  }
  .page-cabinet .settings__password form,
  .page-cabinet .settings__personal form {
    flex-wrap: wrap;
    gap: 60px 20px;
  }
  .page-cabinet .settings__password form > *:not(.bg-gradient-card),
  .page-cabinet .settings__personal form > *:not(.bg-gradient-card) {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 1499px) {
  .wrapper-cabinet .wrapper {
    max-width: 1180px;
  }
}
@media (max-width: 1365px) {
  .decoration-picture {
    min-height: unset;
    overflow: unset;
  }
  .decoration-picture picture > * {
    max-width: 100%;
    height: auto;
  }
  .statistics .decoration-picture {
    transform: translate(-50%, -470px);
    overflow: unset;
  }
  .crypto-market .decoration-picture {
    transform: translate(-50%, -195px);
    overflow: unset;
  }
  .affiliate-system .decoration-picture {
    transform: translateY(550px);
  }
  .help .decoration-picture {
    transform: translateY(-75px);
  }
  .base .reviews__list {
    padding: 24px 24px;
    max-width: calc(100% - 320px - 32px);
  }
  .base .reviews__list .wrapper h2 {
    font-size: 42px;
  }
  .base .reviews__list .wrapper > ol {
    gap: 32px 0;
  }
  .base .reviews__list .wrapper > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
    left: -56px;
  }
  .base .reviews__list .wrapper > ol h3 .text-gradient {
    padding: 0 0 0 5px;
  }
  .base .reviews__list .wrapper ol > li > ol {
    padding: 12px 0 0;
  }
  .base .reviews__list--other-address *:not(img, svg) {
    font-size: 18px;
  }
  .base .global-aside {
    padding: 24px 0;
  }
  .base .global-aside h2 {
    padding: 0 24px 24px;
    font-size: 24px;
  }
  .base .global-aside ul .simplebar-content {
    gap: 16px 0;
  }
  .base .global-aside ul a {
    padding: 5px 0;
    font-size: 18px;
  }
  .base .global-aside ul a .text-gradient {
    width: 100% !important;
  }
  .base .reviews__pagination {
    max-width: calc(100% - 320px - 32px);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey strong.text-gradient {
    font-size: 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form > *.cabinet__calculate--description .cabinet__calculate--info > p {
    font-size: 72px;
  }
}
@media (max-width: 1279px) {
  body {
    font-size: 16px;
    letter-spacing: 0;
  }
  h1,
  h2,
  h3 {
    letter-spacing: 0;
  }
  h2 {
    font-size: 76px;
  }
  h3 {
    font-size: 24px;
  }
  .decoration-picture {
    min-height: unset;
  }
  .decoration-picture picture > * {
    max-width: 100%;
    height: auto;
  }
  .section-header > *:not(h1, h2, h3) {
    font-size: 18px;
    letter-spacing: 0;
  }
  .btn-gradient-border,
  .btn-gradient {
    padding: 15px 40px;
    letter-spacing: 0;
  }
  .btn-gradient-border.btn-green img,
  .btn-gradient-border.btn-green svg,
  .btn-gradient.btn-green img,
  .btn-gradient.btn-green svg {
    width: 12px;
    height: auto;
    transform: rotate(4deg) translateY(2px);
  }
  .btn-gradient-border.btn-red img,
  .btn-gradient-border.btn-red svg,
  .btn-gradient.btn-red img,
  .btn-gradient.btn-red svg {
    width: 12px;
    height: auto;
    transform: rotate(94deg) translate(1px, 0px);
  }
  .global__chart {
    order: 2;
    width: 100%;
  }
  .global__chart > * {
    width: 100%;
    height: auto;
  }
  .global__item--header > p {
    font-size: 56px;
    letter-spacing: 0;
  }
  .global__item--description .container-btn .info-closure .global-info__description {
    right: -35px;
  }
  .global__growth--value {
    font-size: 18px;
    letter-spacing: 0;
  }
  .global__growth--description {
    letter-spacing: 0;
  }
  .global__growth > *:not(.bg-gradient-card).global__growth--description {
    padding: 3px 0 10px 45px;
  }
  .global-info__description {
    right: -21px;
  }
  .global-info__description:before {
    background: url(img/bg/bg-description.svg) right -76px top no-repeat;
  }
  .global-input,
  .global-textarea {
    font-size: 16px;
  }
  .global-input input,
  .global-input textarea,
  .global-textarea input,
  .global-textarea textarea {
    letter-spacing: 0;
  }
  .global-feedback.feedback-list.position-over.size-large .message picture img,
  .global-feedback.feedback-list.position-over.size-large .message picture svg {
    width: auto;
    height: 120px;
  }
  .main__coin picture {
    max-width: 100%;
    width: 100%;
  }
  .main__coin picture > * {
    max-width: 100%;
    height: auto;
  }
  .main__info {
    width: 56.812%;
  }
  .main__info h1 {
    letter-spacing: 0;
  }
  .main__info h1 b {
    padding: 16px 42px 22px;
    font-size: 66px;
    letter-spacing: 0;
  }
  .main__info h1 b > span {
    padding: 0 5px 0 0;
  }
  .main__info h1 b img,
  .main__info h1 b svg {
    /* transform: rotate(4deg) translateY(3px); */
    transform: rotate(4deg) translateY(-7%);
  }
  .main__info > p {
    font-size: 20px;
    letter-spacing: 0;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide {
    max-width: calc(25% - 10px);
  }
  .card__slider .swiper-container.statistics-slider .slide__content {
    padding: 15px;
    min-height: 235px;
  }
  .card__slider .swiper-container.statistics-slider .slide__content svg,
  .card__slider .swiper-container.statistics-slider .slide__content img {
    max-width: 100%;
    height: auto;
  }
  .card__slider .swiper-wrapper {
    min-height: 350px;
  }
  .produce {
    padding: 70px 0 0;
  }
  .produce .section-header {
    gap: 0 20px;
  }
  .produce .section-header h2,
  .produce .section-header > *:not(h2) {
    flex-shrink: 0;
    flex-grow: 1;
    padding: 0;
    max-width: unset;
    width: auto;
  }
  .produce__cards {
    transform: translateY(-24px);
  }
  .produce__cards--item .container-btn .btn-gradient {
    padding: 15px 40px;
  }
  .about {
    padding: 110px 0;
  }
  .about .decoration-picture {
    overflow: unset;
  }
  .investments__info {
    width: calc(60% - 20px);
    z-index: 5 !important;
  }
  .investments__calculator {
    width: 40%;
  }
  .investments__calculator--description > p > b {
    font-size: 64px;
    letter-spacing: 0;
  }
  .statistics {
    padding: 30px 0 70px;
  }
  .statistics .decoration-picture {
    transform: translate(-50%, -265px);
    overflow: unset;
  }
  .statistics__description--month {
    margin: -30px 13.6363636364% 0 auto;
    min-width: 545px;
    font-size: 18px;
  }
  .statistics__description--month > *:not(.bg-gradient-card) {
    letter-spacing: 0;
  }
  .statistics__description--month b {
    font-size: 84px;
    letter-spacing: 0;
  }
  .statistics__description--details > * {
    font-size: 18px;
    letter-spacing: 0;
  }
  .statistics__description--details > * b {
    font-size: 38px;
    letter-spacing: 0;
  }
  .crypto-market {
    padding: 100px 0 70px;
  }
  .crypto-market .decoration-picture {
    transform: translate(-50%, -110px);
  }
  .crypto-market .section-header {
    gap: 15px 0;
  }
  .crypto-market .section-header > *:not(h2) {
    max-width: 720px;
    font-size: 18px;
    letter-spacing: 0;
  }
  .crypto-market__predict {
    justify-content: flex-start;
    flex-direction: column;
  }
  .crypto-market__test {
    gap: 30px 0;
    width: 100%;
  }
  .crypto-market__test h3 {
    font-size: 34px;
    text-align: center;
  }
  .crypto-market__test .container-btn {
    flex-direction: unset;
    gap: 0 20px;
    justify-content: space-between;
  }
  .affiliate-system {
    padding: 70px 0;
  }
  .affiliate-system h2 {
    font-size: 76px;
  }
  .affiliate-system__content .global__item--header h3 {
    font-size: 48px;
  }
  .affiliate-system__content .global__item--header > *:not(h3) {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--text-white-60);
    transform: unset;
  }
  .affiliate-system__content .global__types--item .item-decoration picture > * {
    max-width: 355px;
    height: auto;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description {
    width: 70%;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li {
    max-width: calc(33.3333333333% - 6px);
  }
  .affiliate-system__content .global__types--item:nth-child(4) .item-decoration {
    top: 41%;
    transform: unset;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li {
    max-width: calc(20% - 7px);
  }
  .faq__answer {
    transform: translateY(-30px);
  }
  .faq__answer > * strong {
    font-size: 28px;
    letter-spacing: 0;
  }
  .faq__answer--description {
    font-size: 18px;
    letter-spacing: 0;
  }
  .help .decoration-picture {
    transform: translateY(60px);
  }
  .footer .wrapper > *:not(.footer__info) {
    font-size: 16px;
    letter-spacing: 0;
  }
  .footer__address {
    max-width: 260px;
  }
  .footer__nav {
    gap: 0 50px;
    max-width: 450px;
  }
  .footer__nav ul {
    gap: 21px 0;
  }
  .footer__lang-copyright {
    max-width: 245px;
  }
  .privacy .wrapper h1 {
    letter-spacing: 0;
  }
  .privacy .wrapper *:not(h1, h2, h3, span) {
    letter-spacing: 0;
  }
  .reviews .wrapper {
    gap: 0 30px;
  }
  .reviews__content {
    max-width: calc(100% - 450px - 30px);
  }
  .economy picture > * {
    max-width: 100%;
    height: auto;
  }
  .page-cabinet .custom-font.open-menu .header {
    z-index: 10000;
  }
  .page-cabinet .custom-font.open-menu .header .btn-menu p:after {
    right: calc(100% - 5px);
  }
  .page-cabinet .custom-font.open-menu .wrapper-cabinet .wrapper {
    transform: unset;
  }
  .page-cabinet .custom-font.open-menu .cabinet-support li {
    transform: unset;
  }
  .page-cabinet .custom-font.open-menu .aside-cabinet .nav-menu {
    padding: 12px;
    left: calc(100% - 231px - 20px);
  }
  .page-cabinet .custom-font.open-menu .aside-cabinet .nav-menu__content .menu-list > ul li {
    padding: 12px 23px 12px 11px;
  }
  .page-cabinet .custom-font.open-menu .aside-cabinet .nav-menu__content .menu-list > ul li a {
    gap: 0 25px;
  }
  .page-cabinet .custom-font.open-menu:before {
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
  }
  .page-cabinet .global__chart {
    order: inherit;
  }
  .page-cabinet .cabinet-support a span:after {
    letter-spacing: 0;
  }
  .page-cabinet .header-cabinet__finance {
    gap: 0 16px;
  }
  .page-cabinet .header .btn-menu {
    display: inline-block;
    width: 64px;
    height: 64px;
  }
  .page-cabinet .header .btn-menu .bg-gradient-card {
    display: none;
  }
  .page-cabinet .header .btn-menu p {
    width: 26px;
    height: 24px;
    border-radius: 7px;
  }
  .page-cabinet .header .btn-menu p:after {
    right: 3px;
    height: 15px;
  }
  .page-cabinet .header .header__btn {
    margin: 0;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet {
    padding: 8px 8px 8px 10px;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet--avatar {
    margin: 0 8px 0 0;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet > p {
    display: none;
  }
  .page-cabinet .header .header__btn .lang {
    top: 0;
  }
  .page-cabinet .header .header__btn .lang__active {
    padding: 20px 20px;
  }
  .page-cabinet .header .header__btn .lang__active--result > * {
    padding: 0;
  }
  .page-cabinet .header .header__btn .lang__active--result > * > p,
  .page-cabinet .header .header__btn .lang__active--result > * > span {
    display: none;
  }
  .page-cabinet .header .header__btn .lang__list li a {
    justify-content: center;
  }
  .page-cabinet .header .header__btn .lang__list li a span {
    display: none;
  }
  .page-cabinet .header .header__btn .lang__list li:last-child a {
    padding: 9px 12px 18px;
  }
  .page-cabinet .aside-cabinet {
    order: 3;
    z-index: 10000;
  }
  .page-cabinet .aside-cabinet .btn-menu,
  .page-cabinet .aside-cabinet .logo {
    display: none;
  }
  .page-cabinet .aside-cabinet .nav-menu {
    left: 100%;
    padding: 12px;
    width: 231px;
    max-height: 100%;
    border-radius: 32px;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list {
    padding: 0;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul {
    font-size: 18px;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li {
    padding: 12px 23px 12px 11px;
    width: 100%;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a {
    font-size: 18px;
    letter-spacing: 0;
    justify-content: flex-end;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p {
    order: 2;
    width: 24px;
    height: 24px;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p img,
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a p svg {
    max-width: 24px;
    width: auto;
    height: auto;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a span:after {
    letter-spacing: 0;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul:first-of-type {
    padding: 0;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul:first-of-type:after {
    display: none;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-text {
    max-width: 480px;
  }
}
@media (max-width: 1139px) {
  .global-feedback.feedback-list.position-over.size-large > *.message.remove-item {
    padding: 0;
  }
  .global-feedback.feedback-list.position-over.size-large > *.message.remove-item .close-feedback {
    right: 10px;
    top: 10px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth {
    gap: 0 40px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth--group .container-btn {
    margin: 0 30px 0 0;
  }
}
@media (max-width: 1023px) {
  body .nav-menu__content .menu-list > ul {
    gap: 20px 0;
    font-size: 28px;
  }
  h2 {
    font-size: 56px;
  }
  .wrapper {
    max-width: 800px;
  }
  .btn-gradient-border,
  .btn-gradient {
    padding: 14px 15px 15px;
    letter-spacing: 0;
  }
  .global__types--carousel {
    gap: 0;
  }
  .global__types--carousel > .bg-gradient-card {
    display: inline-block;
    inset: 46px 0 0;
    transition-duration: calc(var(--aos-duration) * 3);
    transition-delay: var(--aos-delay);
    opacity: 0;
  }
  .global__types--item {
    padding: 20px 20px;
  }
  .global__item--header {
    padding: 0 0 20px;
  }
  .global__item--header > P {
    line-height: 1;
  }
  .global__item--header > span {
    padding: 0 21px 5px 15px;
  }
  .global__item--description {
    padding: 0;
  }
  .global__item--description .global-info__description {
    top: auto;
    bottom: calc(100% + 24px);
  }
  .global__item--description .global-info__description:before {
    bottom: auto;
    top: calc(100% - 3px);
    right: 22px;
    width: calc(100% - 44px);
    background: url(img/bg/bg-description.svg) right -81px top no-repeat;
    transform: scale(1, -1);
    opacity: 0.65;
  }
  .global__item--description .global-info__description:after {
    display: none;
    top: 0.076rem;
    width: calc(100% - 40px);
  }
  .global__item--description .global-info__description--overflow {
    top: 0;
    height: calc(100% - 1px);
  }
  .global__item--description .global-info__description--overflow .bg-gradient-card {
    top: 0;
    bottom: auto;
    height: 100%;
  }
  .global__item--description .global-info__description--overflow .bg-gradient-card:after {
    padding: 1px 2px 0 2px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth--group {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px 0;
    padding: 20px 40px 20px 0;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth--group .container-btn {
    margin: 0 auto;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth--description {
    padding: 0;
    max-width: unset;
    width: 100%;
    font-size: 18px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth--description br {
    display: none;
  }
  .card__slider .swiper-wrapper {
    flex-wrap: wrap;
    min-height: 620px;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide {
    max-width: calc(50% - 10px);
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide:nth-child(-n+2) {
    order: 2;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide:nth-child(-n+1) {
    order: 3;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide.statistics-audience {
    transform: translateY(2.305625rem);
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide.marketing-campaigns {
    transform: translateY(4.870625rem);
  }
  .card__slider .swiper-container.statistics-slider .slide__content {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 283px;
  }
  .card__slider .swiper-container.statistics-slider .slide__content > *:not(.bg-gradient-card) {
    justify-content: center;
  }
  .header .wrapper > .header__social {
    display: none;
  }
  .main__info {
    gap: 0;
  }
  .main__info h1 {
    font-size: 46px;
  }
  .main__info h1 b {
    padding: 10px 25px;
    font-size: 46px;
  }
  .main__info h1 b img,
  .main__info h1 b svg {
    width: 16px;
    height: auto;
    /* transform: rotate(4deg) translateY(1px); */
    transform: rotate(4deg) translateY(-40%);
  }
  .main__info > p {
    font-size: 18px;
    letter-spacing: 0;
  }
  .main__info .container-btn {
    padding: 30px 0 0;
  }
  .main__info .container-btn .btn-gradient-border,
  .main__info .container-btn .btn-gradient {
    padding: 14px 15px 15px;
    flex-grow: 1;
  }
  .main__cards {
    gap: 60px 0;
    padding: 100px 0 0;
  }
  .produce {
    padding: 80px 0 0;
  }
  .produce__cards {
    flex-wrap: wrap;
    gap: 20px 20px;
    transform: translateY(-15px);
  }
  .produce__cards--item {
    padding: 20px;
    width: calc(50% - 10px);
    font-size: 14px;
  }
  .produce__cards--item:nth-child(3n) {
    width: 100%;
  }
  .produce__info--logo > * {
    width: 48px;
    height: auto;
  }
  .about .section-header h2 {
    font-size: 56px;
  }
  .investments .wrapper {
    flex-wrap: wrap;
    gap: 20px 20px;
  }
  .investments .wrapper [data-aos-animate].aos-animate > * > .bg-gradient-card,
  .investments .wrapper [data-aos-animate].animate > * > .bg-gradient-card,
  .investments .wrapper .aos-init[data-aos-animate].aos-animate > * > .bg-gradient-card,
  .investments .wrapper .aos-init[data-aos-animate].animate > * > .bg-gradient-card,
  .investments .wrapper [data-aos=animate-item].aos-animate > * > .bg-gradient-card,
  .investments .wrapper [data-aos=animate-item].animate > * > .bg-gradient-card {
    opacity: 1;
  }
  .investments__types .global__types--nav {
    padding: 0 20px;
  }
  .investments__info {
    width: 100%;
  }
  .investments__calculator {
    flex-direction: unset;
    gap: 0 20px;
    width: 100%;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description {
    width: calc(60% - 10px);
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form {
    padding: 0;
    width: calc(40% - 10px);
    letter-spacing: 0;
    align-self: stretch;
  }
  .investments__calculator--description {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .investments__calculator--description > p > b {
    line-height: 1;
    font-size: 48px;
  }
  .investments__calculator--description ul.custom,
  .investments__calculator--description ol.custom {
    margin: 0;
    border-bottom: unset;
  }
  .investments__calculator--form .container-btn {
    flex-grow: 1;
  }
  .investments__calculator--form .container-btn .btn-gradient {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    align-self: flex-end;
  }
  .investments__calculator--form .container-btn .btn-gradient span {
    display: inline;
  }
  .statistics {
    padding: 70px 0;
  }
  .statistics__description {
    gap: 45px 0;
  }
  .statistics__description--details {
    flex-wrap: wrap;
    gap: 45px 20px;
  }
  .statistics__description--details > * {
    width: calc(50% - 10px);
  }
  .statistics__description--month {
    margin: -20px 13.6363636364% 0 auto;
    min-width: 520px;
  }
  .statistics__description--month b {
    font-size: 76px;
  }
  .statistics__description--month p:last-of-type img,
  .statistics__description--month p:last-of-type svg {
    width: 24px;
    height: auto;
  }
  .statistics .global__types--carousel {
    gap: 20px 0;
    padding: 100px 0 0;
  }
  .crypto-market .section-header > *:not(h2) {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
  .crypto-market__content {
    padding: 20px 20px;
  }
  .crypto-market__test h3 {
    font-size: 28px;
  }
  .affiliate-system h2 {
    font-size: 56px;
  }
  .affiliate-system .decoration-picture {
    transform: translateY(650px);
  }
  .affiliate-system__content {
    padding: 10px 0 0;
  }
  .affiliate-system__content .global__types--nav ul > *:not(.slider-btn),
  .affiliate-system__content .global__types--nav .container-btn ul > *:not(.slider-btn) {
    min-width: 200px;
    padding: 9px 20px;
  }
  .affiliate-system__content .global__types--container {
    padding: 35px 20px 0;
  }
  .affiliate-system__content .global__types--item {
    padding: 35px 20px 0;
  }
  .affiliate-system__content .global__types--item .item-decoration picture > * {
    max-width: 200px;
  }
  .affiliate-system__content .global__types--item .item-decoration .bg-gradient-blur {
    width: 250px;
    height: 250px;
  }
  .affiliate-system__content .global__types--item:nth-child(2) .item-decoration {
    right: -20px;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description {
    width: 75%;
    max-width: 520px;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .item-decoration {
    top: auto;
    bottom: 0;
    right: -40px;
  }
  .affiliate-system__content .global__item--description > ul {
    gap: 0 10px;
  }
  .affiliate-system__content .global__item--description > ul li {
    max-width: calc(20% - 8px);
  }
  .affiliate-system__content .global__item--description > ul li > p,
  .affiliate-system__content .global__item--description > ul li > span {
    font-size: 14px;
  }
  .affiliate-system__content .global__item--description .container-btn {
    padding: 20px 0;
  }
  .affiliate-system__content .global__item--description .container-btn > * {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    align-self: stretch;
  }
  .affiliate-system__content .global__item--description .container-btn > * .btn-gradient,
  .affiliate-system__content .global__item--description .container-btn > * .btn-gradient-border {
    padding: 15px 25px;
    min-width: 220px;
  }
  .affiliate-system__content .global__item--header {
    gap: 10px 0;
  }
  .affiliate-system__content .global__item--header h3 {
    font-size: 42px;
  }
  .affiliate-system__content .global__item--header > *:not(h3) {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
  .faq {
    padding: 50px 0;
  }
  .faq__answer {
    transform: translateY(-20px);
  }
  .faq__answer > * {
    padding: 25px 25px 14px;
  }
  .faq__answer > * strong {
    font-size: 24px;
  }
  .faq__answer > *.active {
    padding: 25px 25px;
  }
  .faq__answer--header {
    padding: 0 40px 8px 0;
  }
  .faq__answer--header > span {
    background-size: 15px auto;
  }
  .help {
    padding: 30px 0 0;
  }
  .help .decoration-picture {
    transform: translateY(125px);
  }
  .help .wrapper {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .help__info {
    padding: 0 0 30px;
  }
  .help__form {
    max-width: unset;
  }
  .help__form form {
    padding: 20px 20px;
  }
  .help__form form > *:not(.bg-gradient-card) {
    width: calc(50% - 10px);
  }
  .help__form form .container-scroll {
    position: absolute;
    inset: unset;
    top: 20px;
    right: 20px;
    width: calc(50% - 30px);
    height: calc(100% - 40px);
  }
  .help__form form .btn-gradient-border,
  .help__form form .btn-gradient {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
  }
  .help__form .container-btn {
    padding: 0;
  }
  .footer .wrapper {
    flex-wrap: wrap;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-direction: unset;
    gap: 20px 40px;
    padding: 0 0 40px;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address p {
    text-align: right;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address p br:first-of-type {
    display: none;
  }
  .footer__info {
    transform: translateY(-105px);
  }
  .footer__address {
    max-width: unset;
  }
  .privacy .wrapper {
    font-size: 18px;
  }
  .privacy .wrapper h1 {
    font-size: 56px;
  }
  .reviews .wrapper {
    flex-wrap: wrap;
    gap: 0 30px;
  }
  .reviews__content {
    max-width: 100%;
  }
  .reviews .global-aside {
    position: relative;
    top: auto;
    right: auto;
    padding: 20px;
    max-width: 100%;
  }
  .reviews .global-aside h2,
  .reviews .global-aside h3 {
    padding: 0;
  }
  .reviews .global-aside form {
    gap: 20px 20px;
  }
  .reviews .global-aside form .reviews__item--picture {
    order: 2;
    gap: 20px 20px;
    padding: 0;
    width: calc(50% - 10px);
    justify-content: flex-start;
  }
  .reviews .global-aside form .reviews__item--picture .remove-item {
    margin: 20px 0 0;
    max-width: calc(50% - 10px);
  }
  .reviews .global-aside form .reviews__item--picture .remove-item picture {
    width: 100%;
    height: auto;
  }
  .reviews .global-aside form .reviews__item--picture .remove-item picture > * {
    max-width: 100%;
    height: auto;
  }
  .reviews .global-aside form .container-btn {
    padding: 0;
    margin: 0 0 -20px;
    max-width: calc(50% - 10px);
  }
  .reviews .global-input,
  .reviews .global-textarea {
    width: calc(50% - 10px);
  }
  .reviews .global-textarea {
    position: absolute;
    inset: unset;
    top: 0;
    right: 0;
    height: 100%;
  }
  .reviews .global-feedback .message {
    max-width: calc(50% - 10px);
  }
  .base .reviews__content > * {
    order: 2;
  }
  .base .reviews__content .section-header {
    padding: 15px 0 0;
  }
  .base .reviews__content h1 {
    margin: 0;
    padding-bottom: 15px !important;
    margin: 0 0 40px;
    font-size: 72px;
    border-bottom: 1px solid var(--stroke-white-10);
  }
  .base .global-aside {
    order: 1;
    padding: 0 24px;
  }
  .base .global-aside .simplebar-horizontal {
    border-radius: 0 0 32px 32px;
    overflow: hidden;
  }
  .base .global-aside h2 {
    display: none;
  }
  .base .global-aside ul {
    flex-direction: unset;
    padding: 18px 0;
  }
  .base .global-aside ul .simplebar-content {
    flex-direction: unset;
  }
  .base .global-aside ul .simplebar-content a {
    white-space: nowrap;
  }
  .base .global-aside ul .simplebar-content *[data-gradient] {
    white-space: nowrap;
  }
  .base .global-aside ul .simplebar-content *[data-gradient] > * {
    white-space: nowrap;
  }
  .base .reviews__list {
    max-width: 100%;
  }
  .base .reviews__pagination {
    max-width: 100%;
  }
  .base .reviews__pagination > * > *:last-child a,
  .base .reviews__pagination > * > *:last-child:first-child a {
    padding: 8px 45px 15px 24px;
  }
  .base .reviews__pagination > * > *:last-child:after,
  .base .reviews__pagination > * > *:last-child:first-child:after {
    right: 10px;
  }
  .base .reviews__pagination > * > *:first-child:not(:last-child) a {
    padding: 8px 24px 15px 45px;
  }
  .base .reviews__pagination > * > *:first-child:not(:last-child):after {
    left: 10px;
  }
  .economy__info {
    max-width: 390px;
  }
  .economy__info h1 {
    font-size: 54px;
    line-height: 1.2;
  }
  .economy picture {
    max-width: calc(100% - 390px);
  }
  .economy-cards .section-header__under {
    flex-direction: column;
    gap: 24px 0;
    padding: 24px 0 32px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .economy-cards .section-header__under > *.section-header__under-right {
    max-width: unset;
  }
  .page-cabinet .header-cabinet__finance ul {
    display: none;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet {
    padding: 8px 14px 8px 24px;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet--avatar {
    margin: 0 8px 0 24px;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet > p {
    display: inline-block;
  }
  .page-cabinet .wrapper-cabinet .wrapper {
    max-width: 768px;
  }
  .page-cabinet .wrapper-cabinet .wrapper section > h1,
  .page-cabinet .wrapper-cabinet .wrapper section > h2 {
    margin: 0 0 -20px;
    font-size: 54px;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test {
    gap: 0 16px;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test > *:not(.bg-gradient-card).container-btn {
    gap: 0 16px;
    width: calc(100% - (33.3333333333% - 8px));
  }
  .page-cabinet .cabinet-support {
    transform: translate(9.2em, -50%) rotate(-90deg);
  }
  .page-cabinet .cabinet-support a {
    padding: 8px 16px 0px 12px;
  }
  .page-cabinet .cabinet-support a .bg-gradient-card {
    border-radius: 18px 18px 0 0;
  }
  .page-cabinet .cabinet-deposit .cabinet__table--line {
    flex-wrap: wrap;
    gap: 16px 0;
  }
  .page-cabinet .cabinet-deposit .cabinet__table--info {
    margin: 0;
  }
  .page-cabinet .cabinet-deposit .cabinet__table--finance {
    width: 100%;
  }
  .page-cabinet .cabinet-deposit .cabinet__table--finance > * {
    flex-grow: 1;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__info {
    flex-wrap: wrap;
    gap: 16px 16px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__info .cabinet__table--item.__grey {
    max-width: calc(50% - 8px);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table {
    padding: 24px 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--item.__grey:nth-child(-n+2):nth-last-child(-n+2) {
    padding: 16px 8px 18px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) {
    flex-wrap: wrap;
    gap: 24px 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate {
    gap: 24px 24px;
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form {
    flex-direction: unset;
    gap: 0 16px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .cabinet__table--filter-currency {
    padding: 0 0 70px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-input {
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-input input {
    padding: 17px 21px 17px 20px;
    height: 56px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .container-btn {
    align-self: flex-end;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .container-btn > * {
    padding: 15px 15px 19px;
    height: 56px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--header strong {
    font-size: 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > * > ul {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 24px 24px;
    justify-content: space-between;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > * > ul li {
    max-width: calc(50% - 12px);
    width: 100%;
    align-self: stretch;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > * > ul li:first-child:last-child {
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description {
    padding: 24px 24px;
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay {
    gap: 16px 16px;
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > *:last-child,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__pay > *:first-child {
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__qr {
    padding: 24px 24px 20px;
    max-width: 200px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay .cabinet__table--link-bg {
    width: calc(100% - 100px);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay .cabinet__table--link-bg .text-gradient {
    width: 100%;
    font-size: 18px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__copy .cabinet__table--link {
    padding: 16px 24px;
    gap: 8px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .content-pay__copy .cabinet__table--link-btn {
    right: 24px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form {
    flex-wrap: wrap;
    gap: 16px 16px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form > * {
    max-width: calc(50% - 8px);
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form > *.cabinet__table--filter-calendar {
    max-width: 100%;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-input {
    gap: 0 16px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header,
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content {
    width: 1024px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * > .simplebar-placeholder {
    min-height: 203px !important;
  }
  .page-cabinet .cabinet-transactions .simplebar-track {
    bottom: -15px;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.cabinet-statistics.affiliate-system .cabinet__table .cabinet__table > .bg-gradient-card {
    display: none;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.cabinet-statistics.affiliate-system .cabinet-task__content .bg-gradient-card {
    display: inline-block;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description > * {
    flex-shrink: 1;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description > *.motivation__description--balance {
    flex-shrink: 0;
    padding: 18px 24px 17px;
  }
  .page-cabinet .cabinet-branding .cabinet__table--line.__refferal {
    flex-wrap: wrap;
    gap: 16px 16px;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet-branding .cabinet__table--line.__refferal > *.cabinet__table--link {
    order: 2;
    max-width: 100%;
  }
  .page-cabinet .cabinet-branding .cabinet__table--count {
    margin: 0;
    max-width: 136px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-info {
    max-width: 360px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-info strong {
    font-size: 18px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-icon {
    flex-shrink: 0;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-score > p span {
    font-size: 24px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header > span {
    right: 7px;
    top: 12px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description {
    font-size: 18px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-text {
    max-width: 100%;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other {
    order: 2;
    max-width: 100%;
    margin: 24px 0 0;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info {
    margin: 24px 0 0;
    max-width: 100%;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info > *:not(img, svg, .bg-gradient-card) {
    font-size: 16px;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a span {
    background: unset;
    color: rgb(157, 157, 157);
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li a span:after {
    display: none;
  }
  .page-cabinet .aside-cabinet .nav-menu__content .menu-list > ul li.active a span {
    color: rgb(115, 113, 254);
  }
  .page-cabinet .settings__data > * {
    padding: 24px 24px;
  }
  .page-cabinet .settings__data > *.settings__data--user {
    flex-direction: column;
  }
  .page-cabinet .settings__data > *.settings__data--user form .container-btn {
    margin: 16px 0 0;
  }
  .page-cabinet .settings__data > *.settings__data--user form .container-btn > * {
    display: flex;
    max-width: unset;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .settings__data > *.settings__data--defense .container-btn {
    width: 100%;
  }
  .page-cabinet .settings__data > *.settings__data--defense .container-btn .btn-gradient {
    display: flex;
    max-width: unset;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .settings__data--avatar {
    margin: 0 auto 16px;
  }
  .page-cabinet .settings__data--picture {
    width: 112px;
    height: 112px;
  }
  .page-cabinet .settings__data--picture > * {
    max-width: 100%;
    height: auto;
  }
  .page-cabinet .settings__data--edit {
    top: 50%;
    left: calc(100% - 12px);
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
  }
  .page-cabinet .settings__data--edit > *:not(.bg-gradient-card) {
    max-width: 20px;
    height: auto;
  }
  .page-cabinet .settings__bot {
    padding: 24px 24px;
  }
  .page-cabinet .settings__bot--icon {
    margin: 0 20px 0 0;
  }
  .page-cabinet .settings__bot--description {
    margin: 0 20px 0 0;
  }
  .page-cabinet .settings__finance--select {
    gap: 0 24px;
  }
  .page-cabinet .settings__finance--period .input-radio {
    padding: 14px 17px;
    width: auto;
  }
  .page-cabinet .settings__password,
  .page-cabinet .settings__personal {
    padding: 24px 24px;
  }
  .page-cabinet .settings__password form,
  .page-cabinet .settings__personal form {
    flex-wrap: wrap;
    gap: 60px 24px;
  }
  .page-cabinet .settings__password form > *:not(.bg-gradient-card),
  .page-cabinet .settings__personal form > *:not(.bg-gradient-card) {
    max-width: calc(50% - 12px);
  }
  .page-cabinet .settings__password form .container-btn .btn-gradient,
  .page-cabinet .settings__personal form .container-btn .btn-gradient {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .settings__personal form {
    gap: 24px 24px;
  }
  .page-cabinet .settings__personal form .container-btn {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  body {
    font-weight: 300;
    letter-spacing: -0.0238em;
  }
  body * {
    letter-spacing: -0.0238em;
  }
  body.mobile.open-menu .wrapper > .header__btn {
    z-index: -1;
  }
  body .nav-menu {
    padding: 16px 10px 32px;
    border-radius: 0;
  }
  body .nav-menu .btn-menu__close {
    top: 0;
    right: 0;
  }
  body .nav-menu__content {
    gap: 48px 0;
  }
  body .nav-menu__content .menu-list {
    gap: 20px 0;
    justify-content: center;
  }
  body .nav-menu__content .menu-list > ul li {
    margin: 0 auto;
  }
  body .nav-menu__content .menu-list .header__btn {
    width: 100%;
    height: 50px;
    z-index: 2;
  }
  body .nav-menu__content .menu-list .header__btn .lang {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  body .nav-menu .header__social {
    justify-content: space-between;
  }
  body .header.active .btn-menu__close > p > span {
    transform-origin: 43% 80%;
  }
  h1,
  h2,
  h3 {
    letter-spacing: -0.03em;
  }
  h1 *,
  h2 *,
  h3 * {
    letter-spacing: -0.03em;
  }
  h2 {
    font-size: 48px;
  }
  ul.custom,
  ol.custom {
    gap: 13px 0;
  }
  ul.custom li,
  ol.custom li {
    padding: 10px 0 0 44px;
  }
  .logo img,
  .logo svg {
    width: 38px;
    height: auto;
  }
  .logo * {
    letter-spacing: -0.05em;
  }
  .logo > * {
    font-size: 24px;
  }
  .text-gradient {
    letter-spacing: -0.03em;
  }
  .wrapper {
    max-width: 460px;
  }
  .header {
    padding: 16px 0;
  }
  .header .wrapper > .header__btn .lang {
    display: none;
  }
  .header__btn .sing-up {
    padding: 0 20px;
    height: 44px;
  }
  .header__btn .sing-up.sing-user {
    padding: 0 22px;
    width: auto;
  }
  .section-header > *:not(h1, h2, h3) {
    width: 100%;
    font-size: 18px;
    letter-spacing: -0.03em;
  }
  .btn-menu {
    width: 44px;
    height: 44px;
  }
  .btn-menu > p {
    width: 20px;
    gap: 7px 0;
  }
  .btn-menu > p span {
    margin: 0;
  }
  .btn-menu > p span:nth-child(2) {
    width: 10px;
  }
  .btn-menu__close {
    width: 38px;
    height: 38px;
  }
  .btn-menu__close > p {
    width: 17px;
  }
  .btn-menu__close > p > span {
    transform-origin: 44% 80%;
  }
  .container-btn {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px 12px;
  }
  .btn-gradient-border,
  .btn-gradient {
    padding: 10px 15px;
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
  .decoration-picture picture > * {
    width: 100%;
  }
  .input-checkbox > p:not(.placeholder) {
    max-width: 200px;
    font-size: 16px;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide {
    max-width: unset;
    height: auto;
    transform: unset !important;
    align-self: stretch;
  }
  .card__slider .swiper-container.statistics-slider .slide__content {
    min-height: unset;
    font-size: 14px;
    height: 100%;
    --aos-delay: 0 !important;
    --aos-duration: 950ms;
    transition-delay: 0s !important;
  }
  .card__slider .swiper-container.statistics-slider .swiper-slide:nth-child(-n+1) {
    order: 2;
  }
  .card__slider .swiper-wrapper {
    flex-wrap: unset;
    /* min-height: 270px; */
    min-height: unset;
  }
  .global-carousel .carousel-slide .slide__content > svg,
  .global-carousel .carousel-slide .slide__content > img {
    height: 45px;
  }
  .global__types--container {
    overflow: visible;
  }
  .global__types .container-btn nav,
  .global__types--nav nav {
    width: auto;
  }
  .global__types .container-btn ul,
  .global__types--nav ul {
    gap: 0 4px;
    font-size: 14px;
    justify-content: flex-start;
  }
  .global__types .container-btn ul > *:not(.slider-btn),
  .global__types--nav ul > *:not(.slider-btn) {
    padding: 7px 15px 8px;
    min-width: unset;
    letter-spacing: -0.03em;
  }
  .global__types .container-btn ul > *:not(.slider-btn) *,
  .global__types--nav ul > *:not(.slider-btn) * {
    letter-spacing: -0.03em;
  }
  .global__types .container-btn ul .slider-btn,
  .global__types--nav ul .slider-btn {
    min-height: unset;
  }
  .global__types--carousel {
    padding: 17px 0 0;
  }
  .global-info {
    width: 42px;
    height: 42px;
  }
  .global-info img,
  .global-info svg {
    width: 18px;
    height: auto;
  }
  .global-info__description {
    right: -15px;
  }
  .global-info__description:before {
    background: url(img/bg/bg-description.svg) right -85px top no-repeat;
  }
  .global-info__description:after {
    top: 1px;
    left: 16px;
    width: calc(100% - 40px - 311px);
  }
  .global__item--description .container-btn .info-closure {
    padding: 15px 0 0;
    gap: 0 10px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  .global__item--description .container-btn .info-closure .global-info {
    margin: 0 3px 0 0;
  }
  .global__item--description .container-btn .info-closure .global-info__description {
    top: calc(100% + 24px);
    bottom: auto;
    right: -25px;
  }
  .global__item--description .container-btn .info-closure .global-info__description:before {
    bottom: calc(100% - 2px);
    top: auto;
    right: 17px;
    width: calc(100% - 34px);
    background: url(img/bg/bg-description.svg) right -86px top no-repeat;
    transform: unset;
  }
  .global__item--description .container-btn .info-closure .global-info__description--overflow {
    top: 2px;
    height: calc(100% - 2px);
  }
  .global__item--description .container-btn .info-closure .global-info__description--overflow .bg-gradient-card {
    top: auto;
    bottom: 1px;
    height: calc(100% + 2px);
  }
  .global__item--description .container-btn .info-closure .global-info__description--overflow .bg-gradient-card:after {
    padding: 1px 2px 1px 1px;
  }
  .global__growth {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: unset;
    padding: 20px 16px 16px;
    width: 100%;
  }
  .global__growth * {
    font-weight: 300;
  }
  .global__growth--value {
    margin: 0 10px 0 auto;
    font-size: 22px;
  }
  .global__growth > *:not(.bg-gradient-card) {
    width: auto;
  }
  .global__growth > *:not(.bg-gradient-card).global__growth--description {
    padding: 0;
  }
  .global__growth > *:not(.bg-gradient-card).global__growth--coin {
    position: relative;
    order: 2;
  }
  .global-input .bg-gradient-card,
  .global-textarea .bg-gradient-card {
    border-radius: 24px;
  }
  .global-input input,
  .global-input textarea,
  .global-input .global-input__placeholder,
  .global-textarea input,
  .global-textarea textarea,
  .global-textarea .global-input__placeholder {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 15px;
    letter-spacing: -0.03em;
  }
  .global-upload {
    margin: 0 auto;
  }
  .global-feedback.feedback-list.position-over {
    /* top: 86px; */
    right: 20px;
    max-width: 350px;
  }
  .global-feedback.feedback-list.position-over.size-large {
    max-width: 100%;
  }
  .global-feedback.feedback-list.position-over.size-large .message.remove-item {
    padding: 0;
  }
  .global-feedback.feedback-list.position-over.size-large .message.remove-item .btn-gradient-border,
  .global-feedback.feedback-list.position-over.size-large .message.remove-item .btn-gradient {
    padding: 5px 12px 7px;
    min-height: 29px;
  }
  .global-feedback.feedback-list.position-over.size-large .message.remove-item .btn-gradient-border *,
  .global-feedback.feedback-list.position-over.size-large .message.remove-item .btn-gradient * {
    font-size: 14px;
    font-weight: 700;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth {
    flex-direction: column;
    padding: 16px 0;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--group {
    gap: 8px 0;
    padding: 0 42px 0 0;
    margin: 0 0 0 auto;
    max-width: 243px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: -5px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin .bg-gradient-blur {
    top: 15%;
    left: 45%;
    width: 122px;
    height: 122px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin .bg-gradient-blur:before {
    filter: blur(124px);
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin img,
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin svg {
    width: auto;
    height: 100px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--description {
    font-size: 14px;
    font-weight: 400;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--description * {
    font-weight: 400;
    letter-spacing: -0.03em;
  }
  .global-feedback.feedback-list.position-under {
    max-width: 192px;
    /* bottom: 270px; */
    bottom: 20px;
    right: 20px;
  }
  .global-feedback.feedback-list.position-under .global__growth {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 12px 12px;
    flex-direction: column;
  }
  .global-feedback.feedback-list.position-under .global__growth--value {
    margin: 0;
  }
  .global-feedback.feedback-list.position-under .global__growth > *:not(.bg-gradient-card).global__growth--coin {
    padding: 0 0 3px;
    order: unset;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large {
    bottom: 20px;
    right: auto;
    left: 20px;
    max-width: 350px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .message {
    max-width: 350px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .message > * {
    max-width: 350px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
    padding: 16px 56px 16px 16px;
    flex-direction: column;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth .close-feedback {
    top: 8px;
    right: 8px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth--value {
    margin: 0;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth * {
    letter-spacing: -0.03em;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth > *:not(.bg-gradient-card).global__growth--coin {
    order: unset;
    width: 56px;
    height: 56px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth > *:not(.bg-gradient-card).global__growth--coin * {
    width: 28px;
    height: auto;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth .container-btn {
    padding: 0;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .global__growth .container-btn * {
    font-weight: 700;
  }
  .global-feedback:not(.size-large) .message:not(.feedback-growth) .close-feedback {
    top: -4px;
    right: -3px;
  }
  .carousel-logos {
    gap: 8px;
  }
  .main {
    padding: 8px 0 70px;
  }
  .main .decoration-picture picture {
    display: block;
    width: 100%;
  }
  .main__coin {
    width: 100%;
    justify-content: center;
  }
  .main__coin picture {
    width: auto;
  }
  .main__coin picture img,
  .main__coin picture svg {
    width: 273px;
  }
  .main__coin .bg-gradient-blur {
    width: 275px;
    height: 188px;
  }
  .main__coin .bg-gradient-blur:before {
    filter: blur(84px);
  }
  .main__info {
    padding: 0;
    margin: -157px 0 0;
    width: 100%;
  }
  .main__info h1 {
    padding: 0 10px;
    font-size: 32px;
  }
  .main__info h1 strong:not(:last-child) {
    padding: 0 0 14px;
  }
  .main__info h1 strong:last-child {
    padding: 0px 1px 0 0;
    transform: translateY(-3px);
  }
  .main__info h1 b {
    display: inline-block;
    padding: 15px 22px 15px 16px;
    font-size: 32px;
    letter-spacing: -0.03em;
    transform: rotate(-5deg) translateX(81px);
  }
  .main__info h1 b > span {
    padding: 0 9px 0 0;
  }
  .main__info h1 b img,
  .main__info h1 b svg {
    /* transform: rotate(4deg) translateY(3px); */
    transform: rotate(4deg) translateY(-20%);
  }
  .main__info > p {
    padding: 21px 0 0;
    letter-spacing: -0.03em;
  }
  .main__info .container-btn {
    gap: 12px 12px;
    padding: 20px 0 0;
  }
  .main__info .container-btn .btn-gradient-border,
  .main__info .container-btn .btn-gradient {
    padding: 10px 15px;
  }
  .main__info .container-btn .btn-gradient-border {
    order: 2;
  }
  .main__cards {
    gap: 20px 0;
    margin: 0 0 0 -20px;
    width: calc(100% + 40px);
  }
  .produce {
    padding: 5px 0 0;
  }
  .produce .section-header {
    flex-direction: column;
    gap: 9px 10px;
  }
  .produce .section-header h2,
  .produce .section-header > *:not(h2) {
    width: 100%;
    text-align: left;
  }
  .produce .section-header br {
    display: none;
  }
  .produce__cards {
    gap: 10px 10px;
    padding: 31px 0 0;
    transform: unset;
  }
  .produce__cards--item {
    gap: 10px 0;
    padding: 20px;
    width: 100%;
  }
  .produce__cards--item .container-btn {
    padding: 5px 0 0;
  }
  .produce__cards--item .container-btn .btn-gradient-border,
  .produce__cards--item .container-btn .btn-gradient {
    padding: 15px 24px;
  }
  .produce__cards--item .container-btn .btn-gradient-border > *,
  .produce__cards--item .container-btn .btn-gradient > * {
    letter-spacing: -0.03em;
  }
  .produce__cards--item p:not(.bg-gradient-card) {
    letter-spacing: -0.01em;
  }
  .produce__item--info {
    gap: 12px 0;
  }
  .produce__item--description {
    gap: 15px 0;
  }
  .produce__item--description p {
    line-height: 1.36;
    letter-spacing: -0.01em;
  }
  .about {
    padding: 79px 0 0;
  }
  .about .decoration-left {
    transform: translate(-39.6%, 292px);
  }
  .about .decoration-left:before {
    width: 74px;
    height: 74px;
    transform: translate(146%, 32.5%);
  }
  .about .decoration-left:after {
    display: none;
  }
  .about .decoration-right {
    transform: translate(154%, 67px);
  }
  .about .wrapper {
    gap: 14px 0;
  }
  .about .wrapper .container-btn {
    flex-direction: unset;
  }
  .about .wrapper .container-btn .btn-gradient {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 14px 24px;
    width: auto;
  }
  .about .section-header {
    gap: 16px 0;
  }
  .about .section-header h2 {
    font-size: 48px;
  }
  .about .section-header > *:not(h2) {
    line-height: 1.37;
  }
  .investments {
    padding: 77px 0 0;
    z-index: 5;
  }
  .investments * {
    font-weight: 400;
    letter-spacing: -0.03em;
  }
  .investments .section-header {
    gap: 5px 0;
  }
  .investments .section-header > *:not(h2) {
    line-height: 1.37;
  }
  .investments__types > .bg-gradient-card {
    display: none;
  }
  .investments__types .global__types--nav {
    padding: 0;
    justify-content: space-between;
  }
  .investments__types .global__growth {
    order: 3;
    padding: 16px 20px;
    margin: 24px 0 -4px;
  }
  .investments__types .global__growth .bg-gradient-card {
    border-radius: 16px;
  }
  .investments__types.global__types--carousel {
    padding: 23px 0 0;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__types--item {
    padding: 26px 0 0;
    min-height: 100%;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__types .container-btn ul,
  .investments__types.global__types--carousel.horizontal-animation .global__types--nav ul {
    gap: 6px 6px;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__types .container-btn ul > *:not(.slider-btn) *,
  .investments__types.global__types--carousel.horizontal-animation .global__types--nav ul > *:not(.slider-btn) * {
    letter-spacing: 0;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--header {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 28px;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--header > p {
    padding: 11px 0 0;
    order: 2;
    font-size: 64px;
    white-space: nowrap;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--header > p .text-gradient-violet {
    width: auto !important;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--header > span {
    padding: 0;
    font-size: 18px;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--description {
    font-size: 14px;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--description ul.custom,
  .investments__types.global__types--carousel.horizontal-animation .global__item--description ol.custom {
    gap: 13px 0;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--description .container-btn {
    padding: 28px 0 0;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--description .container-btn .btn-gradient-border,
  .investments__types.global__types--carousel.horizontal-animation .global__item--description .container-btn .btn-gradient {
    padding: 16px 40px 14px;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__item--description .container-btn .btn-gradient-border *,
  .investments__types.global__types--carousel.horizontal-animation .global__item--description .container-btn .btn-gradient * {
    letter-spacing: 0;
  }
  .investments__types.global__types--carousel.horizontal-animation .global__growth * {
    font-weight: 300;
  }
  .investments__calculator {
    flex-direction: column;
    padding: 24px 20px 11px;
    margin: 19px 0 0;
  }
  .investments__calculator h3 {
    padding: 0 0 2px;
  }
  .investments__calculator > p {
    padding: 0 0 6px;
  }
  .investments__calculator > p > b {
    font-size: 64px;
  }
  .investments__calculator > p > span {
    padding: 0 0 0 11px;
    font-size: 18px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description {
    width: 100%;
    font-size: 14px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description *:not(.bg-gradient-card) {
    width: 100%;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description > p {
    padding: 0 0 5px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description > p > b {
    font-size: 64px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description > p > span {
    padding: 0 0 0 11px;
    font-size: 18px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description ul.custom,
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description ol.custom {
    gap: 12px 0;
    padding: 10px 0 15px;
    margin: 2px 0 0;
    border-bottom: 1px solid var(--stroke-white-10);
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description ul.custom li,
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--description ol.custom li {
    padding: 11px 0 0 44px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form {
    gap: 13px 0;
    padding: 15px 0 0;
    width: 100%;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form *:not(strong, .text-gradient-violet, .btn-gradient, .btn-gradient span) {
    font-weight: 300;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form > strong {
    font-size: 16px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form .global-input {
    margin: -4px 0 0;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form .container-btn {
    transform: translateY(-9px);
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form .btn-gradient {
    padding: 14px 20px;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--form .btn-gradient span {
    letter-spacing: 0;
  }
  .investments__calculator > *:not(.bg-gradient-card).investments__calculator--result > p {
    padding: 10px 0 0;
  }
  .statistics {
    padding: 78px 0 0;
    z-index: 3;
  }
  .statistics .decoration-picture {
    transform: translate(-50%, -545px);
  }
  .statistics h2 {
    padding: 0;
  }
  .statistics__description {
    gap: 31px 0;
  }
  .statistics__description--month {
    gap: 0;
    padding: 18px 20px 9px;
    margin: -20px 0 0 auto;
    min-width: 315px;
  }
  .statistics__description--month > *:not(.bg-gradient-card) {
    letter-spacing: -0.03em;
  }
  .statistics__description--month b {
    padding: 0 18px 0 0;
    font-size: 48px;
    line-height: 1.3;
  }
  .statistics__description--month b * {
    letter-spacing: -0.03em;
  }
  .statistics__description--details {
    gap: 32px;
  }
  .statistics__description--details * {
    letter-spacing: -0.03em;
  }
  .statistics__description--details > * {
    width: calc(50% - 16px);
    font-size: 16px;
  }
  .statistics__description--details > * > *:not(.statistics__item--icon) {
    padding: 15px 0 0;
  }
  .statistics__description--details > * > *:not(.statistics__item--icon):last-child {
    padding: 8px 0 0;
  }
  .statistics__description--details b {
    font-size: 26px;
    letter-spacing: -0.03em;
  }
  .statistics__description--details b span {
    margin: 0 -4px 0 0;
  }
  .statistics__item--icon img,
  .statistics__item--icon svg {
    width: auto;
    height: 32px;
  }
  .statistics__item--details > * > *:not(.statistics__item--icon) {
    padding: 15px 0 0;
    letter-spacing: -0.03em;
  }
  .statistics .global__types--carousel {
    gap: 10px 0;
    padding: 34px 0 0;
  }
  .statistics .global__types--nav nav {
    width: calc(100% - 40px);
  }
  .statistics .global__types--nav ul {
    width: 100%;
  }
  .statistics .global__types--nav ul > *:not(.slider-btn) {
    flex-grow: 1;
    letter-spacing: -0.03em;
  }
  .statistics .global__types--item {
    padding: 20px 0;
  }
  .statistics .global__types .container-btn ul > *:not(.slider-btn) {
    flex-grow: 1;
    letter-spacing: -0.03em;
  }
  .statistics .global__types--container {
    overflow: hidden;
  }
  .statistics .global-carousel .carousel-slide {
    pointer-events: all;
    max-width: 169px;
  }
  .statistics .global-carousel .carousel-slide > * {
    gap: 11px 0;
    padding: 17px 10px;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card) {
    font-size: 18px;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__coin {
    padding: 0;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__coin > * {
    width: auto;
    height: 32px;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__value {
    padding: 0 0 2px;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__value * {
    letter-spacing: -0.03em;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__time {
    padding: 0;
    font-size: 14px;
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__user {
    transform: translateY(-1px);
  }
  .statistics .global-carousel .carousel-slide > * > *:not(.bg-gradient-card).carousel-slide__user .text-cut {
    padding: 0 0 4px 4px;
  }
  .crypto-market {
    padding: 60px 0 0;
  }
  .crypto-market .section-header {
    gap: 13px 0;
  }
  .crypto-market .section-header h2 {
    padding: 0;
    font-size: 32px;
    line-height: 1.36;
  }
  .crypto-market .section-header > *:not(h2) {
    line-height: 1.36;
    letter-spacing: -0.03em;
  }
  .crypto-market__content {
    padding: 24px 19px;
  }
  .crypto-market__test {
    gap: 13px 0;
    order: 2;
    padding: 23px 22px 20px;
  }
  .crypto-market__test h3 {
    font-size: 32px;
    text-align: left;
    line-height: 1.36;
  }
  .crypto-market__test .container-btn {
    flex-direction: column;
    gap: 8px 0;
    justify-content: flex-start;
  }
  .crypto-market__test .container-btn .btn-gradient {
    width: 100%;
    font-size: 18px;
    letter-spacing: -0.03em;
    min-height: 51px;
  }
  .crypto-market__test .container-btn .btn-gradient.btn-green img,
  .crypto-market__test .container-btn .btn-gradient.btn-green svg {
    width: 15px;
    transform: rotate(4deg) translateY(-1px);
  }
  .crypto-market__test .container-btn .btn-gradient.btn-red img,
  .crypto-market__test .container-btn .btn-gradient.btn-red svg {
    width: 15px;
    transform: rotate(94deg) translateY(-1px);
  }
  .affiliate-system {
    padding: 80px 0 0;
  }
  .affiliate-system .decoration-picture {
    transform: translateY(161px);
  }
  .affiliate-system h2 {
    font-size: 48px;
    line-height: 1.1;
  }
  .affiliate-system .global__types--nav ul,
  .affiliate-system .global__types .container-btn ul {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .affiliate-system__content .global__types--nav {
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .affiliate-system__content .global__types--nav * {
    flex-grow: 1;
  }
  .affiliate-system__content .global__types--nav nav > .bg-gradient-card {
    border-radius: 24px;
  }
  .affiliate-system__content .global__types--nav ul,
  .affiliate-system__content .global__types--nav .container-btn ul {
    gap: 4px 4px;
  }
  .affiliate-system__content .global__types--nav ul > *:not(.slider-btn),
  .affiliate-system__content .global__types--nav .container-btn ul > *:not(.slider-btn) {
    padding: 7px 20px 8px;
    width: 100%;
    text-align: center;
  }
  .affiliate-system__content .global__types--nav ul > *:not(.slider-btn):hover,
  .affiliate-system__content .global__types--nav .container-btn ul > *:not(.slider-btn):hover {
    background-color: rgba(255, 255, 255, 0);
  }
  .affiliate-system__content .global__types--container {
    padding: 60px 40px 0;
    transform: translateY(-66px);
  }
  .affiliate-system__content .global__types--item {
    gap: 22px 0;
    padding: 93px 20px 0;
  }
  .affiliate-system__content .global__types--item .item-decoration {
    display: none;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description {
    padding: 0 0 20px;
    width: 100%;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul {
    flex-direction: column;
    gap: 10px;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li {
    flex-direction: unset;
    padding: 10px 16px;
    max-width: 100%;
    justify-content: space-between;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li .global-line > b > span {
    padding: 0 0 3px 4px;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li * {
    letter-spacing: -0.03em;
  }
  .affiliate-system__content .global__types--item:nth-child(3) .global__item--description > ul li > span {
    font-size: 16px;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description {
    width: 100%;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul {
    gap: 8px;
    justify-content: space-between;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    padding: 14px 20px;
    max-width: calc(50% - 4px);
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li * {
    letter-spacing: -0.03em;
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li:last-child:nth-child(2n+1),
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li:first-child:nth-last-child(-n+2) {
    max-width: calc(50% - 4px);
  }
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li:first-child,
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li:first-child:last-child,
  .affiliate-system__content .global__types--item:nth-child(4) .global__item--description > ul li:last-child:nth-child(2n+2):not(:nth-child(2)) {
    max-width: 100%;
  }
  .affiliate-system__content .global__item--header {
    gap: 5px 0;
    padding: 0;
  }
  .affiliate-system__content .global__item--header h3 {
    font-size: 32px;
  }
  .affiliate-system__content .global__item--header > *:not(h3) {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.005em;
  }
  .affiliate-system__content .global__item--description > ul {
    flex-wrap: wrap;
    gap: 8px 8px;
  }
  .affiliate-system__content .global__item--description > ul li {
    gap: 4px 0;
    padding: 14px 20px 11px;
    max-width: calc(50% - 4px);
  }
  .affiliate-system__content .global__item--description > ul li > .bg-gradient-card {
    border-radius: 24px;
  }
  .affiliate-system__content .global__item--description > ul li > b {
    font-size: 24px;
  }
  .affiliate-system__content .global__item--description > ul li:last-child:nth-child(2n+1) {
    max-width: 100%;
  }
  .affiliate-system__content .global__item--description > p {
    padding: 26px 0 0;
  }
  .affiliate-system__content .global__item--description > p b {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .affiliate-system__content .global__item--description .container-btn {
    gap: 12px 0;
    padding: 16px 0 20px;
  }
  .affiliate-system__content .global__item--description .container-btn > *:first-child {
    order: 2;
  }
  .affiliate-system__content .global__item--description .container-btn .btn-gradient-border {
    padding: 15px 25px 14px;
  }
  .affiliate-system__content .global__item--description .container-btn .btn-gradient {
    padding: 12px 25px 14px;
  }
  .faq {
    padding: 11px 0 0;
  }
  .faq .section-header {
    padding: 0 0 0 3.6%;
  }
  .faq__answer > * {
    gap: 0;
    padding: 23px 20px 18px;
  }
  .faq__answer > *.active {
    padding: 23px 20px 18px;
  }
  .faq__answer--header {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding: 0 40px 1px 1px;
  }
  .faq__answer--header * {
    letter-spacing: -0.03em;
  }
  .faq__answer--header > span {
    top: auto;
    background-size: 20px auto;
  }
  .faq__answer--description {
    font-size: 16px;
  }
  .faq__answer--description * {
    letter-spacing: -0.03em;
  }
  .help {
    padding: 66px 0 0;
  }
  .help .decoration-picture {
    transform: translateY(-363px);
  }
  .help h2 {
    padding: 0;
    font-size: 64px;
  }
  .help__info {
    padding: 0;
  }
  .help__form {
    width: 100%;
    margin: -23px 0 0;
  }
  .help__form form .bg-gradient-card {
    border-radius: 24px;
  }
  .help__form form .container-scroll {
    position: relative;
    inset: 0;
    top: auto;
    right: auto;
    width: 100%;
    height: 136px;
  }
  .help__form form > *:not(.bg-gradient-card) {
    width: 100%;
  }
  .help__form .global-input input,
  .help__form .global-input .global-input__placeholder {
    padding: 16px 21px 18px 20px;
    font-size: 16px;
  }
  .help__form .container-btn {
    padding: 13px 0 0;
  }
  .footer {
    margin: 203px auto 0;
  }
  .footer .wrapper {
    padding: 48px 20px 0;
  }
  .footer .wrapper > *:not(.footer__info):not(.footer__lang-copyright) {
    flex-direction: column;
    gap: 33px 0;
  }
  .footer .wrapper > *:not(.footer__info):not(.footer__lang-copyright).footer__nav ul {
    gap: 8px 0;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px 40px;
    padding: 0 0 20px;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address p {
    text-align: left;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address p br {
    display: inherit;
  }
  .footer .wrapper *:not(.footer__info):not(.footer__lang-copyright):not(.footer__nav).footer__address p br:first-child {
    display: inherit;
  }
  .footer__address .logo > * {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 32px;
  }
  .footer__address .logo > * span {
    padding: 8px 0 0;
  }
  .footer__address .logo img,
  .footer__address .logo svg {
    width: 50px;
  }
  .footer__info {
    position: relative;
    flex-direction: column;
    padding: 0;
    margin: -73px 0 0;
    transform: unset;
  }
  .footer__info--ssl {
    position: absolute;
    bottom: calc(100% + 23px);
    font-size: 18px;
  }
  .footer__info--ssl * {
    letter-spacing: -0.035em;
  }
  .footer__lang-copyright {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    max-width: unset;
    padding: 67px 0 24px;
    margin: 20px 0 0;
  }
  .footer__lang-copyright * {
    letter-spacing: -0.03em;
  }
  .footer__lang-copyright .lang {
    margin: 0;
  }
  .privacy {
    padding: 18px 0 0;
  }
  .privacy .decoration-picture picture {
    display: block;
    width: 100%;
  }
  .privacy .wrapper {
    gap: 20px 0;
  }
  .privacy .wrapper h1 {
    font-size: 32px;
  }
  .privacy .wrapper h2 {
    font-size: 24px;
  }
  .privacy .wrapper ol {
    padding: 28px 0 0;
  }
  .privacy .wrapper ol > li > ol {
    padding: 20px 0 0;
    width: calc(100% + 20px);
    transform: translateX(-20px);
  }
  .reviews {
    padding: 18px 0 0;
  }
  .reviews .section-header {
    gap: 12px 0;
  }
  .reviews h1 {
    font-size: 32px;
  }
  .reviews__content {
    gap: 40px 0;
  }
  .reviews .global-aside {
    padding: 20px 20px 10px;
  }
  .reviews .global-aside form {
    gap: 10px 10px;
  }
  .reviews .global-aside form h2 {
    display: none;
  }
  .reviews .global-aside form .reviews__item--picture {
    gap: 12px;
    width: 100%;
  }
  .reviews .global-aside form .reviews__item--picture .remove-item {
    margin: 12px 0 10px;
    max-width: calc(50% - 6px);
  }
  .reviews .global-aside form .reviews__item--picture .close-feedback {
    top: 10px;
    right: 10px;
  }
  .reviews .global-aside form .container-btn {
    gap: 22px 0;
    padding: 12px 0 0;
    margin: 0;
    max-width: 100%;
    justify-content: flex-start;
  }
  .reviews .global-aside form .container-btn .btn-gradient-border,
  .reviews .global-aside form .container-btn .btn-gradient {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .reviews .global-input,
  .reviews .global-textarea {
    width: 100%;
  }
  .reviews .global-textarea {
    position: relative;
    inset: 0;
    top: auto;
    right: auto;
    height: 136px;
  }
  .reviews .global-feedback .message {
    max-width: 100%;
  }
  .reviews__list {
    gap: 16px 0;
  }
  .reviews__list--item {
    padding: 20px 20px 20px;
    width: 100%;
  }
  .reviews__item--header {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 10px 0;
    flex-direction: column;
  }
  .reviews__item--header * {
    letter-spacing: -0.03em;
  }
  .reviews__item--description {
    font-weight: 400;
  }
  .reviews__item--description * {
    letter-spacing: -0.03em;
  }
  .reviews__pagination {
    padding: 8px 0 0;
  }
  .sing .decoration-picture picture,
  .registration .decoration-picture picture,
  .recovery .decoration-picture picture {
    display: block;
    width: 100%;
  }
  .sing form,
  .registration form,
  .recovery form {
    padding: 24px 24px;
  }
  .sing form h1,
  .registration form h1,
  .recovery form h1 {
    padding: 0 0 14px;
    font-size: 24px;
  }
  .sing form .auxiliary-text,
  .registration form .auxiliary-text,
  .recovery form .auxiliary-text {
    padding: 2px 0 12px;
  }
  .sing form .auxiliary-text.text-center,
  .registration form .auxiliary-text.text-center,
  .recovery form .auxiliary-text.text-center {
    padding: 14px 0 0;
  }
  .sing .global-input input,
  .sing .global-input textarea,
  .sing .global-input__placeholder,
  .sing .global-textarea input,
  .sing .global-textarea textarea,
  .sing .global-textarea__placeholder,
  .registration .global-input input,
  .registration .global-input textarea,
  .registration .global-input__placeholder,
  .registration .global-textarea input,
  .registration .global-textarea textarea,
  .registration .global-textarea__placeholder,
  .recovery .global-input input,
  .recovery .global-input textarea,
  .recovery .global-input__placeholder,
  .recovery .global-textarea input,
  .recovery .global-textarea textarea,
  .recovery .global-textarea__placeholder {
    font-size: 16px;
  }
  .base .reviews__content h1 {
    padding: 15px 20px 20px !important;
    margin: 0 0 25px;
    font-size: 40px;
  }
  .base .global-aside {
    padding: 0 20px;
    border-radius: 32px;
    overflow: hidden;
  }
  .base .global-aside > .bg-gradient-card {
    display: none;
  }
  .base .global-aside ul .simplebar-content {
    gap: 0 12px;
    padding: 12px 0;
  }
  .base .global-aside ul .simplebar-content li {
    padding: 10px 20px;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    will-change: backdrop-filter, transform;
    -webkit-transform: translateZ(0);
  }
  .base .global-aside ul .simplebar-content li a {
    position: relative;
  }
  .base .global-aside ul .simplebar-content li:before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(-165deg, rgba(255, 255, 255, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .base .global-aside ul .simplebar-content li:after {
    display: none;
  }
  .base .global-aside ul .simplebar-content li:hover .text-gradient {
    background: linear-gradient(145deg, rgba(192, 192, 192, 0.56) -10%, #e8e8e8 61%, rgb(255, 255, 255) 110%);
  }
  .base .global-aside ul .simplebar-content li.active {
    cursor: pointer;
    display: table;
    line-height: normal;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: inset 4px 2px 10px 0px rgba(0, 0, 0, 0);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    will-change: backdrop-filter, transform;
    -webkit-transform: translateZ(0);
    align-self: stretch;
    transition: 0.3s all ease;
  }
  .base .global-aside ul .simplebar-content li.active:before {
    background: linear-gradient(14deg, rgb(171, 169, 254) 0%, rgb(115, 113, 254) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .base .global-aside ul .simplebar-content:before,
  .base .global-aside ul .simplebar-content:after {
    display: none;
  }
  .base .reviews__list {
    padding: 0 20px 20px;
  }
  .base .reviews__list > .bg-gradient-card {
    display: none;
  }
  .base .reviews__list *:not(h2, h3) .text-gradient {
    color: #fff;
  }
  .base .reviews__list *.reviews__list--other-address .text-gradient {
    color: var(--transparent);
  }
  .base .reviews__list .wrapper h2 {
    padding: 0 0 10px;
    font-size: 32px;
  }
  .base .reviews__list .wrapper > ol {
    padding: 0 0 0 26px;
  }
  .base .reviews__list .wrapper > ol > li > *:not(ol):not(ul):not(li) > span:first-child:before {
    left: -48px;
  }
  .base .reviews__list .wrapper > ol li > ol {
    width: 100%;
    transform: unset;
  }
  .base .reviews__pagination > * {
    flex-direction: column;
    gap: 12px 0;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .base .reviews__pagination > * > * {
    margin: 0;
    max-width: unset;
    width: 100%;
  }
  .base .reviews__pagination > * > *:first-child:not(:last-child) {
    order: 2;
  }
  .base .carousel-documnets .container-arrow .swiper-button-prev {
    right: calc(100% - 30px);
  }
  .base .carousel-documnets .container-arrow .swiper-button-next {
    left: calc(100% - 30px);
  }
  .base .carousel-documnets .slide__content > * {
    max-width: 100%;
    height: auto;
  }
  .economy {
    padding: 0 0 22px;
  }
  .economy .wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .economy__info {
    order: 2;
    max-width: unset;
  }
  .economy__info h1 {
    font-size: 48px;
    line-height: 1.1;
  }
  .economy__info > p {
    font-size: 18px;
  }
  .economy__info .container-btn {
    padding: 11px 0 0;
  }
  .economy__info .container-btn > * {
    padding: 13px 10px;
  }
  .economy picture {
    margin: -20px 0 -15px;
    max-width: unset;
  }
  .economy-cards h2 {
    font-size: 32px;
  }
  .economy-cards .section-header__under {
    gap: 17px 0;
  }
  .economy-cards .section-header__under > * {
    font-size: 18px;
    line-height: 1.4;
  }
  .economy-cards .section-header__under > * * {
    letter-spacing: -0.03em;
  }
  .economy-cards .section-header__under > *.section-header__under-right {
    padding: 18px 16px 14px;
    font-size: 16px;
    line-height: 1.38;
  }
  .economy-cards.produce {
    padding: 36px 0 24px;
  }
  .economy-cards.produce .produce__cards {
    padding: 0 0 38px;
  }
  .page-cabinet .mobile.open-filter {
    overflow: hidden;
  }
  .page-cabinet .mobile.open-filter .cabinet__table--line.__filter.active-filter .cabinet__table--filter-content {
    transform: translateX(0);
  }
  .page-cabinet .header {
    padding: 13px 0 11px;
  }
  .page-cabinet .header-cabinet__finance {
    display: none;
  }
  .page-cabinet .header-cabinet__info .logo {
    display: flex;
  }
  .page-cabinet .header-cabinet__info .logo > * span {
    padding: 0 0 3px;
  }
  .page-cabinet .header .btn-menu {
    width: 44px;
    height: 44px;
  }
  .page-cabinet .header .btn-menu p {
    width: 20px;
    height: 18px;
    border-radius: 4px;
    border-color: var(--white);
  }
  .page-cabinet .header .btn-menu p:after {
    right: 2px;
    height: 10px;
    background: var(--white);
  }
  .page-cabinet .header .header__btn {
    gap: 0 8px;
    padding: 3px 0 0;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet {
    padding: 6px 8px 6px 6px;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet > p {
    display: none;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet--avatar {
    margin: 0 4px 0 0;
    width: 32px;
    height: 32px;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet--avatar > * {
    max-width: 100%;
    height: auto;
  }
  .page-cabinet .header .header__btn .sing-up__cabinet:after {
    width: 16px;
    height: 16px;
    background-size: 10px auto;
  }
  .page-cabinet .notice {
    width: 44px;
    height: 44px;
  }
  .page-cabinet .notice > *:not(.bg-gradient-card) {
    max-width: 20px;
    height: auto;
  }
  .page-cabinet .wrapper-cabinet .wrapper section > h1,
  .page-cabinet .wrapper-cabinet .wrapper section > h2 {
    margin: 0 0 -17px;
    font-size: 40px;
    padding: 0;
    text-align: center;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__predict {
    gap: 16px;
    padding: 20px 20px;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test {
    flex-direction: column;
    gap: 16px 0;
    padding: 0;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test .bg-gradient-card {
    display: none;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test > *:not(.bg-gradient-card) {
    width: 100%;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test > *:not(.bg-gradient-card).container-btn {
    gap: 0 8px;
    width: 100%;
  }
  .page-cabinet .wrapper-cabinet .crypto-market__test h3 {
    font-size: 18px;
    text-align: center;
  }
  .page-cabinet .user-menu__header {
    gap: 0 16px;
  }
  .page-cabinet .user-menu__avatar img,
  .page-cabinet .user-menu__avatar svg {
    width: 64px;
    height: auto;
  }
  .page-cabinet .user-menu__info > span {
    font-size: 14px;
  }
  .page-cabinet .user-menu__info > p {
    font-size: 24px;
    font-weight: 400;
  }
  .page-cabinet .user-menu__deposit {
    font-size: 40px;
    font-weight: 400;
  }
  .page-cabinet .user-menu__promo img,
  .page-cabinet .user-menu__promo svg {
    width: 22px;
    height: auto;
  }
  .page-cabinet .user-menu__coin > strong {
    padding: 0 0 12px;
    font-size: 16px;
    font-weight: 300;
  }
  .page-cabinet .user-menu__coin--list {
    gap: 8px 0;
  }
  .page-cabinet .user-menu__coin--icon {
    font-size: 18px;
  }
  .page-cabinet .user-menu__coin--icon > p {
    width: 40px;
    height: 40px;
  }
  .page-cabinet .user-menu__coin--icon > p img,
  .page-cabinet .user-menu__coin--icon > p svg {
    width: 24px;
    height: auto;
  }
  .page-cabinet .user-menu__coin--info {
    font-size: 16px;
    font-weight: 400;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error {
    flex-direction: column;
    gap: 12px 0;
    padding: 16px 16px;
    margin: 0 0 16px;
    justify-content: flex-start;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error > strong {
    flex-direction: unset;
    gap: 0 16px;
    max-width: unset;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error > strong > p {
    font-size: 18px;
    font-weight: 400;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error > strong .bg-gradient-card {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error > strong .bg-gradient-card:before {
    background-size: 20px auto;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error .container-btn {
    flex-direction: unset;
    gap: 0 12px;
    max-width: unset;
    width: 100%;
  }
  .page-cabinet .user-menu .global-feedback .message.feedback-error .container-btn .btn-gradient-border {
    padding: 14px 6px 15px;
  }
  .page-cabinet .user-menu .cabinet-statistics {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    padding: 16px 16px;
    margin: 16px 0 22px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table {
    gap: 12px 0;
    padding: 0;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table--line:not(.__chart) > span {
    font-size: 16px;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item {
    height: 100px;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .btn-gradient {
    bottom: 8px;
    max-width: calc(100% - 16px);
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent {
    top: calc(100% + 8px);
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent p {
    font-size: 12px;
  }
  .page-cabinet .user-menu .cabinet-statistics .cabinet__table.__show {
    padding: 0 0 32px;
  }
  .page-cabinet .user-menu .cabinet-statistics .container-btn {
    flex-direction: unset;
    padding: 0;
  }
  .page-cabinet .cabinet__table {
    gap: 16px 0;
    padding: 20px 20px 22px;
  }
  .page-cabinet .cabinet__table-type {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 9px 16px;
    min-height: 35px;
    font-size: 14px;
    border-radius: 80px;
    align-self: center;
  }
  .page-cabinet .cabinet__table--finance {
    gap: 0 20px;
  }
  .page-cabinet .cabinet__table--item {
    gap: 1px 0;
  }
  .page-cabinet .cabinet__table--item > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) > * {
    font-size: 24px;
  }
  .page-cabinet .cabinet__table--item.__violet {
    padding: 18px 16px 14px;
    font-size: 14px;
  }
  .page-cabinet .cabinet__table--info {
    gap: 8px 0;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey {
    padding: 0;
    width: 100%;
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-end;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey .btn-gradient-border {
    display: none;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey:not(:first-child) > * {
    margin: 0;
  }
  .page-cabinet .cabinet__table--info > .cabinet__table--item.__grey > *:not(.btn-gradient-border, .bg-gradient-card, .text-gradient) > * {
    padding: 2px 1px 0 0;
    color: var(--white);
    font-size: 18px;
  }
  .page-cabinet .cabinet__table--info .timer__items {
    gap: 0 0;
    justify-content: flex-end;
  }
  .page-cabinet .cabinet__table--info .timer__items > * {
    gap: 0 2px;
    padding: 0;
    font-size: 18px;
    max-width: calc(33.3333333333% - 12px);
    justify-content: flex-end;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet__table--info .timer__items > * .btn-gradient-border {
    display: none;
  }
  .page-cabinet .cabinet__table--info .timer__items > *:after {
    text-transform: lowercase;
  }
  .page-cabinet .cabinet__table--info .timer__items .cabinet__table--item.__grey * {
    color: var(--white);
  }
  .page-cabinet .cabinet-support {
    display: none;
  }
  .page-cabinet .cabinet-statistics {
    padding: 30px 0 95px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table {
    gap: 46px 0;
    padding: 20px 20px 51px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__info {
    gap: 12px 12px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__info .cabinet__table--item.__grey {
    gap: 1px 0;
    padding: 18px 16px 14px;
    max-width: calc(50% - 6px);
    font-size: 14px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__info .cabinet__table--item.__grey .bg-gradient-card {
    display: none;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart {
    gap: 0 8px;
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item {
    display: none;
    height: 190px;
    max-width: calc(16.6666666667% - 9px);
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-percent > *,
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .chart-date > * {
    font-size: 14px;
    color: var(--text-white-60);
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item .btn-gradient {
    bottom: 6px;
    padding: 2px 0;
    min-height: 4px;
    max-width: calc(100% - 12px);
  }
  .page-cabinet .cabinet-statistics .cabinet__table--line.__chart .cabinet__table--item:nth-child(-n+6) {
    display: flex;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table {
    gap: 15px 0;
    padding: 20px 20px 19px;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table--description {
    padding: 64px 0 0;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table--description > *:not(h3, .bg-gradient-card, .container-btn) {
    padding: 0;
    font-size: 16px;
    line-height: 1.37;
    letter-spacing: -0.03em;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table--description .container-btn {
    gap: 12px 0;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table--description .container-btn .btn-gradient {
    padding: 13px 29px;
  }
  .page-cabinet .cabinet-statistics.empty-note .cabinet__table--description .container-btn .btn-gradient-border {
    order: 2;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy h2 {
    font-size: 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table {
    gap: 15px 0;
    padding: 22px 20px 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--header {
    display: flex;
    gap: 0 8px;
    padding: 0;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--header:after {
    position: relative;
    top: auto;
    left: 0;
    width: 26px;
    height: 26px;
    background-size: 26px auto;
    transform: unset;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--line.__info {
    gap: 8px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table--line.__info .cabinet__table--item.__grey {
    padding: 11px 15px 11px 12px;
    max-width: 100%;
    font-size: 14px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy .cabinet__table h3 {
    order: 2;
    font-size: 16px;
    text-align: left;
    line-height: 1.438;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments {
    padding: 35px 0 95px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments > h1,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments > h2 {
    margin: 0 0 -12px;
    line-height: 1.1;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table {
    padding: 22px 20px 20px;
    gap: 12px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line {
    gap: 18px 16px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__header {
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info {
    gap: 12px 12px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey {
    padding: 16px 6px 13px;
    max-width: calc(50% - 6px);
    height: auto;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey .bg-gradient-card {
    display: flex;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey strong.text-gradient {
    padding: 7px 0 0;
    font-size: 16px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey.table-append__type {
    gap: 8px 0;
    padding: 16px 6px 12px;
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey.table-append__type strong.text-gradient {
    padding: 7px 0 2px;
    font-size: 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey.table-append__type p[data-gradient] {
    padding: 4px 0 1px;
    line-height: 1.1;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__info .cabinet__table--item.__grey.table-append__type p[data-gradient] > * {
    font-size: 14px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) {
    gap: 18px 0;
    padding: 2px 0 73px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > * > ul {
    flex-direction: column;
    gap: 10px 8px;
    padding: 5px 0 0;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > * > ul li {
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate {
    position: unset;
    gap: 17px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form {
    position: unset;
    flex-direction: column;
    gap: 18px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form label:after {
    right: 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-input {
    gap: 10px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-input .global-input__placeholder {
    padding: 12px 15px 12px 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-input .bg-gradient-card,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .global-textarea .bg-gradient-card {
    border-radius: 32px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .cabinet__table--filter-currency {
    padding: 0 0 66px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate form .container-btn {
    position: absolute;
    bottom: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description {
    padding: 0;
    font-weight: 400;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description > .bg-gradient-card {
    display: none;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--header p {
    font-size: 14px;
    max-width: 200px;
    letter-spacing: -0.03em;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--info {
    gap: 4px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--info > span {
    font-size: 18px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--info > p {
    font-size: 48px;
    line-height: 1.1;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit {
    flex-direction: column;
    padding: 1px 0 0;
    margin: 2px 0 0;
    border-top: 1px solid var(--stroke-white-10);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) {
    flex-direction: unset;
    padding: 17px 0 1px;
    width: 100%;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) > * {
    text-align: left;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) > span {
    padding: 5px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child) > p {
    line-height: 1;
    font-size: 24px;
    text-align: right;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):after,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:not(:first-child:last-child):before {
    display: none;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child {
    padding: 5px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child > span {
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form:not(.__withdrawal) > *.cabinet__calculate--description .cabinet__calculate--profit > *:first-child:last-child > p {
    font-size: 24px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal {
    padding: 4px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate {
    padding: 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input {
    gap: 10px 0;
    padding: 10px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .global-input__placeholder {
    padding: 12px 15px 12px 21px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input ~ .text-info {
    padding: 12px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input ~ .text-info ~ .text-info {
    padding: 8px 0 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul {
    padding: 16px 0 11px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input.__past + ul li {
    font-weight: 400;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-input .bg-gradient-card,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .global-textarea .bg-gradient-card {
    border-radius: 32px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form label:after {
    right: 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate form .container-btn .btn-gradient {
    min-height: 56px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate .text-info > p {
    max-width: 160px;
    color: var(--text-white-60);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate .text-info > span {
    font-size: 24px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__calculate > .bg-gradient-card {
    display: none;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table--line.__form.__withdrawal .cabinet__table--filter-currency {
    padding: 0 0 66px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back {
    position: relative;
    left: auto;
    font-size: 18px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments .cabinet__table .link-back:before {
    background: url(img/icon/arrow-pagination.svg) left center no-repeat;
    background-size: 18px auto;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table--line.__pay > * > div {
    font-size: 18px;
    font-weight: 400;
    text-transform: inherit;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table--line.__pay > * > div img,
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table--line.__pay > * > div svg {
    width: 24px;
    height: auto;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay {
    flex-direction: column;
    gap: 16px 0;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__copy {
    order: 2;
    gap: 16px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__copy > * > p {
    padding: 0;
    color: var(--text-white-60);
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__copy .cabinet__table--link {
    padding: 20px 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__copy .cabinet__table--link-bg {
    width: calc(100% - 60px);
    letter-spacing: -0.03em;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__copy .cabinet__table--link-btn {
    right: 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__qr {
    flex-direction: unset;
    gap: 0 12px;
    padding: 20px 20px;
    max-width: 100%;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__qr--code {
    flex-shrink: 0;
    max-width: 140px;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .cabinet__table .content-pay__qr--info {
    letter-spacing: -0.03em;
    align-self: center;
  }
  .page-cabinet .cabinet-statistics.cabinet-academy.cabinet-payments.cabinet-pay .container-btn .btn-gradient {
    display: flex;
    min-height: 56px;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding {
    padding: 30px 0 0px;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding .cabinet__table {
    padding: 22px 20px 20px;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding .cabinet__table > * > * {
    gap: 9px 0;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding .cabinet__table--line.__refferal {
    gap: 14px 16px;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding .cabinet__table--count {
    order: 2;
    max-width: 102px;
  }
  .page-cabinet .cabinet-statistics.cabinet-branding .cabinet__table--invite {
    order: 2;
    max-width: 192px;
  }
  .page-cabinet .cabinet-statistics .merch__content {
    gap: 12px 12px;
    padding: 20px 20px;
  }
  .page-cabinet .cabinet-statistics .merch__content--item {
    max-width: 100%;
  }
  .page-cabinet .cabinet-statistics .merch__content--item picture {
    padding: 100% 0 0;
  }
  .page-cabinet .cabinet-statistics .merch__content--item:nth-child(-n+2) {
    max-width: 100%;
  }
  .page-cabinet .cabinet-task .cabinet-task__content {
    padding: 23px 20px 20px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content h3,
  .page-cabinet .cabinet-task .cabinet-task__content h2 {
    font-size: 24px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer {
    gap: 16px 0;
    padding: 14px 0 0;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer > li {
    min-height: 123px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header {
    flex-direction: column;
    gap: 20px 0;
    padding: 0 0 8px 0;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-info {
    gap: 0 12px;
    max-width: 280px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-info strong {
    padding: 3px 0 0;
    letter-spacing: -0.03em;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-score {
    display: flex;
    gap: 0 4px;
    padding: 0 24px 5px 26px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--text-white-60);
    justify-content: flex-end;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin img,
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header-coin svg {
    width: 26px;
    height: auto;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header > span {
    right: 28px;
    top: auto;
    bottom: 15px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--header:after {
    width: 100%;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description {
    padding: 0 1px;
    font-size: 16px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol {
    gap: 30px 0;
    padding: 0;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li {
    padding: 0 0 0 47px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li > p {
    margin: -3px 0 0;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol li:before {
    height: calc(100% + 30px);
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description ol .btn-gradient {
    top: 0;
    min-height: unset;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info {
    order: 2;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-info > *:not(img, svg, .bg-gradient-card) {
    font-size: 14px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer--description-other {
    padding: 16px 16px;
  }
  .page-cabinet .cabinet-task .cabinet-task__content .faq__answer .active {
    gap: 26px 0;
  }
  .page-cabinet .cabinet-transactions .cabinet__table {
    padding: 20px 20px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > *.simplebar-track {
    display: block;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * .simplebar-mask {
    overflow: hidden;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * .simplebar-mask > * > .simplebar-content-wrapper {
    overflow: hidden !important;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__filter > .container-scroll > * > .simplebar-placeholder {
    height: 559px !important;
    min-height: unset !important;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions {
    padding: 32px 0 16px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon {
    width: 48px;
    height: 48px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon img,
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions.__empty .not-transactions--icon svg {
    width: 18px;
    height: auto;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header,
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content {
    width: 687px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet__table--line-header > p {
    font-size: 12px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer li {
    padding: 21px 46px 19px 16px;
    min-height: unset;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header {
    flex-direction: unset;
    gap: 0 32px;
    padding: 0;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span) {
    gap: 0 12px;
    padding: 0;
    max-width: unset;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--date {
    max-width: 130px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--type {
    max-width: 97px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--valute {
    max-width: 75px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--valute img,
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--valute svg {
    width: 24px;
    height: auto;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > *:not(span).faq__answer--sum {
    max-width: 90px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--header > span {
    pointer-events: all;
    top: auto;
    bottom: auto;
    right: auto;
    left: calc(100% + 10px);
    background-size: 11px auto;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--description {
    gap: 16px 40px;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--description > * span {
    font-size: 14px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--description > * p {
    font-size: 16px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--description > *.faq__answer--socket {
    padding: 0;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--line.__transactions .cabinet-task__content .faq__answer--description > *:first-of-type {
    padding: 0;
    max-width: 100%;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-btn {
    position: relative;
    display: flex;
    gap: 0 12px;
    padding: 12px 24px 11px;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-btn *:not(.bg-gradient-card) {
    position: relative;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-header {
    position: relative;
    display: flex;
    padding: 12px 12px 12px 20px;
    margin: 0 0 24px;
    width: 100%;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.03em;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-header > .bg-gradient-card {
    border-radius: 0 0 32px 32px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-header > *:not(.bg-gradient-card) {
    position: relative;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-header > *:not(.bg-gradient-card).filter-close {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-header > *:not(.bg-gradient-card).filter-close:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(img/icon/close.svg) center center no-repeat;
    background-size: 20px auto;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content {
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateX(100%);
    transition: 0.3s all ease;
    overflow-y: auto;
    z-index: 55;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form {
    flex-grow: 1;
    padding: 0 20px;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form > * {
    max-width: 100%;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-content form .custom-select.active {
    z-index: 56;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-calendar .cabinet__table--filter-input {
    flex-direction: column;
    gap: 8px 0;
  }
  .page-cabinet .cabinet-transactions .cabinet__table--filter-calendar .cabinet__table--filter-input .field {
    max-width: 100%;
  }
  .page-cabinet .cabinet-motivation {
    padding: 30px 0 0;
  }
  .page-cabinet .cabinet-motivation .motivation__content {
    gap: 14px 0;
    padding: 20px 20px 18px;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description {
    flex-direction: column;
    gap: 16px 0;
    justify-content: flex-start;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--account {
    gap: 12px 0;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--account > p {
    font-size: 16px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--header {
    gap: 0 12px;
    font-size: 24px;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--header .btn-gradient {
    width: 40px;
    height: 40px;
    min-height: unset;
    font-size: 24px;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance {
    flex-direction: unset;
    padding: 8px 18px 8px 15px;
    width: 100%;
    min-height: 60px;
    font-weight: 400;
    justify-content: space-between;
  }
  .page-cabinet .cabinet-motivation .motivation__content--description .motivation__description--balance > span {
    max-width: 100px;
  }
  .page-cabinet .cabinet-motivation .motivation__content--progress {
    gap: 6px 0;
  }
  .page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--bar {
    padding: 2px 2px;
  }
  .page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--bar .btn-gradient {
    padding: 11px 0;
    min-height: unset;
  }
  .page-cabinet .cabinet-motivation .motivation__content--progress .motivation__progress--description {
    font-size: 16px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-motivation .motivation__content--info {
    padding: 3px 0 0;
    font-size: 14px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-motivation .motivation__content--info > p {
    flex-shrink: 1;
    letter-spacing: -0.03em;
  }
  .page-cabinet .cabinet-motivation .motivation__content--info img,
  .page-cabinet .cabinet-motivation .motivation__content--info svg {
    transform: translateY(-2px);
  }
  .page-cabinet.page-motivation .wrapper-cabinet .wrapper .affiliate-system > h2 {
    margin: 0 0 -12px;
  }
  .page-cabinet.page-motivation .affiliate-system {
    padding: 34px 0 102px;
  }
  .page-cabinet.page-motivation .affiliate-system .cabinet__table--line.__transactions .cabinet__table--line-header,
  .page-cabinet.page-motivation .affiliate-system .cabinet__table--line.__transactions .cabinet-task__content {
    width: 445px;
  }
  .page-cabinet.page-motivation .affiliate-system .cabinet__table--line.__transactions .cabinet-task__content {
    margin: 8px 0 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--nav ul {
    flex-direction: unset;
    gap: 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--nav ul li {
    padding: 5px 5px 5px;
    font-size: 14px;
    font-weight: 700;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--nav ul li span {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--nav ul li span span {
    order: 2;
    font-size: 10px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container {
    margin: 15px 0 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table {
    gap: 23px 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table .cabinet__table {
    gap: 39px 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__info .cabinet__table--item {
    gap: 2px 0;
    height: auto;
    padding: 18px 20px 12px;
    min-height: 84px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header {
    gap: 0 16px;
    padding: 0 16px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(1) {
    padding: 0;
    max-width: 135px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(2) {
    padding: 0;
    max-width: 95px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(3) {
    padding: 0;
    max-width: 45px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(4) {
    padding: 0;
    max-width: 85px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li {
    padding: 12px 16px 20px;
    min-height: 52px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li:first-of-type {
    padding: 10px 16px 20px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header {
    gap: 0 16px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:not(span) {
    padding: 0;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:not(span).faq__answer--login {
    max-width: 135px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:not(span).faq__answer--replenishment {
    max-width: 95px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:not(span).faq__answer--percent {
    max-width: 45px;
  }
  .page-cabinet.page-motivation .affiliate-system .global__types--container .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:not(span).faq__answer--profit {
    max-width: 85px;
  }
  .page-cabinet.page-motivation .affiliate-system__content {
    padding: 20px 20px;
  }
  .page-cabinet.page-motivation .reviews__pagination > * > *:first-child,
  .page-cabinet.page-motivation .reviews__pagination > * > *:last-child {
    transform: unset;
  }
  .page-cabinet .popup .cabinet__table--header {
    padding: 58px 20px 22px;
    white-space: unset;
  }
  .page-cabinet .popup .cabinet__table--header h3 {
    font-size: 32px;
  }
  .page-cabinet .popup .cabinet__table--header h3 .text-gradient {
    overflow-wrap: unset;
    white-space: unset;
    word-wrap: unset;
  }
  .page-cabinet .popup .cabinet__table--header:after {
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background-size: 32px auto;
  }
  .page-cabinet .popup .cabinet__table--show .wrapper h4 {
    padding: 0;
    margin: 0 0 0 38px;
    width: calc(100% - 38px);
    font-size: 24px;
  }
  .page-cabinet .popup .cabinet__table--show .wrapper h4 > * {
    white-space: unset;
  }
  .page-cabinet .popup .cabinet__table--show .wrapper > ol {
    padding: 32px 20px 32px;
  }
  .page-cabinet .popup .cabinet__table--show .wrapper ol > li > ol {
    width: 100%;
    transform: unset;
  }
  .page-cabinet .popup .cabinet__table--show .wrapper *:not(h1, h2, h3, h4, span) {
    font-size: 18px;
  }
  .page-cabinet .popup .cabinet__table--show picture {
    margin: 47px 0 0;
  }
  .page-cabinet .popup .popup-close {
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
  .page-cabinet .popup .popup-close:after {
    background-size: 14px auto;
  }
  .page-cabinet .popup .task__item {
    padding: 20px 20px;
  }
  .page-cabinet .popup .task__item--header > p {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
  }
  .page-cabinet .popup .task__item--header-icon {
    width: 56px;
    height: 56px;
  }
  .page-cabinet .popup .task__item--header-icon img,
  .page-cabinet .popup .task__item--header-icon svg {
    width: 32px;
    height: 32px;
  }
  .page-cabinet .popup .task__item--description {
    padding: 0;
    font-size: 16px;
  }
  .page-cabinet .popup.active.show__task--info .popup__content {
    max-width: 350px;
  }
  .page-cabinet .settings {
    padding: 31px 0 0;
  }
  .page-cabinet .settings * {
    letter-spacing: -0.03em;
  }
  .page-cabinet .settings .btn-gradient {
    min-height: 56px;
    font-size: 18px;
  }
  .page-cabinet .settings strong .text-gradient {
    letter-spacing: -0.04em;
  }
  .page-cabinet .settings h1,
  .page-cabinet .settings h2 {
    width: 100%;
  }
  .page-cabinet .settings__data {
    flex-direction: column;
    gap: 23px 0;
  }
  .page-cabinet .settings__data > * {
    padding: 25px 24px;
    width: 100%;
  }
  .page-cabinet .settings__data > *.settings__data--user .global-input {
    margin: 51px 0 0;
  }
  .page-cabinet .settings__data > *.settings__data--user form .bg-gradient-card {
    border-radius: 32px;
  }
  .page-cabinet .settings__data > *.settings__data--user form .container-btn {
    margin: 12px 0 0;
  }
  .page-cabinet .settings__data > *.settings__data--defense .container-btn {
    padding: 13px 0 0;
  }
  .page-cabinet .settings__data > *.settings__data--defense .container-btn .btn-gradient {
    max-width: 233px;
  }
  .page-cabinet .settings__data--avatar {
    margin: 0 auto 14px;
    width: 88px;
    transform: translateX(-12px);
  }
  .page-cabinet .settings__data--picture {
    width: 88px;
    height: 88px;
  }
  .page-cabinet .settings__data--description {
    padding: 18px 0 0;
    line-height: 1.38;
  }
  .page-cabinet .settings__bot {
    flex-direction: column;
    margin: 22px 0 0;
    align-content: flex-start;
    align-items: flex-start;
  }
  .page-cabinet .settings__bot--icon {
    margin: 0 0 13px;
  }
  .page-cabinet .settings__bot--description {
    margin: 0 0 25px;
    font-size: 18px;
  }
  .page-cabinet .settings__finance {
    padding: 0;
    margin: 24px 0 0;
  }
  .page-cabinet .settings__finance strong {
    font-size: 24px;
  }
  .page-cabinet .settings__finance strong .text-gradient {
    letter-spacing: -0.03em;
  }
  .page-cabinet .settings__finance--parameters {
    position: relative;
    padding: 27px 24px 24px;
  }
  .page-cabinet .settings__finance--select {
    flex-direction: column;
    gap: 21px 0;
  }
  .page-cabinet .settings__finance--select > .settings__finance--valute > span {
    padding: 0 0 63px;
  }
  .page-cabinet .settings__finance--radio {
    flex-direction: column;
    gap: 2px 0;
  }
  .page-cabinet .settings__finance--radio .bg-gradient-card {
    border-radius: 24px;
  }
  .page-cabinet .settings__finance--period .input-radio {
    padding: 8px 17px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
  }
  .page-cabinet .settings__finance--period .input-radio .btn-gradient {
    min-height: unset;
  }
  .page-cabinet .settings__finance--valute .custom-select {
    top: calc(100% - 50px);
    font-size: 18px;
    font-weight: 700;
  }
  .page-cabinet .settings__finance--charity {
    flex-direction: column;
    gap: 26px 0;
    align-items: flex-start;
    align-content: flex-start;
  }
  .page-cabinet .settings__finance--charity .input-checkbox {
    margin: 0;
  }
  .page-cabinet .settings__password,
  .page-cabinet .settings__personal {
    padding: 27px 24px 25px;
  }
  .page-cabinet .settings__password strong,
  .page-cabinet .settings__personal strong {
    font-size: 24px;
  }
  .page-cabinet .settings__password strong .text-gradient,
  .page-cabinet .settings__personal strong .text-gradient {
    letter-spacing: -0.03em;
  }
  .page-cabinet .settings__password form,
  .page-cabinet .settings__personal form {
    flex-direction: column;
    gap: 16px 0;
    padding: 50px 0 0;
  }
  .page-cabinet .settings__password form .bg-gradient-card,
  .page-cabinet .settings__personal form .bg-gradient-card {
    border-radius: 32px;
  }
  .page-cabinet .settings__password form > *:not(.bg-gradient-card),
  .page-cabinet .settings__personal form > *:not(.bg-gradient-card) {
    max-width: 100%;
  }
  .page-cabinet .settings__password form > *:not(.bg-gradient-card):not(.container-btn, :first-child),
  .page-cabinet .settings__personal form > *:not(.bg-gradient-card):not(.container-btn, :first-child) {
    margin: 34px 0 0;
  }
  .page-cabinet .settings__password form .input-label,
  .page-cabinet .settings__personal form .input-label {
    bottom: calc(100% + 13px);
  }
  .page-cabinet .settings .global-input input,
  .page-cabinet .settings .global-input textarea,
  .page-cabinet .settings .global-input .global-input__placeholder,
  .page-cabinet .settings .global-textarea input,
  .page-cabinet .settings .global-textarea textarea,
  .page-cabinet .settings .global-textarea .global-input__placeholder {
    padding: 16px 20px;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings {
    padding: 22px 0 71px;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table {
    padding: 26px 26px;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > p {
    font-size: 18px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:first-child {
    padding: 0 20px 0 22px;
    max-width: 27%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(2) {
    max-width: 21%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(3) {
    max-width: 15%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(4) {
    max-width: 23%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header > *:nth-child(5) {
    max-width: 14%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet__table--line-header,
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .cabinet-task__content {
    width: 850px;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li {
    font-size: 18px;
    font-weight: 400;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header {
    gap: 0;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:first-child {
    padding: 0 20px 0 22px;
    max-width: 27%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(2) {
    max-width: 21%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(3) {
    max-width: 15%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(4) {
    max-width: 23%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .cabinet__table--line.__transactions .faq__answer li .faq__answer--header > *:nth-child(5) {
    max-width: 14%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination {
    flex-direction: column;
    gap: 20px 0;
    padding: 20px 0 0;
    margin: 0;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination > ul {
    gap: 0 17px;
    width: 100%;
    justify-content: space-between;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .reviews__pagination .btn-complete-all {
    max-width: 100%;
  }
  .page-cabinet .cabinet-transactions.cabinet-task.__settings .simplebar-content {
    padding: 0 !important;
  }
}
@media (max-width: 379px) {
  body .nav-menu {
    padding: 32px 10px 40px;
  }
  .global-feedback.feedback-list.position-over {
    top: 86px;
    right: 10px;
    max-width: 340px;
  }
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin img,
  .global-feedback.feedback-list.position-over.size-large > * > * .global__growth *:not(.bg-gradient-card).global__growth--coin svg {
    height: 85px;
  }
  .global-feedback.feedback-list.position-under {
    max-width: 192px;
    bottom: 270px;
    right: 10px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large {
    left: 10px;
    max-width: 340px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .message {
    max-width: 340px;
  }
  .global-feedback.feedback-list.position-under:not(.position-over).size-large .message > * {
    max-width: 340px;
  }
  .wrapper {
    padding: 0 5px;
  }
  .footer .wrapper {
    padding: 48px 5px 0;
  }
}/*# sourceMappingURL=style.css.map */