.transaction-page{
  margin-bottom: 10px;
}
.transaction-page .transaction-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  background-color: #000000;
  margin-top: 10px;
  gap: 2px;
}

.transaction-table {
  width: calc(1008px / 3);
  border: 1px solid #282828;
  font-size: 13px;
  color: #999999;
  font-family: 'Dotum Regular';
  flex-grow: 1;
}

.transaction-page .transaction-table .table-heading {
  width: 100%;
  background: linear-gradient(to bottom, #000000 0%, #202020 15%, #0a1c2e 52%, #223248 85%, #1d6070 100%);
  font-size: 13px;
  color: #c1ad8b;
  padding: 10px 10px 0;
  font-weight: 600;
  font-family: noto sans cjk;
  letter-spacing: -0.8px;
  line-height: 40px;
  background-size: 100% 100%;
  position: relative;
}
.transaction-page .transaction-table .table-heading:before{
  content: '';
  background: linear-gradient(to right,  #1e629e 0%,#65f5fe 15%,#208caf 52%,#65f5fe 85%,#1e629e 100%);
  position: absolute;
  top: 0;
  height: 7px;
  width: 100%;
  left: 0;
}
.transaction-page .transaction-table .table-heading span {
  background-image: linear-gradient(45deg, #0079ad, #57ebff, #55f7a3, #0079ad, #57ebff, #55f7a3);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.transaction-page .goldTxt {
  color: #deb97d;
  font-weight: 600;
}

.transaction-page .text-white {
  color: #ffffff;
  font-weight: 600;
}

.transaction-page .text-white:hover {
  color: #deb97d;
}

.transaction-page .transaction-table tr {
  height: 26px;
  text-align: center;
  background-color: #1d1d1d;
}

.transaction-page .transaction-table tr:nth-of-type(odd) {
  background-color: #111111;
}

.transaction-page .table-heading span.pull-right {
  color: #818083;
}

.transaction-page .table-heading span:hover.pull-right {
  color: #cab593;
  cursor: pointer;
}

.transaction-page .transaction-table:first-of-type{
  width: 410px;
}

.transaction-page .transaction-table:nth-child(n + 2){
  width: 415px;
}

.transaction-page .table-heading span:first-of-type{
  font-size: 20px;
}

.transaction-page .transaction-table:nth-child(2) .table-heading span{
  font-size: 20px;
  color: #818083;
  cursor: pointer;
}

.transaction-page .transaction-table:nth-child(2) .table-heading span.active,
.transaction-page .transaction-table:nth-child(2) .table-heading span:hover{
  color: #c1ad8b;
}

.transaction-page .table-body {
  overflow: hidden;
}

ul.transaction-list{
  padding: 0 25px;
  height: 130px;
  margin: 0;
  /* overflow: hidden; */
}

.flow-list {
  position: relative;
  top: 0;
  animation: scroll 5s linear 1s infinite;
}
.flow-list.list-charge {
  animation-name: scroll-charge;
  animation-duration: var(--tl-charge-duration);
}
.flow-list.list-excharge {
  animation-name: scroll-excharge;
  animation-duration: var(--tl-excharge-duration);
}

@keyframes scroll-charge {
  100% {
    top: var(--tl-charge-offset);
  }
}
@keyframes scroll-excharge {
  100% {
    top: var(--tl-excharge-offset);
  }
}

ul.transaction-list .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  height: 26px;
  color: #999999;
}

ul.transaction-list .transaction-item {
  width: calc(100% / 3);
}
