@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2e2e2e;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #30ffff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #02fcfc;
}

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter";
}

body {
  background-color: #061722;
  color: white;
}

.header-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  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;
  text-transform: uppercase;
  padding: 0px 2%;
}

.header-wrapper .app-logo {
  font-family: "Inter";
  color: white;
  font-size: 26px;
  font-weight: 900;
}

.header-wrapper a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.header-wrapper a img {
  vertical-align: middle;
  width: 60px;
  height: 60px;
}

.main-form-block {
  padding: 100px 30px 0 30px;
  width: 100%;
  margin-bottom: 75px !important;
  margin: 0 auto;
  max-width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  .main-form-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 3%;
  }
}

body {
  background-image: url(images/bg-green.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.application-tagline {
  letter-spacing: 2px;
  padding-right: 30px;
  grid-area: tagline;
  font-weight: 900;
  font-size: 70px;
  max-width: 500px;
}

.application-tagline h2 {
  font-size: 1em;
}

.application-tagline p {
  color: #25ce7a;
  font-weight: 700;
}

.application-tagline .promises-text {
  color: white;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-top: 100px;
}

.application-tagline .promises-text span {
  margin-left: 1rem;
  letter-spacing: 0px;
}

@media (max-width: 1000px) {
  .application-tagline {
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 50px;
    letter-spacing: 0px;
  }
  .application-tagline .promises-text {
    display: none;
  }
}

.main-from .promises-text {
  display: none;
  color: white;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.main-from .promises-text span {
  margin-left: 1rem;
  letter-spacing: 0px;
}

@media (max-width: 1000px) {
  .main-from .promises-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-from .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}

.main-from .tabs .tabs-label.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.main-from .tabs .tabs-label {
  margin-right: 30px;
  padding: 10px 20px;
  border-radius: 24px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}

.tabs-content .exchange-form {
  margin-bottom: 24px;
}

.tabs-content .exchange-form .loader {
  position: absolute;
  border: 3px solid;
  display: none;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  -webkit-animation: 0.8s linear 0s normal none infinite rot;
  animation: 0.8s linear 0s normal none infinite rot;
}

.tabs-content .exchange-form .loader.loader-green {
  border-color: #25ce7a;
  border-bottom: 3px solid white;
}

@-webkit-keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.tabs-content .exchange-form .exchange-input {
  padding: 35px 150px 10px 24px;
  background-color: white;
  border-radius: 4px;
  position: relative;
  margin-top: 10px;
}

.tabs-content .exchange-form .exchange-input-title {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #929eaa;
}

.tabs-content .exchange-form .exchange-input > input[type="text"] {
  width: 100%;
  font-size: 20px;
  border: none;
  font-family: "Inter";
  background-color: white;
  outline: none;
}

.tabs-content .exchange-form .exchange-input-search {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: 160px;
  min-width: 90px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background-color: #f7f7f9;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.tabs-content .exchange-form .exchange-input-search::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 10px);
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #172a3f;
  border-bottom: 2px solid #172a3f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tabs-content .exchange-form .address {
  padding: 35px 24px 10px 24px;
  margin-top: 1rem;
}

.tabs-content .exchange-form .currency-coin-ticker {
  overflow: hidden;
  max-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: black;
}

.tabs-content .exchange-form .currencies-container {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px;
  background-color: white;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: none;
  z-index: 15;
}

.tabs-content .exchange-form .currency-coin.visible {
  opacity: 1;
  margin-right: 6px;
}

.tabs-content .exchange-form .exchange-select {
  z-index: 15;
  position: relative;
  background-color: white;
  width: 330px;
  border-radius: 4px;
}

.tabs-content .exchange-form .exchange-select .search-icon {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 24px;
  height: 24px;
  background-image: url(assets/images/search.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.tabs-content .exchange-form .exchange-select .exchange-select--search {
  width: 100%;
  padding: 10px 20px 10px 40px;
  margin-bottom: 10px;
  border-color: white;
  border: none;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
  outline: none;
}

.tabs-content .exchange-form .exchange-select .exchange-list-container {
  padding: 5px 0;
  max-height: 450px;
  overflow-y: scroll;
}

.tabs-content .exchange-form ul {
  list-style: none;
}

.tabs-content .exchange-form .exchange-select .exchange-list .exchange-list-item {
  padding: 4px 14px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tabs-content .exchange-form .exchange-select .exchange-list .exchange-list-item:hover {
  background-color: #25ce7a;
}

.tabs-content .exchange-form .exchange-select .currency-image {
  margin-right: 12px;
  width: 22px;
  height: 22px;
}

.tabs-content .exchange-form .exchange-select .currency-ticker {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  color: black;
}

.tabs-content .exchange-form .exchange-select .currency-name {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  font-size: 14px;
  color: #ccc;
  text-align: left;
  word-break: break-all;
}

.tabs-content .exchange-form .exchange-sequence {
  margin-left: 50px;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item {
  height: 60px;
  padding-right: 40px;
  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: flex-start;
  font-size: 14px;
  color: white;
  position: relative;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 26px;
  left: -22px;
  background-color: #627080;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 26px;
  left: -22px;
  background-color: #627080;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item .sequence-circule {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #627080;
  position: absolute;
  left: -25px;
  top: calc(50% - 4px);
}

.tabs-content .exchange-form .exchange-sequence .sequence-item .coin-sequence {
  margin-right: 20px;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item .tooltiped.tooltiped-green {
  border-bottom: 1px dashed #25ce7a;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item .exchange-info-tooltip {
  margin-top: 10px;
  display: none;
  max-width: 275px;
  padding: 24px;
  background-color: white;
  color: black;
  -webkit-box-shadow: 0px 2px 8px rgba(23, 42, 63, 0.16), 0px 0px 1px rgba(23, 42, 63, 0.16);
  box-shadow: 0px 2px 8px rgba(23, 42, 63, 0.16), 0px 0px 1px rgba(23, 42, 63, 0.16);
  border-radius: 4px;
  z-index: 4;
  position: relative;
}

.tabs-content .exchange-form .exchange-sequence .sequence-item .change-icon {
  position: absolute;
  right: 2px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .tabs-content .exchange-form .exchange-sequence .sequence-item {
    font-size: 8px !important;
  }
}

@media (max-width: 1000px) {
  .tabs-content .exchange-form .exchange-input-search {
    padding-left: 8px;
    font-size: 16px;
    width: 125px;
  }
  .tabs-content .exchange-form .currency-coin {
    display: none;
  }
  .tabs-content .exchange-form .exchange-input-title {
    left: 12px;
    top: 7px;
  }
  .tabs-content .exchange-form .exchange-input {
    padding: 25px 90px 10px 12px;
  }
  .tabs-content .exchange-form .address {
    padding: 25px 12px 10px 12px;
  }
  .tabs-content .exchange-form .exchange-input > input[type="text"] {
    font-size: 15px;
  }
}

.tabs-content .exchange-form-btn {
  display: block;
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 24px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.tabs-content .exchange-form-btn .btn-arrow-icon {
  position: absolute;
  right: 14px;
  top: calc(50% - 14px);
  width: 24px;
  height: 28px;
}

.tabs-content .exchange-form-btn-wrap {
  position: relative;
}

.tabs-content .exchange-form-btn.button-green {
  background-color: #25ce7a;
  text-decoration: none;
}

.tabs-content .exchange-form-btn-wrap.disabled:after {
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

@media screen and (max-width: 1280px) {
  .application-tagline {
    font-size: calc(20px + 3vw);
  }
}

.features .info-block {
  padding: 100px 0;
}

.features .info-block:nth-child(2n + 1) {
  background-color: rgba(255, 255, 255, 0.1);
}

.features .features-item {
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  max-width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features .features-item .image-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.features .features-item .image-block .image {
  width: 65%;
}

.features .features-item .image-block .image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

.features .features-item .feature-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.features .features-item .feature-text h2 {
  width: 90%;
  color: #f7f7f7;
  font-size: 34px;
  line-height: 43px;
  font-weight: 800;
  margin-bottom: 30px;
}

.features .features-item .feature-text p {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  width: 90%;
  font-size: 20px;
  line-height: 36px;
  color: #b5bbc2;
}

@media (max-width: 1000px) {
  .features .features-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .features .features-item .image {
    margin: 0 auto;
    margin-bottom: 12px;
  }
  .features .features-item .feature-text h2 {
    font-size: 26px;
    width: 100%;
  }
  .features .features-item .feature-text p {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
}

.error {
  color: #e45b5b;
  margin-top: 12px;
  display: none;
  font-size: 14px;
}

#exchangeButton.disabled {
  opacity: 0.5;
  /* Reduce opacity */
  cursor: not-allowed;
  /* Show disabled cursor */
}

p {
  color: black;
}

.payinaddress {
  word-break: break-all;
}

.transaction-info {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.transaction-info .transaction .exchange-input {
  padding-top: 40px !important;
  padding-bottom: 10px !important;
}

.transaction-info .header {
  margin-bottom: 24px !important;
}

.transaction-info .status {
  text-transform: uppercase;
}

.transaction-info .loading {
  -webkit-animation: status 1s ease-in-out infinite;
          animation: status 1s ease-in-out infinite;
}

@-webkit-keyframes status {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes status {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.transaction-info .sendamount,
.transaction-info .receiveamount {
  text-transform: uppercase;
  font-weight: bold;
}

.transaction-info p {
  font-weight: bold;
  cursor: pointer;
}

.transaction-info .visible {
  display: block;
}

.transaction-info .payout-hash {
  word-break: break-all;
  display: none;
}

.app-footer {
  -ms-flex-preferred-size: 160px;
  flex-basis: 160px;
  padding: 30px 30px;
  width: 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;
}

.footer-wrapper {
  width: 100%;
  max-width: 1140px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "logo labels menu";
  -ms-grid-columns: 1fr 1fr 2fr;
      grid-template-columns: 1fr 1fr 2fr;
}

.footer-wrapper .app-logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  color: #b5bbc2;
  text-transform: uppercase;
}

.app-logo > a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.btn-arrow-icon {
  position: absolute;
  right: 14px;
  top: calc(50% - 14px);
  width: 24px;
  height: 28px;
}

@media (max-width: 1000px) {
  .btn-arrow-icon {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */