@import url(https://fonts.googleapis.com/css?family=Maven+Pro|Roboto);
@charset "UTF-8";
.jc-c {
  justify-content: center; }

.d-f {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .d-f--col {
    flex-direction: column; }
  .d-f .flex {
    flex: 1; }
    .d-f .flex--2 {
      flex: 2; }
    .d-f .flex--3 {
      flex: 3; }
    .d-f .flex--4 {
      flex: 4; }
    .d-f .flex--5 {
      flex: 5; }
    .d-f .flex--6 {
      flex: 6; }
    .d-f .flex--7 {
      flex: 7; }
    .d-f .flex--8 {
      flex: 8; }
    .d-f .flex--9 {
      flex: 9; }
    .d-f .flex--10 {
      flex: 10; }

@media screen and (min-width: 768px) {
  p:nth-of-type(1) {
    margin-top: 0; }
  .mr1 {
    margin-right: 1rem; }
  .d-f {
    display: flex; }
    .d-f--row {
      flex-direction: row; } }

.priceTable {
  display: flex;
  flex-direction: column; }
  .priceTable--item {
    flex: 1;
    border: 1px solid #e5e9ee;
    margin-right: 5px; }
    .priceTable--item .item__title {
      padding: 1rem;
      text-align: center;
      height: 75px;
      position: relative; }
      .priceTable--item .item__title span {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1.2rem; }
      .priceTable--item .item__title.red {
        background-color: #ae0000;
        color: #FFFFFF; }
        .priceTable--item .item__title.red:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #ae0000;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.green {
        background-color: #648b1b;
        color: #FFFFFF; }
        .priceTable--item .item__title.green:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #648b1b;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.platinum {
        background-color: #E5E4E2; }
        .priceTable--item .item__title.platinum:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #E5E4E2;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.diamond {
        background-color: #CEE4E6; }
        .priceTable--item .item__title.diamond:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #CEE4E6;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
    .priceTable--item .item__price {
      position: relative;
      padding: 1rem;
      text-align: center;
      font-size: 1.8rem;
      height: 80px;
      line-height: 50px; }
      .priceTable--item .item__price:before {
        content: '\20ACHT';
        position: absolute;
        margin-left: -12px;
        margin-top: -18px;
        font-size: 0.7rem; }
    .priceTable--item .item__description {
      background-color: #f7f9fb; }
      .priceTable--item .item__description li {
        padding: 1rem;
        font-size: 0.7rem;
        display: flex;
        text-align: left; }
        .priceTable--item .item__description li span.status {
          min-width: 22px; }
        .priceTable--item .item__description li span.label span {
          font-style: italic;
          font-size: 0.6rem; }
        .priceTable--item .item__description li img, .priceTable--item .item__description li svg {
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%);
          margin-right: 4px; }

@media screen and (min-width: 481px) {
  .priceTable {
    flex-direction: row; } }

body {
  font-family: 'Maven Pro', Roboto;
  color: #000;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden; }

.mainContainer {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  top: -4px; }
  .mainContainer--center {
    width: 100%;
    box-sizing: border-box; }
  .mainContainer .body {
    margin: 16px; }

code pre {
  background-color: #383838;
  padding: 16px;
  color: white; }

.notification {
  box-sizing: border-box;
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 400px;
  height: auto;
  background-color: whitesmoke;
  color: #232323;
  text-align: center;
  line-height: 32px;
  padding: 16px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  z-index: 9; }
  .notification-mask {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background-color: rgba(0, 0, 0, 0.75); }

h1.blogTitle {
  margin: 0 16px;
  line-height: 26px; }

span.alignCenter,
p.alignCenter {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 600px;
  width: 100%; }

img.alignCenter {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 600px;
  width: 100%;
  background: url(/static/img/no-pictures.svg) grey no-repeat center;
  background-size: contain;
  min-height: 100px; }

.blog h2 {
  font-size: 1.5rem; }

.blog h3 {
  font-size: 1.3rem; }

.blog h1, .blog h2, .blog h3, .blog h4 {
  font-weight: 600; }

.blog h5, .blog h6 {
  font-size: 1rem;
  font-weight: 300; }

.blog h2, .blog h3, .blog h4, .blog h5, .blog h6 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #000000; }
  .blog h2:after, .blog h3:after, .blog h4:after, .blog h5:after, .blog h6:after {
    content: '';
    position: relative;
    display: block;
    width: 50px;
    height: 0;
    border-bottom-style: solid;
    border-bottom-color: #3A5F3A;
    margin-top: 16px;
    margin-bottom: 32px; }

.blog h2:after {
  border-bottom-width: 4px; }

.blog h3:after {
  border-bottom-width: 2px; }

.blog h4:after, .blog h5:after, .blog h6:after {
  border-bottom-width: 1px; }

.highlight {
  color: #080b02; }

.article__action,
.reaction__action {
  text-align: right; }

.article__content {
  font-size: 1rem;
  line-height: 1.5rem; }

h1,
.article__author,
.article__extrait {
  margin-top: 1rem; }

.imgUne {
  max-width: 320px;
  width: 100%; }

.article__author {
  display: flex;
  font-size: 0.8rem;
  line-height: 1rem;
  margin-bottom: 1rem;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid #27360a;
  border-bottom: 1px solid #999; }
  .article__author .hidden {
    display: none; }
  .article__author img {
    margin-right: 10px;
    width: 38px;
    height: 38px; }

.blog .article .article__title {
  line-height: 1.8rem; }

.blog .articles .article__title {
  line-height: 2rem;
  text-decoration: none; }
  .blog .articles .article__title:hover {
    text-decoration: underline; }

.blog .article__title {
  margin-left: 1rem;
  margin-right: 1rem;
  color: #3A5F3A; }

.comment__pseudo {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px; }

.comment__content {
  margin-bottom: 5px; }

.comment__date {
  font-size: .75rem;
  line-height: 1.66667;
  font-style: italic;
  color: #4D4D4D; }

.comment__alerte {
  position: relative;
  text-align: right;
  margin-top: 1rem; }
  .comment__alerte button {
    color: #080b02;
    margin-left: 0.5rem; }

.article__extrait {
  font-size: 1rem;
  line-height: 1.5rem; }

.blog__ads-container {
  height: 90px;
  max-height: 90px; }

ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none; }

ul.list-item, ol.list-item {
  margin-left: 2.5rem; }

ol li {
  list-style-type: upper-roman; }

blockquote:before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url("/static/img/right-quote.svg");
  width: 18px;
  height: 18px;
  margin-left: -22px;
  margin-top: 1px; }

ul.list-item li {
  list-style-image: url("/static/img/check.svg");
  text-align: left; }

.blog {
  display: block;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box; }

.articles .blog__img-container {
  max-height: 200px;
  overflow: hidden; }
  .articles .blog__img-container img {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem; }

.article .blog__img-container img {
  max-width: 968px;
  width: 100%; }

.article__author,
.breadcrumb,
.article__extrait,
.article__action {
  margin: 1rem; }

.article__comments {
  background-color: #f2f2f2;
  padding: 30px 1rem; }

.blog__flow,
.blog__right {
  display: block;
  width: 100%; }

.blog__flow {
  box-sizing: border-box;
  order: 2; }

.blog__right {
  order: 1; }

.lightgray {
  background-color: lightgray; }

.btn {
  padding: 0.5rem 1.5rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-width: 1px;
  border-color: #00838A;
  border-style: solid;
  border-radius: 0px;
  color: #00838A;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.9rem;
  height: 2.25em;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  line-height: 1.5;
  position: relative;
  vertical-align: top;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap; }
  .btn:hover {
    border: none;
    background-color: #00838A;
    color: #ffffff; }
  .btn.large {
    height: 50px; }

button[disabled] {
  opacity: 0.5; }

.btn--large {
  height: 48px !important;
  min-width: 150px; }
  .btn--large:focus {
    outline: none; }

.btn--small {
  padding: 0 1rem;
  font-size: 0.7rem; }

.btn.green {
  background-color: #3A5F3A;
  color: #fff; }

.btn.blue {
  background-color: #3273dc;
  color: #fff; }

a {
  text-decoration: none; }

p {
  text-align: left; }

.mobile--only {
  display: inline-block !important; }

.tablet--only,
.desktop--only {
  display: none !important; }

p.legend,
.imgLegend {
  text-align: center;
  font-style: italic;
  font-size: 0.8rem;
  margin-bottom: 0.5rem; }

@media screen and (min-width: 768px) {
  .blog .article__title {
    margin-left: 0; }
  .mobile--only {
    display: none !important; }
  .tablet--only {
    display: inline-block !important; }
  .mainContainer--center {
    width: 768px;
    margin: 0 auto; }
  .blog__ads-container {
    height: 580px;
    max-height: 580px;
    position: sticky;
    top: 0; }
  .blog {
    display: block;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 1rem auto;
    padding: 0; }
  .blog__flow,
  .blog__right {
    display: inline-block;
    vertical-align: top; }
  .blog__flow {
    padding-right: 1rem;
    box-sizing: border-box;
    order: 1; }
    .blog__flow else {
      width: 768px; }
  .blog__right {
    width: 188px;
    height: 600px;
    text-align: center;
    line-height: 10rem;
    order: 2; }
  h1,
  h2,
  .article__author,
  .article__extrait,
  .article__title,
  .article__content,
  .article__action {
    margin-left: 0;
    margin-right: 0; }
  .blog .article .article__title {
    line-height: 3rem; }
  .shareButtonContainer {
    margin-right: 0; } }

@media screen and (min-width: 1024px) {
  .desktop--only {
    display: inline-block !important; }
  .mainContainer--center {
    width: 1000px; }
  /**
    blog__flow: 812 px
   */
  .blog__flow {
    padding-right: 2rem; }
    .blog__flow else {
      width: 1000px; } }

.primary {
  fill: #00838A;
  color: #00838A; }

.lds-facebook {
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 64px; }
  .lds-facebook:focus {
    outline: none; }

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: #dfc;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; }

.lds-facebook div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s; }

.lds-facebook div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s; }

.lds-facebook div:nth-child(3) {
  left: 45px;
  animation-delay: 0; }

@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 51px; }
  50%, 100% {
    top: 19px;
    height: 26px; } }

.article__comments {
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1rem; }

.article__title {
  font-size: 1.375rem;
  line-height: .90909;
  margin-bottom: 20px;
  font-family: droid_sans,Verdana,sans-serif; }

.comments__title {
  font-size: 1.375rem;
  line-height: .90909;
  margin-bottom: 20px;
  font-family: droid_sans,Verdana,sans-serif; }

.comment__pseudo {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px; }

.comment__content {
  margin-bottom: 5px; }

.comment__date {
  font-size: .75rem;
  line-height: 1.66667;
  font-style: italic;
  color: #4D4D4D; }

.comment__alerte {
  position: relative;
  text-align: right;
  margin-top: 1rem; }
  .comment__alerte button {
    color: #436f43;
    margin-left: 0.5rem; }

label.memberReaction span {
  font-size: 1rem;
  display: block;
  position: absolute;
  margin-top: -9999px;
  max-height: 30px; }

.blog .article__reaction {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  margin-bottom: 1rem; }
  .blog .article__reaction .author__message {
    flex: 1; }
    .blog .article__reaction .author__message .row {
      margin-top: 0; }
  .blog .article__reaction textarea {
    width: 100%;
    padding: 9px;
    box-sizing: border-box; }
  .blog .article__reaction input {
    padding: 9px;
    box-sizing: border-box; }
  .blog .article__reaction .author__container {
    margin-right: 15px;
    background-color: lightgray;
    padding: 5px;
    font-size: 0;
    position: relative; }
    .blog .article__reaction .author__container:after {
      content: ' ';
      position: absolute;
      right: -5px;
      top: 50%;
      width: 0;
      height: 0;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-left: 7px solid lightgray;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
  .blog .article__reaction img {
    max-width: 45px; }

.blog .article__comment {
  display: flex;
  flex: 1 100%;
  align-items: flex-start;
  justify-content: stretch;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem; }
  .blog .article__comment img {
    width: 45px;
    height: 45px;
    margin-right: 15px; }
  .blog .article__comment div {
    flex: 1; }

ul.pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center; }

ul.pagination li {
  flex: 1;
  max-width: 48px;
  width: 48px;
  max-height: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px; }

ul.pagination li:last-of-type {
  color: #999; }

ul.pagination li a {
  display: block;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  background-color: darkseagreen;
  border-radius: 3px;
  color: #fff; }

ul.pagination li.active a {
  background-color: #3A5F3A; }

.btn-action-bar {
  display: flex;
  justify-content: center; }
  .btn-action-bar .btn--left {
    flex: 2;
    margin-right: 4px; }
  .btn-action-bar .btn--right {
    flex: 4; }

input[type=button],
input[type=submit],
button,
.btn {
  border: none;
  padding: 0.8rem 1rem;
  background-color: #00838A;
  color: #ffffff;
  outline: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  text-align: center; }
  input[type=button]:disabled,
  input[type=submit]:disabled,
  button:disabled,
  .btn:disabled {
    opacity: 0.7;
    cursor: inherit; }
  input[type=button].fixedWidth,
  input[type=submit].fixedWidth,
  button.fixedWidth,
  .btn.fixedWidth {
    display: block;
    position: relative;
    width: 230px;
    margin: 1.5rem auto 0.5rem; }
  input[type=button].btn--inverse,
  input[type=submit].btn--inverse,
  button.btn--inverse,
  .btn.btn--inverse {
    background-color: #ffffff !important;
    color: #00838A !important;
    font-weight: bold;
    border: 1px solid #00838A; }

ul.sousMenus {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10rem;
  margin-bottom: 10rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem; }
  ul.sousMenus li {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    margin: 2px; }
    ul.sousMenus li img {
      min-width: 60px;
      max-width: 60px;
      width: 60px;
      height: 60px; }
    ul.sousMenus li h4 {
      padding: 0;
      margin: 0;
      font-size: inherit;
      font-weight: inherit; }
    ul.sousMenus li a {
      display: flex;
      height: 60px;
      color: inherit;
      line-height: 22px;
      white-space: initial;
      width: 100%; }
      ul.sousMenus li a span {
        margin: 0.5rem;
        overflow: hidden; }
    ul.sousMenus li:hover a {
      background-color: #00838A;
      color: #ffffff;
      cursor: pointer;
      font-weight: bold; }
    ul.sousMenus li.item--active a {
      background-color: #00838A;
      color: #ffffff; }

/* Palette generated by Material Mixer - https://www.sankk.in/material-mixer/ */
.accent-button {
  background: #3949AB;
  box-shadow: 0px 1px 0px #FF8A33 inset, 0px -1px 0px #FA6700 inset, 0px 0px 5px rgba(0, 0, 0, 0.5); }

img {
  position: relative;
  z-index: 1; }

.center {
  display: block !important;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 150px; }

.button {
  position: relative;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #00838A;
  color: #00838A;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  border-radius: 2px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 1.3rem;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  transition: background-color 0.3s; }
  .button:focus, .button:hover {
    background-color: #00838A;
    color: #FFFFFF; }
  .button.button--inverse {
    background-color: #00838A;
    color: #FFFFFF; }
    .button.button--inverse:focus, .button.button--inverse:hover {
      background-color: transparent;
      color: #00838A; }

.arrow--right::before {
  content: " ";
  background-image: url("/static/img/arrow-right.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 20px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg); }

.favorites {
  position: relative; }
  .favorites figure {
    overflow: hidden;
    position: relative;
    margin: 0 0 3rem;
    background-color: #FFFFFF;
    color: #1e4161;
    width: 100%; }
    @media screen and (min-width: 1024px) {
      .favorites figure {
        width: 250px;
        margin: 0; }
        .favorites figure:nth-child(even) {
          top: 300px; } }
    .favorites figure::before {
      display: block;
      z-index: 2;
      width: 48px;
      height: 48px;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 300px;
      background-color: #FFF;
      border-radius: 50%;
      text-align: center;
      font-size: 1.6rem;
      content: "";
      line-height: 4rem;
      color: #00838A; }
      @media screen and (min-width: 768px) {
        .favorites figure::before {
          top: 50%;
          content: "";
          text-align: right;
          line-height: 3rem;
          -webkit-transform: translateY(-50%) rotate(0deg);
          -moz-transform: translateY(-50%) rotate(0deg);
          -ms-transform: translateY(-50%) rotate(0deg);
          -o-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg); } }
      @media screen and (min-width: 1024px) {
        .favorites figure::before {
          top: 300px;
          transform: translateY(-50%) rotate(90deg);
          content: inherit; } }
    .favorites figure figcaption {
      padding: 2rem;
      height: 300px;
      position: relative;
      z-index: 2;
      overflow: hidden; }
      @media screen and (min-width: 768px) {
        .favorites figure figcaption {
          display: inline-block;
          vertical-align: top;
          width: 50%; } }
      @media screen and (min-width: 1024px) {
        .favorites figure figcaption {
          display: inherit;
          width: 100%;
          height: 300px; } }
  .favorites__title {
    text-transform: uppercase;
    font-size: 1.4rem;
    text-align: center; }
    @media screen and (min-width: 1024px) {
      .favorites__title {
        font-size: 1rem; } }
  .favorites__descr {
    font-size: 0.8rem !important;
    line-height: 1.4rem !important;
    color: rgba(30, 65, 97, 0.74) !important; }
    @media screen and (min-width: 1024px) {
      .favorites__descr {
        font-size: 1rem; } }
  .favorites__illustration {
    height: auto;
    max-height: 300px;
    width: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow: hidden; }
    @media screen and (min-width: 768px) {
      .favorites__illustration {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        height: 300px; } }
    @media screen and (min-width: 1024px) {
      .favorites__illustration {
        height: 300px;
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .favorites__illustration img {
        width: auto;
        min-width: 385px;
        margin-left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 100%; } }

/* Palette generated by Material Mixer - https://www.sankk.in/material-mixer/ */
.accent-button {
  background: #3949AB;
  box-shadow: 0px 1px 0px #FF8A33 inset, 0px -1px 0px #FA6700 inset, 0px 0px 5px rgba(0, 0, 0, 0.5); }

h1.home-title {
  position: relative;
  text-align: center;
  margin-top: 0;
  padding-top: 80px;
  font-weight: 400; }
  h1.home-title .arrow--down {
    height: 0px; }
    h1.home-title .arrow--down::after {
      position: absolute;
      display: block;
      width: 48px;
      height: 48px;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: 0;
      content: " ";
      background-image: url("/static/img/arrow-right.svg");
      background-size: 24px;
      background-repeat: no-repeat;
      background-position: 21px;
      -webkit-transform: translateY(-50%) rotate(90deg);
      -moz-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
      -o-transform: translateY(-50%) rotate(90deg);
      transform: translateY(-50%) rotate(90deg); }
  h1.home-title span:nth-of-type(2) {
    margin-bottom: 60px;
    font-weight: 300; }
    h1.home-title span:nth-of-type(2):after {
      content: '';
      display: block;
      width: 0;
      height: 80px;
      background: red;
      margin: auto;
      margin-top: 20px;
      left: 0;
      right: 0;
      border-right: 1px solid #00b1bb; }
  h1.home-title:after {
    content: "";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4rem;
    color: darkblue;
    padding-top: 28px;
    box-sizing: border-box;
    text-shadow: 0 8px #00008b;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: -10px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: -webkit-radial-gradient(center, #54fdf8, #54fdf8 54%, rgba(0, 177, 187, 0.5) 56%, rgba(0, 177, 187, 0.45)); }

h1.home-title--twoColorTitle {
  text-transform: uppercase;
  line-height: 3.5rem;
  font-size: 2.5rem;
  margin-bottom: 10rem; }
  h1.home-title--twoColorTitle span:nth-of-type(1) {
    color: #54fdf8;
    font-weight: 400; }
  h1.home-title--twoColorTitle span:nth-of-type(2) {
    color: #FFFFFF; }

ul.autocomplete-results {
  max-height: 500px;
  overflow-y: auto; }
  ul.autocomplete-results li {
    cursor: pointer;
    display: flex;
    background-color: white;
    height: 80px;
    margin-bottom: 3px; }
    ul.autocomplete-results li img {
      width: 80px;
      min-width: 80px;
      height: 80px; }
    ul.autocomplete-results li span {
      padding: 0.5rem;
      font-size: 1.2rem;
      overflow: hidden; }
    ul.autocomplete-results li:nth-child(odd) {
      background-color: whitesmoke; }
    ul.autocomplete-results li:hover {
      background-color: #00838A;
      color: white; }

input.search-autocomplete {
  padding: 1rem;
  width: 100% !important;
  font-size: 1.4rem;
  margin-bottom: 2rem; }

.error_message {
  background-color: #CC0000;
  color: white;
  padding: 1rem 0.5rem;
  font-weight: bold; }

ul.companies {
  background-color: white;
  color: #222222;
  max-height: 500px;
  overflow-y: auto; }
  ul.companies li {
    padding: 1rem 0.5rem;
    cursor: pointer; }
    ul.companies li:nth-child(odd) {
      background-color: whitesmoke; }

form.contacts {
  max-width: 400px;
  margin: 0 auto;
  padding: 8px; }

div.contact {
  width: 100%;
  background-color: #00838A;
  color: #ffffff;
  padding: 2rem; }
  div.contact textarea, div.contact input {
    width: 99%;
    padding-left: 0.5rem !important; }
  div.contact input {
    border-bottom: 1px solid gray; }
  div.contact label, div.contact input {
    display: block;
    padding: 0.75rem;
    padding-left: 0;
    box-sizing: border-box;
    border-left: none;
    border-right: none;
    border-top: none; }
    div.contact label[disabled], div.contact input[disabled] {
      opacity: 0.7;
      cursor: inherit; }

.row {
  margin: 1.5rem 0; }

.mainContainer--center img.imgUne {
  width: 100%; }

@media screen and (min-width: 481px) {
  form.contacts {
    padding: 0; } }

.section--even .image-container {
  border-bottom: 6px solid darkseagreen;
  padding-bottom: 1rem;
  width: 180px;
  padding-top: 1rem;
  margin: 0 auto;
  text-align: center;
  border-right: 0;
  margin-bottom: 1rem; }

.client-name {
  color: #252525; }

.client-name img {
  vertical-align: middle;
  margin-right: 7px; }

.client-poste {
  color: #525252; }

.client-site {
  color: #525252; }

.client-site a, p.date-commentaire {
  color: #262626; }

.section--odd .client-name {
  color: #000000; }

.section--odd .client-poste {
  color: #000000; }

.section--odd .client-site {
  color: #000000; }

.section--odd .client-commentaire {
  color: #000000; }

.section--odd .image-container {
  border-bottom: 6px solid #F0F0F0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 180px;
  margin: 0 auto;
  text-align: center;
  border-right: 0;
  margin-bottom: 1rem; }

.client-commentaire {
  padding-left: 1rem;
  color: #525252; }

.date-commentaire {
  text-align: right;
  font-style: italic;
  font-size: 0.8rem;
  color: #525252; }

@media screen and (min-width: 768px) {
  .section--odd .image-container {
    border-right: 6px solid #F0F0F0;
    padding-right: 1rem;
    width: 180px;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: left;
    margin: 0; }
  .section--even .image-container {
    border-right: 6px solid #3A5F3A;
    padding-right: 1rem;
    width: 180px;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: left;
    margin: 0; } }

@charset "UTF-8";
.jc-c {
  justify-content: center; }

.d-f {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .d-f--col {
    flex-direction: column; }
  .d-f .flex {
    flex: 1; }
    .d-f .flex--2 {
      flex: 2; }
    .d-f .flex--3 {
      flex: 3; }
    .d-f .flex--4 {
      flex: 4; }
    .d-f .flex--5 {
      flex: 5; }
    .d-f .flex--6 {
      flex: 6; }
    .d-f .flex--7 {
      flex: 7; }
    .d-f .flex--8 {
      flex: 8; }
    .d-f .flex--9 {
      flex: 9; }
    .d-f .flex--10 {
      flex: 10; }

@media screen and (min-width: 768px) {
  p:nth-of-type(1) {
    margin-top: 0; }
  .mr1 {
    margin-right: 1rem; }
  .d-f {
    display: flex; }
    .d-f--row {
      flex-direction: row; } }

.priceTable {
  display: flex;
  flex-direction: column; }
  .priceTable--item {
    flex: 1;
    border: 1px solid #e5e9ee;
    margin-right: 5px; }
    .priceTable--item .item__title {
      padding: 1rem;
      text-align: center;
      height: 75px;
      position: relative; }
      .priceTable--item .item__title span {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1.2rem; }
      .priceTable--item .item__title.red {
        background-color: #ae0000;
        color: #FFFFFF; }
        .priceTable--item .item__title.red:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #ae0000;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.green {
        background-color: #648b1b;
        color: #FFFFFF; }
        .priceTable--item .item__title.green:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #648b1b;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.platinum {
        background-color: #E5E4E2; }
        .priceTable--item .item__title.platinum:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #E5E4E2;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
      .priceTable--item .item__title.diamond {
        background-color: #CEE4E6; }
        .priceTable--item .item__title.diamond:after {
          content: '';
          display: block;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-top: 15px solid #CEE4E6;
          margin: 0 auto;
          top: 75px;
          left: 0;
          right: 0; }
    .priceTable--item .item__price {
      position: relative;
      padding: 1rem;
      text-align: center;
      font-size: 1.8rem;
      height: 80px;
      line-height: 50px; }
      .priceTable--item .item__price:before {
        content: '\20ACHT';
        position: absolute;
        margin-left: -12px;
        margin-top: -18px;
        font-size: 0.7rem; }
    .priceTable--item .item__description {
      background-color: #f7f9fb; }
      .priceTable--item .item__description li {
        padding: 1rem;
        font-size: 0.7rem;
        display: flex;
        text-align: left; }
        .priceTable--item .item__description li span.status {
          min-width: 22px; }
        .priceTable--item .item__description li span.label span {
          font-style: italic;
          font-size: 0.6rem; }
        .priceTable--item .item__description li img, .priceTable--item .item__description li svg {
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%);
          margin-right: 4px; }

@media screen and (min-width: 768px) {
  .priceTable {
    flex-direction: row; } }

