@charset "UTF-8";
@import "../node_modules/normalize.css/normalize.css";
@import "../node_modules/animate.css/animate.min.css";
/*** General style ***/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap");
@import url("https://use.typekit.net/adj1cba.css");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #6C7484;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#signin-container {
  width: 100%;
  height: 100vh;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.container-xl {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

small {
  font-size: 75%;
}

.d-none {
  display: none;
}

.d-xl-none {
  display: none;
}
@media (min-width: 576px) {
  .d-xl-none {
    display: block;
  }
}

.d-sm-none {
  display: none;
}
@media (min-width: 768px) {
  .d-sm-none {
    display: block;
  }
}

.d-sm-block {
  display: block;
}
@media (min-width: 768px) {
  .d-sm-block {
    display: none;
  }
}

.no-wrap {
  white-space: nowrap;
}

.nav-overflow {
  width: 100%;
  overflow: auto;
}

.bottom-mentions {
  line-height: 1.5;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.bottom-mentions.mentions-offre {
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .bottom-mentions.mentions-offre {
    font-size: 1.1rem;
  }
}
@media (min-width: 576px) {
  .bottom-mentions {
    padding: 0 2rem;
  }
}
@media (min-width: 1400px) {
  .bottom-mentions {
    padding: 0;
  }
}

/*** animttions ***/
/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/
@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  text-decoration: blink;
  animation-name: blinker;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-direction: alternate;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-direction: alternate;
}

#signin-content {
  width: 100%;
  box-shadow: 0px 0px 15px #e0e0e0;
  margin: auto;
  display: grid;
  grid-template-columns: 0 100%;
  background-color: #000;
}
@media (min-width: 768px) {
  #signin-content {
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
  }
}
@media (min-width: 992px) {
  #signin-content {
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
@media (min-width: 1200px) {
  #signin-content {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 57% 43%;
  }
}
#signin-content .logo {
  margin: 1.75rem 0 0.5rem;
}
#signin-content .logo img {
  width: 100%;
  max-height: 80px;
}
#signin-content .left-side {
  background-color: black;
  background-image: url("../images/bg-login.jpg");
  background-size: cover;
  background-position: -3px;
}
#signin-content .right-side {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#signin-content .right-side #signin-form {
  width: 100%;
}
#signin-content .right-side #signin-form h2 {
  color: #164A93;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 1rem;
}
@media (min-width: 576px) {
  #signin-content .right-side #signin-form h2 {
    font-size: 4.375rem;
    font-weight: 400;
    text-align: center;
    margin: 0 auto 1rem;
  }
}
#signin-content .right-side #signin-form h2 + p {
  text-align: center;
  margin: 0 auto 2.25rem;
}
#signin-content .right-side #signin-form .form-row {
  width: 90%;
  max-width: 265px;
  margin: 0 auto;
}
#signin-content .right-side #signin-form .form-row label {
  font-style: italic;
  font-weight: 600;
  display: block;
  margin: 1rem 0 0.5rem;
}
#signin-content .right-side #signin-form .form-row input {
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  padding: 0 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
}
#signin-content .right-side #signin-form .form-row input:focus {
  outline: 2px solid #2AC8CB;
  border-color: #fff;
}
#signin-content .right-side #signin-form .form-row ::placeholder {
  opacity: 0.5;
}
#signin-content .right-side #signin-form .form-row .form-text-info {
  display: block;
  font-size: 0.75rem;
  text-decoration: underline;
  color: #545555;
  margin: 0.75rem 0 2rem;
}
#signin-content .right-side #signin-form .text-danger {
  text-align: center;
  color: #c83333;
  font-style: italic;
  font-weight: 600;
}
#signin-content .right-side #signin-form .btn {
  margin: auto;
}
#signin-content .right-side .signin-contact {
  width: 90%;
  margin: 2rem auto;
  text-align: center;
}
#signin-content .right-side .signin-contact ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0.25rem 0;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  #signin-content .right-side .signin-contact ul {
    flex-direction: row;
    justify-content: space-around;
  }
}
#signin-content .right-side .signin-contact ul li {
  list-style: none;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  #signin-content .right-side .signin-contact ul li {
    margin: 0;
  }
}
#signin-content .right-side .signin-contact ul li a {
  color: #545555;
}
#signin-content .right-side .signin-contact ul li::before {
  content: url("../images/svg/phone.svg");
  margin-right: 0.5rem;
  vertical-align: middle;
  filter: invert(34%) sepia(0%) saturate(1581%) hue-rotate(259deg) brightness(91%) contrast(86%);
  -webkit-filter: invert(34%) sepia(0%) saturate(1581%) hue-rotate(259deg) brightness(91%) contrast(86%);
}
#signin-content .right-side .signin-contact ul li.mail::before {
  content: url("../images/svg/email.svg");
  filter: invert(34%) sepia(0%) saturate(1581%) hue-rotate(259deg) brightness(91%) contrast(86%);
  -webkit-filter: invert(34%) sepia(0%) saturate(1581%) hue-rotate(259deg) brightness(91%) contrast(86%);
}
#signin-content #signin-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  #signin-content #signin-footer {
    width: 90%;
  }
}
#signin-content #signin-footer ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
@media (min-width: 576px) {
  #signin-content #signin-footer ul {
    width: 80%;
  }
}
#signin-content #signin-footer ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 25%;
  padding: 2rem 0;
  list-style: none;
  font-size: 0.7rem;
  font-weight: 600;
  color: #545555;
}
@media (min-width: 576px) {
  #signin-content #signin-footer ul li {
    font-size: 0.75rem;
  }
}
#signin-content #signin-footer ul li::before {
  content: url("../images/svg/mags.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #545555;
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#signin-content #signin-footer ul li.gift::before {
  content: url("../images/svg/gift.svg");
}
#signin-content #signin-footer ul li.price::before {
  content: url("../images/svg/euro.svg");
}
#signin-content #signin-footer ul li.secured::before {
  content: url("../images/svg/locker.svg");
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 1.125rem;
  color: #6C7484;
  width: 90%;
  height: 48px;
  line-height: 48px;
  max-width: 265px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.btn.btn-small {
  font-size: 0.75rem;
  height: 35px;
  line-height: 36px;
}
@media (min-width: 576px) {
  .btn.btn-small {
    font-size: 1rem;
  }
}
.btn.btn-small:hover {
  font-size: 0.85rem;
}
.btn.btn-outline {
  background-color: #fff;
  border: 2px solid #2AC8CB;
  color: #2AC8CB;
}
.btn.btn-outline:hover {
  background-color: #fff;
  border: 2px solid #4ed8da;
  color: #164A93;
}
.btn.btn-outline.btn-primary {
  border-color: #164A93;
  color: #164A93;
}

.btn-secondary {
  background-color: #2AC8CB;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #4ed8da;
  font-size: 1.25rem;
  box-shadow: 0 0 12px #6C7484;
  cursor: pointer;
}

.btn-primary {
  background-color: #164A93;
  color: #fff;
}
.btn-primary:hover {
  background-color: #fff;
  font-size: 1.25rem;
  color: #164A93;
  border: 1px solid #164A93;
  cursor: pointer;
}

header {
  padding-top: 90px;
}
@media (min-width: 576px) {
  header {
    padding-top: 100px;
  }
}
header .header-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 90px;
  align-items: center;
  z-index: 8;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
@media (min-width: 576px) {
  header .header-content {
    height: 100px;
  }
}
header .header-content .container {
  display: flex;
  padding: 0;
}
@media (min-width: 768px) {
  header .header-content .container {
    padding: 0 1rem;
  }
}
header .header-content .container nav.nav-desktop {
  width: 100%;
}
header .header-content .container nav.nav-desktop .nav {
  padding: 0;
}
header .header-content .container nav.nav-desktop .nav li {
  display: inline-block;
  line-height: 1.5;
  list-style: none;
  margin: 0 0.75rem;
}
header .header-content .container nav.nav-desktop .nav li a {
  color: #6C7484;
  text-decoration: none;
}
header .header-content .container nav.nav-desktop .nav li a.active {
  font-weight: bold;
}
header .header-content .container nav.nav-desktop .nav li:last-child {
  float: right;
  position: relative;
}
header .header-content .container nav.nav-desktop .nav li:last-child span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  background-color: #2AC8CB;
  font-size: 0.75rem;
  color: #F0F0F0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 768px) {
  header .header-content .container nav.nav-desktop {
    display: none;
  }
}
header .header-content .container nav.nav-mob {
  background: #fff;
  height: 60px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  header .header-content .container nav.nav-mob {
    display: none;
  }
}
header .header-content .container nav .nav-links {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 1px;
  padding: 0;
}
header .header-content .container nav .nav-links::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100vh;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.3s;
}
header .header-content .container nav .nav-links li {
  border-bottom: 1px solid #ddd;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s;
}
header .header-content .container nav .nav-links li a {
  background: #fff;
  color: #404040;
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 20px;
  text-align: right;
  text-decoration: none;
  transition: all 0.3s;
}
header .header-content .container nav .nav-links li a.active {
  font-weight: 700;
}
header .header-content .container nav .nav-links li a:hover {
  color: #164A93;
}
header .header-content .container nav input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
header .header-content .container nav input[type=checkbox]:checked + label {
  border: 4px solid silver;
  border-radius: 50%;
  height: 28px;
  top: 16px;
  right: 18px;
  width: 28px;
  transform: rotate(-135deg);
}
header .header-content .container nav input[type=checkbox]:checked + label::before {
  background: silver;
  top: 12px;
  left: 5px;
  width: 18px;
}
header .header-content .container nav input[type=checkbox]:checked + label::after {
  background: silver;
  opacity: 1;
  top: 12px;
  left: 5px;
  visibility: visible;
  width: 18px;
}
header .header-content .container nav input[type=checkbox]:checked + label:hover {
  border-color: #164A93;
}
header .header-content .container nav input[type=checkbox]:checked + label:hover::before, header .header-content .container nav input[type=checkbox]:checked + label:hover::after {
  background: #164A93;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links {
  height: auto;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links::before {
  opacity: 1;
  visibility: visible;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li {
  list-style: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:last-child {
  position: relative;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:last-child span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 7.5rem;
  bottom: 0.75rem;
  width: 1rem;
  height: 1rem;
  background-color: #2AC8CB;
  font-size: 0.75rem;
  color: #F0F0F0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:nth-child(1) {
  transition-delay: 0s;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:nth-child(2) {
  transition-delay: 0.1s;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}
header .header-content .container nav input[type=checkbox]:checked ~ .nav-links li:nth-child(4) {
  transition-delay: 0.3s;
}
header .header-content .container nav label {
  background: none transparent;
  border: 4px solid #164A93;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  cursor: pointer;
  display: block;
  height: 16px;
  position: absolute;
  top: 1rem;
  right: 20px;
  width: 24px;
  transition: all 0.2s;
}
header .header-content .container nav label::before {
  background: #164A93;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 24px;
  transition: all 0.2s;
}
header .header-content .container nav label::after {
  background: coral;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 6px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transform: rotate(90deg);
  transition: all 0.2s;
}
header .header-content .service-title {
  margin-left: 1rem;
  font-size: 1.25rem;
  color: #164A93;
}
header .header-content .service-title.desktop {
  display: none;
}
@media (min-width: 768px) {
  header .header-content .service-title.desktop {
    display: block;
    margin-top: 0.75rem;
  }
}
@media (min-width: 576px) {
  header .header-content .service-title {
    font-size: 1.438rem;
    margin-right: 2rem;
  }
}
header .header-content .purchase,
header .header-content .cart {
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  header .header-content .purchase,
  header .header-content .cart {
    font-size: 1rem;
  }
}
header .header-content .purchase a,
header .header-content .cart a {
  color: #6C7484;
}
header .header-content .purchase a::before,
header .header-content .cart a::before {
  content: url("../../images/svg/add.svg");
  vertical-align: sub;
  margin-right: 0.5rem;
}
header .header-content .purchase.cart a::before,
header .header-content .cart.cart a::before {
  content: url("../../images/svg/cart.svg");
}

.breadcrumb {
  display: flex;
  justify-content: flex-start;
  background-color: #FAFAFA;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .breadcrumb {
    justify-content: center;
  }
}
.breadcrumb ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0.25rem 0 0;
  width: 100%;
  min-width: 680px;
  max-width: 1400px;
  height: 80px;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}
.breadcrumb ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.breadcrumb ul li:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  margin-bottom: 0.25rem;
  background: #C3C3C3;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.breadcrumb ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #C3C3C3;
}
.breadcrumb ul li:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #C3C3C3;
  position: absolute;
  top: 22%;
  right: 50%;
}
.breadcrumb ul li:first-child::after {
  content: none;
}
.breadcrumb ul li.active a {
  color: #164A93;
}
.breadcrumb ul li.active:before {
  background-color: #164A93;
}
.breadcrumb ul li.active + .active::after {
  background-color: #164A93;
  right: 50%;
}
.breadcrumb.step3 ul {
  margin: 0.25rem 0 0 -10rem;
}
@media (min-width: 576px) {
  .breadcrumb.step3 ul {
    margin-left: 0;
  }
}
.breadcrumb.step4 ul {
  margin: 0.25rem 0 0 -18rem;
}
@media (min-width: 576px) {
  .breadcrumb.step4 ul {
    margin-left: 0;
  }
}
.breadcrumb.step5 ul {
  margin: 0.25rem 0 0 -23rem;
}
@media (min-width: 576px) {
  .breadcrumb.step5 ul {
    margin-left: 0;
  }
}

footer {
  margin-top: auto;
}
footer .footer-links {
  background-color: #164A93;
}
footer .footer-links ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80%;
  padding: 0.75rem;
  justify-content: space-around;
}
footer .footer-links ul li {
  list-style: none;
  font-size: 0.75rem;
  margin: 0.5rem 0;
}
footer .footer-links ul li a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  footer .footer-links ul {
    flex-direction: row;
  }
  footer .footer-links ul li {
    margin: 0;
  }
}

.fevad-text {
  text-align: center;
  margin: 0.75rem 1rem;
}
.fevad-text img {
  display: block;
  margin: 0.25rem auto;
}
@media (min-width: 768px) {
  .fevad-text img {
    display: inline;
    vertical-align: middle;
    margin: 0 0.25rem;
  }
}

.row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .row {
    flex-direction: row;
  }
}
.row.partOne, .row.formGift {
  width: 100%;
}
@media (min-width: 992px) {
  .row.partOne, .row.formGift {
    flex-direction: row;
  }
  .row.partOne > div, .row.partOne > aside, .row.formGift > div, .row.formGift > aside {
    width: 50%;
  }
}
.row.partOne > aside, .row.formGift > aside {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  background: rgb(0, 0, 0);
  background: linear-gradient(72deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);
}
@media (min-width: 992px) {
  .row.partOne > aside, .row.formGift > aside {
    flex-direction: column;
  }
}
.row.partOne > aside img.gift, .row.formGift > aside img.gift {
  width: 75%;
  align-self: flex-end;
}
.row.partOne > aside h2, .row.formGift > aside h2 {
  margin-top: 10%;
  margin-bottom: 5%;
  width: 100%;
  font-weight: 400;
  font-size: 1.875rem;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 768px) {
  .row.partOne > aside h2, .row.formGift > aside h2 {
    width: 100%;
    font-size: 2.25rem;
    margin-top: 5%;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .row.partOne > aside h2, .row.formGift > aside h2 {
    width: 65%;
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .row.partOne > aside h2, .row.formGift > aside h2 {
    font-size: 2.25rem;
  }
}
.row.partOne > aside h2 strong, .row.formGift > aside h2 strong {
  display: block;
  font-weight: 600;
}
.row.partOne > aside h2 .logo, .row.formGift > aside h2 .logo {
  display: none;
}
@media (min-width: 992px) {
  .row.partOne > aside h2 .logo, .row.formGift > aside h2 .logo {
    display: inline;
    margin: 0.75rem;
  }
}
.row.partOne > aside .badge, .row.formGift > aside .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: absolute;
  left: 8%;
  top: 3rem;
  width: 150px;
  height: 150px;
  padding: 0.5rem;
  background-color: #2AC8CB;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.row.partOne > aside .badge p, .row.formGift > aside .badge p {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}
.row.partOne > aside .badge p strong, .row.formGift > aside .badge p strong {
  display: block;
  font-size: 1.675rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .row.partOne > aside .badge, .row.formGift > aside .badge {
    width: 183px;
    height: 183px;
  }
  .row.partOne > aside .badge p, .row.formGift > aside .badge p {
    font-size: 1rem;
  }
  .row.partOne > aside .badge p strong, .row.formGift > aside .badge p strong {
    font-size: 1.85rem;
  }
}
@media (min-width: 992px) {
  .row.partOne > aside .badge, .row.formGift > aside .badge {
    right: 4%;
    left: auto;
    top: 5%;
    width: 183px;
    height: 183px;
  }
  .row.partOne > aside .badge p, .row.formGift > aside .badge p {
    font-size: 1rem;
  }
  .row.partOne > aside .badge p strong, .row.formGift > aside .badge p strong {
    font-size: 1.85rem;
  }
}
.row.partOne > aside .gift-container, .row.formGift > aside .gift-container {
  text-align: center;
  margin-top: 9rem;
}
@media (min-width: 576px) {
  .row.partOne > aside .gift-container, .row.formGift > aside .gift-container {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .row.partOne > aside .gift-container, .row.formGift > aside .gift-container {
    margin-top: 1.5rem;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .row.partOne > aside .gift-container .logo, .row.formGift > aside .gift-container .logo {
    display: none;
  }
}
.row.partOne > div:nth-child(2), .row.formGift > div:nth-child(2) {
  box-sizing: border-box;
  padding: 2px 3%;
}
.row.partOne > div:nth-child(2) h3, .row.formGift > div:nth-child(2) h3 {
  font-weight: 400;
  color: #164A93;
  font-size: 1.275rem;
}
.row.partOne > div:nth-child(2) h3 span, .row.formGift > div:nth-child(2) h3 span {
  display: block;
  font-style: italic;
}
@media (min-width: 768px) {
  .row.partOne > div:nth-child(2) h3, .row.formGift > div:nth-child(2) h3 {
    font-size: 2.25rem;
    flex-direction: row;
    margin-bottom: 1rem;
  }
}
.row.partOne > div:nth-child(2) p, .row.formGift > div:nth-child(2) p {
  font-size: 1.15rem;
}
.row.partOne > div:nth-child(2) form h4, .row.formGift > div:nth-child(2) form h4 {
  font-weight: 600;
  margin-bottom: 2rem;
}
.row.partOne > div:nth-child(2) form .colorChoice, .row.formGift > div:nth-child(2) form .colorChoice {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  justify-content: flex-start;
  padding-left: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .row.partOne > div:nth-child(2) form .colorChoice, .row.formGift > div:nth-child(2) form .colorChoice {
    flex-direction: row;
    margin-bottom: 1rem;
  }
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow {
  position: relative;
  margin-bottom: 2.25rem;
  margin-right: 6rem;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow:last-child, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow:last-child {
  margin: 0;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow label, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow label {
  font-weight: 600;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow label::before, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow label::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.5rem;
  left: -3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow label.color1::before, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow label.color1::before {
  background-color: #FEF5E1;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow label.color2::before, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow label.color2::before {
  background-color: #2C3D5A;
}
.row.partOne > div:nth-child(2) form .colorChoice .colorChoiceRow label.color3::before, .row.formGift > div:nth-child(2) form .colorChoice .colorChoiceRow label.color3::before {
  background-color: black;
}
.row.partOne > div:nth-child(2) .btn, .row.formGift > div:nth-child(2) .btn {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0 0 0;
}
@media (min-width: 576px) {
  .row.partOne > div:nth-child(2) .btn, .row.formGift > div:nth-child(2) .btn {
    max-width: 310px;
    margin: 0;
  }
}
.row.partOne.no-choice, .row.formGift.no-choice {
  gap: 1.5rem;
}
.row.partOne.no-choice > aside, .row.formGift.no-choice > aside {
  background: rgb(0, 0, 0);
  background: linear-gradient(75deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 85%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
  border-radius: 0 0 1.5rem 1.5rem;
  -webkit-border-radius: 0 0 1.5rem 1.5rem;
  -moz-border-radius: 0 0 1.5rem 1.5rem;
  -ms-border-radius: 0 0 1.5rem 1.5rem;
  -o-border-radius: 0 0 1.5rem 1.5rem;
}
.row.partOne.no-choice > aside .gift-container, .row.formGift.no-choice > aside .gift-container {
  margin-top: 8vh;
  text-align: center;
}
.row.partOne.no-choice > aside .gift-container .tablet, .row.formGift.no-choice > aside .gift-container .tablet {
  margin: 1rem 0;
}
.row.partOne.no-choice > aside h2, .row.formGift.no-choice > aside h2 {
  margin: 0 auto 10%;
  font-weight: 300;
}
.row.partOne.no-choice > aside h2 strong, .row.formGift.no-choice > aside h2 strong {
  display: inline;
  font-weight: 700;
}
.row.partOne.no-choice > aside h2 span, .row.formGift.no-choice > aside h2 span {
  color: #2AC8CB;
}
.row.partOne.no-choice > aside .badge, .row.formGift.no-choice > aside .badge {
  top: 1vh;
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .row.partOne.no-choice > aside .gift-container, .row.formGift.no-choice > aside .gift-container {
    margin-top: 5vh;
    padding: 2rem;
  }
  .row.partOne.no-choice > aside .gift-container .gift, .row.formGift.no-choice > aside .gift-container .gift {
    max-width: 448px;
  }
  .row.partOne.no-choice > aside .badge, .row.formGift.no-choice > aside .badge {
    top: 3vh;
    right: 5%;
  }
  .row.partOne.no-choice > aside h2, .row.formGift.no-choice > aside h2 {
    margin-bottom: 5%;
  }
}
@media (min-width: 992px) {
  .row.partOne.no-choice > aside, .row.formGift.no-choice > aside {
    border-radius: 0 0 1.5rem 0;
    -webkit-border-radius: 0 0 1.5rem 0;
    -moz-border-radius: 0 0 1.5rem 0;
    -ms-border-radius: 0 0 1.5rem 0;
    -o-border-radius: 0 0 1.5rem 0;
  }
  .row.partOne.no-choice > aside .gift-container, .row.formGift.no-choice > aside .gift-container {
    margin-top: 0;
    text-align: center;
  }
  .row.partOne.no-choice > aside .badge, .row.formGift.no-choice > aside .badge {
    top: 25%;
    right: -7%;
  }
  .row.partOne.no-choice > aside h2, .row.formGift.no-choice > aside h2 {
    margin: 10% auto 0;
  }
}
.row.partOne.no-choice.gift-bis > aside, .row.formGift.no-choice.gift-bis > aside {
  background: #1EC2F2;
  background: linear-gradient(75deg, #1EC2F2 0%, #1EC2F2 85%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
}
@media (min-width: 992px) {
  .row.partOne.no-choice.gift-bis > aside .badge, .row.formGift.no-choice.gift-bis > aside .badge {
    right: -2vh;
    top: 8vh;
    left: auto;
  }
}
.row.partOne.no-choice > div:nth-child(2), .row.formGift.no-choice > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem 1.5rem;
}
.row.partOne.no-choice > div:nth-child(2) h3, .row.partOne.no-choice > div:nth-child(2) p, .row.formGift.no-choice > div:nth-child(2) h3, .row.formGift.no-choice > div:nth-child(2) p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .row.partOne.no-choice > div:nth-child(2) p, .row.formGift.no-choice > div:nth-child(2) p {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .row.partOne.no-choice > div:nth-child(2), .row.formGift.no-choice > div:nth-child(2) {
    padding-left: 5.5rem;
  }
}
.row.partTwo {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .row.partTwo {
    flex-direction: row;
  }
}
.row.partTwo > aside:first-child {
  display: flex;
  width: 100%;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}
.row.partTwo > aside:first-child p {
  line-height: 1.5;
  width: 80%;
  color: #000;
}
@media (min-width: 992px) {
  .row.partTwo > aside:first-child {
    width: 50%;
    background-color: #000;
    padding: 0;
  }
  .row.partTwo > aside:first-child p {
    color: #fff;
    width: 55%;
  }
}
.row.partTwo > aside:nth-child(2) {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 7rem;
  background-color: #000;
}
@media (min-width: 768px) {
  .row.partTwo > aside:nth-child(2) {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .row.partTwo > aside:nth-child(2) {
    margin-top: 0;
    width: 50%;
    background-color: #fff;
  }
}
.row.partTwo > aside:nth-child(2) figure {
  position: relative;
  margin: 0;
}
.row.partTwo > aside:nth-child(2) figure img {
  margin-top: -4rem;
  margin-bottom: -4px;
  width: 100%;
}
@media (min-width: 992px) {
  .row.partTwo > aside:nth-child(2) figure img {
    margin-top: 0;
  }
}
.row.partTwo > aside:nth-child(2) figure figcaption {
  position: absolute;
  right: 10%;
  bottom: 15%;
  color: #fff;
  font-size: 1.25rem;
}
.row.partTwo > aside:nth-child(2) figure figcaption strong {
  display: block;
}
@media (min-width: 992px) {
  .row.partTwo > aside:nth-child(2) figure figcaption {
    right: 15%;
    color: #000;
  }
}
@media (min-width: 992px) {
  .row.partTwo > aside:nth-child(2) {
    width: 50%;
  }
}
.row.partTwo.sdc-v2 {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .row.partTwo.sdc-v2 {
    flex-direction: row-reverse;
    padding: 0;
  }
}
.row.partTwo.sdc-v2 aside {
  background: #000;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}
.row.partTwo.sdc-v2 aside h3, .row.partTwo.sdc-v2 aside ul {
  width: 75%;
  color: #F0F0F0;
}
.row.partTwo.sdc-v2 aside h3 {
  font-weight: 400;
  font-size: 1.5rem;
  color: #F0F0F0;
  margin: 0 0 1rem;
}
.row.partTwo.sdc-v2 aside ul li {
  margin: 0.75rem 0;
}
@media (min-width: 576px) {
  .row.partTwo.sdc-v2 aside h3 {
    font-weight: 400;
    font-size: 2.25rem;
  }
}
.row.partTwo.sdc-v2 aside:nth-child(2) {
  background-color: transparent;
  max-width: 757px;
  margin: auto;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}
.row.partTwo.sdc-v2 aside:nth-child(2) figure {
  overflow: hidden;
}
.row.partTwo.sdc-v2 aside:nth-child(2) figure img {
  width: 120%;
  max-width: 757px;
}
@media (min-width: 768px) {
  .row.partTwo.sdc-v2 aside:nth-child(2) figure {
    overflow: hidden;
  }
  .row.partTwo.sdc-v2 aside:nth-child(2) figure img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .row.partTwo.sdc-v2 aside {
    border-radius: 1.5rem 0 0 1.5rem;
    -webkit-border-radius: 1.5rem 0 0 1.5rem;
    -moz-border-radius: 1.5rem 0 0 1.5rem;
    -ms-border-radius: 1.5rem 0 0 1.5rem;
    -o-border-radius: 1.5rem 0 0 1.5rem;
  }
  .row.partTwo.sdc-v2 aside:nth-child(2) {
    border-radius: 0 1.5rem 1.5rem 0;
    -webkit-border-radius: 0 1.5rem 1.5rem 0;
    -moz-border-radius: 0 1.5rem 1.5rem 0;
    -ms-border-radius: 0 1.5rem 1.5rem 0;
    -o-border-radius: 0 1.5rem 1.5rem 0;
  }
  .row.partTwo.sdc-v2 aside:nth-child(2) figure {
    overflow: hidden;
  }
  .row.partTwo.sdc-v2 aside:nth-child(2) figure img {
    margin-left: -2rem;
    width: 120%;
  }
}
.row.partTwo.sdc-v3 {
  justify-content: center;
  align-items: center;
}
.row.partTwo.sdc-v3 figure {
  box-sizing: border-box;
  padding: 2rem 0;
  margin: auto;
}
.row.partTwo.sdc-v3 figure img {
  width: 100%;
}
.row.partTwo.sdc-v3 figure img.img-desk {
  display: none;
}
@media (min-width: 576px) {
  .row.partTwo.sdc-v3 figure img.img-desk {
    display: flex;
  }
}
.row.partTwo.sdc-v3 figure img.img-mob {
  display: flex;
}
@media (min-width: 576px) {
  .row.partTwo.sdc-v3 figure img.img-mob {
    display: none;
  }
}
.row.partThree {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
  background-color: #000;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  overflow: hidden;
}
@media (min-width: 390px) {
  .row.partThree {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);
  }
}
@media (min-width: 576px) {
  .row.partThree {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 90%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%);
  }
}
@media (min-width: 768px) {
  .row.partThree {
    background: rgb(0, 0, 0);
  }
}
@media (min-width: 992px) {
  .row.partThree {
    overflow: visible;
    height: 500px;
    background: rgb(0, 0, 0);
  }
}
.row.partThree:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 0;
  border-width: 320px 350px 310px 350px;
  border-color: transparent transparent #fff transparent;
  transform: translate(-50%, -28%);
  -webkit-transform: translate(-50%, -28%);
  -moz-transform: translate(-50%, -28%);
  -ms-transform: translate(-50%, -28%);
  -o-transform: translate(-50%, -28%);
}
@media (min-width: 576px) {
  .row.partThree:before {
    border-width: 390px 390px 375px 390px;
  }
}
@media (min-width: 768px) {
  .row.partThree:before {
    border-width: 580px 390px 420px 390px;
  }
}
@media (min-width: 992px) {
  .row.partThree:before {
    border-width: 0 370px 500px 370px;
    border-color: transparent transparent #fff transparent;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
  }
}
@media (min-width: 1200px) {
  .row.partThree:before {
    border-width: 0 390px 500px 390px;
  }
}
.row.partThree img {
  z-index: 2;
  margin-top: -0.55rem;
  width: 100%;
  max-width: 1122px;
}
@media (min-width: 576px) {
  .row.partThree img {
    margin-top: -1rem;
  }
}
@media (min-width: 768px) {
  .row.partThree img {
    margin-top: -1.4rem;
  }
}
@media (min-width: 992px) {
  .row.partThree img {
    margin-top: -4rem;
  }
}
@media (min-width: 1200px) {
  .row.partThree img {
    margin-top: -3rem;
  }
}
.row.partThree p {
  z-index: 3;
  text-align: center;
  width: 80%;
  margin-top: 1rem;
  color: #000;
}
.row.partThree p strong {
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .row.partThree p {
    width: 50%;
    margin-top: -3rem;
  }
}
@media (min-width: 768px) {
  .row.partThree p {
    width: 40%;
    margin-top: -6.5rem;
  }
}
@media (min-width: 992px) {
  .row.partThree p {
    z-index: 3;
    text-align: center;
    width: 25%;
    margin-top: -9rem;
    color: #000;
  }
}
.row.partThree.sdc-v2 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  background: #fff;
  height: auto;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.row.partThree.sdc-v2 ul {
  box-sizing: border-box;
  padding: 3rem 2rem;
  background-color: #000;
  width: 90%;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}
.row.partThree.sdc-v2 ul li {
  color: #fff;
  list-style: none;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.row.partThree.sdc-v2 ul li:last-child {
  margin-bottom: 0;
}
.row.partThree.sdc-v2 ul li strong {
  display: block;
  color: #164A93;
}
@media (min-width: 992px) {
  .row.partThree.sdc-v2 {
    flex-direction: row;
    justify-content: space-between;
  }
  .row.partThree.sdc-v2 ul {
    width: auto;
    padding: 0;
    background-color: transparent;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  .row.partThree.sdc-v2 ul li {
    position: relative;
    text-align: right;
    color: #6C7484;
  }
  .row.partThree.sdc-v2 ul li::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    z-index: 1;
    background-color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 5px;
  }
  .row.partThree.sdc-v2 ul li::after {
    content: "";
    z-index: 1;
    height: 1px;
    width: 55%;
    display: block;
    background-color: #000;
    position: absolute;
    top: 12px;
  }
  .row.partThree.sdc-v2 ul li strong {
    color: #6C7484;
    display: block;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .row.partThree.sdc-v2 ul li::before {
    right: -30%;
  }
  .row.partThree.sdc-v2 ul li::after {
    width: 25%;
    right: -30%;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .row.partThree.sdc-v2 ul li::before {
    right: -60%;
  }
  .row.partThree.sdc-v2 ul li::after {
    width: 55%;
    right: -60%;
  }
}
.row.partThree.sdc-v2::before {
  content: none;
}
.row.partThree.sdc-v2 figure {
  position: relative;
}
.row.partThree.sdc-v2 figure img {
  margin: 0;
}
.row.partThree.sdc-v2 figure figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  width: 100px;
  height: 100px;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: -5%;
  right: 10%;
}
.row.partThree.sdc-v2 figure figcaption strong {
  margin-left: 0.25rem;
}
.row.partThree.sdc-v3 {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  background: #fff;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
}
.row.partThree.sdc-v3::before {
  content: none;
}
.row.partThree.sdc-v3 aside {
  background-color: transparent;
  max-width: 681px;
  margin: auto;
  overflow: hidden;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}
.row.partThree.sdc-v3 aside figure {
  margin: 0;
}
.row.partThree.sdc-v3 aside figure img {
  width: 120%;
  max-width: 681px;
}
.row.partThree.sdc-v3 aside ul {
  padding: 0 0 0 6rem;
  display: block;
}
.row.partThree.sdc-v3 aside ul li {
  position: relative;
  list-style: none;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.row.partThree.sdc-v3 aside ul li::before {
  position: absolute;
  left: -4rem;
}
.row.partThree.sdc-v3 aside ul li strong {
  color: #6C7484;
  display: block;
}
.row.partThree.sdc-v3 aside ul li.video::before {
  content: url("../../images/svg/picto-video.svg");
}
.row.partThree.sdc-v3 aside ul li.internet::before {
  content: url("../../images/svg/picto-internet.svg");
}
.row.partThree.sdc-v3 aside ul li.meteo::before {
  content: url("../../images/svg/picto-meteo.svg");
}
.row.partThree.sdc-v3 aside ul li.cooking::before {
  content: url("../../images/svg/picto-cooking.svg");
}
.row.partThree.sdc-v3 aside ul li.films::before {
  content: url("../../images/svg/picto-film.svg");
}
.row.partThree.sdc-v3 aside ul li.photos::before {
  content: url("../../images/svg/picto-photo.svg");
}
.row.partThree.sdc-v3 aside ul li.email::before {
  content: url("../../images/svg/picto-email.svg");
}
@media (min-width: 768px) {
  .row.partThree.sdc-v3 {
    flex-direction: row;
    justify-content: flex-start;
  }
  .row.partThree.sdc-v3 aside {
    margin: 0;
    border-radius: 0 1.5rem 1.5rem 0;
    -webkit-border-radius: 0 1.5rem 1.5rem 0;
    -moz-border-radius: 0 1.5rem 1.5rem 0;
    -ms-border-radius: 0 1.5rem 1.5rem 0;
    -o-border-radius: 0 1.5rem 1.5rem 0;
  }
  .row.partThree.sdc-v3 aside figure img {
    margin: 0px 0 0 -25px;
  }
  .row.partThree.sdc-v3 aside ul li {
    margin-bottom: 1.5rem;
  }
}
.row.partFour {
  display: flex;
  background: #fff url("../../images/gift-action.jpg") no-repeat 0 0;
  background-size: 110%;
  overflow: hidden;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .row.partFour {
    flex-direction: row;
    background-size: auto;
    background-position: 500px top;
  }
}
.row.partFour aside {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100vw;
  height: 320px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 0 0 50% 50%;
  -moz-border-radius: 0 0 50% 50%;
  -ms-border-radius: 0 0 50% 50%;
  -o-border-radius: 0 0 50% 50%;
  padding: 2rem 1.5rem 0;
  margin: 54vw 0 0 0;
}
@media (min-width: 768px) {
  .row.partFour aside {
    width: 680px;
    height: 680px;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0 15% 10% 0;
    margin: -220px 0 30px -25px;
  }
}
@media (min-width: 992px) {
  .row.partFour aside {
    padding-right: 10%;
  }
}
@media (min-width: 1200px) {
  .row.partFour aside {
    padding-right: 5%;
  }
}
@media (min-width: 1200px) {
  .row.partFour aside {
    padding-right: 10%;
  }
}
.row.partFour h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  text-align: center;
}
.row.partFour h4 strong {
  font-weight: 700;
}
@media (min-width: 768px) {
  .row.partFour h4 {
    width: 60%;
    font-size: 2.25rem;
    text-align: left;
  }
}
.row.partFour p {
  font-weight: 400;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .row.partFour p {
    width: 60%;
    text-align: left;
  }
}
.row.partFive {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(-45deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
}
@media (min-width: 992px) {
  .row.partFive {
    background: #000;
    align-items: center;
  }
}
.row.partFive aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 992px) {
  .row.partFive aside {
    align-items: center;
    width: 50%;
  }
}
.row.partFive aside h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem 3rem;
  text-align: left;
  width: 60%;
}
.row.partFive aside h4 strong {
  font-weight: 700;
}
@media (min-width: 768px) {
  .row.partFive aside h4 {
    width: 50%;
    font-size: 2.25rem;
    text-align: left;
  }
}
.row.partFive aside p {
  width: 50%;
  margin: 0 0 0 3rem;
}
.row.partFive aside:nth-child(2) {
  justify-content: flex-end;
  align-items: center;
  padding-top: 8%;
}
.row.partFive aside:nth-child(2) img {
  z-index: 1;
  max-width: 80%;
}
@media (min-width: 992px) {
  .row.partFive aside:nth-child(2) {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .row.partFive aside:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 0;
    border-color: transparent transparent #fff transparent;
    border-width: 0 250px 280px 250px;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
  }
}
@media (min-width: 1200px) {
  .row.partFive aside:nth-child(2)::before {
    border-width: 0 280px 300px 280px;
  }
}
@media (min-width: 1400px) {
  .row.partFive aside:nth-child(2)::before {
    border-width: 0 300px 330px 300px;
  }
}
.row.partSix.formGift > aside {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  background: #000;
}
.row.partSix.formGift > aside .gift-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: 1rem;
}
.row.partSix.formGift > aside .gift-container img {
  max-width: 55%;
}
@media (min-width: 576px) {
  .row.partSix.formGift > aside .gift-container img {
    max-width: 35%;
  }
}
@media (min-width: 768px) {
  .row.partSix.formGift > aside .gift-container img {
    max-width: 30%;
  }
}
@media (min-width: 992px) {
  .row.partSix.formGift > aside .gift-container img {
    max-width: 40%;
  }
}
.row.partSix.formGift > aside + div {
  padding: 3rem 3%;
}
.row.partSix.formGift > aside + div h3 {
  font-size: 1.3755rem;
  margin-top: 0;
}
@media (min-width: 576px) {
  .row.partSix.formGift > aside + div h3 {
    font-size: 1.625rem;
  }
}
.row.partSix.formGift > aside + div h3 strong {
  display: block;
}
.row.partSix.formGift > aside + div h3 img {
  display: none;
}
@media (min-width: 992px) {
  .row.partSix.formGift > aside + div h3 img {
    display: block;
    margin-bottom: 0.75rem;
  }
}
.row.partSix.formGift.no-choice {
  margin: 3rem 0;
}
.row.partSix.formGift.no-choice > aside {
  background: #000;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.row.partSix.formGift.no-choice > aside + div h3 {
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .row.partSix.formGift.no-choice > aside {
    border-radius: 0 1.5rem 1.5rem 0;
    -webkit-border-radius: 0 1.5rem 1.5rem 0;
    -moz-border-radius: 0 1.5rem 1.5rem 0;
    -ms-border-radius: 0 1.5rem 1.5rem 0;
    -o-border-radius: 0 1.5rem 1.5rem 0;
  }
  .row.partSix.formGift.no-choice > aside + div h3 {
    font-size: 1.625rem;
  }
}
.row.partSix.formGift.sdc-v3 {
  flex-direction: column;
}
.row.partSix.formGift.sdc-v3 aside .gift-container .gift.tablet {
  margin: 0;
  max-width: 423px;
}
.row.partSix.formGift.sdc-v3 > div {
  padding-left: 3rem;
  padding-right: 5rem;
}
.row.partSix.formGift.sdc-v3 > div .btn {
  margin: 0;
}
@media (min-width: 768px) {
  .row.partSix.formGift.sdc-v3 {
    flex-direction: row-reverse;
  }
  .row.partSix.formGift.sdc-v3 aside {
    padding: 3rem;
    margin-right: 1rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
  }
  .row.partSix.formGift.sdc-v3 > div {
    padding: 1rem;
  }
  .row.partSix.formGift.sdc-v3 > div .btn {
    margin: 0;
  }
}

.top-banner {
  overflow: hidden;
  background-color: #FF3C68;
  padding: 0;
}
@media (min-width: 768px) {
  .top-banner {
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-image: linear-gradient(90deg, #FF3C68 1%, #FF3C68 60%, #FF8F3A 60%, #FF8F3A 100%);
  }
}
.top-banner.custom {
  background-color: #1EC2F2;
}
.top-banner > div {
  display: flex;
  flex-direction: column;
  background-size: 150%;
}
@media (min-width: 576px) {
  .top-banner > div {
    padding-bottom: 0;
    background-position: center 220px;
    background-size: 145%;
  }
}
@media (min-width: 768px) {
  .top-banner > div {
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    background-position: 380px 30%;
    background-size: 65%;
  }
}
@media (min-width: 992px) {
  .top-banner > div {
    background-position: 575px 30%;
    background-size: 55%;
  }
}
@media (min-width: 1200px) {
  .top-banner > div {
    background-position: 675px 35%;
  }
}
@media (min-width: 1400px) {
  .top-banner > div {
    background-position: 810px 35%;
    background-size: 42.5%;
  }
}
.top-banner > div div {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 768px) {
  .top-banner > div div {
    padding: 0 2rem;
  }
}
.top-banner > div div > a {
  display: flex;
}
.top-banner > div div img {
  max-width: 100%;
}
.top-banner > div div img.desk {
  display: none;
}
@media (min-width: 576px) {
  .top-banner > div div img.desk {
    display: block;
  }
}
@media (min-width: 576px) {
  .top-banner > div div img.mob {
    display: none;
  }
}
.top-banner > div div p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .top-banner > div div p {
    font-size: 0.9rem;
    width: 75%;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .top-banner > div div p {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .top-banner > div div p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .top-banner > div div p {
    font-size: 1.563em;
  }
}
.top-banner > div div p.main-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF457;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .top-banner > div div p.main-message {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }
}
.top-banner > div div p.main-message strong {
  font-size: 7rem;
}
@media (min-width: 768px) {
  .top-banner > div div p.main-message strong {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .top-banner > div div p.main-message strong {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .top-banner > div div p.main-message strong {
    font-size: 8rem;
  }
}
@media (min-width: 1400px) {
  .top-banner > div div p.main-message strong {
    font-size: 10rem;
  }
}
.top-banner > div div p.main-message span {
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 600;
  text-align: center;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .top-banner > div div p.main-message span {
    font-size: 1.75rem;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .top-banner > div div p.main-message span {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .top-banner > div div p.main-message span {
    font-size: 2.85rem;
  }
}
@media (min-width: 1400px) {
  .top-banner > div div p.main-message span {
    font-size: 3.75rem;
  }
}
.top-banner > div div p.main-message span span {
  display: block;
  font-size: 1.15em;
  margin: 0;
}
.top-banner > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}
.top-banner > div > div:nth-child(2) .logo {
  display: none;
}
@media (min-width: 768px) {
  .top-banner > div > div:nth-child(2) .logo {
    display: block;
  }
}
.top-banner > div > div:nth-child(2) p {
  font-size: 0.938rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  padding: 0 10%;
}
@media (min-width: 576px) {
  .top-banner > div > div:nth-child(2) p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .top-banner > div > div:nth-child(2) p {
    font-size: 1.25rem;
  }
}
.top-banner > div > div:nth-child(2) p strong {
  font-weight: 700;
}
.top-banner.tablette > div div:first-child > img.gift {
  rotate: 0deg;
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (min-width: 768px) {
  .top-banner.tablette > div div:first-child > img.gift {
    margin: 1rem auto;
  }
}
.top-banner.img-banner {
  background: none;
}
.top-banner.img-banner > div {
  padding: 0;
}
.top-banner.img-banner > div img {
  width: 100%;
}
.top-banner.img-banner > div img.desk {
  display: none;
}
@media (min-width: 576px) {
  .top-banner.img-banner > div img.desk {
    display: block;
  }
}
@media (min-width: 576px) {
  .top-banner.img-banner > div img.mob {
    display: none;
  }
}

.nav-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: #FAFAFA;
  position: sticky;
  position: -webkit-sticky;
  top: 90px;
  display: flex;
  color: #fff;
  margin-bottom: 2.75rem;
}
@media (min-width: 576px) {
  .nav-container {
    top: 100px;
  }
}
.nav-container ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0.75rem 0.5rem 1rem;
  min-width: 880px;
}
.nav-container ul li {
  list-style: none;
}
.nav-container ul li a {
  color: #6C7484;
  text-decoration: none;
  font-weight: 400;
}
.nav-container ul li a.active {
  font-weight: 700;
}
.nav-container ul li a span {
  height: 40px;
  width: 40px;
  background: #C3C3C3 url("../../images/svg/star.svg") no-repeat center center;
  margin: 0.25rem auto 0.5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.nav-container ul li.cat-selection a.active {
  color: #38ACF4;
}
.nav-container ul li.cat-selection span {
  background-color: #38ACF4;
  background-image: url("../../images/svg/star.svg");
}
.nav-container ul li.cat-actualite a.active {
  color: #E62D0C;
}
.nav-container ul li.cat-actualite span {
  background-color: #E62D0C;
  background-image: url("../../images/svg/news-paper.svg");
}
.nav-container ul li.cat-feminin a.active {
  color: #3DEB09;
}
.nav-container ul li.cat-feminin span {
  background-color: #3DEB09;
  background-image: url("../../images/svg/health.svg");
}
.nav-container ul li.cat-jeunesse a.active {
  color: #F87601;
}
.nav-container ul li.cat-jeunesse span {
  background-color: #F87601;
  background-image: url("../../images/svg/cap.svg");
}
.nav-container ul li.cat-loisirs a.active {
  color: #F70085;
}
.nav-container ul li.cat-loisirs span {
  background-color: #F70085;
  background-image: url("../../images/svg/smile.svg");
}
.nav-container ul li.cat-tv a.active {
  color: #8508C7;
}
.nav-container ul li.cat-tv span {
  background-color: #8508C7;
  background-image: url("../../images/svg/tv.svg");
}
.nav-container .search {
  box-sizing: border-box;
  border: 1px solid #CECFCF;
  border-radius: 5px;
  height: 46px;
  padding: 1rem 1rem 1rem 2.5rem;
  width: 95%;
  max-width: 320px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff url("../../images/svg/search.svg") no-repeat 10px center;
  margin-bottom: -23px;
}
.nav-container .search::placeholder {
  color: #CECFCF;
}
.nav-container .search:focus {
  outline: 2px solid #2AC8CB;
  border-color: #fff;
}

.nav-mob ul li {
  list-style: none;
}
.nav-mob ul li a {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  color: #6C7484;
  text-decoration: none;
  font-weight: 400;
}
.nav-mob ul li a.active {
  font-weight: 700;
}
.nav-mob ul li a span.picto {
  height: 40px;
  width: 40px;
  background: #C3C3C3 url("../../images/svg/star.svg") no-repeat center center;
  margin: 0.25rem 1rem 0.5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.nav-mob ul li.cat-selection a.active {
  color: #38ACF4;
}
.nav-mob ul li.cat-selection span.picto {
  background-color: #38ACF4;
  background-image: url("../../images/svg/star.svg");
}
.nav-mob ul li.cat-actualite a.active {
  color: #E62D0C;
}
.nav-mob ul li.cat-actualite span.picto {
  background-color: #E62D0C;
  background-image: url("../../images/svg/news-paper.svg");
}
.nav-mob ul li.cat-feminin a.active {
  color: #3DEB09;
}
.nav-mob ul li.cat-feminin span.picto {
  background-color: #3DEB09;
  background-image: url("../../images/svg/health.svg");
}
.nav-mob ul li.cat-jeunesse a.active {
  color: #F87601;
}
.nav-mob ul li.cat-jeunesse span.picto {
  background-color: #F87601;
  background-image: url("../../images/svg/cap.svg");
}
.nav-mob ul li.cat-loisirs a.active {
  color: #F70085;
}
.nav-mob ul li.cat-loisirs span.picto {
  background-color: #F70085;
  background-image: url("../../images/svg/smile.svg");
}
.nav-mob ul li.cat-tv a.active {
  color: #8508C7;
}
.nav-mob ul li.cat-tv span.picto {
  background-color: #8508C7;
  background-image: url("../../images/svg/tv.svg");
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.5rem;
  color: #2AC8CB;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .section-title {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-title span {
  font-size: 0;
  color: #6C7484;
  font-weight: 700;
}
.section-title span.free-delivery::before {
  content: url("../../images/svg/delivery.svg");
  margin-right: 0.75rem;
  vertical-align: text-top;
}
.section-title span.secured::before {
  content: url("../../images/svg/locker2.svg");
  margin-right: 0.75rem;
  vertical-align: text-top;
}
@media (min-width: 768px) {
  .section-title span {
    font-size: 1rem;
  }
}

.cat-subtitles {
  display: flex;
  padding: 1rem 1rem 1.5rem;
  margin: 0;
}
@media (min-width: 1400px) {
  .cat-subtitles {
    padding-left: 0;
  }
}
.cat-subtitles li {
  list-style: none;
  margin-right: 1rem;
  white-space: nowrap;
}
.cat-subtitles li:last-child {
  margin: 0;
}
.cat-subtitles li a {
  text-decoration: none;
  color: #2AC8CB;
  font-weight: 600;
  border: 2px solid #2AC8CB;
  padding: 0.25rem 1rem;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.cat-subtitles li a.active {
  background: #2AC8CB;
  color: #fff;
}

.list-mags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
  flex-flow: row wrap;
}
@media (min-width: 576px) {
  .list-mags {
    gap: 1.75rem;
  }
}
.list-mags .mag {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background-color: #FAFAFA;
  position: relative;
  width: 85%;
  max-width: 48vw;
  padding-bottom: 1rem;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
@media (min-width: 576px) {
  .list-mags .mag {
    max-width: 257px;
  }
}
@media (min-width: 992px) {
  .list-mags .mag {
    max-width: 227px;
  }
}
@media (min-width: 1200px) {
  .list-mags .mag {
    max-width: 217px;
  }
}
@media (min-width: 1400px) {
  .list-mags .mag {
    max-width: 257px;
  }
}
.list-mags .mag .mag-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  height: auto;
}
.list-mags .mag .mag-cover > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .list-mags .mag .mag-cover > a {
    pointer-events: auto;
  }
}
@media (min-width: 576px) {
  .list-mags .mag .mag-cover {
    min-height: 320px;
  }
}
@media (min-width: 992px) {
  .list-mags .mag .mag-cover {
    min-height: 290px;
  }
}
@media (min-width: 1200px) {
  .list-mags .mag .mag-cover {
    min-height: 280px;
  }
}
@media (min-width: 1400px) {
  .list-mags .mag .mag-cover {
    min-height: 310px;
  }
}
.list-mags .mag .mag-cover img {
  width: 100%;
  max-height: 100%;
}
.list-mags .mag .mag-cover .price {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2AC8CB;
  width: 100%;
  flex-shrink: 3;
  text-align: right;
}
.list-mags .mag .mag-cover .price.badge {
  background-color: #2AC8CB;
  color: #fff;
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #fff;
  box-sizing: border-box;
  text-transform: uppercase;
}
.list-mags .mag .mag-cover .price.badge span {
  font-size: 1.5rem;
}
.list-mags .mag .mag-cover .price.badge small {
  display: block;
  font-weight: normal;
}
@media (min-width: 576px) {
  .list-mags .mag .mag-cover .price.badge {
    top: 245px;
    right: auto;
    left: -1rem;
    padding: 0;
    height: 83px;
    width: 83px;
  }
  .list-mags .mag .mag-cover .price.badge span {
    font-size: 2rem;
  }
  .list-mags .mag .mag-cover .price.badge small {
    display: block;
    font-weight: normal;
  }
}
@media (min-width: 992px) {
  .list-mags .mag .mag-cover .price.badge {
    top: 215px;
  }
}
@media (min-width: 1200px) {
  .list-mags .mag .mag-cover .price.badge {
    top: 205px;
    left: -0.5rem;
  }
}
@media (min-width: 1400px) {
  .list-mags .mag .mag-cover .price.badge {
    top: 235px;
    left: -0.5rem;
  }
}
.list-mags .mag .mag-cover .price.percent {
  font-size: 1.75rem;
  flex-direction: row;
  font-weight: 400;
}
.list-mags .mag .mag-cover .price.percent sup {
  font-size: 1em;
  top: auto;
}
.list-mags .mag .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.75rem;
}
@media (min-width: 576px) {
  .list-mags .mag .row {
    flex-direction: row;
  }
  .list-mags .mag .row.column {
    flex-direction: column;
  }
}
.list-mags .mag .row h5 {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  padding-right: 0.5rem;
}
.list-mags .mag .row h5 a {
  flex-direction: column;
  text-decoration: none;
  color: #333434;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 35px;
}
.list-mags .mag .row h5 a .period {
  -webkit-line-clamp: unset;
  font-size: 0.75rem;
  font-weight: 400;
  width: 100%;
  text-align: left;
  min-height: 2.5rem;
  margin: 0.25rem 0 0.25rem;
  color: #6C7484;
}
@media (min-width: 576px) {
  .list-mags .mag .row h5 a .period {
    font-size: 0.875rem;
  }
}
.list-mags .mag .row h5 a .period .hs {
  display: block;
  margin-top: 0;
}
@media (min-width: 576px) {
  .list-mags .mag .row h5 {
    font-size: 1rem;
    line-height: 1.1;
  }
}
.list-mags .mag .row .price {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2AC8CB;
  width: 100%;
  flex-shrink: 3;
  text-align: right;
}
.list-mags .mag .row .price small {
  white-space: nowrap;
  line-height: 1;
}
@media (min-width: 576px) {
  .list-mags .mag .row .price {
    line-height: 1.1;
    text-align: right;
  }
  .list-mags .mag .row .price small {
    font-size: 65%;
    display: block;
  }
}
.list-mags .mag .row .price.badge {
  background-color: #2AC8CB;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #fff;
  box-sizing: border-box;
  text-transform: uppercase;
}
.list-mags .mag .row .price.badge span {
  font-size: 1.5rem;
}
.list-mags .mag .row .price.badge small {
  display: block;
  font-weight: normal;
}
@media (min-width: 576px) {
  .list-mags .mag .row .price.badge {
    top: 245px;
    right: auto;
    left: -1rem;
    padding: 0;
    height: 83px;
    width: 83px;
  }
  .list-mags .mag .row .price.badge span {
    font-size: 2rem;
  }
  .list-mags .mag .row .price.badge small {
    display: block;
    font-weight: normal;
  }
}
@media (min-width: 992px) {
  .list-mags .mag .row .price.badge {
    top: 215px;
  }
}
@media (min-width: 1200px) {
  .list-mags .mag .row .price.badge {
    top: 205px;
    left: -0.5rem;
  }
}
@media (min-width: 1400px) {
  .list-mags .mag .row .price.badge {
    top: 235px;
    left: -0.5rem;
  }
}
.list-mags .mag .row .price.percent {
  font-size: 1.75rem;
  flex-direction: row;
  font-weight: 400;
}
.list-mags .mag .row .price.percent sup {
  font-size: 1em;
  top: auto;
}
.list-mags .mag .row .price.kiosque, .list-mags .mag .row .price.promo {
  color: #6C7484;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .list-mags .mag .row .price.kiosque, .list-mags .mag .row .price.promo {
    font-size: 0.85rem;
  }
}
.list-mags .mag .row .price.offer {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.list-mags .mag .row .price.offer strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2AC8CB;
  font-size: 0.95rem;
  margin: 0.25rem 0;
}
@media (min-width: 576px) {
  .list-mags .mag .row .price.offer strong {
    font-size: 1.125rem;
  }
}
.list-mags .mag .row .price.offer strong span {
  font-size: 1.75rem;
  white-space: nowrap;
}
.list-mags .mag .row .price.offer strong span sup {
  font-size: 0.5em;
  top: -0.75em;
}
.list-mags .mag .row .price.offer small {
  font-weight: 400;
}
.list-mags .mag .row .price.offer.special strong {
  justify-content: flex-end;
}
.list-mags .mag .row .price.kiosque del {
  text-decoration: none;
  position: relative;
}
.list-mags .mag .row .price.kiosque del::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 1px;
  background-color: #6C7484;
  right: -5%;
  rotate: -7.5deg;
  top: 35%;
}
.list-mags .mag .row .price.promo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.75rem;
}
.list-mags .mag .row .price.promo sup {
  top: -0.3em;
}
@media (min-width: 576px) {
  .list-mags .mag .row .price.promo {
    font-size: 0.85rem;
  }
}
.list-mags .mag .mag-bottom {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}
.list-mags .mag .mag-bottom .btn {
  width: 100%;
}
.list-mags .mag .bottom-infos {
  width: 90%;
}
.list-mags .mag .bottom-infos p {
  font-size: 0.75rem;
  width: 100%;
  text-align: left;
}
.list-mags .mag .bottom-infos p.about {
  margin: 0 0 1rem;
}
.list-mags .mag .bottom-infos p.about a {
  color: #6C7484;
}
@media (min-width: 992px) {
  .list-mags .mag .bottom-infos p {
    font-size: 0.875rem;
  }
}
.list-mags .mag .btn {
  max-width: none;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .light-modal-body .list-mags .mag .row .price.offer strong {
    font-size: 0.8rem;
  }
  .light-modal-body .list-mags .mag .row .price.offer strong span {
    font-size: 1.5rem;
  }
}

#reinsurance {
  background-color: #FAFAFA;
  padding: 1rem 0;
}
#reinsurance h3 {
  color: #2AC8CB;
  font-weight: 300;
  text-align: center;
  font-size: 2.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  margin-top: 0;
  border-bottom: 1px solid #F0F0F0;
}
#reinsurance ul {
  display: flex;
  padding: 0;
  justify-content: space-around;
  min-width: 900px;
}
#reinsurance ul li {
  color: #2AC8CB;
  list-style: none;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
#reinsurance ul li:before {
  display: block;
  margin-bottom: 0.75rem;
}
#reinsurance ul li.numeric::before {
  content: url("../../images/reinsurance/picto-edition.svg");
}
#reinsurance ul li.change::before {
  content: url("../../images/reinsurance/picto-changement.svg");
}
#reinsurance ul li.prices::before {
  content: url("../../images/reinsurance/picto-tarifs.svg");
}
#reinsurance ul li.delivery::before {
  content: url("../../images/reinsurance/picto-camion.svg");
}
#reinsurance ul li.paiment::before {
  content: url("../../images/reinsurance/picto-paiement.svg");
}

#general-mentions {
  padding: 1rem;
}
#general-mentions div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
}
#general-mentions div h4 {
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0.25rem 0;
  width: 30%;
}
#general-mentions div h4 img {
  margin-top: 0.75rem;
  display: block;
}
#general-mentions div div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: unset;
}
#general-mentions div div p.bottom-mentions {
  margin: 0;
  padding: 0 0 0 0.25rem;
}
#general-mentions div div p.bottom-mentions a {
  color: #6C7484;
}

#ui-id-1, #ui-id-2 {
  border: 2px solid #2AC8CB;
  border-radius: 0 0 0.5rem 0.5rem;
  -webkit-border-radius: 0 0 0.5rem 0.5rem;
  -moz-border-radius: 0 0 0.5rem 0.5rem;
  -ms-border-radius: 0 0 0.5rem 0.5rem;
  -o-border-radius: 0 0 0.5rem 0.5rem;
  border-top-color: #F0F0F0;
  box-shadow: 0 10px 10px 3px rgba(30, 30, 30, 0.5);
}
#ui-id-1 li:nth-child(even), #ui-id-2 li:nth-child(even) {
  background-color: #F0F0F0;
}
#ui-id-1 li:last-child, #ui-id-2 li:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
  -webkit-border-radius: 0 0 0.5rem 0.5rem;
  -moz-border-radius: 0 0 0.5rem 0.5rem;
  -ms-border-radius: 0 0 0.5rem 0.5rem;
  -o-border-radius: 0 0 0.5rem 0.5rem;
}
#ui-id-1 li:last-child a, #ui-id-2 li:last-child a {
  border-radius: 0 0 0.5rem 0.5rem;
  -webkit-border-radius: 0 0 0.5rem 0.5rem;
  -moz-border-radius: 0 0 0.5rem 0.5rem;
  -ms-border-radius: 0 0 0.5rem 0.5rem;
  -o-border-radius: 0 0 0.5rem 0.5rem;
}
#ui-id-1 li a, #ui-id-2 li a {
  padding: 0.5rem;
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-decoration: none;
  color: #333434;
}
#ui-id-1 li a:hover, #ui-id-1 li a:focus, #ui-id-2 li a:hover, #ui-id-2 li a:focus {
  background-color: #164A93;
  color: #fff;
  border-color: #164A93;
}

.light-modal .light-modal-content {
  width: 1010px;
  background-color: #fff;
  color: #6C7484;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.light-modal .light-modal-content .light-modal-header {
  background-color: rgba(255, 255, 255, 0);
  padding: 1.25rem 0.75rem;
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}
.light-modal .light-modal-content .light-modal-header .light-modal-close-icon {
  background-color: #6C7484;
  width: 20px;
  height: 20px;
  top: 0.75rem;
  right: 1rem;
  padding: 0;
  text-align: center;
}
.light-modal .light-modal-content .light-modal-footer {
  padding: 0.5rem 0.5rem;
  background-color: transparent;
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}
.light-modal .light-modal-content .light-modal-body {
  max-height: none;
  padding: 1rem;
}
.light-modal .light-modal-content .mag-infos {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding: 0;
}
@media (min-width: 768px) {
  .light-modal .light-modal-content .mag-infos {
    flex-direction: row;
    gap: 1rem;
    padding: 0 2rem;
  }
}
.light-modal .light-modal-content .mag-infos .cover {
  position: relative;
  width: 100%;
  max-width: 275px;
  margin: auto;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .light-modal .light-modal-content .mag-infos .cover {
    width: 40%;
    flex-direction: row;
    gap: 1rem;
  }
}
.light-modal .light-modal-content .mag-infos .cover img {
  width: 100%;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .cover img {
    margin-bottom: 0;
  }
}
.light-modal .light-modal-content .mag-infos .cover .badge {
  background-color: #2AC8CB;
  color: #fff;
  position: absolute;
  bottom: 10%;
  right: -2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 5px #164A93;
  box-sizing: border-box;
  text-transform: uppercase;
}
.light-modal .light-modal-content .mag-infos .cover .badge.special {
  bottom: 22%;
}
.light-modal .light-modal-content .mag-infos .cover .badge span {
  font-size: 1.25rem;
}
.light-modal .light-modal-content .mag-infos .cover .badge span.percent {
  font-size: 2.25rem;
}
.light-modal .light-modal-content .mag-infos .cover .badge span sup {
  top: 0;
  font-size: 1em;
}
.light-modal .light-modal-content .mag-infos .cover .badge small {
  display: block;
  font-weight: normal;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .cover .badge {
    padding: 0;
  }
  .light-modal .light-modal-content .mag-infos .cover .badge small {
    display: block;
    font-weight: normal;
  }
}
.light-modal .light-modal-content .mag-infos .cover .browse {
  text-align: left;
  margin: 0 auto 1rem;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .cover .browse {
    max-width: 275px;
    margin: 0.75rem auto;
  }
}
.light-modal .light-modal-content .mag-infos .cover .browse a {
  color: #2AC8CB;
}
.light-modal .light-modal-content .mag-infos .cover .browse a > img {
  margin: 0 0.5rem 0 0;
  width: 2rem;
}
.light-modal .light-modal-content .mag-infos .infos {
  width: 100%;
}
@media (min-width: 768px) {
  .light-modal .light-modal-content .mag-infos .infos {
    width: 60%;
  }
}
.light-modal .light-modal-content .mag-infos .infos .top-infos {
  margin-bottom: 1.25rem;
  width: 100%;
}
.light-modal .light-modal-content .mag-infos .infos .top-infos h3,
.light-modal .light-modal-content .mag-infos .infos .top-infos .hashtags {
  color: #333434;
}
.light-modal .light-modal-content .mag-infos .infos .top-infos h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}
.light-modal .light-modal-content .mag-infos .infos .top-infos .period {
  margin: 0.5rem 0 0;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #F0F0F0;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .infos .price-infos {
    margin-bottom: 2rem;
  }
}
.light-modal .light-modal-content .mag-infos .infos .price-infos .price {
  color: #2AC8CB;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 1rem 0 0;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .infos .price-infos .price {
    flex-direction: row;
    justify-content: space-between;
  }
}
.light-modal .light-modal-content .mag-infos .infos .price-infos .price sup {
  font-size: 60%;
  top: -0.55em;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos .price span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos .price small {
  font-size: 60%;
  font-weight: 400;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos .btn {
  margin: 1.25rem auto 0;
  width: 100%;
  max-width: 375px;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag-infos .infos .price-infos .btn {
    max-width: 200px;
    margin: 1rem 0 0 0;
  }
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque {
  justify-content: flex-end;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo {
  padding-bottom: 1rem;
  border-bottom: 1px solid #F0F0F0;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque, .light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo {
  color: #6C7484;
  font-weight: 400;
  font-size: 1rem;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque del, .light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo del {
  text-decoration: none;
  position: relative;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque del::before, .light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo del::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 1px;
  background-color: #6C7484;
  right: -5%;
  rotate: -7.5deg;
  top: 50%;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque span, .light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo span {
  display: inline;
  font-size: 1.15em;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.kiosque sup, .light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.promo sup {
  top: -0.5em;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.offer {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.offer span {
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1;
  text-align: right;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .price.offer span span {
  font-size: 0.5em;
  font-weight: 400;
}
.light-modal .light-modal-content .mag-infos .infos .price-infos.other-prices .btn {
  align-self: flex-end;
}
.light-modal .light-modal-content .mag-infos .infos .description p {
  line-height: 1.6;
}
.light-modal .light-modal-content div h4 {
  font-weight: 700;
  padding: 0 0 0.5rem;
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content div h4 {
    font-weight: 300;
    font-size: 1.5rem;
    padding: 0;
  }
}
.light-modal .light-modal-content div .list-mags {
  gap: 0.75rem;
}
.light-modal .light-modal-content .mag {
  width: 47%;
  max-width: 155px;
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag {
    max-width: 315px;
  }
}
@media (min-width: 768px) {
  .light-modal .light-modal-content .mag {
    max-width: 320px;
  }
}
@media (min-width: 1010px) {
  .light-modal .light-modal-content .mag {
    max-width: 215px;
  }
}
@media (min-width: 576px) {
  .light-modal .light-modal-content .mag .mag-cover {
    height: 315px;
  }
}
@media (min-width: 768px) {
  .light-modal .light-modal-content .mag .mag-cover {
    height: 320px;
  }
}
@media (min-width: 1010px) {
  .light-modal .light-modal-content .mag .mag-cover {
    height: 260px;
  }
}
.light-modal .light-modal-content .mag .mag-cover img {
  width: 100%;
}
.light-modal .small-modal {
  max-width: 660px;
}
.light-modal .small-modal .light-modal-body {
  display: flex;
  flex-direction: column;
}
.light-modal .small-modal .light-modal-body .title-added {
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  margin: 1rem auto;
}
.light-modal .small-modal .light-modal-body .title-added + p {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin: auto;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 1rem;
  width: 100%;
}
@media (min-width: 576px) {
  .light-modal .small-modal .light-modal-body .title-added + p {
    width: 80%;
  }
}
.light-modal .small-modal .light-modal-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-bottom: 0.75rem;
}
.light-modal .small-modal .light-modal-footer .btn {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0.75rem;
}
@media (min-width: 576px) {
  .light-modal .small-modal .light-modal-footer {
    flex-direction: row;
  }
  .light-modal .small-modal .light-modal-footer .btn {
    width: auto;
  }
}

.popin-image {
  cursor: pointer;
  height: auto;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s, opacity 0.5s ease;
}

.popin-draw {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  transform: translate(-50%, -50%) scale(0.7);
  width: 95%;
  max-width: 600px;
  max-height: 90vh; /* Pour ne pas dépasser la fenêtre */
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  border-radius: 0.5rem;
  overflow-y: auto; /* Rendre le contenu défilable */
  /*- PopinForm -*/
}
.popin-draw .popin-top {
  display: flex;
  background-color: #FF8F3A;
  padding: 0;
}
.popin-draw .popin-top img {
  width: 100%;
}
.popin-draw .popin-top img.desk {
  display: none;
}
@media (min-width: 576px) {
  .popin-draw .popin-top img.desk {
    display: block;
  }
}
@media (min-width: 576px) {
  .popin-draw .popin-top img.mob {
    display: none;
  }
}
.popin-draw .popin-main {
  padding: 0 1rem 1rem;
}
.popin-draw p {
  font-size: 0.75rem;
  font-style: italic;
}
.popin-draw p.mention {
  text-align: center;
  font-style: normal;
  margin-bottom: 0;
  font-size: 0.675rem;
}
.popin-draw p.mention a {
  color: #6C7484; /* Assurez-vous de définir une couleur ou une variable CSS pour $dark */
}
.popin-draw .popin-title {
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 300;
}
.popin-draw h2 {
  margin-top: 0;
}
.popin-draw .close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: 100;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
}
.popin-draw.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.popin-draw .form-container {
  margin: 0 auto;
}
.popin-draw .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1rem;
  justify-content: center;
  gap: 1rem;
}
.popin-draw .form-row.valid-row {
  margin: 1.75rem auto;
}
@media (min-width: 564px) {
  .popin-draw .form-row {
    margin-bottom: 1rem;
  }
}
.popin-draw .form-group {
  flex: 1;
  padding: 0;
  margin-bottom: 0;
}
.popin-draw label {
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
  font-style: italic;
  font-weight: 600; /* Assurez-vous de définir une valeur ou une variable CSS pour $semi-bold */
  font-size: 0.875rem;
}
.popin-draw label.error {
  color: #c83333;
  font-size: 0.75rem;
  margin: 0.75rem 0 0;
}
.popin-draw input, .popin-draw select {
  width: 100%;
  height: 45px;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
.popin-draw button {
  padding: 0.5rem 2.5rem;
  border: none;
  font-size: 1.5rem;
  font-weight: 600; /* Assurez-vous de définir une valeur ou une variable CSS pour $semi-bold */
  font-family: "omnes-pro", sans-serif;
  background-color: #FF3C68;
  color: white;
  border-radius: 15rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.popin-draw .confirm-draw {
  text-align: center;
  margin: 1rem auto 2rem;
}
.popin-draw .confirm-draw > img {
  width: 50px;
}
.popin-draw .confirm-draw p {
  width: 80%;
  margin: 1rem auto;
  font-size: 1.25rem;
  font-style: normal;
}
.popin-draw .confirm-draw .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2.5rem;
  margin: 0 auto;
  border: none;
  font-size: 1.5rem;
  font-weight: 600; /* Assurez-vous de définir une valeur ou une variable CSS pour $semi-bold */
  font-family: "omnes-pro", sans-serif;
  background-color: #FF3C68;
  color: white;
  border-radius: 15rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.popin-draw .confirm-draw .btn:active {
  background-color: #164A93;
}
@media (max-width: 564px) {
  .popin-draw .form-row {
    flex-direction: column;
  }
  .popin-draw .form-group {
    padding: 0;
  }
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.hidden {
  display: none;
}

.cart-content, .confirm-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cart-content .item, .confirm-list .item {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #FAFAFA;
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .cart-content .item, .confirm-list .item {
    flex-direction: row;
    justify-content: stretch;
    align-items: flex-start;
    gap: 1rem;
  }
  .cart-content .item.gift, .confirm-list .item.gift {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .cart-content .item, .confirm-list .item {
    gap: 3rem;
  }
}
.cart-content .item .cover, .confirm-list .item .cover {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 95px 0 0;
  position: relative;
}
@media (min-width: 576px) {
  .cart-content .item .cover, .confirm-list .item .cover {
    flex: none;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .cart-content .item .cover, .confirm-list .item .cover {
    width: 20%;
  }
}
.cart-content .item .cover img, .confirm-list .item .cover img {
  width: 100%;
}
@media (min-width: 576px) {
  .cart-content .item .cover img, .confirm-list .item .cover img {
    width: auto;
    max-width: 126px;
  }
}
.cart-content .item.gift, .confirm-list .item.gift {
  background-color: #D8E9D2;
}
.cart-content .item.gift .cover img, .confirm-list .item.gift .cover img {
  max-width: 320px;
}
@media (min-width: 576px) {
  .cart-content .item.gift .cover img, .confirm-list .item.gift .cover img {
    max-width: 126px;
  }
}
.cart-content .item.gift .mag-infos.draw, .confirm-list .item.gift .mag-infos.draw {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .cart-content .item.gift .mag-infos.draw, .confirm-list .item.gift .mag-infos.draw {
    flex-direction: row;
    align-items: center;
  }
}
.cart-content .item.gift .price-content .offer, .confirm-list .item.gift .price-content .offer {
  color: #6C7484;
}
.cart-content .item .mag-infos, .confirm-list .item .mag-infos {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
@media (min-width: 768px) {
  .cart-content .item .mag-infos, .confirm-list .item .mag-infos {
    flex-direction: row;
    justify-content: space-between;
    align-self: normal;
    gap: 3rem;
  }
}
.cart-content .item .mag-infos .mag-infos-content, .confirm-list .item .mag-infos .mag-infos-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cart-content .item .mag-title, .confirm-list .item .mag-title {
  font-size: 1.25rem;
  margin: 0 1.5rem 0 0;
}
@media (min-width: 576px) {
  .cart-content .item .mag-title, .confirm-list .item .mag-title {
    font-size: 1.5rem;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .cart-content .item .mag-title, .confirm-list .item .mag-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .cart-content .item .mag-title, .confirm-list .item .mag-title {
    font-size: 1.75rem;
  }
}
.cart-content .item .mag-title.gift-title sup, .confirm-list .item .mag-title.gift-title sup {
  font-size: 50%;
}
.cart-content .item .period, .confirm-list .item .period {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .cart-content .item .period, .confirm-list .item .period {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
  }
}
.cart-content .item .mention, .confirm-list .item .mention {
  font-size: 0.75rem;
  margin: 0.75rem 0 0.25rem;
}
@media (min-width: 576px) {
  .cart-content .item .mention, .confirm-list .item .mention {
    font-size: 1rem;
    margin: 0.75rem 0 0.5rem;
  }
}
.cart-content .item .mention.offer, .confirm-list .item .mention.offer {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 1rem;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  color: #fff;
  background-color: #2AC8CB;
  border: 2px solid white;
  text-align: center;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0;
}
@media (min-width: 576px) {
  .cart-content .item .mention.offer, .confirm-list .item .mention.offer {
    font-size: 1.25rem;
    width: 60px;
    height: 60px;
  }
}
.cart-content .item .mention.offer.special, .confirm-list .item .mention.offer.special {
  text-transform: uppercase;
  font-size: 0.55rem;
}
@media (min-width: 576px) {
  .cart-content .item .mention.offer.special, .confirm-list .item .mention.offer.special {
    font-size: 0.65rem;
  }
}
.cart-content .item .mention.desk, .confirm-list .item .mention.desk {
  display: none;
}
@media (min-width: 768px) {
  .cart-content .item .mention.desk, .confirm-list .item .mention.desk {
    display: flex;
  }
}
.cart-content .item .mention.mob, .confirm-list .item .mention.mob {
  display: flex;
}
@media (min-width: 768px) {
  .cart-content .item .mention.mob, .confirm-list .item .mention.mob {
    display: none;
  }
}
.cart-content .item .price-content, .confirm-list .item .price-content {
  padding-right: 2.5rem;
  text-align: left;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .cart-content .item .price-content, .confirm-list .item .price-content {
    align-self: center;
  }
}
@media (min-width: 768px) {
  .cart-content .item .price-content .price, .confirm-list .item .price-content .price {
    text-align: right;
  }
}
.cart-content .item .price-content .price.offer, .confirm-list .item .price-content .price.offer {
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cart-content .item .price-content .price.offer, .confirm-list .item .price-content .price.offer {
    text-align: center;
  }
}
.cart-content .item .price-content small, .confirm-list .item .price-content small {
  font-size: 0.4em;
  font-weight: 400;
  white-space: nowrap;
}
.cart-content .item .price-content small.simple, .confirm-list .item .price-content small.simple {
  line-height: 0.5;
  color: #2AC8CB;
}
@media (min-width: 768px) {
  .cart-content .item .price-content small, .confirm-list .item .price-content small {
    display: block;
  }
}
.cart-content .item .price, .confirm-list .item .price {
  color: #2AC8CB;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1;
}
@media (min-width: 576px) {
  .cart-content .item .price, .confirm-list .item .price {
    font-size: 2rem;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
}
.cart-content .item .price sup, .confirm-list .item .price sup {
  font-size: 60%;
  top: -0.5em;
}
.cart-content .item .price.kiosque, .confirm-list .item .price.kiosque {
  color: #6C7484;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}
.cart-content .item .price.kiosque del, .confirm-list .item .price.kiosque del {
  text-decoration: none;
  position: relative;
}
.cart-content .item .price.kiosque del::before, .confirm-list .item .price.kiosque del::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 1px;
  background-color: #6C7484;
  right: -5%;
  rotate: -7.5deg;
  top: 45%;
}
.cart-content .item .price.promo, .confirm-list .item .price.promo {
  color: #6C7484;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.cart-content .item .delete, .confirm-list .item .delete {
  display: block;
  position: absolute;
  text-decoration: none;
  color: #fff;
  border-radius: 0.2em;
  background: var(--lm-close-bg);
  font-size: 1.5em;
  line-height: 0.8;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  background-color: #6C7484;
  width: 20px;
  height: 20px;
  top: 0.75rem;
  right: 1rem;
  padding: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .cart-content + .cart-bottom, .confirm-list + .cart-bottom {
    justify-content: flex-end;
    background-color: #fff;
  }
}

.cart-top {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1rem;
}
.cart-top p {
  width: 90%;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
  color: #c83333;
}

.cart-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  background-color: #FAFAFA;
}
@media (min-width: 576px) {
  .cart-bottom {
    gap: 0;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .cart-bottom {
    gap: 0;
  }
}
.cart-bottom + .cart-bottom {
  margin: 0;
  background: none;
  gap: 0;
}
.cart-bottom.cart-bottom-form {
  margin: 0;
  background: none;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.cart-bottom.cart-bottom-form.cart-btns {
  flex-direction: row;
  justify-content: space-between;
}
.cart-bottom.cart-bottom-form .mandatory {
  font-style: italic;
  font-weight: 600;
  display: block;
}
.cart-bottom.cart-bottom-form .mandatory a {
  color: #6C7484;
}
.cart-bottom.cart-bottom-form .mandatory.cg {
  font-style: normal;
}
@media (min-width: 1400px) {
  .cart-bottom {
    margin-right: 0;
    margin-left: 0;
  }
}
.cart-bottom .promo {
  box-sizing: border-box;
  height: 62px;
  margin: 0rem;
  white-space: nowrap;
  padding: 1rem 0;
}
@media (min-width: 1200px) {
  .cart-bottom .promo {
    margin: 0 0 0 7.5rem;
  }
}
.cart-bottom .promo + .accordion {
  box-sizing: border-box;
  height: 62px;
  background-color: #2AC8CB;
  border-radius: 0 0.5rem 0.5rem 0;
  -webkit-border-radius: 0 0.5rem 0.5rem 0;
  -moz-border-radius: 0 0.5rem 0.5rem 0;
  -ms-border-radius: 0 0.5rem 0.5rem 0;
  -o-border-radius: 0 0.5rem 0.5rem 0;
}
@media (min-width: 576px) {
  .cart-bottom .promo + .accordion {
    padding-left: 1rem;
  }
}
@media (max-width: 576px) {
  .cart-bottom .promo + .accordion.horizontal {
    border-radius: 0.25rem;
    margin-top: -0.25rem;
  }
}
.cart-bottom .promo + .accordion.horizontal :target {
  margin: 0 1rem;
}
.cart-bottom .promo a {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #2AC8CB;
  padding: 1.25rem 0.5rem 1.25rem 1.25rem;
  border-radius: 0.5rem 0 0 0.5rem;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  -moz-border-radius: 0.5rem 0 0 0.5rem;
  -ms-border-radius: 0.5rem 0 0 0.5rem;
  -o-border-radius: 0.5rem 0 0 0.5rem;
}
@media (max-width: 576px) {
  .cart-bottom .promo a {
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
  }
}
.cart-bottom .promo a::before {
  content: url(../../images/picto-promo.svg);
  vertical-align: sub;
  margin-right: 0.5rem;
}
.cart-bottom .btn {
  max-width: 90%;
  margin: auto;
}
@media (min-width: 576px) {
  .cart-bottom .btn {
    max-width: 200px;
    margin: 0;
  }
}
.cart-bottom.add-mag {
  margin-top: -1rem;
  justify-content: flex-end;
}
.cart-bottom.add-mag p {
  width: 90%;
  text-align: left;
  border-top: 1px solid #F0F0F0;
  margin: 0;
  padding: 1.5rem 0 0.5rem;
}
.cart-bottom.add-mag p a {
  display: flex;
  text-decoration: none;
  color: #6C7484;
  font-weight: 700;
}
.cart-bottom.add-mag p a span {
  background-color: #6C7484;
  color: #FAFAFA;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.cart-mentions {
  margin: 0.25rem 0 2rem;
  padding: 0 1rem;
  border-top: 1px solid #F0F0F0;
}

.mentions {
  font-size: 0.75rem;
  line-height: 1.5;
}
.mentions a {
  color: #6C7484;
}
@media (min-width: 1400px) {
  .mentions {
    padding: 0;
  }
}

#payment-methods {
  margin: 0 auto 2rem;
  max-width: 992px;
  /* Accordion styles */
}
#payment-methods input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#payment-methods .row {
  display: flex;
}
#payment-methods .row .col {
  flex: 1;
}
#payment-methods .row .col:last-child {
  margin-left: 1em;
}
#payment-methods .tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}
#payment-methods .tab {
  width: 100%;
  color: #6C7484;
  overflow: hidden;
}
#payment-methods .tab-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  height: 100px;
  padding: 1em 2em;
  background: #ededed;
  font-weight: 600;
  cursor: pointer;
  /* Icon */
}
#payment-methods .tab-label img {
  width: 95px;
}
@media (min-width: 768px) {
  #payment-methods .tab-label img {
    width: auto;
    max-width: 60%;
  }
}
#payment-methods .tab-label:hover {
  background: #e1e1e1;
}
#payment-methods .tab-content {
  max-height: 0;
  padding: 0 1em;
  background: #FAFAFA;
  border-top: 1px solid white;
  transition: all 0.35s;
}
#payment-methods .tab-content.cards {
  background-color: white;
}
#payment-methods .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #FAFAFA;
  cursor: pointer;
}
#payment-methods .tab-close:hover {
  background: #e1e1e1;
}
#payment-methods input:checked + .tab-label {
  background: #e1e1e1;
}
#payment-methods input:checked + .tab-label::after {
  transform: rotate(90deg);
}
#payment-methods input:checked ~ .tab-content {
  max-height: 100%;
  padding: 1em;
}
#payment-methods .contact-details {
  padding: 1rem 0;
  margin: 0;
}
@media (min-width: 576px) {
  #payment-methods .contact-details {
    padding: 0.75rem 3rem;
  }
}
#payment-methods .contact-details .subtitle {
  padding: 0;
}
#payment-methods .contact-details label {
  margin: 0;
}
#payment-methods .contact-details label img {
  width: 100%;
  max-width: 400px;
}

/* Ogone template Style */
#payment-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  #payment-container {
    flex-direction: row;
  }
}
#payment-container .recap {
  min-width: 250px;
  margin: 1rem;
  padding: 0 1rem 1rem;
  background-color: #ccf4f5;
  border-radius: 0.75rem;
}
#payment-container .recap h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
#payment-container .recap h4, #payment-container .recap p {
  margin: 0;
}
#payment-container .recap .period {
  font-style: italic;
}
#payment-container .recap .mag-infos {
  padding: 1rem 0;
  border-bottom: 1px solid #C3C3C3;
}
#payment-container .recap .mag-infos:last-child {
  border: none;
}

.payment-ogone {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 576px;
  padding: 1rem;
  background-color: #FAFAFA;
}
.payment-ogone table tr td[width="15%"] {
  display: none;
}
.payment-ogone table tr td div {
  text-align: left;
}
.payment-ogone table tr td div font {
  display: block;
}
.payment-ogone table tr td div font strong {
  font-weight: 400;
  font-size: 1.25rem;
}
.payment-ogone .ncoltable1 tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .payment-ogone .ncoltable1 tr {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
.payment-ogone .ncoltable1 .ncoltxtl, .payment-ogone .ncoltable1 .ncoltxtr {
  font-size: 1rem;
}
.payment-ogone .ncoltable1 .ncoltxtl {
  width: auto !important;
  text-align: left;
}
.payment-ogone .ncoltable1 .ncoltxtr {
  width: 50%;
  text-align: left;
}
.payment-ogone .ncoltable1 tr:nth-child(2) td {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #2AC8CB;
  margin-top: 1rem;
}
.payment-ogone .ncoltable1 tr:nth-child(2) td.ncoltxtc {
  display: none;
}
.payment-ogone .ncoltable1 tr:nth-child(2) td:nth-child(2) {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .payment-ogone .ncoltable1 tr:nth-child(2) td:nth-child(2) {
    margin: 0;
  }
}
@media (min-width: 576px) {
  .payment-ogone .ncoltable1 tr:nth-child(2) td {
    margin: 0;
  }
}
@media (min-width: 576px) {
  .payment-ogone .ncoltable1 td {
    text-align: right;
  }
  .payment-ogone .ncoltable1 td.ncoltxtc {
    text-align: left;
  }
}
.payment-ogone .ncoltable2 tr {
  display: flex;
  flex-direction: column;
}
.payment-ogone .ncoltable2 tr .ncolh1 {
  text-align: left;
  font-size: 1.25rem;
  padding-bottom: 1rem;
}
.payment-ogone .ncoltable2 tr:nth-child(2) {
  justify-content: space-between;
}
.payment-ogone .ncoltable2 tr:nth-child(2) .ncolline1:first-child {
  display: none;
}
.payment-ogone .ncoltable2 tr:nth-child(2) .ncolline1:nth-child(2) {
  display: none;
}
.payment-ogone .ncoltable2 tr:nth-child(2) .ncolline1:nth-child(3) {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.payment-ogone .ncoltable2 tr:nth-child(2) .ncolline1:nth-child(3) input[type=image] {
  border: 2px solid #C3C3C3;
  border-radius: 0.25rem;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 0.5rem 1rem;
  width: 50px;
}
.payment-ogone .ncoltable2 tr td.ncoltxtl2 {
  text-align: left;
  font-weight: 600;
}
.payment-ogone .ncoltable2 tr td.ncoltxtl2 small {
  font-size: 0.875rem;
}
.payment-ogone .ncoltable2 tr td.ncolinput {
  margin-bottom: 0.5rem;
}
.payment-ogone .ncoltable2 tr td.ncolinput small {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.payment-ogone .ncoltable2 tr td.ncolinput input, .payment-ogone .ncoltable2 tr td.ncolinput select {
  display: block;
  box-sizing: border-box;
  width: 75%;
  height: 45px;
  padding: 0 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.payment-ogone .ncoltable2 tr td.ncolinput select {
  width: auto;
}
.payment-ogone .ncoltable2 tr td input[type=submit] {
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 1.125rem;
  color: #6C7484;
  width: 90%;
  height: 48px;
  line-height: 48px;
  max-width: 325px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-color: #164A93;
  color: #fff;
}
.payment-ogone .ncoltable2 tr td input[type=submit]:hover {
  background-color: #fff;
  font-size: 1.25rem;
  color: #164A93;
  border: 1px solid #164A93;
  cursor: pointer;
}
.payment-ogone .ncoltable2 tr:first-child {
  display: block;
  padding-bottom: 1rem;
}
.payment-ogone .ncoltable2 tr:first-child td.ncoltxtl2 {
  display: none;
}
.payment-ogone .ncoltable2 tr:first-child td.ncolinput:before {
  content: "payer avec";
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row td.ncolinput {
  display: flex;
  gap: 0.25rem;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row td.ncolinput small {
  flex-direction: row;
  justify-content: flex-start;
  width: 50%;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row td.ncolinput small input {
  width: 100%;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row td.ncolinput small .midncol {
  color: #6C7484;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row + input + input + tr td {
  text-align: left;
  margin-bottom: 2rem;
}
.payment-ogone .ncoltable2 tr#cvc_dob_row + input + input + tr small {
  font-size: 0.75rem;
}
.payment-ogone .ncoltable3 {
  padding-top: 3rem;
}
.payment-ogone .ncoltable3 .ncollogoc .bottom {
  color: #6C7484;
}
.payment-ogone .ncollogoc {
  width: 50%;
}
.payment-ogone .ncollogoc:last-child {
  display: none;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.75rem 0;
  padding: 0 1rem;
}
@media (min-width: 1400px) {
  .subtitle {
    font-size: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .subtitle {
    padding: 0;
  }
}

.contact-details {
  margin: 1.5rem 0 0;
  padding: 0;
}
.contact-details #billingAddressBlock, .contact-details #deliveryAddressBlock {
  background-color: #FAFAFA;
  padding: 1.5rem 7.5%;
}
.contact-details #billingAddressBlock {
  margin-top: 1rem;
}
@media (min-width: 786px) {
  .contact-details {
    padding: 2rem 1rem;
  }
}
.contact-details form {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.contact-details form h5 {
  font-size: 1.75rem;
  margin: 0;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 0.75rem;
}
.contact-details form .mandatory {
  font-style: italic;
  font-weight: 600;
  display: block;
  margin: 1.5rem 0 0.5rem;
}
.contact-details form .mandatory a {
  color: #6C7484;
}
.contact-details form .mandatory.cg {
  font-style: normal;
}
.contact-details form .mandatory span:after {
  content: url("../../images/svg/gift-d.svg");
  margin-left: 0.5rem;
  vertical-align: sub;
}
.contact-details form .form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  flex-grow: 1;
}
.contact-details form .form-row.iban-content {
  margin: 1rem auto;
}
@media (min-width: 576px) {
  .contact-details form .form-row {
    flex-direction: row;
    margin: 0 auto 0.25rem;
  }
}
.contact-details form .form-row label {
  font-style: italic;
  font-weight: 600;
  display: block;
  margin: 0.5rem 1rem 0.5rem 0;
}
.contact-details form .form-row label span {
  display: block;
  margin-bottom: 0.5rem;
}
.contact-details form .form-row label.large {
  flex-grow: 1;
}
@media (min-width: 768px) {
  .contact-details form .form-row label.large {
    flex-grow: 0.25;
  }
}
@media (min-width: 768px) {
  .contact-details form .form-row label {
    flex-grow: unset;
  }
}
.contact-details form .form-row label.text-danger, .contact-details form .form-row label ul li {
  text-align: left;
  color: #c83333;
}
.contact-details form .form-row label ul {
  padding: 0;
}
.contact-details form .form-row label ul li {
  list-style: none;
  text-align: left;
}
.contact-details form .form-row input, .contact-details form .form-row select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  padding: 0 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.contact-details form .form-row input:focus, .contact-details form .form-row select:focus {
  outline: 2px solid #2AC8CB;
  border-color: #fff;
}
.contact-details form .form-row input.error, .contact-details form .form-row select.error {
  border-color: #c83333;
}
.contact-details form .form-row select {
  width: auto;
}
.contact-details form .form-row ::placeholder {
  opacity: 0.5;
}
.contact-details form .form-row .form-text-info {
  display: block;
  font-size: 0.75rem;
  text-decoration: underline;
  color: #164A93;
  margin: 0.75rem 0 2rem;
}

.confirmation-text {
  margin: 1rem auto 2rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.confirmation-text .checked .checkmark {
  display: none;
}
@media (min-width: 768px) {
  .confirmation-text {
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .confirmation-text .checked .checkmark {
    display: block;
  }
}
.confirmation-text h2 {
  font-size: 1.825rem;
  margin: 1.5rem 0 1rem;
}
@media (min-width: 768px) {
  .confirmation-text h2 {
    font-size: 2.125rem;
  }
}
.confirmation-text p {
  font-size: 1rem;
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .confirmation-text p {
    font-size: 1.5rem;
    padding: 0 1rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .confirmation-text + .section-title {
    color: #6C7484;
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
}

.confirmation-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .confirmation-container {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .confirmation-container {
    flex-direction: row;
  }
}

.confirm-list {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.confirm-list .item {
  flex-direction: row;
  padding: 0.5rem 1rem;
}
.confirm-list .item .cover {
  width: 20%;
  min-width: 150px;
  padding: 0.5rem;
  display: none;
}
@media (min-width: 576px) {
  .confirm-list .item .cover {
    display: flex;
  }
}
@media (min-width: 576px) {
  .confirm-list .item .cover img {
    max-width: 96px;
  }
}
.confirm-list .item .mag-infos {
  padding: 0 1rem;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}
.confirm-list .item .mag-infos .mag-title {
  font-size: 1rem;
  border: 0;
  font-weight: 400;
  display: list-item;
  list-style: disc;
}
@media (min-width: 576px) {
  .confirm-list .item .mag-infos .mag-title {
    font-size: 1.5rem;
    list-style: none;
  }
}
@media (min-width: 576px) {
  .confirm-list .item .mag-infos {
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .confirm-list .item.gift .cover img {
    max-width: 105px;
  }
}
.confirm-list .item .mention {
  font-size: 1rem;
  display: none;
}
@media (min-width: 576px) {
  .confirm-list .item .mention {
    font-size: 1rem;
    display: block;
  }
}
@media (min-width: 768px) {
  .confirm-list .item .mention {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .confirm-list .item .mention {
    font-size: 1rem;
  }
}
.confirm-list .item.service-contact {
  display: none;
  background-color: #fff;
}
@media (min-width: 576px) {
  .confirm-list .item.service-contact {
    display: flex;
    flex-direction: row;
  }
  .confirm-list .item.service-contact .cover {
    width: auto;
  }
}
.confirm-list .item.service-contact .contact-infos h5 {
  font-size: 1.625rem;
  color: #164A93;
  font-weight: 400;
  margin: 0 0 1rem;
}
.confirm-list .item.service-contact .contact-infos p {
  line-height: 1.5;
}
.confirm-list .item.service-contact .contact-infos p .phone {
  font-size: 1.625rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .confirm-list {
    width: 60%;
  }
}

.picto-tel {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #164A93;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 1rem;
}
.picto-tel > img {
  width: 55% !important;
}
@media (min-width: 576px) {
  .picto-tel {
    display: flex;
    margin: 0;
  }
}

.confirm-add {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.confirm-add > p {
  margin: 0 1rem 0.5rem;
  text-align: left;
  font-weight: 600;
}
@media (min-width: 768px) {
  .confirm-add > p {
    display: none;
  }
}
.confirm-add .img-add {
  width: 100%;
  max-width: 455px;
}
@media (min-width: 768px) {
  .confirm-add {
    width: 40%;
  }
}
.confirm-add .service-contact {
  display: flex;
  flex-direction: row;
  padding: 1rem;
}
@media (min-width: 576px) {
  .confirm-add .service-contact {
    gap: 1rem;
    display: none;
  }
}
.confirm-add .service-contact .cover {
  width: auto;
}
.confirm-add .service-contact .contact-infos {
  text-align: left;
}
.confirm-add .service-contact .contact-infos h5 {
  font-size: 1.25rem;
  color: #164A93;
  font-weight: 400;
  margin: 0 0 1rem;
}
.confirm-add .service-contact .contact-infos p {
  line-height: 1.5;
}
.confirm-add .service-contact .contact-infos p .phone {
  font-size: 1.625rem;
  white-space: nowrap;
}

.error-content#signin-content {
  min-height: 800px;
}
.error-content#signin-content .left-side {
  opacity: 0.25;
}
.error-content#signin-content .right-side .error-text {
  padding: 3rem;
}
.error-content#signin-content .right-side .error-text h2 {
  color: #164A93;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 0;
}
@media (min-width: 576px) {
  .error-content#signin-content .right-side .error-text h2 {
    color: #164A93;
    font-size: 4.375rem;
    font-weight: 400;
    text-align: center;
    margin: 0 auto 0;
  }
}
.error-content#signin-content .right-side .error-text h3 {
  color: #164A93;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 1.5rem;
}
.error-content#signin-content .right-side .error-text p {
  text-align: center;
  margin: 0 auto 2.25rem;
  line-height: 1.5;
}
.error-content#signin-content .right-side .error-text .btn {
  margin: auto;
}
.error-content#signin-content .right-side .signin-contact {
  margin-bottom: 1rem;
}

/*Define Accordion box*/
#code-promo {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  margin: 0rem;
  white-space: nowrap;
  background-color: #2AC8CB;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
@media (min-width: 576px) {
  #code-promo {
    flex-direction: row;
    gap: 1rem;
  }
}
#code-promo #promoButton {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #2AC8CB;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
#code-promo #promoButton::before {
  content: url(../../images/picto-promo.svg);
  vertical-align: sub;
  margin-right: 0.5rem;
}
#code-promo #promoContent {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}
#code-promo #promoContent.hidden {
  display: none;
}
#code-promo #promoContent.visible {
  display: flex;
  opacity: 1;
}
@media (min-width: 576px) {
  #code-promo #promoContent {
    padding-left: 0;
  }
}
#code-promo #promoContent #code {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
}
#code-promo #promoContent label {
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-style: italic;
  font-weight: 600;
  margin: 0;
}
#code-promo #promoContent label span {
  color: #6C7484;
  margin-right: 1rem;
}
#code-promo #promoContent label.large {
  flex-grow: 1;
}
@media (min-width: 768px) {
  #code-promo #promoContent label.large {
    flex-grow: 0.25;
  }
}
@media (min-width: 768px) {
  #code-promo #promoContent label {
    flex-grow: unset;
  }
}
#code-promo #promoContent label input {
  box-sizing: border-box;
  height: 40px;
  width: 100%;
  padding: 0 1rem;
  font-size: 0.9rem;
  border: 1px solid #6C7484;
  border-radius: 0.5rem 0 0 0.5rem;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  -moz-border-radius: 0.5rem 0 0 0.5rem;
  -ms-border-radius: 0.5rem 0 0 0.5rem;
  -o-border-radius: 0.5rem 0 0 0.5rem;
}
#code-promo #promoContent label input:focus {
  border-color: #fff;
}
#code-promo #promoContent label + .btn {
  width: 30%;
  height: 40px;
  padding: 0 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  -webkit-border-radius: 0 0.5rem 0.5rem 0;
  -moz-border-radius: 0 0.5rem 0.5rem 0;
  -ms-border-radius: 0 0.5rem 0.5rem 0;
  -o-border-radius: 0 0.5rem 0.5rem 0;
}

.tooltip {
  display: inline-block;
  position: relative;
  text-align: left;
}

.tooltip .bottom {
  min-width: 300px;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 10px 20px;
  color: #FFFFFF;
  background-color: #2AC8CB;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  border: 1px solid #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}

.tooltip:hover .bottom {
  visibility: visible;
  opacity: 1;
}

.tooltip .bottom i {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 16px;
  overflow: hidden;
}

.tooltip .bottom i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: #2AC8CB;
  border: 1px solid #FFFFFF;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.checked .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #164A93;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checked .checkmark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 1% auto 0;
  box-shadow: inset 0px 0px 0px #00ffea;
  animation: fill 0.6s ease-in-out 0.6s forwards, scale 0.4s ease-in-out 1.2s both;
  -webkit-animation: fill 0.6s ease-in-out 0.6s forwards, scale 0.4s ease-in-out 1.2s both;
}
.checked .checkmark.crossmark {
  box-shadow: inset 0px 0px 0px #c83333;
}
.checked .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.1s forwards;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.1s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    -moz-transform: scale3d(1.1, 1.1, 1);
    -ms-transform: scale3d(1.1, 1.1, 1);
    -o-transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px #164A93;
  }
}

/* framework */
.d-block {
  display: block;
}

/* End framwork *//*# sourceMappingURL=styles.css.map */