.montserrat-<uniquifier > {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

:root {
  --site-max-width: 1196px;
  --site-text-base: calc(16 / 1196);
  --main-max-width: var(--site-max-width);
  --font-size: calc(var(--main-max-width) * var(--site-text-base));
  --text-xs: 0.75rem;
  --text-s: 0.875rem;
  --text-m: 1rem;
  --text-l: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
  --text-59: 3.6875rem;
  --text-74: 4.625rem;
  --text-m-m: 1rem;
  --text-xs-m: calc(var(--text-m-m) * 0.75);
  --text-s-m: calc(var(--text-m-m) * 0.875);
  --text-l-m: calc(var(--text-m-m) * 1.125);
  --text-xl-m: calc(var(--text-m-m) * 1.25);
  --text-2xl-m: calc(var(--text-m-m) * 1.5);
  --text-3xl-m: calc(var(--text-m-m) * 1.75);
  --text-4xl-m: calc(var(--text-m-m) * 2.5);
  --text-5xl-m: calc(var(--text-m-m) * 3);
  --text-6xl-m: calc(var(--text-m-m) * 4);
  --text-59-m: calc(var(--text-m-m) * 3.6875);
  --text-74-m: calc(var(--text-m-m) * 4.625);
  --menu-height: 4.375rem;
  --gap-xs: 0.5rem;
  --gap-sm: 0.75rem;
  --gap-s: 1rem;
  --gap-m: 1.25rem;
  --gap-l: 1.5rem;
  --gap-xl: 1.75rem;
  --gap-2xl: 2.5rem;
  --gap-3xl: 3rem;
  --gap-200: 12.5rem;
  --orange: #f47d26;
  --orange-light: #fcede1;
  --orange-medium: #f47d2680;
  --blue: #014360;
  --blue-medium: #2b627a;
  --blue-light: #e7f3fe;
}

.text-xs {
  font-size: var(--text-xs);
}
.text-s {
  font-size: var(--text-s);
}
.text-m {
  font-size: var(--text-m);
}
.text-l {
  font-size: var(--text-l);
}
.text-xl {
  font-size: var(--text-xl);
}
.text-2xl {
  font-size: var(--text-2xl);
}
.text-3xl {
  font-size: var(--text-3xl);
}
.text-4xl {
  font-size: var(--text-4xl);
}
.text-5xl {
  font-size: var(--text-5xl);
}
.text-6xl {
  font-size: var(--text-6xl);
}
.text-59 {
  font-size: var(--text-59);
}
.text-74 {
  font-size: var(--text-74);
}

.text-100 {
  font-weight: 100;
}
.text-200 {
  font-weight: 200;
}
.text-300 {
  font-weight: 300;
}
.text-400 {
  font-weight: 400;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.text-700 {
  font-weight: 700;
}
.text-800 {
  font-weight: 800;
}
.text-900 {
  font-weight: 900;
}

.swiper,
.swiper-pagination-bullet {
  --swiper-pagination-color: var(--orange);
  --swiper-pagination-bullet-inactive-color: var(--orange);
}
.swiper-pagination-bullet {
  transition: 0.2s ease;
}
.swiper-pagination-bullet-active {
  margin: 0;
  width: 16px;
  border-radius: 8px;
}

.background-white {
  background: #fff;
}
.background-blue {
  background: var(--blue);
  color: #fff;
}
.background-blue-light {
  background: var(--blue-light);
}
.background-orange {
  background: var(--orange);
  color: #fff;
}
.background-orange-light {
  background: var(--orange-light);
}

.text-color-blue {
  color: var(--blue);
}
.text-color-orange {
  color: var(--orange);
}

.display-none {
  display: none !important;
}

* {
  outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
}

input,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-size: inherit;
}
button {
  border: 0;
  background: none;
  padding: 0;
}
hr {
  border: none;
  border-top: 2px solid #fff;
}

html {
  font-family: "Montserrat";
  font-size: var(--font-size);
  color: var(--blue);
}

main {
  padding-top: var(--menu-height);
}

.main-logo img {
  width: 8.25rem;
}

.flex-cols {
  display: flex;
  gap: var(--gap-s);
}
.flex-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}
.flex-col > *,
.flex-row > * {
  flex: 1;
}
.flex-row {
  display: flex;
  width: 100%;
  gap: var(--gap-s);
}

.site-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--main-max-width);
  margin: auto;
}

.screen {
  min-height: calc(100vh - var(--menu-height) - 25rem);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.screen-centered {
  align-items: center;
}

section.module {
  position: relative;
  padding: var(--gap-200) 0;
}

section.module.background-blue-light + section.module.background-blue-light,
section.module.background-orange-light
  + section.module.background-orange-light {
  padding-top: calc(var(--gap-200) / 2);
}

section.module .module-title {
  margin-top: calc(var(--gap-2xl) * -1 - 1em);
  margin-bottom: var(--gap-2xl);
  font-size: var(--text-3xl-m);
  font-weight: 600;
  text-align: center;
}

.module-presentation {
  flex: 1;
}
.module-presentation-title {
  font-size: var(--text-3xl-m);
}

.link-button {
  cursor: pointer;
}
.link-button > *:not(.html-anim) {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 0.75em 3em;
  border-radius: 3em;
  transition: transform 0.2s ease;
}

.link-button[disabled] > * {
  background: var(--orange-light);
  color: var(--orange);
}

.link-rotation {
  --rotation: -2deg;
  cursor: pointer;
}
.link-rotation > *:not(.html-anim) {
  transition: 0.2s ease;
}
html:not(.touch_screen) .link-rotation:hover > *:not(.html-anim) {
  transform: rotate(var(--rotation));
}

.pad {
  position: relative;
  border-radius: 1rem;
}
.pad_animation {
  --delay: 0.5s;
}
.pad_animation:not(.activated) {
  opacity: 0;
}
.pad_animation.activated {
  animation: activatePads var(--delay) ease forwards;
}
.pad-content {
  padding: 2em;
}
.pad-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pad-form,
.pad-text {
  flex: 1;
}
.pad-small-text {
  text-align: center;
}
.pad-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
}
.pad-image-overflow img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% + var(--gap-2xl));
  width: auto;
  border-bottom-right-radius: 1rem;
  pointer-events: none;
}
.pad-image-overflow--text {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  height: calc(100% - 1.6rem);
  padding: 0.8rem 1.2rem;
}
.pad-image-overflow--title {
  margin: 0;
  font-size: var(--text-4xl);
}
.pad-image-overflow--subtitle {
  margin: 0;
  margin-bottom: -0.2em;
  font-size: var(--text-3xl);
  font-weight: 400;
}
.pad-number-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pad-number-text--number {
  font-size: var(--text-4xl);
  font-weight: 600;
}
.pad-number-text--text {
  font-size: var(--text-m);
}
.pad-form fieldset {
  display: flex;
  padding: 0;
  border: none;
  background: #fff;
  height: 2.75em;
  border-radius: 2.75em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.pad-form input {
  flex: 1;
  background: none;
  border: none;
  padding-left: 1.5em;
  font-size: 0.88em;
  outline: none;
  color: var(--blue);
}
.pad-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0 1.5em;
  cursor: pointer;
  outline: none;
}
.pad-form button span {
  white-space: nowrap;
}
.pad-form-error-message {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  color: var(--orange);
  height: 1em;
  text-align: center;
  width: 100%;
  font-size: 0.8em;
}
html:not(.touch_screen) .pad-form button:hover {
  animation: flash 0.2s ease;
}

.html-anim {
  --anim-size: 50rem;
  --anim-unit: calc(var(--anim-size) / 100);
  position: absolute;
  width: var(--anim-size);
  pointer-events: none;
}
.html-anim * {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.html-anim .circle {
  height: calc(var(--anim-unit) * 20.3);
  width: calc(var(--anim-unit) * 20.3);
  background: var(--orange);
  border-radius: 100%;
}
.html-anim .rectangle {
  height: calc(var(--anim-unit) * 31.5);
  width: calc(var(--anim-unit) * 16.2);
  background: var(--blue);
}
.html-anim--explosion {
  height: calc(var(--anim-size) * 0.852);
}
.html-anim--explosion .circle {
  top: 63%;
  left: 10%;
}
.html-anim--explosion .rectangle {
  top: 63%;
  left: 10%;
}
.html-anim--explosion .html-anim--explosion_2.rectangle {
  transform: rotate(-40deg);
}
.html-anim--explosion .html-anim--explosion_3.rectangle {
  transform: rotate(60deg);
}
html:not(.touch_screen) .module-pack:hover .html-anim--explosion_1.circle,
section.module-pad-link .activated .html-anim--explosion_1.circle {
  left: 0%;
  top: 27%;
}
html:not(.touch_screen) .module-pack:hover .html-anim--explosion_2.rectangle,
section.module-pad-link .activated .html-anim--explosion_2.rectangle {
  transform: rotate(47deg);
  left: 31.7%;
  top: 1.1%;
}
html:not(.touch_screen) .module-pack:hover .html-anim--explosion_3.rectangle,
section.module-pad-link .activated .html-anim--explosion_3.rectangle {
  transform: rotate(-13deg);
  left: 57.5%;
  top: 27.4%;
}
html:not(.touch_screen) .module-pack:hover .html-anim--explosion_4.circle,
section.module-pad-link .activated .html-anim--explosion_4.circle {
  left: 79.5%;
  top: 14%;
}
html:not(.touch_screen) .module-pack:hover .html-anim--explosion_5.circle,
section.module-pad-link .activated .html-anim--explosion_5.circle {
  left: 65.45%;
  top: 76.2%;
}
.html-anim--bento {
  height: calc(var(--anim-size) * 0.41);
}
.html-anim--bento .circle {
  background: #fff;
}
.html-anim--bento_1.rectangle {
  top: 20%;
  left: 8.5%;
  transform: rotate(44deg);
}
.html-anim--bento_2.circle {
  top: 48%;
  left: 34%;
}
.html-anim--bento_3.rectangle {
  top: 1%;
  left: 55.3%;
  transform: rotate(-25deg);
}
.html-anim--bento_4.circle {
  top: 5%;
  left: 78.8%;
}
.html-anim:hover .html-anim--bento_1.rectangle,
html:not(.touch_screen) .pad:hover .html-anim--bento_1.rectangle {
  left: 6%;
  transform: rotate(20deg);
}
.html-anim:hover .html-anim--bento_2.circle,
html:not(.touch_screen) .pad:hover .html-anim--bento_2.circle {
  top: 60%;
  left: 28%;
}
.html-anim:hover .html-anim--bento_3.rectangle,
html:not(.touch_screen) .pad:hover .html-anim--bento_3.rectangle {
  top: 14%;
  left: 52.3%;
  transform: rotate(-44deg);
}
.html-anim:hover .html-anim--bento_4.circle,
html:not(.touch_screen) .pad:hover .html-anim--bento_4.circle {
  top: 8%;
  left: 77%;
}
.pad-html-anim--wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.pad-cover .html-anim--bento {
  --anim-size: 30rem;
  transform: translate(2rem, -3rem) rotate(0deg);
}
.cover-image-text--pad .html-anim--bento {
  --anim-size: 27rem;
  top: -2rem;
  left: -3rem;
  transform: rotate(-8deg);
}

.voucher-circle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  --size: 11.625rem;
  font-size: calc(var(--size) / 11);
  height: var(--size);
  width: var(--size);
  border-radius: 100%;
  transition: transform 0.3s ease;
  background: var(--orange);
  color: #fff;
}
html:not(.touch_screen) .voucher-circle--link:hover .voucher-circle {
  transform: translateY(calc(var(--gap-sm) * -1));
}

.voucher-circle--wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(0.6em);
}
.voucher-circle--sum {
  font-size: 2.5em;
  font-weight: 600;
}
.voucher-circle--sum sup {
  display: inline-block;
  font-size: 0.55em;
  transform: translateY(-19%);
  line-height: 1em;
}
.voucher-circle--picto {
  width: 4em;
}
.voucher-circle--text {
  margin-top: 0.2em;
}
/* .voucher-circle--text + .voucher-circle--text {
  margin-top: 0.4em;
} */

table {
  width: 100%;
  font-size: 1rem;
}
table,
table * {
  border: none;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  text-align: left;
  font-weight: 400;
  vertical-align: text-top;
}
table span {
  display: block;
}
thead {
  background: var(--orange);
  font-size: 1.125em;
}
thead tr > * {
  background: var(--orange);
  color: #fff;
}
tbody {
  font-size: 0.9375em;
}
tbody tr:nth-child(2n + 1) > * {
  background: #fff;
}
tbody tr:nth-child(2n + 2) > * {
  background: var(--orange-light);
}
th,
td {
  padding: 0.75em;
}
tr > *:first-child {
  border-radius: 1.5em 0 0 1.5em;
  padding-left: 2em;
}
tr > *:last-child {
  border-radius: 0 1.5em 1.5em 0;
  padding-right: 2em;
}

[readonly],
[disabled] {
  pointer-events: none;
}

.form-pad {
  --grey: #707070;
  font-size: 1rem;
  /* font-size: 0.85rem; */
}
.form-pad + .form-pad {
  margin-top: 4em;
}
.form-pad legend {
  font-size: 1.3em;
  margin-bottom: 0.75em;
  font-weight: 500;
}
.form-pad label {
  display: block;
  font-weight: 500;
}
.form-pad .form-pad--label-subtext {
  display: block;
  font-size: 0.85em;
  margin-top: 0.3em;
  color: var(--orange);
}
.form-pad fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.form-pad > .form-pad--row,
.form-pad > .form-pad--row-column,
.form-pad > .form-pad--column {
  margin-bottom: 3em;
}
.form-pad .small-gap {
  margin-bottom: 1.75em;
}
.form-pad .big-gap {
  margin-bottom: 4.5em;
}
.form-pad--row,
.form-pad--row-column,
.form-pad--column,
.form-pad--block {
  width: 100%;
  gap: 1em;
}
.form-pad--row,
.form-pad--row-column {
  display: flex;
  align-items: flex-end;
}
.form-pad--column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-pad--block {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.form-pad
  input:not([type="checkbox"], [type="radio"], [type="image"], [type="file"]),
.form-pad textarea,
.form-pad select {
  appearance: none;
  position: relative;
  padding: 1em;
  box-sizing: border-box;
  border-radius: 1em;
  color: var(--blue);
  background: #fff;
  width: 100%;
}
.form-pad input[readonly],
.form-pad textarea[readonly],
.form-pad select[readonly],
.form-pad input[disabled],
.form-pad textarea[disabled],
.form-pad select[disabled],
.form-pad ::placeholder {
  color: var(--grey);
  opacity: 1;
}
.form-pad select {
  padding-right: 3em;
}
.form-pad hr {
  margin: 1.5em 0;
}
.form-pad--select,
.form-pad--password,
.form-pad--date,
.form-pad--file {
  position: relative;
}
.form-pad--select::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1em;
  background-image: url("../images/picto-select-blue.svg");
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center;
}
.form-pad--password input {
  padding-right: 3.275em;
}
.form-pad--date input {
  padding-right: 1em;
}
.form-pad--password span,
.form-pad--date span {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  top: 50%;
  width: 3.275em;
  pointer-events: all;
  border-radius: 1rem;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.form-pad--password span,
.form-pad--password span.hidden {
  background-image: url("../images/picto-password-hidden-blue.svg");
}
.form-pad--password span.shown {
  background-image: url("../images/picto-password-shown-blue.svg");
}
.form-pad--date input::-webkit-inner-spin-button {
  display: none;
}
.form-pad--date input::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.form-pad--date span {
  background-color: var(--blue-light);
  background-image: url("../images/picto-calendar-blue.svg");
  pointer-events: none;
}
.form-pad--radio-pad {
  position: relative;
  height: 4.5em;
  width: 10em;
}
.form-pad--radio-pad input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.form-pad--radio-pad label {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 1em;
  font-size: 0.85em;
  padding: 1em;
  box-sizing: border-box;
  background: #fff;
  gap: 0.75em;
}
.form-pad--radio-pad input:checked + label {
  background: var(--blue-light);
}
.form-pad--radio-pad span {
  height: 3em;
  width: 3em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.form-pad--checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.form-pad .form-pad--checkbox input {
  appearance: none;
  border-radius: 100%;
  background: #fff;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
.form-pad .form-pad--checkbox input:checked {
  border: 2px solid #fff;
  background: var(--orange);
}
.form-pad--checkbox label {
  color: var(--grey);
  font-weight: 400;
}
.form-pad--checkbox label a {
  color: var(--orange);
  text-decoration: underline;
}
.form-pad--file {
  cursor: pointer;
  font-size: 0.85em;
}
label + .form-pad--file {
  margin-top: 0.5em;
}
.form-pad--file label {
  display: flex;
  align-items: center;
  height: 5.5em;
  padding: 1.25em;
  box-sizing: border-box;
  border-radius: 4em;
  border: 2px solid #fff;
  transition: 0.2s ease;
}
.form-pad--file label > * {
  pointer-events: none;
}
.form-pad--file.drag_active label {
  border: 2px dashed #fff;
}
.form-pad--file label span {
  display: block;
}
.form-pad--file-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0.75em;
}
.form-pad--file-picto {
  height: 2em;
  width: 2em;
  background-image: url("../images/picto-upload-blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.form-pad--file-filename {
  color: var(--orange);
}
.form-pad--file-button {
  position: absolute;
  right: 1em;
  background: #fff;
  color: var(--orange);
  padding: 1.25em 2em;
  border-radius: 3em;
  transition: transform 0.3s ease;
}
.form-pad--file.drag_active .form-pad--file-button,
.form-pad--file:hover .form-pad--file-button {
  transform: rotate(-2deg);
}
.form-pad--file.selected .form-pad--file-limit,
.form-pad--file.selected .form-pad--file-button {
  display: none;
}
.form-pad--file input {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  visibility: hidden;
}
.form-pad p {
  margin: 0;
  font-weight: 500;
  width: 100%;
}
.form-pad--submit-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.form-pad--submit-row:not(.form-pad--centered) button {
  margin-left: auto;
}
.form-pad--submit-row .link-button > *:not(.html-anim) {
  padding: 1em 2.5em;
}
.form-pad [data-placeholder]:invalid + i {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5em;
  padding-left: 0.5em;
  height: 2em;
  width: calc(100% - 5em);
  background: #fff;
  content: var(--placeholder);
  color: var(--grey);
  font-style: normal;
  pointer-events: none;
  z-index: 1;
}
.form-pad [data-placeholder] + i,
/* .form-pad [data-placeholder]:not(:empty) + i, */
.form-pad [data-placeholder]:focus + i {
  display: none;
}
.form-pad--centered {
  justify-content: center;
  align-items: center;
}
.form-pad--line {
  display: flex;
  justify-content: space-between;
  margin: 0.5em 0;
}
.form-pad--line-title {
  margin: 1em 0;
  font-weight: 600;
}
.form-pad--line-surtitle {
  font-size: 0.75em;
}
.form-pad--line-surtitle + .form-pad--line-title {
  margin-top: 0;
}
.form-pad--line-denomination {
  display: flex;
  gap: 0.5em;
}
.form-pad--line-remove {
  position: relative;
  display: block;
  height: 1em;
  width: 1em;
  flex-shrink: 0;
  background-image: url("../images/picto-cross-blue.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
html:not(.touch_screen) .form-pad--line-remove:hover {
  transform: rotate(-45deg);
  background-image: url("../images/picto-cross-orange.svg");
}
.form-pad--line-amount {
  text-align: right;
  flex-shrink: 0;
}

/* -> legals */
/* -> contact */
.text a {
  color: var(--orange);
}
.text a:hover {
  text-decoration: underline;
}

.fake-link {
  text-decoration: underline;
}

#popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
html.popup_open #popup {
  pointer-events: all;
  opacity: 1;
}
html.popup_open {
  overflow: hidden;
}
#popup-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background: var(--orange);
  opacity: 0.8;
}
#popup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--main-max-width);
  height: calc(100vh - var(--menu-height) - var(--gap-2xl) * 2);
  margin-top: var(--gap-2xl);
}
#popup-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Optional: limit the max width */
  padding-top: 56.25%; /* 16:9 aspect ratio (9/16 * 100) */
}
@media screen and (min-width: 1024px) and (min-aspect-ratio: 1.43) {
  #popup-container {
    --max-height: calc(100vh - var(--menu-height) - var(--gap-2xl) * 3);
    height: var(--max-height);
    width: calc(var(--max-height) * 1.77);
    padding: 0;
  }
}
#popup-close {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  transform: translate(100%, -100%) rotate(45deg);
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../images/picto-cross-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.2s ease;
  cursor: pointer;
}
html:not(.touch_screen) #popup-close:hover {
  transform: translate(100%, -100%) rotate(-45deg);
  z-index: 1;
}
#popup-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

@media screen and (max-width: 1281px) {
  :root {
    --site-max-width: 93.5vw;
  }
}
@media screen and (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
  .wrapper-tightened {
    padding: 0 6.2rem;
    box-sizing: border-box;
  }
  .module-text .site-wrapper {
    padding: 0 19.2rem;
    box-sizing: border-box;
  }
  .form-pad--d-custom-width {
    width: var(--form-pad-width) !important;
    flex-shrink: 0;
  }
  .form-pad p {
    align-self: center;
  }
}

@media screen and (orientation: landscape) and (min-width: 1023px) {
  .cover-full-height {
    min-height: calc(100vh - var(--menu-height));
  }
  .screen {
    min-height: calc(100vh - var(--menu-height));
  }
}

@media screen and (max-width: 1023px) {
  :root {
    --text-m-m: 1.25rem;
    --site-max-width: 90vw;
    --font-size: 2.44vw;
    --menu-height: 6rem;
    --text-59: 3rem;
    --text-74: 4rem;
  }
  .desktop-only {
    display: none !important;
  }
  .text-mobile-xs {
    font-size: var(--text-xs);
  }
  .text-mobile-s {
    font-size: var(--text-s);
  }
  .text-mobile-m {
    font-size: var(--text-m);
  }
  .text-mobile-l {
    font-size: var(--text-l);
  }
  .text-mobile-xl {
    font-size: var(--text-xl);
  }
  .text-mobile-2xl {
    font-size: var(--text-2xl);
  }
  .text-mobile-3xl {
    font-size: var(--text-3xl);
  }
  .text-mobile-4xl {
    font-size: var(--text-4xl);
  }
  .text-mobile-5xl {
    font-size: var(--text-5xl);
  }
  .text-mobile-6xl {
    font-size: var(--text-6xl);
  }

  .flex-cols {
    flex-direction: column;
  }

  .cover-full-height {
    min-height: calc(100vh - var(--menu-height));
  }

  .screen {
    min-height: calc(100vh - var(--menu-height));
  }

  .module-presentation {
    padding: 0 4rem;
    padding-bottom: var(--gap-l);
  }
  /* .module-presentation-title {
    font-size: var(--text-5xl);
  } */

  .pad-form fieldset {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }

  .form-pad {
    font-size: 1.4rem;
  }
  .form-pad--row-column {
    flex-direction: column;
    align-items: flex-start;
  }
  .small-gap-m {
    margin-bottom: 1.5em !important;
  }
  .gap-m {
    margin-bottom: 3em !important;
  }
  .big-gap-m {
    margin-bottom: 4.5em !important;
  }
  .form-pad--row-column .form-pad--row:nth-of-type(1n + 2) {
    margin-top: 1em;
  }
  .form-pad--radio-pad {
    width: calc(50% - 0.5em);
  }
  .form-pad--radio-pad label {
    font-size: 1em;
  }

  .voucher-circle {
    --size: 34.6vw;
  }
  .mobile-reverse {
    flex-direction: column-reverse;
  }
}

@keyframes activatePads {
  0% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes flash {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 70%;
  }
  100% {
    opacity: 100%;
  }
}
