@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-Ultralight.otf") format("opentype");
  font-weight:200;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-UltralightItalic.otf") format("opentype");
  font-weight:200;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-Regular.otf") format("opentype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-Italic.otf") format("opentype");
  font-weight:400;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-Ultrabold.otf") format("opentype");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial New";
  src:url("./fonts/PPEditorialNew-UltraboldItalic.otf") format("opentype");
  font-weight:800;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayXXThin.ttf") format("truetype");
  font-weight:100;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayXXThinItalic.ttf") format("truetype");
  font-weight:100;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayXThin.ttf") format("truetype");
  font-weight:200;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayXThinItalic.ttf") format("truetype");
  font-weight:200;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayThin.ttf") format("truetype");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayThinItalic.ttf") format("truetype");
  font-weight:300;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayLight.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayLightItalic.ttf") format("truetype");
  font-weight:400;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayRoman.ttf") format("truetype");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayRomanItalic.ttf") format("truetype");
  font-weight:500;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayMediu.ttf") format("truetype");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayMediumItalic.ttf") format("truetype");
  font-weight:600;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayBold.ttf") format("truetype");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayBoldItalic.ttf") format("truetype");
  font-weight:700;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayBlack.ttf") format("truetype");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Haas Grotesk Display Pro";
  src:url("./fonts/NeueHaasDisplayBlackItalic.ttf") format("truetype");
  font-weight:800;
  font-style:italic;
  font-display:swap;
}

:root{
  --bg: #6AB7DA;
  --text: #333333;
  --white: #ffffff;
  --panel: rgba(255,255,255,0.92);
  --panel-border: rgba(51,51,51,0.15);
  --radius: 40px;
  --gap: 28px;
  --border: rgba(51,51,51,0.18);
  --shadow: 0 18px 55px rgba(0,0,0,0.20);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background: var(--bg);
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  overflow: hidden;
}
.shell{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
  position: relative;
}
.hero{
  width:100%;
  height: 100%;
  background: var(--bg);
  padding: 0;
  border-radius: 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap: var(--gap);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  height: 260px;
  background-image: url("./assets/cupidon.svg");
  background-repeat: repeat-x;
  background-size: calc(260px + 400px) 260px;
  background-origin: content-box;
  z-index: 1;
}
.hero::before{
  top: 40px;
  padding-right: 320px;
  background-position: right bottom;
}
.hero::after{
  bottom: 120px;
  padding-left: 80px;
  background-position: left top;
  transform: scaleX(-1);
}
.center{
  width: 100%;
  height: 100%;
  max-width: 720px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap: 0;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.names{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 4px;
  text-align:center;
  margin-bottom: 16px;
}
.name{
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-weight:400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #333333;
  text-shadow: 2px 0 #6AB7DA, -2px 0 #6AB7DA, 0 2px #6AB7DA, 0 -2px #6AB7DA,
             1px 1px #6AB7DA, -1px -1px #6AB7DA, 1px -1px #6AB7DA, -1px 1px #6AB7DA;
}
.amp{
  display:flex;
  align-items: flex-start;
  justify-content:center;
  gap: 2px;
}
.amp__glyph{
  font-family:"PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 25.2px;
  color: #333333;
  text-shadow: 2px 0 #6AB7DA, -2px 0 #6AB7DA, 0 2px #6AB7DA, 0 -2px #6AB7DA,
             1px 1px #6AB7DA, -1px -1px #6AB7DA, 1px -1px #6AB7DA, -1px 1px #6AB7DA;
}
.meta{
  width:100%;
  text-align:center;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 300;
  text-shadow: 2px 0 #6AB7DA, -2px 0 #6AB7DA, 0 2px #6AB7DA, 0 -2px #6AB7DA,
    1px 1px #6AB7DA, -1px -1px #6AB7DA, 1px -1px #6AB7DA, -1px 1px #6AB7DA;
  margin-bottom: 28px;
}
.cta{
  appearance:none;
  border:none;
  background: var(--text);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 16px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400 !important;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-style: normal;
  font-synthesis: none;
  cursor:pointer;
  transition: all ease 0.4s;
}
.cta:hover{ background: #242424; }
.cta:disabled{ opacity:0.5; cursor:not-allowed; }
.cta--small{ font-size: 15px; line-height: 15px; padding: 12px 16px; }
.cta--block{
  width: 100%;
  padding: 16px 20px;
}
.cta--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.footnote{
  width:100%;
  text-align:center;
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 22.5px;
  letter-spacing: 0;
  position: absolute;
  bottom: 64px;
  margin-top: 28px;
  z-index: 2;
  font-weight: 400;
  text-shadow: 2px 0 #6AB7DA, -2px 0 #6AB7DA, 0 2px #6AB7DA, 0 -2px #6AB7DA,
    1px 1px #6AB7DA, -1px -1px #6AB7DA, 1px -1px #6AB7DA, -1px 1px #6AB7DA;
}
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding: 0 20px 20px;
  z-index: 50;
}
.modal[aria-hidden="false"]{ display:flex; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}
.modal__panel{
  position: relative;
  width: min(420px, 100%);
  height: 0%;
  overflow:hidden;
  border-radius: 40px;
  background: #333333;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  color: #ffffff;
  opacity: 0;
  transform: translateY(60px);
  transition: height 0.5s ease, opacity 0.35s ease, transform 0.45s ease;
}
.modal[aria-hidden="false"] .modal__panel{
  height: 92%;
  opacity: 1;
  transform: translateY(0);
}
.modal__panel{
  max-height: 92vh;
}
.modal.is-done .modal__panel{
  height: auto;
}
.modal.is-done[aria-hidden="false"] .modal__panel{
  height: auto;
}
.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 20px 20px 12px 20px;
  border-bottom: none;
  position: relative;
  z-index: 1;
}
.modal__header::before{
  content:"";
  width: 40px;
  height: 40px;
  opacity: 0;
}
.modal__header h2{
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #ffffff;
}
.iconbtn{
  border: none;
  background: #ffffff;
  color: #333333;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.icon{
  display:block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.icon--close{
  mask-image: url("./assets/close_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
  -webkit-mask-image: url("./assets/close_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
}
.modal__section{
  padding: 8px 20px 20px;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow-y: auto;
}
.modal.is-done .modal__section{
  height: auto;
  padding-bottom: 24px;
}
.stepper{
  display:flex;
  flex-direction:column;
  gap: 20px;
  height: 100%;
}
.stepper.is-done{
  height: auto;
  gap: 16px;
}
.stepper.is-done .stepper__top{
  display:none;
}
.stepper.is-done .stepper__content{
  gap: 16px;
}
.done__message{
  font-size: 18px;
  line-height: 22.5px;
  text-align: center;
  color: #ffffff;
  padding: 0 8px;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
}
.done__cta{
  margin-top: 8px;
}
.stepper__top{
  display:flex;
  flex-direction:column;
  gap: 4px;
  align-items:center;
  text-align:center;
}
.stepper__rule{
  width: 100%;
  height: 0;
  border-top: 1px dashed #d5d5d5;
  margin-bottom: 8px;
}
.stepper__count{
  width: 100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.stepper__count-inner{
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: flex-end;
}
.stepper__pill{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  display:inline-flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 18px;
}
.stepper__pill-text{
  text-align: center;
  color: #333333;
  font-size: 18px;
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 18px;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  word-wrap: break-word;
}
.stepper__slash-wrap{
  height: 40px;
  padding: 10px 2px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
}
.stepper__slash-text{
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-family: "PP Editorial New", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 18px;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  word-wrap: break-word;
}
.stepper__progress{
  width: 100%;
  height: 16px;
  position: relative;
  overflow: hidden;
}
.stepper__progress::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: 50%;
  border-top: 1px solid #d5d5d5;
  transform: translateY(-50%);
}
.stepper__progress span{
  display:block;
  height: 0;
  width: 0%;
  border-top: 1px solid #6AB7DA;
  position:absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.35s ease;
}
.stepper__body{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:top;
  gap: 16px;
}
.stepper__title{
  display:none;
}
.stepper__content{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.existing__intro{
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  padding: 4px 8px 8px;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.existing__list{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.existing__item{
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border-radius: 28px;
  color: #333333;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.existing__title{
  font-size: 18px;
  line-height: 22.5px;
  display: inline-flex;
  align-items:center;
  gap: 4px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.existing__title--inline{
  flex: 1 1 0;
}
.existing__day{
  font-weight: 500;
}
.existing__event{
  font-weight: 400;
}
.existing__line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 18px;
  line-height: 22.5px;
  color: #333333;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.existing__name{
  flex: 1 1 0;
  color: #333333;
  font-weight: 400;
}
.existing__status{
  display:flex;
  align-items:center;
  gap: 4px;
}
.existing__status-text{
  font-size: 18px;
  line-height: 22.5px;
  color: #333333;
  font-weight: 400;
}
.existing__status-icon{
  width: 22px;
  height: 22px;
  background-color: #333333;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.existing__status-icon.is-yes{
  background-color: #6AB7DA;
  mask-image: url("./assets/radio_button_checked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
  -webkit-mask-image: url("./assets/radio_button_checked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
}
.existing__status-icon.is-no{
  background-color: #333333;
  mask-image: url("./assets/radio_button_unchecked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
  -webkit-mask-image: url("./assets/radio_button_unchecked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
}
.existing__question{
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding-top: 6px;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.stepper__actions{
  margin-top: auto;
  margin-bottom: 20px;
  display:flex;
  gap: 12px;
  align-items:stretch;
}
.stepper__hint{
  display:none;
}
#stepHelp{
  margin: 0;
}
#submitStatus{
  margin: 10px 0 0 0;
}
.stepper.is-done #stepHelp,
.stepper.is-done #stepHint,
.stepper.is-done #submitStatus{
  display:none;
}
.label{
  display:block;
  font-size: 18px;
  line-height: 22.5px;
  margin: 0;
  padding: 0 16px;
  color: #ffffff;
  letter-spacing: 0.01em;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
}
.label strong{
  font-weight: 600;
}
.input, .textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  padding: 16px;
  font-size: 18px;
  line-height: 22.5px;
  background: #ffffff;
  color: #2d2d2d;
  outline:none;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
}
.input::placeholder, .textarea::placeholder{
  color: rgba(45,45,45,0.55);
}
.textarea{
  resize: vertical;
  border-radius: 18px;
}
.small{
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 10px 0 0 0;
}
.row{ display:flex; gap: 10px; align-items:center; margin-top: 12px; }
.row--end{ justify-content:flex-end; }
.autocomplete{ position: relative; }
.suggestions{
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  right:0;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 28px;
  overflow:hidden;
  display:none;
  max-height: 240px;
  overflow:auto;
  z-index: 10;
}
.suggestions.open{ display:block; }
.suggestion{
  padding: 16px;
  cursor:pointer;
  border-bottom: none;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 22.5px;
  position: relative;
}
.suggestion::after{
  content:"";
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  border-bottom: 1px dashed #333333;
}
.suggestion:last-child::after{ display:none; }
.suggestion:hover{ background: rgba(0,0,0,0.04); }
.summary{
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.section{
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.72);
  border-radius: 16px;
  padding: 12px;
  margin: 10px 0;
}
.section__title{ font-size: 14px; margin: 0 0 10px 0; }
.seg{
  display:flex;
  flex-direction:column;
  gap: 12px;
  font-size: 18px;
  line-height: 22.5px;
  font-family: "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
}
.seg label{
  border: 1px solid #ffffff;
  background: #ffffff;
  border-radius: 28px;
  padding: 16px;
  cursor:pointer;
  color: #2d2d2d;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.seg__option{
  gap: 12px;
  position: relative;
}
.seg__text{
  flex: 1;
  text-align: left;
}
.seg__option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.seg__icon{
  display:flex;
  align-items:center;
  justify-content:center;
}
.seg__icon-asset{
  width: 22px;
  height: 22px;
  background-color: #333333;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  display:none;
}
.seg__icon-asset--checked{
  background-color: #6AB7DA;
  mask-image: url("./assets/radio_button_checked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
  -webkit-mask-image: url("./assets/radio_button_checked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
}
.seg__icon-asset--unchecked{
  background-color: #333333;
  mask-image: url("./assets/radio_button_unchecked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
  -webkit-mask-image: url("./assets/radio_button_unchecked_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg");
}
.seg__option input:checked + .seg__icon .seg__icon-asset--checked{
  display:flex;
}
.seg__option input:checked + .seg__icon .seg__icon-asset--unchecked{
  display:none;
}
.seg__option input:not(:checked) + .seg__icon .seg__icon-asset--unchecked{
  display:flex;
}
.stepper__actions .cta{
  flex: 1;
  height: 56px;
  border-radius: 40px;
}
.modal__panel .cta{
  font-size: 18px;
  line-height: 22.5px;
}
.modal__panel .cta--ghost{
  color: #f2f2f2;
  border-color: #ffffff;
  background: transparent;
}
.modal__panel .cta--ghost:hover,
.modal__panel .cta--ghost:active,
.modal__panel .cta--ghost:focus-visible{
  background: #ffffff;
  color: #333333;
}
.modal__panel .cta{
  background: #ffffff;
  color: #2d2d2d;
}
.modal__panel .cta:hover{
  background: #f4f4f4;
}
#nextBtn{
  background: #ffffff;
  color: #2d2d2d;
  font-weight: 400 !important;
}
#nextBtn:hover{
  background: #f4f4f4;
}
.is-final-submit #nextBtn{
  background: #6AB7DA;
  color: #333333;
  font-weight: 400 !important;
}
.is-final-submit #nextBtn:hover{
  background: #7cc2e1;
}
.done__cta{
  background: #6AB7DA !important;
  color: #333333 !important;
  font-weight: 400 !important;
}
#backBtn{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.cta.blink{
  animation: blink 0.45s ease-in-out 2;
}
@keyframes blink{
  0%{ filter: brightness(1); }
  50%{ filter: brightness(1.2); }
  100%{ filter: brightness(1); }
}
@media (max-width: 920px){
  .motifs{ gap: 120px; }
}
@media (max-width: 680px){
  .shell{ padding: 0; }
  .hero{ padding: 28px 0 120px; border-radius: 28px; }
  .hero::before,
  .hero::after{
    left: 0;
    right: 0;
    height: 186px;
    background-size: calc(228px + 280px) 186px;
  }
  .hero::before{
  top: 40px;
  padding-right: 380px;
  background-position: right bottom;
}
.hero::after{
  bottom: 120px;
  padding-left: 10px;
  background-position: left top;
}
  .names{ gap: 2px; }
  .name{ font-size: 40px; }
  .meta{ font-size: 18px; }
  .cta{ font-size: 18px; line-height: 18px; }
  .footnote{ font-size: 18px; bottom: 40px; }
  .modal__panel{
    width: 100%;
  }
}
@media (max-width: 420px){
  .motifs{ gap: 12px; }
  .motif{ width: 92px; height: 76px; }
  .meta, .footnote{ font-size: 18px; }
}
