@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
  text-rendering: optimizeSpeed;
  font-size: 16px;
  font-family: Barlow, sans-serif;
  line-height: 1.3;
  overflow-x: hidden;
  color: white;
  background: #121A27;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body.fixed {
  overflow: hidden;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
  border: 0;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.header {
  font-family: IBM Plex Sans, sans-serif;
  position: absolute;
  padding: 10px 0;
  font-size: 14px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header.dark {
  background: rgba(22, 28, 36, 0.8);
  padding: 10px 0;
}
@media (min-width: 992px) {
  .header.dark .list {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .header.dark .btn.dark {
    display: none;
  }
}
.header .logo {
  max-width: 220px;
}
@media (max-width: 768px) {
  .header .logo {
    width: 180px;
  }
}
.header .burger {
  display: none;
  width: 18px;
  height: 16px;
  position: relative;
  color: #000;
  cursor: pointer;
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - 2px);
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
  }
}
.header .row {
  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;
}
.header .row .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .header .row .menu {
    position: fixed;
    top: 70px;
    width: 320px;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    background: rgba(18, 26, 39, 0.5411764706);
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
  }
  .header .row .menu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header .row .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .header .row .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.header .row .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .header .row .socials {
    display: none;
  }
}
.header .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header .add .separator {
  width: 1px;
  height: 24px;
  background: rgba(145, 158, 171, 0.2392156863);
}
@media (max-width: 1200px) {
  .header .add .separator {
    display: none;
  }
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  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;
  height: 36px;
  gap: 5px;
  border-radius: 8px;
  background: #0CD66E;
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: black;
}
.btn.dark {
  background: #212B36;
  color: white;
}
.btn.white {
  color: white;
}
@media (max-width: 576px) {
  .btn {
    font-size: 12px;
    padding: 0 12px;
  }
  .btn svg {
    width: 18px;
    height: auto;
  }
}

.section-screen {
  min-height: 800px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.section-screen::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg.png) no-repeat center center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
.section-screen::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 208px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#121A27));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #121A27 100%);
  z-index: 2;
}
.section-screen p {
  font-family: IBM Plex Sans;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .section-screen p {
    font-size: 16px;
    line-height: 1;
  }
}
.section-screen .fore {
  bottom: 0;
  right: 0;
  position: absolute;
  pointer-events: none;
}
.section-screen .mid {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.section:not(.section-screen) {
  background-color: #121A27;
}

@media (min-width: 992px) {
  .panel + .section {
    padding-top: 200px;
  }
}
.title {
  font-family: Barlow;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .title {
    font-size: 52px;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }
}

.highlight {
  color: #0cd66e;
  font-weight: 700;
}

.panel {
  margin-top: -150px;
  position: relative;
  padding-bottom: 80px;
  z-index: 3;
  margin-bottom: -150px;
}
@media (max-width: 992px) {
  .panel {
    margin: 0;
    padding: 0;
    background-color: #121A27;
  }
}
.panel-inner {
  padding-top: 41px;
  padding-bottom: 21px;
  border-radius: 200px;
  border-top: 1px solid #0CD66E;
  padding-left: 21px;
  padding-right: 21px;
  background: #121A27;
  color: white;
}
@media (max-width: 992px) {
  .panel-inner {
    border-radius: 100px;
  }
}
@media (max-width: 576px) {
  .panel-inner {
    border-radius: 80px;
    padding: 20px;
  }
}
.panel-inner .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 992px) {
  .panel-inner .row .panel-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 576px) {
  .panel-inner .row {
    gap: 20px;
  }
  .panel-inner .row .panel-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.panel-inner .name {
  font-family: Barlow;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  margin-bottom: 11px;
}
@media (max-width: 768px) {
  .panel-inner .name {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .panel-inner .name {
    margin-bottom: 5px;
  }
}
.panel-inner p {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .panel-inner p {
    font-size: 16px;
  }
}

.section-default {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-default {
    padding: 50px 0;
  }
}

h2 {
  font-family: Barlow;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  text-align: left;
  margin-bottom: 24px;
}
h2.center {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  h2.center {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
}
@media (max-width: 576px) {
  .partners {
    grid-template-columns: 1fr;
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.grid .text {
  color: #919EAB;
}
.grid .text p:not(:last-child) {
  margin-bottom: 24px;
}

h3 {
  font-family: Barlow;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
    line-height: 1.2;
  }
}

.grid + .grid {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .grid + .grid {
    gap: 8px;
  }
}

.apilist {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: #919EAB;
}
.apilist li {
  position: relative;
  padding-left: 20px;
}
.apilist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0CD66E;
}

.mb {
  margin-bottom: 20px;
}

.footer {
  background: #121A27;
}
.footer-main {
  border-top: 1px solid rgba(145, 158, 171, 0.2392156863);
  border-bottom: 1px solid rgba(145, 158, 171, 0.2392156863);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0;
  }
}
.footer-main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
.footer-main .row p,
.footer-main .row a {
  color: #919EAB;
  font-size: 13px;
  line-height: 24px;
}
.footer-main .row .desc {
  max-width: 360px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .footer-main .row .desc {
    margin: 25px 0;
  }
}
.footer-main .row .link-name {
  font-family: Barlow;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  margin-bottom: 8px;
}
.footer-main .row .link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 8px;
}
.footer-main .row .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-main .row .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer-bottom {
  padding: 27px 0;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #919EAB;
}

.section-swap {
  background: url(../img/bg-secondary.png) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 1000px;
  height: 100vh;
}

.swap-container {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: Public Sans, sans-serif;
}
.swap-container .btn {
  height: 50px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#00AB55), to(#00AB55)), -webkit-gradient(linear, left bottom, left top, from(#00AB55), to(rgba(25, 36, 42, 0.54)));
  background: linear-gradient(0deg, #00AB55, #00AB55), linear-gradient(0deg, #00AB55 0%, rgba(25, 36, 42, 0.54) 100%);
  font-family: Public Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: white;
}
.swap-container .btn[disabled] {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(145, 158, 171, 0.24)), to(rgba(145, 158, 171, 0.24))), -webkit-gradient(linear, left bottom, left top, from(#00AB55), to(rgba(25, 36, 42, 0.54)));
  background: linear-gradient(0deg, rgba(145, 158, 171, 0.24), rgba(145, 158, 171, 0.24)), linear-gradient(0deg, #00AB55 0%, rgba(25, 36, 42, 0.54) 100%);
  cursor: not-allowed;
  color: rgba(145, 158, 171, 0.8);
}
.swap-container .swap-footer {
  margin-top: 40px;
  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: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.swap-container .swap-footer .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swap-container .swap-body {
  background: #161C24;
  -webkit-box-shadow: 0px 12px 24px -4px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 12px 24px -4px rgba(0, 0, 0, 0.1215686275);
  border-radius: 16px;
  padding: 24px 14px 8px;
}
.swap-container .swap-body h3 {
  margin-bottom: 0;
}
.swap-container .swap-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.swap-container .swap-top .swap-settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.swap-container .swap-top .swap-settings .timer {
  height: 34px;
  width: 34px;
  display: none;
  -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;
  font-size: 12px;
  color: #919EAB;
  background: url(../img/progressbar.png) no-repeat center center;
  background-size: contain;
}
.swap-container .swap-top .swap-settings .timer.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swap-container .swap-form {
  display: grid;
  grid-gap: 8px;
  margin-bottom: 32px;
}
.swap-container .swap-form .input-row {
  border: 1px solid #555759;
  border-radius: 14px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 174px;
}.swap-container .swap-form .input-row.one-row {
  grid-template-columns: none;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .swap-container .swap-form .input-row {
    grid-template-columns: 1fr 120px;
  }
}
.swap-container .swap-form .input-row label {
  position: absolute;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #161C24), color-stop(50%, #212B36));
  background: linear-gradient(180deg, #161C24 50%, #212B36 50%);
  padding: 2px 8px;
  color: #DEDFE1;
  font-size: 13px;
  top: -11px;
  left: 18px;
}
.swap-container .swap-form .input-row .staticValue {
  position: absolute;
  left: 18px;
  bottom: 10px;
  font-size: 13px;
  color: #A8ACAE;
}
.swap-container .swap-form .input-row .input {
  background: #212B36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 18px;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.swap-container .swap-form .input-row.one-row .input {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.swap-container .swap-form .input-row .input input {
  background: #212B36;
  font-size: 24px;
  font-weight: 400;
  line-height: 28.2px;
  text-align: left;
  height: 43px;
  margin-bottom: 13px;
  color: white;
  width: 100%;
}.swap-container .swap-form .input-row.one-row .input input {
  margin-top: 13px;
}
.swap-container .swap-form .input-row .input input::-webkit-input-placeholder {
  color: #637381;
}
.swap-container .swap-form .input-row .input input::-moz-placeholder {
  color: #637381;
}
.swap-container .swap-form .input-row .input input:-ms-input-placeholder {
  color: #637381;
}
.swap-container .swap-form .input-row .input input::-ms-input-placeholder {
  color: #637381;
}
.swap-container .swap-form .input-row .input input::placeholder {
  color: #637381;
}
.swap-container .swap-form .input-row .selectedCoin {
  display: grid;
  grid-template-columns: 40px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  padding-left: 30px;
  position: relative;
  height: 75px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .swap-container .swap-form .input-row .selectedCoin {
    grid-template-columns: 24px 1fr;
    padding-left: 20px;
  }
}
.swap-container .swap-form .input-row .selectedCoin h3 {
  font-size: 22px;
  font-weight: 800;
}
@media (max-width: 576px) {
  .swap-container .swap-form .input-row .selectedCoin h3 {
    font-size: 16px;
  }
}
.swap-container .swap-form .input-row .selectedCoin span {
  color: #919EAB;
  font-size: 12px;
}
.swap-container .swap-form .input-row .selectedCoin svg {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.swap-container .swap-form .separatorBtn {
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.swap-info {
  background: #212B36;
  border-radius: 10px;
  padding: 17px 24px;
  font-size: 12px;
  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;
}
.swap-info__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.swap-info__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
}
.swap-info span.swap-info-step_three {
  color: #919EAB;
}

input[type="text"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f5f5f5 inset !important; /* Цвет должен совпадать с фоном поля */
  -webkit-text-fill-color: #333 !important; /* Цвет текста при автозаполнении */
}

input[type="text"]:autofill {
  box-shadow: 0 0 0 1000px #f5f5f5 inset;
  -moz-text-fill-color: #333;
}

.swap-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.swap-empty {
  border: 1px solid #2F4F4F;
  border-radius: 10px;
  padding: 28px 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;
  text-align: center;
  font-weight: 800;
}

.swap-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 8px;
  background: #212B36;
  border-radius: 10px;
  padding: 14px 24px;
}
.swap-results__top {
  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;
}
.swap-results__top--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
}
.swap-results__top--right ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
}
.swap-results__top--right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.swap-results__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
}

.swapAdditionalAddress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 8px;
  padding: 8px 18px;
  margin: 8px 0 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.swap-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  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;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swap-popup.active {
  opacity: 1;
  pointer-events: all;
}
.swap-popup .layout {
  position: fixed;
  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;
  inset: 0px;
  -webkit-tap-highlight-color: transparent;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 101;
  background: rgba(0, 0, 0, 0.467);
  -webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.swap-popup__inner {
  z-index: 102;
  max-width: 636px;
  width: 95%;
  position: relative;
}
.swap-popup__inner .close {
  z-index: 103;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #151A21;
  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;
}
@media (max-width: 576px) {
  .swap-popup__inner .close {
    width: 50px;
    height: 50px;
    top: -40px;
  }
}
.swap-popup__inner .close svg {
  fill: white;
  width: 32px;
  height: 32px;
}
@media (max-width: 576px) {
  .swap-popup__inner .close svg {
    width: 24px;
    height: 24px;
  }
}
.swap-popup__body {
  border-radius: 16px;
  height: 60vh;
  display: grid;
  grid-template-columns: 40% 60%;
  color: rgb(255, 255, 255);
  max-height: calc(100% - 64px);
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) -40px 40px 80px -8px;
          box-shadow: rgba(0, 0, 0, 0.24) -40px 40px 80px -8px;
  background-image: url(/assets/img/lowOp-small-logo-white.png);
  background-repeat: no-repeat;
  background-size: 1000px;
  background-color: rgb(22, 28, 36);
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(145, 158, 171, 0.24);
  -o-border-image: initial;
     border-image: initial;
}
@media (max-width: 768px) {
  .swap-popup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 80vh;
  }
}
.swap-popup__body .dark {
  width: 100%;
  min-height: 50px;
}
@media (max-width: 768px) {
  .swap-popup__body .dark {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 35px;
  }
  .swap-popup__body .dark span {
    display: none;
  }
}
.swap-popup__top, .swap-popup__results {
  padding: 16px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swap-popup__top {
    height: unset;
  }
}
.swap-popup__results--list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  height: calc(100% - 70px);
  overflow-y: auto;
}
.swap-popup__results--list::-webkit-scrollbar {
  width: 4px;
}
.swap-popup__results--list::-webkit-scrollbar-track {
  background: #212B36;
  border-radius: 10px;
}
.swap-popup__results--list::-webkit-scrollbar-thumb {
  background: #0CD66E;
  border-radius: 10px;
}
.swap-popup__results .swapCoin-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.swap-popup__results .swapCoin-item .content p {
  font-weight: 800;
}
.swap-popup__results .swapCoin-item .content span {
  font-size: 11px;
  color: #919EAB;
}
.swap-popup__results .swapCoin-item .abb {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: #919EAB;
}

.filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 16px;
  height: 100%;
  overflow: hidden scroll;
}
@media (max-width: 768px) {
  .filter-list {
    height: unset;
    padding-right: 0;
    padding-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow: scroll hidden;
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.filter-list::-webkit-scrollbar {
  width: 4px;
}
@media (max-width: 768px) {
  .filter-list::-webkit-scrollbar {
    width: unset;
    height: 4px;
  }
}
.filter-list::-webkit-scrollbar-track {
  background: #212B36;
  border-radius: 10px;
}
.filter-list::-webkit-scrollbar-thumb {
  background: #0CD66E;
  border-radius: 10px;
}

.coinRow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 8px;
  cursor: pointer;
}
.coinRow-item img {
  width: 22px;
  height: 22px;
}
.coinRow-item span {
  font-size: 11px;
  color: #919EAB;
}
@media (max-width: 768px) {
  .coinRow-item span {
    display: none;
  }
}

.swap-search {
  background-image: none;
  margin-bottom: 1px;
  margin-right: 0px;
  margin-left: 0px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: rgba(13, 17, 22, 0.41);
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px inset, rgb(13, 17, 22) 0px 25px 15px -12px;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px inset, rgb(13, 17, 22) 0px 25px 15px -12px;
  color: rgb(255, 255, 255);
  z-index: 9999999;
  position: relative;
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5px 0px 0px 10px;
  border-radius: 8px;
  border-width: 1px;
  border-style: inset;
  border-color: rgba(13, 17, 22, 0.41);
  -o-border-image: initial;
     border-image: initial;
}
.swap-search svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentcolor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5rem;
  padding-right: 8px;
  -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.swap-search input {
  font: inherit;
  letter-spacing: inherit;
  color: currentcolor;
  padding: 1px 30px 5px;
  border: 0px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: none;
  height: 1.4375em;
  margin: 0px;
  -webkit-tap-highlight-color: transparent;
  display: block;
  min-width: 0px;
  width: 100%;
  -webkit-animation-name: mui-auto-fill-cancel;
          animation-name: mui-auto-fill-cancel;
  -webkit-animation-duration: 10ms;
          animation-duration: 10ms;
}

.section-faq {
  padding-top: 66px;
}
.section-faq hr {
  height: 1px;
  margin: 0;
  border: none;
  background: #919EAB;
}
.section-faq h2 {
  margin-top: 20px;
}
.section-faq .accordion {
  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;
}
.section-faq .accordion-item {
  border-bottom: 1px solid #555759;
}
.section-faq .accordion .accordion-header {
  height: 70px;
  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;
  font-family: Barlow;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
}
.section-faq .accordion .accordion-header svg {
  -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;
  width: 18px;
  height: auto;
}
.section-faq .accordion .accordion-content {
  display: none;
  padding-bottom: 20px;
}
.section-faq .accordion .accordion-header.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.notice-box {
  position: fixed;
  z-index: 11;
  bottom: 4px;
  width: 100%;
  -webkit-transition: -webkit-transform .25s ease-in;
  transition: -webkit-transform .25s ease-in;
  -o-transition: -o-transform .25s ease-in;
  -moz-transition: transform .25s ease-in,-moz-transform .25s ease-in;
  transition: transform .25s ease-in;
  transition: transform .25s ease-in,-webkit-transform .25s ease-in,-moz-transform .25s ease-in,-o-transform .25s ease-in;
  -webkit-transform: translateY(110%);
  -moz-transform: translateY(110%);
  -o-transform: translateY(110%);
  transform: translateY(110%)
}

.notice-box-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0)
}

.notice-box__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 86%;
  margin: 0 7%;
  padding: 15px 22px;
  color: #fff;
  border-radius: 4px;
  background: rgba(10,20,32,.86)
}

@media screen and (max-width: 1220px) {
  .notice-box__box {
      width:92%;
      margin: 0 4%
  }
}

@media screen and (max-width: 1040px) {
  .notice-box__box {
      width:-moz-calc(100% - 92px);
      width: calc(100% - 92px);
      margin: 0 46px
  }
}

@media screen and (max-width: 765px) {
  .notice-box__box {
      -webkit-box-orient:vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -moz-box-orient: vertical;
      -moz-box-direction: normal;
      flex-direction: column
  }
}

@media screen and (max-width: 640px) {
  .notice-box__box {
      width:-moz-calc(100% - 66px);
      width: calc(100% - 66px);
      margin: 0 35px
  }
}

.notice-box__icon {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-right: 8px
}

@media screen and (max-width: 765px) {
  .notice-box__icon {
      display:none
  }
}

.notice-box__text {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .1px;
  opacity: .94
}

@media screen and (max-width: 1040px) {
  .notice-box__text {
      font-size:15px
  }
}

@media screen and (max-width: 765px) {
  .notice-box__text {
      margin-bottom:12px
  }
}

@media screen and (max-width: 640px) {
  .notice-box__text {
      font-size:14px;
      line-height: 1.3
  }
}

.notice-box a {
  text-decoration: underline;
  color: #2a96ff
}

.notice-box__button {
  font-size: 14px;
  margin: 0 4px;
  padding: 4px 20px;
  cursor: pointer;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  -moz-transition: all .15s;
  transition: all .15s;
  text-align: center;
  letter-spacing: .6px;
  color: #fff;
  border-radius: 2px;
  background: -webkit-linear-gradient(295deg,#2690ff 28%,#1d82f0 100%);
  background: -moz-linear-gradient(295deg,#2690ff 28%,#1d82f0 100%);
  background: linear-gradient(155deg,#2690ff 28%,#1d82f0 100%)
}

.notice-box__button:hover {
  background: -webkit-linear-gradient(225deg,#2a96ff 28%,#2a96ff 100%);
  background: -moz-linear-gradient(225deg,#2a96ff 28%,#2a96ff 100%);
  background: linear-gradient(225deg,#2a96ff 28%,#2a96ff 100%)
}

@media screen and (max-width: 765px) {
  .notice-box__button {
      width:100%;
      margin: unset
  }

  .notice-box__button:first-child {
      margin-right: 10px
  }
}

@media screen and (max-width: 640px) {
  .notice-box__button {
      padding:5px 20px
  }
}

.notice-box__button__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin-left: 14px
}

@media screen and (max-width: 765px) {
  .notice-box__button__holder {
      width:100%;
      margin-left: unset
  }
}

.visible {
  visibility: visible!important;
  opacity: 1!important
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-wrapper main {
  flex-grow: 1;
}
.policy {
  padding-top: 188px;
  padding-bottom: 147px;
}
.policy__subtitle {
  text-align: center;
}
.policy__text {
  margin-bottom: 4px;
}
.policy__inner {
  max-width: 1130px;
}
.policy__list li {
  font-weight: 700;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #fff;
}
/* Устанавливаем счетчик для родительского списка */
.policy__list {
  counter-reset: parent-counter; /* Инициализируем счетчик */
  list-style: none; /* Убираем стандартные маркеры */
  padding: 0;
}

.policy__list > li {
  counter-increment: parent-counter; /* Увеличиваем счетчик для каждого элемента */
  margin-bottom: 4px;
  position: relative;
  padding-left: 20px;
}

.policy__list > li::before {
  content: counter(parent-counter) '. '; /* Добавляем номер перед заголовком */
  font-weight: 700;
  font-size: 16px;
  line-height: 175%;
  color: #fff;
  position: absolute;
  left: 0;
}

/* Вложенные списки */
.policy__list ul {
  list-style: none; /* Убираем стандартные маркеры */
}
.policy__list ul li a {
  text-decoration: underline;
}

/* Стиль для элементов вложенного списка */
.policy__list ul > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Дизайн маркеров для вложенных списков */
.policy__list ul > li::before {
  content: ''; /* Добавляем маркер в виде круга */
  width: 8px;
  height: 8px;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
}

.policy__list ul > li:first-child::before {
  display: none;
}

@media (max-width: 768px) {
  .policy__list li {
    font-size: 14px;
  }

  .policy__list > li::before {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .policy {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}
.how-works {
  padding-top: 188px;
  padding-bottom: 110px;
}
.how-works__subtitle {
  text-align: center;
  margin-bottom: 60px;
}
.how-works__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  counter-reset: how-works-counter;
}
.how-works__item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.how-works__image {
  position: relative;
  overflow: hidden;
  min-height: 477px;
  width: 100%;
  margin: 0 auto;
  max-width: 320px;
}
.how-works__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: 15px;
}
.how-works__text {
  counter-increment: how-works-counter;
  flex-grow: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #fff;
  margin-bottom: 50px;
}
.how-works__text::before {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  content: counter(how-works-counter);
  font-size: 20px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  color: #000;
  border-radius: 50%;
  display: none;
}
@media (max-width: 1230px) {
  .how-works__items {
    gap: 20px;
  }
  .how-works__text {
    margin-bottom: 30px;
  }
  .how-works__subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .how-works__items {
    gap: 30px;
  }
  .how-works {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .how-works__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .how-works__text::before {
    display: flex;
  }
}
@media (max-width: 768px) {
  .how-works__text {
    font-size: 14px;
  }
}

.construction {
  padding-top: 265px;
  padding-bottom: 201px;
}
.construction__container {
  text-align: center;
}
.construction__image {
  text-align: center;
  margin-bottom: 40px;
}
.construction__image img {
  display: inline-block;
  width: 375px;
  height: 145px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.construction__subtitle {
  text-align: center;
  max-width: 594px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .construction {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .construction {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .construction__image {
    margin-bottom: 20px;
  }
}

.error-page {
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: center;
}
.error-page__container {
}
.error-page__subtitle {
  text-align: center;
}
@media (max-width: 992px) {
  .error-page {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* timeout */
.swap-container {
}
.progress-swap {
  margin-top: 192px;
  padding-top: 44px;
  padding-bottom: 42px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.2);
  background: #161c24;
  border-radius: 10px;
}
.progress-swap__qr {
  padding: 12px;
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 18px;
}
.progress-swap__qr img {
  width: 105px;
  height: 105px;
  object-fit: cover;
  object-position: center;
}
.progress-swap__info {
  display: grid;
  justify-content: center;
  text-align: center;
  margin-bottom: 39px;
}
.progress-swap__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.progress-swap__label {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
}
.progress-swap__value {
  display: flex;
  gap: 5px;
  align-items: center;
}
.progress-swap__currency {
}
.progress-swap__currency img {
  width: 27px;
  height: 27px;
}
.progress-swap__count {
}
.progress-swap__footer {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}
.progress-swap__address {
  border-radius: 10px;
  padding: 21px 29px;
  background: #212b36;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #a9a9a9;
  margin-bottom: 19px;
  max-width: 372px;
  margin-left: auto;
  margin-right: auto;
}
.progress-swap__button {
  display: inline-block;
  padding: 6px 13px;
  height: 36px;
  font-weight: 700;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  background: #00ab55;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 35px;
  transition: all 0.5s ease 0s;
}
.progress-swap__button:hover {
  background-color: #fff;
  color: #00ab55;
}
.progress-swap__transaction {
}
.transaction-progress {
  background: #212b36;
  border-radius: 10px;
  padding-bottom: 20px;
}
.transaction-progress__header {
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
  background: #1e3c3a;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}
.transaction-progress__timeout {
}
.timeout {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  padding-bottom: 16px;
  background: #1f2f34;
  max-width: 173px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.timeout__header {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
  color: #969696;
}
.timeout__body {
  font-weight: 400;
  font-size: 32px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}
.timeout__footer {
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;
  text-align: center;
  color: #969696;
}
.transaction-progress__details {
  max-width: 245px;
  margin: 0 auto !important;
}
.transaction-progress__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  text-transform: capitalize;
  color: #fff;
}
.transaction-progress__details li::before {
  content: '';
  background: url('../img/loading.svg') center center no-repeat;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  animation: rotateLoader 1s linear infinite;
}

@media (max-width: 1320px) {
  .progress-swap {
    margin-top: 50px;
  }
}
@media (max-width: 992px) {
  .progress-swap {
    margin-top: 30px;
  }
  .progress-swap__address {
    padding: 10px;
  }
  .transaction-progress__header {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .progress-swap__button {
    font-size: 12px;
  }
  .transaction-progress__header {
    font-size: 14px;
  }
  .progress-swap {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .progress-swap__info {
    margin-bottom: 30px;
  }
  .transaction-progress__details li {
    font-size: 14px;
  }
}

.progress-swap__sucsess {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.progress-swap__sucsess img {
  display: inline-block;
  width: 98px;
  height: 63px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
.progress-swap__sucsess p {
  margin-top: 40px;
}
.section-swap_completed {
  /* min-height: 100%; */
}
.section-swap_completed .progress-swap {
  margin-top: 0;
}
.progress-swap__sucsess {
  height: 527px;
}

@media (max-width: 992px) {
  .section-swap_completed {
    min-height: 100%;
  }
  .progress-swap__sucsess {
    height: 400px;
  }
  .progress-swap__sucsess p {
    margin-top: 20px;
  }
}

@keyframes rotateLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.copy-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ab55;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.copy-notification.show {
  opacity: 1;
  visibility: visible;
}

.first-input {
	margin-bottom: 0px!important;
    font-size: 30px!important;
}
