#offres {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}
#offres .offer {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 5px 0px #DDDDDD;
  width: 80%;
  padding: 1.5em;
  gap: 10px;
}
#offres h3 {
  font-size: var(--large-title);
  font-weight: 300;
  margin: 0;
}
#offres .offer-detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
#offres .offer-detail-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  margin: 0;
  padding: 0;
  gap: var(--vertical-gap);
}
#offres .offer-detail-side-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  font-size: var(--large-text);
}
#offres .offer-detail-side-row-text {
  margin: 0;
  color: #999999;
  line-height: 1.1;
}
#offres .svg-icon-check {
  margin: 0.05em 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  width: var(--icon-size);
  height: var(--icon-size);
  min-width: var(--icon-size);
  min-height: var(--icon-size);
  max-width: var(--icon-size);
  max-height: var(--icon-size);
  color: var(--main-green);
}

.offer .svg-icon-check svg {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  #offres .offer {
    width: 100%;
  }
  #offres .offer-detail {
    flex-direction: column;
  }
  #offres .offer-detail-side {
    width: 100%;
  }
  #offres .offer-detail-side:first-of-type {
    margin-bottom: var(--vertical-gap);
  }
  #offres .offer-detail-side-row {
    font-size: var(--small-text);
  }
}
@media print {
  #offres {
    page-break-after: always;
  }
}

/*# sourceMappingURL=offres_style.css.map */
