@charset "UTF-8";

/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts//xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header_other {
  position: relative;
  width: 100%;
  background: #232629;
  padding: 25px 0;
}
.header_other .burger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.header_other .burger-menu span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_other .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_other .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 111px;
}
.header_other .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header_other .menu a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 300;
}
.header_other .menu a:hover {
  color: #F0AE3D;
}
.header_other .menu a.active {
  font-weight: 700;
  color: #F0AE3D;
}
.header_other .menu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header_other .menu2 .btn {
  text-decoration: none;
  color: #fff;
  background-color: #F0AE3D;
  border-radius: 15px;
  color: #1A1D20;
  width: 178px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_other .menu2 .btn:hover {
  background-color: #e89912;
}
.header_other .menu2 .lang {
  position: relative;
}
.header_other .menu2 .lang .selected {
  background: rgba(240, 174, 61, 0.1);
  border-radius: 15px;
  color: #F0AE3D;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_other .menu2 .lang .selected img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header_other .menu2 .lang .selected:hover {
  background: rgba(240, 174, 61, 0.2);
}
.header_other .menu2 .lang.active .selected img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header_other .menu2 .lang.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header_other .menu2 .lang .lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #232629;
  border-radius: 15px;
  padding: 10px 0;
  min-width: 80px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.header_other .menu2 .lang .lang-dropdown a {
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.header_other .menu2 .lang .lang-dropdown a:hover {
  background: rgba(240, 174, 61, 0.1);
  color: #F0AE3D;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.slide-in-left.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.slide-in-right.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-up-delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.fade-in-up-delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade-in-up-delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fade-in-up-delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #1A1D20;
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

main .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 20px 3fr;
  grid-template-columns: 1.2fr 3fr;
  gap: 20px;
}
main .left {
  position: relative;
  height: 1178px;
  padding: 25px 45px 25px 25px;
}
main .left::before {
  content: "";
  position: absolute;
  background-color: #232629;
  z-index: -1;
  width: calc(1000px + 100%);
  height: 100%;
  left: -1000px;
  top: -25px;
  border-radius: 0 0 30px 0;
}
main .left .left-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main .left .left-header .burger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
main .left .left-header .burger-menu span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .left .crypto-search {
  margin-top: 34px;
}
main .left .table {
  max-height: 938px;
  margin-top: 30px;
  overflow-y: scroll;
}
main .left .table::-webkit-scrollbar {
  width: 10px;
}
main .left .table::-webkit-scrollbar-track {
  background: #1A1D20;
  border-radius: 60px;
}
main .left .table::-webkit-scrollbar-thumb {
  background: #232629;
  border: 2px solid #1A1D20;
  border-radius: 50px;
}
main .left table {
  width: 100%;
  border-collapse: collapse; 
  border-spacing: 0; 
}
main .left tbody tr:hover {
    background: #f0ae3d;
    border-radius: 10px;
    cursor: pointer;
}
main .left tbody tr:hover > * {
    color: #1A1D20 !important;
}
main .left table thead td {
  font-size: 12px;
  color: #fff;
  padding: 5px 0;
}
main .left table tbody td {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding: 5px 0;
}
main .left table .coin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: unset;
}
main .left table .coin .name {
    overflow-wrap: anywhere;
}
main .left table .coin img {
  width: 24px;
  height: 24px;
}
main .left table .coin .sub {
  color: #4F4E4E;
  font-size: 12px;
}
main .left table .coin div {
  line-height: 18px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
main .logo {
  display: block;
  margin: 0 auto;
}
main .right .header {
  position: relative;
  width: 100%;
  padding: 25px 0px 25px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .right .header::before {
  content: "";
  position: absolute;
  background-color: #232629;
  border-radius: 0 0 0 30px;
  width: calc(100% + 1000px);
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
main .right .header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
main .right .header .menu a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .right .header .menu a:hover {
  color: #F0AE3D;
}
main .right .header .menu a.active {
  font-weight: 700;
  color: #F0AE3D;
}
main .right .header .menu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
main .right .header .menu2 .btn {
  text-decoration: none;
  color: #fff;
  background-color: #F0AE3D;
  border-radius: 15px;
  color: #1A1D20;
  width: 178px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .right .header .menu2 .btn:hover {
  background-color: #e89912;
}
main .right .header .menu2 .lang {
  position: relative;
}
main .right .header .menu2 .lang .selected {
  background: rgba(240, 174, 61, 0.1);
  border-radius: 15px;
  color: #F0AE3D;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .right .header .menu2 .lang .selected img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
main .right .header .menu2 .lang .selected:hover {
  background: rgba(240, 174, 61, 0.2);
}
main .right .header .menu2 .lang.active .selected img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
main .right .header .menu2 .lang.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
main .right .header .menu2 .lang .lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #232629;
  border-radius: 15px;
  padding: 10px 0;
  min-width: 80px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
main .right .header .menu2 .lang .lang-dropdown a {
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
main .right .header .menu2 .lang .lang-dropdown a:hover {
  background: rgba(240, 174, 61, 0.1);
  color: #F0AE3D;
}
main .right .exchange_flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
main .right .exchange_flex .exchange_block {
  position: relative;
}
main .right .exchange_flex p {
  font-size: 12px;
  color: #fff;
}
main .right .exchange_flex .inp_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  background: #232629;
  border-radius: 10px;
  padding: 10px 17px;
  margin-top: 10px;
}
main .right .exchange_flex .inp_group input {
  width: 100%;
  height: 25px;
  background: none;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
main .right .exchange_flex .inp_group .sub {
  font-size: 12px;
  color: #4F4E4E;
}
main .right .exchange_flex .inp_group .select_wallet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  cursor: pointer;
}
main .right .exchange_flex .inp_group .select_wallet img:first-child {
  width: 24px;
  height: 24px;
}
main .right .exchange_flex .inp_group .select_wallet span {
  margin: 0 7px 0 10px;
  font-size: 14px;
}
main .right .exchange_flex .flex-btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  gap: 10px;
}
main .right .exchange_flex .flex-btns button, main .right .exchange_flex .submit-btn button  {
  width: 100%;
  height: 50px;
  background: rgba(240, 174, 61, 0.1);
  color: rgba(240, 174, 61, 0.3);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
}
main .right .exchange_flex .flex-btns button.active, main .right .exchange_flex .submit-btn button.active, main .right .exchange_flex .flex-btns button:hover {
  background: #F0AE3D;
  color: #1A1D20;
}
main .right .exchange_flex .swap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1A1D20;
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
main .right .exchange_flex .swap:hover {
  -webkit-transform: translate(-50%, 0) scale(1.1);
          transform: translate(-50%, 0) scale(1.1);
}
main .right .exchange_flex .swap a {
  width: 40px;
  height: 40px;
  background: #F0AE3D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
main .right .exchange_flex .comm {
  font-size: 12px;
  margin-top: 10px;
}
main .right .exchange_flex .course_crypto {
  background: #232629;
  padding: 20px 25px;
  border-radius: 30px;
}
main .right .exchange_flex .course_crypto .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
main .right .exchange_flex .course_crypto .head img {
  width: 50px;
  height: 50px;
}
main .right .exchange_flex .course_crypto .head .name {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
main .right .exchange_flex .course_crypto .head .name .price {
  font-size: 14px;
  color: #4F4E4E;
  font-weight: 400;
}
main .right .exchange_flex .course_crypto .head .price {
  font-size: 18px;
  font-weight: 400;
}
main .right .exchange_flex .course_crypto .flex-justify-between {
  margin-top: 20px;
}
main .right .exchange_flex .course_crypto .flex-justify-between p.title {
  font-size: 14px;
  color: #4F4E4E;
  font-weight: 400;
}
main .right .exchange_flex .course_crypto .flex-justify-between p.val {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
main .right .crypto_frame {
  background: #232629;
  width: 100%;
  height: 515px;
  margin-top: 30px;
  border-radius: 30px;
}

.red-color {
  color: #FF484B !important;
}

.green-color {
  color: #9DFF48 !important;
}

.flex-justify-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer {
  margin-top: auto;
}
footer .description {
    color: #fff !important;
}
.crypto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.crypto-modal.active {
  opacity: 1;
  visibility: visible;
}
.crypto-modal.active .crypto-modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.crypto-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.crypto-modal-content {
  position: relative;
  background: #232629;
  border-radius: 20px;
  max-width: 1170px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10001;
  padding: 31px 0 40px;
}

.crypto-modal-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 0 28px;
  gap: 30px;
}

.crypto-search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #1A1D20;
  border-radius: 12px;
  padding: 12px 16px;
}
.crypto-search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}
.crypto-search input::-webkit-input-placeholder {
  color: #4F4E4E;
}
.crypto-search input::-moz-placeholder {
  color: #4F4E4E;
}
.crypto-search input:-ms-input-placeholder {
  color: #4F4E4E;
}
.crypto-search input::-ms-input-placeholder {
  color: #4F4E4E;
}
.crypto-search input::placeholder {
  color: #4F4E4E;
}
.crypto-search input:focus {
  outline: none;
}

.crypto-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.crypto-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 0 28px;
  margin-top: 30px;
  max-height: calc(80vh - 100px);
  overflow-y: auto;
}
.crypto-list::-webkit-scrollbar {
  width: 6px;
}
.crypto-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.crypto-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.crypto-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.crypto-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: #1A1D20;
  border-radius: 65px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.crypto-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.crypto-icon img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.crypto-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.crypto-info .crypto-name {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.crypto-info .crypto-symbol {
  font-size: 11px;
  color: #4F4E4E;
}

h2 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}
h2 span {
  color: #F0AE3D;
}

.about {
  margin-top: 60px;
  margin-bottom: 70px;
}
.about h2 {
  text-align: center;
}
.about .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 20px 0.9fr;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 50px;
}
.about .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  padding: 43px 53px;
  border-radius: 30px;
  color: #fff;
}
.about .items .item.yellow {
  background: #F0AE3D;
}
.about .items .item .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
.about .items .item .text {
  font-size: 14px;
}
.about .items .item.items2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 0;
  gap: 17px;
}
.about .items .item.items2 .item2 {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background: #232629;
  border-radius: 30px;
}

main .right .exchange_flex .flex-btns button {
  padding: 5px;
}

.more {
  background: #232629;
  position: relative;
  margin-bottom: 100px;
}
.more .hidden {
  display: none;
}
.more .open {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 60px;
  height: 60px;
  background: #F0AE3D;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.more .open img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.more .open:hover {
  -webkit-transform: translate(-50%, 0) scale(1.1);
          transform: translate(-50%, 0) scale(1.1);
}
.more .open.active img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.more .box {
  padding: 70px 0;
}
.more .box p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
.more .box p span {
  font-size: 18px;
  font-weight: 700;
}

.info_block_flex {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #232629;
  margin-top: 30px;
  border-radius: 65px;
  padding: 10px 11px 10px 28px;
}
.info_block_flex p {
  font-size: 14px;
  color: #fff;
}
.info_block_flex a, .info_block_flex button {
  font-size: 14px;
  padding: 15px 19px;
  background: #F0AE3D;
  color: #1A1D20;
  text-decoration: none;
  border-radius: 65px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.info_block_flex a:hover, .info_block_flex button:hover {
  background: #e89912;
}

.auth {
  margin-bottom: 70px;
}
.auth .container {
  max-width: 994px;
}
.auth .box {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 1.2fr;
  grid-template-columns: 0.8fr 1.2fr;
  background: #232629;
  border-radius: 30px;
  overflow: hidden;
}
.auth .box .left {
  background-image: url(../img/grid_lines.png), -webkit-gradient(linear, left top, left bottom, from(#F0AE3D), to(transparent));
  background-image: url(../img/grid_lines.png), linear-gradient(180deg, #F0AE3D 0%, transparent 100%);
  padding: 70px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.auth .box .left .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 10px;
  margin-top: 30px;
  width: 100%;
}
.auth .box .left .items .item {
  color: #1A1D20;
  background: #fff;
  border-radius: 15px;
  padding: 12px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.auth .box .left .items .item .num {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: #1A1D20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
.auth .box .left .items .item .title {
  font-size: 14px;
  font-weight: 600;
}
.auth .box .left .items .item .text {
  font-size: 12px;
  font-weight: 400;
}
.auth .box .left .items .item.active {
  color: #fff;
  background: #1A1D20;
}
.auth .box .left .items .item.active .num {
  background: #fff;
  color: #1A1D20;
}
.auth .box .left .bottom_text {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.auth .box .left .bottom_text a {
  color: #F0AE3D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.auth .box .left .bottom_text a:hover {
  color: #e89912;
}
.auth .box .right {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.auth .box .right h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.auth .box .right .inp_flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.auth .box .right .inp_group {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.auth .box .right .inp_group .icon {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #F0AE3D;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 9px;
  top: 41px;
}
.auth .box .right .inp_group .title {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
}
.auth .box .right .inp_group input {
  background: #1A1D20;
  height: 50px;
  border-radius: 10px;
  padding: 0 15px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  width: 100%;
}
.auth .box .right .inp_group input::-webkit-input-placeholder {
  color: #3A3A3A;
}
.auth .box .right .inp_group input::-moz-placeholder {
  color: #3A3A3A;
}
.auth .box .right .inp_group input:-ms-input-placeholder {
  color: #3A3A3A;
}
.auth .box .right .inp_group input::-ms-input-placeholder {
  color: #3A3A3A;
}
.auth .box .right .inp_group input::placeholder {
  color: #3A3A3A;
}
.auth .box .right .inp_group .error {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 300;
  display: block;
}
.auth .box .right button {
  font-size: 14px;
  font-weight: 300;
  color: #1A1D20;
  background: #F0AE3D;
  border-radius: 10px;
  padding: 15px 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.auth .box .right button:hover {
  background: #e89912;
}

.exchange {
  margin: 70px 0;
}
.exchange .box {
  padding: 40px;
  border-radius: 30px;
  background: #232629;
  max-width: 944px;
  width: 100%;
  margin: auto;
}
.exchange h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 47px;
}
.exchange .from_to {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  gap: 30px;
  /*max-width: 580px;*/
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}
.exchange .from_to .flex_ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.exchange .from_to .flex_ft img {
  width: 24px;
  height: 24px;
}
.exchange .from_to .flex_ft .amount, .timer_text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.exchange .from_to .flex_ft .sub {
  font-size: 12px;
  color: #4F4E4E;
}
.exchange .from_to .swap {
  height: 50px;
  background: rgba(240, 174, 61, 0.1);
  width: 100%;
  border-radius: 50px;
  padding: 5px;
  max-width: 304px;
  position: relative;
}
.exchange .from_to .swap .slide {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #F0AE3D;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 7px;
}
.exchange .from_to .swap .slide.step2 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.exchange .from_to .swap .slide.step3 {
  left: auto;
  right: 7px;
}
.exchange .accent_text {
  font-size: 14px;
  text-align: center;
  color: #F0AE3D;
  margin-bottom: 20px;
  font-weight: 700;
}
.exchange .flex_info {
  padding: 10px 10px 10px 32px;
  background: #1A1D20;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.exchange .flex_info p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
.exchange .flex_info p span {
  font-weight: 700;
}
.exchange .flex_info p:first-child {
    max-width: 500px;
}
.exchange .flex_info a {
  background: #F0AE3D;
  color: #1A1D20;
  font-size: 14px;
  padding: 15px 27px;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.exchange .flex_info a:hover {
  background: #e89912;
}
.exchange .flex_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.exchange .flex_btns button, .exchange .flex_btns button.btn-change {
  width: 185px;
  height: 50px;
  background: #F0AE3D;
  border-radius: 10px;
  color: #1A1D20;
  font-size: 14px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.exchange .flex_btns button:nth-child(2) {
  background: none;
  color: rgb(240, 174, 61);
  border: 1px solid rgb(240, 174, 61);
}
.exchange .flex_btns button:hover {
  background: #e89912;
  color: #1A1D20;
}
.exchange .flex_btns button.btn-change{
    background: none;
    color: rgb(240, 174, 61);
    border: 1px solid rgb(240, 174, 61);
}
.exchange .flex_btns button.btn-change:hover, .exchange .flex_btns button.btn-change.active {
    background: #e89912;
    color: #1A1D20;
}
.exchange .flex_block_qr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 20px 1fr;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
}
.exchange .inp_group {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.exchange .inp_group .icon {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #F0AE3D;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 9px;
  top: 41px;
}
.exchange .inp_group .title {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
}
.exchange .inp_group input {
  background: #1A1D20;
  height: 50px;
  border-radius: 10px;
  padding: 0 15px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  width: 100%;
}
.exchange .inp_group input::-webkit-input-placeholder {
  color: #3A3A3A;
}
.exchange .inp_group input::-moz-placeholder {
  color: #3A3A3A;
}
.exchange .inp_group input:-ms-input-placeholder {
  color: #3A3A3A;
}
.exchange .inp_group input::-ms-input-placeholder {
  color: #3A3A3A;
}
.exchange .inp_group input::placeholder {
  color: #3A3A3A;
}
.exchange .inp_group .error {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 300;
  display: block;
}
.exchange.step2 .inp_group {
  margin-bottom: 20px;
}
.exchange.step2 .inp_group input {
  padding-right: 50px;
}
.exchange.step3 button {
  width: 219px;
}
.exchange .qr {
  margin-top: 7px;
  background: #f0ae3d;
  border-radius: 20px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  padding: 20px;
}
.exchange .qr img{
  width:100%;
  height:100%;
  display:block;
}
.exchange .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}
.exchange .tags .tag {
  padding: 15px 30px;
  background: rgba(240, 174, 61, 0.1);
  border: 1px solid #F0AE3D;
  border-radius: 50px;
  color: #F0AE3D;
  font-size: 14px;
  font-weight: 300;
}
.exchange .tags .tag span {
  font-weight: 700;
}

.inp_flex_70_30 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.5fr 10px 1.5fr;
  grid-template-columns: 2.5fr 1.5fr;
  gap: 10px;
}

.icon.copy {
  background: none !important;
  cursor: pointer;
}

.copy-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #232629;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(240, 174, 61, 0.2);
}
.copy-notification.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: auto;
}
.copy-notification span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.copy-notification span::before {
  content: "✓";
  color: #F0AE3D;
  font-weight: 700;
  font-size: 16px;
}

footer {
  border-top: 1px solid #232629;
  padding-top: 50px;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .container a {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
}
footer .container a:hover {
  color: #F0AE3D;
}
footer .container .swap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #232629;
  position: relative;
}
footer .container .swap .slide {
  width: 40px;
  height: 40px;
  background: #F0AE3D;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
footer .container .swap .slide img {
  width: 20px;
  height: 20px;
}
footer .container img {
  margin-bottom: 10px;
}
footer .container .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 117px;
}
footer .container .right .title {
  font-size: 16px;
  color: #F0AE3D;
  margin-bottom: 19px;
  font-weight: 700;
}
footer .copy {
  padding: 23px 0;
  background: #232629;
  margin-top: 39px;
}
footer .copy p {
  font-size: 14px;
  color: #fff;
}

.faq {
  margin-top: 70px;
}
.faq h2 {
  font-size: 30px;
  font-weight: 700;
}
.faq .flex_info {
  background: #232629;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 27px;
  border-radius: 15px;
}
.faq .flex_info .title {
  color: #F0AE3D;
  font-size: 24px;
  font-weight: 700;
}
.faq .flex_info .text {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  max-width: 555px;
  margin-top: 7px;
}
.faq .flex_info a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 23px;
  background: #F0AE3D;
  text-decoration: none;
  color: #1A1D20;
  gap: 12px;
  border-radius: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.faq .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  margin-bottom: 70px;
  gap: 10px;
}
.faq .items .body {
  display: none;
  padding-top: 5px;
}
.faq .items .body p {
  max-width: 470px;
}
.faq .items .item {
  background: #232629;
  border-radius: 15px;
  padding: 23px 40px 23px 23px;
}
.faq .items .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq .items .item .head p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.faq .items .item .head .open {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq .items .item .head .open::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1A1D20;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq .items .item .head .open svg {
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq .items .item.opened {
  background: #F0AE3D;
}
.faq .items .item.opened .head .title {
  color: #232629;
}
.faq .items .item.opened .head .open {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq .items .item.opened .head .open::before {
  opacity: 1;
}
.faq .items .item.opened .head .open svg {
  fill: #F0AE3D;
}
.faq .items .item.opened .head .open svg path {
  fill: #F0AE3D;
}
.faq .items .item.opened .body {
  padding-top: 5px;
}
.faq .items .item.opened .body p {
  color: #232629;
}

.about_top {
  margin-top: 70px;
}
.about_top h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 11px;
}
.about_top .sub {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
.about_top .about_flex {
  padding: 18px;
  background: #232629;
  border-radius: 30px;
  color: #fff;
  position: relative;
  margin-top: 100px;
  padding-left: calc(38% + 11px);
}
.about_top .about_flex p{
  color: #fff!important;
}
.about_top .about_flex .title {
  font-size: 25px;
  font-weight: 700;
}
.about_top .about_flex .text {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 300;
}
.about_top .about_flex img {
  position: absolute;
  right: 62%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.partners {
  margin-top: 70px;
  margin-bottom: 70px;
}
.partners h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 11px;
}
.partners .sub {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
.partners .partner_block {
  background: #F0AE3D;
  color: #fff;
  border-radius: 30px;
  padding: 102px calc(35% + 57px) 42px 72px;
  margin-top: 110px;
  position: relative;
}
.partners .partner_block .title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 26px;
}
.partners .partner_block .text {
  font-size: 14px;
}
.partners .partner_block img {
  position: absolute;
  right: 42px;
  width: 35%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.partners .partner_block .items_top {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}
.partners .partner_block .items_top .item {
  padding: 25px 35px 25px 44px;
  background: #232629;
  border-radius: 20px;
  max-width: 370px;
  position: relative;
}
.partners .partner_block .items_top .item .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.partners .partner_block .items_top .item .text {
  font-size: 14px;
}
.partners .partner_block .items_top .item .num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #1A1D20;
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 32px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners .partner_block .btn {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 180px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  color: #1A1D20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.partners .partner_block .btn:hover {
  opacity: 0.8;
}

.api .box {
  max-width: 944px;
  margin: 70px auto;
  padding: 40px;
  background: #232629;
  border-radius: 30px;
}
.api .box h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 26px;
}

.api {
  color: #fff;
}
.api .container {
  max-width: 940px;
}
.api .top p {
  font-size: 14px;
  font-weight: 100;
}
.api .top p span {
  font-size: 20px;
  font-weight: 700;
}
.api .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.api .tags .tag {
  background: rgba(240, 174, 61, 0.1);
  border-radius: 50px;
  color: #F0AE3D;
  padding: 16px 40px;
  border: 1px solid #F0AE3D;
  margin-top: 25px;
  font-size: 14px;
}
.api .center_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-top: 20px;
  gap: 20px;
}
.api .center_flex .title {
  font-size: 20px;
  font-weight: 700;
}
.api .center_flex .group {
  margin: 11px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 10px;
  position: relative;
}
.api .center_flex .group input {
  height: 50px;
  border-radius: 10px;
  background: #1A1D20;
  border: 1px solid #0F1920 !important;
  border: none;
  width: 274px;
  font-size: 14px;
  color: #FFF;
  font-weight: 100;
  padding: 0 27px;
}
.api .center_flex .group input::-webkit-input-placeholder {
  color: #4E4E4E;
}
.api .center_flex .group input::-moz-placeholder {
  color: #4E4E4E;
}
.api .center_flex .group input:-ms-input-placeholder {
  color: #4E4E4E;
}
.api .center_flex .group input::-ms-input-placeholder {
  color: #4E4E4E;
}
.api .center_flex .group input::placeholder {
  color: #4E4E4E;
}
.api .center_flex .group .copy-btn {
  position: absolute;
  top: 14px;
  right: 21px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: transparent !important;
}
.api .center_flex .group .copy-btn img {
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
.api .center_flex .group .copy-btn.copied {
  background: #12B4B6;
}
.api .center_flex .group .copy-btn.copied::after {
  content: "Скопировано!";
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #12B4B6;
  color: #000;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  -webkit-animation: fadeInOut 2s ease;
          animation: fadeInOut 2s ease;
}
.api .text {
  text-align: left;
  margin-top: 30px;
}
.api .text .title {
  font-weight: 700;
  font-size: 20px;
}
.api .text .textt {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 100;
}
.api table.options {
  background: #1A1D20;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  border-spacing: 0;
  margin-top: 30px;
}
.api table.options thead {
  background: #F0AE3D;
}
.api table.options thead td {
  color: #1A1D20;
  font-weight: 700;
}
.api table.options td {
  padding: 15px 22px;
  border-right: 1px solid #232629;
}
.api table.options td:last-child {
  border-right: none;
}
.api .api_items {
  margin-top: 30px;
  margin-bottom: 50px;
}
.api .api_items .item {
  background: #1A1D20;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #0F1920;
}
.api .api_items .item:last-child {
  margin-bottom: 0;
}
.api .api_items .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.api .api_items .item .head img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.api .api_items .item .head:hover {
  opacity: 0.8;
}
.api .api_items .item .head .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.api .api_items .item .head .left .type {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 11px;
  background: #F0AE3D;
  margin-right: 15px;
  border-radius: 30px;
  display: block;
  color: #232629;
}
.api .api_items .item .head .left .url {
  color: #F0AE3D;
  font-size: 16px;
  font-weight: 700;
}
.api .api_items .item .body {
  display: none;
  padding-top: 13px;
}
.api .api_items .item .body .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.api .api_items .item .body .text {
  font-size: 14px;
  font-weight: 100;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  margin-bottom: 15px;
}
.api .api_items .item .body table.parameters {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border: 1px solid #232629;
  border-radius: 10px;
}
.api .api_items .item .body table.parameters thead th {
  padding: 12px 15px;
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #232629;
  border-right: 1px solid #232629;
}
.api .api_items .item .body table.parameters thead th:last-child {
  border-right: none;
}
.api .api_items .item .body table.parameters tbody tr {
  border-bottom: 1px solid #232629;
}
.api .api_items .item .body table.parameters tbody tr:last-child {
  border-bottom: none;
}
.api .api_items .item .body table.parameters tbody tr:hover {
  background: #232629;
}
.api .api_items .item .body table.parameters tbody td {
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 100;
  border-right: 1px solid #232629;
}
.api .api_items .item .body table.parameters tbody td:last-child {
  border-right: none;
}
.api .api_items .item .body .code {
  background: #232629;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  border-radius: 10px;
}
.api .api_items .item .body .response {
  font-size: 14px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.5);
}
.api .api_items .item .body .response span {
  color: #fff;
}
.api .api_items .item.active .head img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 768px) {
  .header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 1040px) {
  .partners .partner_block {
    padding: 40px;
    margin-top: 50px;
  }
  .partners .partner_block img {
    display: none;
  }
  .partners .partner_block .items_top {
    position: static;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media (max-width: 820px) {
  .about_top .about_flex img {
    display: none;
  }
  .about_top .about_flex {
    padding-left: 18px;
    margin-top: 50px;
  }
}
@media (max-width: 735px) {
  .flex_block_qr {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .exchange .qr {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 700px) {
  .exchange .flex_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
  .exchange .flex_info a {
    margin-top: 20px;
  }
}
@media (max-width: 620px) {
  .faq .flex_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq .flex_info .btn {
    margin-top: 20px;
  }
  .faq .items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .inp_flex_70_30 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .exchange .from_to .swap {
    display: none;
  }
  .exchange h2 {
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .exchange .flex_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 970px) {
  .crypto-list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 680px) {
  .crypto-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1300px) {
  main .right .header .menu {
    gap: 20px;
  }
  main .right .header {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1290px) {
  .about .items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1230px) {
  main .right .header, main .left .table, .main .left .crypto-search {
    display: none;
  }
  main .left {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 20px;
  }
  main .left .left-header {
    width: 100%;
  }
  main .left .left-header .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  main .left::before {
    top: 0;
    left: -20px;
    border-radius: 0;
  }
  .info_block_flex a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active .mobile-menu-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232629;
  padding: 20px;
  overflow-y: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10001;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10002;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-menu-close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mobile-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-top: 60px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-menu-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.mobile-menu-section a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu-section a:hover, .mobile-menu-section a.active {
  color: #F0AE3D;
  padding-left: 15px;
}

.mobile-menu-section2 {
  gap: 20px;
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
}
.mobile-menu-section2 .btn {
  text-decoration: none;
  color: #1A1D20;
  background-color: #F0AE3D;
  border-radius: 15px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu-section2 .btn:hover {
  background-color: #e89912;
}
.mobile-menu-section2 .lang {
  position: relative;
}
.mobile-menu-section2 .lang .selected {
  background: rgba(240, 174, 61, 0.1);
  border-radius: 15px;
  color: #F0AE3D;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu-section2 .lang .selected img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-menu-section2 .lang .selected:hover {
  background: rgba(240, 174, 61, 0.2);
}
.mobile-menu-section2 .lang.active .selected img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-menu-section2 .lang.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mobile-menu-section2 .lang .lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #17191b;
  border-radius: 15px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10003;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 0;
}
.mobile-menu-section2 .lang .lang-dropdown a {
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}
.mobile-menu-section2 .lang .lang-dropdown li:hover {
  background: rgba(240, 174, 61, 0.1);
  color: #F0AE3D;
}

@media screen and (max-width: 900px) {
  footer .container .right {
    gap: 50px;
  }
}
@media screen and (max-width: 790px) {
  main .right .exchange_flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
@media screen and (max-width: 770px) {
  footer .container .right, footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media screen and (max-width: 720px) {
  .about .items .item, .about .items .item.items2 .item2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    row-gap: 30px;
  }
  .about .items .item img, .about .items .item.items2 .item2 img {
    max-width: 90%;
  }
  .about .items .item {
    padding: 20px;
  }
}
@media screen and (max-width: 670px) {
  .info_block_flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-radius: 35px;
    padding: 20px;
  }
  main .right .exchange_flex .course_crypto .flex-justify-between p.val {
    font-size: 13px;
  }
}
@media screen and (max-width: 1170px) {
  .header_other .right {
    gap: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .header_other .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_other .right {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .auth .box .right .inp_flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 740px) {
  .auth .box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 460px) {
  .api .center_flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 10px;
    margin-top: 40px;
  }
  .api table.options td:last-child {
    word-break: break-word;
  }
}
.code {
  word-break: break-word;
}

.rules {
  margin: 70px 0;
}
.rules h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff!important;
}
.rules p{
  color: #fff!important;
}
.rules .box, .reviews .box {
  padding: 37px;
  background: #232629;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
}
.rules .box span, .reviews span {
  font-weight: 700;
}

.reviews {
  margin: 70px 0;
}
.reviews h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
}
.reviews .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.reviews .items .item {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reviews .items .item img {
  width: 100%;
}
.reviews .items .item:hover {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .reviews .items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 700px) {
  .reviews .items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lk {
  margin: 70px 0;
}
.lk .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 20px auto;
  grid-template-columns: 350px auto;
  gap: 20px;
}
.lk .left .menu {
  padding: 34px 0;
  background: #232629;
  border-radius: 30px;
}
.lk .left .menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 44px;
  height: 50px;
  gap: 13px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lk .left .menu a svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lk .left .menu a:hover, .lk .left .menu a.active {
  background: #F0AE3D;
  color: #1A1D20;
}
.lk .left .menu a:hover svg path, .lk .left .menu a.active svg path {
  fill: #1A1D20;
}
.lk .left .menu a .icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lk .left .menu a:nth-child(3):hover svg path, .lk .left .menu a:nth-child(3).active svg path {
  stroke: #1A1D20;
  fill: unset;
}
.lk .left .menu a:nth-child(3):hover svg path:first-child, .lk .left .menu a:nth-child(3).active svg path:first-child {
  stroke: #fff;
}
.lk .right {
  padding: 39px 33px 48px;
  border-radius: 30px;
  background: #232629;
}
.lk .right h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.lk .right .sect {
  margin-top: 30px;
}
.lk .right .sect .title {
  font-size: 20px;
  color: #F0AE3D;
  font-weight: 700;
  margin-bottom: 25px;
}
.lk .right .table table {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
.lk .right .table table td {
  padding: 0 39px;
}
.lk .right .table table thead {
  background: #1A1D20;
  border-radius: 10px;
}
.lk .right .table table thead tr td {
  padding: 19px 39px;
}
.lk .right .table table thead td:first-child {
  border-radius: 10px 0 0 10px;
}
.lk .right .table table thead td:last-child {
  border-radius: 0 10px 10px 0;
}
.lk .right .table table tbody td {
  padding: 5px 39px;
}
.lk .right .table table tbody tr:first-child td {
  padding-top: 15px;
}
.lk .right .inp_group {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.lk .right .inp_group .icon {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #F0AE3D;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 9px;
  top: 41px;
}
.lk .right .inp_group .title {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
}
.lk .right .inp_group input {
  background: #1A1D20;
  height: 50px;
  border-radius: 10px;
  padding: 0 15px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  width: 100%;
}
.lk .right .inp_group input::-webkit-input-placeholder {
  color: #3A3A3A;
}
.lk .right .inp_group input::-moz-placeholder {
  color: #3A3A3A;
}
.lk .right .inp_group input:-ms-input-placeholder {
  color: #3A3A3A;
}
.lk .right .inp_group input::-ms-input-placeholder {
  color: #3A3A3A;
}
.lk .right .inp_group input::placeholder {
  color: #3A3A3A;
}
.lk .right .inp_group .error {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 300;
  display: block;
}
.lk .right .grid-inp-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.lk .right .grid-inp-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lk .right button {
  width: 180px;
  height: 50px;
  background: #F0AE3D;
  color: #1A1D20;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lk .right button:hover {
  background-color: #e89912;
}
.lk .right .info {
  background: #F0AE3D;
  padding: 21px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
.lk .right .info svg {
  width: 85px;
  min-width: 85px;
}
.lk .right .info p {
  font-size: 14px;
  color: #1A1D20;
}
.lk .right .info.sbetw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lk .right .info button {
  width: 150px;
  height: 50px;
  background: #fff;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lk .right .info button:hover {
  opacity: 0.8;
}
.lk .right .grid-tags {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lk .right .grid-tags .tag {
  width: 100%;
  padding: 25px;
  background: rgba(240, 174, 61, 0.1);
  border: 1px solid #F0AE3D;
  border-radius: 10px;
  color: #F0AE3D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}
.lk .right .grid-tags .tag .bold {
  font-weight: 700;
}
.lk .right .grid-tags .tag .small {
  font-size: 14px;
}
.lk .right .inp_flex_70_30 .inp_group {
  margin-bottom: 0;
}
.lk .right button.center {
  margin: auto;
  display: block;
}
.lk .right .table {
  width: 100%;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  overflow-wrap: anywhere;
}
.lk .right .table table {
  border-spacing: 0;
}
.lk .right .table .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.err404 {
  margin: 70px 0;
  color: #fff;
  text-align: center;
}
.err404 img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.err404 .title {
  font-size: 30px;
  font-weight: 700;
}
.err404 .text {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 300;
}
.err404 .btn {
  padding: 15px 38px;
  background: #F0AE3D;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  font-size: 14px;
  color: #1A1D20;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.err404 .btn:hover {
  background-color: #e89912;
}

.lk__table-empty {
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .lk .right .grid-inp-3, .lk .right .grid-inp-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1080px) {
  .lk .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-x;
    touch-action: pan-x;
  }
  .lk .right {
    margin-top: 20px;
  }
  .api .api_items .item .body {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-x;
    touch-action: pan-x;
  }
}
@media screen and (max-width: 580px) {
  .lk .right .grid-tags {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 650px) {
  .sect .inp_flex_70_30 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .lk .right .info svg {
    display: none;
  }
  .lk .right .info.sbetw {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.withdraw-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.withdraw-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.withdraw-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 13, 0.25);
  backdrop-filter: blur(10px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.withdraw-modal.active .withdraw-modal__overlay {
  opacity: 1;
}
.withdraw-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  background: #232629;
  border: 1px solid #232629;
  border-radius: 30px;
  padding: 30px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-transform: translateY(-30px) scale(0.95);
          transform: translateY(-30px) scale(0.95);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.withdraw-modal.active .withdraw-modal__content {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
.withdraw-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.withdraw-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.withdraw-modal__close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.withdraw-modal__close:hover {
  opacity: 0.7;
}
.withdraw-modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.withdraw-modal__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.withdraw-modal__label {
  font-size: 14px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.7);
}
.withdraw-modal__select-wrapper {
  position: relative;
}
.withdraw-modal__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px 20px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.withdraw-modal__select svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.withdraw-modal__select span {
  font-size: 16px;
  font-weight: 100;
  color: #fff;
}
.withdraw-modal__select-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.5);
}
.withdraw-modal__select-arrow {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.withdraw-modal__select-wrapper.active .withdraw-modal__select-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.withdraw-modal__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #1A1D20;
  border-radius: 15px;
  padding: 10px;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.withdraw-modal__select-wrapper.active .withdraw-modal__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.withdraw-modal__dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.withdraw-modal__dropdown-item:hover {
  background: #232629;
}
.withdraw-modal__dropdown-item svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.withdraw-modal__dropdown-item span {
  font-size: 16px;
  font-weight: 100;
  color: #fff;
}
.withdraw-modal__input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.withdraw-modal__input-wrapper svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke: #12B4B6;
  fill: none;
}
.withdraw-modal__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 100;
  color: #fff;
  outline: none;
}
.withdraw-modal__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.withdraw-modal__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.withdraw-modal__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.withdraw-modal__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.withdraw-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.withdraw-modal__btn {
  background: #F0AE3D;
  border: none;
  border-radius: 50px;
  color: #1A1D20;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 30px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  margin-top: 10px;
}
.withdraw-modal__btn:hover {
  opacity: 0.8;
}
.root__2Dljg2eK {
    list-style: none;
    display: flex;
    color: #ffffff;
    padding: 20px;
    text-align: left;
}
.root__2Dljg2eK li {
    margin-right: 20px;
}
.text-center {
    text-align: center;
}
.form-alert{
  overflow-wrap: anywhere;
}
.form-alert.success{
    color: #f0ae3d;
}
.form-alert.error{
    color: #FF484B;
}
.err404 a {
    text-decoration: none;
    color: unset;
}
.summary {
    color: #fff;
}
.link-white {
    text-decoration: none;
    color: unset;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "calt" 0;
}
.cursor-pointer{
  cursor: pointer;
}
.d-none {
    display: none !important;
}
/* ===== Bootstrap 4 spacing (margin) ===== */

/* m-0..5 */
.m-0  { margin: 0 !important; }
.m-1  { margin: 0.25rem !important; }
.m-2  { margin: 0.5rem !important; }
.m-3  { margin: 1rem !important; }
.m-4  { margin: 1.5rem !important; }
.m-5  { margin: 3rem !important; }

/* mt-0..5 */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* mr-0..5 */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

/* mb-0..5 */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* ml-0..5 */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

/* mx-0..5 (left+right) */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }

/* my-0..5 (top+bottom) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

/* auto (только margin) */
.m-auto  { margin: auto !important; }
.mt-auto { margin-top: auto !important; }
.mr-auto { margin-right: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.ml-auto { margin-left: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

/* negative margin (Bootstrap 4) */
.m-n1  { margin: -0.25rem !important; }
.m-n2  { margin: -0.5rem !important; }
.m-n3  { margin: -1rem !important; }
.m-n4  { margin: -1.5rem !important; }
.m-n5  { margin: -3rem !important; }

.mt-n1 { margin-top: -0.25rem !important; }
.mt-n2 { margin-top: -0.5rem !important; }
.mt-n3 { margin-top: -1rem !important; }
.mt-n4 { margin-top: -1.5rem !important; }
.mt-n5 { margin-top: -3rem !important; }

.mr-n1 { margin-right: -0.25rem !important; }
.mr-n2 { margin-right: -0.5rem !important; }
.mr-n3 { margin-right: -1rem !important; }
.mr-n4 { margin-right: -1.5rem !important; }
.mr-n5 { margin-right: -3rem !important; }

.mb-n1 { margin-bottom: -0.25rem !important; }
.mb-n2 { margin-bottom: -0.5rem !important; }
.mb-n3 { margin-bottom: -1rem !important; }
.mb-n4 { margin-bottom: -1.5rem !important; }
.mb-n5 { margin-bottom: -3rem !important; }

.ml-n1 { margin-left: -0.25rem !important; }
.ml-n2 { margin-left: -0.5rem !important; }
.ml-n3 { margin-left: -1rem !important; }
.ml-n4 { margin-left: -1.5rem !important; }
.ml-n5 { margin-left: -3rem !important; }

.mx-n1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; }
.mx-n2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; }
.mx-n3 { margin-left: -1rem !important; margin-right: -1rem !important; }
.mx-n4 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; }
.mx-n5 { margin-left: -3rem !important; margin-right: -3rem !important; }

.my-n1 { margin-top: -0.25rem !important; margin-bottom: -0.25rem !important; }
.my-n2 { margin-top: -0.5rem !important; margin-bottom: -0.5rem !important; }
.my-n3 { margin-top: -1rem !important; margin-bottom: -1rem !important; }
.my-n4 { margin-top: -1.5rem !important; margin-bottom: -1.5rem !important; }
.my-n5 { margin-top: -3rem !important; margin-bottom: -3rem !important; }

/* ===== Bootstrap 4 spacing (padding) ===== */

.p-0  { padding: 0 !important; }
.p-1  { padding: 0.25rem !important; }
.p-2  { padding: 0.5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.crypto_frame{
  border-radius: 28px;
  overflow: hidden;
  background: #1b1f24;
}
.chart-panel{
  background: #232629;            /* общий фон панели */
  border-radius: 28px;
  padding: 14px 14px 18px;
}

.chart-toolbar{
  display:flex;
  /*align-items:center;*/
  flex-direction: column;
  justify-content:space-between;
  gap:5px;
  padding: 10px 12px;
  background:#26292c;             /* верхняя “шапка” */
  border-radius: 22px;
}

.chart-tf{
  display:flex;
  align-items:center;
  gap:5px;
  flex-wrap:nowrap;
}

.chart-time{
  appearance:none;
  border:0;
  background:transparent;
  color:#e6e6e6;
  font-weight:600;
  padding:8px 12px;
  border-radius: 14px;
  cursor:pointer;
  line-height:1;
}

.chart-time:hover{
  background: rgba(255,255,255,.06);
}

.chart-time.is-active{
  background: rgba(255,255,255,.12);
}

.chart-ohlc{
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
  font-weight:700;
  font-variant-numeric: tabular-nums;
}

.chart-ohlc .v{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  display:inline-block;
  min-width: 11ch;     /* подбери: 10–14ch */
  text-align:right;
}

.ohlc-item .k{
  opacity:.65;
  margin-right:6px;
}

.chart-ohlc.up .v{ color:#9BFF4A; }     /* зелёный как на примере */
.chart-ohlc.down .v{ color:#ff4d4d; }   /* красный как на примере */

.chart-wrap{
  margin-top: 12px;
  border-radius: 22px;
  overflow:hidden;                  /* важно: скругление графика */
  background:#232629;               /* фон области графика */
}

.tvchart{
  width:100%;
  height:410px;
}
.ohlc-item {
    color: #fff;
}
.btn-forgot {
    display: flex;
    justify-content: right;
    text-decoration: none;
    color: #fff;
}
.price-block {
    flex-direction: column;
    align-items: normal;
    gap: 20px;
}
.wallets-append .select.change {
    display: flex;
    gap: 10px;
    color: #fff;
    justify-content: end;
    cursor: pointer;
}