<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.everything-required {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
}

.form-group label, .input-group label {
  margin-top: 8px;
  font-size: 14px;
}

.custom-file-label {
  color: #6C747C;
}

.custom-file-label::after {
  content: "Parcourir";
  background: #E2A061;
  color: white;
  border: none;
}

.checkbox input {
  display: none;
}
.checkbox input + i img {
  transform: scale(0);
  opacity: 0;
  transition: all 100ms ease-in-out;
}
.checkbox input:checked + i img {
  width: 17px;
  height: auto;
  transform: scale(1);
  opacity: 1;
}

.checkbox-icon {
  width: 25px;
  height: 25px;
  background: white;
  float: left;
  margin-right: 5px;
  border: 1px solid gray;
  border-radius: 2px;
}

.info-icon {
  width: 25px;
  height: 25px;
  background: #E2A061;
  position: absolute;
  right: 15px;
  bottom: 10%;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-style: initial;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.info-icon p {
  display: inline-flex;
  margin: 0;
}

i + span {
  display: inline-block;
  width: 85%;
  margin-left: 5px;
}

#cgu {
  font-weight: bold;
  cursor: pointer;
}

.invalid-tooltip {
  font-size: 0.7rem;
}

#cgu-tooltip {
  margin-top: -6px;
}

.custom-file {
  margin: 0 5px;
}

.custom-file + .form-group {
  margin-top: 23px;
}

.invalid-tooltip {
  background-color: rgba(220, 52, 69, 0.85);
}

.submit-button {
  background: white;
  color: #650A30;
  border: 1px solid #650A30;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  width: 95%;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 100ms ease-in-out;
  font-family: "Roboto", sans-serif;
  outline: none;
  margin-top: 5px;
  cursor: pointer;
}
.submit-button:hover {
  background: #650A30;
  color: white;
}

.flex-animation-hack {
  display: none;
}

.offers-container .offer-container {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.offers-container .offer-container .content-container {
  width: 100%;
  position: relative;
}
.offers-container .offer-container .content-container::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  background-image: url(/images/checkmark-icon.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: 50% 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 200ms ease-in-out;
}
.offers-container .offer-container .content-container.selected::after {
  transform: scale(1);
  opacity: 1;
}
.offers-container .offer-container .selected + .offer-selection {
  background: #650A30;
  color: white;
}
.offers-container .offer-container p {
  text-align: center;
  font-size: 16px;
  font-family: "reuben-bold";
  margin: 0;
  color: black;
}
.offers-container .offer-container p.discount-ammount {
  font-size: 36px;
}
.offers-container .offer-container p.discount-info, .offers-container .offer-container p.offer-selection {
  color: #650A30;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 960px) {
  .offers-container .offer-container p.discount-info {
    font-size: 14px;
  }
}
.offers-container .offer-container p.offer-selection {
  border-top: 1px solid #CCCCCC;
  transition: all 100ms ease-in-out;
}
.offers-container .offer-container p.offer-selection:hover {
  background: #650A30;
  color: white;
}
.offers-container .offer-container .image-container {
  height: 180px;
}
.offers-container .offer-container .image-container img {
  max-height: 100%;
}
@media screen and (min-width: 960px) {
  .offers-container .col-lg-6 {
    flex: 0 0 47%;
    max-width: 47%;
  }
}

.modal {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}
.modal .modal-dialog {
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .modal .modal-dialog {
    width: 90%;
  }
}
.modal .modal-title {
  text-align: center;
  font-size: 21px;
}
.modal h4 {
  text-align: left;
  font-size: 20px;
  color: #650A30;
}
.modal h5 {
  font-size: 16px;
  color: #650A30;
  filter: brightness(0.7);
}
.modal .modal-header {
  background-image: url("/images/package-pattern.jpg");
  background-size: contain;
  padding: 6px 6px;
  align-items: center;
  justify-content: center;
  height: 75px;
}
.modal .modal-header .close {
  margin: 0;
  padding: 0 20px 0 0;
}
.modal .pattern-white-cover {
  background: white;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}
.modal .modal-body {
  max-height: 400px;
  overflow: auto;
  padding: 20px 20px;
}
@media (max-width: 400px) {
  .modal .modal-body {
    max-height: 300px;
  }
}

.modal-content {
  position: absolute;
}

@font-face {
  font-family: "reuben";
  src: url("/fonts/reuben-medium-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "reuben-bold";
  src: url("/fonts/reuben-bold-webfont.woff2") format("woff2");
}
body {
  margin: 0;
  padding: 10px;
  font-family: "reuben";
}
body * {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

h1, h2, h3, h4 {
  font-family: "reuben-bold";
  text-align: center;
  color: black;
}

h1 {
  font-size: 48px;
}
@media screen and (min-width: 960px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 36px;
}

p {
  font-family: "Roboto", sans-serif;
}

.purple-row {
  background: #650A30;
}
.purple-row p {
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 0;
  margin: 0;
  font-family: "reuben";
}
.purple-row p.price {
  font-size: 32px;
  font-family: "reuben-bold";
  margin: -7px 0;
}
.purple-row p:last-of-type {
  font-size: 16px;
}
@media screen and (min-width: 960px) {
  .purple-row p.price {
    font-size: 28px;
  }
  .purple-row p:last-of-type {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .purple-row {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
}

.beige-row {
  background: #FEF2E3;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.beige-row p {
  line-height: 23px;
}
.beige-row p, .beige-row h3, .beige-row .step-number {
  color: #650A30;
}
.beige-row h3 {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .beige-row h3 {
    font-size: 20px;
  }
}
.beige-row .step-number {
  font-size: 18px;
  font-family: "reuben-bold";
  border-top: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.step-background {
  background-image: url("/images/package-pattern.jpg");
  background-size: contain;
}

.step-container {
  margin: 7px 8px;
  background-color: white;
  padding: 2.5rem 0;
}
.step-container p {
  font-size: 13px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .step-container p {
    font-size: 19px;
  }
}
@media screen and (max-width: 1199px) {
  .step-container p {
    font-size: 15px;
  }
}
@media screen and (max-width: 530px) {
  .step-container p {
    font-size: 11px;
  }
}
@media screen and (max-width: 415px) {
  .step-container p {
    font-size: 9px;
  }
}

.step-border {
  border-bottom: 3px solid #E2A061;
}

.form {
  border: 1px solid lightgray;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
}

.centered {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

/*# sourceMappingURL=styles.css.map */
</pre></body></html>