html {
  width: 100%;
  height: 100%;
  font-size: 14px;
}

html * {
  box-sizing: border-box;
}

html input:-webkit-autofill,
html input:-webkit-autofill:hover,
html input:-webkit-autofill:focus,
html input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}

html body {
  font-size: 16px;
  font-family: "Source Sans Pro", Arial, Helvetica;
  color: #fff;
  margin: 0;
  height: 100% !important;
  padding: 0;
  width: 100%;
  background: #fff url("../images/bg.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row-reverse;
}

html body .left-part {
  width: 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

html body .left-part .left-content {
  display: flex;
  flex-direction: column;
  transform: scale(1.1);
  position: relative;
  justify-content: center;
  max-width: 35rem;
  width: 62%;
}

html body .left-part .left-content .logo {
  width: 100%;
  max-width: 10rem;
  margin-bottom: 3rem;
}

html body .left-part .left-content .text-inscrire {
  font-size: 4.9rem;
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-family: 'Phonk', sans-serif;
  margin-bottom: 0.1rem;
}

html body .left-part .left-content .text-remplir {
  font-size: 2.3rem;
  color: #b7b7b7;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  margin-bottom: 1rem;
}

html body .left-part .left-content .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 1.5rem;
  gap: 20px;
}

html body .left-part .left-content .row .field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

html body .left-part .left-content .row .field.w100 {
  width: 100%;
  /*padding: 0.5rem;*/
}

html body .left-part .left-content .row .field.w90 {
  width: 90%;
}

html body .left-part .left-content .row .field.w80 {
  width: 80%;
}

html body .left-part .left-content .row .field.w70 {
  width: 70%;
}

html body .left-part .left-content .row .field.w60 {
  width: 60%;
}

html body .left-part .left-content .row .field.w50 {
  width: 50%;
}

html body .left-part .left-content .row .field.w40 {
  width: 40%;
}

html body .left-part .left-content .row .field.w20 {
  width: 20%;
}

html body .left-part .left-content .row .field.first-field {
  margin-right: 2rem;
}

html body .left-part .left-content .row .field .input-label {
  color: #e9e9e9;
  margin: 0.5rem 0 0 0.5rem;
  /*font-weight: bold;*/
    font-size: 0.9rem;
}

html body .left-part .left-content .row .field .input_text,
html body .left-part .left-content .row .field .input_select {
  border: none;
  background-color: transparent;
  /* border-bottom: 1px solid #968ba0; */
  color: #000 !important;
  width: 100%;
  outline: none;
  height: 35px;
    line-height: 35px;
  /*font-family: 'NB Architekt Std Neue', sans-serif;*/
    font-family: 'Arial', sans-serif;
  /*font-weight: bold;*/
  transition: border 0.3s, background-color 9999s ease-in-out 0s;
  font-size: 0.9rem;

  margin: 0.2rem 0 0.1rem 0.4rem;
}

html body .left-part .left-content .row .field .input_text::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #e9e9e9;
    font-weight: normal;
    opacity: 0.5; /* Firefox */
}

html body .left-part .left-content .row .field .input_select {
  cursor: pointer;
  position: relative;
}

html body .left-part .left-content .row .field .input_select .option-container {
  margin: 0;
  padding: 0;
  background-color: #1c0634;
  display: none;
  position: absolute;
  top: 27px;
  left: 0;
}

html body .left-part .left-content .row .field .input_select .option-container .option {
  background-color: transparent;
  color: #fff;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

html body .left-part .left-content .row .field .input_select .option-container .option:hover {
  color: #e6f0f7;
}

html body .left-part .left-content .row .field .input_select:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  /* border: 3px solid #cb1d46; */
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(45deg) translateY(-50%);
  right: 0.4rem;
  top: 10%;
  transition: 0.3s;
}

html body .left-part .left-content .row .field .input_select.active .option-container {
  display: block;
}

html body .left-part .left-content .row .field .input_select.active:after {
  transform: rotate(-45deg) translateY(-50%);
  top: 26%;
}

html body .left-part .left-content .row .civ-et-prenom {
  width: 40%;
}
html body .left-part .left-content .row .civ-et-nom {
    width: 60%;
}

html body .left-part .left-content .informations {
  color: #767875;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: normal;
  font-size: 0.79rem;
  line-height: 1.2;
  margin-top: 1rem;
}

html body .left-part .left-content .form_footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}

#btn_liste {
  margin: 11px 0 0;
  flex: 1 0 100%;
  display: block;
}

html body .left-part .left-content .form_footer .form_btn_submit {
  width: 11rem;
  min-width: 10rem;
  height: 3rem;
  border-radius: 5px;
  background-color: #ea2d3f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 3%;
  margin-right: 5%;
}

html body .left-part .left-content .form_footer .form_btn_submit:hover {
  background-color: #ca2636;
}

html body .left-part .left-content .form_footer .form_btn_submit .arrow-right {
  width: 17px;
  height: 17px;
  border: 2px solid white;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
  margin-left: 0.8rem;
}

html body .left-part .left-content .form_footer .liste_link {
  color: #fff;
  margin-left: 1.5rem;
  font-weight: bold;
  display: flex;
  font-size: 1rem;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}

html body .left-part .left-content .form_footer .liste_link:hover {
  color: #97939e;
}

html body .right-part {
  width: 53%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: 0.5s;
  overflow: hidden;
}

html body .right-part .video-container {
  background: url("../images/img_2.png") center center no-repeat;
  background-size: contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 43%;
  margin-bottom: 5.7rem;
  position: relative;
  top: 1.5rem;
}

html body .right-part .video-container .circle-button {
  width: 100px;
  height: 100px;
  background-color: #ef7f29;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 50%;
  position: relative;
  top: 27px;
}

html body .right-part .video-container .circle-button:hover {
  background-color: #d56610;
}

html body .right-part .video-container .circle-button .play-shape {
  width: 34px;
  position: relative;
  left: 4px;
}

html body .right-part .video-container .img-droite {
  width: 190px;
  height: 115px;
  border-radius: 3px;
  position: absolute;
}

html body .right-part .video-container .img-droite#img_robot {
  top: -12%;
  left: 12%;
  box-shadow: 1.5rem 2rem 10px 10px rgba(0, 0, 0, 0.15);
}

html body .right-part .video-container .img-droite#img_vr {
  bottom: -6%;
  left: 18%;
  box-shadow: 2.5rem -2.9rem 16px 0px rgba(0, 0, 0, 0.2);
}

html body .right-part .video-container .img-droite#img_discussion {
  top: -16%;
  right: 18%;
  box-shadow: -0.6rem 0.5rem 16.1px 9px rgba(53, 0, 54, 0.26);
}

html body .right-part .text-clic {
  text-transform: uppercase;
  color: #cebbe1;
  font-family: 'Helvetica Neue LT Std', sans-serif;
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  position: relative;
  top: 1.5rem;
}

html body .right-part .text-decouvre {
  font-size: 4.6rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Druk', sans-serif;
  position: relative;
  text-align: center;
  bottom: 4.8rem;
}

html body .right-part .text-decouvre .pink {
  background: linear-gradient(97deg, rgba(60, 241, 188, 1) 0%, rgba(106, 193, 231, 1) 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

html body .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}

html body .footer .text-reserved {
  color: #818189;
}

html body .fancybox-container .fancybox-content {
  border-radius: 1rem;
  padding: 0;
}

html body .fancybox-container .fancybox-content .header-popup-image {
  width: 450px;
  height: 180px;
  margin-bottom: 0.6rem;
}

html body .fancybox-container .fancybox-content .popup-content {
  width: 600px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 3rem;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  align-content: center;

}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier {
  background-color: #fff;
  box-shadow: 3px 3px 14px 3px rgba(0, 0, 0, 0.15);
  width: 70px;
  height: 75px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 2.6rem;
  border-radius: 0.4rem;
  overflow: hidden;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .ruban-calendrier {
  width: 100%;
  background-color: #d31e44;
  height: 8.5%;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .jour-calendrier {
  color: #d31e44;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: -3px;
  position: relative;
  left: -3px;
  line-height: 0.9;
  margin-top: 0.4rem;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .mois-calendrier {
  color: #1e1a1a;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: bold;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description .texte-complete {
  color: #30761f;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-weight: bold;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description .texte-complete .check-icon {
  margin-right: 0.6rem;
  width: 20px;
  height: 20px;
  position: relative;
  top: -1px;
}

html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description .texte-description {
  font-size: 0.9rem;
  color: #282626;
}

html body .fancybox-container .fancybox-content .popup-content .map-container {
  width: 396px;
  height: 170px;
  background-color: #f1f1f1;
  border-radius: 0.2rem;
}

html body .fancybox-container .fancybox-content .popup-content .map-container .leaflet-bottom.leaflet-right {
  display: none;
}

html body .fancybox-container .fancybox-content .popup-content .coordonnees {
  color: #282626;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 1.5rem;
}

html body .fancybox-container .fancybox-content .popup-content .coordonnees .adresse-evenement {
  font-size: 1rem;
}

html body .fancybox-container .fancybox-content .popup-content .coordonnees .heure-evenement {
  font-size: 0.78rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

html body .fancybox-container .fancybox-content .popup-content .close-popup-button {
  width: 186px;
  height: 44px;
  border-radius: 0.5rem;
  background-color: #d31e44;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 1.2rem;
}

html body .fancybox-container .fancybox-content .popup-content .close-popup-button:hover {
  background-color: #a61836;
}

.inscription-bottom,
.date-event {
  display: none;
}

.inscription {
  width: 85%;
  height: auto;
  position: absolute;
}

.inscription_left {
  display: none;
}

.inscription.banniere {
  width: 48%;
  margin: 2rem;
  top: 0;
  left: 0;
}

.inscription.online_member {
  width: 8rem;
  margin: 0;
  top: 0.9rem;
  transform: rotate(61deg);
  left: 35%;
}

.check_icon {
  width: 4rem;
  height: auto;
  margin-bottom: 2rem;
}

textarea {
  resize: vertical;
  min-height: 50px;
  max-height: 100px;
}

.field {
  background-color: #cfcfcf;
  border-radius: 5px;
}

img.inscription_left {
  display: unset !important;
  width: 100% !important;
  max-width: 33rem;
  height: auto !important;
  margin: 0 0 2rem 0;
  z-index: 1;
}

img.inscription_left.date-journee {
  display: none !important;
}

.online_member {
  position: absolute;
  right: 0;
  top: -1.6rem;
  z-index: 0;
}

.form_label {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0.9rem 0.5rem;
  justify-content: flex-start;
}

span.input-label-checkbox {
  font-size: 0.95rem;
  font-family: 'NB Architekt Std Neue', sans-serif;
  color: #fff;
  margin-top: 0.9rem;
}

span.input-label.texte {
  margin: 0 0 1rem -0.1rem !important;
  font-family: 'Archivo Narrow', sans-serif;

}
.fancybox-button svg path{
  fill: red!important;
}

.date_span {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: lowercase;
  color: #d31e44;
}

.toggleButton {
  cursor: pointer;
  display: block;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transition: transform 0.14s ease;
  margin-right: 0.5rem;
}

.toggleButton:active {
  transform: rotateX(30deg);
}

.toggleButton input {
  display: none;
}

.toggleButton input+div {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  width: 26px;
  height: 26px;
  margin: 0.4rem;
}

.toggleButton input+div svg {
  fill: none;
  stroke-width: 2.6;
  stroke: rgb(255, 255, 255);
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 1;
  stroke-dashoffset: 124.6;
  stroke-dasharray: 0 162.6 133 29.6;
  transition: all 0.4s ease 0s;
}

.toggleButton input+div:before,
.toggleButton input+div:after {
  content: '';
  width: 3px;
  height: 16px;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 5px;
}

.toggleButton input+div:before {
  opacity: 0;
  transform: scale(0.3) translate(-50%, -50%) rotate(45deg);
  animation: bounceInBefore 0.3s linear forwards 0.3s;
}

.toggleButton input+div:after {
  opacity: 0;
  transform: scale(0.3) translate(-50%, -50%) rotate(-45deg);
  animation: bounceInAfter 0.3s linear forwards 0.3s;
}

.toggleButton input:checked+div svg {
  stroke-dashoffset: 162.6;
  stroke-dasharray: 0 162.6 28 134.6;
  transition: all 0.4s ease 0.2s;
}

.toggleButton input:checked+div:before {
  opacity: 0;
  transform: scale(0.3) translate(-50%, -50%) rotate(45deg);
  animation: bounceInBeforeDont 0.3s linear forwards 0s;
}

.toggleButton input:checked+div:after {
  opacity: 0;
  transform: scale(0.3) translate(-50%, -50%) rotate(-45deg);
  animation: bounceInAfterDont 0.3s linear forwards 0s;
}

@keyframes bounceInBefore {
  0% {
    opacity: 0;
    transform: scale(0.3) translate(-50%, -50%) rotate(45deg);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1) translate(-50%, -50%) rotate(45deg);
  }

  80% {
    opacity: 1;
    transform: scale(0.89) translate(-50%, -50%) rotate(45deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(45deg);
  }
}

@keyframes bounceInAfter {
  0% {
    opacity: 0;
    transform: scale(0.3) translate(-50%, -50%) rotate(-45deg);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1) translate(-50%, -50%) rotate(-45deg);
  }

  80% {
    opacity: 1;
    transform: scale(0.89) translate(-50%, -50%) rotate(-45deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(-45deg);
  }
}

@keyframes bounceInBeforeDont {
  0% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(45deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.3) translate(-50%, -50%) rotate(45deg);
  }
}

@keyframes bounceInAfterDont {
  0% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%) rotate(-45deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.3) translate(-50%, -50%) rotate(-45deg);
  }
}
a .btn-2 {
  width: 100%;
  height: 3rem;
  border-radius: 3px;
  background-color: #ea2d3f00;
  padding: 1rem;
  border: 1px solid #ea2d3f;
  color: #ea2d3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  transition: 0.2s ease-out;
}

a .btn-2:hover {
  background-position: left;
  transition: ease 0.2s;
  border: 1px solid #ea2d3f;
  background-color: #ea2d3f;
  color: #ffffff;
}

a .btn-2 span{
  white-space: nowrap;
}

a {
  text-decoration: none;
}

.bloc-calendrier {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  margin: 0.7rem 0;
}

.liste-calendrier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.liste-calendrier span.texte-description:first-of-type {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.liste-calendrier span.texte-description:not(:first-of-type) {
  margin-left: 0.5rem;
}

.titre.texte-description {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 2.3rem;
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 1525px) and (max-height: 800px) {
  html body .left-part {
    padding-left: 0;
    /* max-width: 60%; */
    flex: 1 1 auto;
  }


  html body .left-part .left-content .logo {
    margin-bottom: 2rem;
  }

  html body .left-part .left-content .form_footer {
    margin-top: 2rem;
  }

  html body .right-part {
    width: 45%;
  }

  html body .right-part .text-decouvre {
    font-size: 2.9em;
  }

  html body .left-part .left-content {
    max-width: 65%;
  }

  html body {
    background: #fff url(../images/bg.jpg) 43% center no-repeat;
  }

}

@media screen and (max-width: 1380px) {
  html body .right-part .text-decouvre {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {

  html body .left-part .left-content .logo {
    width: 100%;
    max-width: 7rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1225px) {

  html {
    overflow: auto;
    font-size: 14px;
  }

  html body {
    flex-direction: column;
    overflow: auto;
  }

  html body::-webkit-scrollbar {
    width: 8px;
  }

  html body::-webkit-scrollbar-track {
    background-color: #1B1A1C;
  }

  html body::-webkit-scrollbar-thumb {
    background-color: #2a0555;
  }

  html body .left-part {
    width: 100%;
    /* margin-top: -17%;  */
  }

  html body .left-part .left-content {
    height: auto;
    width: 100%;
    min-width: 30rem;
    max-width: 31rem;
  }

  html body .right-part {
    width: 100%;
    top: 0;
    margin-bottom: 2rem;
    position: static;
  }

  html body .right-part .video-container {
    height: 400px;
  }

  html body .footer {
    position: relative;
    padding: 1rem;
  }

  .plan_9,
  .plan_11,
  html body .right-part .text-decouvre {
    display: none;
  }

  html body {
    background: #fff url(../images/bg.jpg) left center no-repeat;
  }

  .inscription_left {
    display: unset !important;
    width: 55% !important;
    height: auto !important;
  }

  .inscription {
    display: none;
  }

  .inscription.banniere, .inscription.online_member {
    display: block !important;
  }

  .inscription-bottom {
    display: block;
    width: 100%;
    max-width: 34rem;
    padding: 1rem 0;
    position: relative;
  }

  .date-event, img.inscription_left.date-journee {
    display: block !important;
  }

  html body {
    justify-content: center;
  }

  html body .left-part .left-content .logo.online_member {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    max-width: 7rem;
  }

  html body .left-part .left-content .logo {
    margin: 2rem 0 0 0;
  }

}

@media screen and (max-width: 740px) {

  html {
    font-size: 13px;
  }

  html body .left-part {
    padding-left: 0;
    /* margin-top: -17%; */
  }

  html body .left-part .left-content .form_footer {
    margin-top: 2rem;
    flex-direction: column;
  }

  html body .left-part .left-content .form_footer .form_btn_submit {
    width: 13rem !important;
  }

  .btn-2 {
    margin: 1rem 0;
    margin-left: 0 !important;
    width: 23rem !important;
  }

  .inscription_left {
    display: unset !important;
    width: 65% !important;
    margin: 7rem auto 2rem auto;
  }
}

@media screen and (max-width: 635px) {
  .liste-calendrier {
    margin-left: 6%;
  }

  iframe#map {
    height: 350px;
  }

  html body .fancybox-container .fancybox-content {
    flex-direction: column !important;
  }

  .inscription.banniere, .inscription.online_member {
    display: block !important;
  }

  .inscription.banniere {
    width: 66%;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description {
    min-width: 16rem;
  }

  html body .right-part .text-decouvre {
    font-size: 3.1rem;
  }

  .inscription.online_member {
    left: 72%;
    width: 7rem;
  }

  .bloc-calendrier {
    width: 100% !important;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier {
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }

  html body .fancybox-container .fancybox-content .popup-content {
    padding: 1.5rem 1rem !important;
    justify-content: center !important;
  }

  html body .fancybox-container .fancybox-content .popup-content {
    width: 100%;
  }

  iframe#map_2 {
    width: 100%;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description {
    margin-top: 0rem !important;
  }
  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .pop-up.jour-calendrier,
  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .jour-calendrier{
    margin-top: 0.9rem !important;
  }
  .titre.texte-description{
    margin-top: 5.3rem;

  }
}

@media screen and (max-width: 500px) {

  html {
    font-size: 12px;
    line-height: 1;
  }

  html body {
    display: block;
  }

  html body .left-part {
    padding-top: 0;
    height: unset;
  }

  html body .left-part .left-content {
    padding: 0 1.5rem;
    transform: scale(1);
    height: auto;
    max-width: 37rem;
  }

  html body .left-part .left-content #form .row {
    flex-wrap: wrap;
    margin-bottom: 0;
      gap: 0;
  }

  html body .left-part .left-content #form .row .civ-et-prenom {
    width: 100%;
    flex-wrap: wrap;
  }

    html body .left-part .left-content #form .row .civ-et-nom {
        width: 100%;
        flex-wrap: wrap;
    }

    html body .left-part .left-content #form .row .email {
        width: 100%;
        flex-wrap: wrap;
    }

    html body .left-part .left-content #form .row .telephone {
        width: 100%;
        flex-wrap: wrap;
    }

    html body .left-part .left-content #form .row .structure {
        width: 100%;
        flex-wrap: wrap;
    }

    html body .left-part .left-content #form .row .w50 {
        width: 100%;
        flex-wrap: wrap;
    }

  #inscription_top {
      margin-top: 25px;
  }

  html body .left-part .left-content #form .row .field {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 1.7rem;
  }

  html body .left-part .left-content #form .informations {
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  html body .right-part {
    height: unset;
    margin-top: 5%;
  }

  html body .right-part .video-container {
    height: 250px;
  }

  html body .right-part .video-container .img-droite {
    width: 130px;
    height: 85px;
  }

  html body .right-part .video-container .img-droite#img_robot {
    top: -14%;
    left: 5%;
    box-shadow: 0.7rem 0.7rem 10px 10px rgba(0, 0, 0, 0.15);
  }

  html body .right-part .video-container .img-droite#img_vr {
    bottom: -18%;
    left: 9%;
    box-shadow: 1rem -0.9rem 16px 0px rgba(0, 0, 0, 0.2);
  }

  html body .right-part .video-container .img-droite#img_discussion {
    top: -21%;
    right: 12%;
  }

  html body .right-part .text-clic {
    text-align: center;
  }

  html body .right-part .text-decouvre {
    font-size: 2.6rem;
    text-align: center;
  }

  .inscription_left {
    width: 80% !important;
    margin-bottom: 2rem;
  }

  html body .left-part .left-content {
    top: 0;
    width: 90%;
  }

  html body .footer {
    padding: 1rem;
  }

  .bloc-calendrier {
    width: 100% !important;

  }

  .liste-calendrier {
    margin-left: 6%;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier {
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }

  html body .fancybox-container .fancybox-content .popup-content {
    padding: 1.5rem 1rem !important;
    justify-content: center !important;
  }

  iframe#map {
    height: 350px;
  }

  html body .fancybox-container .fancybox-content {
    flex-direction: column !important;
  }

  .inscription.banniere, .inscription.online_member {
    display: block !important;
  }

  .inscription.banniere {
    width: 66%;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .description {
    min-width: 16rem;
  }

  .liste-calendrier {
    margin-left: 6%;
  }

  .inscription.online_member {
    left: 75%;
    width: 7rem;
  }

  html body .fancybox-container .fancybox-content .popup-content {
    width: 100%;
  }

  iframe#map_2 {
    width: 100%;
  }

  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description {
    margin-top: 0rem !important;
  }
  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .pop-up.jour-calendrier,
  html body .fancybox-container .fancybox-content .popup-content .calendrier-et-description .calendrier .jour-calendrier{
    margin-top: 0.9rem !important;
  }
  .titre.texte-description{
    margin-top: 5.3rem;
  }

}

.field.flexatelier {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 20px;
    overflow: hidden;
}
.field.flexatelier label {
    white-space: nowrap;
}
.field.flexatelier > div {
    line-height: 40px;
    height: 40px;
}

/* Select2 */
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle; }
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    user-select: none;
    -webkit-user-select: none; }
.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    /*font-family: 'NB Architekt Std Neue', sans-serif;*/
    color: #000;
    /*padding-left: 24px;
    padding-right: 20px;*/
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    text-overflow: ellipsis; }
.select2-container.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #808080;; }
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 14px;
    padding-left: 20px; }
.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 15px;
    text-overflow: ellipsis; }
.select2-container .select2-search--inline {
    float: left; }
.select2-container .select2-search--inline .select2-search__field {
    border: none;
    font-size: 100%;
    margin-top: 5px; }

.select2-dropdown {
    background-color: #4a4a4a;
    border: 1px solid #4a4a4a;
    /*border-radius: 4px;*/
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    z-index: 1051; }

.select2-results {
    display: block; }

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0; }

.select2-results__option {
    padding: 0 14px;
    color: #e9e9e9;
    line-height: 30px;
    /*font-size: 1.2em;*/
    font-size: 13.2px;
    user-select: none;
    text-overflow: ellipsis;
    -webkit-user-select: none; }
.select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
    left: 0; }

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.select2-search--dropdown {
    display: block;
    padding: 4px; }
.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
.select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    /*background-color: #fff;*/
    filter: alpha(opacity=0); }

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px !important;
    margin: -1px;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px !important; }

.select2-container--default .select2-selection--single {
    /*background-color: #F0F0F0;*/
    overflow: hidden;
    outline: 0;
    /*transition: box-shadow ease-out 0.25s;*/
    /*border: 1px solid #F0F0F0;*/
    /*border-radius: 4px;*/ }
.select2-container--default .select2-selection--single .select2-selection__rendered {
    /*color: #444;*/
    /*line-height: 28px;*/
    /*font-size: 1.2em;*/
    padding-right: 20px;
    font-size: 13.2px;
    line-height: 40px; }
.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    /*height: 26px;*/
    height: 38px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #F5F5F5;
    cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px; }
.select2-container--default .select2-selection--multiple {
    background-color: #F0F0F0;
    outline: 0;
    /*transition: box-shadow ease-out 0.25s;*/
    min-height: 40px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFRjQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2MzFDRDQ0QUM3MzgxMUU0QTA5Q0I3QTE5OTlGMDRBMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2MzFDRDQ0OUM3MzgxMUU0QTA5Q0I3QTE5OTlGMDRBMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMTQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFRjQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pm3EQl4AAABqSURBVHjaYvz//z8DLrBhw4b/N2/exCqnrq7OEBAQwIhLLxMDHgDSKCIigiEOEsNnKEGDQcDPz0+KnZ0dzgexQWKE9BE0WFRU9DnQoGAki4JBYoT0MeILY2Rw6tSppSDazMwsmhj1AAEGAFDkGlUTF1ILAAAAAElFTkSuQmCC);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    /*background-color: white;
    border: 1px solid #aaa;*/
    /*border-radius: 4px;*/
    /*cursor: text;*/
    cursor: pointer; }
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    /*padding: 9px 9px 0 9px;*/
    padding: 9px 22px 0 9px;
    width: 100%; }
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: rgba(0,0,0,0.7);
    margin-top: 5px;
    float: left; }
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #ffffff;
    color: #464c58;
    /*border: 1px solid #aaa;*/
    /*border-radius: 4px;*/
    cursor: default;
    float: left;
    margin-right: 9px;
    margin-bottom: 8px;
    line-height: 20px;
    padding: 0 5px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 4px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
    float: right; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none; }
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /*box-shadow: 0 0 5px #7f7f7f inset;*/
    /*box-shadow: 0 0 5px #F0F0F0 inset;*/
    /*border: 1px solid #F0F0F0;
    background: #FFFFFF;*/ }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*box-shadow: 0 0 5px #7f7f7f inset;*/
    /*box-shadow: 0 0 5px #F0F0F0 inset;*/
    /*border: 1px solid #F0F0F0;
    background: #FFFFFF;*/ }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGMDQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGMUE4RjhDN0M3MzgxMUU0OEVDMUJENjM4RDZFN0QwQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGMUE4RjhDNkM3MzgxMUU0OEVDMUJENjM4RDZFN0QwQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMzQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMDQ3MkQ3MjM3QzdFNDExODdCRkQ0MTJEMjk0NEUxOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpNfTjQAAABzSURBVHjaYvz//z8DPvD69Wsw/fnzZ4Y3b94sBbFFRESieXl5weKioqJY9TExEA+C9u/fHwXCIDYhxcQaLLlp06a1MA6ULYlPAyOhoNiwYQPD27dv/wODAUUcGBwMwsLCjAEBAWS7GMNQEICK4XQVQIABAFlsLRNDNGNGAAAAAElFTkSuQmCC);
    background-position: 100% 50%;
    background-repeat: no-repeat;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__rendered {
    line-height: 40px; }
.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__rendered {
    padding: 8px 8px 0 8px;  }
.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__choice {
    /*border: 1px solid #F0F0F0;*/
    background: #969696;/*
  margin-right: 7px;
  margin-bottom: 7px;*/ }
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa; }
.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0; }
.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    font-size: 0.9rem !important;
    overflow-y: auto; }
.select2-container--default .select2-results__option[role=group] {
    padding: 0; }
.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999; }
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #717171; }
.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    /*background-color: #5897fb;*/
    /*background-color: #d21242;*/
    background-color: #464c58;
    color: 000; }
.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px 0;
    font-size: 0.9rem; }
.select2-results__options .select2-results__options--nested .select2-results__option {
    padding-left: 2.0em;
}

.row label {
    display: block;
    margin-bottom: 4px;
    color: #ededed;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 10000s ease-in-out 0s, box-shadow 10000s ease-in-out 0s !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.6) inset !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
}


h2 {
  font-size: 2rem;
  margin-top: 0;
  font-family: Inter, sans-serif;
  color: #b7b7b7;
  font-weight: 900;
  max-width: 33rem;
}

h2 span.color {
  /*color : #ffffff;*/
}
h2 span.light {
  color : #fd69a2;
  font-size: 2.9rem;
}