@charset "UTF-8";
[type=text],
[type=password],
[type=date],
[type=email],
[type=tel],
[type=url],
[type=number],
input,
textarea {
  max-width: 100%;
  padding: 19px;
  display: inline-block;
  color: #0e013b;
  font-size: 16px;
  border: 1px solid #c0c0c0;
}
[type=text].error,
[type=password].error,
[type=date].error,
[type=email].error,
[type=tel].error,
[type=url].error,
[type=number].error,
input.error,
textarea.error {
  border-color: #e00;
}
[type=text]::placeholder,
[type=password]::placeholder,
[type=date]::placeholder,
[type=email]::placeholder,
[type=tel]::placeholder,
[type=url]::placeholder,
[type=number]::placeholder,
input::placeholder,
textarea::placeholder {
  color: #c0c0c0;
}

select {
  position: relative;
  display: block;
  width: 100%;
  appearance: none;
  max-width: 100%;
  padding: 19px;
  line-height: normal;
  border-radius: 0;
  line-height: normal;
  appearance: none;
  background-color: inherit;
  background-image: url("../../assets/icons/svg/ic_chevron_down.svg");
  background-repeat: no-repeat;
  background-position: right 1.2em top 50%, 0 0;
  border: 1px solid #c0c0c0;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: normal;
}

/*Turn off up and down arrows on number INPUT*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.js-form-required::after {
  content: " *";
  color: var(--color-dark-grey);
}

/*----CHECKBOX----*/
input[type=checkbox] {
  position: relative;
  display: inline-block;
  appearance: none;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  padding: inherit;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid var(--color-dark-grey);
  transition: all 0.15s;
}

input[type=checkbox]:checked {
  transition: all 0.15s;
}
input[type=checkbox]:checked:before {
  content: "¬";
  position: absolute;
  top: 45%;
  left: 20%;
  color: var(--color-dark-grey);
  margin: 0;
  line-height: 0;
  font-size: 20px;
  transform: rotate(135deg);
}

/*----TOGGLE SWITCH----*/
input[data-switch] {
  display: none;
}

input[data-switch] + label {
  /*SLIDER*/
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  width: 46px;
  height: 32px;
  color: #dadada;
  font-size: 23px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  background-color: #f2f2f2;
  border: 1px solid currentColor;
  /*CURSOR*/
}
input[data-switch] + label:after {
  content: "𐄂";
  position: absolute;
  height: 32px;
  width: 32px;
  left: -2px;
  top: -1px;
  color: #777777;
  background-color: white;
  border-radius: 2rem;
  border: 1px solid #dadada;
  transition-duration: 0.1s;
}

input[data-switch]:checked + label {
  /*SLIDER*/
  color: #ef5327;
  line-height: 30px;
  font-size: 20px;
  border: none;
  background-color: currentColor;
  /*CURSOR*/
}
input[data-switch]:checked + label:after {
  content: "¬";
  left: 15px;
  top: 0;
  color: #ef5327;
  transform: rotate(130deg);
  border: 1px solid currentColor;
  transition-duration: 0.1s;
}

/* REGISTER / USER SPACE / CONTACT form*/
.user-form {
  padding: 10px;
  width: 70%;
}
@media (max-width: 767px) {
  .user-form {
    margin: auto;
    width: 100%;
    padding: 0 20px 0 20px;
  }
}

.field-group-html-element:not(:first-of-type) {
  margin-top: 50px;
}
.field-group-html-element h3 {
  font-weight: normal;
  font-size: 18px;
  line-height: 1em;
  font-family: "circularstd";
  color: #0e013b;
  margin: 0;
}

.js-form-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.js-form-item * {
  width: 100%;
}

.form-item,
.form-actions {
  margin-block: 1rem;
}

.inline-fields-container {
  display: flex;
  justify-content: space-between;
}
.inline-fields-container .js-form-wrapper {
  width: 48%;
  margin-top: 0;
}

.js-form-type-password-confirm {
  margin-top: 0px;
}
.js-form-type-password-confirm input {
  width: 100%;
}

.form-item-field-elected-member-value {
  flex-direction: row !important;
  align-items: center;
  height: 60px;
  border-top: 1px solid #7a7c93;
  border-bottom: 1px solid #7a7c93;
}
.form-item-field-elected-member-value label {
  margin-bottom: 0;
}

.description {
  display: none;
}

.js-form-item-field-agreed-value a {
  color: #ef5327;
}

.js-form-type-checkbox {
  flex-direction: row;
}

/*CONTACT FORM*/
.contact-message-nous-contacter-form {
  max-width: 610px;
}

.node-preview-container {
  position: static;
}
.node-preview-container .form-type-select {
  margin-left: 0;
}