.section-bids .container {
  max-width: 1000px;
}
.section-bids .container .bids {
  margin-top: 50px;
}
.section-bids .container .bids .row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}
.section-bids .container .bids .row:first-child p {
  font-weight: 600;
  text-transform: uppercase;
}
.section-bids .container .bids .row p {
  margin: 0;
  padding: 10px 5px;
  flex: 1;
}
.section-bids .container .bids .row p:first-child {
  padding-left: 0;
}
.section-bids .container .bids .row p:nth-child(2) {
  flex: 3;
}
.section-bids .container .bids .row p:last-child {
  padding-right: 0;
}
.section-bids .container .bids .row p a {
  color: var(--black);
  font-weight: 300;
}
.section-bids .container .buttons {
  margin-top: 50px;
  justify-content: center;
}

/*

Scroll Animations

*/
.section-bids .container {
  margin-top: -50px;
  opacity: 0;
  transition: all 1s;
}
.section-bids.scrolled-to .container {
  margin-top: 0;
  opacity: 1;
}