
.sale-bar {
  width: auto;
  height: auto;
  background: url("/static/images/sales-image.jpg")
    center / cover no-repeat;
}

.sale-bar .overlay {
  background-color: rgba(45, 45, 45, 0.2);
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4em;
  font-weight: 800;
  padding: 0.5em;
}

.sale-bar .overlay p {
  margin: 0.5rem 0;
}

.ads {
  width: 100%;
  overflow-x: scroll;
  display: flex;
}

.advertisement {
  margin: 0.5em 0.5em;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex: 1;
  background-color: red;
}

.advertisement:nth-child(1) {
  background-color: rgb(240, 0, 0);
  color: white;
}

.advertisement:nth-child(2) {
  background-color: rgb(3, 162, 0);
  background: url("/static/images/ad2.jpg")
    center/cover no-repeat;
  color: white;
}

.advertisement:nth-child(3) {
  background-color: rgb(51, 51, 51);
  background: url("/static/images/ad3.jpg")
    center/cover no-repeat;
  color: white;
}

.advertisement:nth-child(4) {
  background-color: rgb(51, 51, 51);
  background: url("/static/images/ad4.jpg")
    center/cover no-repeat;
  color: white;
}

.advertisement h3,
.advertisement h4,
.advertisement p {
  padding: 0;
  margin: 0.2em 0;
}

.advertisement h3 {
  font-weight: 600;
}

.advertisement .overlay {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  font-size: 1em;
}

.coupon {
  margin: 0.5em 0.5em;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex: 1;
}

.coupon:nth-child(1) {
  background-color: rgb(0, 96, 240);
  background: url("/static/images/coup1.jpg")
    center/cover no-repeat;
  color: white;
}

.coupon:nth-child(2) {
  background-color: rgb(3, 162, 0);
  background: url("/static/images/coup2.jpg")
    center/cover no-repeat;
  color: white;
}

.coupon h3,
.coupon h4,
.coupon p {
  padding: 0;
  margin: 0.5em 0;
}

.coupon h3 {
  font-weight: 800;
}

.coupon .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}
