* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  color: #130E19;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
input {
  width: 100%;
}

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: url(../img/bg.svg) no-repeat center 0;
  background-color: #F3F3F5;
  overflow: hidden;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  border: 1px solid rgba(19, 14, 25, 0.08);
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(91, 50, 244, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 100005;
}
.scroll-top-btn span {
  color: inherit;
  line-height: 1;
  pointer-events: none;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.scroll-top-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
#exchange,
#about1,
#faq,
#about2 {
  scroll-margin-top: 28px;
}

#exchange,
#about1,
#faq,
#about2 {
  scroll-margin-top: 28px;
}

.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 20px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes coin-float-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes coin-float-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes rocket-hover {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
header {
  margin-top: 24px;
  position: relative;
  z-index: 100002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .container .right .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
}
header .container .right .menu .menu__links {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
}
header .container .right .menu .menu__links a {
  padding: 17px 22px;
}
header .container .right .menu .menu__links a span {
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 300;
}
header .container .right .menu .menu__links a {
  border-radius: 5px;
  position: relative;
}
header .container .right .menu .menu__links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #5B32F4, #740FD6);
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
header .container .right .menu .menu__links a:hover::before,
header .container .right .menu .menu__links a.active::before {
  opacity: 1;
}
header .container .right .menu .menu__links a:hover span,
header .container .right .menu .menu__links a.active span {
  color: #fff;
}
header .container .right .menu .menu__links a span {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .container .right .menu .menu__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
header .container .right .menu .menu__meta .lang {
  position: relative;
  z-index: 100003;
}
header .container .right .menu .menu__meta .lang .lang__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
}
header .container .right .menu .menu__meta .lang .lang__flag {
  width: 25px;
}
header .container .right .menu .menu__meta .lang .lang__value {
  font-size: 14px;
  font-weight: 300;
}
header .container .right .menu .menu__meta .lang .lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  z-index: 100004;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(19, 14, 25, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
header .container .right .menu .menu__meta .lang .lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  transition: background 0.15s ease;
}
header .container .right .menu .menu__meta .lang .lang__option .lang__option-flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
header .container .right .menu .menu__meta .lang .lang__option .lang__option-label {
  flex: 1;
}
header .container .right .menu .menu__meta .lang .lang__option:hover {
  background: #F3F3F5;
}
header .container .right .menu .menu__meta .lang.is-open .lang__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header .container .right .menu .menu__meta .course {
  height: 50px;
  background: #130E19;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  padding: 10px 18px;
  flex-shrink: 0;
}
header .container .right .header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
header .container .right .header__burger .header__burger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: #130E19;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.onlymob {
  display: none;
}

@media (max-width: 1114px) {
  body.header--nav-open {
    overflow: hidden;
  }
  .onlymob {
    display: flex;
  }
  .header .container .right .menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    margin: 100px 20px 0;
    border-radius: 0;
    gap: 0;
    background: #F3F3F5;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
  .logo {
    z-index: 1000;
  }
  .header .container .right .menu .menu__links {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .header .container .right .menu .menu__links a {
    padding: 18px 16px;
    border-radius: 8px;
  }
  .header .container .right .menu .menu__links a + a {
    margin-top: 4px;
  }
  .header .container .right .menu .menu__meta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(19, 14, 25, 0.08);
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .header .container .right .menu .menu__meta .lang .lang__menu {
    left: 0;
    right: auto;
  }
  .header .container .right .menu .menu__meta .course {
    display: none;
    margin-top: 0;
    width: auto;
    max-width: min(100%, 220px);
    flex-shrink: 0;
  }
  .header .container .right .header__burger {
    display: flex;
    position: relative;
    z-index: 301;
  }
  .header.header--nav-open .container .right .menu {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header.header--nav-open .container .right .header__burger {
    z-index: 302;
  }
  .header.header--nav-open .container .right .header__burger .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header.header--nav-open .container .right .header__burger .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header.header--nav-open .container .right .header__burger .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
main {
  margin-top: 56px;
}
main .container {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: end;
}
main .img {
  height: 296px;
  position: relative;
}
main .img .rocket {
  position: relative;
  z-index: -2;
  display: block;
  margin: 0 auto;
  animation: rocket-hover 8s ease-in-out infinite;
}
main .img .coin1 {
  position: absolute;
  top: -46px;
  left: 115px;
  z-index: -1;
  animation: coin-float-1 5s ease-in-out infinite;
}
main .img .coin2 {
  position: absolute;
  top: 52px;
  left: 256px;
  z-index: -3;
  animation: coin-float-2 6s ease-in-out infinite;
  animation-delay: -2.5s;
}
main h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 50px;
}
main h1 span {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  background-clip: text;
  color: transparent;
}
main .sub {
  margin-top: 15px;
  color: #9083A9;
  font-size: 14px;
}
main .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
main .tags .tag {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(#E5DBF2, #E5DBF2) padding-box, linear-gradient(90deg, #740FD6, #5B32F4) border-box;
}
main .tags .tag span {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  background-clip: text;
  color: transparent;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  main .img .rocket,
  main .img .coin1,
  main .img .coin2 {
    animation: none !important;
  }
}
.exchange {
  margin-top: 30px;
}
.exchange .box {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}
.exchange .box .topflex {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  justify-content: space-between;
  gap: 15px;
}
.exchange .box .topflex .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exchange .box .topflex .flex p {
  font-size: 18px;
}
.exchange .box .topflex .flex span {
  color: #9083A9;
  font-size: 14px;
}
.exchange .box .input_crypto {
  padding: 13px;
  background: #F3F3F5;
  margin-top: 10px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  position: relative;
  border-radius: 10px;
}
.exchange .box .input_crypto .dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #F3F3F5;
  border-radius: 10px;
  border: 1px solid rgba(19, 14, 25, 0.1);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}
.exchange .box .input_crypto .dropdown .inp_group {
  margin: 25px;
  margin-bottom: 20px;
}
.exchange .box .input_crypto .dropdown .list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 15px;
  max-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: max-height 260ms ease;
  scrollbar-width: thin;
  scrollbar-color: #6a24ea #ebe7f5;
}
.exchange .box .input_crypto .dropdown .list::-webkit-scrollbar {
  width: 6px;
}
.exchange .box .input_crypto .dropdown .list::-webkit-scrollbar-track {
  background: #ebe7f5;
  border-radius: 999px;
}
.exchange .box .input_crypto .dropdown .list::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border-radius: 999px;
}
.exchange .box .input_crypto .dropdown .list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6a3bff, #7d1ee6);
}
.exchange .box .input_crypto .dropdown .list .item {
  display: flex;
  align-items: center;
  padding: 5px 26px;
  gap: 5px;
  cursor: pointer;
}
.exchange .box .input_crypto .dropdown .list .item p {
  font-size: 14px;
  font-weight: 100;
  color: #130E19;
}
.exchange .box .input_crypto .dropdown .list .item {
  transition: 0.3s;
}
.exchange .box .input_crypto .dropdown .list .item:hover {
  background: linear-gradient(to right, #5B32F4, #740FD6);
}
.exchange .box .input_crypto .dropdown .list .item:hover p {
  color: #FFF;
}
.exchange .box .input_crypto.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s;
}
.exchange .box .input_crypto.is-open .dropdown .list {
  max-height: 300px;
}
.exchange .box .input_crypto.is-open .select .arrow {
  transform: rotate(180deg);
}
.exchange .box .input_crypto .select {
  border: 1px solid rgba(19, 14, 25, 0.1);
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  min-width: 148px;
  padding: 0 10px;
}
.exchange .box .input_crypto .select .arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.exchange .box .input_crypto .select span {
  font-size: 16px;
  white-space: nowrap;
}
.exchange .box .input_crypto input {
  background: none;
  font-size: 22px;
  font-weight: 800;
}
.exchange .box .input_crypto .money {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.exchange .box .input_crypto .money p {
  margin-top: 4px;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}
.exchange .box .input_crypto p {
  color: #9083A9;
  font-size: 14px;
}
.exchange .box .swap {
  background: none;
  padding-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: end;
}
.exchange .box .topflex2 {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  align-items: end;
  gap: 10px;
}
.exchange .box .topflex2 .select_course {
  display: flex;
  align-items: end;
  width: 100%;
}
.exchange .box .topflex2 .select_course .titleinp {
  display: none;
}
.exchange .box .topflex2 .select_course .box_select {
  padding: 5px;
  background: #F3F3F5;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.exchange .box .topflex2 .select_course .box_select .select {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9083A9;
  font-size: 14px;
  cursor: pointer;
}
.exchange .box .topflex2 .select_course .box_select .select.active {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  color: #FFFFFF;
}
.exchange .box .memo-row {
  width: 100%;
  display: block;
  margin-top: 18px;
}
.exchange .box .memo-row .titleinp {
  margin-top: 0;
}
.exchange .box .memo-row .inp_group {
  width: 100%;
}
.exchange .box .memo-row input {
  width: 100%;
}
.exchange .box .flex_bottom {
  margin-top: 20px;
  background: linear-gradient(to right, #5B32F4, #740FD6);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exchange .box .flex_bottom .amount {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}
.exchange .box .flex_bottom .sub {
  font-size: 14px;
  color: #fff;
  font-weight: 100;
  margin-top: 2px;
  max-width: 560px;
  line-height: 1.35;
}
.exchange .box .flex_bottom a {
  padding: 15px 27px;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.2s;
  white-space: nowrap;
}
.exchange .box .flex_bottom a:hover {
  opacity: 0.8;
}
.exchange .box .bottom_text {
  margin-top: 30px;
  text-align: center;
  color: #9083A9;
}
.exchange .box .bottom_text a {
  text-decoration: underline;
  color: #9083A9;
}

.titleinp {
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
}
.titleinp span {
  font-weight: 700;
}

.inp_group {
  background: #F3F3F5;
  border-radius: 10px;
  height: 50px;
  position: relative;
  margin-top: 10px;
}
.inp_group input {
  width: 100%;
  height: 50px;
  background: #F3F3F5;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  color: #130E19;
}
.inp_group input::placeholder, .inp_group input:disabled {
  color: #9083A9;
}
.inp_group.gradient input {
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(#E5DBF2, #E5DBF2) padding-box, linear-gradient(90deg, #740FD6, #5B32F4) border-box !important;
  font-size: 14px !important;
  font-weight: 100 !important;
  padding-left: 37px;
  color: #740FD6;
}
.inp_group.gradient input::placeholder {
  color: #740FD6;
}
.inp_group.icon_left .icon {
  position: absolute;
  left: 12px;
  top: 15px;
}
.inp_group.right_icon input {
  padding-right: 50px;
}
.inp_group.right_icon .icon {
  position: absolute;
  top: 15px;
  right: 12px;
}
.inp_group.right_icon .icon.copy {
  cursor: pointer;
}

.top_items {
  margin-top: 50px;
}
.top_items .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.top_items .container .item {
  padding: 28px 31px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.top_items .container .item .title {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: 700;
}
.top_items .container .item .text {
  font-size: 14px;
}
.top_items .container .item img {
  width: 40px;
  height: 40px;
}
.top_items .container .item:nth-child(1) {
  background-image: url("../img/Mask group1.svg");
}
.top_items .container .item:nth-child(2) {
  background-image: url("../img/Mask group2.svg");
}
.top_items .container .item:nth-child(3) {
  background-image: url("../img/Mask group3.svg");
}
.top_items .container .item {
  background: #fff;
}

.transactions .flex_transactions {
  margin-top: 25px;
  display: grid;
  gap: 20px;
  grid-template-columns: 0.45fr 0.55fr;
}
.transactions .flex_transactions .left {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}
.transactions .flex_transactions .left .title {
  font-size: 24px;
  font-weight: 700;
}
.transactions .flex_transactions .left .items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.transactions .flex_transactions .left .items .item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 100px;
  gap: 20px;
  background: #F3F3F5;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
}
.transactions .flex_transactions .left .items .item .litem {
  display: flex;
  gap: 14px;
  align-items: center;
}
.transactions .flex_transactions .left .items .item .litem .coin {
  display: flex;
  align-items: center;
  gap: 10px;
}
.transactions .flex_transactions .left .items .item .litem .coin span {
  font-size: 14px;
}
.transactions .flex_transactions .left .items .item a {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.transactions .flex_transactions .left .items .item a:hover {
  opacity: 0.8;
}
.transactions .flex_transactions .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.transactions .flex_transactions .right .item {
  padding: 15px 18px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  gap: 10px;
}
.transactions .flex_transactions .right .item .coin_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.transactions .flex_transactions .right .item .coin_info .flex_trans {
  display: flex;
  align-items: center;
  gap: 5px;
}
.transactions .flex_transactions .right .item span {
  color: #9083A9;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  text-align: right;
}
.transactions .flex_transactions .right .item p {
  font-size: 18px;
  font-weight: 700;
}
.transactions .flex_transactions .right .item .center {
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

.subtitle {
  font-size: 14px;
  color: #9083A9;
}

.transactions {
  margin-top: 50px;
}

.faq {
  margin-top: 50px;
  background: linear-gradient(to right, #5B32F4, #740FD6);
  padding: 33px 0;
}
.faq h2 {
  color: #fff;
}
.faq .subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.faq .container {
  display: grid;
  grid-template-columns: 0.65fr 0.45fr;
  gap: 50px;
}
.faq .items {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.faq .items .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.faq .items .item .arrow {
  transition: transform 0.25s ease;
}
.faq .items .item .head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 50px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq .items .item .head .quest {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.faq .items .item .body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
  will-change: max-height, opacity, transform;
}
.faq .items .item .body .text {
  font-size: 14px;
  color: #fff;
  padding-bottom: 11px;
}
.faq .items .item.opened .body {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.faq .items .item.opened .arrow {
  transform: rotate(135deg);
}
.faq .support_box {
  padding: 18px 25px;
  border-radius: 10px;
  background: #F3F3F5;
}
.faq .support_box h3 {
  font-size: 30px;
  font-weight: 700;
}
.faq .support_box .subtitle {
  color: #9083A9;
  margin-top: 10px;
}
.faq .support_box .messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.faq .support_box .messages .message {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 10px;
}
.faq .support_box .messages .message .text {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
}
.faq .support_box .messages .message.from .text {
  background: #EEEAFF;
}
.faq .support_box .btn {
  padding: 17px 20px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right, #5B32F4, #740FD6);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 100;
  width: fit-content;
  color: #fff;
  transition: 0.3s;
}
.faq .support_box .btn:hover {
  opacity: 0.8;
}

.about {
  margin-top: 70px;
}
.about .container .box {
  padding: 26px 29px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
}
.about .container .box .img {
  position: relative;
}
.about .container .box .img img {
  position: absolute;
  top: -55px;
  left: -40px;
}
.about .container .box h2 {
  font-size: 40px;
  font-weight: 700;
}
.about .container .box .text {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.55;
  white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
  .faq .items .item .arrow,
  .faq .items .item .body {
    transition: none !important;
  }
}
footer {
  margin-top: 90px;
}
footer .container {
  background: #130E19;
  border-radius: 30px 30px 0 0;
  padding: 46px 58px 54px;
  display: grid;
  grid-template-columns: 410px 1fr;
  row-gap: 44px;
}
footer .container .left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer .container .left .text {
  font-size: 14px;
  color: #fff;
}
footer .container .left .socs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
footer .container .left .socs a {
  align-items: center;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}
footer .container .left .socs a.social-link--icon img {
  display: block;
  height: 39px;
  width: 39px;
}
footer .container .left .socs a.social-link--text {
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border-radius: 10px;
  height: 39px;
  width: 39px;
}
footer .container .left .socs a.social-link--text span {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
footer .container .left .socs a:hover {
  opacity: 0.7;
}
footer .container .right {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}
footer .container .right .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
footer .container .right .links a {
  color: #fff;
  font-size: 14px;
}
footer .container .right .title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

footer .container .footer-seo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(240px, 1fr) minmax(420px, 1.75fr);
  gap: 34px;
  align-items: start;
  padding-top: 4px;
}

footer .container .footer-seo .title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

footer .container .footer-seo .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .container .footer-seo .links a {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  transition: .2s;
}

footer .container .footer-seo .links a:hover {
  color: #A890FF;
}

footer .container .footer-seo .seo-pairs-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 12px;
}

.rules {
  margin-top: 70px;
}
.rules h2 {
  text-align: center;
}
.rules h2 + .breadcrumbs {
  margin-top: 28px;
}
.rules .box {
  margin-top: 30px;
}
.rules:not(.rules--reviews) .box {
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
.rules .box p {
  font-size: 14px;
}
.rules .box p span {
  font-weight: 800;
}
.rules .box h3 {
  margin: 26px 0 12px;
  font-size: 20px;
  line-height: 1.2;
}
.rules .box h3:first-child {
  margin-top: 0;
}
.rules .box ul,
.rules .box ol {
  margin: 12px 0 20px;
  padding-left: 22px;
}
.rules .box li {
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.45;
}
.rules .box a {
  color: #7445E8;
  overflow-wrap: anywhere;
}
.rules .box.blog-box {
  background: transparent;
  padding: 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 24px;
  color: #9083A9;
  font-size: 14px;
}
.breadcrumbs a {
  color: #7445E8;
}
.blog-list {
  display: grid;
  gap: 18px;
}
.blog-card,
.blog-article {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.blog-card time,
.blog-article time {
  display: block;
  margin-bottom: 12px;
  color: #9083A9;
  font-size: 14px;
}
.blog-card h3,
.blog-article h3 {
  margin: 0 0 12px;
}
.blog-card p,
.blog-article p {
  margin: 0 0 16px;
  line-height: 1.55;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 700;
}
.blog-empty {
  background: #fff;
  border-radius: 10px;
  color: #635675;
  padding: 30px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(21, 9, 42, 0.06);
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.review-card__top strong {
  display: block;
  font-size: 18px;
}
.review-card__top time {
  display: block;
  margin-top: 4px;
  color: #9083A9;
  font-size: 13px;
}
.review-card__badge {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(116, 69, 232, 0.1);
  color: #7445E8;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}
.review-card__stars {
  color: #7445E8;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  color: #2A2438;
  line-height: 1.55;
  margin-bottom: 18px;
}
.review-card__meta {
  color: #9083A9;
  font-size: 13px;
  font-weight: 700;
}
.review-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(21, 9, 42, 0.06);
  margin-top: 24px;
  padding: 28px;
}
.review-form-card__head {
  margin-bottom: 18px;
}
.review-form-card__head h3 {
  margin-bottom: 8px;
}
.review-form-card__head p {
  color: #9083A9;
  margin: 0;
}
.review-form {
  display: grid;
  gap: 16px;
}
.review-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-form label {
  display: grid;
  gap: 8px;
}
.review-form label span {
  color: #2A2438;
  font-weight: 700;
}
.review-form input,
.review-form select,
.review-form textarea {
  background: #F5F4F7;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #100C1A;
  font-size: 16px;
  outline: none;
  padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease;
}
.review-form textarea {
  min-height: 140px;
  resize: vertical;
}
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  background: #fff;
  border-color: #7445E8;
}
.review-form .is-invalid {
  border-color: #D14360;
}
.review-form .field-error {
  color: #D14360;
  font-size: 13px;
  font-weight: 700;
  min-height: 16px;
}
.review-form__captcha {
  min-height: 78px;
}
.review-form__trap {
  left: -9999px;
  opacity: 0;
  position: absolute;
}
.review-form__msg {
  border-radius: 12px;
  display: none;
  font-weight: 700;
  padding: 12px 14px;
}
.review-form__msg.is-error,
.review-form__msg.is-success {
  display: block;
}
.review-form__msg.is-error {
  background: rgba(217, 74, 74, .12);
  color: #D14360;
}
.review-form__msg.is-success {
  background: rgba(74, 176, 119, .12);
  color: #238255;
}
.review-form button {
  align-items: center;
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  padding: 0 24px;
}
.review-form button:disabled {
  cursor: wait;
  opacity: .7;
}
.api-docs {
  display: grid;
  gap: 22px;
}
.api-docs__hero,
.api-docs__panel {
  background: #fff;
  border: 1px solid rgba(116, 69, 232, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(21, 9, 42, 0.08);
}
.api-docs__hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 242, 251, 0.94)),
    url("../img/bg.svg") top center repeat;
  color: #130E19;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  overflow: hidden;
  padding: 34px;
  position: relative;
}
.api-docs__hero::after {
  background: linear-gradient(135deg, rgba(91, 50, 244, 0.18), rgba(116, 15, 214, 0));
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -72px;
  top: -96px;
  width: 220px;
}
.api-docs__hero-copy {
  position: relative;
  z-index: 1;
}
.api-docs__eyebrow {
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border: 1px solid rgba(116, 69, 232, 0.18);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 8px 12px;
}
.api-docs__hero p {
  color: #130E19;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  max-width: 760px;
}
.api-docs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.api-docs__chips span {
  background: #fff;
  border: 1px solid rgba(116, 69, 232, 0.18);
  border-radius: 12px;
  color: #5B32F4;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 14px;
}
.api-docs__endpoint-card {
  background: #F3F3F5;
  border: 1px solid rgba(116, 69, 232, 0.12);
  border-radius: 22px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  position: relative;
  z-index: 1;
}
.api-docs__endpoint-card span,
.api-docs__endpoint-card small {
  color: #9083A9;
  font-size: 13px;
  font-weight: 800;
}
.api-docs__endpoint-card code {
  color: #5B32F4;
  font-size: 17px;
  overflow-wrap: anywhere;
}
.api-docs__overview {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
}
.api-docs__panel {
  padding: 28px;
}
.api-docs__panel h3,
.api-docs__panel p {
  margin: 0;
}
.api-docs__panel > p,
.api-docs__note-card p {
  color: #635675;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 14px;
}
.api-docs__panel-head {
  align-items: center;
  display: flex;
  gap: 12px;
}
.api-docs__panel-head > span {
  align-items: center;
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 10px;
}
.api-docs__panel-head h3 {
  color: #120D1D;
  font-size: 24px;
  line-height: 1.12;
}
.api-docs__section-head {
  margin-top: 8px;
}
.api-docs code {
  color: #7445E8;
  font-weight: 800;
}
.api-code {
  margin-top: 18px;
}
.api-code__bar {
  align-items: center;
  background: #21172F;
  border-radius: 16px 16px 0 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.api-code__bar span {
  border-radius: 999px;
  display: block;
  height: 9px;
  width: 9px;
}
.api-code__bar span:nth-child(1) {
  background: #FF6B6B;
}
.api-code__bar span:nth-child(2) {
  background: #F5C95F;
}
.api-code__bar span:nth-child(3) {
  background: #59D391;
}
.api-code__bar strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin-left: 6px;
}
.api-docs pre {
  background: #120D1D;
  border-radius: 0 0 16px 16px;
  color: #fff;
  margin: 0;
  overflow: auto;
  padding: 20px;
}
.api-docs pre code {
  color: #fff;
  font-family: Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
  white-space: pre;
}
.api-docs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.api-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.api-action-card {
  background: linear-gradient(180deg, #F6F3FA 0%, #fff 100%);
  border: 1px solid rgba(116, 69, 232, 0.12);
  border-radius: 20px;
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
}
.api-action-card__num {
  align-items: center;
  background: rgba(116, 69, 232, 0.1);
  border-radius: 10px;
  color: #7445E8;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 38px;
}
.api-action-card code {
  font-size: 16px;
}
.api-actions p,
.api-docs__note {
  color: #635675;
  line-height: 1.5;
  margin: 0;
}
.account-modal[hidden] {
  display: none;
}
body.account-modal-open {
  overflow: hidden;
}
.account-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
}
.account-modal__backdrop {
  background: rgba(18, 13, 29, .58);
  inset: 0;
  position: absolute;
}
.account-modal__dialog {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(18, 13, 29, .25);
  max-width: 560px;
  padding: 28px;
  position: relative;
  width: 100%;
}
.account-modal__close {
  align-items: center;
  background: #F5F4F7;
  border: 0;
  border-radius: 50%;
  color: #100C1A;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: -14px;
  top: -14px;
  width: 38px;
  box-shadow: 0 12px 30px rgba(18, 13, 29, .18);
  z-index: 2;
}
.account-tabs {
  background: #F5F4F7;
  border-radius: 14px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
  padding: 4px;
}
.account-tabs button {
  background: transparent;
  border: 0;
  border-radius: 11px;
  color: #9083A9;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 12px;
  white-space: nowrap;
}
.account-tabs button.active {
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  color: #fff;
}
.account-form {
  display: none;
  gap: 14px;
}
.account-form.active {
  display: grid;
}
.account-form h3 {
  margin-bottom: 4px;
  padding-right: 36px;
}
.account-form label {
  display: grid;
  gap: 8px;
}
.account-form label span {
  color: #2A2438;
  font-weight: 700;
}
.account-form input {
  background: #F5F4F7;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #100C1A;
  font-size: 16px;
  outline: none;
  padding: 14px 16px;
}
.account-form input:focus {
  background: #fff;
  border-color: #7445E8;
}
.account-form input.is-invalid {
  border-color: #d94a4a;
}
.account-form__msg {
  border-radius: 12px;
  display: none;
  font-weight: 700;
  padding: 12px 14px;
}
.account-form__msg.is-error,
.account-form__msg.is-success {
  display: block;
}
.account-form__msg.is-error {
  background: rgba(217, 74, 74, .12);
  color: #a83f22;
}
.account-form__msg.is-success {
  background: rgba(74, 176, 119, .12);
  color: #238255;
}
.account-form button[type="submit"] {
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  min-height: 48px;
  padding: 0 24px;
}
.course a,
.tag.onlymob a {
  color: inherit;
  text-decoration: none;
}
.account-section {
  background: #F3F2F5 url("../img/bg.svg") top center repeat;
  padding: 70px 0 90px;
}
.account-page-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(18, 13, 29, .08);
  margin: 0 auto;
  max-width: 620px;
  padding: 34px;
}
.account-page-card__intro {
  margin-bottom: 24px;
}
.account-page-card__intro h1 {
  margin-bottom: 10px;
}
.account-page-card__intro p {
  color: #9083A9;
  line-height: 1.55;
  margin: 0;
}
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.blog-pagination a {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  color: #382b4f;
  display: inline-flex;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 12px;
  text-decoration: none;
}
.blog-pagination a.active {
  background: #7445E8;
  color: #fff;
}

@media screen and (max-width: 1070px) {
  .reviews-grid,
  .api-docs__grid,
  .api-docs__overview,
  .api-actions,
  .review-form__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .api-docs__hero {
    grid-template-columns: repeat(1, 1fr);
  }
  .account-tabs {
    grid-template-columns: repeat(1, 1fr);
  }
  .transactions .flex_transactions {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 620px) {
  .api-docs__hero,
  .api-docs__panel {
    border-radius: 20px;
    padding: 20px;
  }
  .api-docs__hero p {
    font-size: 20px;
  }
  .api-docs__panel-head h3 {
    font-size: 20px;
  }
  .api-docs__endpoint-card code {
    font-size: 14px;
  }
  .account-modal {
    padding: 14px;
  }
  .account-modal__dialog {
    padding: 22px;
  }
  .account-modal__close {
    right: 12px;
    top: 12px;
  }
  .account-tabs {
    margin-top: 34px;
  }
}
@media screen and (max-width: 960px) {
  .exchange .box .topflex {
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange .box .topflex2 {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .container {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .container .right {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }
  footer .container .footer-seo {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 6px;
  }
  footer .container .footer-seo .seo-pairs {
    grid-column: 1 / -1;
  }
  footer .container .footer-seo .seo-pairs-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 870px) {
  .about .container .box .img {
    display: none;
  }
  .about .container .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 840px) {
  .top_items .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 790px) {
  .faq .container {
    grid-template-columns: repeat(1, 1fr);
  }
  main .img {
    display: none;
  }
  main .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 620px) {
  footer .container {
    padding: 36px 28px 42px;
  }
  footer .container .right {
    grid-template-columns: 1fr;
  }
  footer .container .footer-seo {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  footer .container .footer-seo .seo-pairs {
    grid-column: auto;
  }
  footer .container .footer-seo .seo-pairs-links {
    grid-template-columns: 1fr;
  }
  .blog-card,
  .blog-article {
    padding: 24px;
  }
  .exchange .box .flex_bottom {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange .box .flex_bottom a {
    display: block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .exchange .box .topflex .flex {
    flex-direction: column;
    align-items: start;
  }
  .exchange .box .input_crypto {
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange .box .topflex2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange .box .topflex2 .select_course {
    order: -1;
    margin-top: 20px;
  }
  .exchange .box .topflex2 .select_course .box_select {
    display: flex;
    flex-direction: column;
    height: fit-content;
  }
  .exchange .box .topflex2 .titleinp {
    margin-top: 10px;
  }
  .transactions .flex_transactions .left .items .item {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
    background: none;
    padding: 0;
  }
  .transactions .flex_transactions .left .items .item .litem {
    justify-content: space-between;
    width: 100%;
  }
  main h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .transactions .flex_transactions .right .item {
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange_page .box .topflex3 .btns_center .btn {
    width: 100%;
    text-align: center;
  }
}
.exchange_page {
  margin-top: 70px;
}
.exchange_page h2 {
  text-align: center;
}
.exchange_page .box {
  margin-top: 30px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
.exchange_page .box .etaps {
  max-width: 950px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.exchange_page .box .etaps .etap {
  position: relative;
  text-align: center;
}
.exchange_page .box .etaps .etap .num {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(#E5DBF2, #E5DBF2) padding-box, linear-gradient(90deg, #740FD6, #5B32F4) border-box;
  transform: translateY(50%);
  z-index: 9;
}
.exchange_page .box .etaps .etap .num span {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-weight: 700;
}
.exchange_page .box .etaps .etap::after {
  content: "";
  background: linear-gradient(to right, #5B32F4, #740FD6);
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.exchange_page .box .etaps .etap .name {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  background-clip: text;
  color: transparent;
  opacity: 0.3;
  font-size: 14px;
  padding-bottom: 8px;
}
.exchange_page .box .etaps .etap.active .name {
  opacity: 1;
  font-weight: 700;
}
.exchange_page .box .etaps .etap.active .num {
  background: linear-gradient(to right, #5B32F4, #740FD6);
}
.exchange_page .box .etaps .etap.active .num span {
  color: #fff;
}
.exchange_page .box .topflex {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
.exchange_page .box .topflex .selected {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exchange_page .box .topflex .selected img {
  width: 27px;
  height: 27px;
}
.exchange_page .box .input_crypto {
  grid-template-columns: 50px 1fr;
}
.exchange_page .box .topflex3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 277px 1fr 185px;
  gap: 20px;
}
.exchange_page .box .topflex3 .titleinp:first-child {
  margin-top: 0;
}
.exchange_page .box .topflex3 .qr {
  background: #F3F3F5;
  border-radius: 10px;
  padding: 15px;
}
.exchange_page .box .topflex3 .qr .img {
  background: #FFF;
  border-radius: 10px;
  width: 247px;
  height: 247px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exchange_page .box .topflex3 .qr .btns {
  display: grid;
  grid-template-columns: repeat(2, auto);
  width: 100%;
  padding: 5px;
  background: #fff;
  margin-top: 15px;
  border-radius: 10px;
}
.exchange_page .box .topflex3 .qr .btns .btn {
  color: #9083A9;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.exchange_page .box .topflex3 .qr .btns .btn span {
  color: #9083A9;
}
.exchange_page .box .topflex3 .qr .btns .btn.active {
  background: linear-gradient(to right, #5B32F4, #740FD6);
  color: #fff;
}
.exchange_page .box .topflex3 .qr .btns .btn.active span {
  color: #fff;
}
.exchange_page .box .topflex3 .btns_center {
  display: flex;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.exchange_page .box .topflex3 .btns_center .btn {
  padding: 17px 30px;
  border: 1px solid transparent;
  color: #740FD6;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
  background: linear-gradient(#E5DBF2, #E5DBF2) padding-box, linear-gradient(90deg, #740FD6, #5B32F4) border-box;
}
.exchange_page .box .topflex3 .btns_center .btn.active {
  background: linear-gradient(90deg, #740FD6, #5B32F4);
  color: #FFF;
}
.exchange_page .box .topflex3 .btns_center .btn:hover {
  opacity: 0.7;
}
.exchange_page .box .topflex3 .text {
  margin-top: 10px;
  font-size: 14px;
}
.exchange_page .box .topflex3 .text span {
  font-weight: 700;
}
.exchange_page .box .topflex3 .right_box {
  border-radius: 10px;
  padding: 16px;
  background: #F3F3F5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exchange_page .box .topflex3 .right_box .item .name {
  color: #9083A9;
  font-size: 14px;
}
.exchange_page .box .topflex3 .right_box .item .val {
  font-size: 17px;
  font-weight: 700;
  color: #130E19;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.exchange_page .box .topflex3 .right_box .item .val .copy {
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .exchange_page .box .etaps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .exchange_page .box .etaps {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
@media screen and (max-width: 780px) {
  .exchange_page .box .topflex {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 880px) {
  .exchange_page .box .topflex3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .exchange_page .box .topflex3 .qr .img {
    margin: auto;
    width: 180px;
    height: 180px;
    padding: 10px;
  }
  .exchange_page .box .topflex3 .qr .btns {
    display: flex;
    flex-direction: column;
  }
  .exchange_page .box {
    padding: 30px;
  }
  .transactions .flex_transactions .left .items .item {
    padding: 0;
  }
}
@media screen and (max-width: 1070px) {
  .transactions .flex_transactions {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .exchange .box .input_crypto input {
    font-size: 14px;
  }
}
.error {
  font-size: 14px;
  margin-top: 10px;
  color: #FF0000;
}

/* TrustChange dynamic integration */
body.home-page {
  overflow-x: hidden;
}

body.pre-i18n {
  visibility: hidden;
}

.exchange_page .box .etaps .etap.done .name {
  opacity: 1;
  font-weight: 700;
}

.exchange_page .box .etaps .etap.done .num {
  background: linear-gradient(to right, #5B32F4, #740FD6);
}

.exchange_page .box .etaps .etap.done .num span {
  color: #fff;
}

.exchange_page .box .etaps .etap.cancelled .name {
  color: #D14360;
  opacity: 1;
  background: none;
}

.exchange_page .box .etaps .etap.cancelled .num {
  background: #D14360;
}

.exchange_page .box .etaps .etap.cancelled .num span {
  color: #fff;
  background: none;
}

.exchange_page .box .topflex3 .qr .img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.order-page .copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-page .copy-inline .copy,
.exchange_page .box .topflex3 .right_box .item .val .copy,
.exchange_page .box .topflex3 .inp_group.right_icon .icon.copy {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.copy-toast {
  position: absolute;
  z-index: 9999;
  transform: translate(-50%, -6px);
  padding: 7px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5B32F4, #740FD6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 8px 20px rgba(91, 50, 244, 0.22);
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -12px);
}

.exchange_page .box .topflex .input_crypto p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exchange_page .box .topflex3 .btns_center:empty {
  display: none;
}

#loc_menu_wrap {
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 120px;
}

#loc_menu_wrap li {
  margin: 0;
}

#loc_menu_wrap a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 8px;
}

#loc_menu_wrap a:hover {
  background: #F3F3F5;
}

#loc_menu_wrap .lang__flag {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: cover;
  border-radius: 2px;
}

.exchange .box .input_crypto .select {
  width: auto;
  justify-content: flex-start;
  padding: 0 12px;
}

.exchange .box .input_crypto .select .icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 27px;
}

.exchange .box .input_crypto .select .label {
  flex: 0 1 auto;
  text-align: left;
  white-space: nowrap;
}

.exchange .box .input_crypto .dropdown .list .item {
  width: 100%;
  background: transparent;
  text-align: left;
}

.exchange .box .input_crypto .dropdown .list .item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 27px;
}

.transactions .flex_transactions .left .items .item .litem .coin img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 27px;
}

.transactions .flex_transactions .left .items .item .litem > img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.transactions .flex_transactions .right .item .coin_info .flex_trans img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 27px;
}

.transactions .flex_transactions .right .item .center img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.exchange .box .topflex2 .select_course {
  gap: 12px;
}

.exchange .box .topflex2 .select_course .titleinp {
  margin-top: 0;
  width: 92px;
  flex: 0 0 92px;
  line-height: 1.05;
}

.msg {
  min-height: 20px;
  margin-top: 12px;
  color: #9083A9;
  font-size: 14px;
}

.msg.err {
  color: #D14360;
}

.transactions .flex_transactions .right .item.placeholder {
  opacity: .72;
}

.recent-exchange-time {
  display: block;
}

.copyline {
  max-width: 1270px;
  margin: 18px auto 0;
  padding: 0 20px 30px;
  color: #9083A9;
  font-size: 14px;
}

@media (max-width: 768px) {
  .copyline {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
