.div.margin-top {
  margin-top: 200px;
}

.balance-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  width: 100%;
}
.balance-box.error-border {
  border: 1px solid #ff007a;
}
.paragraph.invalid-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}
.paragraph.valid-text {
  color: #fff;
  font-size: 18px;
}
.paragraph.error-text {
  color: #ff007a;
  font-size: 18px;
}
.paragraph.text-left {
  text-align: left;
  width: 100%;
  padding-left: 15px;
  margin-bottom: 15px;
}
.estimate-apr {
  font-weight: 500;
  font-family: Chirp, sans-serif;
}

.days {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.days.active {
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 0;
  color: #fff;
}
.days-rate {
  font-family: Chirp Display, sans-serif;
}
.days-parapraph {
  margin-bottom: 0;
}

.small-font {
  font-size: 18px;
}
.small-font.margin-bottom {
  margin-bottom: 15px;
}
.small-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.stake-title {
  margin-bottom: 10px;
}

.grid-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  width: 100%;
  margin-bottom: 50px;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 25px;
}

.line-margin-bottom {
  margin-bottom: 25px;
}
.full {
  width: 100%;
}
.cta.invalid {
  opacity: 0.25;
  cursor: not-allowed;
}
.table-div {
  width: 900px;
}

.stake-table {
  width: 100%;
  text-align: left;
}
.stake-table th {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 17px 20px;
}
.stake-table td {
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.08);
}
.table-tr td:first-child {
  border-radius: 15px 0 0 15px;
}

.table-tr td:last-child {
  border-radius: 0 15px 15px 0;
}

.table-row {
  width: 100%;
  height: 15px;
}
.long-td {
  min-width: 150px;
}
.table-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}
.table-text.earn {
  color: #0fa;
}
.table-button {
  text-align: right;
  font-size: 16px;
  font-family: Chirp Display, sans-serif;
  color: #fff;
  cursor: pointer;
}
.table-button.disabled {
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
}
.column.staking-column {
  color: #fff;
}

.stake-input-box {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
.stake-input-box.error {
  border: 1px solid #ff007a;
}
.stake-input-box.error .stake-input {
  color: #ff007a;
}

input.stake-input {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  border: none !important;
  font-size: 18px;
  text-align: right;
  border-radius: 15px;
  outline: none;
}
.stake-input:disabled {
  color: rgba(255, 255, 255, 0.5);
}
.input-tag {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.5);
}
.max {
  margin-right: 20px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}
.history-section {
  display: none;
}
@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 479px) {
  .grid-1 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .table-div {
    width: 100%;
    overflow-x: scroll;
  }
}