@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/montserrat-v30-latin-100.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat-v30-latin-300.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v30-latin-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v30-latin-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/montserrat-v30-latin-900.woff2") format("woff2");
  font-display: swap;
}
html,
body {
  height: 100vh;
  width: 100%;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 20px;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 300;
  color: #000000;
  scroll-behavior: smooth;
}

body.pageload * {
  transition: none !important;
}

input,
textarea,
select {
  font-size: 1.1rem;
  line-height: 20px;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 300;
  width: 550px;
  color: #353434;
  border: 2px solid #d9d9d9;
  border-radius: 38px;
  padding: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 100%;
}

select {
  background: white url("data:image/svg+xml;utf8,<svg fill='rgb(24 150 162)' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
  background-size: 18px;
}

select:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3));
  border: 2px solid #d9d9d9;
}

select option {
  border: 2px solid #d9d9d9;
  border-radius: 38px;
  background: #fff;
  color: #03818D;
  padding: 5px;
}
select option:hover {
  background: #03818D;
  color: #fff;
}

.hide {
  display: none;
}

.display_mobile,
.display_small {
  display: none !important;
}

a {
  color: #03818D;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a.nounder {
  text-decoration: none;
}
a.nocolor {
  color: #3f4847;
}

.middle_container {
  max-width: 1800px;
  margin: 0 auto;
}

.middle_content {
  max-width: 1200px;
  margin: 0 auto;
}
.middle_content.wide {
  max-width: 1600px;
}

p {
  margin: 1rem 0;
}

.fs-1-625 {
  font-size: 1.625rem;
}

table th {
  font-weight: 400;
  border-bottom: 1px solid #03818D;
  padding: 0.4rem 0.25rem;
  vertical-align: middle;
  color: #03818D;
}
table td {
  padding: 0.4rem 0.25rem;
  border-bottom: 1px solid #d4d4d4;
}
table tr:nth-last-child(1) td {
  border-bottom: 0;
}

ul {
  padding-left: 1rem;
}
ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.vscroll {
  width: 100%;
  overflow-x: auto;
}

.error,
.valid {
  font-weight: 400;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 5rem;
  font-size: 0.9rem;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  font-weight: bold;
}
.error.error,
.valid.error {
  color: #d30303;
}
.error.valid,
.valid.valid {
  color: #0d9524;
}
.error.white,
.valid.white {
  background-color: #fff;
}

.transition {
  transition: all ease 0.35s;
}

.vat {
  vertical-align: top;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.taj {
  text-align: justify;
}

.fwb {
  font-weight: bold;
}

.fww {
  flex-wrap: wrap;
}

.m-a {
  margin: 0 auto;
}

.c-white {
  color: white;
}

.c-gray {
  color: #767676;
}

.c-darkgray {
  color: #4a4a49;
}

.c-red {
  color: #bf0909;
}

.main-color {
  color: #03818D;
}

.main-bg-color {
  background: #03818D;
}

.bg-white {
  background-color: white;
}

.bg-mediumgray {
  background-color: #DBDBDB;
}

.mw-60p {
  max-width: 60%;
}

.db {
  display: block;
}

.df {
  display: flex;
}
.df.g-0-5 {
  gap: 0.5rem;
}
.df.g-1 {
  gap: 1rem;
}
.df.g-2 {
  gap: 2rem;
}
.df.g-2-5 {
  gap: 2.5rem;
}
.df.g-3 {
  gap: 3rem;
}
.df.g-4 {
  gap: 4rem;
}
.df.aic {
  align-items: center;
}
.df.ais {
  align-items: start;
}
.df.aie {
  align-items: end;
}
.df.aib {
  align-items: baseline;
}
.df.jcc {
  justify-content: center;
}
.df.jcsb {
  justify-content: space-between;
}
.df.jcsa {
  justify-content: space-around;
}
.df.jce {
  justify-content: end;
}
.df.fdc {
  flex-direction: column;
}

.ttu {
  text-transform: uppercase;
}

.w100 {
  width: 100%;
}

.mw-60 {
  max-width: 60%;
}

.mw-65 {
  max-width: 65%;
}

.lh-100 {
  line-height: 100%;
}

.lh-125 {
  line-height: 125%;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mh40 {
  min-height: 40px;
}

.displayMobile {
  display: none;
}

.color {
  color: #03818D;
}

.color2 {
  color: #212121;
}

.swal-popup-custom {
  border-radius: 63px;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.display_desktop,
.display_mobile {
  display: none;
}

#logo a .display_desktop_logo_light {
  display: inline;
}

#logo a .display_desktop_logo_dark {
  display: none;
}

#logo a .display_mobile_logo_light {
  display: none;
}

#logo a .display_mobile_logo_dark {
  display: none;
}

/* ====== 3. Dark mode (automatique) ====== */
@media (prefers-color-scheme: dark) {
  #logo a .display_desktop_logo_light {
    display: none;
  }
  #logo a .display_desktop_logo_dark {
    display: inline;
  }
}
.custom_btn {
  display: inline-block;
  border: 2px solid #3f4847;
  color: #3f4847;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  cursor: pointer;
  letter-spacing: 0.5px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  vertical-align: top;
  transition: all ease 0.3s;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.custom_btn:hover {
  color: white;
  background-color: #3f4847;
}
.custom_btn.active {
  color: #03818D;
  border-color: white;
  background-color: white;
  box-shadow: 1px 1px 10px 1px rgba(102, 102, 102, 0.25);
}
.custom_btn.white:not(.full) {
  color: white;
  border-color: white;
}
.custom_btn.white:not(.full):hover {
  color: #03818D;
  background-color: white;
}
.custom_btn.white.full {
  color: #03818D;
  background-color: white;
  border-color: white;
}
.custom_btn.white.full:hover {
  color: white;
  background-color: #03818D;
  border-color: #03818D;
}
.custom_btn.color.full {
  color: white;
  border-color: #03818D;
  background-color: #03818D;
}
.custom_btn.color.full:hover {
  background-color: transparent;
  color: #03818D;
}
.custom_btn.color:not(.full) {
  color: #03818D;
  border-color: #03818D;
}
.custom_btn.color:not(.full):hover {
  color: white;
  background-color: #03818D;
}
.custom_btn.red {
  color: #bf0909;
  border-color: #bf0909;
}
.custom_btn.red:hover {
  background-color: #bf0909;
  color: white;
}
.custom_btn.disabled {
  background-color: lightgray;
  cursor: not-allowed;
}
.custom_btn.disabled:hover {
  color: #3f4847;
  background-color: lightgray;
}

.shadow {
  box-shadow: 1px 1px 10px 1px rgba(102, 102, 102, 0.25);
}
.shadow.hovered {
  transition: all ease 0.3s;
}
.shadow.hovered:hover {
  box-shadow: 2px 2px 15px 1px rgba(102, 102, 102, 0.5);
}

.nowrap {
  white-space: nowrap;
}

#change_email {
  margin-top: 2rem;
}

.content-password input {
  max-width: 100%;
  width: clamp(200px, 16vw, 360px);
}
.content-password .inputs-password {
  margin-left: 3.25rem;
}
.content-password .inputs-password .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.content-password .inputs-password .input-wrapper label {
  font-weight: 600;
}
.content-password .password-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.content-password .password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: gray;
  /* couleur grise */
  font-size: 1em;
}
.content-password .password_indications {
  text-align: start;
  border-right: 2px solid #d9d9d9;
  padding-right: clamp(1.875rem, 4.474vw - 0.994rem, 4.375rem);
  font-size: 16px;
}
.content-password .password_indications h2 {
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.content-password .password_indications li {
  text-align: start;
}

.main_title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #3f4847;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-align: center;
}
.main_title.tal {
  text-align: left;
}

.main_subtitle {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
  color: #3f4847;
  margin-bottom: 2rem;
  text-align: center;
}
.main_subtitle.tal {
  text-align: left;
}

.block_visuel {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
.block_visuel .visu {
  flex-shrink: 0;
}
.block_visuel .content {
  padding: 2.5rem 5rem;
}

section {
  padding: 4rem 3rem;
}
section.reduced {
  padding: 0 4rem;
}
section.white {
  background-color: white;
}
section.lightgray {
  background-color: #ffffff;
}
section.nopadding {
  padding: 0;
}

.separator {
  width: 90%;
  height: 1px;
  background-color: #03818D;
  max-width: 220px;
  margin: 1rem auto 2rem;
}
.separator.tal {
  margin: 1rem 0 2rem;
}

form .input-wrapper {
  position: relative;
}
form .row {
  display: flex;
  min-width: 200px;
  margin: 10px 0;
  align-items: center;
  gap: 1rem;
}
form .row label {
  min-width: 200px;
}
form .row input[type=text],
form .row input[type=email],
form .row input[type=password],
form .row select,
form .row textarea {
  border: 1px solid #d9d9d9;
  padding: 1rem;
  border-radius: 32px;
  width: 529px;
  color: #3f4847;
  font-size: 1.1rem;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 300;
}
form .row input[type=text].erreur,
form .row input[type=email].erreur,
form .row input[type=password].erreur,
form .row select.erreur,
form .row textarea.erreur {
  border-color: #bf0909;
}
form .row input[type=text].long,
form .row input[type=email].long,
form .row input[type=password].long,
form .row select.long,
form .row textarea.long {
  width: 777px;
}
form .row input[type=text].w100,
form .row input[type=email].w100,
form .row input[type=password].w100,
form .row select.w100,
form .row textarea.w100 {
  width: 100%;
}
form .row input[type=text].w70,
form .row input[type=email].w70,
form .row input[type=password].w70,
form .row select.w70,
form .row textarea.w70 {
  width: 70%;
}

.swal2-container .swal2-title {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2rem;
  color: #3f4847;
  margin-bottom: 1.5rem;
  text-align: center;
}
.swal2-container .swal2-confirm {
  background-color: #03818D;
}

.slickslider {
  max-height: 0;
  opacity: 0;
  transition: all ease 0.3s;
}
.slickslider.slick-initialized {
  max-height: 500px;
  opacity: 1;
}
.slickslider .slick-slide {
  /*opacity: 0;*/
  /*transition: all ease 0.3s;*/
  text-align: center;
  /*&.slick-active {
    opacity: 1;
  }*/
}
.slickslider .custom-next,
.slickslider .custom-prev {
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}
.slickslider .custom-next.custom-prev,
.slickslider .custom-prev.custom-prev {
  left: 0;
  transform: translateX(-20px);
  background: url("../img/pictos/arrow_left.svg") no-repeat center;
}
.slickslider .custom-next.custom-next,
.slickslider .custom-prev.custom-next {
  right: 0;
  transform: translateX(20px);
  background: url("../img/pictos/arrow_right.svg") no-repeat center;
}
.slickslider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  transform: translateY(100%);
}
.slickslider .slick-dots li {
  list-style-type: none;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0;
}
.slickslider .slick-dots li:only-child {
  display: none;
}
.slickslider .slick-dots li button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-indent: -999%;
  background: #d5d5d5;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all ease 0.3s;
  color: transparent;
}
.slickslider .slick-dots li.slick-active button {
  background-color: #03818D;
  width: 25px;
}

.error_message {
  color: #bf0909;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 400;
}
.error_message.tal {
  text-align: left;
}

.valid_message {
  color: #069306;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 400;
}

.toggleButton {
  position: relative;
  width: 50px;
  height: 24px;
  overflow: hidden;
}
.toggleButton.active {
  border: 1px solid #03818D;
}
.toggleButton .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.toggleButton .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s ease all;
  z-index: 1;
  border: 1px solid #c3c3c3;
  background-color: #fff;
  border-radius: 20px;
}
.toggleButton .option {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.toggleButton .option:before {
  content: "";
  left: 2px;
  background-color: #686868;
  position: absolute;
  bottom: 2px;
  top: 2px;
  border-radius: 20px;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
  display: flex;
  justify-content: center;
  width: 38%;
  right: auto;
}
.toggleButton .checkbox:checked + .option:before {
  content: "";
  background-color: #03818D;
  transform: translateX(135%);
}

.custom_tabs {
  width: 100%;
}
.custom_tabs .tabs {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  transform: translateY(1px);
  position: relative;
  z-index: 3;
  padding: 0 5px;
}
.custom_tabs .tabs .tab {
  flex: 1;
  padding: 0.25rem;
  border: 1px solid #858585;
  border-bottom-color: #03818D;
  font-weight: 400;
  color: #858585;
  border-radius: 8px 8px 0 0;
  text-align: center;
  background-color: white;
  font-size: 0.85rem;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_tabs .tabs .tab.active {
  border-color: #03818D;
  border-bottom-color: white;
  color: #03818D;
}
.custom_tabs .container {
  padding: 1rem;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #03818D;
  position: relative;
  z-index: 2;
}
.custom_tabs .container .content {
  display: none;
}
.custom_tabs .container .content .title_block {
  display: none;
}
.custom_tabs .container .content .bg-white {
  box-shadow: inherit;
  padding: 0;
  background-color: inherit;
  margin: 0;
}

.mirror-h {
  transform: scaleX(-1);
}

.or_separation {
  padding-top: 2rem;
  border-top: 1px solid #d3d3d3;
  padding-bottom: 1rem;
  max-width: 80px;
  margin: 0 auto;
  text-align: center;
  margin-top: 3rem;
}

#arianne_form {
  text-align: center;
}
#arianne_form .arianne {
  display: inline-block;
  padding: 2em 0;
  position: relative;
  white-space: nowrap;
}
#arianne_form .arianne .barre {
  position: absolute;
  width: 110%;
  left: -5%;
  height: 0.4em;
  background-color: #f2f4ff;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 5px;
  z-index: 1;
}
#arianne_form .arianne .item {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background-color: #f2f4ff;
  text-align: center;
  line-height: 45px;
  margin: 0 0.5em;
  color: #03818D;
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  cursor: pointer;
}
#arianne_form .arianne .item.current {
  background-color: #03818D;
  color: white;
}
#arianne_form .arianne .item:hover {
  background-color: #ddd;
}

.popup-update {
  width: 67rem;
  border-radius: 9px;
  padding: 3rem;
}
.popup-update .tac {
  margin-top: 2%;
}
.popup-update .swal2-close {
  margin: 1rem;
}
.popup-update .swal2-close:hover {
  color: #03818D;
}
.popup-update .swal2-title {
  color: #03818D;
}
.popup-update #openModal-email-postal,
.popup-update #openModal-email {
  cursor: pointer;
}
.popup-update input {
  border: none !important;
  background-color: #f2f4ff !important;
}
.popup-update.password #step1 #profile_password {
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 6%;
}
.popup-update.password #step1 #profile_password .form {
  border-left: 1px solid #f1f1f1;
  padding-left: 6%;
}
.popup-update.password #step1 #profile_password .form .row {
  flex-direction: column;
  align-items: normal;
}
.popup-update.password #step1 #profile_password .form .row input {
  width: 100%;
}
.popup-update.password #step2 .row {
  gap: 4%;
}
.popup-update.password #step2 .row input {
  width: 54%;
}
.popup-update.email .profil_email,
.popup-update.email .profil_phone, .popup-update.emailPostal .profil_email,
.popup-update.emailPostal .profil_phone, .popup-update.phone .profil_email,
.popup-update.phone .profil_phone {
  margin-top: 3%;
  margin-left: 7%;
}
.popup-update.email .profil_email label,
.popup-update.email .profil_phone label, .popup-update.emailPostal .profil_email label,
.popup-update.emailPostal .profil_phone label, .popup-update.phone .profil_email label,
.popup-update.phone .profil_phone label {
  text-align: left;
}
.popup-update.email label, .popup-update.emailPostal label, .popup-update.phone label {
  width: 27%;
}
.popup-update.email input, .popup-update.emailPostal input, .popup-update.phone input {
  width: 60% !important;
}
.popup-update.email .form, .popup-update.emailPostal .form, .popup-update.phone .form {
  margin-top: 4%;
}

.loader {
  width: 80px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #03818D;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
  margin: 1rem auto;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
@media only screen and (max-width: 1024px) {
  .main_title {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .m-tac {
    text-align: center;
  }
  .m-df {
    display: flex;
  }
  .m-df.aic {
    align-items: center;
  }
  .m-df.jcc {
    justify-content: center;
  }
  .m-df.jcsb {
    justify-content: space-between;
  }
  .m-df.jcsa {
    justify-content: space-around;
  }
  .m-df.fdc {
    flex-direction: column;
  }
  .m-fdc {
    flex-direction: column;
  }
  .displayDesktop {
    display: none;
  }
  .displayMobile {
    display: block;
  }
  form .row:not(.col) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  form .row:not(.col) label {
    padding-left: 0.3rem;
  }
  form .row:not(.col) input[type=text],
  form .row:not(.col) input[type=email],
  form .row:not(.col) input[type=password],
  form .row:not(.col) select,
  form .row:not(.col) textarea {
    width: 100%;
  }
  .main_title {
    line-height: calc(1rem + 62%);
  }
  .main_subtitle {
    line-height: 100%;
  }
  form .bulle {
    left: 20%;
    transform: translateY(-224%);
    top: 100%;
  }
  form .bulle::before {
    top: 91%;
    left: 50%;
    transform: rotate(270deg);
  }
}
body #flex_container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body #flex_container .page {
  flex: 1;
}

header {
  z-index: 10;
  position: sticky;
  top: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 1px 1px 11px 1px #d9d9d9;
}
header.log #menu > ul {
  border: 0;
  padding-right: 0;
}
header .middle_container {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  gap: 2rem;
}
header #logo {
  flex-shrink: 0;
}
header .link_profile {
  max-width: 190px;
  display: inline-flex;
  gap: 0.5rem;
}
header .link_profile .picture {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  overflow: hidden;
}
header .link_profile .picture img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  max-width: inherit;
}
header .link_profile .name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
header .points {
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  border: 1px solid #03818D;
}
header .points a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
header .account a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
header .pastille {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: red;
  font-size: 0.6rem;
  color: white;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  line-height: 15px;
  text-align: center;
  transition: all ease 0.3s;
  opacity: 1;
}
header #menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.125rem;
}
header #menu > ul {
  display: flex;
  padding-right: 1rem;
  padding-left: 0;
}
header #menu > ul li {
  list-style-type: none;
  margin: 0 1rem 0;
}
header #menu > ul li a {
  text-decoration: none;
  color: #212121;
  padding: 0.5rem 1rem;
  display: block;
}
header #menu > ul li.current a {
  font-weight: bold;
  color: #03818D;
}
header #menu .account {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
header #menu .submenu {
  position: relative;
  margin-left: 2rem;
}
header #menu .submenu ul {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  border-radius: 1rem;
  padding: 2rem 0;
  transform: translateY(-110%);
  opacity: 0;
}
header #menu .submenu ul img.closeMenu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  cursor: pointer;
}
header #menu .submenu ul li {
  list-style-type: none;
  background: white;
  margin: 0;
}
header #menu .submenu ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 0.3rem 3rem;
  white-space: nowrap;
}
header #menu .submenu ul li a:hover {
  background-color: #ffffff;
}
header #menu .submenu ul li a .pastille {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  line-height: 10px;
  bottom: inherit;
  right: inherit;
  margin-left: 0.5rem;
  display: inline-block;
}
header #menu .submenu.open ul {
  opacity: 1;
  transform: translateY(0%);
}
header .logout {
  padding: 0.5rem;
  background-color: #03818D;
  border-radius: 41px;
  border: 1px solid #03818D;
  transition: 0.5s all ease;
  overflow: hidden;
}
header .logout a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
header .logout:hover {
  background-color: #ffffff;
  color: #03818D;
}
header .logout:hover a {
  color: #03818D;
}
header .app_links a {
  display: inline-block;
}
header .app_links a img {
  height: 40px;
}
header #social img {
  max-width: 34px;
}

footer {
  background-color: #3f4847;
  color: white;
  padding: 1.5rem;
}
footer .middle_container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .menu ul {
  display: flex;
}
footer .menu ul a {
  color: white;
  text-decoration: none;
}
footer .menu ul li {
  list-style-type: none;
  margin: 0;
  padding: 0rem 1.5rem;
}
footer .menu ul li + li {
  border-left: 2px solid;
}
footer .social {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
footer .social .app {
  display: flex;
  gap: 0.5rem;
}
footer .social .app img {
  height: 40px;
}
footer .social .media {
  display: flex;
  gap: 0.5rem;
}

.custom_presentation {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
.custom_presentation .visu {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
}
.custom_presentation .visu .wide {
  width: 400px;
  flex-shrink: 0;
}
.custom_presentation .visu .min {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 175px;
  flex-shrink: 0;
  align-items: flex-end;
}
.custom_presentation .visu .min img:nth-child(2),
.custom_presentation .visu .min a:nth-child(2) img {
  width: 85%;
  display: inline-block;
}
.custom_presentation .visu .min img:nth-child(3),
.custom_presentation .visu .min a:nth-child(3) img {
  width: 70%;
  display: inline-block;
}
.custom_presentation.midsize .visu {
  max-width: 500px;
}
.custom_presentation.midsize .visu .wide,
.custom_presentation.midsize .visu .min {
  width: 50%;
}

.custom_popup {
  display: none;
  border-radius: 1rem;
  padding: 1rem;
}
.custom_popup .container {
  max-height: 85vh;
  overflow: auto;
  padding: 0.5rem;
  margin: 1.5rem;
}

.list_missions {
  opacity: 0;
  width: 94%;
  margin: 0 auto 1.5rem;
  max-width: 1200px;
  text-align: center;
  justify-content: center;
}
.list_missions .mission {
  margin: 10px 15px 20px;
  min-width: 230px;
}
.list_missions .mission .content {
  display: inline-block;
  flex-shrink: 0;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1rem;
  text-align: center;
  gap: 0.5rem;
  margin: auto;
  width: 230px;
}
.list_missions .mission .name {
  color: #03818D;
  font-weight: bold;
  height: 50px;
  overflow: hidden;
  text-decoration: none;
}
.list_missions .mission .visu a {
  position: relative;
  height: 130px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.list_missions .mission .visu a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.list_missions .mission .place {
  text-align: center;
  font-style: italic;
}

.list_searched_recruitments {
  opacity: 0;
  max-width: 1350px;
  margin: 0 auto;
  width: 94%;
}
.list_searched_recruitments .recruitment {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  background-color: white;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  margin: 10px auto 20px;
}
.list_searched_recruitments .recruitment .content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.list_searched_recruitments .recruitment .content .header {
  height: 78px;
  overflow: hidden;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.list_searched_recruitments .recruitment .informations {
  min-height: 32px;
}

.listing_surveys:not(.no_survey) {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: left;
}
.listing_surveys:not(.no_survey) .survey {
  background-color: white;
  border-radius: 1rem;
  width: 333px;
  padding: 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: inherit;
}
.listing_surveys:not(.no_survey) .survey .visu {
  margin-top: 1rem;
}
.listing_surveys:not(.no_survey) .survey .visu svg path {
  fill: #03818D;
}
.listing_surveys:not(.no_survey) .survey .name {
  color: #3f4847;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-weight: 700;
}
.listing_surveys:not(.no_survey) .survey .infos_complt {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}
.listing_surveys:not(.no_survey) .survey .infos_complt label {
  color: rgb(68, 73, 93);
}
.listing_surveys:not(.no_survey) .survey .infos_complt .value {
  color: rgb(68, 73, 93);
  gap: 0.5rem;
}
.listing_surveys:not(.no_survey) .survey .reward,
.listing_surveys:not(.no_survey) .survey .length {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.listing_surveys:not(.no_survey) .survey .reward.custom {
  text-align: left;
}
.listing_surveys:not(.no_survey) .survey .reward.custom label {
  display: inline-block;
  margin-right: 0.7rem;
}
.listing_surveys:not(.no_survey) .survey .infos {
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
}

.listing_surveys.no_survey img {
  margin-bottom: 2rem;
}

.filter_choice {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  overflow: auto;
  justify-content: flex-start;
  padding: 1rem;
}
.filter_choice .donations,
.filter_choice .separation {
  border-right: 1px solid #3f4847;
  padding-right: 2rem;
}
.filter_choice .gifts {
  display: flex;
  gap: 1rem;
  margin: auto;
}
.filter_choice .links {
  display: flex;
  gap: 1rem;
}
.filter_choice a {
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.minipoll .answer {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}
.minipoll .answer .number {
  flex-shrink: 0;
  width: 35px;
  text-align: right;
}
.minipoll .answer .label {
  position: relative;
  flex: 1;
}
.minipoll .answer .label .barre {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  bottom: -2px;
  background-color: #e8deea;
  border-radius: 5px;
}
.minipoll .answer .label .text {
  position: relative;
  z-index: 2;
}
.minipoll .answered .answer {
  margin-bottom: 0.6rem;
}

.winners_list {
  width: 100%;
}
.winners_list tr td:nth-child(1) {
  width: 35%;
}
.winners_list tr td:nth-child(2) {
  width: 15%;
  text-align: center;
}
.winners_list tr td:nth-child(3) {
  width: 35%;
}
.winners_list tr td:nth-child(4) {
  width: 15%;
  text-align: center;
}
.winners_list tr:nth-child(1) td {
  border: 0;
}

.logged_display {
  display: flex;
  gap: 3rem;
}
.logged_display .left {
  width: 330px;
  padding: 0 1rem 1rem;
}
.logged_display .left .list_events .slick-dots {
  transform: translateY(145%);
}
.logged_display .left .list_events .slick-slide {
  margin: 0;
}
.logged_display .left .list_events img {
  border-radius: 1rem;
}
.logged_display .left .list_monthly_draw {
  max-width: 150px;
  margin: 0 auto;
}
.logged_display .left .list_monthly_draw .slick-dots {
  transform: translateY(130%);
}
.logged_display .left .list_monthly_draw img {
  max-height: 150px;
}
.logged_display .right {
  flex: 1;
  width: 1px;
}

#list_winners_monthly_draw .winner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #d5d5d5;
}
#list_winners_monthly_draw .winner:nth-last-child(1) {
  margin-bottom: 0;
  border: 0;
}
#list_winners_monthly_draw .winner .image {
  position: relative;
}
#list_winners_monthly_draw .winner .image img {
  max-height: 150px;
}
#list_winners_monthly_draw .winner .image .photo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#list_winners_monthly_draw .winner .image:hover .photo {
  opacity: 1;
}
#list_winners_monthly_draw .winner .texte {
  line-height: 1.6rem;
}

#form_popup_prize_choice {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
#form_popup_prize_choice .choixLot {
  position: relative;
  filter: drop-shadow(0px 4px 14px rgba(104, 37, 116, 0.09));
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  position: relative;
  max-width: 47%;
  cursor: pointer;
  transition: all ease 0.3s;
}
#form_popup_prize_choice .choixLot.active {
  border-color: #03818D;
  filter: drop-shadow(0px 4px 14px rgba(104, 37, 116, 0.4));
  border-width: 3px;
}
#form_popup_prize_choice .choixLot .name {
  height: 50px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #682574;
  color: white;
  font-size: 0.9rem;
}
#form_popup_prize_choice .choixLot .name span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#form_popup_prize_choice .choixLot input[type=radio] {
  display: none;
}

#password_requirements .inactive {
  color: #858585;
}
#password_requirements .active {
  color: #069306;
}

.content_submenu {
  font-size: 1.3rem;
  font-weight: 400;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  line-height: 110%;
}
.content_submenu a {
  color: #858585;
  text-decoration: none;
  position: relative;
}
.content_submenu a.current {
  color: #03818D;
}
.content_submenu a.current:after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  height: 1px;
  bottom: -10px;
  background-color: #03818D;
}

.profile_picture {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.logged_display .left .minipoll-slider .slick-dots {
  transform: translateY(260%);
}

.slickslider {
  position: relative;
}
.slickslider .slick-slide img {
  margin-right: 0.25rem;
}
.slickslider.simple .slick-slide {
  margin: 10px;
}
.slickslider.commentlist {
  max-width: 94%;
  margin: auto;
  max-height: inherit;
}
.slickslider.commentlist .slick-slide {
  margin: 10px 10px 15px;
}
.slickslider.commentlist .slick-track {
  display: flex !important;
  align-items: center;
}
.slickslider.commentlist .slick-slide {
  height: inherit !important;
}
.slickslider.list_events .slick-list {
  padding: 0;
}
.slickslider.list_events img {
  border-radius: 1rem;
}
.slickslider.listsurveys {
  width: 90%;
  margin: 0 auto 1.5rem;
}
.slickslider.listsurveys .survey {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 93%;
  color: #3f4847;
  text-decoration: none;
  padding: 1rem;
  margin: 12px 12px 20px;
  border-radius: 1rem;
}
.slickslider.listsurveys .survey .visu path {
  fill: #03818D;
}
.slickslider.listsurveys .survey .type,
.slickslider.listsurveys .survey .value,
.slickslider.listsurveys .survey .reward {
  display: inline-flex;
  gap: 0.5rem;
}
.slickslider.listsurveys .survey .infos_complt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}
.slickslider.listsurveys .survey .name {
  text-align: left;
  color: #3f4847;
  font-weight: 700;
}

.display_prenom {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  max-width: 350px;
  vertical-align: bottom;
}

.page.home #home_title {
  font-size: clamp(38px, 2.5vw, 46px);
}
.page.home #wide_visual {
  background: linear-gradient(90.88deg, #03818D 0.99%, rgba(115, 115, 115, 0) 74.69%), url("../img/content/home/homebkg2.webp") center;
  background-size: cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 4rem 10rem;
}
.page.home section {
  padding: 4rem 5rem;
}
.page.home #concept_steps {
  display: inline-flex;
  gap: 5rem;
  padding: 1.5rem 5rem;
}
.page.home .custom_btn {
  padding: 0.65rem 2.3rem;
}
.page.home .hiw_block {
  text-align: left;
  max-width: 378px;
  border-radius: 1.25rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  flex: 1 1 calc(25% - 2.5rem);
  /* 4 par ligne par défaut */
  max-width: calc(25% - 2.5rem);
}
.page.home .hiw_block .icon {
  margin-bottom: 1rem;
}
.page.home .hiw_block .icon img {
  max-height: 42px;
}
.page.home .hiw_block .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 100%;
  color: #3f4847;
}
.page.home .hiw_block .content {
  line-height: 28px;
  font-weight: 300;
}
.page.home .participate_block {
  margin: 4rem 0;
  max-width: 100%;
  flex-wrap: wrap;
}
.page.home .participate_block .part_contnair {
  max-width: 60%;
}
.page.home .participate_block .part_contnair .part {
  margin: 1rem 0;
}
.page.home .participate_block .part_contnair .part span {
  font-size: 1.375rem;
  font-weight: 600;
}
.page.home .swiper-button-prev::after,
.page.home .swiper-button-next::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  color: #03818D;
  transition: all 0.3s ease;
  font-size: 1.375rem;
  text-align: center;
}
.page.home .swiper-button-prev {
  left: -30px;
}
.page.home .swiper-button-next {
  right: -30px;
}
.page.home .swiperHome {
  padding: 1rem;
  cursor: grab;
}
.page.home .swiperHome .swiper-container-wrapper {
  position: relative;
}
.page.home .last_survey {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  border-radius: 36px;
}
.page.home .last_survey .title {
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.page.home .last_survey .content {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#customAppBanner {
  display: none;
  height: 85px;
  border-bottom: 1px solid #dedede;
  box-shadow: 0px 15px 10px -15px #111;
}
#customAppBanner #bannerContainer {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  color: #1d212e;
  max-width: 600px;
  margin: auto;
  position: relative;
  padding: 0.5rem 1rem;
}
#customAppBanner .icon {
  flex-shrink: 0;
}
#customAppBanner .icon img {
  height: 70px;
  max-width: 15vw;
}
#customAppBanner .infos {
  flex: 1;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
#customAppBanner .infos .desc {
  margin-top: 0.35rem;
}
#customAppBanner .cta {
  padding: 0.5rem;
}
#customAppBanner .cta a {
  color: rgb(91, 148, 252);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#customAppBanner .close {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
}
#customAppBanner .close svg {
  width: 25px;
}

.page.mystery-mission .infos_mission {
  line-height: 1.4rem;
}
.page.mystery-mission .mission_presentation {
  display: flex;
  gap: 2rem;
  flex-basis: 50%;
  margin-bottom: 2rem;
  align-items: center;
}
.page.mystery-mission .mission_presentation .visu {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
}
.page.mystery-mission .mission_presentation .visu .wide {
  width: 400px;
  flex-shrink: 0;
}
.page.mystery-mission .mission_presentation .visu .min {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 175px;
  flex-shrink: 0;
  align-items: flex-end;
}

.page.mystery-missions .presentation_missions {
  margin-bottom: 5rem;
}
.page.mystery-missions .presentation_missions:nth-last-child(1) {
  margin-bottom: 0;
}
.page.mystery-missions .presentation_missions .custom_presentation {
  margin-bottom: 5rem;
}
.page.mystery-missions .presentation_missions .custom_presentation:nth-last-child(1) {
  margin-bottom: 0;
}

.page.login {
  display: flex;
}
.page.login .main_title {
  margin-bottom: 2rem;
  margin-top: 0;
}
.page.login > section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page.who-are-we {
  font-size: 1.25rem;
}
.page.who-are-we ul li {
  list-style: none;
  padding-left: 1em;
}
.page.who-are-we ul li::before {
  content: "✓";
  color: #03818D;
  font-size: 1.125rem;
  display: inline-block;
  width: 1.25em;
  margin-left: -1em;
}
.page.who-are-we .presentation {
  display: flex;
  gap: 4rem;
  flex-basis: 50%;
  margin-bottom: 2rem;
  align-items: center;
}
.page.who-are-we .presentation span.main-color {
  font-weight: 400;
  margin-bottom: 2rem;
}
.page.who-are-we .presentation p {
  font-weight: 300;
  line-height: 28px;
}
.page.who-are-we .presentation p.firstpar {
  margin-top: 3rem;
}
.page.who-are-we .presentation .custom_btn {
  padding: 0.75rem 1.5rem;
}
.page.who-are-we .presentation h2 {
  font-weight: 600;
  font-size: 1.65rem;
  margin-bottom: 2rem;
  line-height: 100%;
  color: #3f4847;
}
.page.who-are-we .presentation .visu.display_desktop.normal {
  flex-direction: row;
}
.page.who-are-we .presentation img {
  border-radius: 30px;
}
.page.who-are-we .presentation .visu {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
}
.page.who-are-we .presentation .visu .wide {
  width: 745px;
  flex-shrink: 0;
  border-radius: 30px;
}
.page.who-are-we .presentation .visu .min {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 240px;
  flex-shrink: 0;
  align-items: center;
}
.page.who-are-we .presentation .visu .min a:nth-child(2) {
  width: 85%;
  display: inline-block;
}
.page.who-are-we #FAQ {
  background-color: #e4f4f2;
  padding: 2rem 0.5rem;
}
.page.who-are-we #FAQ p {
  font-size: 2rem;
  font-weight: 600;
  color: #3f4847;
}
.page.who-are-we #FAQ .pres {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.page.who-are-we #FAQ img:not(.first) {
  max-height: 64px;
}
.page.who-are-we #FAQ img.first {
  max-height: 217px;
}
.page.who-are-we #FAQ .displayMobile {
  display: none;
}
.page.who-are-we .references {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page.who-are-we #liste_faq .faq {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.page.who-are-we #liste_faq .faq .content {
  flex: 1;
}
.page.who-are-we #liste_faq .faq .visu {
  flex-shrink: 0;
}
.page.who-are-we #liste_faq .separator:nth-last-child(1) {
  display: none;
}

.page.logged_account {
  margin-left: 11rem;
  margin-top: 3rem;
  max-width: 75%;
}
.page.logged_account .part {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.page.logged_account .subtitle {
  margin: 1rem 0;
}
.page.logged_account .rows {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0.5rem;
}
.page.logged_account .rows .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 100%;
}
.page.logged_account .rows .row p {
  font-size: 1.375rem;
}
.page.logged_account .rows .row .inputdiabled {
  position: relative;
  max-width: 100%;
}
.page.logged_account .rows .row .inputdiabled .mask {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  margin: 0;
}
.page.logged_account .custom_btn {
  margin: 0.5rem 0 0 0;
}
.page.logged_account .message {
  position: absolute;
  transform: translateY(28px);
}

.page.profiles_questionnaires .main_title {
  margin-top: inherit;
  color: #03818D;
}
.page.profiles_questionnaires .barre_progression {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.page.profiles_questionnaires .barre_progression .barre_fond {
  position: relative;
}
.page.profiles_questionnaires .barre_progression .barre_fond .barre_avancement {
  position: absolute;
  display: block;
  height: 100%;
}
.page.profiles_questionnaires #main_content {
  max-width: 1080px;
  margin: 0 auto;
}
.page.profiles_questionnaires #main_content #intro {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 125%;
}
.page.profiles_questionnaires #main_content .intitule .libelleQuestion {
  font-size: 1.375rem;
  font-weight: 600;
}
.page.profiles_questionnaires #main_content .content {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.page.profiles_questionnaires #main_content input:not(.custom_btn) {
  width: 1rem;
  height: 1rem;
  accent-color: #03818D;
  margin-right: 0.5rem;
}
.page.profiles_questionnaires #main_content .center {
  text-align: center;
}
.page.profiles_questionnaires #main_content input.custom_btn {
  width: inherit;
  margin: 0 auto;
}
.page.profiles_questionnaires #main_content input[type=radio] {
  -moz-appearance: radio;
       appearance: radio;
  -webkit-appearance: radio;
}
.page.profiles_questionnaires #main_content input[type=checkbox] {
  -moz-appearance: checkbox;
       appearance: checkbox;
  -webkit-appearance: checkbox;
}
.page.profiles_questionnaires #main_content input[type=text]:not(.Precision) {
  height: inherit;
  width: 34.375rem;
}
.page.profiles_questionnaires #main_content input[type=text].Precision {
  height: 28px;
  margin-left: 1rem;
  color: #44495d;
}
.page.profiles_questionnaires .list_profiles .container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.page.profiles_questionnaires .list_profiles .container .profile {
  flex-basis: 150px;
  text-decoration: none;
}
.page.profiles_questionnaires .list_profiles .container .profile.blocked svg path {
  fill: #858585;
}
.page.profiles_questionnaires .list_profiles .container .profile.blocked .name {
  color: #858585;
}
.page.profiles_questionnaires .list_profiles .container .profile.blocked .text {
  background-color: #858585;
  color: white;
}
.page.profiles_questionnaires .list_profiles .container .profile.unvailable svg path {
  fill: #d5d5d5;
}
.page.profiles_questionnaires .list_profiles .container .profile.unvailable .name {
  color: #d5d5d5;
}
.page.profiles_questionnaires .list_profiles .container .profile.unvailable .text {
  background-color: #d5d5d5;
  color: #858585;
}
.page.profiles_questionnaires .list_profiles .container .profile.available svg path {
  fill: #03818D;
}
.page.profiles_questionnaires .list_profiles .container .profile.available .name {
  color: #03818D;
}
.page.profiles_questionnaires .list_profiles .container .profile.available .text {
  background-color: #03818D;
  color: white;
}
.page.profiles_questionnaires .list_profiles .container .profile .name {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #682574;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  text-align: center;
}
.page.profiles_questionnaires .list_profiles .container .profile .visual {
  display: inline-flex;
  flex-direction: column;
  width: 140px;
  height: 140px;
  padding: 1rem;
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 1rem;
  max-width: 100%;
}
.page.profiles_questionnaires .list_profiles .container .profile .text {
  font-size: 0.85rem;
  padding: 0.2rem;
  border-radius: 1rem;
  display: block;
  width: 100%;
  text-align: center;
}

.page.surveys .main_title {
  margin-bottom: 2rem;
}
.page.surveys .noinfos {
  max-width: 75%;
  margin: 0 auto;
}
.page.surveys .noinfos p,
.page.surveys .noinfos span {
  font-size: 1.375rem;
  color: #3f4847;
}
.page.surveys .noinfos p {
  margin: 2rem 0;
  line-height: 130%;
}
.page.surveys .noinfos span.color {
  color: #03818D;
}
.page.surveys .noinfos p.avertissement {
  font-weight: 600;
  color: #bf0909;
  margin-bottom: 4rem;
}
.page.surveys .message_update_profil {
  font-size: 1.125rem;
  margin-top: 10rem;
}
.page.surveys .right {
  padding-left: 5rem;
}
.page.surveys .custom_tabs .list_monthly_draw img {
  max-height: 150px;
  margin: 0 auto;
}
.page.surveys .infos_complt {
  font-size: 1.125rem;
  color: #3f4847;
  min-height: 160px;
}

.page.shop .main_title {
  margin-top: 0rem;
}
.page.shop .logged_display .left {
  width: 500px;
}
.page.shop #gift_cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.page.shop #gift_cards .card {
  flex-basis: 30%;
  text-align: center;
  color: #3f4847;
  text-decoration: none;
  padding: 1rem;
  border-radius: 1rem;
  transition: all ease 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page.shop #gift_cards .card.inactive {
  opacity: 0.8;
}
.page.shop #gift_cards .card.inactive img {
  filter: grayscale(1);
}
.page.shop #gift_cards .card .visual img {
  max-width: 200px;
  filter: drop-shadow(0px 4px 14px rgba(104, 37, 116, 0.09));
  transition: all ease 0.3s;
}
.page.shop #gift_cards .card .name {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1rem;
}
.page.shop #gift_cards .card .name:after {
  content: "";
  display: block;
  max-width: 80px;
  margin: 1rem auto;
  height: 1px;
  background-color: #3f4847;
}
.page.shop #gift_cards .card:not(.inactive):hover .visual img {
  filter: drop-shadow(0px 4px 14px rgba(104, 37, 116, 0.2));
}
.page.shop #associations {
  display: flex;
  gap: 8rem;
  align-items: stretch;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page.shop #associations .association {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.page.shop #associations .association .image {
  max-width: 323px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 160px;
}
.page.shop #associations .association .image img {
  max-height: 129px;
}
.page.shop #associations .association .description {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}
.page.shop #associations .association .description .top {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-direction: column;
}
.page.shop #associations .association .description .titre {
  font-weight: 700;
}

.page.shopdetails {
  display: flex;
  /* Smartphones (portrait and landscape) ----------- */
}
.page.shopdetails .volets {
  flex: 1;
  display: flex;
}
.page.shopdetails .volets .volet_left {
  background-color: #DBDBDB;
  width: 40%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.page.shopdetails .volets .volet_left .preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page.shopdetails .volets .volet_left .preview.mission .visual {
  max-height: 50vh;
  overflow: hidden;
  position: relative;
  height: 375px;
  border-radius: 1rem;
  text-align: center;
}
.page.shopdetails .volets .volet_left .preview.mission .visual img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.page.shopdetails .volets .volet_left .preview #gift_cards {
  max-width: 80%;
}
.page.shopdetails .volets .volet_left .preview #gift_cards .conditions_mission {
  background: #e5e6e6;
  padding: 0.5rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  line-height: 1.1rem;
}
.page.shopdetails .volets .volet_right {
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.page.shopdetails .volets .volet_right form {
  width: 100%;
  max-width: 500px;
}
.page.shopdetails .volets .volet_right .summary_reward {
  margin-bottom: 2rem;
}
.page.shopdetails .volets .volet_right .summary_reward .line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.page.shopdetails .volets .volet_right .summary_reward .line.product {
  font-weight: 400;
  color: #03818D;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #03818D;
}
.page.shopdetails .volets .volet_right #reward_address {
  background-color: #DBDBDB;
  border-radius: 1rem;
  padding: 1rem;
  font-weight: 400;
}
.page.shopdetails .volets .volet_right #reward_address a {
  display: inline-block;
  margin-top: 0.5rem;
}
.page.shopdetails #reward_form #inputs_conversion {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.page.shopdetails #reward_form #inputs_conversion #nb_points_paneliste {
  display: none;
}
.page.shopdetails #reward_form #inputs_conversion img.conversion {
  max-width: 20px;
}
.page.shopdetails #reward_form #inputs_conversion .input_label {
  position: relative;
}
.page.shopdetails #reward_form #inputs_conversion .input_label input {
  margin-bottom: 0;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  width: 250px;
  padding: 5px 10px;
  resize: none;
}
.page.shopdetails #reward_form #inputs_conversion .input_label span {
  position: absolute;
  right: 10px;
  pointer-events: none;
  top: 2px;
  bottom: 2px;
  display: flex;
  align-items: center;
  background-color: white;
  padding-left: 10px;
}
@media only screen and (max-width: 490px) {
  .page.shopdetails #reward_form #inputs_conversion {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .page.shopdetails #reward_form #inputs_conversion .input_label {
    width: 100%;
  }
}

.page.my-history p.no_survey {
  padding: 1rem 0 2rem 0;
  margin: 0;
}
.page.my-history .volet_right {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 1rem;
}
.page.my-history ul {
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 0;
  position: relative;
  display: flex;
  gap: 1px;
  margin-left: 1rem;
}
.page.my-history ul li {
  position: relative;
  transition: 0.5s all ease;
  cursor: pointer;
  list-style-type: none;
  padding: 1rem 0.5rem;
  margin-bottom: 0;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 0;
  color: #3f4847;
  background-color: white;
}
.page.my-history ul li.active {
  color: #03818D;
  z-index: 8;
}
.page.my-history ul .indicator {
  position: absolute;
  bottom: 0;
  height: 5px;
  background: #03818D;
  border-radius: 3px;
  transition: all 0.3s ease;
  z-index: 9;
}
.page.my-history #block_table_history_dedo,
.page.my-history #block_table_history_surveys {
  position: relative;
}
.page.my-history table {
  width: 100%;
}
.page.my-history table .label {
  position: relative;
}
.page.my-history table .info_icon_container {
  width: clamp(17px, 0.8vmin, 25px);
  height: clamp(17px, 0.8vmin, 25px);
  padding: 0.25rem;
  background-color: white;
  color: #03818D;
  position: absolute;
  top: -34%;
  right: clamp(-25px, 1vw, -22px);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}
.page.my-history table .info_icon_container .fa-solid.fa-question {
  font-size: 10px;
}
.page.my-history table .info_icon_container:hover .tooltip {
  display: block;
}
.page.my-history table .tooltip {
  display: none;
  position: absolute;
  left: 20px;
  top: 0;
  padding: 1rem;
  font-style: italic;
  font-size: 0.75rem;
  color: #212121;
  background-color: #d5daf4;
  width: 16rem;
}
.page.my-history table thead {
  background-color: #03818D;
  width: 100%;
}
.page.my-history table thead th {
  color: white;
  padding: 0.8rem 0.25rem;
}
.page.my-history table thead th:first-child {
  border-top-left-radius: 1rem;
}
.page.my-history table thead th:last-child {
  border-top-right-radius: 1rem;
}

.page.referal #steps_referal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  color: #03818D;
  padding: 1.5rem 0;
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-weight: 400;
  position: relative;
}
.page.referal #steps_referal .step {
  max-width: 25%;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 1rem;
  line-height: 1.25;
}
.page.referal #steps_referal .step.step3 {
  max-width: 40%;
}
.page.referal #steps_referal .step .desc {
  font-weight: 300;
}
.page.referal #steps_referal:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  height: 1px;
  background-color: #03818D;
  z-index: 1;
}
.page.referal #list_referals {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.page.referal #list_referals .referal {
  display: block;
  padding: 5px 0.5rem;
  border-bottom: 1px solid #ccc;
  font-style: italic;
}
.page.referal #list_referals .referal .hover_referal {
  margin-left: 10px;
  position: relative;
}
.page.referal #list_referals .referal .hover_referal .text {
  position: absolute;
  opacity: 0;
  transition: opacity ease 0.3s;
  white-space: nowrap;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
  background-color: #03818D;
  color: white;
  left: 110%;
  font-size: 0.75rem;
}
.page.referal #list_referals .referal .hover_referal:hover .text {
  opacity: 1;
}
.page.referal #balance_referal_points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page.my-account .main_title {
  font-size: 1.75rem;
}
.page.my-account .subtitle {
  font-size: 1.375rem;
}
.page.my-account #preview_new_image {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.page.my-account #preview_new_image img {
  border-radius: 100%;
}
.page.my-account input,
.page.my-account select {
  font-size: 1.175rem;
}
.page.my-account input:disabled,
.page.my-account select:disabled {
  cursor: not-allowed;
}

.page.community .presentation {
  display: flex;
  gap: 4rem;
}
.page.community .presentation .points {
  flex: 1;
}
.page.community .presentation .events {
  width: 40%;
}
.page.community .presentation .events .liste_lots img {
  max-height: 150px;
}

.page.monthly-draw #steps_monthly_draw .container {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.page.monthly-draw #steps_monthly_draw .container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  margin: auto;
  background-color: #03818D;
  z-index: 1;
}
.page.monthly-draw #steps_monthly_draw .step {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 260px;
  background: white;
  padding: 0 20px;
  z-index: 2;
}
.page.monthly-draw .visu .col .image {
  position: relative;
  filter: drop-shadow(0px 4px 14px rgba(104, 37, 116, 0.09));
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  overflow: hidden;
}
.page.monthly-draw .visu .col .image .name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  text-align: center;
  background-color: #03818D;
  color: white;
  font-size: 0.9rem;
}
.page.monthly-draw .visu .col .image .name .item {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page.contact h2 {
  font-size: 1.625rem;
  font-weight: 600;
}
.page.contact form {
  max-width: 65%;
}
.page.contact p {
  font-size: 1.375rem;
  line-height: 150%;
}
.page.contact p a {
  font-weight: 600;
}

.page.contact.log #liste_messages_log {
  max-height: 400px;
  border: 1px solid #3f4847;
  border-radius: 10px;
  padding: 1rem;
  overflow: scroll;
  overflow-x: hidden;
}
.page.contact.log #liste_messages_log .message {
  border: 1px solid;
  border-radius: 10px;
  padding: 1rem;
  width: 75%;
  margin: 0.5rem 0;
  overflow: hidden;
}
.page.contact.log #liste_messages_log .message.user {
  color: #03818D;
  margin-left: 25%;
}
.page.contact.log #liste_messages_log .message .entete {
  margin-bottom: 0.5rem;
}
.page.contact.log #liste_messages_log .message img {
  max-width: 150px;
}
.page.contact.log #form_contact_log {
  border: 1px solid #3f4847;
  border-radius: 10px;
  margin-top: 0.5rem;
}
.page.contact.log #form_contact_log #container_contact {
  display: flex;
}
.page.contact.log #form_contact_log #container_contact .contact_left {
  flex: 1;
  gap: 1rem;
}
.page.contact.log #form_contact_log #container_contact .contact_left textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: none;
  resize: none;
  background-color: transparent;
  padding: 1rem;
  border-radius: 10px;
}
.page.contact.log #form_contact_log #container_contact .contact_left textarea:focus {
  outline: none;
}
.page.contact.log #form_contact_log #container_contact .contact_right {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.page.contact.log #form_contact_log #container_contact .contact_right #bloc_choix_image {
  display: flex;
  gap: 0.5rem;
}
.page.contact.log #form_contact_log #container_contact .contact_right #add_file {
  display: none;
}
.page.contact.log #form_contact_log #container_contact .contact_right #recap_file {
  display: none;
}
.page.contact.log #form_contact_log #container_contact .contact_right #recap_file img {
  max-width: 100px;
  max-height: 100px;
}
.page.contact.log #form_contact_log #container_contact .contact_right button[type=submit] {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.page.pro_area {
  font-size: 1.25rem;
}
.page.pro_area .middle_content {
  max-width: 1600px;
}
.page.pro_area section:nth-child(2) {
  padding: inherit;
}
.page.pro_area .visu {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.page.pro_area .visu img:not(.picto) {
  border-radius: 30px;
}
.page.pro_area .visu p {
  margin: inherit !important;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 150%;
}
.page.pro_area .visu p.info {
  font-weight: 600;
  font-size: 2.1rem;
}
.page.pro_area .lightblue {
  padding: 1rem;
  background-color: #e4f4f2;
}
.page.pro_area #qualquant h2 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 130%;
}
.page.pro_area #qualquant p {
  line-height: 150%;
  padding: 0.1rem 0;
}
.page.pro_area #qualquant p .main-color {
  font-weight: 600;
}
.page.pro_area #qualquant a {
  font-weight: 600;
}
.page.pro_area #FAQ {
  background-color: #e4f4f2;
  padding: 2rem 0.5rem;
}
.page.pro_area #FAQ p {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3f4847;
}
.page.pro_area #FAQ .pres {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.page.pro_area #FAQ img:not(.first) {
  max-height: 99px;
}
.page.pro_area #FAQ img.first {
  max-height: 217px;
}
.page.pro_area #FAQ .displayMobile {
  display: none;
}
.page.pro_area .middle_content .main_title {
  color: #212121;
  margin-bottom: 2.4rem;
}
.page.pro_area #listing_services {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.page.pro_area #listing_services .service {
  position: relative;
  border-radius: 1.5rem;
  text-decoration: none;
  max-width: 299px;
  width: 299px;
  min-height: 338px;
}
.page.pro_area #listing_services .service .filter {
  position: absolute;
  background-color: rgba(215, 215, 215, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.page.pro_area #listing_services .service:hover .filter {
  background-color: rgba(215, 215, 215, 0.1);
}
.page.pro_area #listing_services .service .infos {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  height: 180px;
  padding: 0 1rem;
  display: inline-block;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
}
.page.pro_area #listing_services .service .infos p {
  font-weight: 700;
  font-size: 1.625rem;
}
.page.pro_area #listing_services .service .infos span {
  font-weight: 400;
  line-height: 150%;
  color: #3f4847;
  font-size: 1.25rem;
}
.page.pro_area #listing_services .service:hover .infos {
  height: 190px;
}

.page.register #message_erreur {
  color: #bf0909;
  margin-bottom: 1rem;
}
.page.register #message_info {
  margin-bottom: 2rem;
  font-weight: 500;
}
.page.register section.left-menu {
  max-width: 33%;
  padding: 2rem 3rem;
  background-color: #03818D;
  height: 100%;
  color: #ffffff;
  height: 1694px;
  position: sticky;
  top: 0;
  height: 100vh;
  /* pour s'assurer que ça couvre toute la hauteur */
  overflow-y: hidden;
}
.page.register section.left-menu h1 {
  font-weight: 600;
  font-size: 1.4rem;
  padding: 2rem 0 1rem 0;
}
.page.register section.left-menu h3 {
  line-height: 120%;
}
.page.register section.left-menu .steps {
  margin-top: 2rem;
}
.page.register section.left-menu .steps .step {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.6rem;
  border: 2px solid #ffffff;
  border-radius: 36px;
  color: #ffffff;
  padding: 1rem;
  position: relative;
  transition: 0.5s all ease;
}
.page.register section.left-menu .steps .step.active {
  background-color: #ffffff;
  color: #03818D;
}
.page.register section.left-menu .steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 2px;
  height: 40px;
  background-color: #fff;
  transform: translateX(-50%);
}
.page.register section.left-menu p {
  font-weight: 600;
}
.page.register section.informations {
  max-width: 50%;
}
.page.register section.informations.step2 a, .page.register section.informations.step3 a {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page.register section.informations.step2 p, .page.register section.informations.step3 p {
  margin-top: 2rem;
}
.page.register section.informations.step2 div.info,
.page.register section.informations.step2 #message_waiting, .page.register section.informations.step3 div.info,
.page.register section.informations.step3 #message_waiting {
  font-size: 0.9rem;
  font-weight: 500;
  color: #03818D;
  margin-top: 1rem;
  display: block;
}
.page.register section.informations h2 {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 120%;
}
.page.register section.informations input,
.page.register section.informations select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 1rem;
  border-radius: 32px;
  width: 374px;
  max-width: 100%;
  color: #3f4847;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 500;
}
.page.register section.informations input.long,
.page.register section.informations select.long {
  width: 777px;
}
.page.register section.informations input.erreur,
.page.register section.informations select.erreur {
  border-color: #bf0909;
}
.page.register section.informations input:-moz-read-only {
  background-color: lightgrey;
  cursor: not-allowed;
}
.page.register section.informations input:read-only {
  background-color: lightgrey;
  cursor: not-allowed;
}
.page.register section.informations input:-moz-read-only:focus-visible {
  border: none;
  outline: none;
}
.page.register section.informations input:read-only:focus-visible {
  border: none;
  outline: none;
}
.page.register section.informations select option {
  color: #3f4847;
}
.page.register section.informations .block {
  margin-bottom: 2rem;
}
.page.register section.informations .block p {
  font-weight: 600;
}
.page.register section.informations .block .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page.register section.informations .block .password-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.page.register section.informations .block .input-phone-group {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
}
.page.register section.informations .block .input-phone-group .phone-prefix {
  position: absolute;
  left: 10px;
  color: #555;
  font-size: 0.9rem;
  pointer-events: none;
  background-color: #03818D;
  color: #fff;
  padding: 0.5rem;
  border-radius: 26px;
}
.page.register section.informations .block .input-phone-group input[type=tel] {
  padding-left: 80px;
  /* Espace pour laisser la place à +33 */
}

.page.policy ul li {
  list-style-type: none;
}

.page.legal-mentions {
  line-height: 150%;
  padding: 3rem 2rem;
}
.page.legal-mentions .main_title {
  margin-bottom: 2rem;
}
.page.legal-mentions h2 {
  font-size: 1.5rem;
}

.block-e-survey {
  display: flex !important;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.block-e-survey .img-to-hide {
  display: none;
}
.block-e-survey .bonus {
  display: none;
}
.block-e-survey.higher .basic {
  display: none;
}
.block-e-survey.higher .bonus {
  display: block;
}
.block-e-survey.higher.large .img-to-hide img {
  max-width: 200px;
}
.block-e-survey.higher .img-to-hide {
  display: block;
}
.block-e-survey > div img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}

.minipoll-slider .slick-track {
  display: flex;
}
.minipoll-slider .block-e-survey {
  height: auto;
}

.display_mobile .minipoll-slider .slick-dots {
  position: relative;
  transform: none;
}

.fancybox_popup {
  display: none;
  width: 100%;
  max-width: 1000px;
  max-height: 800px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}
.fancybox_popup .content_popup {
  max-height: 700px;
  overflow: auto;
  padding: 0.5rem;
}

#block_referral #link_referal {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  align-items: center;
  margin: 0 auto 2.5rem;
}
#block_referral #link_referal #input_link {
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  flex: 1;
  padding: 5px 35px 5px 10px;
  background-color: white;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
#block_referral #link_referal #input_link .link {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
#block_referral #link_referal #input_link button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: white;
  appearance: none;
  flex-shrink: 0;
}
#block_referral #link_referal #input_link button .tooltip {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  transform: translate(0%, -120%);
  background-color: rgba(29, 33, 46, 0.8);
  white-space: nowrap;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}
#block_referral #link_referal #input_link button img {
  width: 30px;
}
#block_referral #share_social_media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
#block_referral #share_social_media a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}
#block_referral #share_social_media a img {
  height: 40px;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.m-xs {
  margin: 0.25rem;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mr-xs {
  margin-right: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.ml-xs {
  margin-left: 0.25rem;
}

.p-xs {
  padding: 0.25rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pr-xs {
  padding-right: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.pl-xs {
  padding-left: 0.25rem;
}

.m-s {
  margin: 0.5rem;
}

.mt-s {
  margin-top: 0.5rem;
}

.mr-s {
  margin-right: 0.5rem;
}

.mb-s {
  margin-bottom: 0.5rem;
}

.ml-s {
  margin-left: 0.5rem;
}

.p-s {
  padding: 0.5rem;
}

.pt-s {
  padding-top: 0.5rem;
}

.pr-s {
  padding-right: 0.5rem;
}

.pb-s {
  padding-bottom: 0.5rem;
}

.pl-s {
  padding-left: 0.5rem;
}

.m-m {
  margin: 1rem;
}

.mt-m {
  margin-top: 1rem;
}

.mr-m {
  margin-right: 1rem;
}

.mb-m {
  margin-bottom: 1rem;
}

.ml-m {
  margin-left: 1rem;
}

.p-m {
  padding: 1rem;
}

.pt-m {
  padding-top: 1rem;
}

.pr-m {
  padding-right: 1rem;
}

.pb-m {
  padding-bottom: 1rem;
}

.pl-m {
  padding-left: 1rem;
}

.m-l {
  margin: 1.5rem;
}

.mt-l {
  margin-top: 1.5rem;
}

.mr-l {
  margin-right: 1.5rem;
}

.mb-l {
  margin-bottom: 1.5rem;
}

.ml-l {
  margin-left: 1.5rem;
}

.p-l {
  padding: 1.5rem;
}

.pt-l {
  padding-top: 1.5rem;
}

.pr-l {
  padding-right: 1.5rem;
}

.pb-l {
  padding-bottom: 1.5rem;
}

.pl-l {
  padding-left: 1.5rem;
}

.m-xl {
  margin: 2.5rem;
}

.mt-xl {
  margin-top: 2.5rem;
}

.mr-xl {
  margin-right: 2.5rem;
}

.mb-xl {
  margin-bottom: 2.5rem;
}

.ml-xl {
  margin-left: 2.5rem;
}

.p-xl {
  padding: 2.5rem;
}

.pt-xl {
  padding-top: 2.5rem;
}

.pr-xl {
  padding-right: 2.5rem;
}

.pb-xl {
  padding-bottom: 2.5rem;
}

.pl-xl {
  padding-left: 2.5rem;
}

.m-xxl {
  margin: 3.5rem;
}

.mt-xxl {
  margin-top: 3.5rem;
}

.mr-xxl {
  margin-right: 3.5rem;
}

.mb-xxl {
  margin-bottom: 3.5rem;
}

.ml-xxl {
  margin-left: 3.5rem;
}

.p-xxl {
  padding: 3.5rem;
}

.pt-xxl {
  padding-top: 3.5rem;
}

.pr-xxl {
  padding-right: 3.5rem;
}

.pb-xxl {
  padding-bottom: 3.5rem;
}

.pl-xxl {
  padding-left: 3.5rem;
}

.m-xxxl {
  margin: 5rem;
}

.mt-xxxl {
  margin-top: 5rem;
}

.mr-xxxl {
  margin-right: 5rem;
}

.mb-xxxl {
  margin-bottom: 5rem;
}

.ml-xxxl {
  margin-left: 5rem;
}

.p-xxxl {
  padding: 5rem;
}

.pt-xxxl {
  padding-top: 5rem;
}

.pr-xxxl {
  padding-right: 5rem;
}

.pb-xxxl {
  padding-bottom: 5rem;
}

.pl-xxxl {
  padding-left: 5rem;
}

@media only screen and (max-width: 1024px) {
  .m-m-0 {
    margin: 0;
  }
  .m-mt-0 {
    margin-top: 0;
  }
  .m-mr-0 {
    margin-right: 0;
  }
  .m-mb-0 {
    margin-bottom: 0;
  }
  .m-ml-0 {
    margin-left: 0;
  }
  .m-p-0 {
    padding: 0;
  }
  .m-pt-0 {
    padding-top: 0;
  }
  .m-pr-0 {
    padding-right: 0;
  }
  .m-pb-0 {
    padding-bottom: 0;
  }
  .m-pl-0 {
    padding-left: 0;
  }
  .m-m-xs {
    margin: 0.25rem;
  }
  .m-mt-xs {
    margin-top: 0.25rem;
  }
  .m-mr-xs {
    margin-right: 0.25rem;
  }
  .m-mb-xs {
    margin-bottom: 0.25rem;
  }
  .m-ml-xs {
    margin-left: 0.25rem;
  }
  .m-p-xs {
    padding: 0.25rem;
  }
  .m-pt-xs {
    padding-top: 0.25rem;
  }
  .m-pr-xs {
    padding-right: 0.25rem;
  }
  .m-pb-xs {
    padding-bottom: 0.25rem;
  }
  .m-pl-xs {
    padding-left: 0.25rem;
  }
  .m-m-s {
    margin: 0.5rem;
  }
  .m-mt-s {
    margin-top: 0.5rem;
  }
  .m-mr-s {
    margin-right: 0.5rem;
  }
  .m-mb-s {
    margin-bottom: 0.5rem;
  }
  .m-ml-s {
    margin-left: 0.5rem;
  }
  .m-p-s {
    padding: 0.5rem;
  }
  .m-pt-s {
    padding-top: 0.5rem;
  }
  .m-pr-s {
    padding-right: 0.5rem;
  }
  .m-pb-s {
    padding-bottom: 0.5rem;
  }
  .m-pl-s {
    padding-left: 0.5rem;
  }
  .m-m-m {
    margin: 1rem;
  }
  .m-mt-m {
    margin-top: 1rem;
  }
  .m-mr-m {
    margin-right: 1rem;
  }
  .m-mb-m {
    margin-bottom: 1rem;
  }
  .m-ml-m {
    margin-left: 1rem;
  }
  .m-p-m {
    padding: 1rem;
  }
  .m-pt-m {
    padding-top: 1rem;
  }
  .m-pr-m {
    padding-right: 1rem;
  }
  .m-pb-m {
    padding-bottom: 1rem;
  }
  .m-pl-m {
    padding-left: 1rem;
  }
  .m-m-l {
    margin: 1.5rem;
  }
  .m-mt-l {
    margin-top: 1.5rem;
  }
  .m-mr-l {
    margin-right: 1.5rem;
  }
  .m-mb-l {
    margin-bottom: 1.5rem;
  }
  .m-ml-l {
    margin-left: 1.5rem;
  }
  .m-p-l {
    padding: 1.5rem;
  }
  .m-pt-l {
    padding-top: 1.5rem;
  }
  .m-pr-l {
    padding-right: 1.5rem;
  }
  .m-pb-l {
    padding-bottom: 1.5rem;
  }
  .m-pl-l {
    padding-left: 1.5rem;
  }
  .m-m-xl {
    margin: 2.5rem;
  }
  .m-mt-xl {
    margin-top: 2.5rem;
  }
  .m-mr-xl {
    margin-right: 2.5rem;
  }
  .m-mb-xl {
    margin-bottom: 2.5rem;
  }
  .m-ml-xl {
    margin-left: 2.5rem;
  }
  .m-p-xl {
    padding: 2.5rem;
  }
  .m-pt-xl {
    padding-top: 2.5rem;
  }
  .m-pr-xl {
    padding-right: 2.5rem;
  }
  .m-pb-xl {
    padding-bottom: 2.5rem;
  }
  .m-pl-xl {
    padding-left: 2.5rem;
  }
  .m-m-xxl {
    margin: 3.5rem;
  }
  .m-mt-xxl {
    margin-top: 3.5rem;
  }
  .m-mr-xxl {
    margin-right: 3.5rem;
  }
  .m-mb-xxl {
    margin-bottom: 3.5rem;
  }
  .m-ml-xxl {
    margin-left: 3.5rem;
  }
  .m-p-xxl {
    padding: 3.5rem;
  }
  .m-pt-xxl {
    padding-top: 3.5rem;
  }
  .m-pr-xxl {
    padding-right: 3.5rem;
  }
  .m-pb-xxl {
    padding-bottom: 3.5rem;
  }
  .m-pl-xxl {
    padding-left: 3.5rem;
  }
  .m-m-xxxl {
    margin: 5rem;
  }
  .m-mt-xxxl {
    margin-top: 5rem;
  }
  .m-mr-xxxl {
    margin-right: 5rem;
  }
  .m-mb-xxxl {
    margin-bottom: 5rem;
  }
  .m-ml-xxxl {
    margin-left: 5rem;
  }
  .m-p-xxxl {
    padding: 5rem;
  }
  .m-pt-xxxl {
    padding-top: 5rem;
  }
  .m-pr-xxxl {
    padding-right: 5rem;
  }
  .m-pb-xxxl {
    padding-bottom: 5rem;
  }
  .m-pl-xxxl {
    padding-left: 5rem;
  }
}
.fs-0 {
  font-size: 0rem;
}

.fs-0-1 {
  font-size: 0.1rem;
  line-height: calc(0.1rem + 20%);
}

.fs-0-2 {
  font-size: 0.2rem;
  line-height: calc(0.2rem + 20%);
}

.fs-0-3 {
  font-size: 0.3rem;
  line-height: calc(0.3rem + 20%);
}

.fs-0-4 {
  font-size: 0.4rem;
  line-height: calc(0.4rem + 20%);
}

.fs-0-5 {
  font-size: 0.5rem;
  line-height: calc(0.5rem + 20%);
}

.fs-0-6 {
  font-size: 0.6rem;
  line-height: calc(0.6rem + 20%);
}

.fs-0-7 {
  font-size: 0.7rem;
  line-height: calc(0.7rem + 20%);
}

.fs-0-8 {
  font-size: 0.8rem;
  line-height: calc(0.8rem + 20%);
}

.fs-0-9 {
  font-size: 0.9rem;
  line-height: calc(0.9rem + 20%);
}

.fs-1 {
  font-size: 1rem;
}

.fs-1-1 {
  font-size: 1.1rem;
  line-height: calc(1.1rem + 20%);
}

.fs-1-2 {
  font-size: 1.2rem;
  line-height: calc(1.2rem + 20%);
}

.fs-1-3 {
  font-size: 1.3rem;
  line-height: calc(1.3rem + 20%);
}

.fs-1-4 {
  font-size: 1.4rem;
  line-height: calc(1.4rem + 20%);
}

.fs-1-5 {
  font-size: 1.5rem;
  line-height: calc(1.5rem + 20%);
}

.fs-1-6 {
  font-size: 1.6rem;
  line-height: calc(1.6rem + 20%);
}

.fs-1-7 {
  font-size: 1.7rem;
  line-height: calc(1.7rem + 20%);
}

.fs-1-8 {
  font-size: 1.8rem;
  line-height: calc(1.8rem + 20%);
}

.fs-1-9 {
  font-size: 1.9rem;
  line-height: calc(1.9rem + 20%);
}

.fs-2 {
  font-size: 2rem;
}

.fs-2-1 {
  font-size: 2.1rem;
  line-height: calc(2.1rem + 20%);
}

.fs-2-2 {
  font-size: 2.2rem;
  line-height: calc(2.2rem + 20%);
}

.fs-2-3 {
  font-size: 2.3rem;
  line-height: calc(2.3rem + 20%);
}

.fs-2-4 {
  font-size: 2.4rem;
  line-height: calc(2.4rem + 20%);
}

.fs-2-5 {
  font-size: 2.5rem;
  line-height: calc(2.5rem + 20%);
}

.fs-2-6 {
  font-size: 2.6rem;
  line-height: calc(2.6rem + 20%);
}

.fs-2-7 {
  font-size: 2.7rem;
  line-height: calc(2.7rem + 20%);
}

.fs-2-8 {
  font-size: 2.8rem;
  line-height: calc(2.8rem + 20%);
}

.fs-2-9 {
  font-size: 2.9rem;
  line-height: calc(2.9rem + 20%);
}

.fs-3 {
  font-size: 3rem;
}

.fs-3-1 {
  font-size: 3.1rem;
  line-height: calc(3.1rem + 20%);
}

.fs-3-2 {
  font-size: 3.2rem;
  line-height: calc(3.2rem + 20%);
}

.fs-3-3 {
  font-size: 3.3rem;
  line-height: calc(3.3rem + 20%);
}

.fs-3-4 {
  font-size: 3.4rem;
  line-height: calc(3.4rem + 20%);
}

.fs-3-5 {
  font-size: 3.5rem;
  line-height: calc(3.5rem + 20%);
}

.fs-3-6 {
  font-size: 3.6rem;
  line-height: calc(3.6rem + 20%);
}

.fs-3-7 {
  font-size: 3.7rem;
  line-height: calc(3.7rem + 20%);
}

.fs-3-8 {
  font-size: 3.8rem;
  line-height: calc(3.8rem + 20%);
}

.fs-3-9 {
  font-size: 3.9rem;
  line-height: calc(3.9rem + 20%);
}

.fs-4 {
  font-size: 4rem;
}

.fs-4-1 {
  font-size: 4.1rem;
  line-height: calc(4.1rem + 20%);
}

.fs-4-2 {
  font-size: 4.2rem;
  line-height: calc(4.2rem + 20%);
}

.fs-4-3 {
  font-size: 4.3rem;
  line-height: calc(4.3rem + 20%);
}

.fs-4-4 {
  font-size: 4.4rem;
  line-height: calc(4.4rem + 20%);
}

.fs-4-5 {
  font-size: 4.5rem;
  line-height: calc(4.5rem + 20%);
}

.fs-4-6 {
  font-size: 4.6rem;
  line-height: calc(4.6rem + 20%);
}

.fs-4-7 {
  font-size: 4.7rem;
  line-height: calc(4.7rem + 20%);
}

.fs-4-8 {
  font-size: 4.8rem;
  line-height: calc(4.8rem + 20%);
}

.fs-4-9 {
  font-size: 4.9rem;
  line-height: calc(4.9rem + 20%);
}

.fs-5 {
  font-size: 5rem;
}

.fs-5-1 {
  font-size: 5.1rem;
  line-height: calc(5.1rem + 20%);
}

.fs-5-2 {
  font-size: 5.2rem;
  line-height: calc(5.2rem + 20%);
}

.fs-5-3 {
  font-size: 5.3rem;
  line-height: calc(5.3rem + 20%);
}

.fs-5-4 {
  font-size: 5.4rem;
  line-height: calc(5.4rem + 20%);
}

.fs-5-5 {
  font-size: 5.5rem;
  line-height: calc(5.5rem + 20%);
}

.fs-5-6 {
  font-size: 5.6rem;
  line-height: calc(5.6rem + 20%);
}

.fs-5-7 {
  font-size: 5.7rem;
  line-height: calc(5.7rem + 20%);
}

.fs-5-8 {
  font-size: 5.8rem;
  line-height: calc(5.8rem + 20%);
}

.fs-5-9 {
  font-size: 5.9rem;
  line-height: calc(5.9rem + 20%);
}

.mw-100 {
  max-width: 100px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-800 {
  max-width: 800px;
}

.mw-900 {
  max-width: 900px;
}

.mw-1000 {
  max-width: 1000px;
}

.mw-1100 {
  max-width: 1100px;
}

.mw-1200 {
  max-width: 1200px;
}

.mw-1300 {
  max-width: 1300px;
}

.mw-1400 {
  max-width: 1400px;
}

.br-0-0 {
  border-radius: 0.0rem;
}

.br-0-1 {
  border-radius: 0.1rem;
}

.br-0-2 {
  border-radius: 0.2rem;
}

.br-0-3 {
  border-radius: 0.3rem;
}

.br-0-4 {
  border-radius: 0.4rem;
}

.br-0-5 {
  border-radius: 0.5rem;
}

.br-0-6 {
  border-radius: 0.6rem;
}

.br-0-7 {
  border-radius: 0.7rem;
}

.br-0-8 {
  border-radius: 0.8rem;
}

.br-1-0 {
  border-radius: 1.0rem;
}

.br-1-1 {
  border-radius: 1.1rem;
}

.br-1-2 {
  border-radius: 1.2rem;
}

.br-1-3 {
  border-radius: 1.3rem;
}

.br-1-4 {
  border-radius: 1.4rem;
}

.br-1-5 {
  border-radius: 1.5rem;
}

.br-1-6 {
  border-radius: 1.6rem;
}

.br-1-7 {
  border-radius: 1.7rem;
}

.br-1-8 {
  border-radius: 1.8rem;
}

.br-1 {
  border-radius: 1rem;
}

.br-2 {
  border-radius: 2rem;
}

.br-3 {
  border-radius: 3rem;
}

.br-4 {
  border-radius: 4rem;
}

.br-5 {
  border-radius: 5rem;
}

.br-6 {
  border-radius: 6rem;
}

.br-7 {
  border-radius: 7rem;
}

.br-8 {
  border-radius: 8rem;
}

.br-9 {
  border-radius: 9rem;
}

.br-10 {
  border-radius: 10rem;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.anim-custom.anim-appears-left {
  transform: translateX(-10%);
  opacity: 0;
  transition: all ease 0.3s;
}
.anim-custom.anim-appears-left.anim-active {
  opacity: 1;
  transform: translateX(0%);
}
.anim-custom.anim-appears-right {
  transform: translateX(10%);
  opacity: 0;
  transition: all ease 0.3s;
}
.anim-custom.anim-appears-right.anim-active {
  opacity: 1;
  transform: translateX(0%);
}
.anim-custom.anim-appears-top {
  transform: translateY(-10%);
  opacity: 0;
  transition: all ease 0.3s;
}
.anim-custom.anim-appears-top.anim-active {
  opacity: 1;
  transform: translateY(0%);
}
.anim-custom.anim-appears-bottom {
  transform: translateY(10%);
  opacity: 0;
  transition: all ease 0.3s;
}
.anim-custom.anim-appears-bottom.anim-active {
  opacity: 1;
  transform: translateY(0%);
}

@media (min-width: 1250px) {
  .display_desktop {
    display: inline;
  }
}
@media only screen and (max-width: 1500px) {
  header #menu {
    gap: 0.5rem;
  }
  header .points {
    gap: 0.5rem;
    padding: 0.5rem;
  }
  header .logout {
    margin-left: 1rem;
    background-color: inherit;
    border: inherit;
  }
  header .logout a {
    color: #03818D;
  }
  header #menu > ul li {
    margin: 0 0.5rem;
  }
  .display_small {
    display: block !important;
  }
  .display_small img {
    max-width: 80%;
    margin-bottom: 3rem;
  }
  .page.home .hiw_block {
    flex: 1 1 calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
  }
  .page.who-are-we .display_desktop {
    display: none !important;
  }
  .page.pro_area .display_desktop {
    display: none !important;
  }
  .page.logged_account .rows .row {
    gap: 1rem;
  }
  .page.my-history table .tooltip {
    left: -90px;
    top: 25px;
  }
  .slickslider .infos_complt {
    align-items: center;
  }
  .slickslider.no_survey img {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .page.home .participate_block .part_contnair {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1400px) {
  header #social {
    display: none;
  }
  header #menu {
    gap: 1rem;
  }
  header #menu > ul li {
    margin: 0 0.5rem 0;
  }
  .filter_choice {
    justify-content: flex-start;
    overflow: auto;
    margin: 0 auto 2rem;
  }
  header .link_profile .name {
    display: none;
  }
  header #menu .account {
    margin-left: 1rem;
  }
  header #menu .submenu {
    margin-left: 1rem;
  }
  header .logout {
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 1300px) {
  header .middle_container {
    padding: 1rem 0.5rem;
  }
  header #menu {
    gap: 1.5rem;
  }
  header #menu > ul {
    padding-right: 0;
  }
  header #menu > ul li {
    margin: 0;
  }
  header #subscription {
    margin: 0;
  }
  .page.pro_area #listing_services .service .infos {
    height: 169px;
  }
  .page.pro_area #listing_services .service:hover .infos {
    height: 180px;
  }
  .page.pro_area .visu {
    flex-shrink: inherit;
    margin: 0 auto;
    width: 850px;
    max-width: 100%;
    height: auto;
  }
  .page.pro_area .picto {
    width: 100px;
    max-width: 100%;
    height: auto;
  }
  .page.logged_account {
    margin-top: inherit;
    margin-left: 0.5rem;
    max-width: 100%;
  }
  .page.logged_account .subtitle {
    margin-bottom: 0.5rem;
  }
  .page.logged_account .rows {
    gap: 1rem;
  }
  .page.logged_account .rows .row {
    gap: 1rem;
  }
  .page.logged_account .volets .volet_left {
    width: 300px;
  }
}
@media only screen and (max-width: 1250px) {
  .display_desktop {
    display: none !important;
  }
  .display_mobile {
    display: block !important;
  }
  #logo a .display_desktop_logo_light {
    display: none;
  }
  #logo a .display_desktop_logo_dark {
    display: none;
  }
  #logo a .display_mobile_logo_light {
    display: inline;
  }
  #logo a .display_mobile_logo_dark {
    display: none;
  }
  /* ====== 3. Dark mode (automatique) ====== */
}
@media only screen and (max-width: 1250px) and (prefers-color-scheme: dark) {
  #logo a .display_mobile_logo_light {
    display: none;
  }
  #logo a .display_mobile_logo_dark {
    display: inline;
  }
}
@media only screen and (max-width: 1250px) {
  .display_small {
    display: block !important;
  }
  .mt-xxl {
    margin-top: 1.5rem;
  }
  body.menuOpen {
    overflow: hidden;
  }
  body.showBanner header #menu {
    margin-top: 85px;
  }
  .list_missions {
    max-width: 100%;
  }
  section {
    padding: 1.5rem 1rem;
  }
  header {
    height: 55px;
  }
  header #menu {
    opacity: 0;
    pointer-events: none;
  }
  header.nolog #logo {
    flex: 1;
  }
  header .espace_points {
    flex: 1;
    text-align: center;
  }
  header .espace_points .points {
    display: inline-flex !important;
    white-space: nowrap;
    gap: 0.8rem;
    padding: 6px 15px;
  }
  header .link_profile {
    height: 20px;
  }
  header .link_profile .name {
    display: none;
  }
  header .middle_container {
    padding: 0.65rem;
    gap: 1rem;
  }
  header .logout {
    margin-left: 1rem;
  }
  header #menu {
    position: fixed;
    top: 55px;
    right: 0;
    background: #fff;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    bottom: 0;
    padding: 1rem 0.5rem;
    text-align: right;
    transition: all ease 0.3s;
    transform: translateX(100%);
    background-color: rgb(248, 248, 248);
    box-shadow: inset 1px 4px 9px -6px #ccc;
  }
  header #menu:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0vw;
    content: "";
    background-color: #3f4847;
    transition: all ease 0.3s;
    transform: translateX(-100%);
    opacity: 0;
  }
  header #menu ul {
    flex-direction: column;
    border-right: 0;
    padding-right: 0;
    width: 100%;
  }
  header #menu .submenu {
    margin-left: 0;
  }
  header #menu .submenu .pastille {
    position: relative;
    bottom: inherit;
    right: inherit;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5rem;
  }
  header #openMenu {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 35px;
    height: 25px;
    margin: 1px 0;
    cursor: pointer;
    margin-left: 1rem;
  }
  header #openMenu .barre {
    background-color: #03818D;
    height: 5px;
    border-radius: 10px;
    width: 30px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  header #openMenu .barre.barre2 {
    top: 10px;
  }
  header #openMenu .barre.barre3 {
    top: 20px;
  }
  header.menuOpen #menu {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
  }
  header.menuOpen #menu:before {
    width: 100vw;
    opacity: 0.8;
  }
  header.menuOpen #openMenu .barre1 {
    transform: rotate(30deg) translateY(6px);
    width: 20px;
  }
  header.menuOpen #openMenu .barre2 {
    opacity: 0;
  }
  header.menuOpen #openMenu .barre3 {
    transform: rotate(-30deg) translateY(-6px);
    width: 20px;
  }
  header.menuOpen #openMenu .pastille {
    opacity: 0;
  }
  footer {
    padding: 1rem 0.5rem;
  }
  footer .middle_container {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer .menu ul {
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  footer .menu ul li {
    padding: 0rem 1rem;
  }
  footer .menu ul li + li {
    border: 0;
  }
  footer .menu ul a {
    font-size: 0.9rem;
  }
  .page.home #wide_visual {
    min-height: 450px;
    background: linear-gradient(90.88deg, #03818D 0.99%, rgba(115, 115, 115, 0) 120.69%), url("../img/content/home/homebkg2_mobile.webp") center;
    background-size: cover;
  }
  .page.home #concept_steps {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
  .page.home #concept_steps .step {
    flex-basis: 46%;
  }
  .page.home .participate_block .part_contnair {
    max-width: 100%;
  }
  .page.mystery-mission .mission_presentation {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .page.who-are-we .presentation {
    flex-direction: column;
  }
  .page.who-are-we .presentation img {
    margin-bottom: 2.5rem;
    max-width: 80%;
    height: auto;
  }
  .page.who-are-we .presentation .visu {
    flex-direction: column;
    max-width: 100%;
  }
  .page.who-are-we .presentation .visu .wide {
    max-width: 100%;
  }
  .page.who-are-we .presentation .visu .min {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-wrap: wrap;
  }
  .page.who-are-we #FAQ .pres.displayDesktop {
    display: none;
  }
  .page.who-are-we #FAQ .mySwiper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .page.who-are-we #FAQ .mySwiper .swiper-wrapper {
    align-items: center;
  }
  .page.community .presentation {
    flex-direction: column;
    align-items: center;
  }
  .page.community .presentation .events {
    flex: 1;
    width: auto;
    max-width: 85vw;
  }
  .page.community .slickslider {
    width: 100%;
  }
  .page.community .slickslider .slick-track {
    display: block !important;
  }
  .page.community .slickslider .slick-slide {
    height: inherit !important;
  }
  .page.community .slickslider .comment {
    padding: 0.5rem;
    width: 100%;
    /*margin: 0.5rem;*/
    font-size: 0.9rem;
  }
  .page.community #winners_mobile {
    display: flex !important;
    gap: 2rem;
  }
  .page.pro_area img.number {
    max-width: 250px;
  }
  .page.pro_area .lightblue div:nth-child(1) {
    line-height: calc(1.3rem + 40%);
  }
  .page.pro_area .lightblue div:nth-child(2) {
    line-height: calc(1rem + 20%);
  }
  .page.pro_area .display_spe {
    display: none;
  }
  .page.pro_area .visu {
    flex-direction: column;
  }
  .page.pro_area .visu img:not(.picto) {
    max-width: 100%;
    height: auto;
  }
  .page.pro_area #FAQ p {
    line-height: 100%;
  }
  .page.pro_area #FAQ .pres.displayDesktop {
    display: none;
  }
  .page.pro_area #FAQ .mySwiper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page.pro_area #FAQ .mySwiper .swiper-wrapper {
    align-items: center;
  }
  .page.pro_area #listing_services {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .page.contact form {
    max-width: 100%;
  }
  .page.profiles_questionnaires .list_profiles {
    padding: 1rem 0.5rem;
  }
  .page.profiles_questionnaires .list_profiles .container {
    gap: 1rem;
    row-gap: 2.3rem;
  }
  .page.profiles_questionnaires .list_profiles .container .profile {
    max-width: 45%;
  }
  .page.shopdetails .volets {
    flex-direction: column;
  }
  .page.shopdetails .volets .volet_left {
    width: 100%;
    padding: 1rem;
  }
  .page.shopdetails .volets .volet_left .preview #gift_cards {
    max-width: 100%;
  }
  .page.shopdetails .volets .volet_left .preview #gift_cards .card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }
  .page.shopdetails .volets .volet_left .preview #gift_cards .card h1 {
    margin-bottom: 0;
    text-align: center;
  }
  .page.shopdetails .volets .volet_left .visual {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .page.shopdetails .volets .volet_right {
    padding: 2rem 1rem 1rem 1rem;
  }
  .page.mystery-missions .presentation_missions > .separator {
    width: 100%;
    max-width: 100%;
    height: 5px;
    background: #858585;
    margin: 4rem 0;
    border-radius: 10px;
  }
  .page.shop #gift_cards .card .visual img {
    max-width: 100%;
  }
  .block_visuel {
    flex-direction: column;
  }
  .logged_display .left {
    display: none;
  }
  .logged_display .right {
    width: 100%;
  }
  .filter_choice {
    justify-content: flex-start;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .custom_presentation {
    flex-direction: column;
  }
  .custom_presentation .visu {
    flex-direction: column;
    max-width: 100%;
  }
  .custom_presentation .visu .wide {
    max-width: 100%;
  }
  .custom_presentation .visu .min {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 400px;
    max-width: 100%;
  }
  .custom_presentation .visu .min > * {
    flex-basis: 50%;
  }
  .custom_presentation .visu .min img {
    width: inherit !important;
  }
  .custom_presentation.midsize .visu .wide,
  .custom_presentation.midsize .visu .min {
    width: 80%;
  }
  .custom_presentation.midsize .visu .min {
    flex-direction: column;
  }
  .page.pro_area #listing_services {
    gap: 1rem;
  }
  .page.pro_area #listing_services .service {
    flex-basis: 70%;
  }
  .page.pro_area #listing_services .service .infos {
    height: 151px;
  }
  .page.pro_area #listing_services .service .infos:hover {
    height: 190px;
  }
  .page.pro_area #FAQ img:not(.first) {
    max-height: 70px !important;
  }
  .page.pro_area #FAQ img.first {
    max-height: 217px;
  }
  .page.logged_account .volets .volet_left {
    display: none;
  }
  .page.logged_account .volets .volet_right {
    padding: 1.5rem;
  }
  .page.logged_account .volets .volet_right form {
    max-width: 500px;
  }
  .page.logged_account .volets .volet_right #form_my_account #infos_profil {
    flex-direction: column-reverse;
  }
  .page.logged_account .volets .volet_right #form_my_account #infos_profil .infos {
    width: 100%;
  }
  .page.logged_account .volets .volet_right #form_update_password {
    width: 100%;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password .password_indications {
    padding: 0;
    border: 0;
    text-align: center;
    width: 100%;
    max-width: 450px;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password .password_indications ul {
    padding: 0;
    background-color: #DBDBDB;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password .password_indications ul li {
    list-style-type: none;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password .form {
    padding: 0;
    width: 100%;
    max-width: 450px;
  }
  .page.logged_account .volets .volet_right #form_update_password #profile_password .form label {
    max-width: 100%;
  }
  .page.logged_account .volets .volet_right #form_delete_account {
    width: 100%;
  }
  .page.logged_account .volets .volet_right #form_delete_account #close_account {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .page.logged_account .volets .volet_right #form_delete_account #close_account .warnings {
    padding: 0;
    border: 0;
    text-align: center;
  }
  .page.logged_account .volets .volet_right #form_delete_account #close_account .warnings ul {
    padding: 0;
    background-color: #DBDBDB;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }
  .page.logged_account .volets .volet_right #form_delete_account #close_account .warnings ul li {
    list-style-type: none;
  }
  .page.logged_account .volets .volet_right #form_delete_account #close_account .form {
    padding: 0;
  }
  .page.referal #steps_referal {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    margin: 1.5rem 0;
  }
  .page.referal #steps_referal:before {
    height: auto;
    width: 1px;
  }
  .page.referal #steps_referal .step {
    max-width: 100%;
  }
  .page.shop #gift_cards {
    gap: 1rem;
    row-gap: 2rem;
  }
  .page.shop #gift_cards .card {
    padding: 0;
    flex-basis: 45%;
  }
  .page.shop #gift_cards .card .visual {
    max-width: 120px;
    margin: 0 auto;
  }
  .page.shop #associations {
    gap: 4rem;
  }
  .page.my-history .volet_right {
    max-width: inherit;
  }
  .page.my-history #block_table_history,
  .page.my-history #block_table_stars_history {
    background: transparent;
    padding: 0;
    box-shadow: inherit;
  }
  .page.my-history #block_table_history tr th:nth-child(4),
  .page.my-history #block_table_history tr td:nth-child(4) {
    display: none;
  }
  .page.my-history #history {
    width: 100%;
    margin: auto;
  }
  .page.my-history #history thead {
    height: 72px;
  }
  .page.my-history #history td,
  .page.my-history #history th {
    padding: 0.25rem 0.5rem;
  }
  .page.my-history table .tooltip {
    left: -177px;
    top: 114%;
  }
  .page.monthly-draw #steps_monthly_draw {
    box-shadow: inherit;
    background: transparent;
    padding: 0;
  }
  .page.monthly-draw #steps_monthly_draw .container {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .page.monthly-draw #steps_monthly_draw .container .step {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 1px 1px 10px 1px rgba(102, 102, 102, 0.25);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .page.monthly-draw #steps_monthly_draw .container .step .number {
    margin-right: 1rem;
  }
  .page.monthly-draw #steps_monthly_draw .container:after {
    width: 1px;
    height: auto;
  }
  .page.returnquest .mirror-h {
    display: none;
  }
  .page.surveys .bg-mediumgray.p-xl {
    padding: 1rem;
  }
  .page.surveys .noinfos {
    max-width: 90%;
  }
  .page.surveys .right {
    padding-left: inherit;
  }
  .custom_popup {
    padding: 0;
    max-width: 85vw;
    max-height: 80vh;
  }
  .custom_popup .container {
    padding: 2rem 1rem;
    max-height: inherit;
  }
  .listing_surveys {
    gap: 1rem;
    row-gap: 2rem;
  }
  .listing_surveys .survey {
    padding: 0.5rem;
    flex-basis: 46%;
  }
  .list_searched_recruitments {
    max-width: 400px;
  }
  .content_submenu {
    justify-content: space-around;
  }
  #block_referral #link_referal {
    flex-direction: column;
  }
  #block_referral #share_social_media {
    flex-wrap: wrap;
  }
  #block_referral #share_social_media .display_mobile {
    display: flex !important;
  }
  .page.register {
    flex-direction: column;
  }
  .page.register section.left-menu {
    max-width: inherit;
    height: 35vh;
    width: 100%;
    padding: 2rem 1rem;
    z-index: 99;
  }
  .page.register section.left-menu img {
    margin-bottom: 1rem;
  }
  .page.register section.left-menu h1 {
    font-size: 0.9rem;
    padding: 1rem 0 2rem 0;
  }
  .page.register section.left-menu h3 {
    display: none;
  }
  .page.register section.left-menu .steps {
    flex-direction: column;
    margin-top: inherit;
    align-items: flex-start;
  }
  .page.register section.left-menu .steps .step {
    max-width: 56px;
    max-height: 56px;
  }
  .page.register section.left-menu .steps .step:not(:last-child)::after {
    left: inherit;
    bottom: inherit;
    transform: translateX(50px) rotate(90deg);
  }
  .page.register section.left-menu .advancement {
    flex-direction: row;
  }
  .page.register section.left-menu .advancement:nth-child(2) {
    display: none;
  }
  .page.register section.informations {
    max-width: 100%;
  }
  .page.register section.informations .input-wrapper {
    width: 100%;
  }
  .page.register section.informations input.long {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .page.home section {
    padding: 1rem;
  }
  .page.home #wide_visual {
    padding: 2rem 1rem;
  }
  .page.home #wide_visual .content {
    font-size: 1rem;
    line-height: 160%;
  }
  .page.home #wide_visual .content a.custom_btn {
    text-shadow: none;
  }
  .page.home #home_title {
    line-height: 100%;
  }
  .page.home #home_subtitle {
    line-height: 100%;
  }
  .page.home #home_content {
    line-height: 120%;
  }
  .page.home .hiw_block {
    max-height: 395px;
  }
  .page.home .participate_block img {
    max-width: 90%;
  }
  .page.home .participate_block .part_contnair {
    max-width: inherit;
  }
  .page.home .swiper-button-prev,
  .page.home .swiper-button-next {
    display: none;
  }
  .page.home .hiw_block {
    flex: 1 1 100%;
    max-width: 90%;
  }
  .page.home .hiw_block .content {
    line-height: 155%;
  }
  .page.home .hiw_block .title {
    line-height: 125%;
  }
  .page.who-are-we .presentation {
    margin-bottom: 1rem;
  }
  .page.who-are-we .presentation img {
    margin-bottom: 1rem;
  }
  .page.who-are-we p.firstpar {
    margin-top: inherit !important;
  }
  .page.who-are-we .presentation p {
    font-weight: 300;
    line-height: 22px;
  }
  .page.who-are-we #FAQ p {
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .page.who-are-we #FAQ img:not(.first) {
    max-height: 70px !important;
  }
  .page.who-are-we #FAQ img.first {
    max-height: 100px;
  }
  #request_reward {
    font-size: 0.9rem;
    gap: 0.9rem !important;
  }
  #request_reward img {
    max-width: 20%;
  }
  #request_reward .subtitle {
    font-size: 1rem;
  }
  #request_reward input {
    font-size: 14px;
  }
  #request_reward .custom_btn {
    font-size: 0.8rem;
  }
  h2.our_mission_title,
  h2.our_principle_title {
    margin-top: 2rem;
    font-size: 1rem;
  }
  .slickslider .infos_complt {
    align-items: inherit;
  }
  .slickslider.no_survey img {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  #arianne_form .arianne {
    max-width: 100%;
    margin: 0 auto;
  }
  #arianne_form .arianne .item {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 1.5rem;
  }
  .popup-update.email .profil_email,
  .popup-update.email .profil_phone,
  .popup-update.emailPostal .profil_email,
  .popup-update.emailPostal .profil_phone,
  .popup-update.phone .profil_email,
  .popup-update.phone .profil_phone {
    margin-top: 10%;
    margin-left: inherit;
  }
  .popup-update.email input,
  .popup-update.emailPostal input,
  .popup-update.phone input {
    width: 100% !important;
  }
  .popup-update.email label,
  .popup-update.emailPostal label,
  .popup-update.phone label {
    width: inherit;
  }
  .popup-update.password #step1 #profile_password {
    flex-direction: column;
    gap: 1.5rem;
  }
  .popup-update.password #step1 #profile_password .form {
    padding-left: inherit;
    border-left: inherit;
  }
  .popup-update.password #step2 .row {
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 555px) {
  header .middle_container {
    gap: 0.35rem;
  }
  .page.my-history #history tr th:nth-child(3),
  .page.my-history #history tr td:nth-child(3) {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */