.vault-history {
  margin-top: 104px;
  padding-top: 104px;
  border-top: 1px solid var(--aura-line);
}

.vault-history-tabs {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--aura-line);
  background: rgba(0,0,0,.35);
}

.vault-history-tabs button {
  min-height: 58px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--aura-line);
  background: transparent;
  color: rgba(233,255,209,.45);
  font: inherit;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
}

.vault-history-tabs button:last-child {
  border-right: 0;
}

.vault-history-tabs button:hover {
  color: var(--aura-white);
  background: rgba(204,255,0,.035);
}

.vault-history-tabs button[data-state="active"] {
  color: var(--aura-lime);
  background:
    linear-gradient(
      180deg,
      rgba(204,255,0,.11),
      rgba(204,255,0,.035)
    );
  box-shadow:
    inset 0 -2px 0 var(--aura-lime);
}

.vault-history-panel {
  border: 1px solid var(--aura-line);
  border-top: 0;
  background:
    linear-gradient(
      145deg,
      rgba(14,20,8,.72),
      rgba(0,0,0,.92)
    );
}

.vault-history-panel-head {
  min-height: 76px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--aura-line);
}

.vault-history-panel-head span {
  display: block;
  color: var(--aura-lime);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.vault-history-panel-head strong {
  display: block;
  margin-top: 5px;
  color: var(--aura-white);
  font-size: .76rem;
  letter-spacing: .04em;
}

.vault-history-panel-head button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--aura-line-hot);
  background: rgba(204,255,0,.035);
  color: var(--aura-lime);
  font: inherit;
  font-size: .58rem;
  font-weight: 900;
  cursor: pointer;
}

.vault-history-list {
  min-height: 150px;
}

.vault-history-row {
  min-height: 86px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns:
    minmax(120px, .8fr)
    minmax(160px, 1.2fr)
    minmax(150px, .9fr)
    auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(204,255,0,.07);
}

.vault-history-row:last-child {
  border-bottom: 0;
}

.vault-history-amount strong {
  display: block;
  color: var(--aura-lime);
  font-family: var(--aura-display);
  font-size: 1.3rem;
}

.vault-history-amount small {
  display: block;
  margin-top: 4px;
  color: var(--aura-muted);
  font-size: .58rem;
}

.vault-history-wallet span,
.vault-history-date span {
  display: block;
  color: rgba(233,255,209,.38);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.vault-history-wallet strong,
.vault-history-date strong {
  display: block;
  margin-top: 6px;
  color: var(--aura-highlight);
  font-family: monospace;
  font-size: .7rem;
}

.vault-history-row a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--aura-line);
  color: var(--aura-highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 900;
  text-decoration: none;
}

.vault-history-row a:hover {
  border-color: var(--aura-line-hot);
  color: var(--aura-lime);
}

.vault-history-empty {
  min-height: 150px;
  padding: 30px;
  display: grid;
  place-items: center;
  color: rgba(233,255,209,.42);
  text-align: center;
  font-size: .72rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .vault-history-tabs {
    grid-template-columns: 1fr;
  }

  .vault-history-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--aura-line);
  }

  .vault-history-tabs button:last-child {
    border-bottom: 0;
  }

  .vault-history-row {
    grid-template-columns: 1fr 1fr;
  }

  .vault-history-row a {
    grid-column: 1 / -1;
  }
}
/* SECTION DESCRIPTION RIGHT ALIGN // V2 */
@media (min-width: 901px) {
  .vaults-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) !important;
  }

  .vaults-section-head > p {
    grid-column: 2 !important;
    justify-self: end !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 0 0 auto !important;
    text-align: right !important;
  }
}
