.cookie-consent {
  display: grid;
  grid-template-columns: minmax(auto, 80%) minmax(auto, 250px);
  background-color: #32d486;
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  bottom: 0;
}
.cookie-consent .message {
  grid-column: 1;
  margin-left: 40px;
}
.cookie-consent .message p {
  color: #343435;
  margin: 0;
  padding-top: 7px;
}
.cookie-consent .actions {
  grid-column: 2;
  text-align: right;
}
.cookie-consent .actions .btn {
  background-color: #343435;
  color: #f4f4f4;
}

#header {
  display: grid;
  grid-template-columns: 32px minmax(auto, 150px) minmax(20px, 100%) auto;
  margin: 36px 0;
  padding: 0 200px;
  max-width: 1200px;
}
@media screen and (max-width: 667px) {
  #header {
    grid-template-columns: 64px 80px auto;
    margin: 0;
    padding: 20px 0 0 30px;
  }
  #header.open {
    background-color: #ffffff;
  }
}
@media screen and (min-width: 668px) and (max-width: 1024px) {
  #header {
    padding: 20px 0 0 50px;
    grid-template-columns: 64px minmax(auto, 150px) auto;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #header {
    padding: 0 90px;
  }
}
#header .burger {
  display: none;
}
@media screen and (max-width: 667px) {
  #header .burger {
    grid-column: 1;
    cursor: pointer;
    display: block;
  }
}
#header .logo {
  grid-column: 1;
}
@media screen and (max-width: 667px) {
  #header .logo {
    grid-column: 2;
    margin-top: 8px;
    text-align: right;
  }
  #header .logo svg {
    width: 24px;
    height: 32px;
  }
}
#header .brand {
  grid-column: 2;
  font-weight: 600;
  font-size: 25px;
  line-height: 40px;
  padding-left: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 667px) {
  #header .brand {
    grid-column: 3;
    margin-top: 6px;
    font-size: 20px;
    line-height: 32px;
  }
}
#header .brand a {
  text-decoration: none;
  color: #343435;
}
#header .brand .brand-sub {
  font-weight: 200;
  color: #343435;
  padding-left: 10px;
}
#header .nav {
  grid-column: 4;
  margin-top: 13px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 667px) {
  #header .nav {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f4f4;
    flex-direction: column;
    padding: 20px 0 0 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  #header .nav.open {
    display: flex;
  }
}
#header .nav a {
  text-decoration: none;
  transition: color 0.3s;
  color: #343435;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 500;
}
#header .nav a:hover {
  color: #d2d2d2;
}
#header .actions {
  display: flex;
  gap: 10px;
}
#header .actions .btn {
  background-color: black;
  color: #32d486;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
#header .actions .btn.login {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
#header .actions .btn.login:hover {
  background: #ffffff;
  color: #32d486;
}
#header .actions .btn.signup:hover {
  background: #d2d2d2;
}

#footer {
  padding: 50px 200px;
  margin-top: 50px;
  border-top: 1px solid #d2d2d2;
}
@media screen and (max-width: 667px) {
  #footer {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 668px) and (max-width: 1024px) {
  #footer {
    padding: 50px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #footer {
    padding: 90px;
  }
}
#footer .links {
  display: grid;
  grid-template-columns: repeat(6, 100px);
  grid-column-gap: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 50px;
}
@media screen and (max-width: 667px) {
  #footer .links {
    grid-template-columns: 100%;
    grid-column-gap: 0;
  }
}
@media screen and (min-width: 668px) and (max-width: 1024px) {
  #footer .links {
    grid-template-columns: repeat(3, minmax(150px, auto));
    grid-column-gap: 50px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #footer .links {
    grid-template-columns: repeat(6, minmax(150px, auto));
    grid-column-gap: 20px;
  }
}
@media screen and (max-width: 667px) {
  #footer .links .column {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d2;
  }
}
#footer .links h4 {
  font-size: 12px;
  line-height: 19.2px;
  font-weight: 500;
}
#footer .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .links ul li {
  font-size: 12px;
  line-height: 19.2px;
  font-weight: 500;
  margin-top: 6px;
}
@media screen and (max-width: 667px) {
  #footer .links ul li {
    font-size: 12px;
    line-height: 19.2px;
    font-weight: 400;
  }
}
#footer .links ul li a {
  color: #343435;
  text-decoration: none;
}
#footer .sign p {
  font-size: 12px;
  line-height: 19.2px;
  font-weight: 400;
}

.error {
  display: grid;
  grid-template-columns: 20% 70%;
  grid-column-gap: 40px;
  padding-top: 100px;
}
.error h1 {
  grid-column: 1;
  font-size: 96px;
  line-height: 153.6px;
  font-weight: 500;
  text-align: right;
  color: #fb285a;
}
.error p {
  grid-column: 2;
  text-align: left;
  margin-top: 42px;
  font-size: 64px;
  line-height: 102.4px;
  font-weight: 500;
}

body {
  font-family: Inter, sans-serif;
  background-color: #f4f4f4;
  color: #1d1d1e;
  margin: 0;
}

a {
  color: #1d1d1e;
  text-decoration: none;
}

p {
  font-size: 20px;
  line-height: 32px;
  color: #343435;
}
p.short {
  max-width: 770px;
}

small {
  font-size: 12px;
  line-height: 19.2px;
  font-weight: 400;
}
small.label {
  margin-right: 10px;
}

h1 {
  font-size: 40px;
  line-height: 64px;
  font-weight: 500;
  margin: 20px 0;
}
@media screen and (max-width: 667px) {
  h1 {
    font-size: 32px;
    line-height: 51.2px;
    font-weight: 500;
  }
}
h1.lead {
  margin-top: 100px;
}

h2 {
  font-size: 32px;
  line-height: 51.2px;
  font-weight: 500;
}
@media screen and (max-width: 667px) {
  h2 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
  }
}

h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}
@media screen and (max-width: 667px) {
  h3 {
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
  }
}

code, code pre {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
}

#content {
  padding: 0 200px;
  max-width: 1200px;
}
@media screen and (max-width: 667px) {
  #content {
    padding: 0 40px;
  }
}
@media screen and (min-width: 668px) and (max-width: 1024px) {
  #content {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #content {
    padding: 0 90px;
  }
}

.btn {
  border: none;
  display: inline-block;
  padding: 15px 30px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border 0.3s;
}
.btn.small {
  padding: 7px 15px;
}
.btn.primary {
  background: #32d486;
  color: #343435;
}
.btn.primary:hover {
  background: #ffffff;
  color: #32d486;
}
.btn.secondary {
  background: #d2d2d2;
  color: #343435;
}
.btn.secondary:hover {
  background: #e5e5e7;
}
.btn.danger {
  background: #fb285a;
  color: #ffffff;
}
.btn.danger:hover {
  background: #ffffff;
  color: #fb285a;
}

.columns-two {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-column-gap: 4%;
}

.columns-three {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-column-gap: 2%;
}

.columns-four {
  display: grid;
  grid-template-columns: 24% 23% 23% 24%;
  grid-column-gap: 2%;
}

.alert {
  padding: 30px 20px;
}
.alert.warning {
  background: #e5e5e7;
  color: #fb285a;
}

.amount-row {
  display: grid;
  grid-template-columns: auto minmax(200px, 300px) 50px;
  grid-column-gap: 10px;
  color: #343435;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.amount-row .address a {
  padding-right: 5px;
}
.amount-row .amount {
  text-align: right;
}

.page {
  padding-top: 90px;
}

p.disclaimer {
  color: #8e8e8e;
  padding-top: 100px;
  font-size: 12px;
  line-height: 19.2px;
  font-weight: 400;
}

.quick-search-form {
  width: 400px;
  margin-top: -5px;
}
.quick-search-form .query {
  width: 100%;
  height: 32px;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}

.search-query {
  padding: 80px 0;
}
.search-query h1 {
  font-size: 32px;
  line-height: 51.2px;
  font-weight: 500;
}
.search-query h1 small {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 400;
}

.search-form {
  text-align: center;
  padding: 10px 0;
  display: grid;
  grid-template-columns: minmax(400px, auto) 150px;
}

.page-index {
  padding-top: 100px;
}

.page-balance .address-details {
  display: grid;
  grid-template-columns: 100px auto;
  padding: 20px 0;
}
.page-balance .address-details .avatar {
  grid-row: 1/3;
  grid-column: 1;
  height: 100px;
}
.page-balance .address-details h2 {
  grid-row: 1;
  grid-column: 2;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}
.page-balance .address-details .address {
  grid-row: 2;
  grid-column: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.page-balance .balances {
  padding: 20px 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.page-balance .total {
  padding: 20px 0;
  border-bottom: 1px solid #d2d2d2;
}
.page-balance .total .balance {
  color: #343435;
}

.address-details .avatar div.empty {
  border-radius: 5px;
  background-color: #a0a0a0;
  width: 80px;
  height: 80px;
  margin: 10px;
}
.address-details .avatar .generated {
  border-radius: 5px;
  margin: 10px;
}

.page-tx .header {
  display: grid;
  grid-template-columns: min-content 200px auto;
  padding-bottom: 20px;
}
.page-tx .header h1 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  padding-right: 20px;
}
.page-tx .header .success {
  border: none;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  align-content: center;
  color: #343435;
}
.page-tx .header .success.confirmed {
  background-color: #32d486;
}
.page-tx .header .success.pending {
  background-color: #8e8e8e;
}
.page-tx .header .success.not-found {
  background-color: #fb285a;
}
.page-tx .details, .page-tx .tx-ethereum, .page-tx .tx-bitcoin {
  padding: 20px 0;
  border-top: 1px solid #d2d2d2;
}
.page-tx .details .row, .page-tx .tx-ethereum .row, .page-tx .tx-bitcoin .row {
  display: grid;
  grid-template-columns: 200px auto;
  color: #343435;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.page-tx .details .row div:nth-child(2), .page-tx .tx-ethereum .row div:nth-child(2), .page-tx .tx-bitcoin .row div:nth-child(2) {
  text-align: right;
}
.page-tx .details h2, .page-tx .tx-ethereum h2, .page-tx .tx-bitcoin h2 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.tx-bitcoin .changes h2 {
  border-bottom: 1px solid #d2d2d2;
}