@charset "UTF-8";
::-moz-placeholder {
  --primary-color: #1a1a1a;
  --primary-variant1-color: var(--primary-color);
  --primary-variant2-color: var(--primary-color);
  --secondary-color: #90b0ef;
  --border-color: #1a1a1a;
  --headband-color: #ced4da;
  --light-color: #c8d2ab;
  --grey-color: #b7b7b7;
  --lightgrey-color: #f6f6f6;
  --darkgrey-color: #707070;
  --title-border-color: transparent;
  --title-border-height: 0;
  --box-shadow: 0 4px 10px 0 #00000040;
  --notify-info-color: #fff;
  --notify-info-bg-color: #0af;
  --notify-success-color: #fff;
  --notify-success-bg-color: #4caf50;
  --notify-warning-color: #fff;
  --notify-warning-bg-color: #ff0001;
}
body,
::before,
::after,
::placeholder {
  --primary-color: #1a1a1a;
  --primary-variant1-color: var(--primary-color);
  --primary-variant2-color: var(--primary-color);
  --secondary-color: #90b0ef;
  --border-color: #1a1a1a;
  --headband-color: #ced4da;
  --light-color: #c8d2ab;
  --grey-color: #b7b7b7;
  --lightgrey-color: #f6f6f6;
  --darkgrey-color: #707070;
  --title-border-color: transparent;
  --title-border-height: 0;
  --box-shadow: 0 4px 10px 0 #00000040;
  --notify-info-color: #fff;
  --notify-info-bg-color: #0af;
  --notify-success-color: #fff;
  --notify-success-bg-color: #4caf50;
  --notify-warning-color: #fff;
  --notify-warning-bg-color: #ff0001;
}

h1 {
  position: relative;
}

h1::after {
  background: var(--title-border-color, transparent);
  bottom: -1rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

body:not([default]) {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

img {
  --width-picture: 200px;
  font-size: 0;
}
img::after {
  aspect-ratio: 1/1;
  content: url("/img/pictureNotFound.svg");
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: var(--width-picture);
}
img::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -5px;
  width: var(--width-picture);
}

.modal-sail {
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 1030;
}
.modal-sail .modal-sail-division {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  height: 95%;
  padding: 50px;
  position: relative;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .modal-sail .modal-sail-division {
    height: 100%;
    width: 100%;
  }
}
.modal-sail .modal-sail-division .modal-sail-division-container {
  margin: 0 -10px;
  max-height: 90%;
  overflow: auto;
  padding: 0 10px;
}
.modal-sail .modal-sail-division .modal-sail-division-button-confirm {
  background-color: var(--primary-button-color, var(--primary-color));
  border: none;
  border-radius: 5px;
  bottom: 25px;
  color: #fff;
  max-width: 65%;
  min-width: 150px;
  padding: 10px;
  position: absolute;
  right: 50px;
  text-transform: uppercase;
}
.modal-sail .modal-sail-division .modal-sail-division-button-cancel {
  background-color: #90b0ef;
  border: none;
  border-radius: 5px;
  bottom: 25px;
  color: #fff;
  left: 50px;
  max-width: 100%;
  min-width: 150px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
}

#sentence-container {
  font-weight: bold;
}

body [meta-title] {
  position: relative;
  /* Tooltip text */
}
body [meta-title]::before, body [meta-title]::after {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  color: #000;
  font-size: initial;
  left: 50%;
  padding: 5px;
  position: absolute;
  text-align: center;
  visibility: hidden;
  white-space: break-spaces;
  width: 150px;
  z-index: 1;
}
body [meta-title]:hover[meta-title-top]::after {
  bottom: 20px;
  top: inherit;
}
body [meta-title]:hover[meta-title-top]::before {
  top: -15px;
}
body [meta-title]:hover[meta-title-bottom]::after {
  top: 20px;
}
body [meta-title]:hover[meta-title-bottom]::before {
  bottom: -15px;
  top: inherit;
}
body [meta-title]:hover::after {
  content: attr(meta-title);
  top: 20px;
  transform: translateX(-50%);
  visibility: visible;
}
body [meta-title]:hover::before {
  border-radius: 0;
  content: "";
  height: 5px;
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
  visibility: visible;
  width: 5px;
}

.mdl-textfield :not(.has-placeholder, .is-dirty) > input[placeholder]::-moz-placeholder {
  color: transparent;
}

.mdl-textfield :not(.has-placeholder, .is-dirty) > input[placeholder]::placeholder {
  color: transparent;
}
.mdl-textfield.has-placeholder label,
.mdl-textfield input:invalid[placeholder] + label,
.mdl-textfield input:required:valid + label {
  font-size: var(--paragraph-font-size, 12px) !important;
  top: 4px;
  visibility: visible;
}
.mdl-textfield .label.mdl-textfield__label span {
  position: all;
}

.modal-gcu,
.modal-linked-cgp {
  text-align: center;
}
.modal-gcu .flex-button,
.modal-linked-cgp .flex-button {
  justify-content: space-between;
  padding: 0;
}
.modal-gcu .flex-button button,
.modal-linked-cgp .flex-button button {
  margin: 0;
  max-width: 100%;
}

.modal-gcu .modal-dialog {
  max-width: 1000px;
  width: calc(100% - 30px);
}
.modal-gcu .close {
  color: var(--primary-color);
  height: auto;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.modal-gcu .close:hover {
  color: var(--secondary-color);
}
.modal-gcu .content {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow, 0 4px 10px 0 rgba(0, 0, 0, 0.2509803922));
  height: 450px;
  margin: 10px 0 25px;
  overflow: auto;
  padding: 15px;
  text-align: left;
  width: 100%;
}

#modal-gcu .modal-content .modal-body {
  font-weight: 400;
}

td label.mdl-checkbox.mdl-js-checkbox, td label.mdl-radio.mdl-js-radio {
  height: 20px;
  left: 50%;
  margin: 0;
  padding-left: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

img[src^=https] {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

svg.center {
  display: block;
}

.wrapper-button {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  padding: 15px 0;
  position: relative;
  width: 100%;
}

form .wrapper-button .button-primary-color,
form .wrapper-button .button-secondary-color,
form .wrapper-button button {
  margin: 0 auto;
}

button {
  position: relative;
}

svg.pencil {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 16px;
  z-index: 1;
}
svg.valid {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
}

.svg-path {
  fill: var(--svg-path);
}

.grid-button {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  padding: 0;
}

@media (max-width: 1240px) {
  body .modal-sail .modal-sail-division {
    width: calc(70% - 25px);
  }
}
@media (max-width: 1024px) {
  body .modal-sail .modal-sail-division {
    width: calc(100% - 25px);
  }
}
.shadow-box {
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1607843137);
  margin: 0 10px;
  opacity: 1;
  padding: 2px 8px;
}

.radio-many > div {
  margin-bottom: 35px;
  padding: 0;
  word-break: break-word;
}

.kyc-form-body > div.radio-many,
.radio-many {
  display: inline-block;
  margin-bottom: 35px;
  width: 100%;
}

#fill-select-cgp {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#fill-select-cgp .cgp-box {
  display: inline-block;
  margin: 50px 0;
}
#fill-select-cgp .cgp-box h4 {
  margin: 10px 0 0;
}
#fill-select-cgp .cgp-box span {
  font-weight: 400;
}
#fill-select-cgp .radio-many {
  display: flex;
  flex-direction: column;
}
#fill-select-cgp .radio-many div {
  margin: 0;
}

.header-top {
  display: flex;
  flex-direction: column;
}
.header-top .client-tab-container {
  display: flex;
}
.header-top .client-tab-container > * {
  flex-grow: 1;
}

.flex-container {
  display: flex;
}
.flex-container > * {
  flex: 1 0;
}

.subscription-kpi {
  height: 100%;
}
.subscription-kpi > * {
  text-align: center;
}

.two-grid-columns {
  align-items: end;
  display: grid;
  grid-template: 1fr/6fr 6fr;
}

.client-tab-container .client-tab ~ .client-tab {
  border-left-width: 0;
}

.account a.download-button {
  text-align: left;
}
.account a.download-button:hover {
  text-align: left;
}

.modal-body .additional-text {
  line-height: normal;
}

.radio-many.container-tooltip {
  height: 120px;
}

._row {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
._row > :nth-last-child(1):first-child,
._row > :nth-last-child(1):first-child ~ * {
  width: calc(100% - 0px);
}
._row > :nth-last-child(2):first-child,
._row > :nth-last-child(2):first-child ~ * {
  width: calc(50% - 10px);
}
._row > :nth-last-child(3):first-child,
._row > :nth-last-child(3):first-child ~ * {
  width: calc(33.3333333333% - 13.3333333333px);
}
._row > :nth-last-child(4):first-child,
._row > :nth-last-child(4):first-child ~ * {
  width: calc(25% - 15px);
}
._row > :nth-last-child(5):first-child,
._row > :nth-last-child(5):first-child ~ * {
  width: calc(20% - 16px);
}
._row > :nth-last-child(6):first-child,
._row > :nth-last-child(6):first-child ~ * {
  width: calc(16.6666666667% - 16.6666666667px);
}

@media (max-width: 576px) {
  .mobile-responsive {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  #reject,
  #continue {
    margin: 10px auto;
  }
}

._row-1 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(100% - 20px), 1fr));
  max-width: 70%;
}

._row-2 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(50% - 20px), 1fr));
  max-width: 70%;
}

._row-3 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(33.3333333333% - 20px), 1fr));
  max-width: 70%;
}

._row-4 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(25% - 20px), 1fr));
  max-width: 70%;
}

._row-5 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(20% - 20px), 1fr));
  max-width: 70%;
}

._row-6 {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(auto-fit, minmax(calc(16.6666666667% - 20px), 1fr));
  max-width: 70%;
}

._container-justified {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: -20px;
  position: relative;
  width: 100%;
}
._container-justified > * {
  margin-left: 20px;
}

.lottie-box {
  height: auto;
  width: 300px;
}

.input-center-small {
  display: block;
  margin: 0 auto;
  width: min(100%, 350px);
}

.input-center-medium {
  display: block;
  margin: 0 auto;
  width: min(100%, 500px);
}

body .paymentForm {
  --payment-square-width: 370px;
  --payment-square-height: 250px;
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  justify-content: center;
  position: relative;
}
body .paymentForm .paymentForm__label {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(7, 25, 51, 0.25);
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: var(--payment-square-width);
  min-height: var(--payment-square-height);
  min-width: var(--payment-square-width);
  opacity: 1;
  overflow: hidden;
  transition: 1s flex 0.5s, 1s min-width 0.5s, 1s opacity 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: var(--payment-square-width);
}
body .paymentForm .paymentForm__label .paymentForm__label__check {
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 20px;
  justify-content: center;
  width: 20px;
}
body .paymentForm .paymentForm__label > span {
  width: auto;
}
body .paymentForm .paymentForm__label__image {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 150px;
}
body .paymentForm .paymentForm__description {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  min-width: 100%;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  transition: 0.5s max-height 0.5s, 0.5s opacity 0.5s;
}
body .paymentForm .paymentForm__description > ul {
  text-align: start;
}
body .paymentForm .paymentForm__description__display {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 100%;
  text-align: center;
}
body .paymentForm .paymentForm__description__display > ul {
  text-align: start;
}
body .paymentForm .paymentForm__back {
  background: transparent;
  border: none;
  left: calc(50% - (var(--payment-square-width) / 2 + 45px));
  opacity: 0;
  position: absolute;
  top: calc(var(--payment-square-height) / 2 + 5px);
  transform: translateX(-50%) translateY(-50%);
  transition: 0.25s opacity;
}
body .paymentForm input:checked + .paymentForm__label .paymentForm__label__check {
  background-color: #1a1a1a;
}
body .paymentForm input:checked + .paymentForm__label {
  background: rgba(0, 175, 108, 0.2509803922);
}
body .paymentForm:valid .paymentForm__radio:not(:checked) + .paymentForm__label {
  flex: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s flex, 0.5s min-width, 0.5s opacity;
}
body .paymentForm:valid #cheque:checked ~ [data-for=cheque],
body .paymentForm:valid #virement:checked ~ [data-for=virement],
body .paymentForm:valid #payment_online:checked ~ [data-for=payment_online],
body .paymentForm:valid #pea:checked ~ [data-for=pea] {
  max-height: 1000px;
  opacity: 1;
  transition: 0.5s opacity 0.5s, 0.5s max-height 0.5s ease-in-out;
}
body .paymentForm:valid .paymentForm__back {
  opacity: 1;
  transition: 1s opacity 0.5s;
}

/** cancellation */
#cancellation-headband {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: var(--primary-color, black);
  color: white;
  text-align: center;
  padding: 0.625rem;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#cancellation-headband p {
  max-width: 80rem;
  font-size: 13px;
  margin: auto;
}
#cancellation-headband p i,
#cancellation-headband p svg {
  color: white;
  padding-left: 0.1875rem;
  padding-right: 0.5rem;
}
#cancellation-headband p a {
  color: white;
  text-decoration: underline;
}

/** expiration */
body .expiration-headband {
  background-color: #b1d4ff;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  justify-content: center;
  padding: 10px;
}
body .subHeader + .expiration-headband {
  grid-auto-flow: revert;
  padding: 1rem 0 1.25rem;
}
body .expiration-underline {
  cursor: pointer;
  text-decoration: underline;
}
body .expiration-underline:hover {
  text-decoration: underline;
}

.section-button-container {
  display: flex;
  justify-content: space-evenly;
}

body .iti input {
  z-index: 1;
}
body .iti input[type=text], body .iti input[type=tel] {
  z-index: 1;
}

.container {
  margin: 1rem auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

body .header__cross {
  display: none;
}
@media (max-width: 1199px) {
  body .header__burger__container:focus .header__rightContainer,
  body .header__burger__container:focus-within .header__rightContainer {
    align-items: center;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 1;
  }
  body .header__burger__container:focus + .header__cross,
  body .header__burger__container:focus-within + .header__cross {
    display: block;
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 2;
  }
  body .header__rightContainer__link,
  body .header__rightContainer__subContainer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  body .header__rightContainer__link {
    display: flex;
    flex-direction: row;
  }
}
body .kyc-header {
  align-items: center;
  height: 200px;
  justify-content: center;
  width: 100%;
}

form[novalidate].is-invalid input[type=radio]:invalid ~ span {
  border-color: #f00;
}
form[novalidate].is-invalid input:invalid {
  border-color: #f00 !important;
}

.waiting-room-container {
  align-items: center;
  border-radius: var(--border-radius, 0);
  display: flex;
  flex-direction: column;
  max-height: 70%;
}

.waiting-room-sentence {
  font-weight: 100;
  position: relative;
  text-align: center;
  top: 30px;
}

.waiting-room-counter {
  font-size: 2rem;
  font-weight: 100;
  position: absolute;
  top: 42%;
}

.waiting-room-logo {
  animation-delay: 1.2s;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: waiting-room;
  animation-timing-function: steps(1, start);
  transform: rotateZ(0deg);
}

.home-header {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

@keyframes waiting-room {
  0% {
    transform: rotateZ(0deg);
  }
  8.333333333333334% {
    transform: rotateZ(30deg);
  }
  16.666666666666668% {
    transform: rotateZ(60deg);
  }
  25% {
    transform: rotateZ(90deg);
  }
  33.333333333333336% {
    transform: rotateZ(120deg);
  }
  41.66666666666667% {
    transform: rotateZ(150deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  58.333333333333336% {
    transform: rotateZ(210deg);
  }
  66.66666666666667% {
    transform: rotateZ(240deg);
  }
  75% {
    transform: rotateZ(270deg);
  }
  83.33333333333334% {
    transform: rotateZ(300deg);
  }
  91.66666666666667% {
    transform: rotateZ(330deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.subHeaderTitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.subHeaderTitleLink {
  color: var(--error-color);
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  text-align: center;
  width: 100%;
}

.inscription {
  display: grid;
  height: -moz-min-content;
  height: min-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 4rem 150px;
  row-gap: 4rem;
  width: 100%;
}
@media (max-width: 576px) {
  .inscription {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.inscription__heading {
  margin: 0;
  text-align: left;
}

.inscription__selector {
  display: grid;
  gap: 2rem 8rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .inscription__selector {
    grid-template-columns: 1fr;
  }
}

.inscription__selector__button {
  background-color: var(--inscription-selector-button-background, #fff) !important;
  border: 1px solid var(--inscription-selector-button-border-color, var(--primary-color)) !important;
  border-radius: var(--border-radius);
  box-shadow: none;
  color: var(--inscription-selector-button-border-color, var(--primary-color)) !important;
  padding: 1rem 2rem;
  text-transform: uppercase;
  width: 100%;
}
.inscription__selector__button.active, .inscription__selector__button:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.inscription__form {
  display: none;
  justify-items: center;
  margin: 0 !important;
  max-width: initial !important;
  row-gap: 3rem;
  width: 100%;
}
.inscription__form.active {
  display: grid !important;
}

.inscription__form__main {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (max-width: 992px) {
  .inscription__form__main {
    grid-template-columns: 1fr;
  }
}

.inscription__form__wmaWrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

.inscription__form__wmaWrapper__radioWrapper {
  display: grid !important;
  margin: 0 !important;
  row-gap: 1rem;
}
.inscription__form__wmaWrapper__radioWrapper .kyc-subtitle {
  margin: 0;
}
.inscription__form__wmaWrapper__radioWrapper .row.dual-radio {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: grid;
  grid-auto-flow: column;
  justify-items: center;
}
.inscription__form__wmaWrapper__radioWrapper .col-md-6.col-xs-6 {
  padding: 0;
  width: -moz-min-content;
  width: min-content;
}

.inscription__form__inputWrapper {
  display: grid;
  position: relative;
  row-gap: 0.3rem;
}

.inscription__form__inputWrapper__input {
  border: 1px solid var(--grey-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  height: var(--input-height);
  margin: 0;
  padding: 1rem;
}
.inscription__form__inputWrapper__input:disabled {
  cursor: not-allowed;
}

.inscription__riskText {
  width: 100%;
}

.inscription__recommendationWrapper {
  display: grid;
  width: 100%;
}

.inscription__button {
  margin: 0 !important;
  width: -moz-min-content;
  width: min-content;
}

.column-auto {
  display: grid;
  margin: 3rem auto;
  max-width: calc(100% - 30px);
  padding: unset;
}

#montantProjet {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.d-flex {
  display: flex;
}

#orgFondsCol,
#lettreMissionCol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body div[data-notify=container] {
  border: none;
  border-radius: 5px;
  z-index: 9999 !important;
}
body div[data-notify=container].alert-info, body div[data-notify=container].alert-success, body div[data-notify=container].alert-warning {
  font-family: inherit;
}
body div[data-notify=container].alert-info, body div[data-notify=container].alert-info button[data-notify=dismiss] {
  background-color: var(--notify-info-bg-color, #0af);
  color: var(--notify-info-color, #fff);
}
body div[data-notify=container].alert-success, body div[data-notify=container].alert-success button[data-notify=dismiss] {
  background-color: var(--notify-success-bg-color);
  color: var(--notify-success-color);
}
body div[data-notify=container].alert-warning, body div[data-notify=container].alert-warning button[data-notify=dismiss] {
  background-color: var(--notify-warning-bg-color);
  color: var(--notify-warning-color);
}
body div[data-notify=container] span[data-notify=icon] {
  font-size: 18px;
  padding-right: 5px;
  position: relative;
  top: 1px;
}
body div[data-notify=container] span[data-notify=message] {
  font-size: 17px;
  padding-right: 5px;
}
body div[data-notify=container] [data-notify=message] li::before {
  background-color: #fff;
  height: 5px;
  width: 5px;
}
body div[data-notify=container] button[data-notify=dismiss] {
  font-weight: 100;
  opacity: 1;
  text-shadow: none;
}

.star-alert {
  color: red;
  display: contents;
}

.f-center-vertical {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.account-cgp {
  display: flex;
}

body:has(.account-cgp) {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

body:has(.class-cgp) {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

body:has(.account-content-cgp) {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.account-content-cgp {
  border: none;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  width: 100%;
}

.account-content-section-form-title-cgp {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.account-content-section-form-cgp {
  display: grid;
  justify-items: center;
  padding-bottom: 3rem;
  row-gap: 3rem;
  width: 100%;
}

.inscription__selector__button.active,
.inscription__selector__button:hover,
.inscription__selector__button.inscription-button[data-active] {
  background-color: var(--primary-button-color, var(--primary-color)) !important;
  border: 1px solid var(--secondary-color) !important;
  color: #fff !important;
  font-family: var(--bold-font-family);
}

button.inscription {
  margin-top: 2rem;
}

#section-dof .mdl-checkbox {
  height: auto;
}

.portrait.portrait-content-button button.invest {
  width: 100%;
}

.account-content-section-container {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media (max-width: 1199px) {
  .account-content-section-container {
    flex-direction: column;
    gap: 2rem;
  }
}

.mt-30 {
  margin-top: 30px;
}

.client-table-area,
#client-table {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#infos-client-cgp .account-content-section-form .form__inner {
  padding: 0 0.9375rem 3rem;
}

#cgp-client-files {
  display: grid;
  margin-bottom: 3rem;
  gap: 8px;
}

.table-container {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.j-between {
  justify-content: space-between;
}

.projectEmbed .portrait-content-button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-inline: 0;
}
.projectEmbed .portrait-content-button button.invest {
  margin-bottom: 0.5rem;
  margin-inline: auto;
  width: calc(100% - 1rem);
}
.projectEmbed .portrait-content-button .check {
  padding-inline: 1rem;
}

.levee-header-bottom .levee-header-bottom-container {
  maring-top: 54px;
  top: 0;
}

.levee .box-notif {
  font-size: 0.9rem;
}

@font-face {
  font-family: ocrey;
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/OC_rey/ocrey_regular.woff2") format("woff2"), url("/fonts/OC_rey/ocrey_regular.woff") format("woff");
}
@font-face {
  font-family: "tomatogrotesk_light";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Tomato_grotesk_light/tomatogrotesk_light.woff2") format("woff2"), url("/fonts/Tomato_grotesk_light/tomatogrotesk_light.woff") format("woff");
}
@font-face {
  font-family: tomatogrotesk;
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Tomato_grotesk/tomatogrotesk_regular.woff2") format("woff2"), url("/fonts/Tomato_grotesk/tomatogrotesk_regular.woff") format("woff");
}
@font-face {
  font-family: "tomatogrotesk_bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Tomato_grotesk_bold/tomatogrotesk_bold.woff2") format("woff2"), url("/fonts/Tomato_grotesk_bold/tomatogrotesk_bold.woff") format("woff");
}
/* width */
::-webkit-scrollbar {
  border-radius: var(--border-radius);
  width: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: var(--border-radius);
  width: 1rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color, #000);
  border-radius: var(--border-radius);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  width: 1rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color, #000);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

body {
  --border-radius: 0;
  font-family: tomatogrotesk;
}

html body .title_docs,
.mdl-textfield__label {
  font-family: tomatogrotesk;
}

html body .home-header-txt h1 {
  color: #000;
  font-family: ocrey;
  font-size: 55px;
  font-weight: 100;
  line-height: 65px;
  padding-bottom: 25px;
}

html body h1 {
  font-family: tomatogrotesk;
  font-size: 65px;
  line-height: 0.9;
}

html body h2 {
  font-family: "tomatogrotesk_bold";
  font-size: 45px;
  font-weight: 100;
  margin-bottom: 50px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.project-embed-title {
  border-bottom: 2px solid;
  border-top: 2px solid;
  margin-top: 100px;
  padding: 20px 0;
}

.project-embed-locate {
  margin: 0;
  padding: 90px 0;
}

.project-embed-content {
  display: block;
  position: relative;
}

.project-embed-content-picture {
  /* height: 550px; */
  margin-bottom: 50px;
}

.header-home h2 {
  font-size: 30px;
}

.levee-bottom-name {
  font-family: ocrey;
  font-size: 30px;
  margin: 30px 0;
}

body h5 {
  display: block;
  font-family: "tomatogrotesk_bold";
  font-size: 22px;
}

body .content-2 h5 {
  font-family: tomatogrotesk;
}

body h1,
body h2,
body h3,
body h4,
body h6,
body .title,
body #typed,
body .typed-cursor,
body .raleway,
html body .nav-pills > li > a,
body .modal-content,
.profile {
  font-family: "tomatogrotesk_light", sans-serif;
}

html body,
#kyc-header * {
  color: #000;
  font-family: "tomatogrotesk_light";
  line-height: 26px;
}

html body div.header-top {
  /* padding-top: 175px!important; */
}

body p,
body ul,
body span {
  font-size: 16px;
  font-weight: inherit;
  line-height: 26px;
}

body p {
  font-weight: normal;
  margin-bottom: 30px;
}

/************************************************************ FIN Fonts ************************************************************/
/************************************************************ Background color set ************************************************************/
#presse .press_content .base,
button[data-toggle=collapse] span[class=icon-bar],
body .modal-content,
body #investissement .modal-content,
body .btn-info,
body .btn-info:hover,
body .btn-info:focus,
body .btn-info:active,
body .btn-info.active,
body .open > .dropdown-toggle.btn-info,
.sticky.sticky_space.nav-bar,
.element {
  background-color: #fff;
}

.dropdown-content,
.navbar.navbar-fixed-top.fixed-theme {
  background-color: #fff;
  color: #000;
  font-family: "tomatogrotesk_light";
}

body .navbar-nav > li.code-cgp {
  padding: 0 0 0 20px;
}

#kyc-header .progress,
.levee-container .fiscalite,
.levee-container .bar .pourcent_bar,
#financement .bar .pourcent_bar,
.header .mdl-textfield__label::after,
#compte_img .profile {
  background-color: #000;
}

#tabKYC #kyc-prev,
html .nav > li > a:hover:not(#connexion),
html .nav > li > a:focus:not(#connexion),
html .nav > li > a:hover:not(#inscrire),
html .nav > li > a:focus:not(#inscrire),
html .nav > li > a:hover:not(#compte),
html .nav > li > a:focus:not(#compte),
html .nav > li > a:hover:not(#logout),
html .nav > li > a:focus:not(#logout),
html .nav > li > a.active,
html .nav > li > a#connexion,
html .nav > li > a#compte,
html .nav > li > a#inscrire,
html .nav > li > a#logout,
html .nav > li > a#inscrire:hover,
html .nav > li > a#inscrire:focus,
html .nav > li > a#logout:hover,
html .nav > li > a#logout:focus,
html .nav > li > a#connexion:hover,
html .nav > li > a#connexion:focus,
html .nav > li > a#compte:hover,
html .nav > li > a#compte:focus,
body .btn-info.active.focus,
body .btn-info.active:focus,
body .btn-info.active:hover,
body .btn-info:active.focus,
body .btn-info:active:focus,
body .btn-info:active:hover,
body .open > .dropdown-toggle.btn-info.focus,
body .open > .dropdown-toggle.btn-info:focus,
body .open > .dropdown-toggle.btn-info:hover,
html body button.button,
button.invest,
div#accordion .panel-default > .panel-heading {
  background-color: inherit;
}

#kyc-header .bar {
  background-color: rgb(255, 255, 255);
}

.levee-container .bar .pourcent_bar.success,
#financement .bar .pourcent_bar.success {
  background-color: #4ecdc4;
}

body .mdl-textfield.is-disabled .mdl-textfield__input,
body fieldset[disabled] .mdl-textfield .mdl-textfield__input {
  color: #000;
}

/************************************************************ FIN background color set ************************************************************/
/************************************************************ Color set ************************************************************/
#soon .title,
#presse .title,
.levee-container .domaine,
body .mdl-textfield__label,
body .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label,
body .mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
body .mdl-textfield--floating-label.is-focused .mdl-textfield__label,
#soon .slick-prev::before,
#soon .slick-next::before,
#presse .slick-next::before,
#presse .slick-prev::before,
#documents ul li h4::before,
#capital_s::before,
#domaine + p#techno::before,
.j_restant::before,
.contenu1 .derriere,
.contenuCard .derriere,
body .mdl-textfield--floating-label.is-invalid .mdl-textfield__label,
body .mdl-textfield__error,
button.colorprimButton {
  color: #000;
}

.header .text input[type=text]::-moz-placeholder {
  color: #fff;
}

.kyc-body label.btn.btn-default.active,
#kyc-header *,
.btn-blueTylia,
body .close,
.levee-container .fiscalite,
input[type=radio] + label,
.header .text input[type=text]::placeholder,
.header .text input[type=text]:input-placeholder,
.header .text input[type=text]::input-placeholder,
.division.bandeaufin,
html body input[type=button],
input[type=reset],
input[type=submit],
#presse.division,
footer,
footer button[type=submit],
footer input[type=text]:input-placeholder,
footer input[type=text]::input-placeholder,
.division.bandeaufin,
.levee-container .domaine,
.dropdown-content span:hover,
.dropdown-content a:hover span {
  color: #fff;
}

body .nav-pills > li.active > a,
body .nav-pills > li.active > a:hover,
body .nav-pills > li.active > a:focus,
body .nav.nav-pills > li > a,
body .nav.nav-pills.pills_compte > li > a,
.panel-heading .profile,
html #exTab1 .panel-group .panel.panel-default .content,
html #exTab1 .panel-group .panel.panel-default .levee-details,
body .btn-info,
body .btn-info:hover,
body .btn-info:focus body .btn-info:active,
body .btn-info.active,
body .open > .dropdown-toggle.btn-info,
.dropdown-content a,
.navbar-fixed-top.fixed-theme span[class=icon-bar],
.header .text button[type=submit],
header .text button[type=submit],
#transitiontoevent:hover,
.gray,
.thumbnail p,
#presse .press_content .base,
footer #social,
html body .nav.nav-pills > li > a,
body .nav.nav-pills > li > a,
body .modal-content,
body #investissement .modal-content {
  color: #000;
}

.navbar-fixed-top.fixed-theme {
  color: #fff;
  text-align: center;
}

html .nav > li > a:hover:not(#connexion),
html .nav > li > a:focus:not(#connexion),
html .nav > li > a:hover:not(#inscrire),
html .nav > li > a:focus:not(#inscrire),
html .nav > li > a:hover:not(#compte),
html .nav > li > a:focus:not(#compte),
html .nav > li > a:hover:not(#logout),
html .nav > li > a:focus:not(#logout),
html .nav > li > a.active,
body a:hover,
body a:focus,
body a {
  color: inherit;
  text-decoration: none;
}

footer #social i.fa-facebook-square:hover {
  color: #3b5998;
}

footer #social i.fa-twitter-square:hover {
  color: #4099ff;
}

footer #social i.fa-linkedin-square:hover {
  color: #007bb6;
}

table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_desc::before {
  color: #383838;
}

table.dataTable thead .sorting::before {
  color: #ddd;
}

.form__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  width: 100%;
}

.form__inner--alone {
  display: grid;
  width: 80%;
}

.form__inner__inputWrapper {
  display: grid;
  position: relative;
  row-gap: 0.3rem;
}

.form__inner__inputWrapper__input {
  border: 1px solid var(--grey-color);
  color: var(--primary-color);
  height: var(--input-height);
  margin: 0;
  padding: 1rem;
}
.form__inner__inputWrapper__input:disabled {
  cursor: not-allowed;
}

.form__inner__inputWrapper__logo {
  bottom: calc(var(--input-height) / 2);
  cursor: pointer;
  height: 1.2rem;
  position: absolute;
  right: 1rem;
  stroke: var(--primary-color);
  transform: translateY(50%);
}

html .nav > li > a.white.account {
  margin: 0;
  padding: 5px 25px;
  top: 9px;
}

.levee-container .separate,
#documents,
body .mdl-radio.is-checked .mdl-radio__outer-circle,
body,
body .pagination > .active > a:focus,
body .pagination > .active > a:hover,
body .pagination > .active > span,
body .pagination > .active > span:focus,
body .pagination > .active > span:hover {
  border-color: #000;
}

body .nav-pills > li.active,
body .nav-pills > li.active:hover,
body .nav-pills > li.active:focus {
  border-bottom: 2px solid #ff0009;
}

div#accordion .panel-default > .panel-heading {
  border: none;
}

/************************************************************ Fin Border set ************************************************************/
/************************************************************ Random ************************************************************/
/************************************************************ ! Attention ajout d'image = commande png et jpg dans le repertoire ************************************************************/
.header_random {
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* -webkit-background-size: cover; */
  /* background-attachment: fixed; */
  /* background-position-y: center; */
  /* -webkit-box-shadow: 0px 0px 5px 0px; */
  /* box-shadow: 0px 0px 5px 0px; */
  /* width: 100%; */
  /* height: 70%; */
}

.header-home {
  background: url("/img/background/visuel_header.png") no-repeat bottom right, linear-gradient(to right, #fff, #eeeef3);
  background-size: 39%, cover;
  height: 100%;
  /* padding: 0 250px; */
  margin-top: -84px;
  position: relative;
}

.header-home-content {
  float: left;
  position: absolute;
  /* transform: translateY(-50%); */
  top: 19%;
  /* width: 48%; */
}

.header-home .button-secondary-color {
  display: table;
  top: 72px;
}

/************************************************************ Fin Configurer Header ************************************************************/
html img {
  max-width: 100%;
}

*,
::after,
::before {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/************************************************************ Background-image ************************************************************/
/************************************************************ KYC SET ************************************************************/
#kyc-header {
  background-color: #54a3d3;
  box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.08);
  padding: 25px;
  position: relative;
}

#kyc-header * {
  display: inline-block;
  margin: 0;
}

#kyc-header h2 {
  font-size: 16px;
}

#kyc-header .bar {
  border-radius: 100px;
  height: 5px;
  margin-left: 10px;
  position: relative;
  width: 100px;
}

/* state */
#kyc-header .progress {
  border-radius: 200px;
  height: 5px;
  max-width: 100%;
  position: absolute;
  transition: 1s;
  width: 6.25%;
}

.kyc-body {
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.08);
  padding: 15px 10px;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

.kyc-body .btn-default {
  border: 2px solid #54a3d3;
  border-width: 0;
  margin-bottom: 15px;
  white-space: initial;
}

.kyc-body .button-checkbox {
  display: inline-block;
  /* float: left; */
  margin: 0 auto;
}

#tabKYC #nextKYC {
  float: right;
  padding: 10px;
  width: 200px;
}

#tabKYC #kyc-submit {
  display: none;
  float: right;
  margin-top: 25px;
  padding: 10px;
}

#tabKYC #kyc-prev {
  border: none;
  padding: 10px;
}

#tabKYC #kyc-prev i {
  transition: 0.5s;
}

#tabKYC #kyc-prev,
#tabKYC #nextKYC {
  border: 1px solid #000;
  color: #000;
  margin-top: 25px;
  width: 200px;
}

#tabKYC #nextKYC.slick-disabled,
#tabKYC #kyc-prev.slick-disabled {
  display: none !important;
}

.kyc-body .button-checkbox button {
  border: 2px solid #54a3d3;
  border-width: 0;
  font-size: 15px;
  height: auto;
  margin: 20px 0;
  margin-bottom: 15px;
  max-width: 100%;
  overflow: auto;
  padding: 5px 10px;
  text-align: left;
  white-space: normal;
  width: 100%;
  word-wrap: break-word;
}

.kyc-body .button-checkbox button.active {
  background-color: #54a3d3;
  color: #fff;
}

.button-checkbox button {
  font-size: 15px;
  padding: 5px 50px;
}

.hvisble {
  visibility: hidden;
}

#navigateInfo {
  margin-top: 85px;
}

#kyc-header .typed-cursor {
  font-size: 20px;
}

.kyc-body h4.bold {
  font-size: 16px;
}

.kyc-body hr {
  border-color: #f8bdab;
  border-width: 2px;
  display: block;
  margin: 10px auto;
  position: relative;
  width: 100px;
}

.kyc-body input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #54a3d3;
  font-size: 18px;
  height: 40px;
  margin: 25px 0;
  padding: 0;
  padding-left: 5px;
  width: 100%;
}

#idfonctionPolitiquePerso,
#idfonctionPolitiqueFam {
  position: relative;
}

.slick-slide [data-toggle=buttons] {
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

#idfonctionPolitiquePerso,
#idfonctionPolitiqueFam,
#infoTarget,
.fiscalsKyc,
.rdFiscaleDiv {
  display: none;
}

.slick-slide label.form-label {
  /* text-transform: uppercase; */
}

/************************************************************ FIN KYC ************************************************************/
/************************************************************ Outils ************************************************************/
.btntoggle::before {
  content: "\f205";
  font-family: fontAwesome;
}

.btntoggle.off::before {
  content: "\f204";
  font-family: fontAwesome;
}

.full {
  display: inline-block;
  width: 100%;
}

.full-inline {
  display: inline-block;
  width: 100%;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body .t-center p,
.t-center {
  text-align: center;
}

.limit_word {
  word-wrap: break-word;
}

.center_col {
  border-left: 2px solid #333;
  border-right: 2px solid #333;
}

.tright {
  text-align: right;
}

.tleft {
  text-align: left;
}

.pl-20 {
  padding-left: 25px;
}

.center_picto::before {
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 1px;
}

.center_picto::after {
  content: "";
  height: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 1px;
}

.jump {
  margin-bottom: 50px;
  min-height: 1px;
}

body .flex {
  display: flexbox;
  display: flex;
}

.relative {
  position: relative;
}

.right {
  float: right;
}

.inline {
  display: inline;
}

.i-block {
  display: inline-block;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: uppercase;
}

.vertical {
  margin: 10px 15px;
  padding: 0;
}

.updown {
  margin: 20px 0;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.link-full {
  cursor: pointer;
  inset: 0;
  position: absolute;
}

html body .slick-slide .inline {
  display: inline;
}

ul.validate li {
  list-style: none;
}

ul.info li {
  list-style: none;
}

ul.validate li::before {
  content: "\f00c";
  font-family: FontAwesome;
  left: 30px;
  position: absolute;
}

ul.info li::before {
  content: "\f05a";
  font-family: FontAwesome;
  left: 30px;
  position: absolute;
}

.header h2.title {
  display: inline;
}

html body :focus {
  outline: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label p {
  display: table;
  font-size: 12px;
}

input[type=radio] + label span {
  background: url("/img/radio_let.png") -6px top no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  width: 19px;
}

html body ul.logo-point li::before {
  background-color: #000;
  border-radius: 100%;
  content: "";
  height: 5px;
  left: 10px;
  margin-top: 5px;
  position: absolute;
  width: 5px;
}

html body ul.logo-point ul li::before {
  left: 50px;
}

html body ul.logo-point ul ul li::before {
  left: 90px;
}

html body ul.logo-point {
  position: relative;
}

html body ul.logo-point li {
  list-style-type: none;
}

.block {
  display: block !important;
}

.hide {
  display: none;
}

.justify {
  text-align: justify;
}

.m-space {
  margin-bottom: 30px;
}

.pre {
  white-space: pre;
}

.bold {
  font-weight: bold;
}

.secret {
  display: none;
}

.none {
  display: none !important;
}

.blur {
  filter: blur(5px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.m20 {
  margin-bottom: 20px;
}

.p20 {
  padding: 0 20px;
}

.p0 {
  padding: 0;
}

.pipe {
  font-size: 25px;
  margin: 0 15px;
  position: relative;
  top: 5px;
}

/************************************************************ Fin Outils ************************************************************/
/************************************************************ HEADER ************************************************************/
/************************************************************ HEADER NAVBAR ************************************************************/
body .navbar-fixed-top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
  border-width: 0;
  padding: 15px 0;
}

body ul.bold {
  font-size: 16px;
  list-style: none;
  padding: 0;
}

html .nav > li > a {
  font-size: 14px;
  margin: 15px;
  padding: 0;
}

.topbar-inscription::after {
  background-color: #000;
  content: "";
  height: 30px;
  position: absolute;
  right: -7px;
  top: 10px;
  width: 1px;
}

body .navbar-nav > li {
  float: left;
  padding: 0 0 0 10px;
  top: 3px;
}

.topbar-user {
  margin-left: 15px;
}

body .navbar > .container .navbar-brand {
  margin: 0;
  padding: 0 45px 0 0;
  position: relative;
  text-align: left;
}

html .fixed-theme .nav > li > a#connexion,
html .fixed-theme .nav > li > a#compte {
  margin-top: 1px;
}

html .fixed-theme .nav > li > a#inscrire,
html .fixed-theme .nav > li > a#logout {
  margin-top: 1px;
}

html .nav > li > a#connexion,
html .nav > li > a#compte {
  color: inherit;
  margin-top: 10px;
  padding: 4px 20px;
  text-decoration: none;
}

html .nav > li > a#inscrire,
html .nav > li > a#logout {
  color: inherit;
  margin-top: 10px;
  padding: 4px 20px;
  text-decoration: none;
}

html .nav > li > a#inscrire:hover,
html .nav > li > a#inscrire:focus,
html .nav > li > a#logout:hover,
html .nav > li > a#logout:focus {
  color: inherit;
  text-decoration: none;
}

html .nav > li > a#connexion:hover,
html .nav > li > a#connexion:focus,
html .nav > li > a#compte:hover,
html .nav > li > a#compte:focus {
  color: inherit;
  text-decoration: none;
}

/*
* Custom styles
*/
html .navbar-nav {
  float: right;
}

.navbar-brand {
  font-size: 24px;
}

.navbar-container {
  padding: 20px 0;
}

.navbar-fixed-top.fixed-theme span[class=icon-bar] {
  border-bottom: 2px solid #000;
  color: #000;
  padding-top: 2px;
}

.navbar.navbar-fixed-top.fixed-theme {
  background-image: none;
  border-bottom: 2px solid #000;
  padding: 0;
}

.navbar-brand.fixed-theme {
  font-size: 18px;
}

.navbar-container.fixed-theme {
  max-width: 1560px;
  padding: 15px;
  width: 100%;
}

body .navbar-brand > i {
  position: absolute;
  top: -10px;
  width: 250px;
  z-index: 999;
}

/************************************************************ END NAVBAR ************************************************************/
/************************************************************ HEADER ************************************************************/
/************************************************************ END HEADER ************************************************************/
/************************************************************ Content HEADER ************************************************************/
.header .text {
  color: #000;
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 45%;
}

.header .text *:not(i) {
  display: inline-block;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

.header .text input[type=email] {
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid;
}

.header .text .mdl-textfield {
  width: 399px;
}

.header .text button[type=submit] {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  padding: 7px 0;
  text-transform: uppercase;
  width: 303px;
}

#transitiontoevent {
  background: rgba(255, 255, 255, 0);
  bottom: 0;
  color: white;
  cursor: pointer;
  height: 60px;
  padding: 15px 0;
  position: absolute;
  text-align: center;
  transition: 0.5s;
  width: 100%;
}

#transitiontoevent:hover {
  background: rgba(255, 255, 255, 0.7);
}

.header-levee.header .text {
  text-align: center;
  text-shadow: 0 0 4px rgb(57, 57, 57);
  top: 50%;
}

.header-levee.header .levee-fiscalite {
  border: 1px solid white;
  bottom: 30px;
  color: white;
  font-size: 20px;
  font-weight: 100;
  padding: 7px;
  position: absolute;
  right: 130px;
  text-shadow: 0 0 4px rgb(57, 57, 57);
}

#header_img #transitiontoevent p {
  font-size: 17px;
  margin-top: 10px;
}

#transitiontoevent i {
  animation-delay: 0.1s;
  animation-duration: 1.7s;
  animation-iteration-count: infinite;
  animation-name: arrow;
  animation-timing-function: linear;
  cursor: pointer;
  font-size: 1.2em;
  position: absolute;
}

@keyframes arrow {
  0% {
    top: 0;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes arrow {
  0% {
    top: 0;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
/************************************************************ END Content HEADER ************************************************************/
/************************************************************ END HEADER ************************************************************/
/************************************************************ BODY SET ************************************************************/
.division:nth-child(even) {
  padding-bottom: 3.125rem;
  padding-top: 4.375rem;
}

.division:nth-child(odd) {
  padding-bottom: 3.125rem;
  padding-top: 4.375rem;
}

.head-division {
  padding: 6.125rem 0;
}

.section {
  margin-top: 4.375rem;
}

.section:first-child {
  margin-top: 0;
}

/* .section:last-child {
    padding-top: 4.375rem;
    padding-bottom: 3.125rem;
} */
.montantContainer img {
  position: relative;
  top: 25px;
}

html body #page div.container div.division:last-child {
  border-bottom: none;
}

.gray {
  background: rgb(255, 255, 255);
  box-shadow: 0 5px 10px 0 rgba(153, 153, 153, 0.2);
  /* box-shadow: 0px 5px 10px 0px rgba(153,153,153,0.2); */
}

.picto {
  /* width: 50px; */
}

.about .part img {
  width: 100%;
}

html body .illustration {
  margin: 20px 0;
  position: sticky;
  top: 50%;
}

.illustration img {
  display: block;
  margin: 0 auto;
  width: 175px;
}

.pousse {
  height: 51px;
  position: relative;
  z-index: -1;
}

.levee-container {
  background-color: #fff;
  border: 1px solid #000;
  position: relative;
}

.levee-bottom {
  padding: 50px 15px 0;
  position: relative;
}

.levee-container .levee-top {
  background-repeat: no-repeat;
  background-size: 100% 100% !important;
  height: 276px;
  overflow: hidden;
  position: relative;
}

.levee-container .levee-top img.fond {
  height: 276px;
  max-height: 276px;
  min-height: 276px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.levee-container .domaine {
  background-color: rgba(51, 51, 51, 0.8);
  bottom: 0;
  font-size: 14px;
  left: 0;
  padding: 2px 10px 2px 5px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.levee-container .domaine.success {
  width: 100%;
}

.levee-container .logo img {
  border: 1px solid rgba(255, 255, 255, 0.5);
  bottom: -1px;
  left: -0.5px;
  position: absolute;
}

.levee-container .number {
  font-size: 18px;
  font-weight: bold;
}

.levee-container .separate {
  border-bottom: 1px solid #000;
  left: 0;
  width: 100%;
}

.levee-container .pourcentage {
  font-size: 17px;
  position: absolute;
  top: 155px;
}

.levee-container .pourcent {
  font-weight: bold;
}

.levee-container .bar {
  background: rgba(128, 128, 128, 0.2);
  border-radius: 50px;
  height: 7px;
  position: absolute;
  top: 198px;
  width: calc(100% - 60px);
}

#financement .bar .pourcent_bar,
.levee-container .bar .pourcent_bar {
  max-width: 100%;
}

.levee-container .bar .pourcent_bar {
  border-radius: 200px;
  height: 7px;
}

.pourcent_bar {
  transform: scaleX(1);
  transform-origin: left;
  transition: 0.75s;
}

.pourcent_bar.anime {
  transform: scaleX(0);
  transition: 0.75s transform;
}

.levee-container .graduation {
  position: relative;
  top: 178px;
}

.levee-container .graduation span:nth-child(1) {
  left: 0%;
  position: absolute;
}

.levee-container .graduation span:nth-child(2) {
  left: calc(50% - 10px);
  position: absolute;
}

.levee-container .graduation span:nth-child(3) {
  left: calc(100% - 35px);
  position: absolute;
}

.levee-container .fiscalite {
  border-radius: 0 5px 5px 0;
  font-size: 12px;
  font-weight: bold;
  left: 0;
  padding: 5px 15px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
}

/* Carousel */
.carousel {
  margin-bottom: 0;
  padding: 15px 40px 30px;
}

/* The controlsy */
.carousel-control {
  background: none repeat scroll 0 0 #222;
  border: 4px solid #fff;
  border-radius: 23px;
  height: 40px;
  left: -12px;
  margin-top: 90px;
  width: 40px;
}

.carousel-control.right {
  right: -12px;
}

/* The indicators */
.carousel-indicators {
  bottom: -10px;
  margin-right: -19px;
  right: 50%;
  top: auto;
}

/* The colour of the indicators */
.carousel-indicators li {
  background: #cecece;
}

.carousel-indicators .active {
  background: #428bca;
}

body .carousel-indicators {
  bottom: 0;
}

.thumbnail {
  max-height: 435px;
}

.thumbnail p {
  padding: 5px;
}

#soon .levee-container {
  border: 1px solid rgba(0, 0, 0, 0.3);
  height: 390px;
  margin-bottom: 50px;
}

.division.bandeaufin {
  background-attachment: fixed;
  background-image: url("/img/bandeaudefin.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 6.125rem;
  padding-top: 7.375rem;
}

html body input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  outline: none !important;
}

body .bootstrap-select:not([class*=col-], [class*=form-control], .input-group-btn) {
  padding: 0;
}

form textarea {
  /* padding: 0px 0 0 20px; */
  border: none;
  border-bottom: 1px solid darkgrey;
  max-width: 100%;
  min-width: 100%;
  outline: none;
  width: 100%;
}

form button[type=submit] i {
  font-size: 18px;
}

.contact i {
  font-size: 24px;
}

.contact .division iframe {
  height: 275px;
  width: 100%;
}

.separate_divr {
  border-right: 1px dashed darkgrey;
}

#presse.division {
  background-attachment: fixed;
  padding-bottom: 6.125rem;
  padding-top: 7.375rem;
}

#presse .date {
  font-family: "tomatogrotesk_light";
  font-weight: bold;
  padding: 15px 15px 5px;
}

.press_content img {
  margin: 0 auto;
}

#presse .press_content {
  padding: 0 20px;
}

#presse .press_content .base {
  height: 400px;
  text-align: left;
  /* border: 1px solid rgba(0, 0, 0, 0.3); */
  /* box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.10); */
}

#presse .press_content .base .top_content {
  height: 170px;
}

#presse .press_content .base .text_content {
  font-family: "tomatogrotesk_light";
  font-style: italic;
  font-weight: bold;
  height: 120px;
  max-height: 180px;
  min-height: 90px;
  overflow: auto;
  padding: 15px 15px 5px;
  text-align: justify;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

#presse .press_content .base .text_content i {
  font-style: normal;
  margin-left: 5px;
}

#presse .press_content .base .bottom_content {
  height: 50px;
  max-height: 50px;
  min-height: 50px;
  padding: 5px 15px;
  position: relative;
}

#presse .press_content .base .bottom_content span {
  bottom: 10px;
  cursor: pointer;
  font-family: "tomatogrotesk_light";
  font-weight: bold;
  position: absolute;
}

#financement {
  margin-bottom: 50px;
  padding-left: 25px;
  position: relative;
}

#financement * {
  font-family: "tomatogrotesk_bold";
  font-size: 35px;
  margin-bottom: 30px;
  text-align: revert;
  text-transform: none;
}

#financement .bar {
  background: rgba(128, 128, 128, 0.2);
  border-radius: 50px;
  height: 10px;
}

#financement .bar .pourcent_bar {
  border-radius: 200px;
  height: 10px;
}

#financement #graduation {
  position: relative;
}

#financement #graduation span:nth-child(1) {
  left: 0%;
  position: relative;
}

#financement #graduation span:nth-child(2) {
  left: calc(50% - 32px);
  position: relative;
}

#financement #graduation span:nth-child(3) {
  left: calc(100% - 83px);
  position: relative;
}

#financement #montants span:first-child {
  font-size: 20px;
}

#levee-closed {
  background-color: #efefef;
}

.j_restant {
  position: absolute;
  right: 0;
}

.j_restant::before {
  content: "\f017";
  font-family: FontAwesome;
  position: relative;
  right: 5px;
}

/************************************************************ END BODY ************************************************************/
/************************************************************ PROJET SET ************************************************************/
/************************************************************ ! specifier avec div.project-embed ex: div.project-embed h3{ color:#000000;  } ************************************************************/
@media (min-width: 768px) {
  body p,
  body ul,
  body span {
    font-size: 16px;
  }
  .project-embed {
    margin-top: -20px;
  }
  .project-logo {
    margin-bottom: 100px;
  }
}
.project-embed p {
  min-height: 1px;
}

html body div.project-embed .nav-tabs > li.active > a,
html body div.project-embed .nav-tabs > li.active > a:focus,
html body div.project-embed .nav-tabs > li.active > a:hover {
  background: white;
  background-color: #fff !important;
  border: none;
  border-bottom: none;
  color: #97becb !important;
  cursor: default;
  font-weight: 600;
}

html div.project-embed .nav-tabs > li > a {
  background-color: rgba(128, 128, 128, 0.2);
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: none;
  color: #000;
  display: block;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.project-embed hr {
  margin: 50px 0;
}

.project-embed table {
  border: none;
  border-bottom: 1px solid #95becc;
  border-color: transparent;
  width: 100%;
}

.project-embed table tbody {
  /* outline: none; */
}

.project-embed table tr {
  /* outline: none; */
}

.project-embed table td {
  padding: 10px 0;
}

.project-table i {
  color: #000;
  font-size: 20px;
}

.project-document {
  padding: 10px;
}

.project-document ul {
  list-style: none;
  padding: 0;
}

.project-document ul li h4 {
  /* padding-left: 20px */
  position: relative;
  right: -25px;
}

.project-document ul li h4::before {
  content: url("/img/document.png");
  position: relative;
  right: 30px;
  top: 3px;
}

/************************************************************ END PROJET SET ************************************************************/
/************************************************************ FOOTER SET ************************************************************/
@media (min-width: 1300px) {
  body .min-container {
    width: 650px;
  }
}
/************************************************************ END FOOTER ************************************************************/
/************************************************************ Grand ecran set ************************************************************/
@media (min-width: 1500px) {
  .header-home-content {
    margin-left: -150px;
  }
  .header-home {
    background-size: 50%, cover;
  }
}
/************************************************************ Grand ecran set ************************************************************/
/************************************************************ Tablette set ************************************************************/
@media (max-width: 1440px) {
  html body .slogan-nav {
    font-size: 11px;
  }
  .slogan-number {
    display: none;
  }
}
@media (max-width: 1300px) {
  html body .flexInvest {
    display: flexbox;
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
  }
  .header {
    background-size: auto !important;
  }
  html .nav > li > a {
    font-size: 12px;
  }
  html body .slogan-nav {
    display: none;
  }
  #header_img {
    height: 100%;
    position: relative;
  }
  body .question-side .question-customer {
    bottom: 0;
    position: relative;
    right: 0;
  }
  body .step-container {
    overflow: hidden;
  }
  body .step-container .step-part:not(:last-child)::after {
    left: 0;
    width: 100vw;
  }
  #contact_img,
  #about_img,
  #question_img,
  #ccm_img,
  #map_img,
  #selectprojet_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  body .navbar-container.fixed-theme {
    margin: 0;
    max-width: 100%;
    padding: 15px 0;
    position: relative;
    width: 100%;
  }
  body .navbar > .container .navbar-brand,
  body .navbar > .container-fluid .navbar-brand {
    margin-left: 10px;
  }
  .header-home h2 {
    font-size: 30px;
  }
  body .header-home {
    background: url("/img/background/visuel_header.png") no-repeat bottom right, linear-gradient(to right, #fff, #eeeef3);
    background-position: 130% bottom;
    background-size: 70%, cover;
    height: 100%;
    padding: 0 50px;
    position: relative;
  }
  body .header-home-content {
    width: auto;
  }
  .header-home .button-secondary-color {
    left: 15%;
    margin: 0;
    top: 72px;
  }
  .center_col {
    border-left: none;
    border-right: none;
  }
  .levee-container .text {
    left: 30px;
    position: absolute;
    text-align: left;
    top: 60px;
    width: 90%;
  }
  .levee-container .separate {
    top: 135px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 40px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  .division.header_bottom {
    padding: 0;
  }
  .levee-container {
    bottom: 0;
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
    height: 415px;
    margin-bottom: 50px;
    position: relative;
    transition: none;
  }
  .levee-container:hover {
    bottom: 0;
  }
  html body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body .nav.nav-pills > li {
    width: 100%;
  }
  html body ul.nav.nav-pills {
    text-align: center;
  }
  form.contact {
    margin-bottom: 50px;
  }
  html body .illustration {
    margin: 40px 0;
    position: relative;
  }
  .header .text .mdl-textfield {
    width: auto;
  }
  #presse.division {
    background-size: auto;
  }
  button.invest {
    margin: 35px 0;
  }
  html body div.sticky.box {
    position: relative;
    top: 0;
  }
}
/************************************************************ END Tablette set ************************************************************/
/************************************************************ Mobile Set ************************************************************/
@media (max-width: 768px) {
  .header {
    background-size: auto 100%;
  }
  html body .nav > li > a.white {
    margin: 20px 0 0;
  }
  body .navbar-nav > li.nav-list-last {
    border-bottom: none;
  }
  body .dropdown .dropdown-content {
    display: none;
    left: 0;
    position: relative;
    right: 0;
    transform: none;
  }
  html body li.border-less,
  html body .border-less {
    border: none;
  }
  body .nav > li.topbar-user a {
    text-align: center;
  }
  body .nav > li.topbar-connexion {
    left: 70%;
    transform: translateX(-50%);
  }
  body .nav > li.topbar-inscription {
    left: 30%;
    transform: translateX(-50%);
  }
  body .nav > li.topbar-connexion,
  body .nav > li.topbar-inscription {
    border: none;
    -webkit-box-ordinal-group: 0;
    display: inline-block;
    order: -1;
    position: absolute;
  }
  body .nav > li.topbar-connexion a,
  body .nav > li.topbar-inscription a {
    min-width: 105px;
    padding: 5px;
    text-align: center;
  }
  body .nav > li:first-child {
    margin-top: 55px;
  }
  body .dropdown-content span {
    border: none;
    padding: 0 5px;
    text-align: left;
    text-transform: none;
  }
  body .dropdown:hover .dropdown-content {
    display: none;
    padding: 0 5px;
    top: 0;
  }
  #kyc-header {
    padding: 25px 10px;
  }
  #kyc-header-info,
  #kyc-header h2,
  #number,
  #kyc-slide-number {
    font-size: 12px;
    text-transform: uppercase;
  }
  #kyc-header .bar {
    width: 40px;
  }
  body footer .slogan {
    left: 0;
    letter-spacing: 0;
  }
  .header-home h2 {
    font-size: 28px;
  }
  .accordeon-arrow li > :first-child,
  html body h2 {
    font-size: 35px;
  }
  html body h1 {
    font-family: "tomatogrotesk_light";
    font-size: 44px;
    line-height: 0.9;
  }
  body .navbar-nav > li.topbar-blog a {
    text-align: center;
  }
  body .navbar-nav > li {
    border-bottom: 1px solid #515565;
    float: none;
  }
  .header-home-content {
    position: relative;
    top: 15vh;
    width: 100%;
  }
  body .header-home {
    background: url("/img/background/visuel_header.png") no-repeat bottom right, linear-gradient(to right, #fff, #eeeef3);
    background-position: center 140%;
    background-size: 100%, cover;
    height: 100%;
    padding: 0 25px;
    position: relative;
  }
  .header-home .button-secondary-color {
    left: 50%;
    margin: 0;
    top: 55px;
    transform: translateX(-50%);
  }
  html body .slogan-nav {
    display: none;
  }
  body .navbar > .container .navbar-brand,
  body .navbar > .container-fluid .navbar-brand {
    left: 15px;
    padding: 0;
    position: absolute;
    top: -10px;
    transform: translateY(40%);
    transform: translateY(50%);
  }
  html body .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }
  .levee-container {
    bottom: 0;
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
    height: 415px;
    margin-bottom: 50px;
    position: relative;
    transition: none;
  }
  .levee-container:hover {
    bottom: 0;
  }
  #header_img {
    height: 100%;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  .center_col {
    border-left: none;
    border-right: none;
    margin: 40px 0;
  }
  .levee-bottom {
    padding: 5px 10px;
    position: relative;
  }
  .levee-container .text {
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    top: 46px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .bar .pourcent_bar {
    border-radius: 200px;
    height: 10px;
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  body .contenu1 > div {
    padding: 5px;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 35px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  .header .text input[type=text],
  .header .text button[type=submit] {
    width: 75%;
  }
  .division.header_bottom {
    padding: 0;
  }
  .division.bandeaufin {
    background-image: url("/img/bandeaudefin.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 20px;
    padding-top: 30px;
  }
  html footer ul {
    padding: 0;
  }
  html footer ul li {
    /* text-align: center; */
  }
  body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body #exTab1 .panel-group .panel.panel-default .levee-details {
    display: block;
    float: none;
    top: 0;
  }
  body #page_connexion div {
    width: auto;
  }
  form.contact {
    margin-bottom: 50px;
  }
  body #compte_img .profile {
    float: none;
  }
  #mob {
    background: white;
  }
  div[class~=fixed-theme] div[class=col-md-8] {
    background: rgba(255, 255, 255, 0.95);
  }
  div[class~=fixed-theme] div[class=col-md-8] ul li {
    width: 100%;
  }
  div[class="container navbar-container"] div[class=col-md-8] {
    background: rgba(0, 0, 0, 0.8);
  }
  div[class="container navbar-container"] div[class=col-md-8] ul li {
    width: 100%;
  }
  div[class~=fixed-theme] a#brand.navbar-brand img:nth-child(2) {
    display: inline;
    top: 4px;
    width: 190px;
  }
  div a#brand.navbar-brand img:nth-child(3) {
    display: inline;
    width: auto;
  }
  html .nav > li > a#inscrire,
  html .nav > li > a#connexion,
  html .nav > li > a#logout,
  html .nav > li > a#compte {
    border: none;
    padding: 10px 15px;
  }
  html .nav > li > a {
    border-bottom: none;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    transition: none;
  }
  .header .text .type-wrap {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }
  .header .text #typed-strings {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  body .header .text .wrap {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .separate_divr {
    border-right: none;
  }
  .decompte .j_restant {
    overflow: hidden;
    position: relative;
    right: initial;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 78px;
  }
  body .j_restant::before {
    margin-right: 5px;
    right: 1px;
  }
  .levee-header-bottom #logo {
    border: 1px solid rgba(170, 170, 170, 0.5);
    border-radius: 5px;
    display: inline-block;
    left: -15px;
    position: absolute;
    top: -160px;
  }
  #financement {
    display: inline-block;
    padding-left: 0;
    position: relative;
    width: 100%;
  }
  .header-levee.header .levee-fiscalite {
    position: absolute;
    right: 13px;
  }
  .division:nth-child(odd).separate:not(.header_bottom) {
    padding-bottom: 3.125rem;
    padding-top: 4.375rem;
  }
  html body div.container div.division:last-child {
    border-bottom: none;
  }
  .levee-details {
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
  }
  .levee-details *:not(p) {
    text-align: left;
  }
  div[class~=fixed-theme] a#brand.navbar-brand img:nth-child(2) {
    display: inline;
    top: 1px;
    width: initial;
  }
  .separate_mobile {
    margin-bottom: 50px;
  }
  html .nav > li > a.active {
    border-bottom: none;
  }
  html .navbar-nav {
    display: flexbox;
    display: flex;
    flex-direction: column;
    float: none;
    margin: 0;
    position: relative;
    text-align: center;
  }
  html .navbar-collapse {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .center_mobile {
    text-align: center;
  }
  #page_connexion div form {
    padding: 20px;
  }
  #page_connexion div:not(.mdl-textfield) {
    width: auto;
  }
  body .containerFollow {
    display: block;
    position: relative;
  }
  body .containerFollow > div,
  body .containerFollow > div:first-child,
  body .containerFollow > div:last-child {
    padding: 0;
  }
  .containerFollow div img {
    display: block;
    margin: 15px auto;
  }
  body .containerFollow > div::after {
    content: url("/img/bottom-arrow.png");
    left: 46%;
    position: relative;
  }
}
/************************************************************ END Mobile Set ************************************************************/
/************************************************************ Mobile Set mode Paysage ************************************************************/
@media (max-width: 768px) and (orientation: landscape) {
  .header {
    background-size: auto;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
}
/************************************************************ END Mobile Set mode Paysage ************************************************************/
/************************************************************ MODAL ************************************************************/
body .modal-content {
  border-radius: 0;
  font-family: "tomatogrotesk_light";
  font-weight: bold;
  padding: 20px;
  position: relative;
  width: 100%;
}

body #investissement .modal-content {
  font-size: 16px;
  padding: 20px;
  position: relative;
  width: 100%;
}

#alert {
  display: none;
}

/************************************************************ END MODAL ************************************************************/
/* */
body .btn-info {
  border-color: #a9a9a9;
}

body .btn-info:hover,
body .btn-info:focus {
  border-color: #a9a9a9;
}

body .btn-info:active,
body .btn-info.active,
body .open > .dropdown-toggle.btn-info {
  border-color: #a9a9a9;
}

/** **/
/* code for animated blinking cursor */
.typed-cursor {
  animation: blink 0.7s infinite;
  font-weight: 100;
  opacity: 1;
}

@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.typed-fade-out {
  animation: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

#typed,
.typed-cursor {
  bottom: 2px;
  display: none;
  font-size: inherit;
  position: relative;
}

/* NAV */
body .nav-pills > li.active,
body .nav-pills > li.active:hover,
body .nav-pills > li.active:focus {
  background: none;
  border-radius: 0;
  color: #000;
}

body .nav-pills > li.active > a,
body .nav-pills > li.active > a:hover,
body .nav-pills > li.active > a:focus {
  background: none;
  border: none;
  border-radius: 0;
}

body .nav.nav-pills > li > a {
  display: block;
  padding: 20px 10px;
  position: relative;
}

body .nav.nav-pills.pills_compte > li > a {
  display: block;
  padding: 20px 10px;
  position: relative;
}

html .nav-pills > li > a {
  border-radius: 0;
  font-size: 22px;
}

html #exTab1 .panel-group .panel.panel-default {
  margin: 25px 0;
}

.panel-heading .profile {
  background: rgba(255, 87, 34, 0);
  border-radius: 5px;
  display: inline-block;
  font-size: 50px;
  height: 100px;
  margin-right: 15px;
  padding: 15px;
  position: relative;
  text-align: center;
  width: 100px;
}

html #exTab1 .panel-group .panel.panel-default .content {
  display: inline-block;
  font-size: 25px;
}

html #exTab1 .panel-group .panel.panel-default .levee-details {
  display: inline-block;
  float: right;
  position: relative;
  top: 40px;
}

html #exTab1 .panel-group .panel.panel-default .levee-details a[aria-expanded=false] i {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

html #exTab1 .panel-group .panel.panel-default .levee-details a[aria-expanded=true] i {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

div[aria-expanded=false].accordion-toggle i.fa.fa-chevron-down {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

div[aria-expanded=true].accordion-toggle i.fa.fa-chevron-down {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

body div.panel-default a.accordion-toggle[aria-expanded=true] + i {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

/************************************************************ Outils natifs ************************************************************/
html ::-moz-selection {
  color: white;
}
html ::selection {
  color: white;
}

/************************************************************ END Outils natifs ************************************************************/
/************************************************************ BOUTON ************************************************************/
input[type=radio] {
  display: none;
}

input[type=radio] + label span {
  background-image: url("/img/radio.png") 0 top no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 21px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  width: 21px;
}

input[type=radio]:checked + label span {
  background-image: url("/img/radio.png") -24px top no-repeat;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label span {
  background-image: url("/img/radio.png") 0 top no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 21px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  width: 21px;
}

input[type=radio]:checked + label span {
  background-image: url("/img/radio.png") -24px top no-repeat;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label span {
  background-image: url("/img/checkbox.png") 1px top no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 21px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  width: 21px;
}

input[type=checkbox]:checked + label span {
  background-image: url("/img/checkbox.png") -24px top no-repeat;
}

body button.prev,
body button.next {
  height: auto;
  margin: 15px 0 0;
}

div.modal-body button.colorprimButton {
  font-size: 14px;
  margin-top: 10px;
  padding: 5px 0;
}

.pills_project ul {
  position: sticky;
}

.pills_project .active {
  border-bottom: 1.5px solid #e2e2e2;
}

html .pills_project .nav.nav-pills > li > a:hover:not(#connexion),
html .pills_project .nav.nav-pills > li > a:focus:not(#inscrire),
html .pills_project .nav.nav-pills > li > a:focus:not(#compte),
html .pills_project .nav.nav-pills > li > a:focus:not(#logout) {
  border-bottom: none;
  text-decoration: none;
}

body .pills_project .nav.nav-pills > li > a {
  border-bottom: none;
  font-size: 14px;
}

/************************************************************ END BOUTON ************************************************************/
.nav-bar ul.ascenseur {
  display: flexbox;
  display: flex;
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.sticky.sticky_space {
  margin-top: 60px;
  z-index: 1030;
}

body div.sticky.box {
  position: sticky;
  top: 10%;
}

.sticky.sticky_space .invest {
  display: block;
}

.space {
  position: relative;
  top: 70px;
}

.page_levee.division h3:first-child {
  margin-bottom: 20px;
  text-align: center;
}

.decompte {
  position: absolute;
  right: 28px;
  top: 155px;
}

.decompte .j_restant {
  position: relative;
  right: initial;
}

.objectifFin::before {
  background-image: url("../img/ico_collecte.png");
}

.objectifRend::before {
  background-image: url("../img/ico_rendement.png");
}

.dureeInvest::before {
  background-image: url("../img/ico_investissement.png");
}

.ticketMin::before {
  background-image: url("../img/ico_minimum.png");
}

.dateCloture::before {
  background-image: url("../img/ico_date_cloture.png");
}

.niveauRisque::before {
  background-image: url("../img/ico_niveau_risque.png");
}

.projet-table-icon::before {
  background-repeat: no-repeat;
  content: " ";
  height: 20px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 21px;
}

.projet-table-icon {
  padding-left: 25px;
  position: relative;
}

div#accordion .panel-default > .panel-heading {
  border-radius: 0;
  padding-bottom: 25px;
  padding-top: 25px;
}

div#accordion .panel-default {
  border: none;
  border-radius: 0;
}

body #accordion .panel-title {
  font-family: "tomatogrotesk_light";
  font-weight: bold;
}

div.panel-collapse.collapse ul.list-group {
  display: grid;
}

div.panel-collapse.collapse {
  height: auto !important;
}

body .division + hr {
  border-color: #eee;
  border-radius: 50px;
  border-top-width: 2px;
  display: block;
  margin: 0 auto;
  width: 100px;
}

.hvr-center:not(.active) {
  border-bottom: 2px solid rgba(255, 0, 1, 0);
  box-shadow: 0 0 1px transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-center:not(.active)::before {
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  right: 50%;
  transition-duration: 0.3s;
  transition-property: left, right;
  transition-timing-function: ease-out;
  z-index: -1;
}

.hvr-center:not(.active):hover::before,
.hvr-center:not(.active):focus::before,
.hvr-center:not(.active):active::before {
  left: 0;
  right: 0;
}

/* */
p#password_equals {
  font-size: 16px;
  margin-bottom: 15px;
}

body .btn-info.active.focus,
body .btn-info.active:focus,
body .btn-info.active:hover,
body .btn-info:active.focus,
body .btn-info:active:focus,
body .btn-info:active:hover,
body .open > .dropdown-toggle.btn-info.focus,
body .open > .dropdown-toggle.btn-info:focus,
body .open > .dropdown-toggle.btn-info:hover {
  border-color: transparent;
  color: #000;
}

label.mdl-textfield__label span {
  color: rgba(255, 0, 0, 0.67);
}

footer .mdl-textfield__label {
  color: #fff;
}

footer .mdl-textfield--floating-label.is-focused .mdl-textfield__label,
footer .mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
footer .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  color: #fff;
}

footer .mdl-textfield__label::after {
  background-color: #fff;
}

footer .mdl-textfield__input {
  border-color: white;
}

.header .mdl-textfield__input {
  border-color: white;
}

.header .mdl-textfield__label {
  color: #fff;
}

.header .mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.header .mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
.header .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  color: #fff;
}

body .star-alert,
p#password_equals {
  color: #f00;
  text-align: center;
}

.header_bottom #PME {
  padding: 0 15px;
  position: relative;
  top: 30%;
  width: 100%;
}

/* Change Autocomplete styles in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset;
}

#bar_sticky {
  position: sticky;
}

#bar_sticky.is_stuck {
  z-index: 1050;
}

.element {
  z-index: 17;
}

.is_stuck .element {
  box-shadow: 0 5px 10px 0 rgba(153, 153, 153, 0.1);
}

#kyc-header .typed-cursor {
  display: none;
}

.labelKyc {
  display: block;
  font-size: 14px;
  font-weight: initial;
  inset: 5px 0 0;
  margin-bottom: 0;
  overflow: hidden;
  padding-left: 15px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}

.title_docs {
  min-height: 44px;
  text-align: left;
}

div.slick-slide div[myfile] i.fa {
  font-size: 25px;
}

div.slick-slide div.col-lg-12[myfile] p {
  margin: 0 auto;
  max-width: 285px;
  width: 285px;
}

div.slick-slide div.col-lg-12[myfile] .file-input {
  margin: 0 auto;
  max-width: 285px;
  width: 285px;
}

body .file-preview {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  margin: 35px 0 55px;
}

.kyc-body div.iform label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}

.kyc-body select.ui.dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #54a3d3;
  box-shadow: none;
  font-size: 16px;
  height: 40px;
  margin: 25px 0;
  max-width: 100%;
  text-transform: uppercase;
  width: 100%;
}

.kyc-body select.ui.dropdown::after {
  content: "-";
}

#fonctionPolitiqueFam h3 {
  margin: 20px 0;
  text-decoration: underline;
}

.container.projet .modal-dialog {
  max-width: 100%;
  width: 100%;
}

.flexWrap {
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
}

.montantAction {
  position: relative;
  top: 50%;
}

.montantAction p,
.montantAction p span {
  font-family: "tomatogrotesk_light";
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.montantAction span {
  font-size: 13px;
  font-weight: 500;
}

.montantContainer {
  height: 125px;
  text-align: center;
}

#investissement1 label {
  margin: 5px 0 30px;
}

body .mdl-checkbox {
  cursor: pointer;
}

@media (min-width: 768px) {
  body .mdl-textfield__input {
    border-color: #000;
    width: 100%;
  }
}
/***** Loader *****/
#loaderReplace {
  float: right;
  left: 0;
  margin-top: 25px;
  padding: 10px;
  position: relative;
}

#lazy-loader {
  background: rgba(255, 255, 255, 0.98);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#lazy-loader span {
  bottom: 5%;
  color: rgba(0, 0, 0, 0.24);
  font-size: 30px;
  position: fixed;
  text-transform: uppercase;
  transform: translate3d(-50%, -50%, 0);
}

body.layout-fullwidth #lazy-loader span,
body.layout-fullwidth .ball-scale-ripple-multiple {
  left: 50%;
}

#lazy-loader span,
.ball-scale-ripple-multiple {
  left: 50%;
}

#lazy-loader-clear {
  background: rgba(255, 255, 255, 0);
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

@keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
.ball-scale-ripple-multiple {
  position: fixed;
  top: 50%;
  transform: translateY(-25px);
  transform: translate3d(-50%, -50%, 0);
}

.ball-scale-ripple-multiple > div:nth-child(0) {
  animation-delay: -0.8s;
}

.ball-scale-ripple-multiple > div:nth-child(1) {
  animation-delay: -0.6s;
}

.ball-scale-ripple-multiple > div:nth-child(2) {
  animation-delay: -0.4s;
}

.ball-scale-ripple-multiple > div:nth-child(3) {
  animation-delay: -0.2s;
}

.ball-scale-ripple-multiple > div {
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation-fill-mode: both;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 100%;
  height: 50px;
  left: -26px;
  position: absolute;
  top: -2px;
  width: 50px;
}

/***** End Loader *****/
.gray .picto {
  margin-bottom: 20px;
}

.lock {
  display: inline-block;
  position: relative;
}

.lock #lockContainer {
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 10px;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 9;
}

.lock #lock {
  left: 50%;
  position: absolute;
  top: 30%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 10;
}

/****   */
#soon .slick-slide .levee-container {
  background-color: #fff;
}

body .slick-dots li button::before {
  font-size: 10px;
}

#soon .slick-next::before,
#soon .slick-prev::before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
}

#presse .slick-next::before,
#presse .slick-prev::before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
}

#presse .slick-dots {
  bottom: -70px;
}

.underline::after {
  content: " ";
  display: block;
  height: 2px;
  margin-top: 12px;
  width: 170px;
}

ul.decimal {
  list-style-type: decimal;
}

body .dropdown-menu {
  display: inline-block;
}

.card-container {
  perspective: 600;
  position: relative;
}

.card {
  height: 100%;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
  width: 100%;
}

.card:hover {
  transform: rotateY(180deg);
}

.card .side {
  backface-visibility: hidden;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.card .back {
  background: #eaeaed;
  color: #0087cc;
  line-height: 150px;
  text-align: center;
  transform: rotateY(180deg);
}

#bgvid {
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
  opacity: 0.85;
  width: 100%;
}

@media (max-width: 1300px) {
  #bgvid {
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    opacity: 0.7;
    width: auto;
  }
}
/** Dropdown **/
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  left: 60%;
  min-width: 250px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}

.dropdown-content a {
  cursor: pointer;
  display: block;
}

.dropdown-content h6 {
  font-family: "tomatogrotesk_bold";
  font-size: 14px;
  text-transform: none;
}

.dropdown-content span {
  border-bottom: 1px solid #fff;
  display: block;
  font-size: 14px;
  text-align: left;
  text-transform: none;
}

.dropdown-content a:last-child span {
  border: none;
}

.dropdown-content span:hover,
.dropdown-content a:hover span {
  color: #000;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
  padding: 25px;
  text-align: left;
  top: 41px;
}

.dropdown-content a[href] {
  font-weight: initial;
}

/** END Dropdown **/
html body button.button {
  border: 3px solid #333;
}

html body .header button.button {
  display: block;
  font-size: 18px;
  margin-top: 10px;
  min-width: auto;
  padding: 10px;
  text-transform: inherit;
  width: auto;
}

.chevron i {
  color: black;
  font-size: 16px;
  position: relative;
  right: -5px;
  top: 3px;
  transform: translateY(-30%);
  z-index: 9;
}

/* pour tous les id */
.contenu,
.contenu1,
.contenu2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 2rem auto;
  perspective: 600px;
  position: relative;
}

.contenu > div,
.contenu1 > div,
.contenuCard > div,
.contenu2 > div {
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.8s;
}

.contenu .derriere,
.contenu1 .derriere,
.contenuCard .derriere,
.contenu2 .derriere {
  backface-visibility: hidden;
  background: #fff;
  outline: 1px solid transparent;
  overflow: hidden;
  padding: 10px 50px;
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.contenu > div.devant,
.contenu1 > div.devant,
.contenuCard > div.devant,
.contenu2 > div.devant {
  backface-visibility: hidden;
  color: #333;
  outline: 1px solid transparent;
  /* overflow:hidden; */
  transform-style: preserve-3d;
}

.contenu:hover .derriere,
.contenu1:hover .derriere,
.contenuCard:hover .derriere,
.contenu2:hover .derriere {
  transform: rotateY(0);
}

.contenu:hover > div.devant,
.contenu1:hover > div.devant,
.contenuCard:hover > div.devant,
.contenu2:hover > div.devant {
  transform: rotateY(180deg);
}

.contenu1 .derriere p {
  font-family: "tomatogrotesk_light";
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: left;
  text-transform: inherit;
}

.derriere span {
  font-family: "tomatogrotesk_light";
  font-size: 18px;
  font-weight: bold;
}

/* premier */
.contenu {
  height: 320px;
  width: 200px;
}

.contenu div {
  height: 280px;
  padding: 20px;
  width: 100%;
}

/* deuxieme */
.contenu1 {
  height: 360px;
  width: 240px;
}

.contenu1 > div {
  height: 440px;
  padding: 20px;
  width: 100%;
}

/* troisieme */
.contenu2 {
  height: 320px;
  width: 200px;
}

.contenu2 > div {
  height: 280px;
  padding: 20px;
  width: 100%;
}

html body #levee-closed .slick-slide {
  height: 420px;
}

.containerFollow {
  display: flexbox;
  display: flex;
  position: relative;
}

.containerFollow > div {
  padding: 0 50px;
}

.containerFollow > div:first-child {
  padding: 0 50px 0 0;
}

.containerFollow > div:last-child {
  padding: 0 0 0 50px;
}

.containerFollow div img {
  display: block;
  margin: 15px auto;
}

.containerFollow > div::after {
  content: url("/img/right-arrow.png");
  left: 95%;
  position: absolute;
  top: 50%;
}

.containerFollow > div:last-child::after,
.containerFollow > div:last-child::before {
  content: "";
}

ul.list li {
  display: block;
}

div.rechercher {
  position: relative;
}

div.rechercher ul.pagination {
  bottom: 0;
  position: relative;
  text-align: center;
  width: 100%;
}

div.rechercher div.search {
  margin-bottom: 30px;
}

body .pagination > .active > a,
body .pagination > .active > a:focus,
body .pagination > .active > a:hover,
body .pagination > .active > span,
body .pagination > .active > span:focus,
body .pagination > .active > span:hover {
  background-color: #000;
  border-color: #000;
  cursor: pointer;
}

body .pagination > li > a,
.pagination > li > span {
  color: #000;
  padding: 2px 5px;
}

ul.list {
  padding: 0;
}

.ticket div {
  display: inline-block;
  float: left;
}

.ticket div:nth-of-type(1) {
  width: 25%;
}

.ticket div:nth-of-type(2) {
  width: 15%;
}

.ticket div:nth-of-type(3) {
  width: 15%;
}

.ticket div:nth-of-type(4) {
  width: 15%;
}

.ticket div:nth-of-type(5) {
  width: 15%;
}

.ticket div:nth-of-type(6) {
  width: 15%;
}

table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting_asc::before {
  float: left;
  font-family: fontAwesome;
  padding-right: 10px;
}

table.dataTable thead .sorting_desc::before {
  content: "\f0dd";
}

table.dataTable thead .sorting_asc::before {
  content: "\f0de";
}

.dataTable .sorting_asc {
  cursor: pointer;
  text-align: left;
}

.dataTable .sorting_desc {
  cursor: pointer;
  text-align: left;
}

table.dataTable thead .sorting::before {
  content: "\f0dc";
  float: left;
  font-family: fontAwesome;
  padding-right: 10px;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: none;
  border: none;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: "tomatogrotesk_light";
  font-weight: bold;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  font-family: "tomatogrotesk_light";
  font-weight: bold;
}

.panel-group .panel {
  border: none;
}

.accordion-toggle {
  cursor: pointer;
}

.box-notif {
  border: 2px solid #000;
  font-family: "tomatogrotesk_light";
  margin-top: 50px;
  padding: 20px;
  word-wrap: break-word;
}

div.mdl-textfield label[for=actionslettres].mdl-textfield__label {
  font-family: "tomatogrotesk_light";
}

#goKyc,
#goSign {
  width: 30%;
}

[name=typepersonne] {
  cursor: pointer;
  margin-bottom: 25px;
  padding: 10px;
  text-align: center;
}

.contenuCard {
  margin: 0;
  min-height: 150px;
}

.contenuCard > div {
  height: 165px;
  text-align: center;
  width: 100%;
}

.contenuCard .devant p {
  font-size: 20px;
  text-transform: uppercase;
}

.cookie-container {
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  padding: 10px 15px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 1;
}

.cookie-accept {
  color: #3498db;
  cursor: pointer;
}

.cookie-cross {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 5px;
}

.levee-bottom-head {
  margin: 5px 0;
}

table.levee-table {
  margin: 8px 0;
  position: relative;
  width: 100%;
}

table.levee-table tr td:nth-child(odd) {
  padding-left: 50px;
  text-align: left;
}

table.levee-table tr td:nth-child(even) {
  font-weight: bold;
  text-align: right;
}

table.levee-table td img {
  left: 0;
  position: absolute;
  width: 36px;
}

table.levee-table tr td {
  padding: 5px 0 30px;
}

.levee-tag-container {
  bottom: -51px;
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  position: absolute;
  right: 0;
  text-align: right;
  width: 100%;
}

.levee-tag {
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  margin: 6px 0 0;
  padding: 1px 7px;
  pointer-events: none;
  text-align: right;
}

.form input,
form input,
.form textarea,
form textarea {
  border: 1px solid rgb(206, 206, 206);
  border-radius: 2px;
  margin-bottom: 20px;
  padding: 8px 10px;
  width: 100%;
}

form textarea {
  resize: none;
}

/* .form input:invalid,
    form input:invalid,
    .form textarea:invalid,
    form textarea:invalid {
        border-color: #F03434;
    } */
.form input.half,
form input.half {
  float: left;
  width: 49%;
}

.form input.half:nth-child(odd),
form input.half:nth-child(odd) {
  margin-right: 1%;
}

.form input.half:nth-child(even),
form input.half:nth-child(even) {
  margin-left: 1%;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgb(200, 200, 200);
}

input::input-placeholder,
textarea::input-placeholder,
input:input-placeholder,
textarea:input-placeholder,
input::input-placeholder,
textarea::input-placeholder,
input::placeholder,
textarea::placeholder {
  color: rgb(200, 200, 200);
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #000;
}

input:focus::input-placeholder,
textarea:focus::input-placeholder,
input:focus::placeholder,
textarea:focus::placeholder {
  color: #000;
}

h2.jump.center.title,
.header_random,
.header_bottom {
  display: none;
}

.slogan {
  display: inline-block;
  left: -15px;
  letter-spacing: 3px;
  position: relative;
  top: 5px;
}

footer .slogan {
  left: 15px;
}

.button-blue {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  display: block;
  font-family: tomatogrotesk;
  height: 35px;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  text-transform: uppercase;
}

.button-form {
  margin-top: 35px;
}

.white.page-active {
  background-color: #fff;
  color: #000;
  transition: 1s background;
}

.question-customer {
  /* display: inline-block; */
  background-color: #82b5ce;
  border-radius: 250px;
  color: #fff;
  float: right;
  margin-bottom: 20px;
  margin-top: 15px;
  padding: 70px;
  width: 350px;
}

.question-customer a {
  font-weight: bold;
}

.question-side .question-customer {
  bottom: 0;
  position: absolute;
  right: -350px;
}

.question-side {
  display: inline-block;
  position: relative;
  width: 100%;
}

.button-projet-orange {
  background-color: #000;
  border: none;
  color: #fff;
  display: block;
  font-weight: inherit;
  margin: 15px 0;
  padding: 10px 50px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

input[type=file].file-target {
  display: none;
}

.file-label {
  align-items: center;
  border: 1px solid #000;
  border-radius: 35px;
  -webkit-box-align: center;
  -webkit-box-flex: 0;
  color: #000;
  cursor: pointer;
  display: flexbox;
  display: flex;
  flex: none;
  -ms-flex-align: center;
  height: 25px;
  margin: 7px 0 20px 20px;
  padding: 0 15px;
}

tr[onclick],
tr[link] {
  cursor: pointer;
}

.client-tab-container .client-tab {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 1s;
  width: 240px;
}

.client-tab-container {
  margin-bottom: 35px;
}

[class*=client-table-target]:not(.active) {
  display: none;
}

.client-table,
.invest-table {
  border: none;
  border-color: #000;
  margin-bottom: 5px;
  width: 100%;
}

.client-table tbody tr:nth-child(odd),
.invest-table tbody tr:nth-child(odd) {
  background-color: rgba(151, 190, 204, 0.15);
}

.client-table tbody tr:nth-child(even),
.invest-table tbody tr:nth-child(even) {
  background-color: #fff;
}

.client-table tbody tr,
.client-table thead tr,
.invest-table tbody tr,
.invest-table thead tr {
  color: #000;
}

.client-table tr,
.invest-table tr {
  text-align: center;
}

.client-table th,
.invest-table th {
  font-size: 18px;
  min-width: 9rem;
  padding: 5px;
  text-align: center;
}

.client-table td,
.invest-table td {
  font-size: 18px;
  max-width: 500px;
  overflow: hidden;
  padding: 5px;
  position: relative;
  text-overflow: ellipsis;
}

.client-table td i,
.invest-table td i {
  color: #000;
}

.client-tab-container .client-tab:hover,
.client-tab-container .client-tab.active {
  background-color: #000;
  color: #fff;
  transition: background-color 1s;
}

.select-mcapital {
  border-radius: 0;
  box-shadow: none;
  color: #000;
  display: inline-block;
  padding: 0;
  position: relative;
  width: 100%;
}

.select-mcapital::before,
.select-mcapital::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.select-mcapital select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  width: 100%;
  /* Focus style */
}

.select-mcapital select:focus {
  background-color: transparent;
  outline: none;
}

.select-mcapital x:-o-prefocus,
.select-mcapital::after {
  display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .select-mcapital select::-ms-expand {
    display: none;
  }
  .select-mcapital select:focus::-ms-value {
    background: transparent;
    color: #000;
  }
}
@-moz-document url-prefix() {
  .select-mcapital {
    overflow: hidden;
  }
  .select-mcapital select {
    width: 120%;
    width: calc(100% + 3em);
    /* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
  }
  @supports (-moz-appearance: none) {
    .select-mcapital select {
      width: 100%;
    }
  }
  .select-mcapital select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
}
@supports (-moz-appearance: none) {
  .select-mcapital {
    width: 100%;
  }
}
.select-mcapital::before,
.select-mcapital::after {
  border: 1px solid transparent;
  content: "";
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 16px;
  width: 0;
}

.select-mcapital::before {
  border-bottom-color: #000;
  border-width: 0 6.5px 8px;
  bottom: 55%;
}

.select-mcapital::after {
  border-top-color: #000;
  border-width: 8px 6.5px 0;
  top: 55%;
}

/* @-moz-document url-prefix() {
        .select-mcapital {
            border-right: 3px solid #E6E6E6;
        }
    } */
.select-mcapital select {
  border: 1px solid #000;
  border-radius: 0;
  color: inherit;
  line-height: normal;
  padding: 8px 45px 8px 10px;
}

.select-mcapital select[disabled],
.select-mcapital select:disabled,
body button[disabled],
html body input[disabled] {
  background-color: rgba(236, 236, 236, 0.2);
  color: #000;
  cursor: not-allowed;
  opacity: 1;
}

.select-mcapital select:invalid {
  color: #c7c7c7;
}

.select-mcapital.enable select {
  color: #000;
}

textarea.pure {
  resize: none;
}

.client-table-invite {
  cursor: pointer;
}

body .icon-blue {
  color: #82b5ce;
  font-size: 18px;
  margin: 0 10px;
}

nav .page-active,
.dropdown-content span.page-active,
.dropdown-content span:hover {
  /* color: #95becd; */
}

.button-blue.active {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  height: a;
}

.step-container {
  display: flexbox;
  display: flex;
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
  width: 100%;
  z-index: 0;
}

.step-part {
  flex: 1;
  position: relative;
  text-align: center;
}

.step-part-text {
  left: 50%;
  max-width: 130px;
  position: absolute;
  text-align: center;
  top: 105%;
  transform: translateX(-50%);
}

.step-part-bubble {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 200px;
  display: block;
  height: 72px;
  margin: 0 auto;
  padding: 25px 30px;
  position: relative;
  text-align: center;
  width: 72px;
  z-index: 5;
}

.step-part-bubble::before,
.step-part-bubble::after {
  background-color: #fff;
  content: " ";
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

.step-part-bubble::before {
  right: 101%;
}

.step-part-bubble::after {
  left: 102%;
}

.step-part.active .step-part-bubble {
  background-color: #ebebe4;
}

.step-part.complete .step-part-bubble .step-part-content {
  background-color: #333;
  border-radius: 150px;
  left: 50%;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.step-container .step-part:not(:last-child)::after {
  background: #000;
  content: " ";
  display: inline-block;
  height: 2px;
  left: 230px;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}

body .mdl-radio {
  margin-bottom: 20px;
}

body .mdl-radio__inner-circle {
  background-color: #000;
}

.step-target:not(.active) {
  display: none;
}

.kyc-button {
  -webkit-box-pack: center;
  display: flexbox;
  display: flex;
  justify-content: center;
  width: 100%;
}

.kyc-button button {
  /* display: inline-block; */
  flex: 1;
  margin: 50px 10px;
  max-width: 200px;
}

.kyc-hr {
  display: none;
  width: 100%;
}

.slogan-nav {
  border-left: 1px solid;
  bottom: 17px;
  display: inline-block;
  font-family: tomatogrotesk;
  font-weight: initial;
  left: 155px;
  line-height: 15px;
  padding-left: 25px;
  position: relative;
  text-transform: initial;
}

.required-helper {
  color: #d91e18;
  display: none;
  margin-top: -20px;
}

#invite-choice {
  margin: 35px 0;
}

.inscription-button {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-weight: bold;
  line-height: normal;
  margin: 0 0 35px;
  padding: 10px 0;
  text-transform: uppercase;
  transition: background-color 0.5s;
  width: 100%;
}

.inscription-button.orange {
  background-color: #fff;
  border-color: #f8bdab;
  color: #f8bdab;
}

.inscription-button-disabled {
  background-color: #fff;
  border: 1px solid rgba(46, 51, 70, 0.24);
  color: rgba(46, 51, 70, 0.24);
  cursor: not-allowed;
  font-weight: bold;
  line-height: normal;
  margin: 0 0 35px;
  padding: 10px 0;
  text-transform: uppercase;
  transition: background-color 0.5s;
  width: 100%;
}

.inscription-button.orange.active {
  background-color: #f8bdab;
  border-color: #f8bdab;
  color: #fff;
}

.inscription-button.active {
  background-color: #000;
  color: #fff;
}

.download-button {
  background-color: #000;
  border: none;
  color: #fff;
  margin: 0 0 35px;
  padding: 10px 0;
  position: relative;
  transition: background-color 0.5s;
  width: 100%;
}

.download-button a {
  inset: 0;
  position: absolute;
}

.inscription-button:hover,
.inscription-button.active {
  background-color: #000;
  color: #fff;
  transition: background-color 0.5s;
}

.download-button.active {
  background-color: #000;
  transition: background-color 0.5s;
}

.inscription-form {
  display: none;
}

.inscription-form.active {
  display: block;
}

.no-padding {
  padding: 0 !important;
}

.dashboard-view {
  margin: 35px 0;
}

.dashboard-view-head {
  background-color: #000;
  color: #fff;
  font-size: 21px;
  padding: 20px 10px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.dashboard-view-body {
  border: 2px solid #000;
  padding: 25px 10px;
  text-align: center;
}

.google-maps {
  height: 44vh;
}

body .btn-default.active,
body .btn-default:active,
body .open > .dropdown-toggle.btn-default {
  background-color: #54a3d3;
}

body .btn-default:active {
  color: #fff;
}

body .ui-datepicker .ui-datepicker-header,
body .ui-datepicker select.ui-datepicker-year {
  background-color: #000;
}

.projet-window:not(.active) {
  display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

#kyc-header-info {
  text-transform: uppercase;
}

body hr {
  border-top: 1px solid #000;
}

#mdp_oublie {
  cursor: pointer;
}

body .krajee-default .file-footer-buttons {
  display: none;
}

div.border {
  border: 1px solid;
  margin-bottom: 16px;
  padding: 9px 0 1px;
}

ul.check {
  list-style: none;
  padding: 0;
}

ul.check li {
  background: url("../img/ico_ok.png") no-repeat 0 0;
  background-position-x: 0;
  background-position-y: 0;
  margin-bottom: 10px;
  padding-left: 35px;
}

.flexInvest {
  display: flexbox;
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 40px;
}

.flexInvest-content {
  flex: 1;
  margin: 0 15px;
}

.flexInvest-content p {
  text-align: inherit;
}

.flexInvest-content h4 {
  font-family: tomatogrotesk;
  font-weight: bold;
  margin-top: 25px;
  position: relative;
  text-align: inherit;
}

.flexInvest-content:nth-of-type(1) h4 {
  color: #95becd;
}

.flexInvest-content:nth-of-type(2) h4 {
  color: #7b9bab;
}

.flexInvest-content:nth-of-type(3) h4 {
  color: #617989;
}

.flexInvest-content:nth-of-type(4) h4 {
  color: #475667;
}

.flexInvest-content:nth-of-type(5) h4 {
  color: #2d3345;
}

.flexInvest-content-number {
  color: rgba(149, 190, 205, 0.25);
  font-family: Roboto, sans-serif;
  font-size: 90px;
  left: -5px;
  position: absolute;
  top: 40px;
  z-index: -1;
}

footer hr {
  border-color: #fff;
}

body .h3,
body h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.levee-table h3 {
  font-family: "tomatogrotesk_bold";
  margin-top: 0;
}

.projet-logo {
  margin-bottom: 50px;
  width: 50%;
}

div.doc-padlock {
  color: #82b5ce;
  font-size: 100px;
  text-align: center;
}

.checkboxToRadio i {
  display: none;
}

.checkboxToRadio i + span {
  margin-left: -5px;
}

body a[download] {
  font-weight: bold;
}

.legend-asterisk {
  margin-top: 25px;
}

body .nav-tabs > li {
  flex: 1;
  text-align: center;
}

.project-embed .tab-container {
  border: 1px solid #ccc;
  justify-content: space-between;
  margin: 20px 0 0;
  padding: 0;
}

.project-embed .nav-tabs {
  border-bottom: none;
}

.project-embed .tab-content {
  padding: 50px 30px;
}

.project-embed h1 {
  display: block;
  font-family: "Roboto Condensed", "tomatogrotesk_light";
  font-size: 40px;
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 70px;
  position: relative;
  text-align: center;
}

div.project-embed h1::after {
  background-color: #97becb;
  bottom: -20px;
  content: "";
  height: 4px;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  width: 30px;
}

div.project-embed div.localisation strong {
  background: url("https://res.cloudinary.com/daas0isur/image/upload/v1539854425/ico_localisation.png") no-repeat 0 50%;
  color: #000;
  display: inline-block;
  font-family: "Roboto Condensed", tomatogrotesk, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto 50px;
  padding-left: 30px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

div.project-embed div.localisation {
  color: #000;
  font-family: "Roboto Condensed", tomatogrotesk, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  position: relative;
  text-align: center;
}

div.project-embed .tab-content h3 {
  color: #000;
  font-family: "Roboto Condensed", tomatogrotesk, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 40px 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

div.project-embed .tab-content h3::after {
  background-color: #97becb;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  width: 30px;
}

html body ul.logo-point li ul li::before {
  content: url("../img/point1.png");
  padding-top: 0;
}

div.project-embed table#caracteristiques {
  width: 75%;
}

div.project-embed table#promoteur {
  width: 70%;
}

div.project-embed table#bilan {
  width: 50%;
}

div.project-embed table {
  border: none;
}

div.project-embed table tr td {
  border-bottom: 1px solid #ddd;
  font-family: "Roboto Condensed", tomatogrotesk, sans-serif;
  padding: 6px;
  text-align: right;
}

div.project-embed table tr td:first-child {
  text-align: left;
}

div.project-embed table tr:last-child td {
  border-bottom: none;
}

div.project-embed table tr td.upper_condensed {
  color: #000;
  font-family: "Roboto Condensed", tomatogrotesk, sans-serif;
  text-transform: uppercase;
}

/* PROMOTEUR */
#promoteur {
  overflow: hidden;
  width: 100%;
}

div.promoteur_left {
  float: left;
  margin-right: 5%;
  width: 75%;
}

div.promoteur_right {
  float: right;
  text-align: center;
  width: 20%;
}

#chiffres {
  -webkit-box-pack: center;
  display: flexbox;
  display: flex;
  justify-content: center;
  text-align: center;
}

#chiffres .block {
  border: 1px solid #97becb;
  color: #97becb;
  height: 160px;
  line-height: 160px;
  margin: 10px;
  width: 160px;
}

#chiffres .block .content {
  border: 1px solid #fff;
  display: inline-block;
  line-height: 1.2;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}

div.project-embed p.counter-wrapper,
div.project-embed p.counter-wrapper span {
  color: #97becb;
  font-family: tomatogrotesk, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

div.project-embed p.text-block {
  color: #97becb;
  font-family: "Roboto Condensed", "tomatogrotesk_light", sans-serif;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}

#s3 ul li {
  padding-bottom: 5px;
}

div.label {
  -webkit-box-pack: center;
  display: flexbox;
  display: flex;
  justify-content: center;
}

div.label div.bloc {
  color: #000;
  font-family: tomatogrotesk, sans-serif;
  font-size: 40px;
  line-height: 50px;
  margin: 20px;
}

div.label div.bloc span {
  display: block;
  font-family: "tomatogrotesk_light", sans-serif;
  font-size: 16px;
}

div.label div.bloc_last {
  color: #97becb;
}

div.label div.bloc_last span {
  color: #97becb;
}

div.caracteristiques {
  -webkit-box-pack: justify;
  display: flexbox;
  display: flex;
  justify-content: space-between;
}

div.caracteristiques div {
  width: 48%;
}

.clear {
  clear: both;
}

div.project-embed p.left_padding {
  font-size: 13px;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

html div.project-embed .nav-tabs > li > a:hover {
  background-color: rgba(128, 128, 128, 0.2) !important;
}

.message-container {
  background-color: rgb(66, 158, 179);
  color: #fff;
  display: none;
  left: 0;
  padding: 20px 25px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9999;
}

.message-container .cross {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 5px;
}

button {
  position: relative;
}

.tab-list.particular button a,
button a {
  inset: 0;
  position: absolute;
}

html body .file-highlighted {
  background-color: #fff !important;
  border: none !important;
}

.is-invest {
  background-color: #e74c3c;
  color: #fff;
  margin-top: 30px;
  padding: 15px 0;
  text-align: center;
}

.view-client-instruction {
  background-color: #000;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

body .p-0 {
  padding: 0;
}

body .m-0 {
  margin: 0;
}

#kyc-admin {
  display: inline-block;
  position: relative;
}

#kyc-admin .kyc-body-voile {
  cursor: not-allowed;
  inset: 0;
  position: absolute;
  z-index: 999;
}

#kyc-admin input,
#kyc-admin .radioKyc.active,
#kyc-admin select,
#kyc-admin button.active {
  background-color: #f1f1f1;
  color: #000;
}

.client-table-control {
  float: right;
  margin-bottom: 10px;
}

.client-table-control input {
  border: 1px solid #eee;
  padding: 5px 15px;
}

.client-table .sort {
  cursor: pointer;
  padding: 5px 20px;
  position: relative;
}

.client-table .sort::after {
  content: "\f2d1";
  font-family: fontAwesome;
  font-size: 11px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.client-table .sort.asc::after {
  content: "\f078";
}

.client-table .sort.desc::after {
  content: "\f077";
}

.client-table .sort.desc::after {
  transform: rotate(180deg);
}

.client-table tr[onclick] {
  cursor: pointer;
}

.client-table td .mdl-radio {
  height: 24px;
}

.title-underline {
  position: relative;
  text-align: center;
}

.input-file-content .label-file {
  border: 2px solid;
  color: #000;
  cursor: pointer;
  font-family: tomatogrotesk;
  font-weight: initial;
  margin-bottom: 20px;
  padding: 25px 15px;
  transition: background 0.5s;
  width: 100%;
}

.input-file-content .input-in-array {
  align-items: center;
  border: 1px dotted #1a1a1a;
  border-radius: 8px;
  height: 52px;
  justify-content: center;
  margin-bottom: unset;
  min-width: 200px;
  padding: unset;
  padding-right: unset;
  white-space: pre-wrap;
}

.input-file-content.check .label-file {
  background-color: #000;
  color: #fff;
}

.input-file[type=file] {
  display: none;
}

.input-file-array[type=file] {
  display: none;
}

#view-client-preview {
  cursor: pointer;
}

.social-content {
  background: white;
  display: block;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.social-content-wrap {
  justify-content: center;
}

.social-part {
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
}

#upload-file-invest {
  margin-bottom: 15px;
}

.levee-top-close {
  background-color: rgba(46, 51, 70, 0.6);
  -webkit-box-pack: center;
  display: flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: center;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
}

.levee-top-close-text {
  color: #fff;
  font-family: ocrey;
  font-size: 50px;
  font-weight: bold;
  margin: auto;
  text-transform: uppercase;
}

body .elgoc,
body .elgo {
  font-family: ocrey;
}

html body .hneu_bold {
  font-family: "tomatogrotesk_bold";
}

.levee-top-open {
  align-items: center;
  background-color: #000;
  color: #fff;
  display: flex;
  height: 50px;
  left: 0;
  padding: 0 25px;
  position: absolute;
  right: 0;
  top: 0;
}

.levee-top-open-text {
  font-size: 12px;
  position: relative;
  text-align: left;
}

.levee-top-open-text::before {
  background-color: rgb(46, 203, 116);
  border-radius: 100%;
  content: "";
  height: 5px;
  left: -10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

html div.project-embed .nav-tabs > li > a {
  padding: 20px 5px;
}

@media (max-width: 1199px) {
  /* html div.project-embed .nav-tabs > li > a#deux_lignes,
   html body div.project-embed .nav-tabs > li.active > a#deux_lignes{padding:12px 20px 11px;} */
  footer .p-footer:nth-child(1) {
    left: 10px;
    position: relative;
    width: 10%;
  }
  body .content-2 > div,
  body .content-border-2 > div {
    width: 100%;
  }
  body .content-border-2 {
    flex-direction: column;
  }
  body .content-border-2 .padding-full {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  /* html div.project-embed .nav-tabs > li > a#deux_lignes{padding:20px;}
   html body div.project-embed .nav-tabs > li.active > a#deux_lignes{padding:19px;} */
  html div.project-embed .nav-tabs > li {
    align-self: stretch;
    -ms-flex-item-align: stretch;
  }
  body .sentence-separate {
    margin-top: 100px;
  }
  .triangle > div {
    margin-top: 45px;
    position: relative;
  }
  body .triangle > div::before,
  body .triangle > div::after {
    content: none;
    display: none;
  }
  body .navbar-noir {
    display: none;
  }
}
@media (max-width: 768px) {
  html div.project-embed .nav-tabs > li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 746px) {
  html div.project-embed .nav-tabs > li > a#deux_lignes,
  html body div.project-embed .nav-tabs > li.active > a#deux_lignes {
    padding: 12px 20px 11px;
  }
  div.project-embed table#caracteristiques,
  div.project-embed table#promoteur {
    width: 100%;
  }
}
@media (max-width: 576px) {
  ul.flex {
    flex-direction: column;
  }
  html div.project-embed .nav-tabs > li > a#deux_lignes,
  html body div.project-embed .nav-tabs > li.active > a#deux_lignes {
    padding: 20px 5px;
  }
  #chiffres {
    flex-direction: column;
  }
  #chiffres .block {
    margin: 10px auto;
  }
  div.caracteristiques {
    flex-direction: column;
  }
  div.caracteristiques div {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cookie-container-button {
  background-color: #000;
  border: none;
  padding: 2px 5px;
}

#view-client-team,
#view-client-individual {
  display: none;
}

.primary-empty {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 10px 35px;
  transition: 0.5s;
}

.primary-empty:hover,
.primary-empty.active {
  background-color: #000;
  color: #fff;
}

.m-top {
  display: flex;
  margin-bottom: 25px;
  margin-top: 25px;
}

.inscription-alert.active {
  display: block;
}

.inscription-alert {
  display: none;
}

/* ------NAVBAR NOIR------ */
#header .topbar {
  background-color: #90b0ef;
}

.navbar-noir {
  background: #90b0ef;
  display: flex;
  flex-flow: row wrap;
  font-size: 16px;
  font-weight: initial;
  height: 38px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 125px;
}
body .navbar-noir {
  font-family: "tomatogrotesk_bold";
}

.navbar-noir a[href] {
  font-weight: 400;
}

.navbar-noir li {
  color: #000;
  display: block;
  padding-right: 15px;
  padding-top: 5px;
  position: relative;
  text-decoration: none;
  text-transform: none;
}

.navbar-noir li:nth-of-type(1n + 2)::after {
  background-color: #000;
  content: "";
  height: 16px;
  position: absolute;
  right: 7px;
  top: 49%;
  transform: translateY(-50%);
  width: 1px;
}

.navbar-noir li:last-of-type::after {
  display: none;
}

/* PHONE */
.navbar-noir li#phone {
  display: flex;
  margin-top: 3px;
}

.navbar-noir li#phone a {
  color: white;
  font-family: "tomatogrotesk_bold", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.fa-phone {
  margin: 5px 10px 0 0;
}

.navbar-noir li#phone::after {
  background: white;
  content: "";
  display: block;
  height: 60%;
  position: absolute;
  right: 0%;
  top: 20%;
  width: 1px;
  z-index: 1;
}

.navbar-noir li a:hover {
  color: #a9a3a3;
  text-decoration: none;
}

#logo_blog {
  padding-left: 1em;
}

#logo_blog img {
  height: 30px;
  width: auto;
}

.fa {
  color: white;
}

.fa-facebook {
  margin-right: 20px;
}

/* Header */
header {
  background-color: #f0f0f0;
  background-image: url("/img/home.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  margin-top: -83px;
  min-height: 25rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

header video {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  z-index: 0;
}

header .container {
  height: 100vh;
  position: relative;
  z-index: 2;
}

header .overlay {
  background-color: #000;
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.home-header-txt {
  color: white;
  font-family: Roboto, Arial, sans-serif;
  left: 7%;
  max-width: 750px;
  position: absolute;
  text-align: left;
  top: 55%;
  transform: translateY(-50%);
}

.home-header-txt img {
  margin-top: 30px;
}

.home-header-txt .home-header-txt-mention {
  color: #000;
  display: block;
  font-family: "tomatogrotesk_light";
  font-size: 22px;
}

/* ------PARTIE CHIFFRE------ */
#container {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  width: 100%;
}

/* ------POURQUOI INVESTIR ?------ */
body .bloc-part:first-child {
  padding: 0;
}

.bloc-part {
  border-bottom: 2px solid #000;
  overflow: auto;
  padding: 60px 0;
  width: 100%;
}

h2 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 45px;
  font-weight: 100;
  text-align: center;
}

/* -------PARTIE OPERATION------ */
.bloc-part h2,
body .hat-title {
  margin-bottom: 30px;
}

.bloc-part h2 {
  text-align: left;
}

.block-operation {
  flex-direction: column;
  font-weight: 300;
  height: 560px;
  height: auto;
  padding-bottom: 20px;
  text-align: center;
  width: 30%;
}

.visuel {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.visuel #open {
  display: block;
}

.visuel #en_cours {
  background: url("../img/ico_encours.png") no-repeat 0 0;
  height: 79px;
  left: 0;
  position: absolute;
  top: 0;
  width: 106px;
  z-index: 2;
}

.visuel .levee-top-close {
  background-color: rgba(46, 51, 70, 0.6);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
  z-index: 5;
}

.visuel .levee-top-close .levee-top-close-text {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  margin: auto;
  text-transform: uppercase;
}

.visuel img {
  height: 190px;
  position: relative;
  width: 100%;
  z-index: 0;
}

.titre-operation {
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 7px;
  text-transform: uppercase;
}

.localisation {
  border-bottom: 1px solid #cbdee5;
  display: flex;
  font-size: 14px;
  justify-content: center;
  margin: auto;
  width: 90%;
}

.block_description_upper {
  margin: auto;
  margin-top: 15px;
  width: 90%;
}

.block_description {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.txt_description_1 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  padding-left: 10px;
  text-align: left;
  width: 70%;
}

.txt_description_2 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  width: 30%;
}

.texte-operation {
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 20px;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: left;
  width: 90%;
}

.ico_localisation {
  height: 21px;
  margin-bottom: 10px;
  margin-right: 5px;
  width: 18px;
}

.ico_operation {
  height: 20px;
  width: auto;
}

.indicateur {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 90%;
}

.indicateur img {
  margin-right: 7px;
}

.indicateur img:nth-child(3) {
  margin-top: 7px;
}

#operation .container a {
  display: block;
  text-align: center;
}

#bouton-ope {
  background-color: #000;
  border: none;
  color: white;
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 43px;
  margin-bottom: 10px;
  margin-top: 25px;
  width: 307px;
}

.btn-investir {
  background-color: #f8bdab;
  border: none;
  color: white;
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 33px;
  margin-top: 10px;
  width: 171px;
}

/* ------PARTIE AVANTAGES------ */
#avantage {
  padding: 50px 0;
  width: 100%;
}

#avantage h2 {
  margin: 0 auto;
  width: 80%;
}

#avantage h2 img {
  margin: -7px 0 0 10px;
}

#partie-avantage {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
}

.block-avantage {
  flex-direction: column;
  font-weight: 300;
  text-align: center;
  width: 45%;
}

.block-avantage img {
  height: 120px;
}

.block-avantage h3 {
  display: block;
  font-family: Roboto, Arial, sans-serif;
  font-size: 23px;
  font-weight: bold;
  margin: 30px auto 40px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 70%;
}

.block-avantage h3::after {
  background: #000;
  content: "";
  height: 3px;
  left: 0;
  margin: 10px auto;
  position: absolute;
  right: 0;
  top: 100%;
  width: 30px;
}

.block-avantage p {
  font-family: "tomatogrotesk_light";
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 30px;
  margin-top: 15px;
  padding: 0 20px;
}

.block-avantage:last-child h3 {
  width: 50%;
}

.block-avantage:last-child p {
  padding: 0 80px 30px;
}

.partie-list {
  background: url("../img/ico_ok.png") no-repeat 0 0;
  display: flex;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 25px 30px;
  padding: 0 0 0 40px;
  text-align: left;
  width: 90%;
}

.partie-list:last-child {
  margin: 0 0 15px 30px;
}

/* ------FOOTER------ */
footer {
  background-color: #fff;
  border-top: 2px solid #000;
  padding-bottom: 20px;
  width: 100%;
}

/* Nav */
#nav-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.block-footer {
  margin-top: 50px;
  width: 30%;
}

.block-footer ul {
  margin: 0;
  padding: 0;
}

.block-footer ul li {
  list-style: none;
}

.block-footer ul li a {
  font-family: tomatogrotesk;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

.block-footer:nth-child(2) ul li {
  margin-bottom: 15px;
}

.block-footer:last-child {
  display: flex;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  text-align: center;
}

.p-footer:nth-child(1) {
  left: 40px;
  position: relative;
  top: -15px;
  width: 10%;
}

.p-footer:nth-child(2) {
  flex-direction: column;
  font-size: 24px;
  text-align: right;
  width: 90%;
}

.p-footer img {
  margin-top: 15px;
}

/* Logo */
.logo-footer {
  border-bottom: 1px solid #000;
  display: flex;
  margin-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.logo-footer img {
  height: 55px;
}

.logo-footer span {
  border-left: 1px solid white;
  font-family: "tomatogrotesk_light";
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 3px;
  margin-left: 30px;
  padding: 6px 0 0 30px;
}

/* Avertissement */
#avertissement-footer {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-top: 20px;
  text-align: justify;
}

#avertissement-footer a {
  color: white;
}

#form-header-title {
  color: #393939;
  display: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}

#label-EMAIL_ID {
  color: #393939;
  display: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}

#input-email {
  background-color: #f1f1f1;
  border: 1px solid #e6e4e4;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 0.9em;
  height: 35px;
  margin: 5px 0 18px;
  padding-left: 5px;
  text-indent: 5px;
  width: 100%;
}

#label-l4g4638sz8bykxbkr98g {
  color: #393939;
  display: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}

#div-l4g4638sz8bykxbkr98g {
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  padding-top: 5px;
  text-align: left;
  width: 540px;
}

#indicator-l4g4638sz8bykxbkr98g {
  background-color: #f1f1f1;
  border: 1px solid #e6e4e4;
}

#label-opt-l4g4638sz8bykxbkr98g {
  color: white;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-right: 10px;
  padding-top: 5px;
}

#label-xrnwjxgjpmbek2bw8d4nr5 {
  color: #393939;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}

#form-mandatory {
  color: #393939;
  display: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-left: 5px;
}

input::-moz-placeholder {
  color: #848484;
  opacity: 0.6;
}

input::input-placeholder,
input:placeholder,
input::placeholder,
input:input-placeholder,
input::input-placeholder {
  color: #848484;
  opacity: 0.6;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

@media screen and (min-device-pixel-ratio: 0) {
  select {
    padding-right: 18px;
  }
}
.select-arrow {
  position: relative;
}

.select-arrow::after {
  color: #848484;
  content: "^";
  font: 15px Consolas, monospace;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: -3px;
  transform: rotate(180deg);
}

.control {
  cursor: pointer;
  display: block;
  font-size: 18px;
  margin-left: 5px;
  margin-right: 6px;
  padding-left: 30px;
  position: relative;
}

.control input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.control__indicator {
  border: 1px solid;
  border-radius: 3px;
  height: 20px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 20px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control__indicator::after {
  content: "";
  display: none;
  position: absolute;
}

.control input:checked ~ .control__indicator::after {
  display: block;
}

.control--checkbox .control__indicator::after {
  border-color: #848484;
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
  width: 3px;
}

.control--radio .control__indicator::after {
  background: #848484;
  border-radius: 50%;
  height: 6px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 6px;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input:not(.file-text):focus {
  outline: solid 1px #000 !important;
}

textarea:focus {
  outline: solid 1px #736f6f !important;
}

select:focus {
  outline: solid 1px #736f6f !important;
}

input:disabled,
input[disabled] {
  cursor: default;
  opacity: 0.2;
}

.loader,
.loader::after {
  border-radius: 50%;
  height: 1.8em;
  width: 1.8em;
}

.loader {
  animation: load8 1s infinite linear;
  border: 0.5em solid #919798;
  border-left-color: #3c9f51;
  font-size: 10px;
  margin-left: 10px;
  margin-top: 5px;
  position: relative;
  transform: translateZ(0);
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#sb_form {
  border-radius: 0;
  padding: 10px 20px 20px;
}

input {
  color: #000;
}

#div-submitInput {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

#submitInput {
  background-color: #f8bdab;
  border: none;
  color: white;
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  height: 35px;
  margin-left: 15px;
  width: 105px;
}

#form-footer-mandatory {
  color: #393939;
  display: none;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-top: 20px;
}

.message-div-success {
  background-color: #2e3345 !important;
  font-family: Roboto !important;
}

.checkmark_right,
.checkmark_left {
  background-color: white !important;
}

.message-div-success span {
  font-family: Roboto !important;
  margin: auto;
}

.message-div-success div:nth-child(1) span:nth-child(1) {
  font-weight: 700;
}

.message-div-success div:nth-child(2) {
  width: 100% !important;
}

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

.inscription-title {
  font-family: "tomatogrotesk_light", sans-serif;
  font-size: 30px;
}

/** Responsive **/
@media screen and (max-width: 1380px) {
  nav #logo img {
    border: none;
  }
  nav #logo {
    width: 30%;
  }
  nav #navbar {
    /* width: 70%; */
  }
}
@media screen and (max-width: 1200px) {
  .block-avantage:last-child p {
    padding: 0 40px 30px;
  }
  .block-avantage h3 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  #navbar ul li a {
    margin-right: 10px;
  }
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  .home-header-txt strong {
    font-size: 22px;
  }
  #telephone {
    display: none;
  }
  .container {
    max-width: 100%;
  }
  .home-header-txt strong {
    padding: 0 100px 25px;
  }
  .block-avantage p {
    font-size: 18px;
    line-height: 25px;
    padding: 0;
  }
  .block-avantage h3 {
    width: 100%;
  }
  .block-avantage:last-child p {
    padding: 0 30px 25px;
  }
  .block-promoteur:last-child {
    font-size: 18px;
    line-height: 25px;
    padding: 40px 0 0 40px;
  }
}
@media screen and (max-width: 830px) {
  #avantage .container {
    max-width: 100%;
  }
  .block-avantage:last-child h3 {
    width: 70%;
  }
}
.levee-header-bottom .box-notif {
  margin-top: 100px;
}

@media screen and (max-width: 1380px) {
  html body .home-header-txt {
    color: white;
    font-family: Roboto, Arial, sans-serif;
    left: initial;
    margin: 0;
    padding: 0 15px;
    position: relative;
    top: 150px;
    transform: none;
    width: 100%;
  }
  body header {
    background-position: center;
    background-size: auto;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 35px !important;
    line-height: 45px !important;
    padding-bottom: 15px !important;
  }
  .levee-header-bottom .box-notif {
    margin-top: 35px;
    width: 100%;
  }
  .question-customer {
    width: auto;
  }
  .home-header-txt strong {
    font-size: 20px;
    line-height: 27px;
    padding: 0 0 15px;
  }
  html body .home-header-txt {
    padding: 0 23px;
    top: 15%;
  }
  nav #logo {
    width: 30vw;
  }
  nav #logo #accroche {
    display: none;
  }
  .block-partie-chiffre {
    width: 100%;
  }
  /* Invest */
  #partie-invest {
    flex-direction: column;
    margin-bottom: 0;
    width: 100%;
  }
  .block-invest {
    margin: auto;
    margin-bottom: 40px;
    text-align: center;
    width: 60%;
  }
  .block-invest:last-child {
    margin-bottom: 0;
  }
  .block-invest h3 {
    margin: 20px 0;
  }
  /* Avantages */
  #partie-avantage {
    flex-direction: column;
    margin: auto;
    width: 75%;
  }
  .block-avantage {
    margin: auto;
    margin-top: 60px;
    width: 100%;
  }
  .partie-list {
    margin: 0 0 10px;
    width: 100%;
  }
  /* Footer */
  footer .container {
    max-width: 100%;
  }
  #nav-footer {
    flex-direction: column;
    width: 100%;
  }
  .block-footer {
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  .block-footer:first-child li {
    border-left: 1px solid white;
    flex: 1;
    text-align: center;
  }
  .block-footer:first-child li {
    border: none;
    text-align: left;
  }
  .block-footer:nth-child(2) ul li {
    margin-bottom: 5px;
  }
  .p-footer:first-child {
    display: none;
  }
  .p-footer:last-child {
    width: 100%;
  }
  /* Newlsetter */
  #texte-newsletter {
    font-size: 22px;
    padding-top: 25px;
  }
  #div-l4g4638sz8bykxbkr98g {
    width: 80%;
  }
  /* ? Start ? */
  .content-2 .button-primary-color {
    display: none;
  }
  body .navbar-nav > li.topbar-blog.topbar-blog-button_first {
    left: 30%;
    top: 0;
    transform: translateX(-50%);
  }
  body .navbar-nav > li.topbar-blog.topbar-blog-logo {
    display: inline-block;
    left: 70%;
    top: -67px;
    transform: translateX(-50%);
    width: -moz-fit-content;
    width: fit-content;
  }
  body .navbar-nav > li.topbar-blog.topbar-blog-button_first,
  body .navbar-nav > li.topbar-blog.topbar-blog-log {
    width: -moz-fit-content;
    width: fit-content;
  }
  body .team-picture {
    text-align: center;
  }
  body div.head-division {
    padding: 2.125rem;
  }
  body div#accordion .panel-default > .panel-heading {
    border-radius: 0;
    padding-right: 75px;
  }
  .bloc-part .col-md-6 {
    padding: 0;
  }
  .triangle {
    margin-bottom: 50px;
  }
  body .levee-top-open {
    height: 20px;
    top: 0;
  }
  ul.list li {
    width: 100%;
  }
  .projet-button.button-blue {
    margin-bottom: 25px;
  }
  .content-border-2,
  .content-2 {
    flex-direction: column;
  }
  .home-header-txt-button-element.home-header-txt-button-element-subscribe,
  .home-header-txt-button-element.home-header-txt-button-element-connection {
    display: none;
  }
  body .accordeon-arrow li {
    cursor: pointer;
    padding: 10px 50px 10px 0;
    position: relative;
  }
  body .content-text-jump {
    display: block;
  }
  body .image-dots-left,
  body .image-dots-right {
    top: 70%;
  }
  body .image-dots-left + img,
  body .image-dots-right + img {
    margin-top: 50px;
    position: relative;
  }
  .image-dots-right,
  .image-dots-left {
    display: none;
  }
  body .figure .image-dots-left + img,
  body .figure .image-dots-right + img {
    margin-top: 150px;
    position: relative;
    width: 100%;
  }
  body .content-2 {
    margin: 0;
  }
  body .sentence-separate {
    margin-top: 0;
  }
  body .content-2 > div,
  body .content-border-2 > div {
    width: 100%;
  }
  body .padding-full {
    padding: 0 15px;
    width: 100%;
  }
  body .sub-title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  #div-l4g4638sz8bykxbkr98g {
    text-align: justify;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 35px !important;
    line-height: 45px !important;
  }
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .home-header-txt {
    margin: auto;
    width: 95%;
  }
  .home-header-txt strong {
    font-size: 18px;
    line-height: 25px;
  }
  /* Opération */
  .indicateur {
    display: flex;
    flex-direction: row;
  }
  .indicateur img {
    margin: auto;
    margin-bottom: 10px;
    width: 88px;
  }
  #en_cours {
    background: url("../img/ico_encours_576.png") no-repeat 0 0;
    position: absolute;
  }
  .block-footer:nth-child(2) a {
    font-size: 14px;
  }
  .block-invest {
    width: 80%;
  }
  #avantage h2 {
    width: 90%;
  }
  #email {
    margin-bottom: 15px;
  }
  .block-partie-chiffre span {
    padding: 0 0 0 20px;
  }
  #logo-footer {
    display: block;
    text-align: center;
  }
  #logo-footer span {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  #avantage h2 img {
    margin-top: 5px;
  }
}
@media screen and (max-width: 425px) {
  .navbar-noir {
    display: none;
  }
  body #partie-avantage {
    width: 90%;
  }
  .block-partie-chiffre strong {
    text-align: right;
  }
  #email {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  h1 {
    font-size: 25px !important;
    line-height: 35px !important;
  }
  .txt_description_1 {
    font-size: 12px;
    padding-top: 2px;
  }
}
body .navbar-toggle {
  float: right;
}

.projet-window {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.projet-window .block-operation {
  width: 100%;
}

.projet-window::after {
  content: "";
  width: 30%;
}

.head-division.head-background {
  padding: 10.125rem 0;
  text-transform: uppercase;
  width: 100%;
}

.head-background {
  background-position-x: center;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: 100;
  position: relative;
}

.head-background + #page .row:first-child h2:first-of-type,
.head-background + #page .container:first-child h2:first-of-type {
  margin-bottom: 50px;
  padding-top: 35px;
  word-break: break-word;
}

.head-background::before {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.head-background h1 {
  font-family: tomatogrotesk;
  font-weight: bold;
  padding: 0 5px;
  position: relative;
  z-index: 999;
}

.head-background.projetfinancer {
  background-image: url("/img/projetfinancer.jpg");
}

.head-background.devenirpartenaire {
  background-image: url("/img/devenirpartenaire.jpg");
}

.head-background.quisommesnous {
  background-image: url("/img/quisommesnous.jpg");
}

.head-background.investir {
  background-image: url("/img/investir.jpg");
}

.head-background.selectionprojets {
  background-image: url("/img/selectionprojet.jpg");
  background-position-x: center;
}

.three-columns,
.four-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.four-columns > div,
.three-columns > div {
  flex: 1;
  flex-direction: column;
  height: auto;
  margin: auto 0;
  padding-bottom: 20px;
  text-align: center;
}

.three-columns > div {
  width: 30%;
}

.four-columns > div {
  width: 25%;
}

.blue-banner {
  background-color: #000;
  color: #fff;
  padding: 25px 0;
  width: 100%;
}

.gray-banner {
  background-color: #f1f1f5;
  padding: 25px 0;
  width: 100%;
}

.picture-jump {
  margin-bottom: 20px;
}

.container-sentence {
  margin-left: 50px;
  margin-right: 50px;
}

@media screen and (min-width: 830px) {
  html body .container-compress {
    width: 870px;
  }
  .why-subscribe > div {
    padding: 0 40px;
  }
  .banner-gray-project > div {
    padding: 0 50px;
  }
  .triangle {
    display: flex;
    margin-bottom: 50px;
    position: relative;
  }
  .small-container {
    display: block;
    margin: 0 auto;
    width: 300px;
  }
  .triangle > div::before {
    background-color: #000;
    content: "";
    display: block;
    height: 15px;
    left: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
    position: relative;
    transform: rotate(45deg);
    width: 15px;
  }
  .triangle > div::after {
    background-color: #000;
    content: "";
    display: block;
    height: 2px;
    left: 25px;
    margin-bottom: 25px;
    margin-top: 31px;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .triangle > div:nth-child(1)::after {
    right: 0;
    width: 100%;
  }
  .triangle > div::after {
    left: 25px;
    width: 100%;
  }
  .triangle > div:last-child::after {
    left: 0;
    width: 0;
  }
  iframe {
    height: 360px;
    max-width: 100%;
    width: 640px;
  }
  .projet-window > li {
    width: 30%;
  }
}
@media screen and (max-width: 830px) {
  .four-columns > div {
    text-align: center;
    width: 100%;
  }
  .three-columns,
  .four-columns {
    display: block;
  }
  #navbar .menu-icon {
    display: inline-block;
  }
  /* Opération */
  .block-operation {
    margin-bottom: 50px;
    width: 100%;
  }
  .three-columns > div {
    width: 100%;
  }
  .visuel img {
    height: auto;
  }
  .visuel {
    height: auto;
  }
  .ico_operation {
    margin: auto;
  }
  .txt_description_1,
  .txt_description_2 {
    margin: auto;
  }
  .block_description {
    margin: 5px 0 15px;
  }
  #bouton-ope {
    margin: 0;
    width: 100%;
  }
  /* Chiffre */
  #container {
    flex-direction: column;
  }
  .block-partie-chiffre {
    border: none;
    display: flex;
    flex-direction: row;
    margin: auto;
    text-align: left;
    width: 100%;
  }
  .block-partie-chiffre span {
    display: unset;
    flex: 1;
    font-size: 14px;
    padding: 0 0 0 30px;
    text-align: left;
  }
  .block-partie-chiffre strong {
    display: unset;
    font-size: 18px;
    padding-top: 5px;
  }
  #partie-chiffre {
    padding: 20px 0 10px;
  }
  /* promoteur */
  .block-promoteur:last-child {
    font-size: 17px;
  }
  .partie-list:last-child {
    margin: 0 0 15px;
  }
}
ul.no-list {
  list-style: none;
  padding-left: 0;
}

ul.no-list > li {
  list-style: none;
  padding-left: 40px;
  position: relative;
}

ul.no-list > li::before {
  content: "-";
  left: 0;
  list-style: none;
  position: absolute;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.same-height {
  height: 150px;
}

.group-banner h2 {
  font-family: tomatogrotesk;
  margin-bottom: 10px;
}

h3.bold,
h4.bold {
  font-family: "tomatogrotesk_bold";
}

.block-invest .txt-invest {
  font-family: "tomatogrotesk_light";
  font-size: 18px;
  text-align: center;
  width: 30%;
}

.horaire {
  display: inline-block;
  font-family: "tomatogrotesk_bold";
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.triangle-sentence {
  font-size: 16px;
}

.rigorous-sentence {
  font-size: 17px;
}

.size-up,
ul.size-up li {
  font-size: 18px;
}

.size-up-up,
ul.size-up-up li {
  font-family: ocrey;
  font-size: 30px;
}

.intro-sentence {
  margin-bottom: -25px;
  padding-top: 90px;
}

.bouton-ope {
  background-color: #000;
  border: none;
  color: white;
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 43px;
  margin-bottom: 10px;
  margin-top: 25px;
  min-width: 200px;
}

.under-stroke {
  font-size: 23px;
  margin-bottom: 40px;
  position: relative;
}

.under-stroke::before {
  background-color: #8abac7;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  width: 45px;
}

#telephone {
  max-width: none;
}

li > .fa.fa-file,
li > .fa.fa-times {
  color: #000;
}

.selection .size-up p,
.selection .size-up li {
  font-size: 16px;
}

.selection ul + p {
  margin-top: 30px;
}

.picture-jump + .container-sentence {
  font-size: 17px;
}

.rigorous div {
  margin-bottom: 20px;
}

.block-partie-chiffre .shallow-container {
  height: 50px;
}

.triangle h4 {
  font-family: tomatogrotesk;
  font-weight: normal;
}

.triangle h4.elgo {
  font-family: ocrey;
  font-size: 22px;
}

.sail {
  background-color: #fff;
  display: flex;
  inset: 0;
  position: fixed;
  z-index: 100;
}

.sail-sentence {
  margin: auto;
  text-align: center;
}

.sail #goKyc.sail-button,
.sail #goSign.sail-button {
  width: auto;
}

.m-center {
  margin: auto;
}

.title-dof-span {
  display: block;
  margin-top: 50px;
}

.no-padding {
  padding: 0;
}

a#brand > img {
  height: 33px;
  position: relative;
  top: 11px;
}

.slogan-nav {
  font-size: 14px;
  left: 135px;
}

#avantage h2 img {
  margin: -16px 0 0 10px;
  width: 100px;
}

#logo-footer span {
  margin-left: 22px;
}

#logo-footer img {
  height: 35px;
}

.project-document-list-warning {
  font-size: 18px;
  margin-right: 17px;
  width: 18px;
}

.fiscalsKyc,
.fiscalsKyc .inline {
  width: 100%;
}

.fiscalsKyc .inline[style*="display: block"] {
  display: inline-block !important;
}

/* #cookie-accept-modal */
.modal.cookie-accept-modal {
  top: 50px;
}

.cookie-accept-modal input[type=checkbox] {
  display: inline-block;
  height: 13px;
  position: relative;
  top: 1px;
}

.cookie-accept-modal .cookie-accept-modal-button {
  border: none;
  display: block;
  margin: auto;
  text-transform: uppercase;
  width: 200px;
}

.cookie-accept-modal .cookie-accept-modal-button,
.cookie-accept-modal-button-accept {
  background-color: #000;
  color: #fff;
}

.cookie-accept-modal .cookie-accept-modal-note {
  display: block;
  text-align: center;
}

.cookie-accept-modal .container {
  max-width: 100%;
  width: 720px;
}

.cookie-accept-modal-button-container {
  text-align: center;
}

.cookie-accept-modal-button-container button {
  border: none;
  margin: 0 5px;
  padding: 5px 10px;
}

.cookie-accept-modal p {
  font-weight: normal;
}

.cookie-accept-modal a,
.cookie-accept-modal a[download] {
  font-weight: normal;
  text-decoration: underline;
}

[data-toggle=modal] {
  cursor: pointer;
}

@media (max-width: 768px) {
  body .mdl-textfield__label::after {
    display: none;
  }
  body .cgp-form-information .form:nth-of-type(2) {
    margin: 0;
    position: relative;
  }
  body .cgp-form-information button[type=submit] {
    float: right;
  }
  html body li.navbar-bar-connect {
    left: 5px;
    margin-bottom: 25px;
    position: relative;
  }
  html body li.navbar-bar-subscribe {
    position: absolute;
    right: 0;
    top: 17px;
  }
  #disconnect .disconnect-modal button {
    min-width: 100px;
  }
  #disconnect .container,
  #disconnect .modal-body {
    padding: 0;
  }
  .cookie-accept-modal-button-container button {
    border: none;
    margin: 5px 0;
    padding: 5px 10px;
    width: 100%;
  }
  .cookie-accept-modal .modal-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    position: relative;
  }
  label[for=cookie-fonctionnel] {
    line-height: 15px;
  }
  body .modal.cookie-accept-modal {
    top: 0;
  }
}
/* End #cookie-accept-modal */
.dof-statement label {
  display: inline;
}

/** KYC **/
.kyc-form-container {
  position: relative;
}

.kyc-form-container .kyc-form-button-next,
.kyc-form-container .kyc-form-button-previous {
  bottom: 0;
  position: absolute;
}

.kyc-form-container .kyc-form-button-next {
  right: 0;
}

.kyc-form-container .kyc-form-button-previous {
  left: 150px;
}

.checkbox-container {
  display: inline-block;
  margin-bottom: 35px;
}

.kyc-form-sign.active {
  display: block;
}

.kyc-form-sign {
  display: none;
}

.kyc-image-sign {
  display: block;
  margin: 0 auto 194px;
  position: relative;
  top: 130px;
  width: 229px;
}

body .un-row {
  float: left;
  margin-left: 0;
  margin-right: 0;
  width: 50%;
}

.siren-kyc-form-button-next-launcher,
.kyc-form-button-next-launcher {
  bottom: inherit;
  display: block;
  float: right;
  position: relative;
  right: inherit;
}

.cni-info,
.cni-info-pm {
  border: 3px solid;
  border-radius: 5px;
  display: flex;
  margin: 20px 35px;
  padding: 35px;
}

.cni-info {
  border-color: #e92b2b;
}

.cni-info-pm {
  border-color: #0d0d0d;
}

.cni-info-pm-primary {
  flex-wrap: wrap;
  margin: auto;
  width: 593px;
}

.cni-info-loader {
  border: 3px solid #dedede;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 35px;
  padding: 35px;
}

.cni-kyc-form h3 {
  text-align: center;
  text-transform: uppercase;
}

.cni-kyc-form span,
.cni-kyc-form p {
  font-weight: 400;
}

.cni-kyc-form-container {
  display: flex;
  width: 105px;
}

.cni-kyc-form-container img {
  width: 55px;
}

.cgp-form-sign.active,
.cgp-form-information.active,
.cgp-form-files.active,
.kyc-form.active,
.kyc-form-files.active,
.kyc-form-siren.active {
  display: block;
  padding-bottom: 125px;
}

.cgp-form-information,
.cgp-form-sign,
.cgp-form-files,
.kyc-form,
.kyc-form-files,
.kyc-form-siren {
  display: none;
}

.header.kyc-header .text {
  position: relative;
  top: 40px;
}

#header + .header.kyc-header {
  margin-bottom: 35px;
  margin-top: 120px;
  padding-bottom: 110px;
  position: relative;
}

.header.kyc-header .text h1,
.header.kyc-header .text h2 {
  font-family: ocrey;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
}

.header.kyc-header .text h1::before,
.header.kyc-header .text h2::before {
  background-color: #000;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  width: 100px;
}

.kyc-form-container .head-title {
  margin: 35px 0;
  position: relative;
  text-align: center;
}

.kyc-form-container .head-title h1 {
  font-family: ocrey;
  font-size: 36px;
  font-weight: 700;
}

.kyc-form-container .cgp-form {
  display: block;
  margin: 0 auto 240px;
  position: relative;
  top: 150px;
  width: 296px;
}

.red {
  color: #e92b2b;
  font-size: 12px;
}

.kyc-focus .sail-gray.active {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 0;
}

.kyc-form .sail-white {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 0;
}

@media (min-width: 1024px) {
  .container.small-container {
    width: 910px;
  }
}
.kyc-form-body select.ui.dropdown {
  border: 1px solid #000;
  box-shadow: none;
  display: block;
  height: 28px;
  max-width: 100%;
  padding: 0;
  padding-left: 5px;
  width: 100%;
}

.grey {
  color: #6b6b6b;
}

.kyc-form-body .kyc-subtitle,
.kyc-form-body .radio-line-container-element {
  position: relative;
}

.kyc-form-body-title {
  display: inline-block;
  margin-bottom: 35px;
  width: 100%;
}

.kyc-form-body > div.radio-line-container {
  margin: 35px 0 100px;
}

.kyc-form-body > div.radio-line-container {
  display: flex;
  justify-content: space-around;
}

.is-invalid .radio-line-container-element::after {
  background-color: #e92b2b;
}

.kyc-form-body .mdl-checkbox__label {
  font-size: 14px;
  font-weight: initial;
}

.kyc-form-body .mdl-radio__inner-circle {
  background-color: #000;
  z-index: 2;
}

body .mdl-radio.is-checked .mdl-radio__inner-circle {
  transform: scale(1, 1);
  transform: scale(2, 2);
}

.kyc-form-body .mdl-radio__outer-circle {
  background-color: #fff;
  border: 1px solid #000;
  z-index: 2;
}

.kyc-heade.header {
  position: relative;
}

.skeleton-item {
  background-color: #d8d8d8;
  border-color: #d8d8d8;
  overflow: hidden;
  position: relative;
}

.skeleton-item::after {
  animation: shine;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  background: rgba(255, 255, 255, 0.2);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 350%;
  left: -100%;
  opacity: 0;
  position: absolute;
  top: -125%;
  transform: rotate(45deg);
  width: 40px;
}

@keyframes shine {
  from {
    left: -100%;
    opacity: 0.5;
  }
  to {
    left: 200%;
    opacity: 1;
  }
}
.cni-kyc-form-container .skeleton-item {
  height: 105px;
  margin-bottom: 15px;
  width: 90px;
}

.cni-kyc-form-container-info .skeleton-item,
body .skeleton-item.text {
  height: 15px;
  margin-bottom: 15px;
  width: 240px;
}

.checkbox-container-content {
  margin: 4px 0;
}

body .kyc-focus .mdl-checkbox {
  cursor: pointer;
  display: inline-table;
}

.kyc-form-body > div.d-ib,
.d-ib {
  display: inline-block;
  margin-bottom: 35px;
  width: min(500px, 100% - 30px);
}

body .kyc-focus .un-row {
  float: left;
  margin-left: 0;
  margin-right: 0;
  width: 50%;
}

.kyc-focus .mdl-radio__label {
  font-size: 14px;
  font-weight: initial;
}

.kyc-subtitle {
  font-weight: 700;
}

.kyc-focus img[src] {
  display: none;
}

.kyc-focus .title_docs {
  min-height: 50px;
}

.cni-kyc-form h3 {
  text-align: center;
  text-transform: uppercase;
}

.cni-kyc-form {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cni-info-pm-primary {
  flex-wrap: wrap;
  margin: auto;
  width: 593px;
}

.cni-kyc-form-container {
  display: flex;
  width: 105px;
}

.cni-kyc-form-container-info.cni-kyc-form-container-info-part-one {
  width: 250px;
}

.cni-kyc-form-container-info {
  text-align: initial;
  width: 100%;
}

.modal-body-kyc-present {
  display: flex;
}

.cni-info,
.cni-info-pm {
  align-items: center;
  border: 3px solid;
  border-radius: 5px;
  display: flex;
  justify-content: space-around;
  margin: 20px 35px;
  padding: 35px;
}

.cni-info.hide,
.cni-info-pm.hide {
  display: none;
}

.modal.fade#siren-kyc .modal-dialog {
  display: inline-table;
}

.cni-kyc-form-container-info span.red {
  color: #000;
  font-weight: bold;
}

.kyc-form-body .dual-radio {
  display: inline-block;
  max-width: 340px;
  min-width: 340px;
  width: 100%;
}

body .kyc-form-body .mdl-textfield__input.is-invalid {
  border-color: #e92b2b;
}

.is-invalid .mdl-checkbox__box-outline {
  border-color: #e92b2b;
}

/* --------------------------------------------------------------------------------- PAGE CLUB PRIVEE --------------------------------------------------------------------------------- */
.page-clubprive {
  align-items: center;
  background-image: url("/img/bg.jpg");
  background-size: cover;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
}

.page-clubprive .overlay {
  background-color: #000;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.page-clubprive .white-rect {
  align-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  height: 350px;
  justify-content: space-between;
  padding: 50px 0;
  width: 800px;
  z-index: 6;
}

.page-clubprive .white-rect h2 {
  font-weight: bold;
}

.page-clubprive-input {
  border: 1px solid black;
  border-radius: 0;
  padding: 10px 20px;
  width: 300px;
}

.page-clubprive-button {
  background-color: #000;
  border: none;
  color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  padding: 5px 20px;
  width: auto;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
body .ui-datepicker {
  z-index: 2;
}

.mdl-textfield--floating-label.is-date .mdl-textfield__label {
  font-size: 12px;
  top: 4px;
}

html .is-invalid .mdl-radio__outer-circle,
html .dual-radio.is-invalid .mdl-radio__outer-circle {
  border-color: #f00;
}

html .dual-radio.is-invalid .mdl-radio__inner-circle {
  background-color: #f00;
}

.flex input[type=radio][name=typeKyc] {
  display: inline-block;
  margin-right: 15px;
  width: auto;
}

.flex input[type=radio][name=typeKyc] + label {
  color: #000;
}

/* demarque */
body .hat-title {
  position: relative;
  text-align: center;
}

.head-division h1,
.title-underline {
  position: relative;
}

.head-division h1::before,
.title-underline::before,
.hat-title::before {
  background-color: #000;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  width: 100px;
}

.home-header-txt-button {
  margin: 25px 0 20px;
}

body .center-block {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-header-txt-button-element {
  box-sizing: border-box;
  margin: 25px 0 45px;
  text-transform: uppercase;
}

.home-header-txt-button-element {
  margin-right: 35px;
}

.home-header-txt-button-element.home-header-txt-button-element-subscribe {
  background-color: #000;
  border: 1px solid #000;
}

.home-header-txt-button-element.home-header-txt-button-element-subscribe:hover {
  background-color: transparent;
  color: #000;
}

.home-header-txt-button-element.home-header-txt-button-element-connection {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.home-header-txt-button-element.home-header-txt-button-element-connection:hover {
  background-color: black;
  color: white;
}

.accordeon-arrow {
  list-style: none;
  padding: 0;
}

.accordeon-arrow li > :first-child {
  font-family: "tomatogrotesk_bold";
  font-size: 30px;
}

.accordeon-arrow li:first-of-type {
  border-top: 2px solid #000;
}

.accordeon-arrow li {
  border-bottom: 2px solid #000;
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.accordeon-arrow li.active::after {
  content: url("/img/cross.png");
  top: 45px;
}

.accordeon-arrow li::after {
  content: url("/img/arrow.png");
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-title {
  margin-bottom: 100px;
  text-align: center;
}

.head-division .hat-title + .sub-title {
  margin: 0;
}

.accordeon-arrow-toggle {
  display: none;
}

.active .accordeon-arrow-toggle {
  display: block;
}

.content-2 {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 20px;
  position: relative;
}

.content-border-2 {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.image-dots-left,
.image-dots-right {
  position: absolute;
  top: 45%;
  transform: translateY(-150%);
  z-index: -1;
}

.image-dots-left {
  left: 0;
}

.image-dots-right {
  right: 0;
}

.center-title {
  font-family: "tomatogrotesk_bold";
  font-size: 30px;
  text-align: center;
}

.stat-content-number-giant {
  display: inline-block;
  font-family: "tomatogrotesk_bold";
  font-size: 104.02px;
  position: relative;
}

.stat-content {
  margin-top: 100px;
}

.stat-content-number-text {
  margin: 0;
}

.content-2 > div,
.content-border-2 > div {
  position: relative;
  width: 50%;
}

.padding-full {
  padding: 50px 170px;
}

.padding-fat {
  padding: 50px 20px;
}

.building-left {
  background-image: url("/img/building-left.png ");
  background-size: cover;
  border-right: 2px solid #000;
}

.content-philosophie-text-logo {
  margin-bottom: 30px;
}

ul.line {
  list-style: none;
  padding: 0 22px;
  position: relative;
}

ul.line li::before {
  content: "-";
  left: 5px;
  position: absolute;
}

.title-bold {
  display: block;
  font-family: "tomatogrotesk_bold";
  font-size: 22px;
}

.horaire {
  font-size: 18px;
}

.p-footer [href^=tel] {
  font-size: 20px;
}

html,
body {
  margin-top: 83px;
}

.levee-description {
  text-align: center;
}

.levee-location {
  font-family: "tomatogrotesk_bold";
  margin-bottom: 15px;
  margin-top: -15px;
  text-align: center;
  text-transform: uppercase;
}

.levee-location-pin {
  margin-right: 5px;
}

/* @media (min-width: 1200px) { */
/*   .header-top .container-project { */
/*     width: 1530px; */
/*   } */
/* } */
h1.hat-title,
.head-division h1,
.kyc-form-body .kyc-form-body-title,
.inscription-title {
  font-family: ocrey;
}

.kyc-form-body .kyc-form-body-title {
  font-size: 30px;
  margin-top: 30px;
}

.inscription-title {
  margin-bottom: 30px;
}

body .mdl-checkbox__box-outline {
  border: 1px solid #000;
}

.inscription-button.active::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
  bottom: -11px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

@media (max-height: 768px) {
  [id*=kyc] .modal-content {
    height: 70vh;
    overflow-y: scroll;
  }
}
.alert-tel-field {
  color: #f00;
  position: absolute;
}

.inscription-form span {
  font-size: 16px;
}

#inscriptionPPButton {
  display: block;
  margin: auto;
}

.team-picture {
  display: inline-block;
  width: 100%;
}

html ::-moz-selection {
  background: #000;
}

html ::selection {
  background: #000;
}

.team-picture-title {
  font-family: "tomatogrotesk_bold", sans-serif;
}

.team-picture-job {
  height: 50px;
  margin-bottom: 0;
}

.team-picture-separate {
  margin: 10px 0;
}

.team-picture-description {
  font-size: 16px;
  font-style: italic;
}

#bgCommentinvestir {
  display: none;
}

.projet-button {
  padding: 0 15px;
}

a[href] {
  font-weight: bold;
}

html .nav > li > a[href="/investir"],
html .nav > li > a[href="#"].chevron {
  font-family: tomatogrotesk;
  text-transform: initial;
}

.padding-text + .figure .image-dots-right + img {
  left: 50%;
  position: absolute;
  transform: translateY(-40%) translateX(-50%);
}

.figure .image-dots-left + img,
.figure .image-dots-right + img {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  width: 80%;
}

.title-small {
  font-size: 30px;
  font-weight: 600;
}

.triangle > div {
  padding: 0;
  position: relative;
  width: 100%;
}

ul.triangle-sentence {
  list-style: none;
  padding-left: 25px;
}

ul.triangle-sentence > li::before {
  content: url("/img/checkmark.png");
  left: 0;
  position: absolute;
}

.sub-title ul {
  padding: 0;
}

.sub-title ul > li:nth-child(1) {
  list-style: none;
}

.sub-title ul > li:nth-child(1n+2) {
  list-style: inside;
  text-align: center;
}

.flex-center {
  justify-content: space-between;
}

.how-invest {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.how-invest-content {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 360px;
  min-width: 360px;
  position: relative;
}

.how-invest-content-number {
  display: inline-block;
  font-family: ocrey;
  font-size: 80px;
  left: -41px;
  position: relative;
  width: 30px;
}

.how-invest-content-number::after {
  background-color: #000;
  content: "";
  height: 20px;
  position: absolute;
  right: -60px;
  top: -10px;
  transform: rotate(45deg);
  width: 20px;
}

.how-invest .how-invest-content:first-child .how-invest-content-text::before {
  height: calc(100% + 130px);
  top: -45px;
}

.how-invest-content-text::before {
  background-color: #000;
  content: "";
  height: calc(100% + 80px);
  left: -44px;
  position: absolute;
  width: 1px;
}

.how-invest .how-invest-content:first-child .how-invest-content-text::after {
  border-radius: 100%;
  content: "";
  height: 500px;
  position: absolute;
  width: 500px;
  z-index: -1;
}

.how-invest .how-invest-content:nth-child(3) .how-invest-content-text::after {
  border-radius: 100%;
  content: "";
  height: 400px;
  position: absolute;
  top: -94px;
  width: 400px;
  z-index: -1;
}

.how-invest .how-invest-content:nth-child(5) .how-invest-content-text::after {
  border-radius: 100%;
  content: "";
  height: 300px;
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 300px;
  z-index: -1;
}

.how-invest .how-invest-content .how-invest-content-text::after {
  background-color: rgba(200, 200, 200, 0.5);
  left: -265px;
  left: -45px;
  top: -84px;
  transform: translateX(-50%);
}

.how-invest-content-text h4 {
  font-family: tomatogrotesk;
  margin: 0;
}

.how-invest .how-invest-content:last-child .how-invest-content-text::before {
  display: none;
}

.how-invest-content-text {
  position: relative;
  right: -82px;
  top: -44px;
}

div.head-division {
  padding: 6.125rem 3.125rem 3.125rem;
}

div.content-title {
  padding-bottom: 3.125rem;
}

.content-text-jump {
  display: flex;
  margin-bottom: 100px;
}

.project-table {
  padding-left: 35px;
}

body .modal-title {
  font-family: tomatogrotesk;
}

.modal-header {
  border-color: #000;
  right: -90px;
  top: -40px;
}

div.head-division {
  padding: 6.125rem 3.125rem 3.125rem;
}

div.content-title {
  padding-bottom: 3.125rem;
}

.content-text-jump {
  display: flex;
  margin: 75px 0 120px;
}

.project-table {
  padding-left: 35px;
}

body .modal-title {
  font-family: tomatogrotesk;
}

.modal-header {
  border-color: #000;
}

body ul.ico {
  list-style: none;
  padding-left: 0;
}

body ul.ico.pl-20 {
  padding-left: 20px;
}

ul.ico > li {
  margin-bottom: 40px;
  padding-left: 70px;
  position: relative;
}

ul.ico > li > i {
  display: inline-flex;
  justify-content: center;
  left: -5px;
  position: absolute;
  top: -15px;
  width: 70px;
}

ul.ico > li > i::before {
  display: inline-block;
  position: absolute;
}

.content-critere-selection > ul.ico > li {
  margin-bottom: 70px;
}

ul.ico > li.build > i::before {
  content: url("/img/icon_list/build.png");
}

ul.ico > li.authorized > i::before {
  content: url("/img/icon_list/authorized.png");
}

ul.ico > li.calendar_time > i::before {
  content: url("/img/icon_list/calendar_time.png");
}

ul.ico > li.chart > i::before {
  content: url("/img/icon_list/chart.png");
}

ul.ico > li.pin > i::before {
  content: url("/img/icon_list/pin.png");
}

ul.ico > li.padlock > i::before {
  content: url("/img/icon_list/padlock.png");
}

ul.ico > li.pad > i::before {
  content: url("/img/icon_list/pad.png");
}

ul.ico > li.letter > i::before {
  content: url("/img/icon_list/letter.png");
}

ul.ico > li.pointer > i::before {
  content: url("/img/icon_list/pointer.png");
}

ul.ico > li.profil > i::before {
  content: url("/img/icon_list/profil.png");
}

ul.ico > li.team > i::before {
  content: url("/img/icon_list/team.png");
}

ul.ico > li.cert > i::before {
  content: url("/img/icon_list/cert.png");
}

ul.ico > li.training > i::before {
  content: url("/img/icon_list/training.png");
}

ul.ico > li.calendar > i::before {
  content: url("/img/icon_list/calendar.svg");
}

ul.ico > li.money > i::before {
  content: url("/img/icon_list/money.svg");
}

ul.ico > li.time > i::before {
  content: url("/img/icon_list/time.svg");
}

ul.ico > li.euro > i::before {
  content: url("/img/icon_list/euro.svg");
}

ul.ico > li.risk > i::before {
  content: url("/img/icon_list/risk.svg");
}

ul.ico > li.graph > i::before {
  content: url("/img/icon_list/graph.svg");
}

ul.ico > li > i::before {
  top: 20px;
  width: 45px;
}

.content-2-big-title,
.content-2-title,
ul.ico > li h4 {
  font-family: "tomatogrotesk_bold";
}

.content-2-big-title {
  font-size: 30px;
}

.project-table.ico span {
  text-transform: uppercase;
}

.project-embed-content::before {
  content: url("/img/dots.png");
  display: none;
  position: absolute;
  right: -80px;
  top: -80px;
  z-index: -1;
}

.topbar-blog-button {
  background-color: #000;
  border: none;
  color: #fff;
  padding: 5px 20px;
  text-transform: uppercase;
}

body .navbar-nav > li.topbar-blog {
  border-bottom: none;
  top: -2px;
}

.slogan-number {
  font-family: "tomatogrotesk_bold";
  font-size: 21px;
  font-weight: initial;
  left: 530px;
  position: absolute;
  top: 64%;
  transform: translateY(-50%);
  width: 240px;
}

.bloc-part.bloc-part-borderless {
  border: none;
}

.panel-default.accordion-toggle.collapsed .panel-heading:not([aria-expanded])::after,
.panel-group .panel .panel-heading:not([aria-expanded])::after,
.panel-group .panel.panel-default[aria-expanded=false]::after,
.panel-group .panel .panel-heading[aria-expanded=false]::after {
  content: url("/img/arrow.png");
}

.panel-default.accordion-toggle .panel-heading:not([aria-expanded])::after,
.panel-group .panel.panel-default[aria-expanded=true]::after,
.panel-group .panel .panel-heading[aria-expanded=true]::after {
  content: url("/img/cross.png");
}

.panel-group .panel.panel-default::after,
.panel-group .panel .panel-heading::after {
  position: absolute;
  right: 0;
  top: 40px;
  transform: translateY(-50%);
}

.panel-group .panel {
  position: relative;
}

.box-notif ul {
  margin: 0;
}

.code-cgp * {
  font-size: 14px;
}

.tab-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 65px;
  position: relative;
}

.tab-list.active {
  justify-content: space-around;
}

.tab-list.particular span * {
  position: relative;
}

.tab-list.particular span:nth-child(1) * {
  right: -25px;
}

.tab-list.particular span:nth-child(2) * {
  right: 25px;
  top: 15px;
}

.tab-list.particular span:nth-child(3) * {
  right: 25px;
}

.tab-list > span {
  position: relative;
  text-align: center;
}

.tab-list.active > span::after {
  right: -100px;
}

.tab-list > span::after {
  background-color: #000;
  content: "";
  height: 45px;
  position: absolute;
  right: -75px;
  top: 10%;
  width: 2px;
}

.tab-list > span:last-of-type::after {
  display: none;
}

.tab-list > *:last-of-type {
  border-right: none;
  padding: 0;
  padding-left: 50px;
}

.tab-list > *:last-of-type button {
  background-color: #000;
  border-color: #000;
  color: #fff;
  padding: 15px 25px;
  text-transform: uppercase;
  top: 6px;
}

.tab-list > *:nth-last-of-type(2) {
  border-right: none;
}

.accordeon-arrow .content-2 {
  padding-bottom: 100px;
}

.accordeon-arrow-toggle .figure .image-dots-right {
  transform: translateX(-30%) translateY(-100%);
}

.accordeon-arrow-toggle .figure img {
  max-width: 65%;
}

.home-header-txt.home-header-txt-full {
  color: white;
  font-family: Roboto, Arial, sans-serif;
  left: -150px;
  max-width: 100%;
  position: absolute;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

body input.mdl-textfield__input:focus {
  outline: none !important;
}

html body .mdl-textfield .mdl-textfield__label::after {
  background-color: #000;
}

body .panel-collapse .panel .panel-body,
.panel .panel-body {
  border-color: #000;
  border-left: 2px solid;
  border-right: 2px solid;
  border-top: none !important;
}

body .panel {
  box-shadow: none;
}

body .panel .panel-heading {
  border-top: 2px solid #000 !important;
}

.sentence-separate {
  margin-top: 400px;
}

.flex-button {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.flex-button button {
  margin: 0 15px;
  width: 100%;
}

.p-footer-social {
  margin-bottom: 10px;
}

.how-invest + button {
  display: block;
  margin: auto auto 100px;
}

.padding-text h3 {
  margin-bottom: 40px;
}

.kyc-form-body .radio-line-container {
  display: flex;
  justify-content: space-around;
  margin: 35px 0 100px;
}

#actionslettres + label {
  font-size: 12px;
  top: 4px;
}

.row-container {
  display: flex;
  flex-direction: row;
}

.column-container {
  display: flex;
  flex-direction: column;
}

.container-column-center {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.toggle-pro-status-container {
  width: 60%;
}

/*  HANDLE FILE INPUT */
.input-file-content {
  position: relative;
}
.input-file-content.is-invalid .label-file {
  border-color: #e92b2b;
  color: #e92b2b;
}

.saved-file::after {
  align-items: center;
  background-color: #000;
  bottom: 0;
  color: white;
  content: "\f019";
  display: flex;
  font-size: 20px;
  font-weight: 100;
  padding: 18px;
  position: absolute;
  right: 0;
  top: 0;
}

.saved-file-in-array::after {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

.input-file-content.check .label-file {
  background-color: #000;
  color: white;
}

.input-file-content.check .saved-file::after {
  border-left: 2px solid white;
}

.input-file-content * {
  position: initial;
}

.fa {
  font-family: FontAwesome !important;
}

.flex-button.no-padding-parent {
  display: flex;
  justify-content: space-between;
}
.flex-button.no-padding-parent .button-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 0 35px;
  width: 45%;
}
.flex-button.no-padding-parent .button-container .button-ocean.full.button-primary-color {
  max-width: none;
}

.kyc-subtitle {
  display: inline-block;
  width: 100%;
}

custom-button > button {
  align-self: flex-end;
  background-color: #2361ad !important;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: Arial;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  margin: 0;
  max-width: none !important;
  min-width: 200px;
  padding: 15px;
  text-transform: uppercase;
}
custom-button > button:disabled {
  background-color: #d3d3d3 !important;
  color: #fff;
  cursor: default;
}

.kyc-form .mdl-textfield.is-disabled .mdl-textfield__input,
.kyc-form fieldset[disabled] .mdl-textfield .mdl-textfield__input {
  color: #000;
}

body .page-account .mdl-textfield {
  margin-top: 11px;
}
body .page-account .mdl-textfield .mdl-textfield__label {
  color: #000 !important;
  font-size: 14px !important;
  top: -8px;
}
body .page-account svg.pencil {
  right: 32px;
  top: 35px;
}
body .page-account svg.valid {
  right: 30px;
  top: 39px;
}

.align-right {
  float: right;
  margin-bottom: 20px;
}

.separator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
}
.separator::after {
  background-color: #1a1a1a;
  content: "";
  height: 1px;
  width: 80%;
}

.section-button-container button {
  margin-bottom: 20px;
}

button.button-primary-color, button.button-secondary-color, button.inscription-button, button.download-button,
a.button-primary-color,
a.button-secondary-color,
a.inscription-button,
a.download-button {
  border-radius: var(--border-radius);
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 200px;
  padding: 15px;
  text-align: center;
  background-color: #90b0ef;
  border-color: #90b0ef;
  color: white;
  /** overwrite the initial button */
  border-radius: 0;
  color: #000;
  font-weight: bold;
}
button.button-primary-color:disabled, button.button-secondary-color:disabled, button.inscription-button:disabled, button.download-button:disabled,
a.button-primary-color:disabled,
a.button-secondary-color:disabled,
a.inscription-button:disabled,
a.download-button:disabled {
  cursor: default;
  background-color: lightgrey;
  border-color: lightgrey;
  color: white;
}
button.button-primary-color:hover:not(:disabled), button.button-primary-color.active, button.button-secondary-color:hover:not(:disabled), button.button-secondary-color.active, button.inscription-button:hover:not(:disabled), button.inscription-button.active, button.download-button:hover:not(:disabled), button.download-button.active,
a.button-primary-color:hover:not(:disabled),
a.button-primary-color.active,
a.button-secondary-color:hover:not(:disabled),
a.button-secondary-color.active,
a.inscription-button:hover:not(:disabled),
a.inscription-button.active,
a.download-button:hover:not(:disabled),
a.download-button.active {
  background-color: white;
  border-color: #90b0ef;
  color: #90b0ef;
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.form.center-block {
  margin-top: 50px;
}

/** expiration */
body .expiration-headband {
  background-color: #ced4da;
  color: #1a1a1a;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  justify-content: center;
  padding: 10px;
  position: relative;
  top: 30px;
}
body .expiration-underline {
  cursor: pointer;
  text-decoration: underline;
}
body .expiration-underline:hover {
  text-decoration: underline;
}

.home-header {
  display: flex;
  min-height: 100vh;
}

.subHeader {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 1rem;
  padding-top: 3rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}

.download-kyc-file,
.files-download {
  background-color: transparent;
  border: none;
}

.waiting-room-logo .a {
  fill: var(--primary-color);
}
.waiting-room-logo .b {
  fill: #707070;
}

.wrapper-shortFileArray {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.wrapper-shortFileArray .btn-shortFileArray {
  display: none;
  margin-left: 5px;
  min-width: 40px;
  padding: unset;
}

.cgp-uploadFile {
  background-color: #1160b8;
}

.cgp-invest-client-array {
  align-items: center;
}

#cgp-upload-file-client {
  margin: auto;
}

.account {
  border: 1px solid #000;
  display: flex;
}
.account:hover {
  background-color: none;
}

.account-sidebar {
  background-color: #f1f1f1;
  min-height: 50vh;
  padding: 35px 30px;
}

.account-sidebar-list {
  list-style: none;
  padding: 0;
  position: sticky;
  top: 10rem;
}

.account-sidebar-list li {
  cursor: pointer;
  padding: 10px 60px;
  position: relative;
  width: 320px;
}

.account-sidebar-list li:not([data-source]) {
  padding: 10px 25px;
}

.account-sidebar-list li[data-source=mail]::after {
  content: url("/img/mail.svg");
}

.account-sidebar-list li[data-source=synthese]::after {
  content: url("/img/graph.svg");
}

.account-sidebar-list li[data-source=informations]::after {
  content: url("/img/users.svg");
}

.account-sidebar-list li[data-source=password]::after {
  content: url("/img/tools-and-utensils.svg");
}

.account-sidebar-list li[data-source=files]::after {
  content: url("/img/business-and-finance.svg");
}

.account-sidebar-list li[data-source=attestations]::after {
  content: url("/img/business-and-finance.svg");
}

.account-sidebar-list li[data-source=invoice]::after {
  content: url("/img/invoice.svg");
  height: 21px;
  left: 23px;
  width: 21px;
}

.account-sidebar-list li[data-source=cgp]::after {
  content: url("/img/business.svg");
}

.account-sidebar-list li[data-source=status]::after {
  content: url("/img/business.svg");
}

.account-sidebar-list li[data-source=invest]::after {
  content: url("/img/money.svg");
}

.account-sidebar-list li:not([data-source]),
.account-sidebar-list li:nth-of-type(7) {
  padding-left: 25px;
}

.account-sidebar-list li::after {
  left: 25px;
  position: absolute;
}

.account-sidebar-list li:hover,
.account-sidebar-list li.active {
  background-color: #90b0ef;
  font-weight: 600;
}

.account-sidebar-list li::before {
  display: none;
}

.account-content {
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  width: 100%;
}

.account-content-section-form {
  border: 1px solid var(--primary-color);
  display: grid;
  justify-items: center;
  padding-bottom: 3rem;
  row-gap: 3rem;
  width: 100%;
}

.account-content-section-title .red {
  font-size: 35px;
}

.account-content-section-form-title {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.account-content-section-form .form {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  row-gap: 2rem;
  width: 100%;
}
.account-content-section-form .form__notice {
  color: var(--error-color);
  margin: 0;
}
.account-content-section-form .form__paragraph {
  margin: 0;
}
.account-content-section-form .form__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.account-content-section-form .form__inner--alone {
  display: grid;
  width: 80%;
}
.account-content-section-form .form__inner__inputWrapper {
  display: grid;
  position: relative;
  row-gap: 0.3rem;
}
.account-content-section-form .form__inner__inputWrapper__input {
  border: 1px solid var(--grey-color);
  color: var(--primary-color);
  height: var(--input-height);
  margin: 0;
  padding: 1rem;
}
.account-content-section-form .form__inner__inputWrapper__input:disabled {
  cursor: not-allowed;
}
.account-content-section-form .form__inner__inputWrapper__logo {
  bottom: calc(var(--input-height) / 2);
  cursor: pointer;
  height: 1.2rem;
  position: absolute;
  right: 1rem;
  stroke: var(--primary-color);
  transform: translateY(50%);
}
.account-content-section-form .form__buttonWrapper {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.account-content-section-form .form__buttonWrapper__button {
  border-radius: var(--border-radius);
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 200px;
  padding: 15px;
  text-align: center;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  /** overwrite the initial button */
  border-radius: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.account-content-section-form .form__buttonWrapper__button:disabled {
  cursor: default;
  background-color: lightgrey;
  border-color: lightgrey;
  color: white;
}
.account-content-section-form .block {
  display: grid !important;
  justify-items: center;
  row-gap: 2rem;
}
.account-content-section-form .block__title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.account-content-section-form .block__form {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}
.account-content-section-form .block__form__file {
  align-items: center;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  color: white !important;
  display: grid;
  padding: 1rem;
  text-align: center;
}
.account-content-section-form .block__form__file:hover {
  background-color: var(--secondary-color);
}

.account-content canvas {
  margin-top: 30px;
  max-width: 100%;
}

.account-content-section-form.table {
  border: none;
  padding: 0;
}

.account-content-section {
  display: none;
  position: relative;
}

.account-content-section.active {
  display: block;
  width: 100%;
}

.account-content-section .state-content-cursor-step[data-target="1"]::before {
  content: "Inscription";
}

.account-content-section .state-content-cursor-step[data-target="2"]::before {
  content: "Pièce d'identité";
}

.account-content-section .state-content-cursor-step[data-target="3"]::before {
  content: "KYC";
}

.account-content-section .state-content-cursor-step[data-target="4"]::before {
  content: "Lettre de mission";
}

.account-content-section .state-content-cursor-step::before {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 20px;
  transform: translateX(-50%);
  width: 100%;
}

.account-content-section .state-content-cursor-step.active::before {
  color: var(--secondary-color);
}

.account-content-section .state-content-cursor {
  margin: 0 auto 55px;
  max-width: 700px;
}

.account-content-section-form-empty-title {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

#pie {
  float: right;
}

.account-content-section-forn-legend-pie {
  float: left;
}

.account-content-section-forn-legend-pie .legend {
  border-radius: 100%;
  display: flex;
  font-weight: 600;
  height: 46px;
  width: 46px;
}

.account-content-section-forn-legend-pie-subscriber,
.account-content-section-forn-legend-pie-invest {
  color: #fff;
}

.account-content-section-forn-legend-pie-pending {
  color: #1a1a1a;
}

.account-content-section-forn-legend-pie-subscriber {
  background-color: var(--secondary-color);
}

.account-content-section-forn-legend-pie-invest {
  background-color: #1a1a1a;
}

.account-content-section-forn-legend-pie-pending {
  background-color: #f1f1f1;
}

.account-content-section-forn-legend-pie-legend {
  font-weight: 600;
  left: 12px;
  position: relative;
  top: 12px;
}

.account-content-section-title {
  margin-bottom: 35px;
  margin-top: 0;
  text-align: center;
  text-transform: uppercase;
}

.subtitle {
  text-align: center;
}

.account-content-section .state-content-cursor {
  display: flex;
  margin: 0 auto 55px;
  max-width: 700px;
}

.state-content-cursor,
.cgp-content-cursor.active {
  display: flex;
}

body .header .state-content-cursor {
  padding: 0 15px;
  width: 100%;
}

.header .state-content-cursor {
  bottom: 15px;
  display: none;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 768px;
  z-index: 1;
}

.header .state-content-cursor.active {
  display: flex;
}

.header .state-content-cursor .state-content-cursor-step {
  margin-right: 5px;
}

.header .state-content-cursor {
  display: flex;
}

.header .state-content-cursor .state-content-cursor-step {
  margin-right: 5px;
}

.header .state-content-cursor {
  bottom: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 768px;
  z-index: 1;
}

.header .state-content-cursor .state-content-cursor-step {
  margin-right: 15px;
}

.state-content-cursor-step.active {
  border: none;
}

.state-content-cursor-step.active,
.cgp-content-cursor-step.active {
  background-color: #000;
}

.state-content-cursor-step,
.cgp-content-cursor-step {
  background-color: rgb(233, 233, 233);
  display: block;
  flex-grow: 0.5;
  height: 12px;
  position: relative;
}

.state-content-cursor-step {
  border: 1px solid #1a1a1a;
}

.state-content-cursor-step,
.cgp-content-cursor-step {
  background-color: #fff;
  display: block;
  flex-grow: 0.5;
  height: 10px;
  position: relative;
}

.state-content-cursor-step.active,
.cgp-content-cursor-step.active {
  background-color: var(--secondary-color);
}

.state-content-cursor-step.active {
  border: none;
}

.state-content-cursor-step {
  margin-right: 10px;
}

.state-content-cursor-step:last-child {
  margin-right: 0;
}

.state-content-cursor-step-bar-progress.active-half {
  background-color: #1a1a1a;
  height: 10px;
  position: relative;
  top: -1px;
  transform: scaleX(0.5);
  transform-origin: left;
  width: 100%;
}