* {
  margin: 0;
  border: none;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
  font-size: 12px;
}

.num {
  font-family: Rubik;
}

.text-gray {
  color: gray;
}

.text-blue {
  color: blue;
}

body .container {
  margin: 20px;
}
@media (min-width: 768px) {
  body .container {
    width: 450px;
    margin: 20px auto;
  }
}
body .container header {
  margin: 32x 0px;
}
body .container header nav {
  position: relative;
}
body .container header nav .arrow {
  position: absolute;
}
body .container header nav .arrow svg {
  width: 20px;
}
body .container header nav .content {
  text-align: center;
}
body .container header nav .content h3 {
  font-weight: 600;
  font-size: 16px;
}
body .container header .hero {
  text-align: center;
  margin: 24px 0px;
}
body .container header .hero .actual-arrival {
  padding: 4px 0px;
}
body .container header .hero .hero-amount {
  margin: 4px 0px;
}
body .container header .hero .hero-amount .value {
  font-size: 32px;
}
body .container header .hero .hero-amount .currency {
  font-weight: 500;
}
body .container main .transaction-steps {
  padding: 0px 16px;
}
body .container main .transaction-steps .step {
  margin: 4px;
  position: relative;
}
body .container main .transaction-steps .step::before {
  position: absolute;
  display: block;
  content: "";
  height: 55px;
  width: 2px;
  border-left: 2px solid rgba(0, 0, 255, 0.1);
  top: 16px;
  left: -18px;
  z-index: 0;
}
body .container main .transaction-steps .step:last-of-type::before {
  display: none;
}
body .container main .transaction-steps .step::marker {
  position: absolute;
  font-size: 24px;
  text-align: center;
  z-index: 10;
  color: #005DFF;
}
body .container main .transaction-steps .step .step-title {
  font-weight: 500;
  font-size: 13px;
}
body .container main .transaction-steps .step .step-status {
  padding: 4px 0px;
}
body .container main hr {
  margin: 28px 0px;
  border: 0.25px solid rgba(0, 0, 0, 0.025);
}
body .container main .more-info .withdraw {
  display: grid;
  grid-template-columns: 2fr 3fr;
  overflow-wrap: anywhere;
  margin: 20px 0px;
}
body .container main .more-info .withdraw .val {
  text-align: right;
  font-size: 14px;
}
body .container main .more-info .withdraw .val .wallet-address {
  text-decoration: line-through double rgb(124, 168, 255) 8px;
}
body .container main .more-info .withdraw .val svg {
  height: 16px;
}
body .container main .more-info .withdraw.copy .val {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}
body .container main .more-info .withdraw.copy #txid {
  color: #005DFF;
  border-bottom: 1px dashed lightgray;
}
body .container footer {
  margin: 120px 0px 20px 0px;
}
body .container footer button {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  text-align: center;
  background-color: #1D46FF;
  color: white;
  font-size: 14px;
}

/*# sourceMappingURL=style.css.map */
