.table {
  width: 100%;
  min-width: revert !important;
}
.th {
  border: none;
  font-size: 16rem;
  font-weight: 400;
  color: var(--color-text-3);
  padding: 32px 8px 7px;
  text-transform: capitalize;
}

.td {
  padding: 0 8px;
  font-size: 16rem;
  position: relative;
  color: var(--color-text-1);
  background-color: revert !important;
}

.th,
.td {
  display: flex;
  align-items: center;
}
.tbody .tr {
  height: 96px;
}
.tbody .tr:hover .td {
  background-color: var(--color-card-3) !important;
  cursor: pointer;
}
.tbody .tr:hover .purchase-btn {
  color: #ffffff;
  background-color: #1b41b2;
}
.pointer-hover {
  cursor: pointer;
}

.tbody .tr .td:last-child::after,
.tbody .tr .td:first-child::before {
  position: absolute;
  content: '';
  left: -16rem;
  top: 0;
  height: 100%;
  width: 16rem;
}
.tbody .tr .td:last-child::after {
  left: auto;
  right: -16rem;
}
.tbody .tr:hover .td:last-child::after,
.tbody .tr:hover .td:first-child::before {
  background-color: var(--color-card-3);
}

.th:first-child,
.td:first-child {
  padding-left: 0;
  width: 29.236% !important;
}

.th:nth-child(2),
.td:nth-child(2) {
  width: 13% !important;
}
.th:nth-child(3),
.td:nth-child(3) {
  width: 17% !important;
}
.th:nth-child(4),
.td:nth-child(4) {
  width: 17% !important;
}
.th:nth-child(5),
.td:nth-child(5) {
  width: 12.7% !important;
}
.th:last-child,
.td:last-child {
  width: 11.3% !important;
}

.td.operate {
  justify-content: flex-end;
}
.wait-bubble {
  width: 0px;
  height: 0px;
  color: rgb(255, 149, 0);
  border-width: 10px 10px 8px 0px;
  border-style: solid;
  border-color: currentcolor transparent transparent;
  top: 75%;
  left: 8px;
  margin-bottom: 4px;
  position: absolute
}
.fail-bubble {
  width: 0px;
  height: 0px;
  color: #CC3D3D;
  border-width: 10px 10px 8px 0px;
  border-style: solid;
  border-color: currentcolor transparent transparent;
  top: 75%;
  left: 8px;
  margin-bottom: 4px;
  position: absolute
}
.success-bubble {
  width: 0px;
  height: 0px;
  color: #11AD7A;
  border-width: 10px 10px 8px 0px;
  border-style: solid;
  border-color: currentcolor transparent transparent;
  top: 75%;
  left: 8px;
  margin-bottom: 4px;
  position: absolute
}
.td.operate .operate-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--color-neutral-2);
  border-radius: 4px;
  font-size: 14rem;
  white-space: nowrap;
  font-weight: 600;
  font-family: 'Gate_Sans Bold';
}
.td.operate .purchase-btn {
  background-color: var(--color-brand-1);
  color: #ffffff;
}
.operate-btn.done {
  background-color: var(--color-neutral-3);
  position: relative;
}
.td.operate .operation-btn-icon {
  position: absolute;
  /* right: -20px; */
  top: -17px;
  left: calc(77% - 20px);
  height: 18px;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 18px;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  z-index: 9;
  text-align: center;
}
.fail {
  left: calc(80% - 20px) !important;
}
.underline {
  text-decoration: underline dashed 1px;
  text-underline-offset: 4px;
  text-transform: none;
  cursor: pointer;
}
.project-intro {
  display: flex;
  align-items: center;
}
.project-intro-desc {
  margin-top: 8px;
  color: var(--color-text-3);
}
.project-intro-img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 16px;
}

.no-data-text {
  color: var(--color-text-3);
}

