@charset "UTF-8";
::-moz-placeholder {
  --primary-color: #13273f;
  --secondary-color: #133763;
  --headband-color: #b1d4ff;
  --hold-color: #d8ffed;
  --font-color-on-bg: #fff;
  --font-color: #13273f;
  --light-color: #c8d2ab;
  --grey-color: #b7b7b7;
  --lightgrey-color: #f6f6f6;
  --darkgrey-color: #707070;
  --title-border-color: transparent;
  --title-border-height: 0;
  --font-family: "Poppins", sans-serif;
  --border-radius: 0.625rem;
  --box-shadow: 0 3px 10px #00000029;
  --border-color: #676d71;
  --header-height: 7.5rem;
  --input-height: 3.4rem;
  --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: #13273f;
  --secondary-color: #133763;
  --headband-color: #b1d4ff;
  --hold-color: #d8ffed;
  --font-color-on-bg: #fff;
  --font-color: #13273f;
  --light-color: #c8d2ab;
  --grey-color: #b7b7b7;
  --lightgrey-color: #f6f6f6;
  --darkgrey-color: #707070;
  --title-border-color: transparent;
  --title-border-height: 0;
  --font-family: "Poppins", sans-serif;
  --border-radius: 0.625rem;
  --box-shadow: 0 3px 10px #00000029;
  --border-color: #676d71;
  --header-height: 7.5rem;
  --input-height: 3.4rem;
  --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: #133763;
  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 3px 10px rgba(0, 0, 0, 0.1607843137));
  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: #13273f;
  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 #13273f;
  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: #13273f;
}
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;
}

:root {
  color: #13273f;
  font-size: 16px;
}
@media (max-width: 767px) {
  :root {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html,
html[lang] {
  color: #13273f;
}

nav,
html,
body {
  font-weight: 400;
  margin: auto;
}

body ol,
body ul,
body p,
body h3,
body span,
body button,
body input,
body select,
body textarea {
  font-size: 1rem;
  line-height: 30px;
}

html body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: Poppins, sans-serif;
}

html body h1 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  html body h1 {
    font-size: 1.5rem;
  }
}
html body h1.title {
  font-weight: 700;
  margin: 20px 0 40px;
}
html body h2 {
  font-size: torem(28);
}
@media (max-width: 767px) {
  html body h2 {
    font-size: torem(16);
  }
}
html body h4 {
  font-size: 1rem;
}
html body .headand-kpi h1 {
  font-weight: 300;
}

:is(.header, .header_bottom) .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 55px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  :is(.header, .header_bottom) .title {
    font-size: 1.5rem;
  }
}

.container .row {
  margin-left: 0;
  margin-right: 0;
}

.page-account .form .row {
  margin-bottom: 20px;
}

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

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

.custom-align {
  display: grid;
  gap: 50px;
  grid-auto-flow: column;
  justify-content: space-between;
}

.custom-align__flex {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.navbar-fixed-top.fixed-theme {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .navbar-fixed-top.fixed-theme {
    border-bottom: 0;
  }
}

html .navbar-collapse.in {
  background-color: rgb(255, 255, 255);
  display: grid;
  left: 0;
  max-height: initial;
  overflow: inherit;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 75px;
  width: calc(100% + 30px);
}
html .navbar-collapse.collapsing {
  display: none;
}
html .swiper {
  max-width: calc(100% - 30px);
  padding: 0 0 100px;
  position: relative;
  width: 980px;
}
html .swiper .swiper-horizontal > .swiper-pagination-bullets,
html .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
html .swiper .swiper-pagination-custom,
html .swiper .swiper-pagination-fraction {
  display: grid;
  gap: 35px;
  grid-auto-flow: column;
  justify-content: center;
}
@media (max-width: 767px) {
  html .swiper .swiper-horizontal > .swiper-pagination-bullets,
  html .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
  html .swiper .swiper-pagination-custom,
  html .swiper .swiper-pagination-fraction {
    gap: 25px;
  }
}
html .swiper .swiper-pagination-bullet {
  height: 30px;
  width: 30px;
}
html .swiper .swiper-pagination-bullet-active {
  background-color: #07f9a2;
}
html .swiper.swiper-card {
  max-width: calc(100% - 30px);
  padding: 0 0 100px;
  width: 600px;
}

.swiper-between {
  display: block;
  margin: auto;
  max-width: calc(100% - 30px);
  overflow: hidden;
  padding: 0 0 100px;
  position: relative;
}
.swiper-between .swiper-horizontal > .swiper-pagination-bullets,
.swiper-between .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-between .swiper-pagination-custom,
.swiper-between .swiper-pagination-fraction {
  display: grid;
  gap: 35px;
  grid-auto-flow: column;
  justify-content: center;
}
.swiper-between .swiper-pagination-bullet {
  height: 30px;
  width: 30px;
}
.swiper-between .swiper-pagination-bullet-active {
  background-color: #07f9a2;
}
.swiper-between .swiper-slide:not(.swiper-slide-active) .present-container-item {
  filter: blur(3px);
  transform: scale(0.8);
}
.swiper-between .swiper-slide .present-container-item {
  background-color: #fff;
  border-radius: 10px;
  color: #13273f;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 550px;
  padding: 50px 25px;
}
.swiper-between .swiper-slide .present-container-item.present-container-item__gap {
  display: grid;
  gap: 15px;
  justify-items: center;
}
@media (max-width: 767px) {
  .swiper-between .swiper-slide .present-container-item {
    justify-content: center;
  }
}
.swiper-between .swiper-slide .present-container-item-name, .swiper-between .swiper-slide .present-container-item-sentence {
  font-size: 1rem;
}

html section.section-part {
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 75px;
  padding-top: 50px;
  width: 100%;
}
html body #header + .section-part {
  padding-top: 0;
}
html section.section-part,
html .headband:first-child {
  padding-top: 0;
}

.headband .container, .headband {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .headband .container, .headband {
    gap: 50px;
  }
}

.headband {
  background-color: #13273f;
  color: #fff;
}
.headband .container::before, .headband .container::after {
  display: none;
}
.headband .headband-text {
  text-align: justify;
}
.headband .headband-kpi {
  text-align: center;
}
@media (max-width: 1024px) {
  .headband .headband-kpi {
    margin: 0 auto;
  }
}

.headband-infinite::before, .headband-infinite::after {
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 50px;
  z-index: 5;
}

.headband-infinite {
  overflow: hidden;
  position: relative;
}
.headband-infinite::after {
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  right: 0;
}
.headband-infinite::before {
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  left: 0;
}
.headband-infinite .headband-infinite-content {
  display: grid;
  grid-auto-flow: column;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 3600px;
}
.headband-infinite .headband-infinite-content .headband-infinite-content-item {
  align-items: center;
  animation: slideinfinite 30s linear infinite;
  display: flex;
  flex: 1;
  justify-content: center;
}

@keyframes slideinfinite {
  100% {
    transform: translateX(-1500px);
  }
}
.present-container-item {
  text-align: center;
}
.present-container-item .present-container-item-picture {
  height: 230px;
  max-width: 230px;
  text-align: center;
}
.present-container-item .present-container-item-name {
  font-size: torem(25);
  font-weight: 600;
}
.present-container-item .present-container-item-sentence {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 767px) {
  .present-container-item .present-container-item-sentence {
    font-size: torem(20);
  }
}
.present-container-item .present-container-item-sentence,
.present-container-item .present-container-item-post {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .present-container-item .present-container-item-sentence,
  .present-container-item .present-container-item-post {
    font-size: torem(20);
    list-style: none;
  }
}

button {
  position: relative;
}

.swiper .present-container-item-post {
  font-size: 1rem;
}
.swiper .present-container-item-sentence {
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .swiper .present-container-item-sentence {
    line-height: inherit;
  }
}

.required-password {
  font-size: 0.7rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.operation-of-the-club .operation-of-the-club-leader .operation-of-the-club-leader-item, .operation-of-the-club .operation-of-the-club-startup .operation-of-the-club-startup-item, .operation-of-the-club .operation-of-the-club-acces .operation-of-the-club-acces-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
  padding: 25px;
}

.operation-of-the-club .operation-of-the-club-leader .operation-of-the-club-leader-item .operation-of-the-club-title, .operation-of-the-club .operation-of-the-club-startup .operation-of-the-club-startup-item .operation-of-the-club-title, .operation-of-the-club .operation-of-the-club-acces .operation-of-the-club-acces-item .operation-of-the-club-title {
  font-weight: 600;
}

.operation-of-the-club .operation-of-the-club-leader::before, .operation-of-the-club .operation-of-the-club-startup::before, .operation-of-the-club .operation-of-the-club-sideangels::before, .operation-of-the-club .operation-of-the-club-sideangels .operation-of-the-club-label::after, .operation-of-the-club .operation-of-the-club-acces::after, .operation-of-the-club .operation-of-the-club-label::after {
  background-color: #fff;
  content: "";
  inset: 0% 0 -15px;
  position: absolute;
  transform: scale(1.07);
  width: 100%;
}

.operation-of-the-club {
  display: grid;
  gap: 150px;
  grid-template-areas: "acces sideangels startup" ". leader transition";
  grid-template-columns: 6fr 6fr/3fr 6fr 3fr;
  max-width: 100%;
  place-items: center center;
  text-align: center;
}
.operation-of-the-club .operation-of-the-club-label {
  position: relative;
}
.operation-of-the-club .operation-of-the-club-acces {
  grid-area: acces;
  max-width: 218px;
  position: relative;
}
.operation-of-the-club .operation-of-the-club-acces::before {
  background-color: #13273f;
  content: "";
  height: 4px;
  left: 100%;
  position: absolute;
  top: 50%;
  transform: scaleX(0);
  transform-origin: left;
  width: 390px;
  z-index: -1;
}
.operation-of-the-club .operation-of-the-club-sideangels {
  background-color: #13273f;
  border-radius: 10px;
  grid-area: sideangels;
  padding: 30.8px 46.1px;
  position: relative;
}
.operation-of-the-club .operation-of-the-club-sideangels .operation-of-the-club-label {
  position: relative;
}
.operation-of-the-club .operation-of-the-club-sideangels::after {
  background-color: #13273f;
  content: "";
  height: 380px;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  width: 4px;
  z-index: -1;
}
.operation-of-the-club .operation-of-the-club-startup {
  grid-area: startup;
  max-width: 300px;
  position: relative;
}
.operation-of-the-club .operation-of-the-club-startup::after {
  background-color: #13273f;
  content: "";
  height: 4px;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: scaleX(0);
  transform-origin: right;
  width: 300px;
  z-index: -1;
}
.operation-of-the-club .operation-of-the-club-leader {
  grid-area: leader;
  max-width: 300px;
  position: relative;
}
.operation-of-the-club .operation-of-the-club-transition {
  grid-area: transition;
  position: relative;
}
.operation-of-the-club .operation-of-the-club-transition::before {
  border-top: 4px dashed #13273f;
  content: "";
  height: 4px;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 500px;
  z-index: -1;
}
.operation-of-the-club .operation-of-the-club-transition::after {
  border-left: 4px dashed #13273f;
  bottom: 0;
  content: "";
  height: 400px;
  position: absolute;
  right: 0;
  transform: scaleY(0);
  transform-origin: top;
  width: 4px;
  z-index: -1;
}
.operation-of-the-club .operation-of-the-club-item-content {
  height: 156px;
  overflow: hidden;
  position: relative;
  width: 236px;
}
.operation-of-the-club .operation-of-the-club-item-content > img {
  left: 50%;
  position: absolute;
  top: -50%;
  transform: translate3d(-50%, -50%, 0);
}

#leaders-item {
  margin-bottom: 1.875rem;
}

@keyframes sailToBottom {
  0% {
    opacity: 1;
    top: 0%;
  }
  99% {
    opacity: 1;
    top: 100%;
  }
  100% {
    opacity: 0;
    top: 100%;
  }
}
@keyframes grow-Y {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes grow-X {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.operation-of-the-club.active .operation-of-the-club-label::after {
  animation: 0.5s linear sailToBottom forwards;
}
.operation-of-the-club.active .operation-of-the-club-acces::after {
  animation: 0.5s linear sailToBottom forwards;
}
.operation-of-the-club.active .operation-of-the-club-acces::before {
  animation: 0.5s grow-X linear forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-sideangels .operation-of-the-club-label::after {
  animation: 0.5s linear sailToBottom forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-sideangels::before {
  animation: 0.5s linear sailToBottom forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-sideangels::after {
  animation: 0.5s linear grow-Y forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-startup .operation-of-the-club-label::after {
  animation-delay: 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-startup::before {
  animation: 0.5s linear sailToBottom forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-startup::after {
  animation: 0.5s grow-X linear forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-leader .operation-of-the-club-label::after {
  animation-delay: 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-leader::before {
  animation: 0.5s linear sailToBottom forwards 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-transition::before {
  animation: 0.5s linear forwards grow-X 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-transition::after {
  animation: 0.5s linear forwards grow-Y 0.5s;
}
.operation-of-the-club.active .operation-of-the-club-item-content {
  overflow: hidden;
}
.operation-of-the-club.active .operation-of-the-club-item-content__leader > img:nth-of-type(1) {
  animation: 2s linear 1s infinite absolute-center-Y, 4s linear 1s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__leader > img:nth-of-type(2) {
  animation: 2s linear 2s infinite absolute-center-Y, 4s linear 2s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__leader > img:nth-of-type(3) {
  animation: 2s linear 3s infinite absolute-center-Y, 4s linear 3s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__leader > img:nth-of-type(4) {
  animation: 2s linear 4s infinite absolute-center-Y, 4s linear 4s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__leader > img:nth-of-type(5) {
  animation: 2s linear 5s infinite absolute-center-Y, 4s linear 5s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__start-up > img:nth-of-type(1) {
  animation: 2s linear 1s infinite absolute-center-Y, 4s linear 1s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__start-up > img:nth-of-type(2) {
  animation: 2s linear 2s infinite absolute-center-Y, 4s linear 2s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__start-up > img:nth-of-type(3) {
  animation: 2s linear 3s infinite absolute-center-Y, 4s linear 3s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__start-up > img:nth-of-type(4) {
  animation: 2s linear 4s infinite absolute-center-Y, 4s linear 4s infinite handle-visibility;
}
.operation-of-the-club.active .operation-of-the-club-item-content__start-up > img:nth-of-type(5) {
  animation: 2s linear 5s infinite absolute-center-Y, 4s linear 5s infinite handle-visibility;
}
@keyframes handle-visibility {
  0%, 50% {
    visibility: visible;
  }
  51%, 100% {
    visibility: hidden;
  }
}
@keyframes absolute-center-Y {
  0%, 100% {
    left: 50%;
    top: -50%;
  }
  30%, 50% {
    left: 50%;
    top: 50%;
  }
  80%, 90% {
    left: 50%;
    top: 150%;
  }
  91%, 98% {
    left: -100%;
    top: 150%;
  }
  99% {
    left: -100%;
    top: -100%;
  }
}

.logo-light-mode .logo-light-mode-path {
  cursor: default;
  fill: #13273f;
}

.logo-dark-mode .logo-dark-mode-path {
  cursor: default;
  fill: #fff;
}

.header-home {
  background: url("/img/wallpaper.png") no-repeat bottom left;
  background-size: auto;
  height: 100%;
  opacity: 0.6;
  position: relative;
}

body h1 {
  font-weight: 800;
  line-height: 60px;
}
@media (max-width: 767px) {
  body h1 {
    line-height: 1.1;
  }
}

.header-home-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -100px auto auto;
  min-height: 100%;
  padding: 100px 0;
  row-gap: 40px;
  width: min(1620px, 100% - 30px);
}
@media (max-width: 767px) {
  .header-home-container {
    flex-direction: column-reverse;
    height: auto;
    justify-content: space-around;
    margin-top: -50px;
    min-height: initial;
    padding: 50px 0;
  }
}
.header-home-container-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 810px;
  width: 100%;
}
@media (max-width: 1400px) {
  .header-home-container-content {
    max-width: calc(100% - 30px);
  }
}
.header-home-container-content-title {
  font-weight: normal;
}
@media (max-width: 767px) {
  .header-home-container-content-title {
    line-height: 1.4;
  }
}
.header-home-container-content-button {
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .header-home-container-content-button {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .header-home-container-content p {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-home-container-content {
    justify-content: center;
  }
}
.header-home-container-illustration {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header-home-container-illustration > lottie-player {
    height: 325px !important;
    width: 325px !important;
  }
}

.custom-container {
  padding: 0 75px;
}

.deals-pending {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fill, minmax(488px, 1fr));
  justify-content: center;
  justify-items: center;
  list-style: none;
  margin: auto;
  padding: 0 0 50px;
}
.deals-pending .deals-pending-item {
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  height: 551px;
  max-width: 488px;
  position: relative;
  transform-style: preserve-3d;
  transition: 1s transform linear;
  width: 100%;
}
.deals-pending .deals-pending-item.active {
  transform: rotateY(180deg);
}
.deals-pending .deals-pending-item.active .deals-pending-item-front-buttons {
  visibility: hidden;
}
.deals-pending .deals-pending-item .deals-pending-item-front {
  grid-template-rows: 3fr 2fr 4fr 3fr;
  height: 100%;
  padding: 25px 30px 20px;
  place-items: center center;
}
.deals-pending .deals-pending-item .deals-pending-item-front .deals-pending-item-front-separate {
  width: 125px;
}
.deals-pending .deals-pending-item .deals-pending-item-front .deals-pending-item-front-description {
  align-self: baseline;
}
.deals-pending .deals-pending-item .deals-pending-item-front .deals-pending-item-front-buttons {
  display: grid;
  gap: 45px;
  grid-auto-flow: column;
  transition: 1s visibility linear;
}
.deals-pending .deals-pending-item .deals-pending-item-back {
  grid-template-rows: 3fr 1fr 5fr 3fr;
  height: 100%;
  padding: 20px 30px;
  place-items: center center;
  transform: rotateY(180deg);
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-separate {
  width: 125px;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information {
  display: grid;
  grid-template-columns: 6fr 6fr;
  row-gap: 15px;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information .deals-pending-item-back-business-info,
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information .deals-pending-item-back-sector-info {
  border-radius: 100px;
  justify-self: center;
  min-width: 94px;
  padding: 0 10px;
  text-align: center;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information .deals-pending-item-back-sector-info {
  background-color: #cef8f4;
  border: 1px solid #7fa4a1;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information .deals-pending-item-back-business-info {
  background-color: #d4e7ff;
  border: 1px solid #13273f;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-information .deals-pending-item-back-amount-info {
  font-weight: 600;
  justify-self: center;
}
.deals-pending .deals-pending-item .deals-pending-item-back .deals-pending-item-back-buttons {
  display: grid;
  gap: 45px;
  grid-auto-flow: column;
}
.deals-pending .deals-pending-item .deals-pending-item-front,
.deals-pending .deals-pending-item .deals-pending-item-back {
  backface-visibility: hidden;
  display: grid;
  position: absolute;
  width: 100%;
}
.deals-pending .deals-pending-item .deals-pending-item-front-picture,
.deals-pending .deals-pending-item .deals-pending-item-back-picture {
  border-radius: 10px;
}

.portfolio {
  display: grid;
  gap: 55px;
  grid-template-columns: repeat(auto-fill, minmax(488px, 1fr));
  list-style: none;
  padding: 0;
}
.portfolio .portfolio-item {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  height: 400px;
  max-width: 450px;
  position: relative;
  transform-style: preserve-3d;
  transition: 1s transform linear;
  width: 100%;
}
.portfolio .portfolio-item:hover {
  transform: rotateY(180deg);
}
.portfolio .portfolio-item:hover .portfolio-item-front-buttons {
  visibility: hidden;
}
.portfolio .portfolio-item .portfolio-item-front {
  height: 100%;
  padding: 50px;
  place-items: center center;
}
.portfolio .portfolio-item .portfolio-item-front .portfolio-item-front-separate {
  width: 125px;
}
.portfolio .portfolio-item .portfolio-item-front .portfolio-item-front-description {
  align-self: baseline;
}
.portfolio .portfolio-item .portfolio-item-front .portfolio-item-front-buttons {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
  transition: 1s visibility linear;
}
.portfolio .portfolio-item .portfolio-item-back {
  grid-template-rows: 3fr 1fr 5fr 3fr;
  height: 100%;
  padding: 20px 30px;
  place-items: center center;
  transform: rotateY(180deg);
}
.portfolio .portfolio-item .portfolio-item-back .portfolio-item-back-separate {
  width: 125px;
}
.portfolio .portfolio-item .portfolio-item-back .portfolio-item-back-buttons {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
}
.portfolio .portfolio-item .portfolio-item-front,
.portfolio .portfolio-item .portfolio-item-back {
  backface-visibility: hidden;
  display: grid;
  position: absolute;
}
.portfolio .portfolio-item .portfolio-item-front-picture,
.portfolio .portfolio-item .portfolio-item-back-picture {
  border-radius: 10px;
}

.button-primary-color .kyc-form-button-next,
.button-secondary-color,
.button-fill {
  background-color: #13273f;
  border-color: #13273f;
  color: #fff;
}
.button-primary-color .kyc-form-button-next:hover,
.button-secondary-color:hover,
.button-fill:hover {
  background-color: #fff;
  border: 2px solid #13273f;
  color: #13273f;
}

.button-primary-color,
.button-empty {
  background-color: #fff;
  border: 2px solid #13273f;
  color: #13273f;
}
.button-primary-color:hover,
.button-empty:hover {
  background-color: #13273f;
  border-color: #13273f;
  color: #fff;
}
.button-primary-color:hover.invest,
.button-empty:hover.invest {
  border-color: #fff;
}

.button-secondary-color,
.button-primary-color,
.button-fill,
.button-empty {
  border-radius: 81px;
  padding: 10px 30px;
  position: relative;
  transition: background-color 0.5s;
}
@media (max-width: 1024px) {
  .button-secondary-color,
  .button-primary-color,
  .button-fill,
  .button-empty {
    min-width: 200px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .button-secondary-color,
  .button-primary-color,
  .button-fill,
  .button-empty {
    min-width: 120px;
  }
}
.button-secondary-color.disabled, .button-secondary-color:hover.disabled,
.button-primary-color.disabled,
.button-primary-color:hover.disabled,
.button-fill.disabled,
.button-fill:hover.disabled,
.button-empty.disabled,
.button-empty:hover.disabled {
  background-color: rgb(247, 247, 247);
  color: #13273f;
}

html img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

body a:focus, body a:hover {
  color: #13273f;
  text-decoration: none;
}

#kyc-header {
  background-color: #13273f;
  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 .bar {
  border-radius: 100px;
  height: 5px;
  margin-left: 10px;
  position: relative;
  width: 100px;
}

#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-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 {
  background-color: #13273f;
  color: #fff;
  margin-top: 25px;
  width: 200px;
}

.kyc-body .button-checkbox button {
  border-width: 0;
  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: #13273f;
}

.kyc-body .button-checkbox button.active * {
  color: #fff;
}

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

.hvisble {
  visibility: hidden;
}

#navigateInfo {
  margin-top: 85px;
}

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

.kyc-body input {
  border: none;
  border: 2px solid #13273f;
  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;
}

html {
  margin-top: 110px;
}
@media (max-width: 767px) {
  html {
    margin-top: 75px;
  }
}

html,
body {
  height: 100%;
}

.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;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.limit_word {
  margin: auto;
  max-width: calc(100% - 30px);
  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;
}

.flex {
  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;
}

html body :focus {
  outline: none;
}

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

input[type=radio] + label p {
  display: table;
}

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 {
  content: url("../img/main/bullet.svg");
  left: 10px;
  position: absolute;
}

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 {
  display: grid;
  gap: 15px;
  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: 600;
}

.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 {
  margin: 0 15px;
  position: relative;
  top: 5px;
}

.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 {
  background-color: #13273f;
}
.header-levee > *, .header-levee-container {
  height: 100%;
}
.header-levee-container {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  padding: 50px 0;
  place-items: center center;
  row-gap: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .header-levee-container {
    font-size: torem(15);
    padding: 50px 0;
  }
}
.header-levee-container__invest {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.header-levee .text {
  display: none;
}

.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-weight: 100;
  padding: 7px;
  position: absolute;
  right: 130px;
  text-shadow: 0 0 4px rgb(57, 57, 57);
}

#header_img #transitiontoevent p {
  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;
  position: absolute;
}

@keyframes arrow {
  0% {
    top: 0;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes arrow {
  0% {
    top: 0;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
.section.section-part:last-child {
  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);
}

.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-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  color: #13273f;
  margin: 45px 10px;
  margin-bottom: 50px;
  min-height: 450px;
  position: relative;
}

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

.levee-container .levee-top {
  background-repeat: no-repeat;
  background-size: 100% 100% !important;
  border-radius: 10px 10px 0 0;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.levee-container .domaine {
  background-color: rgba(51, 51, 51, 0.8);
  bottom: 0;
  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 .levee-bottom-name {
  background-color: rgb(255, 255, 255);
  bottom: -35px;
  box-shadow: 1px 0 1px 0 rgba(0, 0, 0, 0.12);
  font-weight: bold;
  left: 0;
  padding: 5px;
  position: absolute;
  text-transform: uppercase;
}

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

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

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

.levee-container .pourcentage {
  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 .levee-fiscalite {
  background-color: #13273f;
  border-radius: 0 15px 15px 0;
  font-weight: bold;
  left: 0;
  padding: 12px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 35px;
}

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

.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;
}

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

.carousel-indicators li {
  background: #cecece;
}

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

body .carousel-indicators {
  bottom: 0;
}

.thumbnail {
  max-height: 435px;
}

.thumbnail p {
  padding: 5px;
}

.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;
}

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

.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-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;
}

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

#presse .press_content .base .text_content {
  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-weight: bold;
  position: absolute;
}

#financement {
  position: relative;
}

#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;
}

.bg-light,
#levee-closed {
  background-color: #ebf4ff;
}

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

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

@media (min-width: 768px) {
  .project-embed {
    margin-top: -20px;
  }
  .project-logo {
    margin-bottom: 100px;
  }
  .padding-center {
    padding: 0 85px;
  }
}
.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 #ccc;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-top: none;
  color: #13273f;
  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 td {
  padding: 10px 0;
}

.project-table i {
  color: #13273f;
}

.project-document {
  padding: 10px;
}

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

.project-document ul li h4::before {
  color: #13273f;
  content: "\f15c";
  font-family: FontAwesome;
  position: relative;
  right: 10px;
}

footer input,
footer button {
  height: 30px;
}

footer input[type=text] {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  display: block;
  outline: none;
  padding-left: 11px;
  width: 100%;
}

footer ul li {
  list-style: none;
  margin: 5px 0;
}

@media (min-width: 1300px) {
  body .min-container {
    width: 650px;
  }
}
@media (max-width: 1300px) {
  html body .flexInvest {
    display: flex;
    flex-flow: column nowrap;
  }
  .header {
    background-size: auto !important;
  }
  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;
  }
  .header_bottom {
    height: auto;
  }
  body .navbar-container.fixed-theme {
    max-height: 75px;
    padding: 15px;
    position: relative;
    width: 100%;
  }
  body .navbar > .container .navbar-brand,
  body .navbar > .container-fluid .navbar-brand {
    margin-left: 0;
  }
  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;
  }
  .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 {
    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 {
    border: 1px solid rgba(0, 0, 0, 0.3);
    bottom: 0;
    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;
  }
  html body div.sticky.box {
    position: relative;
    top: 0;
  }
}
@media (max-width: 767px) {
  .header {
    background-size: auto 100% !important;
  }
  body .small-container.container {
    padding: 5rem 2rem;
  }
  body footer {
    background-color: #fff;
    color: #13273f;
    padding-top: 4.375rem;
    position: relative;
  }
  body .header-home-content-logo {
    width: 175px;
  }
  .vertical-map-container {
    display: inline-block;
    height: 162px;
    padding: 0 10px;
    width: 100%;
  }
  .case-follow::before {
    display: none;
  }
  body .slick-next {
    right: -15px;
  }
  body .center-bg {
    margin: 0 15px;
    padding: 30px 25px;
  }
  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;
    top: 25px;
  }
  body .nav > li.topbar-connexion a,
  body .nav > li.topbar-inscription a {
    min-width: 105px;
    padding: 5px;
    text-align: center;
  }
  body .tiny-content {
    padding: 30px 1.375rem;
    width: 100%;
  }
  .dropdown-content span::after {
    background-color: #13273f;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
  }
  body .dropdown-content span {
    border: none;
    padding: 0 5px;
    text-align: left;
    text-transform: none;
  }
  body .dropdown:hover .dropdown-content {
    display: none;
  }
  #kyc-header {
    padding: 25px 10px;
  }
  #kyc-header-info,
  #kyc-header h2,
  #number,
  #kyc-slide-number {
    text-transform: uppercase;
  }
  #kyc-header .bar {
    width: 40px;
  }
  body footer .slogan {
    left: 0;
    letter-spacing: 0;
  }
  body .navbar-nav > li {
    float: none;
  }
  .header-home-content {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    top: 25px;
    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;
    display: none;
    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;
  }
  html body .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }
  .levee-container {
    border: 1px solid rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 415px;
    margin: 0 0 50px;
    position: relative;
    transition: none;
  }
  .levee-container:hover {
    bottom: 0;
  }
  #header_img {
    height: 100%;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
  .header_bottom {
    height: auto;
  }
  .center_col {
    border-left: none;
    border-right: none;
    margin: 40px 0;
  }
  .levee-bottom {
    padding: 0 10px;
    position: relative;
  }
  .levee-container .text {
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    top: 46px;
    width: 100%;
  }
  .levee-container .pourcentage {
    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;
  }
  body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body #exTab1 .panel-group .panel.panel-default .levee-details {
    display: none;
  }
  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;
  }
  #financement {
    display: inline-block;
    padding-left: 0;
    position: relative;
    width: 100%;
  }
  .header-levee.header .levee-fiscalite {
    position: absolute;
    right: 13px;
  }
  html body div.container div.division:last-child {
    border-bottom: none;
  }
  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-collapse {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .center_mobile {
    text-align: center;
  }
  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;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .header {
    background-size: auto !important;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
}
body .modal-content {
  font-weight: bold;
  padding: 20px;
  position: relative;
  width: 100%;
}

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

#alert {
  display: none;
}

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;
}

.typed-cursor {
  animation: blink 0.7s infinite;
  font-weight: 100;
  opacity: 1;
}

@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;
  position: relative;
}

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

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;
}

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;
  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;
}

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;
}

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;
}

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;
}

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;
}

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;
}

html ::-moz-selection {
  background-color: #000;
  color: #fff;
}

html ::selection {
  background-color: #000;
  color: #fff;
}

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 {
  font-weight: normal;
  height: auto;
  margin: 15px 0 0;
}

div.modal-body button.colorprimButton {
  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;
}

.nav-bar ul.ascenseur {
  display: flex;
  list-style: none;
  margin-left: 0;
  padding: 0;
}

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

body .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");
}

.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 {
  padding-bottom: 25px;
  padding-top: 25px;
}

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

body #accordion .panel-title {
  color: #13273f;
  font-weight: bold;
  text-transform: uppercase;
}

p#password_equals {
  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;
}

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 .mdl-textfield__label {
  color: #13273f;
}

.star-alert {
  color: #f00;
  font-size: torem(12);
  margin-left: 5px;
}
@media (max-width: 767px) {
  .star-alert {
    font-size: torem(14);
  }
}

.red,
p#password_equals,
.kyc-focus .red {
  color: #f00;
}

.header_bottom #PME {
  max-width: calc(100% - 30px);
  padding: 0;
  position: relative;
  top: 30%;
}

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;
  -webkit-text-fill-color: #13273f;
}

#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-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 {
  text-align: left;
}

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-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}

.kyc-body select.ui.dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #13273f;
  box-shadow: none;
  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: flex;
  flex-wrap: wrap;
}

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

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

.montantAction span {
  font-weight: 500;
}

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

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

body .mdl-checkbox {
  cursor: pointer;
  height: auto;
}

body .mdl-checkbox input + span {
  color: #13273f;
  margin-left: 15px;
}

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

#lazy-loader {
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 9999;
}
#lazy-loader .lazy-loader__inner {
  display: flex;
}
#lazy-loader .lazy-loader__inner__ball {
  animation: loader 1s infinite;
  background-color: #13273f;
  border-radius: 50%;
  display: inline-block;
  height: 50px;
  width: 50px;
}
#lazy-loader .lazy-loader__inner__ball:nth-of-type(1) {
  animation-delay: 0.25s;
}
#lazy-loader .lazy-loader__inner__ball:nth-of-type(2) {
  animation-delay: 0.5s;
}
#lazy-loader .lazy-loader__inner__ball:nth-of-type(3) {
  animation-delay: 0.75s;
}

@keyframes loader {
  0%, 100% {
    position: relative;
    top: 0;
  }
  75% {
    position: relative;
    top: -50px;
  }
}
.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;
}

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

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

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 {
  display: inline-block;
  position: relative;
}

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

.dropdown-content a {
  cursor: pointer;
  display: block;
  padding: 5px 15px;
  position: relative;
}

.dropdown-content span {
  color: #13273f;
  display: block;
  padding: 5px;
  text-align: center;
}

.dropdown-content span::after {
  background-color: #13273f;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}

.dropdown-content a:last-child span::after {
  height: 0;
}

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

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

.dropdown:hover .dropdown-content {
  display: block;
}

html body button.button {
  border: 3px solid #333;
}

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

.chevron i {
  position: relative;
  right: -10px;
  top: 50%;
  transform: translateY(-30%);
}

.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;
  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-weight: bold;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: left;
  text-transform: inherit;
}

.derriere span {
  font-weight: bold;
}

.contenu {
  height: 320px;
  width: 200px;
}

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

.contenu1 {
  height: 360px;
  width: 240px;
}

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

.contenu2 {
  height: 320px;
  width: 200px;
}

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

.containerFollow {
  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;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  cursor: pointer;
}

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-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-weight: bold;
}

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

.accordion-toggle {
  cursor: pointer;
}

#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 {
  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: 25px;
  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;
}

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

.levee-tag-container {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
}

.levee-tag {
  border: 2px solid #13273f;
  border-radius: 10px;
  margin: 5px 5px 15px 0;
  padding: 1px 7px;
  text-align: center;
}

form textarea {
  resize: none;
}

.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::input-placeholder,
textarea::input-placeholder {
  color: #b8b8b8;
}

input:input-placeholder,
textarea:input-placeholder {
  color: #b8b8b8;
}

input::input-placeholder,
textarea::input-placeholder {
  color: #b8b8b8;
}

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

input::placeholder,
textarea::placeholder {
  color: #b8b8b8;
}

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

footer .slogan {
  left: 15px;
}

.button-blue {
  background-color: #13273f;
  border: none;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

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

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

.question-customer {
  background-color: #13273f;
  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: #f8bdab;
  border: none;
  color: #fff;
  display: block;
  font-weight: inherit;
  margin: 15px auto;
  padding: 10px 35px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

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

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

.client-tab-container .client-tab {
  background-color: #fff;
  border: 1px solid #13273f;
  color: #13273f;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 35px;
  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: #eeeef3;
  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: #13273f;
}

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

.client-table th,
.invest-table th {
  font-weight: normal;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.client-table td,
.invest-table td {
  max-width: 500px;
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  text-overflow: ellipsis;
}

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

.client-table td label {
  left: 43%;
}

.client-tab-container .client-tab:first-child {
  border-right: none;
}

.client-tab-container .client-tab:last-child {
  border-left: none;
}

.select-mcapital {
  border-radius: 0;
  box-shadow: none;
  color: #13273f;
  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;
  }
}
@-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: #13273f;
  border-width: 0 6.5px 8px;
  bottom: 55%;
}

.select-mcapital::after {
  border-top-color: #13273f;
  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 #13273f;
  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: rgb(247, 247, 247);
  border: none;
  border-color: rgb(247, 247, 247);
  color: #13273f;
  cursor: not-allowed;
  pointer-events: none;
}

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

textarea.pure {
  padding: 15px;
  resize: none;
  width: 100%;
}

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

body .icon-blue {
  color: #13273f;
  margin: 0 10px;
}

nav .page-active,
.dropdown-content span.page-active,
.dropdown-content span:hover {
  color: #13273f;
}

.button-blue.active {
  border-color: currentcolor;
  color: #13273f;
}

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

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

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

.step-part-bubble {
  background-color: #fff;
  border: 1px solid #13273f;
  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: #13273f;
  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: #13273f;
}

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

.kyc-button {
  -webkit-box-pack: center;
  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: 25px;
  display: inline-block;
  left: 155px;
  letter-spacing: 3px;
  padding-left: 25px;
  position: relative;
}

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

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

.inscription-button {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  color: #13273f;
  display: grid;
  font-weight: 300;
  justify-content: center;
  margin: 0 0 35px;
  padding: 10px 0;
  place-items: center center;
  text-align: center;
  transition: background-color 0.5s;
  width: 250px;
}

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

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

.inscription-form {
  margin: auto;
  width: min(1460px, 100% - 30px);
}

.inscription-button-container__item {
  display: grid;
  gap: 80px;
  grid-template-columns: 6fr 6fr;
  justify-content: center;
  justify-items: center;
  margin: auto;
  max-width: 920px;
}
.inscription-button-container__item .inscription-button {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  height: 152px;
  width: 100% !important;
}

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

.inscription-button.active {
  background-color: #d8ffed;
  position: relative;
}
.inscription-button.active::before {
  bottom: -40px;
  content: url("/img/chevron.svg");
  position: absolute;
}

.download-button {
  background-color: #13273f;
  border: none;
  border-radius: 10px;
  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: #d8ffed;
  transition: background-color 0.5s;
}

.inscription-form {
  display: none;
}

.inscription-form.active {
  display: grid;
  gap: 50px;
}

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

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

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

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

body .google-map {
  height: 50vh;
  left: 0;
  position: relative;
  width: 100%;
}

.google-map {
  height: 600px;
  left: 0;
  width: 100%;
}

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

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

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

body .ui-datepicker .ui-datepicker-header * {
  color: #fff;
}

.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 #13273f;
}

.relative {
  position: relative;
}

#mdp_oublie {
  cursor: pointer;
  margin-top: 25px;
}

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;
}

ul.check li::before {
  content: "✓";
}

.flexInvest {
  display: flex;
  flex-flow: row nowrap;
}

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

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

.flexInvest-content h4 {
  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);
  left: -5px;
  position: absolute;
  top: 40px;
  z-index: -1;
}

footer hr {
  border-color: #4a4a4a;
  margin: 2em auto 3em;
  width: 50%;
}

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

div.doc-padlock {
  color: #13273f;
  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-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: #13273f;
  display: inline-block;
  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: #13273f;
  font-weight: 300;
  line-height: 30px;
  position: relative;
  text-align: center;
}

div.project-embed .tab-content h3 {
  color: #13273f;
  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/main/bullet.svg");
  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;
  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: #13273f;
  text-transform: uppercase;
}

#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: 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-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

div.project-embed p.text-block {
  color: #97becb;
  text-align: center;
  text-transform: uppercase;
}

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

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

div.label div.bloc {
  color: #13273f;
  line-height: 50px;
  margin: 20px;
}

div.label div.bloc span {
  display: block;
  font-family: robotolight, sans-serif;
}

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

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

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

div.caracteristiques div {
  width: 48%;
}

.clear {
  clear: both;
}

div.project-embed p.left_padding {
  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;
}

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: -2px;
  padding: 15px 0;
  text-align: center;
}

.view-client-instruction {
  background-color: #13273f;
  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;
}

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

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

.client-table .sort {
  cursor: pointer;
  position: relative;
}

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

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

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

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

.client-table tbody tr:hover {
  background-color: #13273f;
  color: #fff;
}
.client-table tbody tr:hover .input-in-array {
  border: 1px dotted #fff;
  color: #fff;
}

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

.title-underline {
  margin-bottom: 50px;
  text-align: center;
}

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

.input-file[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: 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-weight: bold;
  margin: auto;
  text-transform: uppercase;
}

.levee-top-open {
  background-color: #2d3447;
  height: 30px;
  left: -30px;
  position: absolute;
  text-align: center;
  top: 20px;
  transform: rotate(-40deg);
  width: 150px;
}

.levee-top-open-text {
  color: #fff;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  top: 4px;
}

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

@media (max-width: 1600px) {
  html .deals-pending {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}
@media (max-width: 991px) {
  html div.project-embed .nav-tabs > li {
    align-self: stretch;
    -ms-flex-item-align: stretch;
  }
}
@media (max-width: 767px) {
  body .header.center * {
    line-height: 0.9;
  }
  html div.project-embed .nav-tabs > li:first-child {
    margin-top: 0;
  }
  .vertical-map-container-image {
    display: none;
  }
  html .inscription-button {
    width: 100%;
  }
  .dropdown-content span::after {
    background-color: #13273f;
    bottom: 0;
    content: "";
    height: 2px;
    left: 46px;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
  }
}
@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: #13273f;
  border: none;
  padding: 2px 5px;
}

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

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

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

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

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

.inscription-alert {
  display: none;
}

.navbar-brand > img {
  height: 36px;
}
@media (max-width: 1199px) {
  .navbar-brand > img {
    height: 22px;
  }
}

.levee-top-banner {
  background-color: rgba(19, 75, 142, 0.7);
  bottom: 0;
  color: #fff;
  padding: 7px 25px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.levee-bottom-info {
  color: #13273f;
  margin: 25px 0;
}

.levee-bottom-info-montant {
  float: right;
}

.levee-bottom-time {
  bottom: 25px;
  position: absolute;
  right: 25px;
}

.levee-bottom-time::before {
  background-image: url("/img/clock.png");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  content: "";
  display: inline-block;
  height: 10px;
  left: -10px;
  position: relative;
  width: 10px;
}

.first-button-invest {
  display: none;
}

.levee-details {
  display: none;
}

.logo-container {
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 330px;
  justify-content: center;
  margin: auto;
  padding: 15px;
  width: 330px;
}

.banner-information {
  background: linear-gradient(to right, #4ca9c2, #2b598d);
}

.banner-work {
  background-color: #51c9a3;
}

.banner-become-member {
  background-image: url("/img/computer.png");
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 725px;
  justify-content: center;
}

.banner-work,
.banner-become-member,
.banner-information {
  color: #fff;
}

.levee-closed .slick-next::before,
.levee-closed .slick-prev::before {
  line-height: 1;
  opacity: 0.75;
}

.levee-closed .slick-slide .levee-container {
  background-color: #fff;
}

.levee-closed .slick-next::before,
.levee-closed .slick-prev::before {
  line-height: 1;
  opacity: 0.75;
}

.image-shadow {
  margin-bottom: 50px;
}

.image-shadow::after {
  background-color: rgba(235, 244, 255, 0.5);
  border-radius: 150px;
  content: "";
  height: 125px;
  left: 160px;
  position: absolute;
  top: 15px;
  width: 125px;
}

.banner-work .image-shadow::after {
  background-color: rgba(235, 244, 255, 0.2);
  height: 75px;
  left: 170px;
  top: 5px;
  width: 75px;
}

.footer-signature img {
  display: inline-block;
  width: 120px;
}

html .mdl-checkbox__box-outline,
html .mdl-checkbox__focus-helper {
  box-sizing: border-box;
  display: inline-block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

html .mdl-checkbox__ripple-container {
  cursor: pointer;
  height: 40px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 40px;
}

html .mdl-checkbox__ripple-container,
html .mdl-icon-toggle__ripple-container {
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-mask-image: radial-gradient(circle, #fff, #13273f);
          mask-image: radial-gradient(circle, #fff, #13273f);
  overflow: hidden;
  z-index: 2;
}

html .mdl-checkbox.is-checked .mdl-checkbox__box-outline {
  border: 2px solid #13273f;
}

html .mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiI…lsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K") #13273f;
}

html .mdl-checkbox__box-outline {
  border: 2px solid #13273f;
  border-radius: 2px;
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  z-index: 2;
}

html tr:hover .mdl-checkbox__box-outline {
  border: 2px solid #fff;
}

html .mdl-textfield--floating-label.is-invalid .mdl-textfield__label,
.mdl-textfield__error {
  color: #13273f;
}

html .mdl-textfield.is-invalid .mdl-textfield__label::after {
  background-color: #13273f;
}

body .kyc-form-body .mdl-textfield__input.is-invalid {
  border-color: #e92b2b;
}

html .mdl-textfield__label::after {
  background-color: #13273f;
}

html .mdl-textfield__input {
  border-bottom: 1px solid #13273f;
}

.mdl-textfield.is-disabled .mdl-textfield__input {
  border-bottom: 1px solid #13273f;
}

.is-disabled .mdl-textfield__label {
  cursor: not-allowed;
}

.container-background {
  padding: 100px 0;
}

.container-background.image1 {
  background-image: url("/img/computer.png");
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.small-container.container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  padding: 4.375rem 2.3rem;
}

.case-follow::before {
  background-image: url("/img/arrow.png");
  background-repeat: no-repeat;
  bottom: 95px;
  content: " ";
  height: 50px;
  position: absolute;
  right: -25px;
  width: 50px;
}

.levee-fiscalite {
  background-color: #13273f;
  border-radius: 0 15px 15px 0;
  font-weight: bold;
  left: 0;
  padding: 12px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 35px;
}

.projectEmbed {
  position: relative;
}

.projectEmbed .levee-card.box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  padding: 20px 35px;
  position: relative;
  top: -278px;
}

i {
  color: currentcolor;
}

html .slick-prev::before {
  background-image: url("/img/slide-left.png");
  background-repeat: no-repeat;
  content: " ";
  height: 38px;
  left: -2px;
  position: absolute;
  top: 0;
  width: 20px;
}

html .slick-next::before,
[dir=rtl] html .slick-prev::before {
  background-image: url("/img/slide-right.png");
  background-repeat: no-repeat;
  content: " ";
  height: 38px;
  position: absolute;
  top: 0;
  width: 20px;
}

html body b {
  font-weight: bold;
}

.banner-become-member button {
  margin-top: 65px;
}

.banner-become-member button img {
  margin-left: 15px;
}

html .slick-dots li button::before {
  border: #13273f;
  content: "•";
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5 {
  color: #fff;
}

html .slick-dots li button:hover::before {
  color: #13273f;
  opacity: 1;
}

html .slick-dots li.slick-active button::before {
  color: #13273f;
  opacity: 1;
}

html .mdl-textfield.is-disabled .mdl-textfield__input,
html fieldset[disabled] .mdl-textfield .mdl-textfield__input {
  border-bottom: 1px solid #13273f;
}

.levee-table-title {
  font-weight: bold;
  line-height: 1.9;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.levee-table-info {
  margin-bottom: 35px;
  padding-left: 30px;
  position: relative;
}

.levee-table-info-title {
  color: #13273f;
}

.levee-table-info-result {
  color: #13273f;
  display: block;
  font-weight: bold;
  text-align: left;
}

.levee-table-info-result b {
  font-weight: bold;
}

.header-levee .levee-fiscalite {
  color: #fff;
  top: 175px;
}

.tiny-content {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 0 auto;
  padding: 30px 4.375rem;
  width: 475px;
}

#page_connexion h2 {
  color: #13273f;
  font-family: Poppins, sans-serif;
  margin-bottom: 0;
}

.header-home-content-logo {
  width: 350px;
}

.header_random:empty {
  display: none;
}

#inscription_img,
#inscription_img + div,
#contact_img + div {
  display: none;
}

.footer-social {
  display: block;
  margin-bottom: 25px;
}

#selectprojet_img {
  margin: 0;
}

.blue-deep-bg {
  background-color: #13273f;
  color: #fff;
}

.blue-deep-bg h1,
.blue-deep-bg h2,
.blue-deep-bg h3 {
  color: #fff;
}

.blue-light-bg {
  background-color: #13273f;
  color: #fff;
}

.blue-light-bg h1,
.blue-light-bg h2,
.blue-light-bgh3 {
  color: #fff;
}

.blue-deep {
  color: #13273f;
}

.blue-light {
  color: #13273f;
}

#compte_img + div.text {
  display: none;
}

html .btn-default.active.focus,
html .btn-default.active:focus,
html .btn-default.active:hover,
html .btn-default:active.focus,
html .btn-default:active:focus,
html .btn-default:active:hover,
html .open > .dropdown-toggle.btn-default.focus,
html .open > .dropdown-toggle.btn-default:focus,
html .open > .dropdown-toggle.btn-default:hover {
  background-color: #13273f;
  border-color: none;
}

.levee-table-info::before {
  background-repeat: no-repeat;
  background-size: 20px;
  content: " ";
  height: 25px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 25px;
}

.levee-table-info-check::before {
  background-image: url("/img/check.png");
}

.levee-table-info-dureeInvest::before {
  background-image: url("/img/clock.png");
}

.levee-table-info-ticketMin::before {
  background-image: url("/img/round.png");
}

.levee-table-info-dateCloture::before {
  background-image: url("/img/calendar.png");
}

.levee-table-info-niveauRisque::before {
  background-image: url("/img/warning.svg");
}

.banner p {
  color: #fff;
}

.banner-information p {
  margin-top: 85px;
}

.blue-deep-bg + .blue-light-bg,
.blue-light-bg + .blue-deep-bg {
  border-radius: 10px;
  position: relative;
  top: -15px;
  z-index: -2;
}

.center-bg {
  border-radius: 10px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
  padding: 50px 120px;
  position: relative;
  top: 0;
  z-index: 0;
}

.center-bg * {
  line-height: 2.4;
}

body button.prev.bsModalButton {
  margin-bottom: 25px;
  margin-top: 50px;
}

.start-citation {
  padding-top: 4.375rem;
}

.padding-banner {
  margin-bottom: 50px;
  padding: 10px 0 15px;
}

.big-padding-banner {
  margin-top: 40px;
  padding: 100px 0 0;
}

.vertical-map {
  display: inline-block;
  padding-top: 4.375rem;
}

.vertical-map-container {
  display: inline-block;
  height: 250px;
  padding: 50px;
  width: 100%;
}

.vertical-map-container-text {
  text-align: left;
}

.vertical-map-container-image::after {
  background-color: #13273f;
  bottom: -153px;
  content: "";
  height: 155px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2px;
  z-index: 0;
}

.vertical-map-container:last-child .vertical-map-container-image::after {
  display: none;
}

.vertical-map-container-image img {
  border: 2px solid #13273f;
  border-radius: 100px;
  padding: 15px;
  position: relative;
  z-index: 1;
}

.space-top-bottom {
  margin-top: 100px;
  padding: 70px 0;
}

.space-top-bottom-pad {
  padding: 70px 0;
}

.business-angels-leaders-image::after {
  background-color: #ebf4ff;
  border-radius: 100px;
  content: "";
  height: 100px;
  left: 50%;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
  width: 100px;
  z-index: -1;
}

.business-angels-leaders-title {
  margin: 50px 0 35px;
}

.code-cgp {
  color: #4a4a4a;
  display: block;
  padding-bottom: 15px;
  padding-top: 15px;
}

.white-color {
  color: #fff;
}

#kyc-cgp .pb-30 {
  display: inline-block;
}

.kyc-body .btn-default {
  border: 2px solid #13273f;
}

.kyc-body .btn-default.active {
  border: 2px solid #13273f;
}

.kyc-body .btn-default.active:hover {
  border-color: #13273f;
  transition: 0.5s;
}

.kyc-body .button-checkbox button {
  border: 2px solid #13273f;
}

.kyc-body .button-checkbox button.active:hover {
  background-color: #13273f;
  border-color: #13273f;
  transition: 0.5s;
}

.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;
}

.levee-container-code {
  font-weight: bold;
  left: 5px;
  padding: 5px;
  position: absolute;
  text-transform: uppercase;
  top: 175px;
  z-index: 9;
}

.m-center {
  margin: auto;
}

.confirm-statement {
  background-color: #13273f;
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  width: auto;
}

.cni-kyc-form {
  margin-left: auto;
  margin-right: auto;
}

.no-padding {
  padding: 0;
}

.project-document-list-warning {
  margin-right: 17px;
  width: 18px;
}

.fiscalsKyc,
.fiscalsKyc .inline {
  width: 100%;
}

.fiscalsKyc .inline[style*="display: block"] {
  display: inline-block !important;
}

.modal.cookie-accept-modal {
  color: #13273f;
  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: #13273f;
  color: #fff;
}

.cookie-accept-modal .cookie-accept-modal-note {
  display: block;
  text-align: center;
}

.cookie-accept-modal .container {
  max-width: calc(100% - 30px);
  width: 1000px;
}

.cookie-accept-modal-button-container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cookie-accept-modal-button-container {
    flex-direction: column;
  }
}

.cookie-accept-modal-button-container button {
  border: none;
  border-radius: 81px;
  font-weight: normal;
  margin: 0;
  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: 767px) {
  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;
  }
}
.dof-statement label {
  display: inline;
}

.kyc-form-container {
  position: relative;
}

.kyc-form-container .kyc-form-button-next,
.kyc-form-container .kyc-form-button-previous {
  bottom: 25px;
  position: absolute;
}

.kyc-form-container .kyc-form-button-next {
  right: 150px;
}

.kyc-form-container .kyc-form-button-previous {
  left: 150px;
}

.button-secondary-color.kyc-form-button-previous {
  background-color: #fff;
  border: 1px solid #133763;
  color: #133763;
}

.kyc-form-button-previous,
.kyc-form-button-next,
.kyc-form-button-files,
.kyc-form-button-sign {
  cursor: pointer;
}

.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%;
}

html body .kyc-form-container .kyc-form-button-previous-last {
  background-color: #fff;
  border: 1px solid #133763;
  bottom: inherit;
  color: #133763;
  float: left;
  left: inherit;
  position: relative;
}

.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: #676d71;
}

.cni-info-pm {
  border-color: #133763;
}

.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 button {
  font-weight: 400;
  height: 55px;
  min-width: auto;
  padding: 0;
  width: 100%;
}

.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: 95px;
}

.cgp-form-information,
.cgp-form-sign,
.cgp-form-files,
.kyc-form,
.kyc-form-files,
.kyc-form-siren {
  display: none;
}

.header.kyc-header .text {
  display: none;
  position: relative;
  top: 55%;
}

#header + .header.kyc-header {
  background-color: #f1f1f1;
  height: 35px;
  margin-bottom: 10px;
  padding: 0;
  position: relative;
  width: 100%;
}

.header.kyc-header .text h1,
.header.kyc-header .text h2 {
  font-weight: 600;
  text-transform: uppercase;
}

.kyc-form-container .head-title {
  margin: 35px 0;
  position: relative;
  text-align: center;
}

.kyc-form-container .head-title h1 {
  font-weight: 600;
}

.kyc-form-container .cgp-form {
  display: block;
  margin: 0 auto 240px;
  position: relative;
  top: 150px;
  width: 296px;
}

.kyc-focus .sail-gray.active {
  background-color: #f1f1f1;
  inset: -35px 0 0;
  position: absolute;
  z-index: 0;
}

.kyc-form .sail-white {
  background-color: #fff;
  inset: -35px 0 0;
  position: absolute;
  z-index: 0;
}

@media (min-width: 1024px) {
  .container.small-container:not(.kyc-form-container) {
    width: 910px;
  }
}
.kyc-form-body select.ui.dropdown {
  border: 1px solid #13273f;
  box-shadow: none;
  display: block;
  height: 28px;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.grey {
  color: #6b6b6b;
}

.kyc-form-body-title {
  display: inline-block;
  margin-bottom: 35px;
  position: relative;
  width: 100%;
}

.kyc-form-body .radio-line-container {
  margin: 35px 0 100px;
}

.kyc-form-body .radio-line-container {
  display: flex;
  justify-content: space-around;
}

.radio-line-container .radio-line-container-element:last-of-type::after {
  display: none;
}

.is-invalid .radio-line-container-element::after {
  background-color: #e92b2b;
}

.kyc-form-body .mdl-checkbox__label {
  color: #13273f;
  font-weight: initial;
}

.kyc-form-body .mdl-radio__inner-circle {
  background-color: #13273f;
  z-index: 2;
}

.kyc-form-body .mdl-radio__outer-circle {
  background-color: #fff;
  z-index: 2;
}

.kyc-heade.header {
  position: relative;
}

.kyc-form-button-next-launcher {
  bottom: inherit;
  display: inline-block;
  padding: 10px 35px;
  position: relative;
  right: inherit;
  width: auto;
}

.kyc-form-container .kyc-form-button-next,
.kyc-form-container .kyc-form-button-previous {
  bottom: 25px;
  position: absolute;
}

.kyc-form-container .kyc-form-button-next {
  right: 150px;
}

.button-secondary-color.kyc-form-button-previous {
  background-color: #fff;
  border: 1px solid #133763;
  color: #13273f;
}

.kyc-form-container .kyc-form-button-previous {
  left: 150px;
}

.checkbox-container {
  display: inline-block;
  margin-bottom: 35px;
}

.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;
  }
}
#view-client-preview + .m-bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  row-gap: 50px;
}

.mdl-textfield .mdl-textfield__input {
  position: relative;
  width: 100%;
  z-index: 2;
}

.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%);
}
@media (max-width: 767px) {
  .kyc-form-body > div.d-ib .dual-radio,
  .d-ib .dual-radio {
    display: flex;
    flex-direction: column;
    justify-items: stretch;
  }
  .kyc-form-body > div.d-ib .dual-radio > *,
  .d-ib .dual-radio > * {
    width: 100%;
  }
}

body .kyc-focus .un-row {
  float: left;
  margin-left: 0;
  margin-right: 0;
  width: 50%;
}

.kyc-focus .mdl-radio__label {
  font-weight: initial;
}

.kyc-subtitle {
  font-weight: 600;
}

.kyc-focus img[src] {
  display: none;
}

.kyc-focus .small-container.container {
  border-radius: 10px 10px 0 0;
  box-shadow: none;
}

.kyc-form-button-sign {
  float: right;
}

.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 {
  border: 3px solid;
  border-radius: 5px;
  display: flex;
  margin: 20px 35px;
  padding: 35px;
}

.cni-info.hide,
.cni-info-pm.hide {
  display: none;
}

.cni-kyc-form button {
  font-weight: 400;
  height: 55px;
  min-width: auto;
  padding: 0;
  width: 100%;
}

.modal.fade#siren-kyc .modal-dialog {
  display: inline-table;
}

html body .cni-kyc-form .button-secondary-color {
  background-color: #13273f;
  border: none;
  border-radius: 10px;
  color: #fff;
}

.cni-kyc-form .cni-kyc-form-button {
  margin-top: 0;
}

.kyc-form-body .dual-radio {
  display: inline-block;
  width: min(500px, 100%);
}

.is-invalid .mdl-checkbox__box-outline {
  border-color: #e92b2b;
}

.mdl-textfield--floating-label.is-date .mdl-textfield__label {
  top: 4px;
}

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: #13273f;
}

@media (max-height: 768px) {
  [id*=kyc] .modal-content {
    height: 70vh;
    overflow-y: scroll;
  }
  .modal-dialog {
    width: 100%;
  }
}
.alert-tel-field {
  color: #f00;
  position: absolute;
}

.flex-button {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}
.flex-button button {
  margin: 0 15px;
  max-width: 150px;
  width: 100%;
}

.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%;
}

.input-file-content {
  position: relative;
}
.input-file-content.is-invalid .label-file {
  border-color: #e92b2b;
  color: #e92b2b;
}

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

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

.input-file-content .label-file {
  border: 2px solid #13273f;
  color: #13273f;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: initial;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
  padding-right: 71.68px;
  width: 100%;
}

.input-file-content .input-in-array {
  align-items: center;
  border: 1px dotted #13273f;
  border-radius: 8px;
  height: 40px;
  justify-content: center;
  margin-bottom: unset;
  min-width: 220px;
  padding: 0.5rem;
  padding-right: unset;
}

.input-in-array .saved-file::after {
  align-items: center;
  background-color: #13273f;
  bottom: 0;
  color: white;
  content: "\f019";
  display: flex;
  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: #13273f;
  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;
  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: #13273f;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  line-height: 19.6px;
  margin: 0;
  max-width: none;
  min-width: 200px;
  padding: 10px 55px;
  text-transform: none;
}
custom-button > button:disabled {
  background-color: #d3d3d3;
  color: #fff;
  cursor: default;
}

html body .nav > li > a:focus,
html body .nav > li > a:hover {
  background-color: transparent;
}

body .container:not(.kyc-form-container) {
  margin-left: auto;
  margin-right: auto;
  width: min(1620px, 100% - 30px);
}
body .head-division.center {
  margin-left: 0;
  margin-right: 0;
  text-align: initial;
}
@media (min-width: 1024px) {
  body #selectprojet_img,
  body .header_bottom {
    margin: 0 auto;
    padding: 0;
  }
  body .header_bottom #PME {
    padding: 0;
  }
}

a.underline {
  color: #13273f;
  text-decoration: underline;
}

input:not([disabled]) + .mdl-textfield__label {
  cursor: text;
}

[disabled] {
  pointer-events: none;
}

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

.mb-50 {
  margin-bottom: 50px;
}

.grid-15 {
  display: grid;
  gap: 15px;
}

.grid-30 {
  display: grid;
  gap: 30px;
}

.f-center {
  display: flex;
  justify-content: center;
  margin: auto;
}

.spare-top-bottom {
  margin-bottom: 40px;
  margin-top: 40px;
}

.input-radio__label {
  border: 1px solid #13273f;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 #13273f;
  cursor: pointer;
  font-weight: 500;
  min-height: 50px;
  min-width: 100px;
  padding: 15px 30px;
}

.input-radio__item:checked + .input-radio__label {
  background-color: #d8ffed;
}

.input-radio-container__label {
  display: block;
  margin-bottom: 20px;
  text-align: left;
}

.input-radio {
  margin-bottom: 20px;
}

.input__label,
.input-field__label,
.input-textarea__label,
.input-radio-container__label {
  font-size: 1rem;
  font-weight: 400;
}

.input-field__item {
  height: 50px;
}

.input-textarea__item {
  min-height: 100px;
}

.input-field__item,
.input-textarea__item {
  border: 1px solid #b8b8b8;
  border-radius: 5px;
  padding: 8px 10px;
  width: 100%;
}
.input-field__item:focus, .input-field__item:hover,
.input-textarea__item:focus,
.input-textarea__item:hover {
  border-color: #13273f;
}

.form-bouncer .input-field__item:invalid,
.form-bouncer .input-textarea__item:invalid {
  border-color: #f00;
}
.form-bouncer .input-field__item:invalid + label::before,
.form-bouncer .input-textarea__item:invalid + label::before {
  bottom: 0;
  color: #f00;
  content: attr(data-alert);
  font-size: torem(14);
  left: 0;
  position: absolute;
  transform: translateY(100%);
}

.input-field__item[required] + label::after,
.input-textarea__item[required] + label::after {
  color: #f00;
  content: "*";
  left: 5px;
  position: relative;
  top: 0;
}
.input-field__item:invalid:not(:-moz-placeholder-shown), .input-textarea__item:invalid:not(:-moz-placeholder-shown) {
  border-color: #f00;
}
.input-field__item:invalid:not(:placeholder-shown), .input-field__item.invalid[required],
.input-textarea__item:invalid:not(:placeholder-shown),
.input-textarea__item.invalid[required] {
  border-color: #f00;
}
.input-field__item:invalid:not(:-moz-placeholder-shown) + label::before, .input-textarea__item:invalid:not(:-moz-placeholder-shown) + label::before {
  bottom: 0;
  color: #f00;
  content: attr(data-alert);
  font-size: torem(14);
  left: 0;
  position: absolute;
  transform: translateY(100%);
}
.input-field__item:invalid:not(:placeholder-shown) + label::before, .input-field__item.invalid[required] + label::before,
.input-textarea__item:invalid:not(:placeholder-shown) + label::before,
.input-textarea__item.invalid[required] + label::before {
  bottom: 0;
  color: #f00;
  content: attr(data-alert);
  font-size: torem(14);
  left: 0;
  position: absolute;
  transform: translateY(100%);
}

.input-field,
.input-textarea {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.button-item {
  border: 2px solid #13273f;
  border-radius: 34px;
  height: 68px;
  margin-top: 25px;
  padding: 10px 30px;
  transition: background-color 0.5s;
}
.button-item--primary {
  background-color: #fff;
  color: #13273f;
}
.button-item--primary:hover {
  background-color: #13273f;
  color: #fff;
}
.button-item--secondary {
  background-color: #13273f;
  color: #fff;
}
.button-item--secondary:hover {
  background-color: #fff;
  color: #13273f;
}

html .container {
  max-width: calc(100% - 30px);
  padding: 20px 0;
}

.title {
  margin-bottom: 50px;
}

.layout-center-tiny {
  margin: 0 auto;
  max-width: 1082px;
  width: calc(100% - 15px);
}

.custom-progress-bar {
  background-color: #13273f;
  border-radius: 5px;
  height: 5px;
  width: 100%;
}
.custom-progress-bar__value {
  background-color: #07f9a2;
  border-radius: 5px;
  height: 100%;
  transition: 0.5s width;
  width: 0;
}

.row-align {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.col-two {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 6fr);
}
@media (max-width: 767px) {
  .col-two {
    gap: 5px;
    grid-template-columns: 12fr;
  }
}

.col-three {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 4fr);
}
@media (max-width: 767px) {
  .col-three {
    gap: 5px;
    grid-template-columns: 12fr;
  }
}

.layout-both {
  display: flex;
  justify-content: space-between;
  margin: auto;
  row-gap: 50px;
}
.layout-both__pane-first {
  max-width: 700px;
  position: relative;
  width: 100%;
}
.layout-both__pane-first__title {
  margin-bottom: 50px;
}
.layout-both__pane-first__full {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
.layout-both__pane-second {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.form-tiny {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 400px;
  place-items: center center;
  width: 100%;
}
.form-tiny.hide {
  display: none;
}

.card-info {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  justify-content: center;
}
.card-info__item {
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  height: 450px;
  justify-content: center;
  margin: 50px 0;
  max-width: 550px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .card-info__item {
    gap: 0;
    padding: 0 30px;
  }
}
.card-info__item__picture {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.card-info__item__sentence {
  padding: 75px;
  text-align: justify;
}
@media (max-width: 767px) {
  .card-info__item__sentence {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .card-info {
    gap: 0;
  }
}

.card-info-tiny {
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  color: #13273f;
  cursor: pointer;
  display: flex;
  height: 250px;
  justify-content: center;
  padding: 50px;
  position: relative;
  width: 330px;
}
.card-info-tiny .card-info-tiny-picture {
  transition: 0.5s transform;
}
.card-info-tiny:hover .card-info-tiny-picture {
  transform: scale(1.1);
}

.card-info-round {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}
.card-info-round__item {
  align-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  color: #13273f;
  display: grid;
  gap: 20px;
  height: 300px;
  justify-items: center;
  padding: 0 15px;
  text-align: center;
  width: 300px;
}

.card-info-chain {
  align-items: center;
  color: #13273f;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1024px) {
  .card-info-chain {
    display: grid;
    gap: 150px;
    grid-auto-flow: row;
    justify-items: center;
  }
}
.card-info-chain__item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1607843137);
  display: grid;
  grid-template-rows: 5fr 7fr;
  height: 400px;
  justify-content: center;
  margin: 50px 0;
  padding: 50px 30px;
  place-items: center center;
  position: relative;
  width: min(370px, 100%);
}
@media (max-width: 767px) {
  .card-info-chain__item {
    height: auto;
  }
}
.card-info-chain__item__picture {
  filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.6235294118));
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
}
.card-info-chain__item__picture-relative {
  height: 80px;
  width: 80px;
}
.card-info-chain__item__title {
  font-weight: 700;
  text-align: center;
}
.card-info-chain__item__sentence {
  font-size: 1rem;
  text-align: center;
}
.card-info-chain.white::before {
  border-color: #fff;
}
.card-info-chain::before {
  border-top: 4px dashed #13273f;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 1024px) {
  .card-info-chain::before {
    display: none;
  }
}

.logo-icon {
  background-color: #13273f;
  border-radius: 50%;
  box-shadow: -18px 0 0 0 #13273f, 18px 0 0 0 #13273f;
  display: block;
  height: 18px;
  margin: 0 auto;
  width: 18px;
}

.navbar-header {
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 3;
}

.navbar-container {
  align-items: center;
  display: flex;
  justify-content: center;
}

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;
}

html .nav > li > a {
  color: #13273f;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.5s;
}
@media (min-width: 768px) and (max-width: 1199px) {
  html .nav > li > a {
    font-size: 0.75rem;
  }
}
html .nav > li > a:hover {
  text-decoration: underline;
}

#navbar li a,
#navbar ul,
#navbar button {
  line-height: 1;
}

.navbar-nav > li > span {
  padding-bottom: 15px;
  padding-top: 15px;
}

html .nav > li > a.page-active {
  font-weight: 600;
}

body .navbar-nav > li {
  float: left;
  padding: 0;
  position: relative;
}

body .navbar-brand {
  align-items: center;
  display: flex;
  margin-top: 0;
  padding: 0;
}

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;
}

html .navbar-nav {
  align-items: center;
  display: flex;
  float: right;
}
@media (max-width: 767px) {
  html .navbar-nav {
    display: -webkit-box;
    padding: 0;
    display: flex;
    flex-direction: column;
    float: none;
    margin: 0;
    position: relative;
    text-align: center;
  }
}

.navbar-fixed-top.fixed-theme span[class=icon-bar] {
  border-bottom: 2px solid rgb(153, 153, 153);
  margin-top: 6px;
  padding-top: 0px;
}

.navbar.navbar-fixed-top.fixed-theme {
  background-color: #fff;
  background-image: none;
  padding: 24px 75px;
  margin: 0;
}
@media (max-width: 767px) {
  .navbar.navbar-fixed-top.fixed-theme {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .navbar.navbar-fixed-top.fixed-theme {
    padding: 24px;
  }
}

.navbar-container.fixed-theme {
  width: 100%;
}

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

.footer {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 50px;
  }
}
.footer__head {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer__body {
  margin: 50px auto;
}
@media (max-width: 767px) {
  .footer__body {
    margin: 100px auto 0;
  }
}
.footer__foot {
  display: grid;
  flex-wrap: wrap;
  gap: 40px;
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__foot {
    grid-auto-flow: row;
    row-gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer__foot__picture {
    order: 1;
  }
}
.footer__foot__title {
  margin-bottom: 30px;
}
.footer__foot > :last-child {
  max-width: 750px;
}
.footer a,
.footer p,
.footer span,
.footer li {
  font-weight: 300;
}

.join-club__title {
  margin-bottom: 50px;
}

.join-club__finish {
  display: grid;
  place-items: center center;
}

form button {
  margin-top: 50px;
  max-width: 100%;
  min-width: 200px;
}

.grid-fill-50 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
}

.grid-fit-50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}

.grid-gap-50 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.grid-fill-75 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
}

.grid-fit-75 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
}

.grid-gap-75 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.grid-fill-100 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.grid-fit-100 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.grid-gap-100 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.grid-fill-125 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}

.grid-fit-125 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
}

.grid-gap-125 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.grid-fill-150 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.grid-fit-150 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid-gap-150 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.grid-fill-200 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.grid-fit-200 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-gap-200 {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

#header-container {
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  html .layout-both {
    flex-direction: column;
    row-gap: 50px;
  }
  html .custom-align {
    grid-auto-flow: row;
    justify-content: center;
  }
  html .layout-both__pane-second img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 10px;
  }
  html .layout-both,
  html .card-info-round,
  html .card-info-chain {
    gap: 100px;
    justify-content: center;
  }
  html .card-info-chain {
    justify-content: stretch;
    padding: 25px 0;
  }
  html .card-info-round {
    gap: 100px;
  }
  html .card-info-chain__item {
    margin: 0;
  }
  html .layout-both__pane-first {
    max-width: initial;
  }
}
html body .layout-both__pane-second img {
  border-radius: 10px;
}

.card-container-fade {
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-areas: "container";
  grid-template-columns: 12fr;
  height: 350px;
  justify-content: center;
  position: relative;
  width: min(450px, 100% - 30px);
}
.card-container-fade__front {
  align-items: center;
  display: grid;
  grid-area: container;
  justify-content: center;
}
.card-container-fade__front__logo {
  left: 50%;
  max-height: 75px;
  max-width: 50%;
  opacity: 0;
  position: absolute;
  top: 30%;
  transform: translateX(-50%);
  transition: top 1s, opacity 1s;
  z-index: 1;
}
.card-container-fade__hidden {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  grid-area: container;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s;
  width: min(400px, 100% - 30px);
  word-break: break-word;
}
.card-container-fade__hidden__top, .card-container-fade__hidden__bottom {
  font-size: 16px;
  position: relative;
  transition: top 0.5s;
}
@media (max-width: 767px) {
  .card-container-fade__hidden__top, .card-container-fade__hidden__bottom {
    font-size: 0.85rem;
  }
}
.card-container-fade__hidden__top {
  top: 15px;
}
.card-container-fade__hidden__bottom {
  bottom: 30%;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  transition: 1s bottom;
}
.card-container-fade:hover .card-container-fade__front__logo {
  opacity: 1;
  top: 10px;
}
.card-container-fade:hover .card-container-fade__hidden__bottom {
  bottom: 0;
  opacity: 1;
}
.card-container-fade:hover .card-container-fade__hidden__top {
  top: 0;
}
.card-container-fade:hover .card-container-fade__front__picture {
  opacity: 0;
}
.card-container-fade:hover .card-container-fade__hidden {
  opacity: 1;
}

.pills-container {
  display: flex;
  gap: 10px;
}
.pills-container__item {
  border-radius: 100px;
  justify-self: center;
  min-width: 94px;
  padding: 0 15px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pills-container__item--sector {
  background-color: #cef8f4;
  border: 1px solid #7fa4a1;
}
.pills-container__item--business-model {
  background-color: #d4e7ff;
  border: 1px solid #13273f;
}

.pills-container-mini {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .pills-container-mini {
    margin: auto;
  }
}
.pills-container-mini__item {
  border-radius: 100px;
  justify-self: center;
  min-width: 94px;
  padding: 0 15px;
  text-align: center;
}
.pills-container-mini__item--sector {
  background-color: #cef8f4;
  border: 1px solid #7fa4a1;
}
.pills-container-mini__item--business-model {
  background-color: #d4e7ff;
  border: 1px solid #13273f;
}

.project-pills {
  bottom: 0;
  position: absolute;
  right: 15px;
}
@media (max-width: 767px) {
  .project-pills {
    display: flex;
    position: relative;
    right: auto;
    width: 100%;
  }
}

#new-file-invest {
  align-items: end;
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  width: 100%;
}
#new-file-invest > [myfile] {
  width: 100%;
}

.box-notif {
  border: 1px solid currentcolor;
  border-radius: 50px;
  margin: 50px auto;
  padding: 50px;
  text-align: center;
  width: calc(100% - 30px);
}

html body .header.center {
  width: min(1620px, 100% - 30px);
}
html body .invest {
  border: 2px solid #fff;
  border-radius: 34px;
  min-height: 67px;
  min-width: 217px;
  padding: 20px 65px;
}
html body .box-notif ul {
  list-style: none;
}
html a {
  color: inherit;
}
html a:hover, html a:focus, html a:target {
  color: inherit;
}

#actionslettres .col-md-12 {
  padding: 0;
}

.ckeditor-tab[id^=header-] {
  display: none;
}

.project-embed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin-bottom: 100px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 1024px) {
  .project-embed-tabs {
    height: 130px;
  }
  .project-embed-tabs.open {
    height: auto;
  }
}
.project-embed-tabs .project-embed-tabs__item {
  align-items: center;
  border: 3px solid #13273f;
  border-radius: 53px;
  display: flex;
  height: 105px;
  justify-content: center;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  text-align: center;
  transition: background-color 0.5s;
  width: 250px;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .project-embed-tabs .project-embed-tabs__item {
    order: 2;
  }
}
.project-embed-tabs .project-embed-tabs__item:hover {
  background-color: #13273f;
  color: #fff;
}
.project-embed-tabs .project-embed-tabs__item.active {
  background-color: #13273f;
  color: #fff;
}
@media (max-width: 1024px) {
  .project-embed-tabs .project-embed-tabs__item.active {
    order: 1;
  }
  .project-embed-tabs .project-embed-tabs__item.active::before {
    bottom: -35px;
    content: ">";
    position: absolute;
  }
}
.project-embed-tabs .project-embed-tabs__item__link {
  inset: 0;
  position: absolute;
}

.project-embed-tab {
  display: none;
}
.project-embed-tab.active {
  display: block;
}

.headband-blue {
  background-color: #13273f;
  border-radius: 10px;
  padding: 150px 0;
}
.headband-blue__grid {
  color: #fff;
  display: grid;
  gap: 150px;
  margin: 0 auto;
  max-width: calc(100% - 30px);
  text-align: center;
  width: 1400px;
}
@media (max-width: 767px) {
  .headband-blue__grid {
    gap: 50px;
  }
}
.headband-blue__grid h4,
.headband-blue__grid i {
  color: #fff;
}
.headband-blue__grid__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}
.headband-blue__grid__row::before {
  background-color: #568ccd;
  bottom: -15px;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
.headband-blue__grid__row__item {
  font-size: torem(26);
}
@media (max-width: 767px) {
  .headband-blue__grid__row__item {
    font-size: torem(14);
  }
}

.projectEmbed .headband-blue {
  margin-bottom: torem(75);
}
.projectEmbed h1,
.projectEmbed h2,
.projectEmbed h3 {
  font-weight: bold;
  margin-bottom: torem(55);
}
.projectEmbed h2,
.projectEmbed h3 {
  margin-top: torem(55);
}

#project-document-list {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  justify-items: center;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #project-document-list {
    align-content: center;
    grid-template-columns: none;
    text-align: left;
  }
}
#project-document-list > li {
  padding: 0 0 0 45px;
  position: relative;
}
@media (max-width: 767px) {
  #project-document-list > li {
    width: 100%;
  }
}
#project-document-list > li::before {
  content: url("/img/icons/document.svg");
  left: -10px;
  position: absolute;
}

.headband .container {
  margin: auto;
  width: min(1415px, 100% - 30px);
}

@media (max-device-width: 1024px) {
  body .box-notif {
    text-align: justify;
  }
}
.header-leader {
  background-color: #13273f;
}

.header-leader-sub__container__picture {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: center;
}

.header-leader-sub,
.header-leader {
  color: #fff;
  display: flex;
  height: 317px;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .header-leader-sub,
  .header-leader {
    height: auto;
  }
}

.header-leader__container {
  width: min(1620px, 100% - 30px);
}

.header-leader__container__item:nth-child(1) {
  order: -1;
}

.header-leader__container__item {
  order: 1;
}

@media (max-width: 1024px) {
  .header-leader__container__item:last-child {
    order: 0;
  }
}

.header-leader-sub__container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: min(1150px, 100% - 30px);
}

.header-leader__container,
.header-leader-sub__container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header-leader__container,
  .header-leader-sub__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    padding: 50px 0 100px;
  }
}

.header-leader-sub__container__item__title {
  font-weight: bold;
}

.header-leader-sub__container__item {
  align-items: center;
  color: #13273f;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.header-leader__container__logo {
  background-color: #fff;
  border-radius: 10px;
  height: 217px;
  width: 217px;
}

.header-leader__container__logo__item {
  max-width: 160px;
}

.header-leader__container__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.button-white {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 34px;
  color: #fff;
  height: 68px;
  text-transform: uppercase;
  transition: 0.5s background-color;
  width: min(217px, 100%);
}

.button-white:hover {
  background-color: #fff;
  color: #13273f;
}

.header-leader__container__item__social {
  cursor: pointer;
}

.header-leader__handle-page {
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 50px;
  width: min(400px, 100% - 100px);
}
@media (max-width: 1024px) {
  .header-leader__handle-page {
    right: 50%;
    transform: translateX(50%);
  }
}

.header-leader__handle-page__previous,
.header-leader__handle-page__next {
  cursor: pointer;
  position: relative;
}

.header-leader__handle-page__next {
  margin-left: auto;
}

.header-leader__handle-page__previous::before,
.header-leader__handle-page__next::after {
  content: url("/img/arrow.svg");
  position: absolute;
  width: 15px;
}

.header-leader__handle-page__previous::before {
  left: -25px;
  transform: rotate(180deg);
}

.header-leader__handle-page__next::after {
  right: -25px;
}

body .mdl-textfield__input[type=text] {
  padding: 8px 0 0;
}

body #header-container::before, body #header-container::after {
  display: none;
}
body #header-container.container:not(.kyc-form-container) {
  width: auto;
  max-width: none;
}
@media (max-width: 767px) {
  body #header-container.container:not(.kyc-form-container) {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}
body .navbar > .container .navbar-brand,
body .navbar > .container-fluid .navbar-brand {
  margin: 0;
}

html .mdl-checkbox__ripple-container,
html .mdl-icon-toggle__ripple-container {
  display: none;
}
html .mdl-ripple.is-visible {
  display: none;
}
html .mdl-radio.is-checked .mdl-radio__outer-circle {
  border-color: #13273f;
}

.operation-of-the-club-item-content {
  position: relative;
}
.operation-of-the-club-item-content::after, .operation-of-the-club-item-content::before {
  background-image: linear-gradient(var(--orientation, 0deg), #fff 50%, transparent);
  content: "";
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}
@media (max-width: 767px) {
  .operation-of-the-club-item-content::after, .operation-of-the-club-item-content::before {
    display: none;
  }
}
.operation-of-the-club-item-content::before {
  --orientation: 180deg;
  top: 0;
}
.operation-of-the-club-item-content::after {
  --orientation: 0deg;
  bottom: 0;
}

html body .swiper-horizontal {
  position: relative;
}
html body .swiper-horizontal::after, html body .swiper-horizontal::before {
  background-image: linear-gradient(var(--orientation), #13273f 50%, transparent);
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 15px;
  z-index: 3;
}
@media (max-width: 767px) {
  html body .swiper-horizontal::after, html body .swiper-horizontal::before {
    display: none;
  }
}
html body .swiper-horizontal::before {
  --orientation: 90deg;
  left: 0;
}
html body .swiper-horizontal::after {
  --orientation: 270deg;
  right: 0;
}

.footer__foot__picture {
  align-self: center;
}
@media (max-width: 1024px) {
  .footer__foot__picture {
    display: block;
    margin: auto;
    padding-top: 50px;
  }
}

#cookie-accept-modal .container {
  width: min(670px, 100% - 30px);
}

.layout-both,
#page_connexion {
  padding-top: 15px;
}

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: #13273f;
  border-color: #13273f;
}

@media (max-width: 1024px) {
  #operation-of-the-club__desktop {
    display: none;
  }
}
#operation-of-the-club__phone {
  display: none;
  margin: auto;
}
@media (max-width: 1024px) {
  #operation-of-the-club__phone {
    display: block;
  }
}

.header-home-container-illustration-chevron {
  align-items: center;
  bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: absolute;
}
@media (max-width: 1400px) {
  .header-home-container-illustration-chevron {
    display: none;
  }
}

.sticky-topbar {
  position: sticky;
  top: 200px;
}

/** expiration */
body .expiration-headband {
  align-items: center;
  background-color: #b1d4ff;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  justify-content: center;
  padding: 10px;
  position: relative;
  top: 0;
}
body .expiration-underline {
  cursor: pointer;
  text-decoration: underline;
}
body .expiration-underline:hover {
  text-decoration: underline;
}

[not-visible] {
  visibility: hidden;
}

.header-leader__container__item__picture {
  margin-bottom: 5px;
  min-height: 118px;
  min-width: 118px;
}

.leader-picture,
.leader-picture-director {
  border-radius: 50%;
}

.leader-picture {
  border: 5px solid #fff;
}

.leader-picture-director {
  border: 2px solid #fff;
}

.home-header {
  min-height: calc(100vh - 85px);
}

.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: 4rem;
  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;
}

.header-home-container-illustration {
  margin-left: auto;
  margin-right: initial;
}

.title.h1 {
  font-weight: 700;
  margin: 20px 0 40px;
}

#roles .h1 {
  padding-bottom: 40px;
}

html body #header + section#section-leaders {
  padding-top: 50px;
}

@media (max-width: 1400px) {
  .header-home-container {
    flex-direction: column-reverse;
  }
  .header-home-container-content-title {
    text-align: center;
  }
  .header-home-container-content-button {
    justify-content: center;
  }
  .header-home-container-illustration {
    margin: 0 auto;
  }
  .header-home-container-illustration > lottie-player {
    height: 425px !important;
    width: 425px !important;
  }
}
.waiting-room-logo .a {
  fill: #13273f;
}
.waiting-room-logo .b {
  fill: #cacaca;
}

.code-placement-container-input {
  padding-inline: 10px;
}
.code-placement-container-button {
  margin: 0;
  background-color: #13273f;
  border: none;
  border: 2px solid #13273f;
  color: #13273f;
  border-radius: 80px;
  min-width: 75px;
}
.code-placement-container-button > img {
  width: 15px;
}

.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;
}

.header-sub {
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: center;
  min-height: 14.5rem;
  padding-left: 150px;
  padding-right: 150px;
  width: 100%;
}
.header-sub .title {
  margin-bottom: unset;
}
.header-sub .header-sub-content {
  display: grid;
  gap: 20px;
  text-align: center;
}
.header-sub .header-sub-content .subtitle {
  margin-top: 1rem;
  margin-bottom: 0;
}
.header-sub .header-sub-content .subtitle:last-of-type {
  margin-bottom: 1rem;
}
.header-sub .header-sub-content-title {
  font-size: 80px;
  line-height: 1;
}

.account {
  display: flex;
}

.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: 334px;
}

.account-content-section-title {
  margin-bottom: 35px;
  margin-top: 0;
  text-align: center;
  text-transform: uppercase;
}

.account-content-section-title .red {
  font-size: 35px;
}

.state-content-cursor-step-bar-progress.active-half {
  background-color: #13273f;
  height: 10px;
  position: relative;
  top: -1px;
  transform: scaleX(0.5);
  transform-origin: left;
  width: 100%;
}

.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: #133763;
  font-weight: 600;
  color: #fff;
}

.account-sidebar-list li:hover::after,
.account-sidebar-list li.active::after {
  color: #fff;
}

.account-sidebar-list li::before {
  display: none;
}

.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-form {
  border: 1px solid var(--primary-color);
  display: grid;
  justify-items: center;
  padding-bottom: 3rem;
  row-gap: 3rem;
  width: 100%;
}

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

.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 .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::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;
  display: flex;
}

.state-content-cursor-step {
  border: 1px solid #13273f;
}

.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: #13273f;
  height: 10px;
  position: relative;
  top: -1px;
  transform: scaleX(0.5);
  transform-origin: left;
  width: 100%;
}

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

.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.topbar-connexion-link {
  border: 3px solid #13273f;
  border-radius: 100px;
}
html .nav > li > a.topbar-connexion-link:hover {
  background-color: #13273f;
  color: #fff;
}
html .nav > li > a.topbar-connexion-link button.button-empty {
  border: none;
  font-weight: 400;
  padding: 9px 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  html .nav > li > a.topbar-connexion-link button.button-empty {
    font-size: 0.75rem;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  html .nav > li > a.topbar-connexion-link {
    padding: 0;
  }
}

html .nav > li > a.topbar-inscription-link {
  border-radius: 100px;
}
html .nav > li > a.topbar-inscription-link button.button-fill {
  border: 3px solid #13273f;
  font-weight: 400;
  padding: 9px 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  html .nav > li > a.topbar-inscription-link button.button-fill {
    font-size: 0.75rem;
    min-width: auto;
  }
}

html .nav.navbar-nav > li {
  margin: 0 12px;
}
@media (max-width: 767px) {
  html .nav.navbar-nav > li {
    margin: 0;
  }
}

html .nav.navbar-nav > li:first-child {
  margin-left: 0;
}

html .nav.navbar-nav > li:last-child {
  margin-right: 0;
}

html .nav .button-fill,
.button-empty {
  padding: 10px 20px;
}