@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Mukta", sans-serif;
  color: #4A4A4A;
  background: #fff;
}

* {
  box-sizing: border-box;
}

#svg-container {
  display: none;
}

h1, h2, h3, h4 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
}

input, select, button, textarea {
  -webkit-appearance: none;
  font-family: inherit;
  margin: 0;
}

select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%229%22%20height%3D%226%22%20viewBox%3D%220%200%209%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Earrow%3C%2Ftitle%3E%3Cpath%20d%3D%22M4.5%204.19L1.097.22C.847-.073.44-.073.188.22c-.25.293-.25.767%200%201.06l3.857%204.5c.251.293.659.293.91%200l3.857-4.5c.25-.293.25-.767%200-1.06-.251-.293-.658-.293-.91%200L4.5%204.19z%22%20fill%3D%22%233853EE%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - .8125rem) 50%;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  background-color: #000;
  color: #84BF41;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pageTitle {
  height: 0;
  text-indent: -100000px;
}

.columns {
  display: flex;
}

.cta {
  display: inline-block;
  line-height: 2.875rem;
  text-align: center;
  border: 2px solid #4A4A4A;
  border-radius: 3px;
  padding: 0 2rem;
}
.cta--white {
  border-color: #fff;
}
.cta--red {
  color: #E30015;
  border-color: #E30015;
}
.cta--green {
  color: #84BF41;
  border-color: #84BF41;
}
.cta--green--solid {
  color: #fff;
  border-color: #84BF41;
  background: #84BF41;
}
.cta--compact {
  line-height: 2.25rem;
}

.cta-container--left {
  text-align: right;
  margin: 0;
}

.button {
  display: inline-block;
  font-weight: 500;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 2rem;
  padding: 0 1rem;
  background: #84BF41;
  border-radius: 0.25rem;
}

.uiColumn--flex {
  display: flex;
  flex-direction: column;
}
.uiForm--columns {
  display: flex;
  padding: 0 1.5rem;
}
.uiForm__title {
  margin-bottom: 1rem;
}
.uiForm__fieldGroup {
  position: relative;
  margin-bottom: 21px;
}
.uiForm__fieldGroup--spaced {
  margin-bottom: 32px;
}
.uiForm__fieldGroup--condensed {
  margin-bottom: 16px;
}
.uiForm__fieldGroup--flex {
  display: flex;
}
.uiForm__fieldGroup--flex > *:first-child {
  margin-right: 1rem;
}
.uiLabel {
  display: block;
}
.uiInput {
  border: 1px solid #808080;
  outline: none;
  margin: 0 -1px;
  font-weight: 400;
  font-size: 21px;
  color: #3D3D3D;
  line-height: 26px;
  padding: 3px 0.5rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 1px;
}
.uiInput:focus {
  outline: 6px solid rgba(132, 191, 65, 0.25);
}
.uiCheckbox {
  -webkit-appearance: checkbox;
  position: absolute;
  z-index: -1;
}
.uiCheckboxLabel {
  display: flex;
  line-height: 22px;
}
.uiCheckboxLabel > span {
  width: 100%;
}
.uiCheckboxLabel::before {
  content: "";
  display: block;
  border: 1px solid #808080;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.uiCheckbox:checked + label::before {
  background: url(../images/icon_check.svg) no-repeat center center #84BF41;
  border-color: #84BF41;
}
.uiDropdown {
  width: 100%;
  border: 1px solid #808080;
  border-radius: 0;
  background-color: #fff;
  font-weight: 500;
  font-size: 21px;
  color: #3D3D3D;
  line-height: 32px;
}
.uiDropdown option {
  font-weight: 500;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 22px;
}
.uiNumber {
  display: flex;
}
.uiNumber__button {
  border: 1px solid #808080;
  width: 46px;
  background: rgba(132, 191, 65, 0.5);
  font-size: 40px;
  line-height: 40px;
  color: #84BF41;
}
.uiNumber__button:hover {
  background: rgba(132, 191, 65, 0.75);
  color: #6a9934;
}
.uiNumber input[type=number] {
  border: 1px solid #808080;
  outline: none;
  margin: 0 -1px;
  font-weight: 500;
  font-size: 21px;
  color: #3D3D3D;
  text-align: center;
  line-height: 32px;
  width: 60px;
}
.uiSubmit {
  background: #84BF41;
  border: 2px solid #84BF41;
  border-radius: 3px;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  text-align: center;
  padding: 0.25rem 1.5rem;
  flex: 1;
  cursor: pointer;
}
.uiSubmit:hover {
  background: rgba(132, 191, 65, 0.85);
}
@media screen and (max-width: 800px) {
  .uiSubmit {
    padding: 0.25rem 0.5rem;
  }
}
.uiRequiredMark {
  color: #E30015;
}

.alert {
  background: #fff;
  border: 1px solid rgba(225, 225, 225, 0.47);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0 2rem;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  font-size: 1.375rem;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 10000;
  min-height: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5rem;
}

.alert-error {
  border-color: #B63E5A;
  background: #E26868;
  color: #fff;
  animation: move 6s ease forwards;
}

.comBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #84BF41;
  color: #fff;
  padding: 0 1rem;
}
.comBanner-icon {
  margin-right: 5px;
}
.comBanner-category {
  font-weight: 700;
  font-size: 18px;
}
.comBanner-categorySlash {
  font-weight: 300;
  opacity: 0.5;
  margin-right: 5px;
}
.comBanner-link {
  margin-left: 0.75rem;
}
.comBanner-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: url("../images/icon-arrow--topright--fff.min.svg") no-repeat center center;
  margin: 0 0 1px 6px;
}
@media screen and (max-width: 736px) {
  .comBanner {
    height: auto;
    margin-top: 56px;
    margin-bottom: -56px;
    padding: 0.5rem 1rem;
  }
  .comBanner-category {
    display: none;
  }
  .comBanner-message {
    text-align: center;
    line-height: 16px;
  }
  .comBanner-link {
    margin-left: 0.5rem;
  }
  .comBanner-link::after {
    display: none;
  }
}

.page-head {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 110;
}
.page-head--noBorder {
  box-shadow: none;
}

.page-head--shadowed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.top-bar {
  display: flex;
  flex-direction: row-reverse;
  padding-top: 1rem;
  height: 3rem;
  align-items: center;
  position: relative;
}

.languagepicker .currentLanguage {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 200;
  color: #4A4A4A;
  cursor: pointer;
}
.languagepicker .currentLanguage .currentLanguage-flag {
  margin-right: 5px;
}
.languagepicker .currentLanguage .currentLanguage-arrow {
  margin-left: 10px;
  transition: all 500ms ease-out;
}
.languagepicker .currentLanguage.open .currentLanguage-arrow {
  transform: rotate(-180deg);
}
.languagepicker-languages {
  position: relative;
}
.languagepicker-languages ul {
  display: none;
  position: absolute;
  top: 0.5rem;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 12px #b7b7b7;
}
.languagepicker-languages li {
  margin-bottom: 9px;
}
.languagepicker-languages li.lux {
  margin: 12px 0 0;
  padding-top: 9px;
  border-top: 1px solid #b7b7b7;
}
.languagepicker-language {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 200;
  color: #4A4A4A;
}
.languagepicker-language svg {
  margin-right: 5px;
}

.matchDriveButton {
  display: block;
  height: 36px;
  padding: 4px 20px;
  border-radius: 4px;
  background: #FFFFFF;
  border: 2px solid rgba(216, 35, 42, 0.5);
  box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.07);
}
.matchDriveButton img {
  height: 100%;
  width: auto;
}
.matchDriveButton:hover {
  border: 2px solid #d8232a;
  box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.secondary-nav {
  display: flex;
}

.secondary-nav-item {
  margin-right: 1.875rem;
}

.secondary-nav-link {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 200;
  color: #4A4A4A;
}

.primary-nav {
  padding: 2.625rem 0;
  position: relative;
}
.primary-nav > ul {
  display: flex;
  font-size: 1.375rem;
}

.primary-nav-item {
  margin-right: 2.25rem;
}

.primary-nav-item--homepage {
  position: absolute;
  top: -2rem;
}
.primary-nav-item--homepage a {
  display: flex;
  align-items: center;
}
.primary-nav-item--homepage a svg {
  margin-right: 1.5rem;
}
.primary-nav-item--homepage a svg + svg {
  margin-top: -4px;
}

.primary-nav-item--my-match {
  border: 1px solid #979797;
  border-radius: 4px;
  position: absolute;
  margin: 0;
  right: 0;
}
.primary-nav-item--my-match a {
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}
.primary-nav-item--my-match a svg {
  display: none;
}

.primary-nav-link {
  line-height: 2.25rem;
  font-weight: 400;
  color: #4A4A4A;
}

@media screen and (max-width: 900px) {
  .page-head {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    height: 3.5rem;
    transition: all ease-in-out 350ms;
  }

  .primary-nav > ul {
    margin-top: 5rem;
    flex-direction: column;
  }

  .primary-nav-item--link {
    transform: translateY(-3000px);
    transition: all ease-out 550ms;
    margin-right: 0;
    flex: 1;
    line-height: 5rem;
    text-align: center;
    border-bottom: 1px solid #979797;
    transition-delay: 0;
  }

  .primary-nav-item--homepage {
    top: 0.75rem;
    left: 1.25rem;
  }
  .primary-nav-item--homepage #match-logotype {
    width: auto;
    height: 32px;
    margin-right: 0.5rem;
  }
  .primary-nav-item--homepage #match-logotype + svg {
    width: auto;
    height: 18px;
  }

  .primary-nav-item--my-match {
    top: 0.5rem;
    right: -0.5rem;
  }
  .primary-nav-item--my-match a {
    padding: 0 0.5rem;
    font-size: 1rem;
  }

  .navTrigger {
    cursor: pointer;
    width: 28px;
    height: 25px;
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    z-index: 10000;
  }
  .navTrigger i {
    background-color: #E30015;
    border-radius: 2px;
    content: "";
    display: block;
    width: 100%;
    height: 4px;
  }
  .navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }
  .navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }
  .navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }
  .navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
  }
  .navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
  }
  .navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
  }

  @-webkit-keyframes inM {
    50% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
    }
  }
  @keyframes inM {
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes outM {
    50% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(45deg);
    }
  }
  @keyframes outM {
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes inT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
      -webkit-transform: translateY(9px) rotate(135deg);
    }
  }
  @keyframes inT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(9px) rotate(0deg);
    }
    100% {
      transform: translateY(9px) rotate(135deg);
    }
  }
  @-webkit-keyframes outT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
      -webkit-transform: translateY(9px) rotate(135deg);
    }
  }
  @keyframes outT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(9px) rotate(0deg);
    }
    100% {
      transform: translateY(9px) rotate(135deg);
    }
  }
  @-webkit-keyframes inBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
    }
  }
  @keyframes inBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-9px) rotate(0deg);
    }
    100% {
      transform: translateY(-9px) rotate(135deg);
    }
  }
  @-webkit-keyframes outBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
    }
  }
  @keyframes outBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-9px) rotate(0deg);
    }
    100% {
      transform: translateY(-9px) rotate(135deg);
    }
  }
  body.menuOpen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  body.menuOpen .page-head {
    height: 100%;
  }
  body.menuOpen .page-head .wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  body.menuOpen .primary-nav-item--link {
    transform: translateY(0px);
  }
  body.menuOpen .primary-nav-item--link:nth-child(1) {
    transition-delay: 0.05s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(2) {
    transition-delay: 0.1s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(3) {
    transition-delay: 0.15s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(4) {
    transition-delay: 0.2s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(5) {
    transition-delay: 0.25s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(6) {
    transition-delay: 0.3s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(7) {
    transition-delay: 0.35s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(8) {
    transition-delay: 0.4s;
  }
  body.menuOpen .primary-nav-item--link:nth-child(9) {
    transition-delay: 0.45s;
  }
  body.menuOpen .top-bar {
    position: relative;
    z-index: 110;
    transform: translateY(0);
    transition: all ease-out 550ms;
    transition-delay: 0.3s;
  }
  body.menuOpen .secondary-nav {
    display: none;
  }
  body.menuOpen .languagepicker {
    margin: 0 auto;
  }
  body.menuOpen .languagepicker-languages ul {
    top: -8.5rem;
    right: 50%;
    width: 150px;
    margin-right: -75px;
  }
  body.menuOpen .matchDriveButton {
    height: 50px;
    padding: 4px 60px;
    margin: 0 auto;
    transform: translateY(20px);
  }

  .top-bar {
    display: flex;
    position: absolute;
    transform: translateY(-3000px);
  }

  .primary-nav {
    padding: 0.5rem 0;
  }

  main {
    padding-top: 3.5rem;
  }
}
@media screen and (max-width: 900px) and (max-height: 580px) {
  .primary-nav-item--link {
    line-height: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .primary-nav-item--my-match a span {
    display: none;
  }
  .primary-nav-item--my-match a svg {
    display: inline-block;
    margin: 0.4375rem 0;
  }
}
.preFooter {
  padding: 0 0 4rem;
}
.preFooter:before {
  content: "";
  display: block;
  height: 1px;
  max-width: calc(900px + 5rem);
  background: #cdcdcd;
  margin: 0 auto 4rem;
}
.preFooter .wrapper {
  max-width: calc(900px + 8rem);
  display: flex;
  justify-content: space-between;
}

.preFooter-item {
  width: 48%;
  padding: 2.5rem 2.5rem 1.5rem 7rem;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preFooter-item--euromatch {
  background: url(../images/prefooter-item-euromatch.svg) no-repeat 1rem 1.5rem;
}
.preFooter-item--newsletter {
  background: url(../images/prefooter-item-newsletter.svg) no-repeat 1.5rem 1.5rem;
}

.preFooter-item-title {
  font-weight: 500;
  font-size: 1.375rem;
  color: #4A4A4A;
  line-height: 1.5rem;
}

.preFooter-item-text {
  /* Lorem ipsum dolor si: */
  font-weight: 300;
  font-size: 16px;
  color: #4A4A4A;
  line-height: 21px;
}

.privacyLink {
  color: #248a6d;
  text-shadow: 0 1px 0 #e7f9f4;
  text-decoration: none;
  border-bottom: 1px dashed #33c79d;
  position: relative;
  padding: 0 0.2em;
  transition: all 250ms;
  z-index: 1000;
}

.privacyLink:before {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0%;
  background: rgba(68, 207, 168, 0.16);
  bottom: 0;
  left: 0;
  position: absolute;
  transition: height 250ms;
}

.privacyLink:hover {
  border-color: transparent;
}

.privacyLink:hover:before {
  height: 100%;
}

.page-footer {
  background: #4A4A4A;
  color: #fff;
  border-bottom: 16px solid #84BF41;
  padding-top: 48px;
}

.page-footer-section {
  padding-right: 92px;
}
.page-footer-section .page-footer-title {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.0175rem;
  margin-bottom: 1.5rem;
}
.page-footer-section .page-footer-links {
  font-weight: 300;
  line-height: 1.75rem;
}

.page-footer-section:last-child {
  flex-grow: 1;
  padding-right: 0;
  text-align: right;
}

#storelocator--footer {
  display: flex;
  align-items: center;
}
#storelocator--footer input[type=search] {
  display: block;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  background: transparent;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  width: 200px;
}
#storelocator--footer input[type=submit] {
  display: block;
  height: 1.2rem;
  width: 1.2rem;
  background: url("../images/icon-search.white.svg") center no-repeat;
  background-size: cover;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-left: -1.625rem;
  opacity: 0.6;
}
#storelocator--footer input[type=submit]:hover {
  opacity: 1;
}

.legals {
  list-style: none;
  display: flex;
  position: relative;
  border-top: 3px solid #3D3D3D;
  margin: 2rem 0 0;
}

.legals-item {
  font-size: 0.75rem;
  font-weight: 200;
  line-height: 4.125rem;
  margin-right: 1.25rem;
  opacity: 0.55;
}

.legals-item--copyright {
  position: absolute;
  right: 0;
}

@media screen and (max-width: 600px) {
  .preFooter:before {
    max-width: calc(100% - 3rem);
  }
  .preFooter .wrapper {
    max-width: calc(900px + 8rem);
    flex-wrap: wrap;
  }

  .preFooter-item {
    width: auto;
  }
  .preFooter-item--euromatch {
    margin-bottom: 2rem;
  }

  .page-footer .columns {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .page-footer-section {
    padding: 0 0.25rem 2rem;
  }

  .page-footer-section:last-child {
    padding-right: 0;
    text-align: left;
  }

  .legals {
    flex-direction: column;
    padding: 1rem 0;
  }

  .legals-item {
    line-height: 1.5rem;
    margin-right: 0;
  }

  .legals-item--copyright {
    position: relative;
  }
}
@media screen and (max-width: 400px) {
  .preFooter-item {
    padding: 2rem 1rem 1.5rem;
  }

  .preFooter-item--euromatch, .preFooter-item--newsletter {
    background: #fff;
  }
}
.breadcrumbs {
  padding-top: 0.875rem;
  padding-bottom: 2.375rem;
  display: flex;
  font-weight: 300;
  font-size: 0.875rem;
  font-weight: 500;
  color: #808080;
  line-height: 1.875rem;
}
.breadcrumbs--white {
  color: #fff;
}
.breadcrumbs--white .breadcrumbs__item:after {
  content: url(../images/breadcrumbs-arrow--white.svg);
}
.breadcrumbs--fullGreen {
  color: #84BF41;
}
.breadcrumbs--fullGreen::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background: rgba(132, 191, 65, 0.12);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .breadcrumbs {
    background: rgba(132, 191, 65, 0.12);
    padding-top: 0.275rem;
    padding-bottom: 0.275rem;
  }
}

.breadcrumbs__item {
  margin-right: 0.5rem;
  opacity: 0.75;
}
.breadcrumbs__item_active {
  opacity: 1;
}
.breadcrumbs__item_active:after {
  display: none;
}
.breadcrumbs__item:after {
  content: url(../images/breadcrumbs-arrow-lightGray.svg);
  margin-left: 0.5rem;
}

.hero-slider {
  height: 39vw;
  position: relative;
  overflow: hidden;
}
.hero-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}
.hero-slider .swiper-pagination-bullet-active {
  background: #E30015;
}
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
  background: rgba(132, 191, 65, 0.8);
  opacity: 1;
  width: 37px;
  height: 52px;
  margin-top: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slider .swiper-button-prev {
  left: 0;
  border-radius: 0 6px 6px 0;
}
.hero-slider .swiper-button-next {
  right: 0;
  border-radius: 6px 0 0 6px;
}

.swiper-slide {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.swiper-slide .wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.swiper-slide.right .wrapper {
  flex-direction: row-reverse;
}
.swiper-slide.center .wrapper {
  justify-content: center;
}

.hero-slider-cartouche {
  background: rgba(253, 253, 253, 0.9);
  border-radius: 14px;
  width: 50%;
  max-width: 480px;
  height: 400px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slider-cartouche-title {
  font-weight: 900;
  font-size: 48px;
  color: #4D4D4D;
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 46px;
}

.hero-slider-cartouche-main {
  padding: 0 2rem 0;
}

.hero-slider-cartouche-footer {
  padding: 1.2rem 2rem 0;
}

@media screen and (max-width: 600px) {
  .hero-slider {
    height: auto;
  }
  .hero-slider .wrapper {
    padding: 0;
  }

  .swiper-slide {
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-slider-cartouche {
    background: #fff;
    margin-top: 39vw;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 1rem 1rem 2.5rem;
  }

  .hero-slider-cartouche-title {
    font-size: 36px;
    line-height: 40px;
  }

  .hero-slider-cartouche-main {
    padding: 0 1.5rem 0;
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .hero-slider-cartouche-main p {
    margin: 0.75rem 0 0.25rem;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -35px;
  }
}
.promotions-featured {
  padding: 3.375rem 1.5rem 6rem;
  text-align: center;
  margin: 0 auto;
}

.promotions-featured-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #E30015;
  line-height: 2.875rem;
  padding-bottom: 2.675rem;
}

.promotions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1038px;
  margin: 0 auto;
}

.promotions-item {
  flex: 1;
  background: #fff;
  max-width: 240px;
  min-width: 180px;
  margin: 0 0.875rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.promotions-item:hover {
  border-radius: 3px;
  transform: scale(1.05) translateY(-6px) translateZ(0);
}
.promotions-item--view_more {
  background: #E30015;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
}
.promotions-item--view_more > a {
  width: 55%;
}

.promotions-item-bargain {
  display: flex;
  width: 40%;
  height: 40%;
  background: url(../images/macaron.min.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  justify-content: center;
  align-items: center;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: #fff;
}
.promotions-item-bargain--gratis {
  line-height: 2rem;
  flex-direction: column;
}
.promotions-item-bargain small {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.promotions-item-image {
  display: block;
  width: 90%;
  height: auto;
  margin: 5%;
}

@media screen and (max-width: 600px) {
  .promotions-item--view_more {
    padding: 1.25rem 0.875rem;
  }
}
.promotion {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.promotion.ended {
  opacity: 0.4;
}

.alert--outdated {
  padding: 2rem 2.5rem;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  text-align: center;
  font-size: 1.25rem;
  color: #4A4A4A;
  margin: -1rem 0 3rem;
}
.alert--outdated a {
  text-decoration: none;
  border-bottom: 2px solid #b5d98d;
  box-shadow: inset 0 -4px 0 #b5d98d;
  color: inherit;
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}
.alert--outdated a:hover {
  background: #b5d98d;
}

.promotion-visual {
  background: #fff;
  flex-basis: 48%;
  max-width: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 1.25rem;
}

.promotion-bargain {
  height: 0;
  width: 20%;
  padding-bottom: 20%;
  background: url(../images/macaron.min.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: #fff;
}

.promotion-bargain-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promotion-bargain-content--gratis {
  line-height: 2rem;
  flex-direction: column;
}
.promotion-bargain-content small {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.promotion-image {
  width: auto;
  max-height: 460px;
  max-width: 100%;
}

.promotion-data {
  flex: 1;
  padding: 0 0 0 3rem;
  color: #4A4A4A;
  display: flex;
  flex-direction: column;
}
.promotion-data header {
  display: flex;
  justify-content: space-between;
}

.promotion-title--name {
  flex-grow: none;
  font-size: 2.25rem;
  line-height: 2.25rem;
}

.promotion-title--brand {
  font-weight: 300;
  font-size: 1.25;
  color: #808080;
}

.promotion-capsule {
  width: 10rem;
  background: #E30015;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  box-sizing: border-box;
}

.promotion-price--discount {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  padding: 3px 6px 6px;
  position: relative;
}
.promotion-price--discount:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-bottom: 2px solid #fff;
  transform: skew(0deg, 15deg);
}
.promotion-price--discount.empty:before {
  display: none;
}
.promotion-price--discount.empty + .promotion-price {
  padding: 2rem 0;
  border: 0 none;
}

.promotion-price {
  width: 90%;
  padding: 0.75rem 0 0.75rem;
  border-top: 2px solid #fff;
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  line-height: 3.5rem;
  letter-spacing: 1.6px;
}
.promotion-price i {
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.25rem;
  vertical-align: top;
}

.promotion-price--dates {
  background: #fff;
  color: #E30015;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .promotion {
    flex-direction: column;
  }

  .promotion-visual {
    overflow: visible;
  }

  .promotion-data {
    padding: 2rem 0 0;
  }
  .promotion-data header {
    flex-direction: column;
  }

  .promotion-image {
    max-height: 200px;
    margin: 0.75rem;
  }

  .promotion-bargain {
    width: 30%;
    padding-bottom: 30%;
    top: -1rem;
    right: -0.5rem;
  }

  .promotion-capsule {
    width: auto;
    margin: 2rem 0;
  }
}
@media screen and (max-width: 320px) {
  .promotion {
    padding: 0 0.75rem;
  }
}
.folder-banner {
  padding: 7rem 0 8.75rem;
  color: #fff;
  background-size: cover;
  background-position: center center;
  position: relative;
  /*
    &:hover &-background{
        -moz-filter: brightness(70%);
      -webkit-filter: brightness(70%);
      -ms-filter: brightness(70%);
      filter: brightness(70%);
      }
  */
}
.folder-banner-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -moz-filter: brightness(70%);
  -webkit-filter: brightness(70%);
  -ms-filter: brightness(70%);
  filter: brightness(70%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.folder-banner--header {
  padding: 2rem 0 3rem;
}

.folder-banner-header {
  width: 50%;
  max-width: 30rem;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
}

.folder-banner-title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03125rem;
  line-height: 2.625rem;
}

.folder-banner-subtitle {
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 2.875rem;
}

.folder-banner-subtext {
  width: 50%;
  max-width: 30rem;
  margin-bottom: 4rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-shadow: 0 0 0.75rem #000;
}

.section-folders {
  text-align: center;
  padding: 4.25rem 0 2.25rem;
}

.folders-title {
  font-weight: 800;
  font-size: 1.875rem;
  color: #E30015;
  line-height: 2.875rem;
  margin-bottom: 3rem;
}

.folders-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  margin: 0 auto;
}

.folders-item {
  position: relative;
  margin-bottom: 2rem;
}
.folders-item--special .folders-item-background {
  display: block;
  width: auto;
  height: 120.982%;
  position: absolute;
  bottom: 0;
  right: calc(100% - 2rem);
  z-index: -2;
  transform: translateX(21.955%);
}
.folders-item--special a {
  position: relative;
}
.folders-item--special a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4.25rem);
  background: #fff;
  transform: rotate(3deg);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.43);
  z-index: -1;
}
.folders-item--special a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4.25rem);
  background: #fff;
  transform: rotate(6deg);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.43);
  z-index: -2;
}

.folders-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.folders-item a:hover {
  transform: rotate(3deg);
}

.folders-item-image {
  height: 40vh;
  max-height: 380px;
  width: auto;
  box-shadow: -4px 6px 10px 0 rgba(0, 0, 0, 0.21);
}

.folders-item-name {
  display: inline-block;
  /* Top rentrée: */
  font-weight: 700;
  font-size: 1.25rem;
  color: #4A4A4A;
  line-height: 1.45rem;
  width: 250px;
  padding-top: 1rem;
}

.publications {
  text-align: center;
  padding: 4.25rem 0 2.25rem;
}
.publications-title {
  font-weight: 800;
  font-size: 1.875rem;
  color: #E30015;
  line-height: 2.875rem;
  margin-bottom: 3rem;
}
.publications-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  margin: 0 auto;
}
.publications-item {
  position: relative;
  margin-bottom: 4rem;
  width: 33.3%;
}
@media screen and (max-width: 600px) {
  .publications-item {
    width: 100%;
  }
}
.publications-item--special .publications-item-background {
  display: block;
  width: calc(100% - 1.5rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0.75rem;
  z-index: -2;
  transform: scale(1.25, 1.5);
}
.publications-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.75rem;
}
.publications-item a:hover img {
  transform: scale(1.1);
}
.publications-item-visual {
  overflow: hidden;
}
.publications-item-image {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.publications-item-info {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 100%;
  padding: 0 0.75rem;
}
.publications-item-tags {
  position: absolute;
}
.publications-item-tag {
  display: inline-block;
  border: 1px solid #D8232A;
  border-radius: 8px;
  font-weight: 800;
  font-size: 8px;
  color: #D8232A;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  padding: 0 8px;
}
.publications-item-tag.isGreen {
  border-color: #84BF41;
  color: #84BF41;
}
.publications-item-dates {
  opacity: 0.75;
  font-weight: 300;
  font-size: 12px;
  color: #292929;
  line-height: 24px;
}

@media screen and (max-width: 600px) {
  .folder-banner {
    padding: 4rem 0 3.75rem;
  }

  .folder-banner-header, .folder-banner-subtext {
    width: 100%;
  }
}
.seasonProducts-banner {
  box-sizing: border-box;
  padding: 4rem 0 6rem;
  color: #4A4A4A;
}
.seasonProducts-banner--header {
  padding: 2rem 0 3rem;
}
.seasonProducts-banner .wrapper {
  position: relative;
  left: -13%;
  min-height: 360px;
}

.seasonProducts-banner-image {
  display: block;
  height: calc(100% + 6rem);
  width: auto;
  position: absolute;
  right: 50%;
  top: -2rem;
  margin-right: 4rem;
}

.seasonProducts-banner-header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  margin-left: 50%;
}

.seasonProducts-banner-title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03125rem;
  line-height: 2.625rem;
}

.seasonProducts-banner-subtitle {
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 2.875rem;
}

.seasonProducts-banner-subtext {
  margin-bottom: 4rem;
  margin-left: 50%;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.seasonProducts-banner-subtext.columnized {
  column-count: 2;
  column-gap: 3rem;
}
.seasonProducts-banner-subtext > * {
  margin-top: 0;
}

.seasonProducts-banner-footer {
  margin-left: 50%;
}

@media screen and (max-width: 600px) {
  .seasonProducts-banner .wrapper {
    left: auto;
  }

  .seasonProducts-banner-image {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
    top: auto;
    margin-right: 0;
  }

  .seasonProducts-banner-header, .seasonProducts-banner-subtext, .seasonProducts-banner-footer {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .seasonProducts-banner-footer {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.recipeOfTheWeek-banner {
  box-sizing: border-box;
  padding: 6rem 0 7rem;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.recipeOfTheWeek-banner-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -moz-filter: brightness(70%);
  -webkit-filter: brightness(70%);
  -ms-filter: brightness(70%);
  filter: brightness(70%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.recipeOfTheWeek-banner .wrapper {
  position: relative;
}
.recipeOfTheWeek-banner--header {
  box-sizing: border-box;
  padding: 5rem 0 8rem;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recipeOfTheWeek-banner--header .wrapper {
  max-width: calc(900px + 5rem);
}

.recipeOfTheWeek-banner-image {
  display: block;
  height: calc(100% + 6rem);
  width: auto;
  position: absolute;
  right: 50%;
  top: -2rem;
  margin-right: 2rem;
}

.recipeOfTheWeek-banner-header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  width: 65%;
}

.recipeOfTheWeek-banner-title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03125rem;
  line-height: 2.625rem;
}

.recipeOfTheWeek-banner-subtitle {
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 2.875rem;
}

.recipeOfTheWeek-banner-subtext {
  margin-bottom: 4rem;
  width: 44%;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.7);
}

.recipeOfTheWeek-banner-footer {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .recipeOfTheWeek-banner {
    padding: 4rem 0;
  }

  .recipeOfTheWeek-banner-header {
    width: 100%;
  }

  .recipeOfTheWeek-banner-subtext {
    margin-bottom: 3rem;
    width: 100%;
  }

  .recipeOfTheWeek-banner-footer {
    width: 100%;
  }
}
.seasonTopicals-banner {
  padding-bottom: 6rem;
}

.seasonTopicals-banner-title {
  font-weight: 300;
  font-size: 2.25rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 3.5rem;
  margin-bottom: 2rem;
}

.seasonTopicals-banner-list {
  display: flex;
  justify-content: center;
}

.seasonTopicals-banner-item {
  text-align: center;
  margin: 0 1rem;
}
.seasonTopicals-banner-item img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 0;
}
.seasonTopicals-banner-item h3 {
  height: 3.625rem;
  line-height: 3.325rem;
  min-width: 10rem;
  display: inline-block;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
  background: url(../images/brushstroke.svg) no-repeat center bottom;
  background-size: 100%;
  transform: rotate(-1deg);
}
.seasonTopicals-banner-item h3:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/brushstroke.svg) no-repeat center bottom;
  background-size: 100%;
  z-index: -1;
  transform: rotate(2deg);
  opacity: 0.7;
}

.recipeOfTheWeek-banner + .seasonTopicals-banner {
  margin-top: -128px;
}
.recipeOfTheWeek-banner + .seasonTopicals-banner .seasonTopicals-banner-title {
  @import url("https://fonts.googleapis.com/css?family=Fira+Sans:800i");
  font-style: italic;
  color: #fff;
  text-align: center;
  font-size: 1.875rem;
  line-height: 3rem;
  text-shadow: 0 2px 8px rgba(48, 21, 21, 0.77);
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 2rem;
}

@media screen and (max-width: 600px) {
  .recipeOfTheWeek-banner + .seasonTopicals-banner {
    padding-top: 3rem;
    margin-top: 0;
    padding-bottom: 3rem;
  }
  .recipeOfTheWeek-banner + .seasonTopicals-banner .seasonTopicals-banner-title {
    color: #84BF41;
    text-shadow: none;
    margin-bottom: 1rem;
  }

  .seasonTopicals-banner-list {
    flex-wrap: wrap;
  }

  .seasonTopicals-banner-item {
    margin-bottom: 1rem;
  }
}
.communication-banner .wrapper {
  max-width: calc(900px + 8rem);
}

.communication-banner-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 3rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.communication-banner-title:before,
.communication-banner-title:after {
  content: "";
  border-top: 1px solid #cdcdcd;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
}

.communication-banner-title:after {
  margin: 0 0 0 20px;
}

.communication-banner-list {
  column-count: 2;
  column-gap: 1rem;
  padding-bottom: 4rem;
}

.communication-banner-item {
  position: relative;
  padding-bottom: 0;
}
.communication-banner-item .communication-banner-item-image {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.communication-banner-item .communication-banner-item-title {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  /* Une boucherie de qua: */
  font-weight: 700;
  font-size: 40px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 44px;
  text-shadow: 0 2px 9px rgba(41, 6, 6, 0.8);
}

@media screen and (max-width: 600px) {
  .communication-banner-title {
    font-size: 2rem;
  }

  .communication-banner-title {
    margin-bottom: 2rem;
  }

  .communication-banner-list {
    column-count: 1;
  }

  .communication-banner-item .communication-banner-item-title {
    top: 1rem;
    left: 1.25rem;
  }
}
.inspiration {
  padding-bottom: 6rem;
}
.inspiration .wrapper {
  max-width: calc(900px + 7rem);
}

.inspiration-title {
  /* Inspirations: */
  font-weight: 700;
  font-size: 1.875rem;
  color: #E30015;
  text-align: center;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.inspiration-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 4rem;
}

.inspiration-item {
  width: 22%;
  position: relative;
  margin: 0 4% 36px 0;
}
.inspiration-item:nth-child(4n) {
  margin-right: 0;
}
.inspiration-item:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inspiration-item a {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.inspiration-item a:hover {
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.inspiration-item-image {
  display: block;
  margin-top: -2rem;
}

.inspiration-item-title {
  position: absolute;
  bottom: 12%;
  font-weight: 500;
  font-size: 20px;
  color: #4A4A4A;
  letter-spacing: -0.56px;
}

@media screen and (max-width: 600px) {
  .inspiration-list {
    padding: 0;
  }

  .inspiration-item {
    width: 48%;
  }

  .inspiration-item:nth-child(4n) {
    margin-right: inherit;
  }

  .inspiration-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .inspiration-item-title {
    font-size: 1rem;
  }
}
.search {
  background: #84BF41;
  border-bottom: 1px solid #6a9934;
}
.search .wrapper {
  max-width: calc(900px + 7rem);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.searchBar {
  border: 0 none;
  padding: 0;
  margin: 0;
  display: table;
  border-collapse: separate;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.search-field {
  display: inline-block;
  width: 100%;
  height: 54px;
  text-indent: 1rem;
  border: 0;
  box-shadow: none;
  padding: 0;
  float: left;
  box-sizing: border-box;
  outline: none;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.input-group-btn {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.search-btn-wrapper {
  display: block;
  width: 56px;
  text-align: center;
}

.btn-search {
  position: relative;
  bottom: -2px;
  cursor: pointer;
}

.searchOptions {
  padding: 2rem 0 0;
  display: flex;
  justify-content: space-between;
}

.searchOptions-switch {
  flex: 1 0 100%;
  text-align: center;
  padding: 0 0 2rem;
}

.selectfield {
  flex: 1 0 23%;
  max-width: 23%;
  border: 1px solid #cdcdcd;
  background: #fff;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.22);
}

.selectfield-label {
  position: absolute;
  top: -25px;
  left: 0.75rem;
  /* ↳ Placeholder Label Copy 2: */
  font-size: 12px;
  color: #fff;
  line-height: 22px;
  height: 22px;
  z-index: 10;
  padding: 0 0.25rem;
  /*
    &:after{
      display: block;
      position: absolute;
      content: "";
      width: 100%;
      height: 50%;
      background: #fff;
      top: calc(50% - 1px);
      left: 0;
      z-index: -1;
    }
  */
}

.browser-default {
  background-color: transparent;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #3D3D3D;
  border: none;
}

@media screen and (max-width: 600px) {
  .search .wrapper {
    padding: 1rem 1rem 1.125rem;
  }

  .search-field {
    height: 42px;
    text-indent: 0.5rem;
    font-size: 1rem;
  }

  .search-btn-wrapper {
    width: 40px;
  }

  .searchOptions {
    padding: 1rem 0 0;
    flex-direction: column;
  }

  .searchOptions--filters {
    padding-bottom: 1rem;
  }

  .searchOptions-switch {
    padding: 0 0;
    font-size: 1rem;
    color: #fff;
  }

  .selectfield {
    max-width: 100%;
    margin-top: 1rem;
    margin: 2rem 0 0;
  }
}
@media screen and (max-width: 320px) {
  .recipes-listing .wrapper {
    padding: 0 0.75rem;
  }

  .recipes-listing-searchTitle {
    font-size: 1rem;
  }
}
.recipes-listing .wrapper {
  max-width: calc(900px + 7rem);
}
.recipes-listing .recipes-listing-header--search {
  display: none;
}
.recipes-listing .recipes-listing-header {
  display: block;
}

.recipes-listing-header {
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

.recipes-listing-image {
  display: block;
  position: static;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: calc(100vw);
  background: #ededed;
}

.recipes-listing-teaser {
  width: 100%;
  position: absolute;
  bottom: 5rem;
  box-sizing: border-box;
}

.recipes-listing-title {
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
}

.recipes-listing-text {
  font-weight: 400;
  font-size: 1.25rem;
  color: #fff;
  line-height: 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.recipes-listing-results {
  width: calc(100% + 2rem);
  margin: 0 -1rem;
  padding: 2.5rem 0 6rem;
  display: flex;
  flex-wrap: wrap;
}

.recipes-listing-recette {
  flex: 1 1 33%;
  max-width: 33%;
  display: flex;
  flex-direction: column-reverse;
  padding: 0 1rem 3rem;
  box-sizing: border-box;
  text-align: center;
}
.recipes-listing-recette:hover .recipes-listing-recette--title {
  color: #E30015;
}
.recipes-listing-recette:hover img {
  opacity: 0.85;
}

.recipes-listing-recette--title {
  flex: 1 0 auto;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.375rem;
  padding: 1.25rem 0 1.875rem;
  border-bottom: 1px solid #cdcdcd;
  transition: 0.25s ease-out;
}

.recipes-listing-recette--media {
  flex: 0 0 auto;
  background: #000;
}
.recipes-listing-recette--media img {
  display: block;
  width: 100%;
  transition: 0.9s ease-in-out;
}

.recipes-listing-recette--category {
  font-weight: 300;
  font-size: 0.875rem;
  color: #cdcdcd;
  line-height: 2.625rem;
}

/*
.category .recipes-listing-recette--category a{
  display: none;
}
*/
.recipes-listing-header {
  text-align: center;
  position: relative;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: calc(100vw);
  height: 33vw;
  min-height: 300px;
}

.recipes-listing-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  -moz-filter: brightness(70%);
  -webkit-filter: brightness(70%);
  -ms-filter: brightness(70%);
  filter: brightness(70%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.navigationList {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.navigationList-link {
  display: inline-block;
  line-height: 2rem;
  min-width: 2rem;
  padding: 0 0.35rem;
  box-sizing: border-box;
  border: 1px solid red;
  margin: 0 0.125rem;
  color: red;
  border-radius: 2px;
}

.navigationList-link.current {
  background: red;
  color: #fff;
}

.navigationList-linksGroup {
  flex: 6;
}

.navigationList-link--previous {
  flex: 1;
}

.navigationList-link--next {
  flex: 1;
}

.navigationList-link--previous--empty, .navigationList-link--next--empty {
  border-color: transparent;
}

@media screen and (max-width: 600px) {
  .recipes-listing-header {
    height: auto;
    min-height: auto;
    margin-bottom: 0;
  }

  .recipes-listing-header img {
    height: 160px;
  }

  .recipes-listing-teaser {
    position: relative;
    bottom: auto;
    margin-top: -4rem;
  }

  .recipes-listing-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .recipes-listing-recette--media img {
    height: 200px;
    object-fit: cover;
  }

  .recipes-listing-text {
    display: none;
  }

  .recipes-listing-results {
    width: 100%;
    padding: 0 0 6rem;
    margin: 0;
    justify-content: space-between;
  }

  .recipes-listing-recette {
    flex: 1 1 48%;
    max-width: 48%;
    padding: 0 0 1.5rem;
  }
}
/* - - - -

   SEARCH

   - - - */
.recipes-listing--search {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 2.5rem;
}
.recipes-listing--search .recipes-listing-header--search {
  display: block;
}
.recipes-listing--search .recipes-listing-header {
  display: none;
}
.recipes-listing--search .recipes-listing-recette {
  flex: 1 1 25%;
  max-width: 25%;
}

@media screen and (max-width: 600px) {
  .recipes-listing--search .recipes-listing-recette {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.recipe {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 4rem;
  background: #f0f0f0;
  /* Old browsers */
  background: linear-gradient(to right, #f0f0f0 0%, #f0f0f0 50%, #ffffff 50%, #ffffff 100%);
}
.recipe .wrapper {
  max-width: 1200px;
}

.backlink {
  position: relative;
  height: 2rem;
  margin: 0 0 -2rem;
  padding: 0.5rem;
  z-index: 1;
}
.backlink svg {
  margin-right: 0.25rem;
}
.backlink a {
  display: inline-block;
  padding: 0 0.375rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.recipe-header {
  text-align: center;
  position: relative;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: calc(100vw);
  height: 33vw;
  min-height: 500px;
}
.recipe-header:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(49, 10, 10, 0.02) 0%, rgba(33, 8, 8, 0.58) 100%);
}

.recipe-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ededed;
}

.recipe-teaser {
  width: 100%;
  position: absolute;
  bottom: 5rem;
  box-sizing: border-box;
}

.recipe-title {
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
}

.recipes-resume {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-align: left;
}
.recipes-resume strong {
  display: block;
}

.recipe-content {
  display: flex;
}

.recipe-ingredients {
  flex: 0 0 30%;
  padding-top: 2.5rem;
  border-right: 2px solid #e6e6e6;
}

.recipe-steps {
  flex: 0 0 70%;
  background: #fff;
  padding: 2.5rem 0 5rem 5rem;
  position: relative;
}

.recipe-steps-title {
  margin-bottom: 3rem;
}

.button--cookingMode {
  position: absolute;
  right: 0;
  top: 3rem;
}
.button--cookingMode svg {
  vertical-align: text-bottom;
}

.button-label--cookingMode {
  font-weight: 700;
  font-size: 1rem;
  line-height: 21px;
  margin-left: 0.5rem;
}

.recipe-steps-step {
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.recipe-steps-step:before {
  content: url(../images/icon-recipe-step.min.svg);
  position: absolute;
  top: 3px;
  left: -5.5rem;
}
.recipe-steps-step--current:before {
  content: url(../images/icon-recipe-step--current.min.svg);
  position: absolute;
  top: 1px;
  left: -5.825rem;
}

.recipe-steps-thankYou {
  font-weight: 200;
  font-size: 2.5rem;
  color: #84BF41;
}

.fullscreen {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: no-repeat center center red;
  background-size: cover;
  top: 0;
}
.recipe-ingredients--fullscreen {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: -260px;
  height: 100vh;
  width: 260px;
  padding: 3rem 1.5rem;
  background: #fff;
  background: #FFFFFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.27);
  border: 0;
  box-sizing: border-box;
}

.button--ingredientsToggle {
  display: flex;
  height: 40px;
  justify-content: center;
  align-content: center;
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  z-index: 1000;
  cursor: pointer;
  padding: 0 12px;
}
.button--ingredientsToggle svg {
  margin-right: 9px;
  align-self: center;
}
.button--ingredientsToggle span {
  align-self: center;
}

.cookingModeOff {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-content: center;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  z-index: 1000;
  cursor: pointer;
}
.cookingModeOff svg {
  display: block;
  align-self: center;
}

.recipe .swiper-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all ease-in-out 1s;
}
.recipe .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.recipe .swiper-button-prev {
  width: 225px;
  height: 200px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.72);
  margin-top: -100px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.607 22.213L1 11.607 11.607 1' fill-rule='nonzero' stroke='%239B9B9B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 24px;
  background-position: 185px center;
  left: -170px;
}
.recipe .swiper-button-next {
  width: 225px;
  height: 200px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.72);
  margin-top: -100px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.607 1l10.606 10.607L1.607 22.213' fill-rule='nonzero' stroke='%239B9B9B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 24px;
  background-position: 26px center;
  right: -170px;
}

.sbs__recipe-title {
  width: 70%;
  position: absolute;
  top: 1.5rem;
  left: 15%;
  text-align: center;
  line-height: 40px;
  color: #fff;
}

.sbs__intro {
  width: 70%;
  background: rgba(0, 0, 0, 0.27);
  border-radius: 5px;
  padding: 4rem;
  text-align: center;
}

.sbs__intro-title {
  /* Le délicieux cake au: */
  font-weight: 700;
  font-size: 48px;
  color: #FFFFFF;
  line-height: 46px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0 0 2rem;
}

.sbs__intro-resume {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-align: left;
}
.sbs__intro-resume strong {
  display: block;
}

.sbs__step {
  width: 70%;
  background: #fff;
  border-radius: 5px;
  padding: 2rem 4rem;
  text-align: center;
  min-height: 30vh;
}

.sbs__step-number {
  /* Etape 01: */
  font-weight: 200;
  font-size: 18px;
  color: #4D4D4D;
  line-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.sbs__step-number:before, .sbs__step-number:after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #e6e6e6;
  margin: 0 10px;
}

.swiper-pagination-bullet-active {
  background: #E30015;
}

@media screen and (max-width: 600px) {
  .recipe {
    background: #fff;
  }
  .recipe .wrapper {
    padding: 0 1rem;
  }
  .recipe .swiper-button-prev {
    background-position: 195px center;
    left: -190px;
  }
  .recipe .swiper-button-next {
    background-position: 16px center;
    right: -190px;
  }

  .recipe-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
    margin-bottom: 2rem;
  }

  .recipes-resume {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 320px;
  }
  .recipes-resume li {
    text-align: center;
    margin: 0 0.5rem 1rem;
  }

  .recipe-content {
    flex-direction: column;
  }

  .recipe-ingredients {
    padding-top: 1.5rem;
    border-right: 0 none;
  }

  .recipe-steps {
    padding: 2.5rem 0 3rem;
  }

  .recipe-steps-title {
    margin-bottom: 2rem;
  }

  .button-label--cookingMode {
    font-size: 14px;
    margin-left: 0.25rem;
  }

  .recipe-steps-step {
    margin-bottom: 1.5rem;
  }

  .cookingModeOff {
    top: 0.75rem;
    right: 0.75rem;
    background: #fff;
  }

  .button--ingredientsToggle {
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1200;
    background: #fff;
  }

  .sbs__recipe-title {
    display: none;
  }

  .sbs__intro {
    width: 90%;
    padding: 1rem;
  }

  .sbs__intro-title {
    font-size: 36px;
    line-height: 40px;
  }

  .sbs__intro-resume {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 320px;
  }
  .sbs__intro-resume li {
    text-align: center;
    margin: 0 0.5rem 1rem;
  }

  .sbs__step {
    width: 94%;
    border-radius: 5px;
    padding: 2rem 2rem 3rem;
  }

  .sbs__step-number {
    margin-bottom: 1rem;
  }

  .recipe .swiper-container-horizontal > .swiper-pagination-bullets, .recipe .swiper-pagination-custom, .recipe .swiper-pagination-fraction {
    bottom: 1rem;
  }
}
main.page-store {
  position: relative;
}
main.page-store:before {
  content: "";
  display: block;
  position: absolute;
  height: 190px;
  width: 100vw;
  top: 0;
  left: 0;
  background: #84BF41;
  z-index: -1;
}

.store-header {
  margin: -1.5rem 0 2rem;
  display: flex;
  color: #fff;
}

.store-picture {
  border-radius: 2px;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.46);
  overflow: hidden;
  flex: 0 1 45%;
  position: relative;
}
.store-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-picture-locationLinks {
  position: absolute;
  top: 0;
  left: 1rem;
  display: flex;
}
.store-picture-locationLinks a {
  background: #FFFFFF;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  transition: all ease-in 0.25s;
}
.store-picture-locationLinks a:hover {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
}

.store-informations {
  flex: 1;
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
}

.store-informations-resume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.store-informations-title {
  font-size: 1.875rem;
  line-height: 2rem;
}

.store-informations-links {
  display: flex;
  align-items: center;
  margin: 0;
}

.store-informations-address {
  flex: 1 0 100%;
}

.link--phone {
  display: flex;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 0 0.5rem;
  align-items: center;
}
.link--phone svg {
  margin-right: 0.15rem;
}

.link--facebook {
  display: block;
  height: 32px;
  margin-left: 0.5rem;
}

.store-informations--communication {
  flex: 1;
  margin: 4rem 0 0;
  padding: 2rem;
  color: #4A4A4A;
  background: rgba(216, 216, 216, 0.17);
  border: 1px solid rgba(155, 155, 155, 0.39);
  border-radius: 10px;
}
.store-informations--communication figure {
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
.store-informations--communication a {
  color: #84BF41;
  border-bottom: 1px dashed #84BF41;
}

.store-details {
  padding: 2rem 0 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.store-details-title {
  font-size: 1.5rem;
  color: #84BF41;
  margin-bottom: 2.5rem;
}
.store-details-title .currentStatus {
  font-size: 1.125rem;
  font-weight: 300;
  margin-left: 2rem;
}
.store-details-subtitle {
  font-size: 1.25rem;
  line-height: 2.25rem;
}
.store-details p {
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: 0.5rem 0 1.25rem;
}
.store-details .store-details-locationLinks {
  margin: 0;
}

.store-contact {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.store-contact-list {
  margin: -1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.store-contact-list--item {
  flex: 1;
}
.store-contact-list--item:nth-child(3) {
  flex: 1 0 100%;
}

.store-viewOnMap, .store-itinerary {
  display: flex;
  margin-right: 0.75rem;
  text-decoration: underline;
  color: #4A4A4A;
  text-decoration: none;
  padding: 0.25rem 0.625rem;
}
.store-viewOnMap svg, .store-itinerary svg {
  margin-right: 0.25rem;
}

.store-timetable {
  flex: 1;
  padding: 0 0 0 4rem;
}
.store-timetable h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-timetable-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  line-height: 3rem;
  margin-top: -1rem;
}
.store-timetable-table-day {
  font-weight: 500;
  width: 110px;
}
.store-timetable-table-date {
  font-weight: 300;
  font-size: 1rem;
}
.store-timetable-table-hours {
  text-align: right;
}
.store-timetable-table-hours-specialClose {
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #E30015;
}
.store-timetable-table-hours-specialOpen {
  display: block;
  position: relative;
  color: #84BF41;
}
.store-timetable-table-hours-specialOpen-message {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.75rem;
  line-height: 0.75rem;
  color: #84BF41;
}

.store-services {
  flex: 2;
}
.store-services-list {
  margin-top: -1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.store-services-list--item {
  display: flex;
  flex: 1;
  min-width: 50%;
  align-items: center;
  padding: 0 0 0.875rem;
}

.store-service-header {
  padding: 0 3rem 0 1rem;
}
.store-service-header .store-service-title {
  font-size: 1.125rem;
  line-height: 1.25rem;
}
.store-service-header .store-service-subtitle {
  font-size: 0.875rem;
  line-height: 1rem;
  margin: 0;
}

.store-bakery {
  display: flex;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 3.5rem 1rem 2.5rem;
  margin-top: 4rem;
}
.store-bakery-logo {
  margin: -1rem 3rem 0 0;
}
.store-bakery-info {
  padding: 0 3rem;
}
.store-bakery-info p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0.5rem 0;
}
.store-bakery-info li {
  list-style-type: square;
  list-style-position: inside;
  padding: 0 0 6px 20px;
  text-indent: -1em;
  line-height: 1.25rem;
}
.store-bakery-hours {
  padding: 0 1rem 0 3rem;
  flex: 1 0 20rem;
}

@media screen and (max-width: 600px) {
  .page-store .breadcrumbs {
    display: none;
  }

  .store {
    overflow-x: hidden;
  }

  .store-header {
    flex-direction: column;
    margin: -0.5rem 0 0;
    color: #4A4A4A;
  }

  .store-picture {
    height: 30vh;
    margin: 0 -7.5rem;
  }

  .store-picture-locationLinks {
    display: none;
  }

  .store-informations {
    padding: 2rem 0 0;
  }
  .store-informations-title {
    margin-bottom: 1rem;
  }
  .store-informations--communication {
    margin-top: 1rem;
    padding: 0.25rem 1rem;
  }

  .link--phone {
    border-color: #84BF41;
    color: #84BF41;
  }
  .link--phone svg {
    margin-right: 0.5rem;
  }
  .link--phone svg path {
    fill: #84BF41;
  }

  .link--facebook svg path {
    fill: #84BF41;
  }

  .store-details {
    flex-direction: column;
    padding-bottom: 2rem;
  }
  .store-details-title {
    margin-bottom: 2rem;
  }

  .store-timetable {
    order: -2;
    padding: 0 0 3rem;
  }
  .store-timetable-table-day {
    text-align: left;
  }

  .store-services {
    order: -1;
    padding-left: 0;
    text-align: left;
  }

  .store-services-list--item {
    min-width: 100%;
  }

  .store-service-header {
    padding: 0 0 0 1rem;
  }

  .store-bakery {
    padding: 2rem 0 2.5rem;
    margin-top: 2rem;
    flex-direction: column;
    border-bottom: none;
    /*
        &-logo{
          margin: 0 auto;
        }
    */
  }
  .store-bakery-info {
    padding: 0;
  }
  .store-bakery-hours {
    padding: 1rem 0 0;
    flex: 1 0 0;
  }
}
@media screen and (max-width: 360px) {
  .page-store .wrapper {
    padding: 0 0.75rem;
  }
}
.page-head--full .wrapper {
  max-width: none;
}

.storeLocator {
  display: flex;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3);
  margin-bottom: -1px;
}

.storeLocator-list {
  width: 480px;
  height: calc(100vh - 10.25rem);
  display: flex;
  flex-direction: column;
}

.storeLocator-form {
  padding: 1.5rem 2rem 0.5rem;
  border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.storeLocator-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.875rem;
  color: #4A4A4A;
}

.storeLocator-searchBar {
  position: relative;
}
.storeLocator-searchBar input[type=search] {
  width: 100%;
  line-height: 3rem;
  background: #fff;
  border: 1px solid rgba(74, 74, 74, 0.28);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  padding: 1px;
  font-family: Helvetica;
  font-size: 1.125rem;
  color: #4A4A4A;
  letter-spacing: -0.03125rem;
  padding: 0 0.75rem;
  -webkit-appearance: none;
}
.storeLocator-searchBar input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.storeLocator-searchBar input[type=search]:focus {
  border: 1px solid #84BF41;
  box-shadow: 0px 0px 0px 4px rgba(132, 191, 65, 0.3);
}
.storeLocator-searchBar input[type=submit] {
  position: absolute;
  right: 2px;
  top: 2px;
  height: 3rem;
  width: 3rem;
  background-image: url("../images/icon-search.white.svg");
  background: url("../images/icon-search.green.svg") center no-repeat rgba(132, 191, 65, 0.1);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.storeLocator-searchBar input[type=submit]:hover {
  transition: background-color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), background-image 0.45s;
  background-color: rgba(132, 191, 65, 0.9);
  background-image: url("../images/icon-search.white.svg");
}

.storeLocator-filters {
  padding: 0.5rem 0 0;
}

.storeLocator-filtersGroup {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0.875rem 0;
}
.storeLocator-filtersGroup:first-child {
  border-bottom: 1px solid rgba(74, 74, 74, 0.2);
  flex-direction: row;
}

.storeLocator-filter {
  margin-right: 1rem;
  padding: 0.5rem 0 0;
}
.storeLocator-filter:last-child {
  padding-bottom: 0;
}
.storeLocator-filter input[type=checkbox] {
  border: 1px solid rgba(128, 128, 128, 0.5);
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.45rem;
}
.storeLocator-filter input[type=checkbox]:checked {
  border-color: #84BF41;
  background: url("../images/icon-checked.svg") center no-repeat;
}

.storeLocator-results {
  padding: 1.5rem 2rem 0.5rem;
  overflow: scroll;
}

.storeLocator-store {
  border-bottom: 2px solid rgba(128, 128, 128, 0.3);
  margin-bottom: 1.5rem;
  background: rgba(132, 191, 65, 0);
  outline: 9px solid rgba(132, 191, 65, 0);
}
.storeLocator-store:hover {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
  background: rgba(132, 191, 65, 0.1);
  outline: 9px solid rgba(132, 191, 65, 0.1);
}
.storeLocator-store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.storeLocator-store-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4A4A4A;
}
.storeLocator-store-title:before {
  content: "M";
  color: #fff;
  display: inline-block;
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.125rem;
  background: #84BF41;
  text-align: center;
  margin-right: 0.75rem;
}
.storeLocator-store-title--smatch:before {
  content: "S";
  background: #E30015;
}
.storeLocator-store-currentStatus {
  font-size: 1.125rem;
  font-weight: 500;
}
.storeLocator-store-currentStatus--open {
  color: #84BF41;
}
.storeLocator-store-currentStatus--soonClosed {
  color: #F57723;
}
.storeLocator-store-com {
  margin: 8px 0 -5px;
  border: 1px solid #84BF41;
  font-weight: 500;
  font-size: 14px;
  color: #84BF41;
  line-height: 14px;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
}
.storeLocator-store-com a {
  color: rgba(132, 191, 65, 0.55);
  border-bottom: 1px solid #84BF41;
}
.storeLocator-store-infos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.storeLocator-store-moreLink a {
  font-size: 0.875rem;
  color: #808080;
}
.storeLocator-store-moreLink a:after {
  content: url("../images/icon-arrow--right.svg");
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.storeLocator-store-moreLink a:hover {
  color: #84BF41;
}
.storeLocator-store.ldStatus__inProgress .storeLocator-store-title {
  position: relative;
}
.storeLocator-store.ldStatus__inProgress .storeLocator-store-title::before {
  transform: translate(-6px, -6px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  margin-right: 40px;
}
.storeLocator-store.ldStatus__inProgress .storeLocator-store-title::after {
  content: "";
  color: #fff;
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.125rem;
  background: url("../images/logotypes/louis_delhaize--color.min.svg") center no-repeat;
  background-size: 100%;
  text-align: center;
  margin-right: 0.75rem;
  position: absolute;
  top: 3px;
  left: 25px;
  z-index: -1;
}
.storeLocator-store.ldStatus__done .storeLocator-store-title {
  position: relative;
}
.storeLocator-store.ldStatus__done .storeLocator-store-title::before {
  content: "L";
  background: purple;
}
.storeLocator-store.ldStatus__done .storeLocator-store-title::after {
  content: "";
  color: #fff;
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.125rem;
  background: url("../images/logotypes/louis_delhaize--color.min.svg") center no-repeat;
  background-size: 100%;
  text-align: center;
  margin-right: 0.75rem;
  position: absolute;
  top: 3px;
  left: 0;
}

.message--no_result {
  padding: 1.5rem 2rem 0.5rem;
}

#map {
  height: calc(100vh - 10.25rem);
  width: calc(100vw - 480px);
}

@media screen and (max-width: 600px) {
  .storeLocator-list {
    width: 100%;
    height: calc(100vh - 3.5rem);
  }

  .storeLocator-form {
    padding: 0.5rem 1rem;
  }

  .storeLocator-filtersGroup:first-child {
    padding-top: 0;
  }

  .storeLocator-results {
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0.75rem 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .storeLocator-searchBar input[type=search] {
    font-size: 1rem;
  }
}
/* ===============

     MATRIX V1 

   =============== */
.matrix-hero {
  height: 42.85vw;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.matrix-hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -moz-filter: brightness(75%);
  -webkit-filter: brightness(75%);
  -ms-filter: brightness(75%);
  filter: brightness(75%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.matrix-hero .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.matrix-hero-header {
  padding: 0 0 2.25rem;
  width: 35%;
}
.matrix-hero-title {
  font-weight: Bold;
  font-size: 2.5rem;
  letter-spacing: -0.56px;
  line-height: 2.625rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.matrix-hero-subtext {
  width: 35%;
  font-size: 1.5rem;
  line-height: 1.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding-bottom: 3rem;
}
.matrix-hero-footer {
  width: 35%;
  padding-bottom: 3rem;
}
.matrix-hero--center .wrapper {
  text-align: center;
  align-items: center;
}
.matrix-hero--right .wrapper {
  text-align: center;
  align-items: flex-end;
}

.matrix-slider {
  text-align: center;
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.matrix-slider-header {
  font-weight: bold;
  font-size: 2rem;
  color: #4A4A4A;
  text-align: center;
}
.matrix-slider-subtext {
  font-weight: 200;
  font-size: 1.25rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 2rem;
  max-width: 600px;
  margin: 0.5rem auto 1.25rem;
  padding: 0 1rem;
}

.swiper-container--matrix {
  left: -50vw;
  width: 100vw;
  margin-left: 50%;
}
.swiper-container--matrix .swiper-slide {
  background: #fafafa;
  height: 400px;
  margin: 2rem 0;
}
.swiper-container--matrix .swiper-slide a {
  display: block;
}
.swiper-container--matrix .swiper-slide img {
  display: block;
  height: 100%;
  width: auto;
}
.swiper-container--matrix .swiper-button-next {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iNTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMzcgNTJINmE2IDYgMCAwIDEtNi02VjZhNiA2IDAgMCAxIDYtNmgzMXY1MnoiIGZpbGwtb3BhY2l0eT0iLjciIGZpbGw9IiM4NEJGNDEiLz48cGF0aCBkPSJNMTguMzc5IDI1LjVsLTcuOTQgNy45NGExLjUgMS41IDAgMCAwIDIuMTIyIDIuMTJsOS05YTEuNSAxLjUgMCAwIDAgMC0yLjEybC05LTlhMS41IDEuNSAwIDAgMC0yLjEyMiAyLjEybDcuOTQgNy45NHoiIGZpbGw9IiNGRkYiLz48L2c+PC9zdmc+);
}
.swiper-container--matrix .swiper-button-prev {
  left: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="37" height="52" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="none"><path d="M0 0h31a6 6 0 0 1 6 6v40a6 6 0 0 1-6 6H0V0z" fill-opacity=".702" fill="#84BF41"/><path d="M18.621 26.5l7.94-7.94a1.5 1.5 0 0 0-2.122-2.12l-9 9a1.5 1.5 0 0 0 0 2.12l9 9a1.5 1.5 0 0 0 2.122-2.12l-7.94-7.94z" fill="#FFF"/></g></svg>');
}
.swiper-container--matrix .swiper-pagination {
  bottom: 0;
  height: 20px;
}

.matrix-big_title {
  position: relative;
  padding: 4rem 0;
}
.matrix-big_title .wrapper {
  max-width: calc(1038px + 3rem);
  display: flex;
  justify-content: space-between;
}
.matrix-big_title--reverse .wrapper {
  flex-direction: row-reverse;
}
.matrix-big_title--reverse .matrix-big_title-header {
  transform: translate(45px, -30px);
}
.matrix-big_title-header {
  font-weight: bold;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #4A4A4A;
  flex: 1;
}
.matrix-big_title-subtext {
  font-weight: 200;
  font-size: 1.25rem;
  color: #4A4A4A;
  line-height: 2rem;
  max-width: 600px;
  margin: 0.5rem auto 1.25rem;
  padding: 1.5rem 1rem 0;
  text-align: justify;
  flex: 2;
}

.matrix-big_picture {
  position: relative;
  padding: 0;
}
.matrix-big_picture .wrapper {
  display: flex;
}
.matrix-big_picture-figure {
  flex: 1;
  position: relative;
  min-height: 800px;
}
.matrix-big_picture-figure figure {
  width: calc(50vw - 52px);
  max-width: 900px;
  height: 100%;
  position: absolute;
  right: 52px;
  top: 0;
  margin: 0;
}
.matrix-big_picture-figure figure.--object-fit {
  background-position: center center;
  background-size: cover;
}
.matrix-big_picture-figure figure.--object-fit img {
  display: none;
}
.matrix-big_picture-figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.matrix-big_picture-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.matrix-big_picture-header {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.75rem;
  color: #4A4A4A;
  margin-bottom: 3rem;
}
.matrix-big_picture-subtext--column {
  column-count: 2;
  column-gap: 3rem;
}
.matrix-big_picture-subtext--column p {
  margin-top: 0;
}
.matrix-big_picture-subtext--column ul {
  list-style: circle;
}
.matrix-big_picture-subtext--column ul li {
  list-style-type: disc;
  list-style-position: inside;
  padding: 10px 0 10px 20px;
  text-indent: -1em;
}
.matrix-big_picture-cta {
  padding-top: 2.5rem;
}
.matrix-big_picture--reverse .wrapper {
  flex-direction: row-reverse;
}
.matrix-big_picture--reverse figure {
  right: auto;
  left: 52px;
}

.matrix-banner--big_picture {
  position: relative;
  margin: 0 0 8rem;
}
.matrix-banner--big_picture:first-child {
  margin: 0 0 8rem;
}
.matrix-banner--big_picture .wrapper {
  display: flex;
  flex-direction: row-reverse;
}
.matrix-banner--big_picture-figure {
  flex: 1;
  position: relative;
}
.matrix-banner--big_picture-figure figure {
  width: calc(50vw - 52px);
  max-width: 900px;
  min-height: 400px;
  height: 100%;
  position: absolute;
  left: 52px;
  top: 6rem;
  margin: 0;
}
.matrix-banner--big_picture-figure figure.--object-fit {
  background-position: center center;
  background-size: cover;
}
.matrix-banner--big_picture-figure figure.--object-fit img {
  display: none;
}
.matrix-banner--big_picture-figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.matrix-banner--big_picture-content {
  flex: 1;
  padding: 6rem 0;
}
.matrix-banner--big_picture-header {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.75rem;
  color: inherit;
  margin-bottom: 3rem;
}
.matrix-banner--big_picture-subtext--column {
  column-count: 2;
  column-gap: 3rem;
}
.matrix-banner--big_picture-subtext--column p {
  margin-top: 0;
}
.matrix-banner--big_picture-cta {
  padding-top: 2.5rem;
}
.matrix-banner--big_picture--reverse .wrapper {
  flex-direction: row;
}
.matrix-banner--big_picture--reverse figure {
  left: auto;
  right: 52px;
}

@media screen and (max-width: 600px) {
  .matrix section:last-child {
    margin-bottom: -1px;
  }

  .matrix-hero {
    height: auto;
  }
  .matrix-hero-background {
    height: 30vh;
  }
  .matrix-hero-header {
    margin: 35vh auto 0;
    width: 100%;
    padding-bottom: 0;
  }
  .matrix-hero-title {
    font-size: 2.25rem;
    color: #4A4A4A;
    text-shadow: none;
  }
  .matrix-hero-subtext {
    width: 100%;
    color: #4A4A4A;
    text-shadow: none;
    padding-bottom: 1rem;
  }

  .matrix-slider-header {
    line-height: 3.5rem;
  }

  .matrix-big_title .wrapper {
    flex-direction: column;
  }
  .matrix-big_title-header {
    font-size: 2.5rem;
    line-height: 4rem;
  }

  .matrix-big_picture {
    padding-bottom: 2rem;
  }
  .matrix-big_picture .wrapper {
    flex-direction: column;
  }
  .matrix-big_picture-figure {
    min-height: inherit;
  }
  .matrix-big_picture-figure figure {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
    left: auto;
  }
  .matrix-big_picture-header {
    margin-bottom: 1rem;
  }
  .matrix-big_picture-subtext--column {
    column-count: 1;
    column-gap: 0;
  }

  .matrix-banner--big_picture {
    margin: 0 0 -1px;
  }
  .matrix-banner--big_picture .wrapper {
    flex-direction: column;
    padding: 2rem 1.5rem 3rem;
  }
  .matrix-banner--big_picture-figure {
    background: #f9f9f9;
  }
  .matrix-banner--big_picture-figure figure {
    width: 100%;
    min-height: inherit;
    height: auto;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
  }
  .matrix-banner--big_picture-header {
    margin-bottom: 1rem;
  }
  .matrix-banner--big_picture-content {
    padding: 1.5rem 0 0;
  }
  .matrix-banner--big_picture-cta {
    padding-top: 1rem;
  }
}
/* ===============

     MATRIX V2 

   =============== */
.matrix-proportionalBanner {
  position: relative;
}
.matrix-proportionalBanner-image {
  display: block;
}
.matrix-proportionalBanner-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.matrix-proportionalBanner-title {
  font-weight: Bold;
  font-size: 2.5rem;
  letter-spacing: -0.56px;
  line-height: 2.625rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.matrix-coverBanner {
  position: relative;
}
.matrix-coverBanner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -moz-filter: brightness(75%);
  -webkit-filter: brightness(75%);
  -ms-filter: brightness(75%);
  filter: brightness(75%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.matrix-coverBanner-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.matrix-coverBanner-title {
  font-weight: Bold;
  font-size: 2.5rem;
  letter-spacing: -0.56px;
  line-height: 2.625rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.matrix-centred {
  padding: 4rem 0 4.5rem;
  text-align: center;
}
.matrix-centred-title {
  font-weight: Bold;
  font-size: 2.5rem;
  letter-spacing: -0.56px;
  line-height: 2.625rem;
  margin-bottom: 2rem;
}
.matrix-centred-subtitle {
  font-weight: Bold;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 2rem;
}
.matrix-centred-image {
  max-width: 100%;
  margin: 2rem auto 2.5rem;
}
.matrix-centred-image.isBig {
  max-width: 80%;
}
.matrix-centred-image.isSmall {
  max-width: 50%;
}
@media screen and (max-width: 600px) {
  .matrix-centred-image {
    max-width: calc(100% + 3rem);
    margin: 0 -1.5rem;
  }
  .matrix-centred-image.isBig, .matrix-centred-image.isSmall {
    max-width: 100%;
    margin: 0 auto;
  }
}
.matrix-centred-text {
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
}
.matrix-centred-text figure {
  margin: 1rem auto;
}
.matrix-centred-text img {
  max-width: 100%;
}
.matrix-centred-text ul {
  list-style: square;
}
.matrix-centred-footer {
  margin-bottom: 3.5rem;
}

.matrix-twoColumn {
  padding: 4rem 0 4.5rem;
}
@media screen and (max-width: 600px) {
  .matrix-twoColumn {
    padding: 4rem 0 3.5rem;
  }
}
.matrix-twoColumn .wrapper {
  display: flex;
  align-items: center;
}
.matrix-twoColumn .wrapper.isRight {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .matrix-twoColumn .wrapper.isRight {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .matrix-twoColumn .wrapper {
    flex-direction: column;
  }
}
.matrix-twoColumn .column {
  margin: 0 1.5rem;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .matrix-twoColumn .column {
    margin: 0 0 2rem;
  }
}
.matrix-twoColumn .column.isTierce {
  flex: 2;
}
.matrix-twoColumn .column img {
  max-width: 100%;
}
.matrix-twoColumn-title {
  font-weight: Bold;
  font-size: 2.5rem;
  letter-spacing: -0.56px;
  line-height: 2.625rem;
  margin-bottom: 2rem;
}
.matrix-twoColumn-subtitle {
  font-weight: Bold;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 2rem;
}
.matrix-twoColumn-text {
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
}
.matrix-twoColumn-text ul {
  list-style: square;
}
.matrix-twoColumn-footer {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 600px) {
  .matrix-twoColumn-footer {
    margin: 0;
  }
}

.matrix-entryGallery {
  padding: 4rem 0 4.5rem;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery {
    padding: 1.5rem 0 1rem;
  }
}
.matrix-entryGallery .wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.matrix-entryGallery .wrapper.isCentred {
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery .wrapper {
    padding: 0 0.5rem;
  }
}
.matrix-entryGallery-entry {
  margin: 0 1rem 2rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-entry {
    flex: 0 1 80%;
    margin: 0 auto 1.125rem;
  }
}
.matrix-entryGallery-entry.isHalf {
  flex: 0 1 calc(50% - 2rem);
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-entry.isHalf {
    flex: 0 1 92%;
    margin: 0 auto 1.125rem;
  }
}
.matrix-entryGallery-entry.isThird {
  flex: 0 1 calc(33.33% - 2rem);
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-entry.isThird {
    flex: 0 1 calc(50% - 1rem);
  }
}
.matrix-entryGallery-entry[href] div {
  bottom: -12rem;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-entry[href] div {
    bottom: 0;
  }
}
.matrix-entryGallery-entry[href]:hover img {
  transform: scale(1.025);
}
.matrix-entryGallery-entry[href]:hover div {
  bottom: 0;
  transition: all 250ms ease-in-out;
}
.matrix-entryGallery-image {
  display: block;
  width: 100%;
  transition: all 350ms ease-out;
}
.matrix-entryGallery-legend {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5rem 2rem 2.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5536589636) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  transition: all 500ms ease-in;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-legend {
    padding: 5rem 0.5rem 0.875rem;
  }
}
.matrix-entryGallery-title {
  font-weight: Bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: -0.56px;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-title {
    font-size: 1.375rem;
    line-height: 1.375rem;
    margin: 0;
  }
}
.matrix-entryGallery-subtitle {
  font-size: 1.125rem;
  font-size: 1.125rem;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .matrix-entryGallery-subtitle {
    margin-bottom: -0.375rem;
  }
}

.matrix-folderGallery {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
.matrix-folderGallery--duo {
  padding: 5rem 16rem 1rem;
  max-width: 1200px;
}
@media screen and (max-width: 600px) {
  .matrix-folderGallery--duo {
    padding: 4rem 4rem 1rem;
    max-width: 620px;
  }
}

.matrix-folderGallery-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 1rem;
}
.matrix-folderGallery-list--duo {
  margin: 0 -10rem;
}
.matrix-folderGallery-list--duo .matrix-folderGallery-item a {
  margin: 0 2.5vw;
}
.matrix-folderGallery-list--duo .matrix-folderGallery-item-name {
  max-width: 220px;
}
@media screen and (max-width: 600px) {
  .matrix-folderGallery-list--duo .matrix-folderGallery-item-name {
    max-width: 48vw;
  }
}

.matrix-folderGallery-item {
  position: relative;
  margin-bottom: 2rem;
}
.matrix-folderGallery-item--special .matrix-folderGallery-item-background {
  display: block;
  width: auto;
  height: 120.982%;
  position: absolute;
  bottom: 0;
  right: calc(100% - 2rem);
  z-index: -2;
  transform: translateX(21.955%);
}
.matrix-folderGallery-item--special a {
  position: relative;
}
.matrix-folderGallery-item--special a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4.25rem);
  background: #fff;
  transform: rotate(3deg);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.43);
  z-index: -1;
}
.matrix-folderGallery-item--special a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4.25rem);
  background: #fff;
  transform: rotate(6deg);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.43);
  z-index: -2;
}

.matrix-folderGallery-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.matrix-folderGallery-item a:hover {
  transform: rotate(3deg);
}
@media screen and (max-width: 600px) {
  .matrix-folderGallery-item a {
    margin: 0 0.25rem;
  }
}

.matrix-folderGallery-item-image {
  height: 40vh;
  max-height: 380px;
  width: auto;
  box-shadow: -4px 6px 10px 0 rgba(0, 0, 0, 0.21);
}

.matrix-folderGallery-item-name {
  padding-top: 1.5rem;
  max-width: 230px;
  flex: 1;
  font-weight: 700;
  font-size: 1.25rem;
  color: #4A4A4A;
  line-height: 1.25rem;
  text-align: center;
}

.signin {
  background: red;
}
.signin .wrapper {
  display: flex;
}

.account-header {
  background: #84BF41;
  color: #fff;
  padding: 1.375rem 0;
}
.account-header--dashboard {
  padding-bottom: 6rem;
}
.account-header--dashboard .account-header-backButton {
  display: none;
}
.account-header--dashboard .account-header-euroMatch {
  display: none;
}

.wrapper-account-header {
  position: relative;
}

.account-header-backButton:before {
  content: url(../images/icon-arrow--right--white.svg);
  display: inline-block;
  transform: translateY(-1px) rotate(180deg);
  margin-right: 1rem;
}

.account-header-euroMatch {
  position: absolute;
  right: 1.5rem;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 1.125rem 2.375rem;
  color: #4A4A4A;
}
.account-header-euroMatch-title {
  /* Mes EuroMatch: */
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #808080;
  margin-bottom: 0.5rem;
}
.account-header-euroMatch-total {
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.8px;
  margin: 0;
}
.account-header-euroMatch-devise {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.33px;
  vertical-align: super;
}

.account-welcome {
  display: none;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 3rem;
}
.account-welcome--dashboard {
  display: block;
}

.wrapper--account-tiles {
  display: flex;
  justify-content: space-between;
  margin: -4.5rem auto 6rem;
}

.account-tile {
  flex: 0 1 30%;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 1.125rem 1.875rem;
  position: relative;
  min-height: 230px;
}
.account-tile-title {
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 1.75rem;
}
.account-tile-link {
  line-height: 1.75rem;
  display: block;
  position: absolute;
  bottom: 1.125rem;
  right: 1.875rem;
  font-size: 1rem;
  color: inherit;
}
.account-tile-link:disabled {
  cursor: default;
  opacity: 0.4;
}
.account-tile-link:after {
  content: url(../images/icon-arrow--right.svg);
  display: inline-block;
  margin-left: 1rem;
  transform: translateY(1px);
}

.account-menu {
  margin-top: -0.5rem;
}
.account-menu-item {
  margin-bottom: 0.25rem;
}
.account-menu-item--logout {
  line-height: 1.75rem;
  display: block;
  position: absolute;
  bottom: 1.125rem;
  left: 1.875rem;
}
.account-menu-link:before {
  content: url(../images/icon-arrow--right--dark.svg);
  vertical-align: middle;
  margin-right: 1rem;
}
.account-menu-link--logout {
  opacity: 0.8;
  color: #E30015;
}
.account-menu-link--logout:before {
  content: url(../images/icon-logout.svg);
}

.account-tile-vouchers {
  position: relative;
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0, 20625rem;
  line-height: 1.75rem;
  text-transform: uppercase;
}
.account-tile-vouchers-number {
  font-size: 90px;
  line-height: 90px;
  letter-spacing: -1.25px;
  display: block;
  float: left;
  margin: -16px 1rem 0 0;
}
.account-tile-vouchers-validity {
  margin: 0;
  padding-bottom: 4rem;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0, 11875rem;
  line-height: 1.75rem;
}
.account-tile-vouchers-validity-date {
  color: #E30015;
}

.account-tile-euroMatch {
  position: relative;
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0, 20625rem;
  line-height: 1.75rem;
  text-transform: uppercase;
}
.account-tile-euroMatch-total {
  font-size: 72px;
  line-height: 90px;
  letter-spacing: -1.25px;
  display: block;
  float: left;
  margin: -16px 0.5rem 0 0;
}
.account-tile-euroMatch-monthAdded {
  clear: both;
  margin: 0px;
  padding: 0 0 4.5rem;
}
.account-tile-euroMatch-monthAdded-total {
  color: #84BF41;
}

.account-offers-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #808080;
  text-align: center;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.account-offers-item {
  margin-bottom: 4.5rem;
}

.account-offers-img {
  width: 100%;
  height: auto;
}

.transactions {
  /* Path 10 Copy: */
  border-bottom: 1px solid #D2D4D0;
  margin-bottom: 4rem;
}
.transactions-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: #808080;
  line-height: 3rem;
  margin: 2.625rem 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #979797;
}
.transactions-client {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transactions-client-ref {
  /* Numéro de client : 1: */
  font-weight: 300;
  font-size: 0.875rem;
  color: #808080;
}
.transactions-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8rem;
}
.transactions-table td, .transactions-table th {
  line-height: 3rem;
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  color: #808080;
}
.transactions-table td:last-child, .transactions-table th:last-child {
  text-align: right;
}
.transactions-table th {
  /* Date: */
  font-weight: 700;
  color: #4A4A4A;
}
.transactions-table tr:nth-child(even) {
  background-color: #F1F3F0;
}
.transactions-table tr.used {
  background: #FFFBC8;
}
.transactions-table td:last-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: #84BF41;
}
.transactions .euromatchUsed {
  display: inline-block;
  background: #FFC200;
  border-radius: 3px;
  padding: 0 0.5rem;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 46px;
}
.transactions .euromatchUsed-message {
  font-weight: 500;
  font-size: 13px;
  color: #483414;
  line-height: 15px;
  display: inline-block;
  max-width: 90px;
  vertical-align: middle;
  margin: 0 1.125rem;
}
.transactions .euromatch-unit--points {
  font-size: 14px;
  font-weight: 300;
  top: -8px;
  position: relative;
}

.vouchers {
  border-bottom: 1px solid #D2D4D0;
  margin-bottom: 4rem;
}
.vouchers-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: #808080;
  line-height: 3rem;
  margin: 2.625rem 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #979797;
}
.vouchers-client {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vouchers-client-ref {
  /* Numéro de client : 1: */
  font-weight: 300;
  font-size: 0.875rem;
  color: #808080;
}
.vouchers-list {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.vouchers-item {
  flex: 0 1 30%;
  background-image: linear-gradient(86deg, #33CC7A 2%, #2BAF94 99%);
  border-radius: 8px;
  color: #fff;
  padding: 1rem 2rem;
  margin-bottom: 3.625rem;
  cursor: pointer;
}
.vouchers-close {
  display: none;
}
.vouchers-period {
  font-size: 0.875rem;
  line-height: 2rem;
  height: 2rem;
  margin-bottom: 0.875rem;
}
.vouchers-value {
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -3.7px;
  line-height: 64px;
  margin-bottom: 3.125rem;
}
.vouchers-value-devise {
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -1.73px;
  line-height: 30px;
  vertical-align: middle;
}
.vouchers-links {
  display: flex;
  justify-content: space-between;
}
.vouchers-conditions {
  display: none;
}
.vouchers-link-print {
  display: block;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 0 0.5rem;
}
.vouchers-link-print:before {
  content: url(../images/icon-print.svg);
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25rem 0 0;
}
.vouchers-overlay {
  transition: opacity ease-in-out 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.vouchers-overlay.open {
  opacity: 1;
}
.vouchers-overlay.open .layer {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.vouchers-overlay .vouchers-item {
  flex: 0 1 500px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  cursor: default;
}
.vouchers-overlay .vouchers-item {
  position: relative;
}
.vouchers-overlay .vouchers-close {
  display: block;
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1.125rem;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.vouchers-overlay .vouchers-links {
  display: block;
  position: relative;
}
.vouchers-overlay .vouchers-link-details {
  display: none;
}
.vouchers-overlay .vouchers-conditions {
  display: block;
  background: #fff;
  color: #4A4A4A;
  margin: -2rem -2rem -1rem;
  padding: 1rem 2rem 7rem;
}
.vouchers-overlay .vouchers-barcode {
  position: absolute;
  bottom: 2rem;
}
.vouchers-overlay .vouchers-barcode svg {
  display: block;
}
.vouchers-overlay .vouchers-barcode-number {
  position: absolute;
  bottom: -0.5rem;
  height: 1rem;
  line-height: 1rem;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}
.vouchers-overlay .vouchers-barcode-number span {
  display: inline-block;
  padding: 0.15rem 0.2rem;
  margin: 0 0.2rem;
  background: #fff;
  letter-spacing: 0.15rem;
}
.vouchers-overlay .vouchers-link-print {
  position: absolute;
  margin: 0;
  bottom: 2rem;
  right: 0;
  border-color: #4A4A4A;
  color: #4A4A4A;
}
.vouchers-overlay .vouchers-link-print:before {
  content: url(../images/icon-print--gray.svg);
}

.account-data {
  border-bottom: 1px solid #D2D4D0;
  margin-bottom: 4rem;
}
.account-data-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: #808080;
  line-height: 3rem;
  margin: 2.625rem 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #979797;
}
.account-data-form {
  margin: 5rem 0;
}
.account-data-form .alert {
  background: #fff;
  border: 1px solid rgba(225, 225, 225, 0.47);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  font-size: 1.375rem;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 10000;
}
.account-data-form .alert-success {
  color: #fff;
  background: linear-gradient(86deg, #33cc7a 2%, #07d2aa 99%);
  box-shadow: 0 16px 20px rgba(51, 204, 122, 0.4);
  animation: move 3s ease forwards;
}
.account-data-form .alert-danger {
  color: #fff;
  background: linear-gradient(94deg, #FF363E 2%, #E2023C 99%);
  box-shadow: 0 16px 20px rgba(239, 12, 24, 0.4);
  animation: move 4s ease forwards;
}
@keyframes move {
  0.001% {
    transform: translate(0, -300px);
  }
  10% {
    transform: translate(0, 10px);
  }
  15% {
    transform: translate(0, -10px);
  }
  18% {
    transform: translate(0, 0);
  }
  94% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, -200px);
    opacity: 0;
  }
}
.account-data-form-content {
  display: flex;
  flex-wrap: wrap;
}
.account-data-form-header-user {
  font-size: 40px;
  color: #4A4A4A;
  letter-spacing: -1.16px;
  line-height: 33px;
}
.account-data-form-header-clientNumber {
  padding: 1.5rem 0 0;
  font-size: 1.25rem;
}
.account-data-form-header-clientNumber small {
  display: block;
  font-size: 0.875rem;
  opacity: 0.8;
}
.account-data-form-main {
  flex: 1 0;
  padding: 2rem 5rem;
}
.account-data-form-row {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
}
.account-data-form-row--address {
  padding-top: 2rem;
  border-top: 1px solid #D2D4D0;
  margin-top: 5rem;
}
.account-data-form-row--account {
  padding-top: 4rem;
  border-top: 1px solid #D2D4D0;
  margin-top: 5rem;
}
.account-data-form-row--address2 {
  padding-bottom: 3rem;
  border-bottom: 1px solid #D2D4D0;
  margin-bottom: 3rem;
}
.account-data-form-group {
  flex: 0 1 300px;
}
.account-data-form-group--street {
  flex: 0 0 70%;
}
.account-data-form-group--number {
  flex: 0 0 12%;
}
.account-data-form-group--box {
  flex: 0 0 12%;
}
.account-data-form-group--postal {
  flex: 0 0 20%;
}
.account-data-form-group--city {
  flex: 0 0 76%;
}
.account-data-form-label {
  display: block;
  font-size: 14px;
  color: #868383;
  line-height: 22px;
  text-indent: 6px;
}
.account-data-form-field {
  width: 100%;
  height: 3rem;
  background: #FBFBFB;
  border: 1px solid rgba(214, 214, 214, 0.47);
  border-radius: 6px;
  font-weight: 500;
  font-size: 20px;
  color: #343434;
  text-align: center;
}
.account-data-form-field:focus {
  background: #fff;
  border: 1px solid rgba(225, 225, 225, 0.47);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease-in-out;
}
.account-data-form-select {
  background-repeat: no-repeat;
  background-position: calc(100% - .8125rem) 50%;
  border: 1px solid rgba(214, 214, 214, 0.47);
  border-radius: 0.25rem;
  font-size: 1rem;
  background-color: #FBFBFB;
  color: #343434;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
}
.account-data-form-select:focus {
  background-color: #fff;
  border: 1px solid rgba(225, 225, 225, 0.47);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease-in-out;
}
.account-data-form-footer {
  padding: 4rem;
  text-align: center;
}
.account-data-form-submit {
  background-image: linear-gradient(86deg, #33cc7a 2%, #07d2aa 99%);
  border-radius: 21px;
  color: #fff;
  padding: 1rem 3rem;
  margin-bottom: 3.625rem;
  cursor: pointer;
  font-size: 1.125rem;
  box-shadow: 0 16px 20px rgba(51, 204, 122, 0.4);
}
.account-data-form-submit:hover {
  transform: translate(0, -12px);
  transition: all 350ms ease-in-out;
}

@media screen and (max-width: 600px) {
  .account .wrapper {
    padding: 0 1rem;
  }
  .account .wrapper--account-tiles {
    flex-direction: column-reverse;
    margin: -4.5rem auto 1rem;
  }
  .account-header {
    padding: 0.5rem 0;
  }
  .account-header--dashboard {
    padding-bottom: 5rem;
  }
  .account-welcome {
    font-weight: 500;
    font-size: 1.125rem;
  }
  .account-tile {
    margin-bottom: 2rem;
  }
  .account-offers-title {
    margin-bottom: 0.5rem;
  }
  .account-offers-list {
    margin-bottom: 4rem;
  }
  .account-offers-item {
    margin-bottom: 1rem;
  }

  .transactions-title {
    margin-top: 1rem;
  }

  .transactions-client {
    display: none;
  }

  .transactions-table {
    table-layout: fixed;
  }

  .transactions-table td {
    line-height: 1.25rem;
    padding: 0.75rem;
    text-align: left;
    font-size: 1rem;
  }

  .transactions-table td:nth-child(2) {
    text-align: center;
  }

  .transactions-table td:last-child small {
    display: block;
    font-size: 0.75rem;
    top: auto;
  }

  .transactions .euromatchUsed {
    line-height: inherit;
    padding: 0.35rem;
  }

  .vouchers-title {
    margin-top: 1rem;
  }

  .vouchers-list {
    padding-top: 0;
  }

  .vouchers-item {
    flex: 1;
    margin-bottom: 1.5rem;
  }

  .vouchers-value {
    padding: 0;
    font-size: 58px;
    margin-bottom: 2rem;
  }

  .vouchers-value-devise {
    font-size: 24px;
  }

  .vouchers-overlay {
    padding: 1rem;
  }

  .vouchers-overlay .vouchers-item {
    margin-bottom: 0;
  }

  .vouchers-overlay .vouchers-conditions p {
    line-height: 1.25rem;
    margin: 0 auto 1rem;
  }

  .vouchers-overlay .vouchers-barcode {
    margin: 2rem auto 0;
    position: relative;
    bottom: 0;
  }
  .vouchers-overlay .vouchers-barcode svg {
    margin: 0 auto;
  }

  .account-data-title {
    margin-top: 1rem;
    font-size: inherit;
  }

  .account-data-form {
    margin: 0;
  }

  .account-data-form-header {
    display: none;
  }

  .account-data-form-main {
    padding: 0;
  }

  .account-data-form-row {
    flex-wrap: wrap;
  }
  .account-data-form-row div:first-child {
    margin-bottom: 1rem;
  }

  .account-data-form-field {
    font-size: 18px;
    text-align: left;
    padding: 0 0.5rem;
  }

  .account-data-form-footer {
    padding: 0;
  }

  .account-data-form-submit {
    display: block;
    width: 100%;
    border-radius: 6px;
  }
}
@media screen and (max-width: 360px) {
  .vouchers-item {
    padding: 1rem;
  }
}
.page-contact-list {
  max-width: 1200px;
  margin: 4.5rem auto 8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-contact-list-item {
  flex: 0 1 30%;
  text-align: center;
  position: relative;
  margin-bottom: 45px;
  height: 30%;
}
.page-contact-list-item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.page-contact-list-item .front {
  position: absolute !important;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #E30015;
  box-shadow: -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}
.page-contact-list-item .back {
  position: absolute !important;
  padding: 4rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}
.page-contact-list-title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.875rem;
}
.page-contact-list-teaser {
  line-height: 1.25rem;
  max-width: 300px;
  margin: 1rem auto;
}
.page-contact-list-footer {
  padding: 1rem 0 0;
}

.contactForm {
  position: relative;
  padding: 4rem 0 10rem;
}
.contactForm-wrapper {
  display: flex;
  justify-content: center;
}
.contactForm-form {
  padding: 3.375rem 5.25rem 4rem;
  background: #FFFFFF;
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  width: 50%;
  max-width: 600px;
}
.contactForm-form-title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.0725rem;
  line-height: 2rem;
  max-width: 17rem;
  margin: 0 0 2.5rem;
}
.contactForm-fieldGroup {
  position: relative;
  margin-bottom: 2.25rem;
}
.contactForm-fieldGroup:last-child {
  margin-bottom: 0;
}
.contactForm-fieldGroup #messageBody {
  display: none;
}
.contactForm-field {
  font-size: 1.125rem;
  line-height: 1.375rem;
  height: 2.5rem;
  width: 100%;
  padding: 0.5625rem 0.75rem;
  display: block;
  background: #FFFFFF;
  border: 1px solid rgba(128, 128, 128, 0.75);
  border-radius: 3px;
}
.contactForm-field--textarea {
  min-height: 8.25rem;
}
.contactForm-field:focus, .contactForm-field:valid {
  border-color: #84BF41;
  outline: none;
}
.contactForm-label {
  display: block;
  color: rgba(74, 74, 74, 0.5);
  font-size: 1.125rem;
  line-height: 1.375rem;
  height: 1.375rem;
  position: absolute;
  pointer-events: none;
  left: 0.75rem;
  top: 0.5625rem;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.contactForm-field:focus ~ label, .contactForm-field:valid ~ label {
  top: -0.6875rem;
  font-size: 0.875rem;
  color: #84BF41;
  background: #fff;
  padding: 0 0.125rem;
}
.contactForm-highlight {
  position: absolute;
  height: 60%;
  width: 40%;
  max-width: 220px;
  top: 20%;
  left: 1rem;
  pointer-events: none;
  opacity: 0.5;
}
.contactForm-field:focus ~ .contactForm-highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}
@-webkit-keyframes inputHighlighter {
  from {
    background: #84BF41;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #84BF41;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #84BF41;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.contactForm-text {
  color: #FFFFFF;
}
.contactForm-text-wrapper {
  max-width: 600px;
  padding: 3.375rem 5.625rem 4rem;
}
.contactForm-text-title {
  font-size: 2.5rem;
  line-height: 2.625rem;
  margin-bottom: 1.75rem;
}
.contactForm-text:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: #84BF41;
  position: absolute;
  bottom: 50%;
  left: 0;
  transform-origin: center bottom;
  transform: skewY(19deg);
  z-index: -1;
}

.page + .contactForm {
  overflow: hidden;
}
.page + .contactForm .contactForm-text:after {
  top: 50%;
  left: 0;
  transform-origin: center top;
}

@media screen and (max-width: 600px) {
  .page-contact-list-item {
    flex: 0 1 100%;
  }

  .contact-page .page-header {
    height: 240px;
  }
  .contact-page .page-header-title {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  .contactForm {
    padding: 0 0 2rem;
  }
  .contactForm-wrapper {
    flex-direction: column-reverse;
    padding: 0.5rem 1rem 0;
  }
  .contactForm-form {
    width: auto;
    padding: 2rem;
  }
  .contactForm-text:after {
    transform-origin: right top;
  }
  .contactForm-text-wrapper {
    max-width: 600px;
    padding: 0 0 2rem;
  }
  .contactForm-text-title {
    padding-top: 2rem;
    font-size: 2rem;
  }
}
.page-header {
  height: 460px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header-title {
  font-weight: 800;
  font-size: 5.625rem;
  line-height: 5.625rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.86);
  max-width: 700px;
  text-align: center;
}
.page-header-background {
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  margin-left: -50vw;
  object-fit: cover;
  z-index: -1;
}

.page-article {
  margin-bottom: 5rem;
}
.page-article:after {
  content: "";
  display: block;
  width: 480px;
  height: 1px;
  background: #D5D5D5;
  margin: 5rem auto 0;
}

.page-title {
  font-weight: 800;
  font-size: 2.75rem;
  text-align: center;
  line-height: 2.675rem;
  width: 80%;
  max-width: 700px;
  margin: 4rem auto 2rem;
}

.page-body {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.875rem;
  width: 80%;
  max-width: 700px;
  margin: 2rem auto 3.5rem;
}
.page-body a {
  color: #E30015;
  text-decoration: underline;
}

.page-figure {
  text-align: center;
  margin: 0 0 4rem;
}

.page-link {
  text-align: center;
}

.page-gallery--masonry {
  display: flex;
  flex-flow: row wrap;
  margin: 4rem auto;
  max-width: 1000px;
  position: relative;
  left: 10px;
}

.page-gallery-item {
  flex: auto;
  height: 260px;
  min-width: 150px;
  margin: 0 20px 20px 0;
  /* Some gutter */
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.page-gallery-item:nth-child(4n+1) {
  width: 250px;
}
.page-gallery-item:nth-child(4n+2) {
  width: 325px;
}
.page-gallery-item:nth-child(4n+3) {
  width: 180px;
}
.page-gallery-item:nth-child(4n+4) {
  width: 380px;
}
.page-gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .page-title {
    font-size: 2.5rem;
    width: auto;
    margin: 2rem auto 1rem;
  }

  .page-body {
    width: auto;
    margin: 2rem auto;
  }

  .page-article {
    margin-bottom: 0;
  }
  .page-article:after {
    background: transparent;
    margin: 3rem auto 0;
  }
}
.newsletterBlock {
  background: #84BF41;
  color: #fff;
  padding: 3rem 6rem 6rem;
  border-radius: 1rem;
  text-align: center;
}
.newsletterBlock__title {
  max-width: 780px;
  margin: 0px auto;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 2.125rem;
}
.newsletterBlock__title::before {
  content: attr(data-subtitle);
  display: block;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0.5rem;
}
.newsletterBlock__form {
  background: #FFFFFF;
  border: 1px solid #538C11;
  border-radius: 8px;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  padding: 6px;
}
.newsletterBlock__form input[type=email] {
  flex: 1;
  font-size: 20px;
  color: #4D4D4D;
  border: 0 none;
  text-indent: 6px;
}
.newsletterBlock__form input[type=email]:focus {
  outline: none;
}
.newsletterBlock__form button[type=submit] {
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  background: #E30015;
  height: 44px;
  padding: 0 2rem;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw;
  /* Full width */
  height: 100vh;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(74, 74, 74, 0.65);
  /* Black w/ opacity */
}
.modal--close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  height: 1.5rem;
  width: 1.5rem;
  background: url(../images/icon-cross.svg) no-repeat #fff;
  z-index: 1000;
  border: 0.25rem solid #fff;
  border-radius: 2px;
}
.modal--wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal--content {
  background-color: #fff;
  max-width: 900px;
  box-shadow: 0 2px 16px 0 #3B3A3A;
  border-radius: 3px;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  position: relative;
  top: -1600px;
  opacity: 0;
  max-height: calc(100% - 2rem);
}
.modal--intro {
  flex: 1;
  padding: 2rem;
  box-sizing: border-box;
}
.modal--intro--title {
  max-width: 350px;
  font-weight: 800;
  font-size: 3.5rem;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 3.5rem;
  text-shadow: -4px 4px 4px rgba(0, 0, 0, 0.5);
}
.modal--intro--text {
  padding: 2rem 0;
  color: #fff;
  font-size: 1.5rem;
}
.modal--form {
  flex: 1;
  padding: 2rem;
}
.modal--form .input--hidden {
  display: none;
}
.modal--form .form-block {
  margin-bottom: 1rem;
}
.modal--form--title {
  /* Inscription à la new: */
  font-weight: 700;
  font-size: 1.5rem;
  color: #292929;
  line-height: 2rem;
  margin: 0 0 1.5rem;
}
.modal--form .entry__label[for=CIVILITY] {
  margin-bottom: 0.5rem;
}
.modal--form--civility {
  display: flex;
}
.modal--form--civility .entry__choice:not(:first-child) {
  margin-top: 0;
  margin-left: 0.75rem;
}
.modal--form--submit {
  text-align: right;
}
.modal--form--submit button {
  display: inline-block;
  background: #84BF41;
  padding: 0.5rem 2.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

.sib-form-message-panel {
  display: none;
}
.sib-form-message-panel p {
  margin: 0;
}

.sib-form-message-panel--active {
  display: block;
  position: relative;
  padding: 1rem;
  margin: 0 0 1rem;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  -webkit-animation: moveOpen 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
}

#success-message.sib-form-message-panel--active {
  background: #84BF41;
}

#error-message.sib-form-message-panel--active {
  background: #E30015;
}

/* Safari and Chrome */
@-webkit-keyframes moveOpen {
  from {
    -webkit-transform: translate(0, -200px);
  }
  10% {
    -webkit-transform: translate(0, -2px);
  }
  12% {
    -webkit-transform: translate(0, 0);
  }
  16% {
    -webkit-transform: translate(0, -2px);
  }
  80% {
    -webkit-transform: translate(0, 0);
  }
  85% {
    -webkit-transform: translate(0, 3px);
  }
  to {
    -webkit-transform: translate(0, -200px);
  }
}
@media screen and (max-width: 600px) {
  .modal--intro {
    display: none;
  }

  .modal--content {
    margin: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .modal--content {
    max-height: calc(100% - 0.5rem);
    margin: 0.25rem;
  }

  .modal--form {
    padding: 1rem;
  }

  .modal--form--title {
    font-size: 1.15rem;
    line-height: 1.5rem;
    margin: 0 0 0.5rem;
  }

  .modal--form .modal--form--submit {
    margin-bottom: 0;
  }
}
.euromatch-video video {
  width: 100vw;
}
.euromatch-fidelityPlan {
  padding: 4rem 0;
}
.euromatch-fidelityPlan-title {
  font-size: 1.75rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 3rem;
}
.euromatch-fidelityPlan-steps {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 2rem 0 0;
}
.euromatch-fidelityPlan-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  flex: 1;
}
.euromatch-fidelityPlan-item-illustration {
  margin: 0 0 2.5rem;
  height: 152px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.euromatch-fidelityPlan-item-title {
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.euromatch-fidelityPlan-item-title span {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}
.euromatch-fidelityPlan-item-content {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 0 0.5rem;
}
.euromatch-fidelityPlan-footer {
  padding: 3rem 1rem 0;
  text-align: center;
}
.euromatch-fidelityPlan-footer .cta {
  font-weight: 800;
  font-size: 1.375rem;
}
.euromatch-fidelityPlan-footer p a {
  color: #84BF41;
  text-shadow: 0 1px 0 white;
  text-decoration: none;
  border-bottom: 1px dashed #a9d27a;
  display: inline-block;
  position: relative;
  padding: 0 0.2em;
  transition: all 250ms;
  z-index: 1000;
}
.euromatch-fidelityPlan-footer p a:before {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0%;
  background: rgba(181, 217, 141, 0.16);
  bottom: 0;
  left: 0;
  position: absolute;
  transition: height 250ms;
}
.euromatch-fidelityPlan-footer p a:hover {
  border-color: transparent;
}
.euromatch-fidelityPlan-footer p a:hover:before {
  height: 100%;
}
.euromatch-fidelityPlan-faq-link {
  display: inline-block;
  color: #84BF41;
  border-bottom: 2px solid #84BF41;
}
.euromatch-advantages {
  padding: 4rem 0;
  background: #F9F9F9;
  position: relative;
  overflow: hidden;
}
.euromatch-advantages:before {
  display: block;
  content: "";
  width: 56px;
  height: 360px;
  background: #E30015;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 199px;
  transform-origin: left top;
  transform: rotate(-45deg);
  box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.27);
}
.euromatch-advantages:after {
  display: block;
  content: "";
  width: 56px;
  height: 360px;
  background: #E30015;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 199px;
  transform-origin: right bottom;
  transform: rotate(-45deg);
  box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.27);
}
.euromatch-advantages-title {
  font-size: 1.75rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 3rem;
}
.euromatch-advantages-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
.euromatch-advantages-item {
  flex: 0 0 30%;
  max-width: 330px;
  background: #FFFFFF;
  box-shadow: 2px 7px 13px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  text-align: center;
  margin: 0 2rem 3rem;
  padding: 1rem 2rem 2rem;
  box-sizing: border-box;
}
.euromatch-advantages-item-figure {
  display: flex;
  width: 100%;
  height: calc(200px - 1rem);
  margin: 0;
  justify-content: center;
  align-items: center;
}
.euromatch-advantages-item-title {
  font-size: 1.25rem;
  color: #3D3D3D;
  line-height: 3rem;
}
.euromatch-advantages-item-content {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.euromatch-advantages-item-content > * {
  margin-top: 0;
}
.euromatch-banner {
  background: url(../images/background-euromatch-banner.jpg) no-repeat center center;
  background-size: cover;
}
.euromatch-banner .wrapper {
  display: flex;
}
.euromatch-banner-column {
  padding: 3rem;
  flex: 1;
  text-align: center;
  color: #fff;
  position: relative;
}
.euromatch-banner-column:first-child {
  flex: 2;
}
.euromatch-banner-content {
  max-width: 440px;
  margin: 0 auto;
}
.euromatch-banner-title {
  font-size: 2.5rem;
  line-height: 2.625rem;
  margin-bottom: 3rem;
}
.euromatch-banner-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 4px 13px 0 rgba(255, 255, 255, 0.17);
  position: absolute;
  left: -6rem;
  top: -1rem;
  transform: rotate(9deg);
}
.euromatch-faq {
  padding: 4rem 0;
}
.euromatch-faq .wrapper {
  max-width: 820px;
}
.euromatch-faq-title {
  font-size: 1.75rem;
  color: #4A4A4A;
  text-align: center;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.euromatch-faq-content {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-align: center;
}
.euromatch-faq-content > * {
  margin-top: 0;
}
.euromatch-faq-list {
  margin: 3rem 0 0;
}
.euromatch-faq-item {
  background: #FFFFFF;
  border: 0 solid rgba(216, 35, 42, 0.25);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 1.5rem 2.25rem 1rem;
  margin: 0 0 1rem;
  position: relative;
}
.euromatch-faq-item:before {
  content: url(../images/icon-euromatch-faq-item.svg);
  position: absolute;
  right: 2.25rem;
  top: 1.375rem;
  cursor: pointer;
  z-index: 10;
}
.euromatch-faq-item-question {
  font-size: 1.25rem;
  line-height: 1.625rem;
  margin-right: 3rem;
}
.euromatch-faq-item-question:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #808080;
  margin-top: 1rem;
}
.euromatch-faq-item-answer {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.euromatch-faq-item.active {
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
}
.euromatch-faq-item:hover {
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(1.025, 1.05);
  box-shadow: 0 7px 13px 0 rgba(255, 15, 15, 0.19), -2px 7px 13px 0 rgba(0, 0, 0, 0.15);
}
.euromatch-faq-footer {
  text-align: center;
  margin: 3rem 0;
  border-top: 1px solid #cacaca;
  padding-top: 2rem;
}
.euromatch-faq-footer-title {
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 0 0.5rem;
}

@media screen and (max-width: 600px) {
  .euromatch-fidelityPlan {
    padding: 3rem 0;
  }
  .euromatch-fidelityPlan .wrapper {
    padding: 0 0.75rem;
  }

  .euromatch-fidelityPlan-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .euromatch-fidelityPlan-steps {
    flex-wrap: wrap;
  }

  .euromatch-fidelityPlan-item {
    flex: auto;
  }

  .euromatch-advantages {
    padding: 3rem 0;
  }

  .euromatch-advantages:before {
    width: 42px;
    right: 50px;
  }

  .euromatch-advantages:after {
    left: 130px;
  }

  .euromatch-advantages-item {
    flex: auto;
    max-width: none;
    margin: 0 0 3rem;
  }

  .euromatch-banner .wrapper {
    flex-direction: column-reverse;
  }

  .euromatch-banner-column {
    padding: 0;
  }

  .euromatch-banner-column:first-child {
    padding: 0 0 3rem;
  }

  .euromatch-banner-card {
    position: static;
  }

  .euromatch-banner-card {
    margin-top: -4rem;
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
    transform: scale(0.8) rotate(5deg);
  }

  .euromatch-faq .wrapper {
    padding: 0 0.75rem;
  }

  .euromatch-faq-item {
    padding: 1.5rem 1.5rem 1rem;
  }

  .euromatch-faq-item-question {
    margin-right: 2rem;
  }

  .euromatch-faq-item:before {
    right: 1.25rem;
  }
}
.shopProduct {
  position: relative;
}
.shopProduct__page {
  position: relative;
}

@media screen and (max-width: 800px) {
  .offer {
    margin: 0 -1rem 4rem;
  }
}
@media screen and (min-width: 800px) {
  .offer {
    width: 500px;
    margin: 0 0 6rem calc(100% - 500px);
  }
}
.offer__title {
  font-size: 2.25rem;
  line-height: 2rem;
  color: #E30015;
  text-align: center;
  margin: 1rem 0;
}
@media screen and (min-width: 800px) {
  .offer__title {
    text-align: left;
    padding-right: 150px;
  }
}
@media screen and (min-width: 800px) {
  .offer__picture {
    position: absolute;
    left: 1.5rem;
    top: 0;
    right: calc(590px + 1.5rem);
  }
}
.offer__picture img {
  display: block;
  max-width: 100%;
}
.offer__cartouche {
  float: right;
  background: #E30015;
  border-radius: 4px;
  color: #fff;
  box-shadow: -2px 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  overflow: hidden;
  margin-top: -40px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .offer__cartouche {
    float: none;
    position: absolute;
    right: 1.5rem;
    top: 0;
    transform: scale(1.4);
    transform-origin: top right;
    margin-top: -56px;
  }
}
.offer__cartouche__price {
  position: relative;
  padding: 0 0.5rem;
  font-size: 13px;
  letter-spacing: 0.9px;
  margin: 6px;
}
.offer__cartouche__price small {
  font-size: 9px;
}
.offer__cartouche__price:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-bottom: 1px solid #fff;
  transform: skew(0deg, 15deg);
}
.offer__cartouche__priceDiscounted {
  font-size: 34px;
  letter-spacing: 0.75px;
  padding: 0 0.75rem;
  margin: 0 0.5rem;
  border-top: 1px solid #fff;
  min-width: 76px;
}
.offer__cartouche__priceDiscounted small {
  font-size: 11px;
}
.offer__cartouche__discount {
  font-size: 13px;
  color: #E30015;
  letter-spacing: 1.66px;
  line-height: 24px;
  background: #FFDC15;
  width: 100%;
}
.offer__delivery {
  margin-top: 1rem;
}
.offer__delivery__icon {
  float: left;
  margin: 4px 1rem 0 0;
}
.offer__delivery__title {
  font-size: 1.375rem;
  color: #3D3D3D;
  line-height: 2rem;
  margin: 0;
}
.offer__delivery__info {
  font-size: 1.125rem;
  color: #4A4A4A;
  line-height: 1.125rem;
  margin: 0;
}
.offer__countdown {
  clear: both;
  margin: 1.5rem 0 1rem;
  background: rgba(132, 191, 65, 0.13);
  border-radius: 3px;
  display: flex;
}
@media screen and (min-width: 800px) {
  .offer__countdown {
    margin: 2.5rem 0 2.25rem;
  }
}
.offer__countdown__counter {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  display: flex;
  padding: 6px;
}
.offer__countdown__counter__digit {
  background: #FFFFFF;
  box-shadow: 0 2px 3px 0 rgba(255, 15, 15, 0.19), -1px 1px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  font-size: 30px;
  color: #292929;
  line-height: 32px;
  width: 36px;
  min-height: 48px;
  max-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.5px;
}
.offer__countdown__info {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  margin: 0 0.025rem;
}
.offer__countdown__info p {
  margin: 0;
  font-weight: 700;
  font-size: 21px;
  line-height: 21px;
  color: #84BF41;
}
.offer__countdown__info h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #808080;
}
@media screen and (min-width: 800px) {
  .offer__info {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 1rem;
  }
}

.shopForm {
  background: #f9f9f9;
  position: relative;
}
.shopForm__page {
  padding: 6rem 0 12rem;
}
@media screen and (max-width: 800px) {
  .shopForm__page {
    padding: 0;
    margin: 0 -1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .shopForm .uiForm--columns {
    flex-direction: column;
  }
}
.shopForm .uiForm .uiColumn {
  background: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 2rem 2rem 4rem;
}
@media screen and (max-width: 800px) {
  .shopForm .uiForm .uiColumn {
    box-shadow: none;
    padding: 2rem 0.25rem 4rem;
  }
}
.shopForm .uiForm .uiColumn:first-child {
  margin-right: 4rem;
  flex: 1;
  padding: 2rem 4rem 4rem;
}
@media screen and (max-width: 800px) {
  .shopForm .uiForm .uiColumn:first-child {
    padding: 2rem 1rem;
    margin: 0;
  }
  .shopForm .uiForm .uiColumn:first-child .uiLabel {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .shopForm .uiForm .uiColumn:first-child input::placeholder {
    color: #fff;
  }
}

.dataLegal {
  position: relative;
  bottom: -16px;
}

@media screen and (min-width: 800px) {
  .uiColumn--order {
    width: 520px;
  }
}

.order {
  flex: 1;
}

.orderTitle {
  padding: 0.5rem;
  color: #84BF41;
  background: rgba(132, 191, 65, 0.15);
  margin-bottom: 1rem;
}

.orderResume {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4rem;
}
.orderResume td {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #84BF41;
}
.orderResume__img {
  width: calc(56px + 1rem);
  padding-right: 1rem;
}
.orderResume__img img {
  width: 100%;
  display: block;
}
.orderResume__price {
  text-align: right;
  font-size: 16px;
  text-align: right;
  line-height: 21px;
}
.orderResume__total {
  font-weight: 700;
}
.orderResume__total small {
  font-weight: 300;
}
.orderResume__total strong {
  color: #000;
}
.orderResume__pickup td {
  text-align: right;
  border-bottom: 0 none;
}

.orderSecure {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  line-height: 1rem;
}
.orderSecure svg {
  margin-right: 13px;
}
@media screen and (min-width: 800px) {
  .orderSecure {
    padding-right: 0;
  }
}

.orderFooter {
  position: relative;
  bottom: -40px;
}

.orderNote {
  font-size: 14px;
  line-height: 21px;
  color: #808080;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 800px) {
  .orderNote {
    top: -40px;
  }
}
.orderNote svg {
  height: 60px;
  margin: 0 12px;
}

.paymentStatus {
  text-align: center;
  padding: 5rem 0.25rem 12rem;
  font-size: 20px;
  line-height: 30px;
  margin: 0 auto;
  max-width: 650px;
}
.paymentStatus h1 {
  font-size: 60px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin: 0;
}
.paymentStatus h1 + p {
  margin-top: 0;
}
.paymentStatus a {
  border-bottom: 1px solid #808080;
}
.paymentStatus a:hover {
  color: #000;
  border-bottom: 2px solid #000;
}
.paymentStatus__footer {
  padding-top: 3rem;
}

.ap__carrousel {
  margin-bottom: 80px;
}
.ap__carrousel img {
  display: block;
  width: 100%;
}
.ap__carrousel__container {
  display: flex;
}
.ap__carrousel__primary {
  width: 61%;
}
.ap__carrousel__secondary {
  width: 39%;
  padding-left: 18px !important;
}
.ap__carrousel__secondary .swiper-wrapper {
  flex-direction: column;
}
.ap__carrousel__secondary .swiper-slide {
  height: auto;
}
.ap__carrousel__secondary a {
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .ap__carrousel {
    margin-bottom: 40px;
  }
  .ap__carrousel__container {
    flex-direction: column;
    padding: 0;
  }
  .ap__carrousel__primary {
    width: 100%;
    margin-bottom: 18px;
  }
  .ap__carrousel__secondary {
    width: 100%;
    padding: 0 12px !important;
  }
  .ap__carrousel__secondary .swiper-wrapper {
    flex-direction: row;
  }
  .ap__carrousel__secondary .swiper-slide {
    width: 95%;
    border-radius: 9px;
    overflow: hidden;
  }
  .ap__carrousel__secondary .swiper-slide a {
    margin-bottom: 0;
  }
}

.ap__publication {
  margin-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ap__publication .wrapper {
  display: flex;
}
.ap__publication__figure {
  width: 50%;
  position: relative;
  margin: 0;
}
.ap__publication__figure img {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 5px 19px 34px rgba(0, 0, 0, 0.38);
  display: block;
}
.ap__publication__cartouche {
  padding: 100px 80px 90px;
  flex: 1;
  box-sizing: border-box;
}
.ap__publication__title {
  font-size: 40px;
  color: #3D3D3D;
  letter-spacing: -0.56px;
  line-height: 42px;
  margin-bottom: 32px;
}
.ap__publication__text {
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 48px;
}
.ap__publication .cta {
  margin-right: 16px;
}
@media screen and (max-width: 600px) {
  .ap__publication {
    margin-bottom: 40px;
    overflow-y: hidden;
  }
  .ap__publication .wrapper {
    flex-direction: column;
  }
  .ap__publication__figure {
    width: 100%;
    height: 60vh;
  }
  .ap__publication__figure img {
    width: 90% !important;
    margin: 40px auto 0 !important;
    transform: rotate(-2deg) !important;
  }
  .ap__publication__cartouche {
    position: relative;
    padding: 10rem calc(5% + 1.5rem) 2.5rem;
    margin: -35vh -1.5rem 0;
  }
  .ap__publication__title {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  .ap__publication__text {
    display: none;
  }
  .ap__publication .cta {
    line-height: 2rem;
  }
}

.ap__picture {
  margin-bottom: 80px;
}
.ap__picture img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .ap__picture {
    margin-bottom: 40px;
  }
  .ap__picture .wrapper {
    padding: 0 0.75rem;
  }
}

.ap__board {
  margin-bottom: 80px;
}
.ap__board .wrapper {
  display: flex;
}
.ap__board img {
  display: block;
  width: 100%;
}
.ap__board__primary {
  width: 51%;
  position: relative;
}
.ap__board__loyaltyCard {
  position: absolute;
  display: block;
  margin: 0;
  width: 30%;
  border-radius: 12px;
  overflow: hidden;
  top: 8%;
  left: -3%;
  transform: rotate(-5deg);
  box-shadow: 10px 14px 21px rgba(0, 0, 0, 0.37);
}
.ap__board__secondary {
  width: 49%;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ap__board__secondary a {
  display: block;
}
@media screen and (max-width: 600px) {
  .ap__board {
    margin-bottom: 40px;
  }
  .ap__board .wrapper {
    padding: 0 0.75rem;
    flex-direction: column;
  }
  .ap__board__primary {
    width: 100%;
  }
  .ap__board__secondary {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }
  .ap__board__secondary a {
    margin-top: 12px;
  }
}

.ap__strip {
  margin-bottom: 80px;
}
.ap__strip__header {
  max-width: 600px;
  text-align: center;
  margin: 42px auto;
}
.ap__strip__title {
  font-size: 32px;
  line-height: 48px;
  margin: 0;
}
.ap__strip .wrapper {
  display: flex;
}
.ap__strip__case {
  margin-right: 12px;
}
.ap__strip__case img {
  display: block;
  width: 100%;
}
.ap__strip__case:last-child {
  margin-right: 0;
}
.ap__strip__caseTitle {
  padding: 21px 0;
}
.ap__strip__caseTitlePrimary {
  font-size: 21px;
  line-height: 24px;
  margin: 0 0 6px;
}
.ap__strip__caseTitleSecondary {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .ap__strip {
    margin-bottom: 40px;
  }
  .ap__strip .wrapper {
    padding: 0 0.75rem;
    flex-direction: column;
  }
  .ap__strip__case {
    margin: 0 0 12px;
  }
}

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