@charset "UTF-8";
::-moz-placeholder {
  --primary-color: #002050;
  --secondary-color: #bca275;
  --light-color: #dedad3;
  --primary-variant1-color: var(--primary-color);
  --primary-variant2-color: var(--primary-color);
  --grey-color: #b7b7b7;
  --lightgrey-color: #e9e9e9;
  --darkgrey-color: #707070;
  --required-color: #af0000;
  --error-color: #af0000;
  --error-light-color: #ffd8d8;
  --disabled-color: #e9e9e9;
  --skeleton-color: #e7e7e7;
  --title-border-color: transparent;
  --title-border-height: 0;
  --font-family: "Century Gothic";
  --title-font-family: "Kiona";
  --activable-font-family: var(--font-family);
  --paragraph-font-family: var(--font-family);
  --border-radius: 0.3125rem;
  --shadow: 0 4px 10px 0 #00000040;
  --header-height: 7.5rem;
  --input-height: 3.4rem;
  --xs-width: 10rem;
  --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: var(--error-color);
}
body,
::before,
::after,
::placeholder {
  --primary-color: #002050;
  --secondary-color: #bca275;
  --light-color: #dedad3;
  --primary-variant1-color: var(--primary-color);
  --primary-variant2-color: var(--primary-color);
  --grey-color: #b7b7b7;
  --lightgrey-color: #e9e9e9;
  --darkgrey-color: #707070;
  --required-color: #af0000;
  --error-color: #af0000;
  --error-light-color: #ffd8d8;
  --disabled-color: #e9e9e9;
  --skeleton-color: #e7e7e7;
  --title-border-color: transparent;
  --title-border-height: 0;
  --font-family: "Century Gothic";
  --title-font-family: "Kiona";
  --activable-font-family: var(--font-family);
  --paragraph-font-family: var(--font-family);
  --border-radius: 0.3125rem;
  --shadow: 0 4px 10px 0 #00000040;
  --header-height: 7.5rem;
  --input-height: 3.4rem;
  --xs-width: 10rem;
  --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: var(--error-color);
}

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: #bca275;
  border: none;
  border-radius: 5px;
  bottom: 25px;
  color: #fff;
  left: 50px;
  max-width: 100%;
  min-width: 150px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

svg.center {
  display: block;
}

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

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

button {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body .paymentForm {
  --payment-square-width: 370px;
  --payment-square-height: 250px;
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  justify-content: center;
  position: relative;
}
body .paymentForm .paymentForm__label {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(7, 25, 51, 0.25);
  color: #002050;
  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 #002050;
  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: #002050;
}
body .paymentForm input:checked + .paymentForm__label {
  background: rgba(0, 175, 108, 0.2509803922);
}
body .paymentForm:valid .paymentForm__radio:not(:checked) + .paymentForm__label {
  flex: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s flex, 0.5s min-width, 0.5s opacity;
}
body .paymentForm:valid #cheque:checked ~ [data-for=cheque],
body .paymentForm:valid #virement:checked ~ [data-for=virement],
body .paymentForm:valid #payment_online:checked ~ [data-for=payment_online],
body .paymentForm:valid #pea:checked ~ [data-for=pea] {
  max-height: 1000px;
  opacity: 1;
  transition: 0.5s opacity 0.5s, 0.5s max-height 0.5s ease-in-out;
}
body .paymentForm:valid .paymentForm__back {
  opacity: 1;
  transition: 1s opacity 0.5s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inscription__riskText {
  width: 100%;
}

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

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

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

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

.d-flex {
  display: flex;
}

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

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

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

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

.account-cgp {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: "Kiona";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Kiona/kiona-bold-webfont.eot");
  src: url("/fonts/Kiona/kiona-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Kiona/kiona-bold-webfont.woff2") format("woff2"), url("/fonts/Kiona/kiona-bold-webfont.woff") format("woff"), url("/fonts/Kiona/kiona-bold-webfont.ttf") format("truetype"), url("/fonts/Kiona/kiona-bold-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: "Kiona";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Kiona/kiona-regular-webfont.eot");
  src: url("/fonts/Kiona/kiona-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Kiona/kiona-regular-webfont.woff2") format("woff2"), url("/fonts/Kiona/kiona-regular-webfont.woff") format("woff"), url("/fonts/Kiona/kiona-regular-webfont.ttf") format("truetype"), url("/fonts/Kiona/kiona-regular-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Century_Gothic/gothicb-webfont.eot");
  src: url("/fonts/Century_Gothic/gothicb-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Century_Gothic/gothicb-webfont.woff2") format("woff2"), url("/fonts/Century_Gothic/gothicb-webfont.woff") format("woff"), url("/fonts/Century_Gothic/gothicb-webfont.ttf") format("truetype"), url("/fonts/Century_Gothic/gothicb-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Century_Gothic/gothic-webfont.eot");
  src: url("/fonts/Century_Gothic/gothic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Century_Gothic/gothic-webfont.woff2") format("woff2"), url("/fonts/Century_Gothic/gothic-webfont.woff") format("woff"), url("/fonts/Century_Gothic/gothic-webfont.ttf") format("truetype"), url("/fonts/Century_Gothic/gothic-webfont.svg#open_sanssemibold") format("svg");
}
/** css new variables **/
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Century_Gothic/gothic-webfont.eot");
  src: url("/fonts/Century_Gothic/gothic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Century_Gothic/gothic-webfont.woff2") format("woff2"), url("/fonts/Century_Gothic/gothic-webfont.woff") format("woff"), url("/fonts/Century_Gothic/gothic-webfont.ttf") format("truetype"), url("/fonts/Century_Gothic/gothic-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Century_Gothic/gothicb-webfont.eot");
  src: url("/fonts/Century_Gothic/gothicb-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Century_Gothic/gothicb-webfont.woff2") format("woff2"), url("/fonts/Century_Gothic/gothicb-webfont.woff") format("woff"), url("/fonts/Century_Gothic/gothicb-webfont.ttf") format("truetype"), url("/fonts/Century_Gothic/gothicb-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: Kiona;
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Kiona/kiona-regular-webfont.eot");
  src: url("/fonts/Kiona/kiona-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Kiona/kiona-regular-webfont.woff2") format("woff2"), url("/fonts/Kiona/kiona-regular-webfont.woff") format("woff"), url("/fonts/Kiona/kiona-regular-webfont.ttf") format("truetype"), url("/fonts/Kiona/kiona-regular-webfont.svg#open_sanssemibold") format("svg");
}
@font-face {
  font-family: Kiona;
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Kiona/kiona-bold-webfont.eot");
  src: url("/fonts/Kiona/kiona-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/Kiona/kiona-bold-webfont.woff2") format("woff2"), url("/fonts/Kiona/kiona-bold-webfont.woff") format("woff"), url("/fonts/Kiona/kiona-bold-webfont.ttf") format("truetype"), url("/fonts/Kiona/kiona-bold-webfont.svg#open_sanssemibold") format("svg");
}
/** END css new variables **/
/* width */
::-webkit-scrollbar {
  border-radius: var(--border-radius);
  width: 1rem;
}

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

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

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

html body {
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  width: 100%;
}
html body .fixed-theme .nav > li > a.head-connexion-button,
html body .fixed-theme .nav > li > a.head-inscription-button,
html body .nav > li > a.head-connexion-button,
html body .nav > li > a.head-inscription-button,
html body #contact_img .text,
html body #about_img .text,
html body #map_img .text,
html body .content_error p,
html body .content_error p,
html body html body strong,
html body .text button[type=submit],
html body .levee-container .number,
html body .levee-container .pourcent,
html body form button[type=submit] {
  font-family: "Kiona";
}

html body h1,
html body h2,
html body h3 {
  font-family: "Kiona";
  font-size: 23px;
  font-weight: bold;
}
html body h4,
html body h5,
html body h6,
html body .title,
html body #typed,
html body .typed-cursor,
html body .raleway,
html body .nav-pills > li > a,
html body .modal-content,
html body .profile {
  font-family: "Kiona";
  font-weight: 700;
  line-height: 35px;
  position: relative;
}
html body .button-full-white-color .button-full-original-color-deep .home-header-content-button,
html body .inscription-button,
html body button {
  font-family: "Kiona";
  font-size: 11px;
  font-weight: 700;
}
html body footer h2 {
  color: #bca275;
  font-size: 29px;
  padding-bottom: 15px;
}

html body {
  font-family: "Century Gothic";
}
html body .navbar-nav,
html body #kyc-header * {
  color: #002050;
  font-family: "Century Gothic";
  font-size: 11px;
}
html body .mdl-textfield--floating-label .mdl-textfield__label {
  font-size: 11px;
}

body p,
body ul,
body span {
  line-height: 22px;
}

#header.primary:not(.fixed-theme) a,
#header.primary:not(.fixed-theme) span {
  color: #002050;
}
#header.primary:not(.fixed-theme) .head-inscription-button {
  color: #002050;
}
#header #logo_ycap {
  height: 37px;
  width: 230px;
}
#header #logo_ycap .first-word {
  fill: #fff;
}
#header #logo_ycap .cls-2 {
  fill: #fff;
}
#header #logo_ycap .cls-3 {
  fill: #bca275;
}
#header #logo_ycap .cls-4 {
  fill: none;
  stroke: #bca275;
}
#header #logo_ycap .cls-4,
#header #logo_ycap .cls-2 {
  stroke-miterlimit: 10;
}
#header #logo_ycap .cls-2 {
  stroke: #fff;
}
#header + .header {
  align-items: center;
  background-image: url("/img/Ycap-header-compte.png");
  background-size: 100% 100%;
  display: flex;
  height: 320px;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
}
#header + .header .title {
  color: #002050;
}

nav.fixed-theme#header #logo_ycap .first-word {
  fill: #fff;
}
nav.fixed-theme#header .investisseur-link,
nav.fixed-theme#header .partenaire-link,
nav.fixed-theme#header .compte-link,
nav.fixed-theme#header .investissement-link {
  color: #fff;
}

nav.secondary#header #logo_ycap .first-word {
  fill: #fff;
}
nav.secondary#header .investisseur-link,
nav.secondary#header .partenaire-link,
nav.secondary#header .compte-link,
nav.secondary#header .investissement-link {
  color: #fff;
}
nav.secondary#header + .header {
  background-image: url("/img/Ycap-header-connexion.png");
  background-position: center;
}
nav.secondary#header + .header .title {
  color: #fff;
}

#logo-home-ycap .first-word {
  fill: #fff;
}
#logo-home-ycap .cls-2 {
  fill: #fff;
}
#logo-home-ycap .cls-3 {
  fill: #bca275;
}
#logo-home-ycap .cls-4 {
  fill: none;
  stroke: #bca275;
}
#logo-home-ycap .cls-4,
#logo-home-ycap .cls-2 {
  stroke-miterlimit: 10;
}
#logo-home-ycap .cls-2 {
  stroke: #fff;
}

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

#kyc-header .progress,
.levee-container .fiscalite,
.levee-container .bar .pourcent_bar,
#financement .bar .pourcent_bar,
.header .mdl-textfield__label::after,
#compte_img .profile,
button.invest:hover,
button.next:hover,
html body .header button.button {
  background-color: #bca275;
}

#kyc-header,
.kyc-body label.btn.btn-default.active,
.btn-blueTylia,
.center_picto::before,
.center_picto::after,
.dropdown-content span:hover,
.dropdown-content a:hover,
button.colorprimButton:hover,
button.prev:hover,
html body input[type=button],
input[type=reset],
input[type=submit],
form button[type=submit],
body .mdl-textfield__label::after,
body .mdl-textfield__label::before,
.title-underline::after,
body .mdl-checkbox__ripple-container .mdl-ripple,
body .mdl-radio__ripple-container .mdl-ripple,
body .ui-datepicker .ui-datepicker-header,
body .mdl-checkbox.is-checked .mdl-checkbox__tick-outline,
body .ui-datepicker select.ui-datepicker-year,
body .mdl-textfield.is-invalid .mdl-textfield__label::after,
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: #002050;
  color: #fff;
  z-index: 2;
}

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

html ::-moz-selection {
  background-color: #bca275;
}

html ::selection {
  background-color: #bca275;
}

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

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

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

html .pills_project .nav.nav-pills > li > a:hover:not(#connexion),
body .pills_project .nav.nav-pills > li.active > a {
  color: #bca275;
}

#tabKYC #kyc-prev:hover i,
.colorsecond,
#presse .press_content .base .bottom_content span:hover i,
button.invest,
button.next,
#documents ul li:hover h4::before {
  color: #bca275;
}

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

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

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

body a:hover,
body a:focus,
body a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

/************************************************************ Fin Color set ************************************************************/
/************************************************************ Border set ************************************************************/
/* html .nav > li > a.active, */
html .nav > li > a#inscrire,
html .nav > li > a#inscrire:hover,
html .nav > li > a#inscrire:focus,
html .nav > li > a#compte,
html .nav > li > a#compte:hover,
html .nav > li > a#compte:focus,
#tabKYC #kyc-submit,
.header .text button[type=submit],
button.invest,
button.next,
button.invest:hover,
button.next:hover,
html body .header button.button {
  border: 2px solid #bca275;
}

#tabKYC #nextKYC,
html .nav > li > a#connexion,
html .nav > li > a#connexion:hover,
html .nav > li > a#connexion:focus,
html .nav > li > a#logout,
html .nav > li > a#logout:hover,
html .nav > li > a#logout:focus,
footer button[type=submit],
button.colorprimButton,
button.prev,
button.colorprimButton:hover,
button.prev:hover,
body .mdl-checkbox.is-checked .mdl-checkbox__box-outline,
[name=typepersonne] {
  border: 4px solid #002050;
}

.levee-container .separate,
#documents,
body .mdl-radio.is-checked .mdl-radio__outer-circle,
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 {
  border-color: #002050;
}

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

.levee-container .separate {
  box-shadow: 1px 1px 2px 1px rgba(16, 16, 16, 0.06);
}

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

/************************************************************ Fin Border set ************************************************************/
/************************************************************ ! Attention ajout d'image = commande png et jpg dans le repertoire ************************************************************/
#header_img,
#header_kycSuccess #header_kycFail #bg_error {
  background-image: url("/img/header1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  width: 100%;
}

#header_img {
  background-image: url("/img/header1.jpg");
}

#header_kycSuccess {
  background: linear-gradient(rgba(100, 100, 100, 0.5), rgba(100, 100, 100, 0.5)), url("/img/business.jpg");
}

#header_kycFail {
  background: linear-gradient(rgba(100, 100, 100, 0.5), rgba(100, 100, 100, 0.5)), url("/img/kycFail.jpg");
}

#bg_error {
  background: linear-gradient(rgba(100, 100, 100, 0.5), rgba(100, 100, 100, 0.5)), url("/img/error.jpg");
}

footer {
  /* background-image: url(/img/footer.jpg); */
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
}

/************************************************************ Fin Background-image ************************************************************/
/************************************************************ Configurer Header  ************************************************************/
#contact_img .text,
#about_img .text,
#map_img .text {
  color: black;
  font-weight: 700;
}

#about_img .text,
#inscription_img .text,
#selectprojet_img .text,
#partenairescif_img .text {
  color: white;
}

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

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

/************************************************************ Background-image ************************************************************/
#logo_tylia {
  height: 257.692px;
  width: 532.858px;
}

/************************************************************ KYC SET ************************************************************/
#logo-ycap .first-word {
  fill: #fff;
}
#logo-ycap .cls-2 {
  fill: #fff;
}
#logo-ycap .cls-3 {
  fill: #bca275;
}
#logo-ycap .cls-4 {
  fill: none;
  stroke: #bca275;
}
#logo-ycap .cls-4,
#logo-ycap .cls-2 {
  stroke-miterlimit: 10;
}
#logo-ycap .cls-2 {
  stroke: #fff;
}

#kyc-header {
  box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.08);
  padding: 25px;
  position: relative;
}

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

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

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

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

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

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

.kyc-body .btn-default.active,
.kyc-body .btn-default.active:hover {
  border: 2px solid #002050;
}

.kyc-body .button-checkbox {
  float: left;
}

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

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

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

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

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

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

.hvisble {
  visibility: hidden;
}

#navigateInfo {
  margin-top: 85px;
}

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

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

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

#idfonctionPolitiquePerso,
#idfonctionPolitiqueFam {
  position: relative;
}

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

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

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

html .portrait ul.check li::before,
html .portrait ul.files li::before {
  display: none;
}
html .check span {
  display: block;
  float: none;
  text-align: center;
}

#header .nav > li > a.head-connexion-button {
  color: #fff;
}

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

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

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

body .inherit {
  position: inherit;
}

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

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

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

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

.tright {
  text-align: right;
}

.tleft {
  text-align: left;
}

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

.relative {
  position: relative;
}

.right {
  float: right;
}

.inline {
  display: inline;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: uppercase;
}

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

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

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

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

.header h2.title {
  color: #fff;
  display: inline;
}

#account-background .text .title {
  color: #002050;
}

html body:focus {
  outline: none;
}

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

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

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

nav li::before,
footer li::before {
  height: 0;
  opacity: 0;
  width: 0;
}

li::before {
  background: #002050 0 0 no-repeat padding-box;
  border-radius: 50px;
  content: "";
  height: 10px;
  left: -20px;
  opacity: 1;
  position: absolute;
  top: 5px;
  width: 10px;
}

li {
  position: relative;
}

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 {
  padding-left: 25px;
  position: relative;
}

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

.block {
  display: block !important;
}

.upper {
  text-transform: uppercase;
}

.hide {
  display: none;
}

.hide-i {
  display: none !important;
}

.justify {
  text-align: justify;
}

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

.pre {
  white-space: pre;
}

.bold {
  font-weight: 700;
}

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

/************************************************************ Fin Outils ************************************************************/
/************************************************************ HEADER ************************************************************/
/************************************************************ HEADER NAVBAR ************************************************************/
.navbar-fixed-top * {
  color: white;
}

body .navbar-fixed-top {
  border-width: 0;
  padding: 15px 0 65px;
}

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

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

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

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

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

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

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

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

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

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

/* .navbar-fixed-top.fixed-theme * {
    padding-top: 5px;
  } */
.navbar-fixed-top.fixed-theme span[class=icon-bar] {
  border-bottom: 2px solid;
  padding-top: 2px;
}

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

.navbar-container.fixed-theme {
  padding: 0;
}

.navbar-brand.fixed-theme,
.navbar-container.fixed-theme,
.navbar.navbar-fixed-top.fixed-theme,
.navbar-brand,
.navbar-container {
  /*  -webkit-transition:  0.8s;
  -o-transition:  0.8s;
  transition:  0.8s;
  */
  height: 70px;
}

a#brand.navbar-brand img:last-child {
  display: none;
}

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

/************************************************************ END NAVBAR ************************************************************/
/************************************************************ HEADER ************************************************************/
#bg_error .content_error,
#particles .content_error {
  color: white;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#bg_error .content_error h1,
#particles .content_error h1 {
  font-size: 24vh;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#bg_error .content_error p,
#particles .content_error p {
  font-size: 2.5vh;
  font-weight: 700;
  margin-top: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ---- stats.js ---- */
.count-particles {
  background: #002;
  color: #13e8e9;
  font-size: 0.8em;
  font-weight: 700;
  left: 0;
  line-height: 14px;
  padding-bottom: 2px;
  position: absolute;
  text-align: left;
  text-indent: 4px;
  top: 48px;
  width: 80px;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  margin-left: 5px;
  margin-top: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/* ---- particles.js container ---- */
.header-levee {
  background-repeat: no-repeat;
  background-size: cover;
  height: 67%;
  position: relative;
}

.header_bottom {
  height: 20%;
  position: relative;
}

.levee-header-bottom #logo {
  background-color: #fff;
  border: 1px solid #002050;
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
  position: relative;
}

#header-container {
  padding: 0;
}

/************************************************************ END HEADER ************************************************************/
/************************************************************ Content HEADER ************************************************************/
.header .text {
  display: block;
  margin: auto;
  max-width: 1050px;
  position: relative;
}
.header .text .jump {
  margin-bottom: 10px;
  margin-top: 10px;
}

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

.header .text h1,
.header .text h2 {
  font-size: 54px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

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

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

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

/************************************************************ END Content HEADER ************************************************************/
/************************************************************ END HEADER ************************************************************/
/************************************************************ BODY SET ************************************************************/
.division:nth-child(even) {
  padding-bottom: 3.125rem;
  padding-top: 4.375rem;
}

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

.section {
  padding-top: 2rem;
}

.section: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: 0px 5px 10px 0px 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 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

body .carousel-indicators {
  bottom: 0;
}

.thumbnail {
  max-height: 435px;
}

.thumbnail p {
  padding: 5px;
}

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

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

form input:focus,
body .bootstrap-select:not([class*=col-], [class*=form-control], .input-group-btn):focus,
.btn-group > .btn:first-child:focus {
  outline: none;
}

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

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

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

form.inscription .bootstrap-select:not([class*=col-], [class*=form-control], .input-group-btn) {
  width: 100%;
}

.form input,
form input,
.form textarea,
form textarea {
  border-bottom: 1px solid #002050;
  margin-bottom: 20px;
  padding: 8px 0;
  width: 100%;
}

form textarea {
  border: 1px solid #002050;
  border-radius: 5px;
  outline: none;
  padding: 20px;
  width: 100%;
}

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

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

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

#mdp_oublie {
  color: #002050;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 21px;
  margin-top: 20px;
  text-align: center;
}

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

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

#presse .date {
  font-family: "Century Gothic";
  font-weight: 700;
  padding: 15px 15px 5px;
}

.press_content img {
  margin: 0 auto;
}

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

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

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

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

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

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

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

#financement {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  width: calc(100% - 150px);
}

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

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

#financement #graduation {
  position: relative;
}

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

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

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

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

#levee-closed {
  /* background-image: url('../img/leveereusssies/new-york-city-556848_1920.jpg'); */
  /*         background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; */
  /*         background-position: center; */
  background-color: #efefef;
}

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

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

/************************************************************ END BODY ************************************************************/
/************************************************************ PROJET SET ************************************************************/
/************************************************************ ! specifier avec div.projectEmbed ex: div.projectEmbed h3{ color:#000000;  } ************************************************************/
div.projectEmbed p {
  min-height: 1px;
}

.levee-table i {
  color: #002050;
  font-size: 20px;
}

/************************************************************ END PROJET SET ************************************************************/
/************************************************************ FOOTER SET ************************************************************/
footer {
  padding-top: 5rem;
  /* padding-bottom: 1.125rem; */
}

footer {
  background-color: #002050;
  background-position: 95% 20%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  /* margin-top: 35px; */
}

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 input[type=text]:focus {
  border-bottom: 1px solid black;
}

footer button[type=submit] {
  background: none;
  margin-top: 5px;
  width: 100%;
}

footer #social {
  background: white;
  box-shadow: 0 -5px 10px 0 rgba(155, 155, 155, 0.25);
  display: block;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: absolute;
  top: 0;
  width: 100%;
}

footer #social .container {
  width: 285px;
}

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

footer hr {
  border-radius: 50px;
  border-width: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  width: 100px;
}

footer ul {
  padding-left: 0;
}

footer ul li a {
  display: block;
}

body .levee-header-bottom-container-details-invest-mobile {
  display: none;
}

@media (min-width: 768px) {
  .cgp-form-information form button[type=submit] {
    position: absolute;
    right: 0;
  }
}
.cgp-form-sign form button[type=submit] {
  float: right;
}

/************************************************************ END FOOTER ************************************************************/
/************************************************************ Tablette set ************************************************************/
@media (max-width: 1024px) {
  .header {
    background-size: auto !important;
  }
  .client-table-area {
    overflow: scroll;
  }
  .disclaimer {
    font-family: "Century Gothic";
    text-align: justify;
  }
  .levee-header-bottom-container-details-information {
    left: -102px;
  }
  body .levee-announce-info-domaine {
    bottom: -244px;
    left: 202px;
    top: 125px;
  }
  .page #levees > col-md-12 {
    padding-left: 0;
  }
  body .levee-header-bottom-container-details-invest-mobile {
    display: block;
    margin-left: 25px;
    position: relative;
    top: 15px;
  }
  html body .levee-header-bottom-container-details-invest-mobile button {
    height: 55px;
    width: 100%;
  }
  body .levee-header-bottom {
    height: 425px;
    position: relative;
  }
  .levee-header-bottom-container-details-information .capital {
    font-size: 16px;
    right: -127px;
    top: -17px;
    /* width: 100%; */
  }
  .levee-header-bottom-container-details-information .domaine {
    font-size: 16px;
    left: 127px;
    position: absolute;
    top: 17px;
  }
  body .projectEmbed .limit_word {
    margin-bottom: 0;
    top: 0;
  }
  body .projectEmbed + .container {
    padding: 0;
  }
  body .levee-header-bottom-container-details {
    margin: 0;
  }
  body .levee-header-bottom-container-box-notif {
    bottom: -41px;
    margin-left: 25px;
    position: relative;
  }
  html body .projectEmbed div.sticky.box {
    position: relative;
  }
  .container.projectEmbed {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
  body .cgp-content-cursor.active {
    width: 100%;
  }
  body .table-container.data-list {
    margin-top: 25px;
    max-width: 100%;
    overflow-x: scroll;
  }
  html body {
    font-size: 16px;
  }
  .container.small-container {
    padding-left: 15px;
    padding-right: 15px;
    width: inherit;
  }
  body .header .state-content-cursor {
    padding: 0 15px;
    width: 100%;
  }
  #header-container {
    padding: 0;
    width: 100%;
  }
  .header .text h1,
  .header .text h2 {
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .navbar-brand svg {
    margin-left: 15px;
  }
  body .footer-link-info-icon {
    left: 0;
  }
  body .footer-content-logo-image {
    flex: 0.4;
  }
  body .footer-link li {
    font-size: 18px;
    height: auto;
    padding-left: 0;
    text-align: left;
  }
  body .account-sidebar {
    padding-left: 0;
    padding-right: 0;
  }
  body .account-sidebar-list li::after {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  #logo_tylia {
    height: 227.692px;
    width: 392.858px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .header {
    background-size: auto !important;
  }
  body .google-map {
    height: 50vh;
    left: 0;
    position: relative;
    width: 100%;
  }
  #header_img {
    height: 100%;
    position: relative;
  }
  #contact_img,
  #about_img,
  #question_img,
  #ccm_img,
  #map_img,
  #selectprojet_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  .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 {
    position: absolute;
    top: 135px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 40px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  footer {
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
  }
  .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;
  }
  footer {
    background-position: 95% 20%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
  }
  html body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body .nav.nav-pills > li {
    width: 100%;
  }
  html body ul.nav.nav-pills {
    text-align: center;
  }
  form.contact {
    margin-bottom: 50px;
  }
  html body .illustration {
    margin: 40px 0;
    position: relative;
  }
  .header .text .mdl-textfield {
    width: auto;
  }
  #presse.division {
    background-size: auto;
  }
  button.invest {
    margin: 35px 0;
  }
  html body div.sticky.box {
    position: relative;
    top: 0;
  }
  html body .toggle {
    align-items: flex-start;
    /* optional */
    -webkit-box-align: start;
    display: flexbox;
    display: flex;
    -ms-flex-align: start;
    flex-direction: column;
  }
  html body .toggle > div:nth-of-type(1) {
    order: 2;
  }
  html body .toggle > div:nth-of-type(2) {
    order: 1;
  }
}
@media (max-width: 1024px) {
  body .google-map {
    height: 50vh;
    left: 0;
    position: relative;
    width: 100%;
  }
  #header_img {
    height: 100%;
    position: relative;
  }
  #contact_img,
  #about_img,
  #question_img,
  #ccm_img,
  #map_img,
  #selectprojet_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  .center_col {
    border-left: none;
    border-right: none;
  }
  .levee-container .text {
    left: 30px;
    position: absolute;
    text-align: left;
    top: 60px;
    width: 90%;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  #kyc-header * {
    display: inline-block;
    margin: 0;
  }
  #kyc-header {
    box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.08);
    padding: 25px 10px;
    position: relative;
  }
  #kyc-header .bar {
    border-radius: 100px;
    height: 5px;
    margin-left: 10px;
    position: relative;
    width: 35px;
  }
  dropdown-content span:hover,
  .dropdown-content a:hover,
  .dropdown-content span:hover,
  .dropdown-content a:hover span {
    background-color: initial;
    color: initial;
  }
  .header {
    background-size: auto 100%;
  }
  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-bottom: 50px;
    position: relative;
    transition: none;
  }
  .levee-container:hover {
    bottom: 0;
  }
  #header_img {
    height: 100%;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  .center_col {
    border-left: none;
    border-right: none;
    margin: 40px 0;
  }
  .levee_bottom {
    padding: 0 10px;
    position: relative;
  }
  .levee-container .text {
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    top: 46px;
    width: 100%;
  }
  .levee-container .separate {
    position: absolute;
    top: 135px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .bar .pourcent_bar {
    border-radius: 200px;
    height: 10px;
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  body .contenu1 > div {
    padding: 5px;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 35px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  .header .text input[type=text],
  .header .text button[type=submit] {
    width: 75%;
  }
  .division.header_bottom {
    padding: 0;
  }
  .division.bandeaufin {
    background-image: url("/img/bandeaudefin.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 20px;
    padding-top: 30px;
  }
  html footer ul {
    padding: 0;
  }
  html footer ul li {
    text-align: center;
  }
  body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body #exTab1 .panel-group .panel.panel-default .levee-details {
    display: block;
    float: none;
    top: 0;
  }
  body #page_connexion div {
    width: 100%;
  }
  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[class~=fixed-theme] a#brand.navbar-brand img:nth-child(3) {
    display: none;
  }
  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;
    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;
  }
  body .j_restant::before {
    margin-right: 5px;
    right: 0;
  }
  .levee-header-bottom #logo {
    border: 1px solid rgba(170, 170, 170, 0.5);
    border-radius: 5px;
    display: inline-block;
    left: -15px;
    position: absolute;
    top: -160px;
  }
  #financement {
    display: inline-block;
    padding-left: 0;
    position: relative;
    width: 100%;
  }
  .header-levee.header .levee-fiscalite {
    position: absolute;
    right: 13px;
  }
  .division:nth-child(odd).separate:not(.header_bottom) {
    padding-bottom: 3.125rem;
    padding-top: 4.375rem;
  }
  html body div.container div.division:last-child {
    border-bottom: none;
  }
  .levee-details {
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
  }
  .levee-details *:not(p) {
    text-align: left;
  }
  div[class~=fixed-theme] a#brand.navbar-brand img:nth-child(2) {
    display: inline;
    top: 1px;
    width: initial;
  }
  .separate_mobile {
    margin-bottom: 50px;
  }
  html .nav > li > a.active {
    border-bottom: none;
  }
  html .navbar-nav {
    float: none;
    margin: 0;
    text-align: center;
  }
  html .navbar-collapse {
    padding-right: 60px;
  }
  .center_mobile {
    text-align: center;
  }
  #page_connexion div form {
    padding: 20px;
  }
  #page_connexion div:not(.mdl-textfield) {
    width: 100%;
  }
  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: 1024px) {
  .levee-container .separate {
    position: absolute;
    top: 135px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 40px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  footer {
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
  }
  .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;
  }
  footer {
    background-position: 95% 20%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
  }
  html body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body .nav.nav-pills > li {
    width: 100%;
  }
  html body ul.nav.nav-pills {
    text-align: center;
  }
  form.contact {
    margin-bottom: 50px;
  }
  html body .illustration {
    margin: 40px 0;
    position: relative;
  }
  .header .text .mdl-textfield {
    width: auto;
  }
  #presse.division {
    background-size: auto;
  }
  button.invest {
    margin: 35px 0;
  }
  html body div.sticky.box {
    position: relative;
    top: 0;
  }
  html body .toggle {
    align-items: flex-start;
    /* optional */
    -webkit-box-align: start;
    display: flexbox;
    display: flex;
    -ms-flex-align: start;
    flex-direction: column;
  }
  html body .toggle > div:nth-of-type(1) {
    order: 2;
  }
  html body .toggle > div:nth-of-type(2) {
    order: 1;
  }
}
/************************************************************ END Tablette set ************************************************************/
/************************************************************ Mobile Set ************************************************************/
@media (max-width: 767px) {
  #kyc-header * {
    display: inline-block;
    margin: 0;
  }
  #kyc-header {
    box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.08);
    padding: 25px 10px;
    position: relative;
  }
  #kyc-header .bar {
    border-radius: 100px;
    height: 5px;
    margin-left: 10px;
    position: relative;
    width: 35px;
  }
  dropdown-content span:hover,
  .dropdown-content a:hover,
  .dropdown-content span:hover,
  .dropdown-content a:hover span {
    background-color: initial;
    color: initial;
  }
  .header {
    background-size: auto 100%;
  }
  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-bottom: 50px;
    position: relative;
    transition: none;
  }
  .levee-container:hover {
    bottom: 0;
  }
  #header_img {
    height: 100%;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
  .header_bottom {
    height: 10%;
  }
  .center_col {
    border-left: none;
    border-right: none;
    margin: 40px 0;
  }
  .levee_bottom {
    padding: 0 10px;
    position: relative;
  }
  .levee-container .text {
    left: 0;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    top: 46px;
    width: 100%;
  }
  .levee-container .separate {
    position: absolute;
    top: 135px;
    width: 100%;
  }
  .levee-container .pourcentage {
    font-size: 17px;
    left: 30px;
    position: absolute;
    top: 145px;
  }
  .levee-container .bar {
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 50px;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 190px;
    width: calc(100% - 60px);
  }
  .levee-container .bar .pourcent_bar {
    border-radius: 200px;
    height: 10px;
  }
  .levee-container .graduation {
    left: 25px;
    position: absolute;
    top: 168px;
    width: 100%;
  }
  .levee-container .graduation span:nth-child(1) {
    left: 1%;
    position: absolute;
  }
  body .contenu1 > div {
    padding: 5px;
  }
  .levee-container .graduation span:nth-child(2) {
    left: calc(50% - 35px);
    position: absolute;
  }
  .levee-container .graduation span:nth-child(3) {
    left: calc(100% - 90px);
    position: absolute;
  }
  .header .text input[type=text],
  .header .text button[type=submit] {
    width: 75%;
  }
  .division.header_bottom {
    padding: 0;
  }
  .division.bandeaufin {
    background-image: url("/img/bandeaudefin.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 20px;
    padding-top: 30px;
  }
  html footer ul {
    padding: 0;
  }
  html footer ul li {
    text-align: center;
  }
  body .nav.nav-pills > li > a {
    display: block;
    padding: 20px 10px;
    position: relative;
  }
  html body #exTab1 .panel-group .panel.panel-default .levee-details {
    display: block;
    float: none;
    top: 0;
  }
  body #page_connexion div {
    width: 100%;
  }
  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[class~=fixed-theme] a#brand.navbar-brand img:nth-child(3) {
    display: none;
  }
  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;
    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;
  }
  body .j_restant::before {
    margin-right: 5px;
    right: 0;
  }
  .levee-header-bottom #logo {
    border: 1px solid #002050;
    border-radius: 5px;
    display: inline-block;
    height: 114px;
    left: 15px;
    position: absolute;
    top: -35px;
    width: 114px;
  }
  #financement {
    display: inline-block;
    padding-left: 0;
    position: relative;
    width: 100%;
  }
  .header-levee.header .levee-fiscalite {
    position: absolute;
    right: 13px;
  }
  .division:nth-child(odd).separate:not(.header_bottom) {
    padding-bottom: 3.125rem;
    padding-top: 4.375rem;
  }
  html body div.container div.division:last-child {
    border-bottom: none;
  }
  .levee-details {
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
  }
  .levee-details *:not(p) {
    text-align: left;
  }
  div[class~=fixed-theme] a#brand.navbar-brand img:nth-child(2) {
    display: inline;
    top: 1px;
    width: initial;
  }
  .separate_mobile {
    margin-bottom: 50px;
  }
  html .nav > li > a.active {
    border-bottom: none;
  }
  html .navbar-nav {
    float: none;
    margin: 0;
    text-align: center;
  }
  html .navbar-collapse {
    padding-right: 60px;
  }
  .center_mobile {
    text-align: center;
  }
  #page_connexion div form {
    padding: 20px;
  }
  #page_connexion div:not(.mdl-textfield) {
    width: 100%;
  }
  body .containerFollow {
    display: block;
    position: relative;
  }
  body .containerFollow > div,
  body .containerFollow > div:first-child,
  body .containerFollow > div:last-child {
    padding: 0;
  }
  .containerFollow div img {
    display: block;
    margin: 15px auto;
  }
  body .containerFollow > div::after {
    content: url("/img/bottom-arrow.png");
    left: 46%;
    position: relative;
  }
}
/************************************************************ END Mobile Set ************************************************************/
/************************************************************ Mobile Set mode Paysage ************************************************************/
@media (max-width: 768px) and (orientation: landscape) {
  .header {
    background-size: auto;
  }
  #contact_img,
  #about_img {
    height: 55%;
  }
}
/************************************************************ END Mobile Set mode Paysage ************************************************************/
/************************************************************ MODAL ************************************************************/
body .modal-content {
  font-family: "Century Gothic";
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  position: relative;
}

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

#alert {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

button.invest,
button.next {
  font-family: "Century Gothic";
  margin-top: 35px;
  padding: 12px 24px;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
  z-index: 17;
}

button.fileDDL.next,
button.fileDDL.next:hover {
  background-color: #bca275;
  border: none;
}

button.invest:hover,
button.next:hover {
  color: #fff;
}

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

button.colorprimButton,
button.prev {
  background: transparent;
  font-family: "Century Gothic";
  font-weight: 700;
  margin-top: 0;
  padding: 12px 24px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.5s, background-color 0.5s;
  width: 100%;
  z-index: 17;
}

button.colorprimButton:hover,
button.prev:hover {
  color: #fff;
}

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

.pills_project ul {
  position: sticky;
}

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

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

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

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

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

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

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

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

#documents {
  border-style: dashed;
  border-width: 2px;
  padding: 15px 15px 15px 25px;
  text-align: left;
}

#documents ul {
  list-style: none;
  padding: 0;
}

#documents ul li h4::before {
  content: "\f15c";
  font-family: FontAwesome;
  position: relative;
  right: 10px;
}

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

.decompte {
  position: absolute;
  right: 10px;
  top: 180px;
}

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

#capital_s::before {
  content: "\f19c";
  font-family: FontAwesome;
}

#domaine + p#techno::before {
  content: "\f085";
  font-family: FontAwesome;
}

#capital_s::before,
#domaine + p#techno::before {
  font-size: 15px;
  margin-right: 5px;
}

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

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

body #accordion .panel-title {
  font-family: "Century Gothic";
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.red {
  color: #e92b2b;
}

.blue {
  color: #002050;
}

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

.star-alert,
p#password_equals {
  color: red;
}

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

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

#bar_sticky {
  position: sticky;
}

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

.element {
  z-index: 17;
}

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

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

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

.title_docs {
  text-align: left;
}

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

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

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

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

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

.kyc-body select.ui.dropdown {
  border: 2px solid #002050;
  box-shadow: none;
  height: 40px;
  margin: 25px 0;
  max-width: 100%;
  text-transform: uppercase;
  width: 100%;
}

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

.container.projet .modal-dialog {
  margin: 10px 5px;
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

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

body .mdl-checkbox {
  cursor: pointer;
  display: inline-table;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-underline {
  /* float: left; */
  margin: 50px 0;
  width: 100%;
}

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

.underline-white {
  position: relative;
}

.underline-white::before {
  background-color: #fff;
  content: " ";
  display: block;
  height: 2px;
  position: absolute;
  top: 20px;
  width: 100%;
}

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

form#login button[type=submit] {
  display: none;
}

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: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  opacity: 0.85;
  width: 100%;
}

/* @media (max-width: 1024px) {
    .navbar-header {
      display: none;
    }
  } */
#HomeVideo {
  background-color: #000;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#HomeVideo #voile {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  background-repeat: no-repeat;
  background-size: cover;
}

#HomeVideo.header .text {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
}

/** Dropdown **/
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  display: none;
  min-width: 160px;
  position: absolute;
  z-index: 1;
}

.dropdown-content span,
.dropdown-content a {
  cursor: pointer;
  display: block;
  padding: 5px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.derriere span {
  font-family: "Century Gothic";
  font-size: 18px;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ul.list li {
  display: block;
}

ul.list li::before {
  display: none;
}

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 {
  list-style: none;
  padding: 0;
}

.ticket div {
  float: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  font-family: "Century Gothic";
  font-weight: 700;
}

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

.accordion-toggle {
  cursor: pointer;
}

.box-notif {
  background-color: rgb(240, 240, 240);
  border-radius: 10px;
  color: #6b6b6b;
  font-family: "Century Gothic";
  font-weight: 500;
  padding: 20px;
  word-wrap: break-word;
}

.box-notif-error p {
  font-size: 16px;
}

div.mdl-textfield label[for=actionslettres].mdl-textfield__label {
  font-family: "Century Gothic";
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

body .mdl-textfield__label.bold {
  font-weight: 700;
}

#goKyc {
  width: 100%;
}

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

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

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

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

.cookie-container {
  background-color: #002050;
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  padding: 10px 25px;
  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;
}

.inscription-button-disabled {
  margin: 0 5px;
  opacity: 0.5;
}

.inscription-button {
  margin: 0 3px;
  width: 220px;
}

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

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

.inscription-button:hover,
.inscription-button.active {
  background-color: #bca275;
  color: #fff;
}

.download-button:hover,
.download-button.active {
  background-color: #bca275;
}

.inscription-form {
  display: none;
}

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

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

body .mdl-textfield.is-disabled .mdl-textfield__input,
body .mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
  border-color: #002050;
  color: #002050;
  cursor: not-allowed;
  max-width: 100%;
  width: 100%;
}

.required-helper {
  color: #bca275;
  display: none;
}

@media (min-width: 1300px) {
  body .min-container {
    width: 650px;
  }
}
@media (max-width: 1300px) {
  body .step-container {
    overflow: hidden;
  }
  body .step-container .step-part:not(:last-child)::after {
    left: 0;
    width: 100vw;
  }
}
.google-map {
  height: 295px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

.client-table,
.invest-table {
  border: 1px solid #002050;
  border-color: #eeeef3;
  width: 100%;
}

.ticket-table .projet {
  color: #002050;
  font-weight: 500;
}

.ticket-table .entreprise {
  background-color: #f0f0f0;
}

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

.client-table thead tr {
  background-color: #002050;
  color: #fff;
}

.client-table thead th {
  border-right: 1px solid #fff;
  font-weight: 300;
  padding: 10px 18px;
}

.client-table thead th:last-child {
  border-right: none;
}

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

.client-table th,
.invest-table th {
  padding: 5px;
  text-align: left;
  text-transform: uppercase;
}

.client-table td,
.invest-table td {
  border: 1px solid #002050;
  font-weight: 500;
  max-width: 500px;
  overflow: hidden;
  padding: 5px;
  position: relative;
  text-overflow: ellipsis;
}

.client-table tr td.bold {
  font-weight: 600;
}

.client-table td,
.invest-table td {
  padding-left: 18px;
}

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

.client-table td.blue {
  color: #002050;
}

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

.client-table td.resend {
  font-size: 12px;
  line-height: 19px;
}
.client-table td.resend button {
  border-radius: 6px;
  font-weight: 300;
  margin: auto;
  min-width: 10%;
  padding: 8px 25px;
  text-transform: none;
}
.client-table td.resend p {
  line-height: 19px;
  margin: 0;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

.nav > li > a.head-connexion-button,
.nav > li > a.head-inscription-button {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.81px;
  margin-right: 15px;
  margin-top: 0;
  text-align: center;
  -webkit-text-decoration: auto;
          text-decoration: auto;
  text-transform: none;
  width: 154px;
}

.fixed-theme .nav > li > a.head-connexion-button,
.fixed-theme .nav > li > a.head-inscription-button {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.81px;
  margin-right: 15px;
  margin-top: 0;
  text-align: center;
  text-transform: none;
}

.nav > li > a.head-inscription-button {
  color: #000;
}

.checkboxToRadio i {
  display: none;
}

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

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

.button-both {
  display: flexbox;
  display: flex;
}

.button-both:first-child {
  margin-right: 25px;
  width: 100%;
}

.button-both:last-child {
  width: 100%;
}

.button-black {
  border: 2px solid #002050;
  font-weight: 700;
  height: 40px;
  margin-top: 20px;
}

.button-red {
  background-color: transparent;
  border: 2px solid #002050;
  color: #002050;
  font-weight: 700;
  height: 40px;
  margin-top: 20px;
}

.file-text {
  border: 2px solid #002050;
}

body .mdl-textfield.is-invalid .mdl-textfield__input {
  border-bottom: 1px solid #002050;
  border-radius: 0;
}

body .kyc-form-body .mdl-textfield__input.is-invalid {
  border-bottom: 1px solid #bca275;
}

div.is-invalid input[type=radio][required] + span + span {
  border-color: #bca275;
}

body select.is-invalid.ui.dropdown {
  border-color: #bca275;
}

.mdl-textfield textarea.mdl-textfield__input {
  height: 140px;
}

body .mdl-textfield--floating-label.is-invalid .mdl-textfield__label,
body .mdl-textfield__error {
  color: #002050;
  font-family: "Century Gothic";
  font-size: 11px;
}

body textarea.mdl-textfield__input + .mdl-textfield__label::after {
  display: none;
}

.message-container {
  background-color: #002050;
  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;
}

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

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

.view-client-instruction {
  padding: 5px 0;
}

body .p-0 {
  padding: 0;
}

body .m-0 {
  margin: 0;
}

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

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

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

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

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

.client-table-control input {
  border: 1px solid #002050;
  color: #6b6b6b;
  padding: 5px 15px;
}

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

.client-table .sort::after {
  content: "\f2d1";
  font-family: fontAwesome;
  font-size: 11px;
  position: relative;
  right: -8px;
  top: -4px;
}

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

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

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

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

.ticket-table tbody tr:hover,
.ticket-table tbody tr:hover td {
  background-color: #f0f0f0;
}

.pb-30 {
  margin-bottom: 15px;
  padding-bottom: 35px;
}

input[readonly] {
  cursor: not-allowed;
}

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

.cookie-container-button {
  background-color: #bca275;
  border: none;
  padding: 2px 5px;
}

/* Topbar */
body .navbar-toggle {
  float: right;
  position: relative;
  right: 0;
}

body .navbar-fixed-top.fixed-theme span[class=icon-bar] {
  border-bottom: none;
  padding-top: 2px;
  position: relative;
  top: 5px;
}

@media (max-width: 767px) {
  body .dropdown .dropdown-content {
    box-shadow: none;
    display: none;
    left: 0;
    position: relative;
    right: 0;
    transform: none;
  }
  body .dropdown-content span {
    border: none;
    padding: 0 5px;
    text-align: left;
    text-transform: none;
  }
  body .dropdown:hover .dropdown-content {
    display: none;
  }
  body .nav > li.topbar-user a {
    text-align: center;
  }
  body .navbar-fixed-bottom .navbar-collapse,
  body .navbar-fixed-top .navbar-collapse {
    background-color: #002050;
    height: initial !important;
    padding-top: 25px;
    position: relative;
    top: 11px;
  }
  body .navbar > .container .navbar-brand,
  body .navbar > .container-fluid .navbar-brand {
    left: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  body .fixed-theme .navbar-brand > img {
    position: relative;
    top: -12px;
  }
  html .navbar-nav {
    display: flexbox;
    display: flex;
    flex-direction: column;
    float: none;
    margin: 0;
    position: relative;
    text-align: center;
  }
  html .nav > li > a {
    border-bottom: none;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    transition: none;
  }
  body .nav > li:last-child {
    margin-bottom: 25px;
  }
  body .nav > li {
    margin-left: 0;
    margin-right: 0;
  }
  body .navbar-nav > li {
    float: none;
  }
  html .navbar-collapse {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .navbar-fixed-top.fixed-theme * {
    border: none;
  }
  html body li.border-less,
  html body .border-less {
    border: none;
  }
  body .nav > li.topbar-user a {
    text-align: center;
  }
  body .nav > li.topbar-connexion {
    left: 70%;
    transform: translateX(-50%);
  }
  body .nav > li.topbar-inscription {
    left: 30%;
    transform: translateX(-50%);
  }
  body .nav > li.topbar-connexion,
  body .nav > li.topbar-inscription {
    border: none;
    -webkit-box-ordinal-group: 0;
    display: inline-block;
    order: -1;
    position: absolute;
  }
  body .nav > li.topbar-connexion a,
  body .nav > li.topbar-inscription a {
    min-width: 105px;
    padding: 5px;
    text-align: center;
  }
}
.account-sidebar-list-link,
.link-full {
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.link-full-contact {
  cursor: pointer;
  inset: -10px 15px 5px;
  position: absolute;
}

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

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

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

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

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

.inscription-alert {
  display: none;
}

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

.view-client-window {
  margin: 35px auto 0;
}

.head-division {
  height: 20%;
  padding-bottom: 3.125rem;
  padding-top: 4.375rem;
  position: relative;
}

.head-division * {
  position: relative;
  top: 30%;
  width: 100%;
}

.header-levee .text *:not(i) {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

.header-levee .text h1,
.header-levee .text h2 {
  text-shadow: 0 2px 5px #000;
}

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

.code-placement-container-button {
  background-color: #bca275;
  border: 1px solid #bca275;
  color: #fff;
  height: 45px;
  width: 45px;
}

.code-placement-container-input {
  border: 1px solid #eee;
  bottom: 35px;
  color: #000;
  height: 45px;
  margin: 0;
  padding: 8px 45px 8px 10px;
  width: 325px;
}

.code-placement-container {
  display: flex;
  justify-content: center;
}

.header-presentation {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.home-header {
  background-image: url("/img/home_header.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
  word-break: break-word;
  z-index: 0;
}

.home-header-content {
  margin: auto;
  z-index: 2;
}

.home-header-content .code-placement-container {
  margin: 0 auto;
}

.home-header-content-sentence-brend {
  font-size: 72px;
  margin: 10px 15px;
}

.home-header-content-sentence-title {
  font-size: 33px;
  font-weight: normal;
  margin: auto;
  text-transform: inherit;
  width: 424px;
}

.home-header-content-title {
  font-family: "Century Gothic";
  font-size: 1.5rem;
  font-weight: 300;
  margin: 50px 15px;
  text-transform: inherit;
}

.home-header-content-title.space-between-letter {
  font-size: 22px;
}

body .button-empty-red {
  background-color: transparent;
  border: 2px solid rgb(28, 28, 60);
  border-radius: 10px;
  transition: background-color 0.5s ease;
}

body .button-empty-red:hover {
  background-color: #bca275 !important;
  color: #fff;
}

.button-full-white-color {
  background-color: #fff;
  border: none;
  border-radius: 3px;
  color: #002050;
}

.button-full-original-color-deep {
  background-color: #bca275;
  border: none;
  border-radius: 3px;
}

.home-header-content-button {
  display: inline;
  font-size: 16px;
  font-weight: bold;
  height: 72px;
  letter-spacing: 1.18px;
  min-width: 230px;
  padding: 10px 25px;
}

.home-header-content-max {
  max-width: 640px;
  position: relative;
  top: 20px;
}

.f-red {
  color: rgb(255, 0, 1);
}

@media (max-width: 1024px) {
  .home-header-content-sentence-brend {
    font-size: 25px;
    margin: 10px 15px;
  }
  body .inscription-button {
    margin: 0 3px;
    width: 100%;
  }
  .home-header-content-button {
    margin: 20px 15px -5px;
  }
  .home-header-content-button {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .home-header-content-title {
    font-size: 22px;
  }
  .home-header-content-title-description + .home-header-content-title {
    font-size: 22px;
    padding: 0 20px;
  }
  .account-sidebar-list li {
    color: transparent;
    font-size: 0;
    width: 0;
  }
}
@media (max-width: 320px) {
  body .home-header-content-button {
    margin: 20px 3px;
  }
  body #logo_tylia {
    height: 170.692px;
    width: 265px;
  }
}
@media (max-width: 767px) {
  body .levee-announce-info {
    height: 100%;
    width: 100%;
  }
  .client-table td.etat {
    padding: 5px;
  }
  .data-list-target-close {
    right: 0;
  }
  .client-table-control,
  .client-table-control .search {
    width: 100%;
  }
  .levee-header-bottom-container-details-information {
    left: 0;
  }
  body .levee-header-bottom-container-details-invest-mobile {
    margin-left: 0;
  }
  body .account-sidebar {
    max-width: 15%;
  }
  body #header + .header {
    height: 250px;
  }
  .navbar-nav .underline-white::before {
    display: inline;
  }
  body .radio-line-container-element .mdl-radio__ripple-container {
    left: -16px;
  }
  html body .navbar-fixed-top {
    border-width: 0;
    padding: 0;
  }
  html body .navbar-fixed-top .navbar-collapse {
    top: 0;
  }
  body .navbar-brand svg {
    margin-left: 15px;
    width: 165px;
  }
  html body .navbar-toggle {
    background-color: #bca275;
    border-radius: 0;
    float: right;
    height: 70px;
    margin: 0;
    position: relative;
    right: 0;
    width: 70px;
  }
  body .cgp-form-sign.active {
    padding: 0;
  }
  body .mdl-textfield__label::after {
    display: none;
  }
  .account-content-section-form.graph .account-content-section-form-title {
    position: relative;
    top: -80px;
  }
  .account-content-section .account-content-section-form {
    padding: 0 10px;
  }
  .account-content-section-form .account-content-section-form-title {
    margin-bottom: 25px;
    margin-left: -10px;
    margin-right: -11px;
    position: relative;
  }
  .code-placement-container-button {
    right: 17px;
  }
  .account-content canvas {
    margin-top: 30px;
    max-width: 100%;
  }
  body .account-content {
    max-width: 85%;
    padding: 0 15px;
  }
  body .account-content {
    width: 100%;
  }
  .nav > li > a.head-inscription-button {
    color: #000;
  }
  .col-md-12.cgp-form-information {
    padding: 0;
  }
  .col-md-12.cgp-form-information .pl-0 {
    padding-left: 15px;
  }
  .col-md-12.cgp-form-information .pr-0 {
    padding-right: 15px;
  }
  #kyc-cgp .dual-radio {
    width: 300px;
  }
  body .cgp-form-files > .row {
    margin: 0;
  }
  body .cgp-form-files button[type=submit] {
    margin-right: 15px;
  }
  body .kyc-form h1.upper {
    font-size: 24px;
  }
  body .account-sidebar-list li {
    padding: 10px 25px;
  }
  body .account-content-section-form {
    padding: 0;
  }
  form button[type=submit] {
    margin: 0 auto;
  }
  body .mdl-radio.is-upgraded {
    overflow-wrap: break-word;
  }
  body .levee-announce-info-capital {
    top: 45px;
  }
  .levee-announce-info .levee-announce-info-logo {
    height: 105px;
    top: 55px;
    width: 105px;
  }
  body .levee-announce-info-capital,
  body .levee-announce-info-domaine {
    font-size: 14px;
    left: auto;
    right: 5px;
  }
  body .levee-announce-info-name {
    left: 0;
  }
  body .levee-announce-info-name h4 {
    font-size: 18px;
    left: 5px;
    top: -35px;
  }
  body .levee-announce-info-domaine {
    top: 65px;
  }
  body .levee-announce-container-button {
    right: 5px;
    top: 45px;
  }
  body .levee-announce-container-button button {
    max-width: inherit;
    min-width: 128px;
    width: 75px;
  }
  body .sail-gray.active {
    top: 0;
  }
  .radio-line-container-element .mdl-radio__outer-circle {
    left: -15px;
  }
  .radio-line-container-element .mdl-radio__inner-circle {
    left: -11.7px;
  }
  body .kyc-form-body div.radio-line-container {
    margin: 0;
  }
  body .kyc-form-body div.radio-line-container {
    display: inline-block;
  }
  body .radio-line-container-element {
    float: left;
    height: 80px;
    width: 50%;
  }
  body .radio-line-container-element::before {
    display: none;
  }
  body .kyc-form-container .kyc-form-button-previous {
    left: 25px;
  }
  body .kyc-form-container .kyc-form-button-next,
  body .kyc-form-container .kyc-form-button-previous {
    min-width: 95px;
  }
  body .kyc-form-container .kyc-form-button-next {
    right: 25px;
  }
  html body .kyc-form {
    padding: 0 10px;
  }
  .navbar-fixed-top.fixed-theme a {
    text-align: center;
  }
  .home-header-content-sentence-title {
    width: 100%;
  }
  .home-header-content-button {
    display: flex;
    flex-direction: row;
    font-size: 18px;
    gap: 10px;
    height: 50px;
    margin: 20px auto;
    min-width: 135px;
    padding: 5px 15px;
  }
  #logo_tylia {
    height: 200.692px;
    width: 300px;
  }
  .home-header-content-sentence-title {
    font-size: 22px;
    line-height: normal;
  }
  body .home-header-content h3.home-header-content-title:first-of-type {
    font-size: 22px;
    line-height: normal;
    margin: 25px 15px 50px;
  }
  .header .text h1,
  .header .text h2 {
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
  }
  body #page_connexion {
    width: 100%;
  }
  .inscription-button-container {
    display: block;
  }
  body .inscription-button {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }
  .home-header-content-title-description + .home-header-content-title {
    font-size: 16px;
    line-height: normal;
  }
}
@media (min-width: 1200px) {
  #header-container {
    margin: 0 50px;
    width: auto;
  }
}
body .navbar > .container .navbar-brand,
body .navbar > .container-fluid .navbar-brand {
  align-items: center;
  display: flex;
  margin-left: 0;
  padding: 0;
}
body .navbar > .container .navbar-brand.hide,
body .navbar > .container-fluid .navbar-brand.hide {
  display: none;
}

.navbar.navbar-fixed-top.fixed-theme {
  background-color: #002050;
}

.sail {
  background-color: #fff;
  display: flex;
  inset: 0;
  position: fixed;
  z-index: 100;
}

.sail-sentence {
  margin: auto;
  text-align: center;
}

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

.space-top-bottom {
  margin: 50px 0;
}

.space-between-letter {
  line-height: 35px;
}

.step-target-container {
  margin-bottom: 20px;
}

.head-division.title-underline * {
  padding: 0;
}

.header_random.quarter {
  height: 25%;
}

.yantramanavregular {
  font-family: "Century Gothic";
}

.dropdown {
  min-width: 130px;
}

.m-center {
  margin: auto;
}

.cni-kyc-form {
  /* max-width: 500px; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.no-padding-parent {
  margin-left: -15px;
  margin-right: -15px;
}

.financepart {
  margin: 150px 0 50px;
}

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

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

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

ol,
ul {
  font-size: 16px;
}

#page_connexion {
  width: 440px;
}

.subtitle {
  font-family: "Century Gothic";
  font-weight: bold;
  margin-bottom: 100px;
  margin-top: 30px;
  text-align: center;
}

.header .ontitle {
  color: #fff;
  font-weight: 400;
  position: absolute;
  top: -65px;
}

.header .subtitle {
  color: #bca275;
  margin: 0;
}

.subtitle-link-title {
  color: #fff;
  font-family: "Century Gothic";
  font-weight: bold;
}

@media (min-width: 1024px) {
  .container.small-container {
    /* width: 857px; */
    width: 910px;
  }
  .form-medium {
    margin: 0 auto;
    max-width: 700px;
  }
  .form-small {
    margin: 0 auto;
    width: 322px;
  }
}
.jc-center {
  justify-content: center;
}

.m-left {
  margin-left: auto;
}

.m-right {
  margin-right: auto;
}

.icon-contact {
  height: 30px;
}

label span {
  font-size: 14px;
  font-weight: 400;
}

.home-header-content-logo-sign {
  bottom: 25px;
  position: absolute;
  right: 25px;
  width: 200px;
}

.footer-content-logo-image {
  background-color: #fff;
  display: none;
  flex: 0.1;
  padding: 25px;
}

.footer-content-logo-acpr {
  display: flex;
  flex: 0.9;
  text-align: center;
}

.footer-content-logo-acpr-text {
  display: none;
  margin: auto;
}

.footer-content-logo {
  border-top: 1px solid #fff;
  margin-top: 15px;
}

.footer-link {
  display: inline-block;
  font-family: "Century Gothic";
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-link li,
.footer-link .footer-link-info {
  height: 25px;
  padding-left: 10px;
}

.footer-link .footer-link-info {
  margin-left: 35px;
}

.footer-link .footer-link-description {
  padding: 0 94px 0 15px;
}

.footer-link-info-icon {
  left: -5px;
  position: absolute;
}

html body .f-normal {
  font-weight: 500;
}

html body .become-invest {
  margin: 0 auto;
}

.home-header-content-title-description {
  left: 50%;
  margin-top: 10px;
  position: absolute;
  transform: translateX(-50%);
}

html li.onoff-content {
  padding: 0;
}

html li.onoff-content .onoff-content-span {
  background-color: #bca275;
  padding: 7px;
  position: relative;
}

::-moz-placeholder {
  color: #002050;
}

::placeholder {
  color: #002050;
}

.account {
  display: flex;
}

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

.account-sidebar {
  background-color: #fff;
  min-height: 50vh;
  padding: 35px 30px;
}

.account-sidebar-list {
  list-style: none;
  padding: 0;
  position: sticky;
  top: 100px;
}

.account-sidebar-list li {
  cursor: pointer;
  font-size: 11px;
  padding: 10px 60px;
  position: relative;
  width: 320px;
}

.account-sidebar-list li:not([data-source]) {
  padding: 10px 25px;
}

.account-sidebar-list li[data-source=mail]::after {
  content: url("/img/mail.svg");
}

.account-sidebar-list li[data-source=synthese]::after {
  content: url("/img/graph.svg");
}

.account-sidebar-list li[data-source=informations]::after {
  content: url("/img/users.svg");
}

.account-sidebar-list li[data-source=password]::after {
  content: url("/img/tools-and-utensils.svg");
}

.account-sidebar-list li[data-source=files]::after {
  content: url("/img/business-and-finance.svg");
}

.account-sidebar-list li[data-source=attestations]::after {
  content: url("/img/business-and-finance.svg");
}

.account-sidebar-list li[data-source=invoice]::after {
  content: url("/img/invoice.svg");
  height: 21px;
  left: 23px;
  width: 21px;
}

.account-sidebar-list li[data-source=cgp]::after {
  content: url("/img/business.svg");
}

.account-sidebar-list li[data-source=status]::after {
  content: url("/img/business.svg");
}

.account-sidebar-list li[data-source=invest]::after {
  content: url("/img/money.svg");
}

.account-sidebar-list li:not([data-source]),
.account-sidebar-list li:nth-of-type(7) {
  padding-left: 25px;
}

.account-sidebar-list li::after {
  left: 25px;
  position: absolute;
}

.account-sidebar-list li:hover,
.account-sidebar-list li.active {
  background-color: #fff;
  font-size: 11px;
  font-weight: 600;
}

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

.account-content {
  padding: 0 35px;
}

.account-content-section-form {
  border: 1px solid #bca275;
  display: inline-block;
  margin: 2rem 0;
  padding: 75px 100px 35px;
  position: relative;
  width: 100%;
}

.account-content-section-form.table {
  border: none;
  padding: 0;
}

.account-content-section-form-title {
  background-color: transparent;
  border-bottom: 1px solid #bca275;
  color: #002050;
  font-size: 20px;
  left: -1px;
  padding: 7.5px 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.account-content-section-form-title h3 {
  font-size: 23px;
  margin: 0;
}

.account-content-section-form.account-content-section-form-download {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.account-content-section-form.account-content-section-form-download .download-button::before {
  content: url("/img/download_white.svg");
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.account-content-section {
  display: none;
  position: relative;
}

.account-content-section.active {
  display: block;
  width: 100%;
}

#disconnect .disconnect-modal button {
  width: 100%;
}

@media (min-width: 1200px) {
  .container.container-small {
    width: 910px;
  }
}
.head-title {
  margin: 35px 0;
  position: relative;
  text-align: center;
}

.grey {
  color: #6b6b6b;
}

.cgp-button-next,
.kyc-form-button-files,
.kyc-form-button-next {
  float: right;
  position: relative;
}

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

body .small {
  font-size: 10px;
}

#resetPassForm,
#resetPassForm h2 {
  margin: 0 auto 35px;
}

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

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

body .cgp-form-information,
body .cgp-form-sign,
body .kyc-form {
  padding: 0 30px;
}

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

.sail-gray.active {
  background-color: #f1f1f1;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 0;
}

.sail-white {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 0;
}

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

body .pl-0 {
  padding-left: 0;
}

.cgp-form-sign h4,
.cgp-form-information h4 {
  margin-bottom: 35px;
  text-align: center;
  text-transform: uppercase;
}

.cgp-form-information .form {
  display: block;
}

.cgp-form-information .form:nth-of-type(2) {
  margin: 175px 0;
  position: relative;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.cgp-content-cursor {
  display: none;
}

.state-content-cursor,
.cgp-content-cursor.active {
  display: flex;
}

.cgp-content-cursor.active {
  bottom: 15px;
  height: 10px;
  left: 50%;
  padding: 0 120px;
  position: absolute;
  transform: translateX(-50%);
  width: 955px;
  z-index: 1;
}

.account-content-section .state-content-cursor-step[data-target="1"]::before {
  content: "Inscription";
}

.account-content-section .state-content-cursor-step[data-target="2"]::before {
  content: "Pièce d'identité";
}

.account-content-section .state-content-cursor-step[data-target="3"]::before {
  content: "KYC";
}

.account-content-section .state-content-cursor-step[data-target="4"]::before {
  content: "Lettre de mission";
}

.account-content-section .state-content-cursor-step::before {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 20px;
  transform: translateX(-50%);
  width: 100%;
}

.account-content-section .state-content-cursor-step.active::before {
  color: #bca275;
}

.account-content-section .state-content-cursor {
  margin: 0 auto 55px;
  max-width: 700px;
}

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

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

.state-content-cursor-step.active {
  border: none;
}

.state-content-cursor-step {
  margin-right: 10px;
}

.state-content-cursor-step:last-child {
  margin-right: 0;
}

.cgp-content-cursor-step:first-child {
  margin-right: 10px;
}

.cgp-content-cursor-step:last-child {
  margin-left: 10px;
}

.header {
  position: relative;
}

#kyc-cgp .pb-30 {
  padding-left: 15px;
  width: 200px;
}

.cgp-form-sign-image {
  display: block;
  margin: 0 auto 35px;
  position: relative;
  width: 220px;
}

.button-secondary-color.previous-step {
  background-color: transparent;
  border: 1px solid #002050;
  color: #002050;
}

form#kyc-cgp-sign button {
  margin: 50px 0 20px;
}

.account-content-section-form-empty-title {
  left: 50%;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 45%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
}

#pie {
  float: right;
}

.account-content-section-forn-legend-pie {
  float: left;
}

.account-content-section-forn-legend-pie .legend {
  border-radius: 100%;
  display: flex;
  font-weight: 600;
  height: 46px;
  width: 46px;
}

.account-content-section-forn-legend-pie-subscriber,
.account-content-section-forn-legend-pie-invest {
  color: #fff;
}

.account-content-section-forn-legend-pie-pending {
  color: #002050;
}

.account-content-section-forn-legend-pie-subscriber {
  background-color: #bca275;
}

.account-content-section-forn-legend-pie-invest {
  background-color: #002050;
}

.account-content-section-forn-legend-pie-pending {
  background-color: #f1f1f1;
}

.account-content-section-forn-legend-pie-legend {
  font-weight: 600;
  left: 12px;
  position: relative;
  top: 12px;
}

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

.m-auto {
  margin: auto;
}

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

.levee-fiscalite {
  bottom: 0;
  color: #fff;
  position: absolute;
  right: 0;
}

.levee-header-bottom {
  background-color: #f0f0f0;
  height: 259px;
  left: 0;
  position: absolute;
  right: 0;
  top: -35px;
}

.levee-header-bottom-container {
  display: flex;
  position: relative;
  top: 54px;
}

.levee-header-bottom-container-box-notif {
  background-color: #fff;
  font-size: 14px;
  padding: 10px 25px;
}

.levee-header-bottom-container-details {
  margin: 0 30px;
  max-width: 616px;
}

.levee-header-bottom-container-details > h4 {
  text-transform: uppercase;
}

.levee-header-bottom-container-detail-number {
  font-weight: 400;
}

.levee-header-bottom-container-details-information {
  display: flex;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

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

.levee {
  position: relative;
}

.projectEmbed .limit_word {
  margin-bottom: 300px;
  position: relative;
  top: 260px;
}

.domaine .levee-header-bottom-container-detail-number {
  text-transform: capitalize;
}

.portrait {
  background-color: #fff;
  border: 1px solid #002050;
  margin-bottom: 15px;
  padding: 60px 10px 0;
  position: relative;
}

.portrait-header-container {
  background-color: #002050;
  color: #fff;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.portrait-header-container-title {
  font-size: 18px;
  margin: 0;
  padding: 5px 0;
}

ul.check,
ul.files {
  padding: 0;
}

ul.files li h4 {
  color: #bca275;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin: 0 0 5px;
}

html ul.files li {
  margin-bottom: 0;
}

ul.check li,
ul.files li {
  list-style: none;
  margin-bottom: 15px;
  margin-left: 15px;
}

ul.files li::before {
  content: url("/img/download.svg");
  top: 4px;
}

ul.check li::before {
  content: url("/img/check.svg");
  top: 0;
}

ul.check li::before,
ul.files li::before {
  background: none;
  height: auto;
  left: -17px;
  list-style: none;
  width: auto;
}

ul.files li:hover * {
  color: #000;
}

.portrait button {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.client-table + button {
  border: none;
}

.dof-title {
  text-transform: uppercase;
}

.levee-announce {
  border: 1px solid #002050;
  border-radius: 5px;
  height: 164px;
  margin-bottom: 20px;
  position: relative;
}

#levees .list li:last-child .levee-announce {
  margin-bottom: 0;
}

.levee-announce-info {
  position: relative;
}

.levee-announce-info-logo {
  left: 0;
  position: absolute;
  top: 5px;
}

.levee-announce-info-name {
  left: 203px;
  position: absolute;
  text-transform: uppercase;
  top: 25px;
}

.levee-announce-info-name h4 {
  font-size: 30px;
}

.levee-announce-info-uncount {
  position: absolute;
}

.levee-announce-container-button {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(40%);
}

.levee-announce-info-details {
  left: 203px;
  position: absolute;
}

.levee-announce-info-capital,
.levee-announce-info-domaine {
  position: absolute;
  top: 93px;
}

.levee-announce-info-capital {
  left: 203px;
}

.levee-announce-info-domaine {
  left: 561px;
}

.levee-announce-info-capital-value,
.levee-announce-info-domaine-value {
  font-weight: 400;
  text-transform: capitalize;
}

.levee-announce-info-capital,
.levee-announce-info-domaine {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.button-secondary-color.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#views-container {
  display: flex;
  justify-content: center;
}

.views-container-element {
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  height: 149px;
  margin: 0 10px;
  position: relative;
  width: 119px;
}

.views-title {
  margin-bottom: 25px;
  margin-top: -5px;
}

.views-container-element-picture img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 119px;
}

.views-container-element-code {
  border-bottom: none;
  border-left: none;
  border-radius: 0 0 5px 5px;
  border-right: none;
  border-top: 1px solid #002050;
  bottom: 0;
  color: #002050;
  display: block;
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
}

@media (max-width: 720px) {
  .projectEmbed table:not([style]) td {
    display: block;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
}
.d-ib,
.kyc-form-body > div.d-ib,
.kyc-subtitle {
  max-width: 100%;
  position: relative;
}

.kyc-form-body > div.d-ib,
.d-ib {
  display: inline-block;
  margin-bottom: 35px;
  max-width: 500px;
  min-width: 200px;
  width: 100%;
}

.kyc-form-body .dual-radio {
  display: inline-block;
  max-width: 340px;
  min-width: 340px;
  width: 100%;
}

.kyc-form-body .dual-radio label {
  max-width: 335px;
  width: -moz-max-content;
  width: max-content;
}

html body select.ui.dropdown {
  border: 1px solid #002050;
  box-shadow: none;
  display: block;
  height: 28px;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.label_select {
  font-weight: 400;
  margin: 0;
  position: relative;
  top: 4px;
}

.radio-line-container-element label {
  position: relative;
  z-index: 1;
}

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

.header .state-content-cursor {
  bottom: 15px;
  display: none;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 768px;
  z-index: 1;
}

.header .state-content-cursor.active {
  display: flex;
}

.header .state-content-cursor .state-content-cursor-step {
  margin-right: 5px;
}

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

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

.radio-line-container .radio-line-container-element:last-of-type::after {
  background-color: #fff;
}

.is-invalid .radio-line-container-element::before {
  background-color: #bca275;
}

.projectEmbed .tab-pane,
.projectEmbed h5.ckeditor-tab {
  display: none;
}

.projectEmbed .tab-pane.active {
  display: inline-block;
  width: 100%;
}

.project-embed-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
}

.project-embed-tabs li {
  background-color: #f0f0f0;
  border: 1px solid #95a5a6;
  border-left: none;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.project-embed-tabs li a {
  inset: 0;
  position: absolute;
}

.project-embed-tab {
  position: relative;
}

.project-embed-tabs li:first-child {
  border-left: 1px solid #95a5a6;
}

.project-embed-tabs li.active {
  background-color: #fff;
  border-bottom: none;
  color: #002050;
  font-weight: 600;
}

.project-embed-tabs li::before {
  content: none;
}

.project-embed-tab {
  border: 1px solid #95a5a6;
  border-top: none;
  margin-bottom: 10px;
  padding: 10px;
}

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

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

body .mdl-checkbox__box-outline,
body .mdl-checkbox__focus-helper {
  height: 20px;
  width: 20px;
}

body .mdl-checkbox__ripple-container {
  height: 25px;
  left: -2px;
  top: 1px;
  width: 25px;
}

body .mdl-radio__ripple-container {
  height: 23px;
  left: -1px;
  top: 0;
  width: 23px;
}

body .mdl-checkbox__label {
  margin-left: 7px;
}

.checkbox-container-content {
  margin: 4px 0;
}

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

.kyc-form-sign.active {
  display: block;
}

.kyc-form-sign {
  display: none;
}

body .iti {
  width: 100%;
}

input[placeholder]::-moz-placeholder {
  color: #b5b2b2;
}

input[placeholder]::placeholder {
  color: #b5b2b2;
}

.kyc-image-sign {
  display: block;
  margin: 0 auto 194px;
  position: relative;
  top: 130px;
  width: 229px;
}

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

.siren-kyc-form-button-next-launcher,
.kyc-form-button-next-launcher {
  bottom: inherit;
  display: block;
  float: right;
  position: relative;
  right: inherit;
}

.cni-info,
.cni-info-pm {
  border: 3px solid;
  border-radius: 5px;
  display: flex;
  padding: 35px;
}

.cni-info {
  border-color: #bca275;
}

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

.cni-info-pm-primary {
  flex-wrap: wrap;
  margin: auto;
}

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

.cni-kyc-form-container img {
  width: 75px;
}

#easter-egg {
  color: #000;
  position: relative;
  z-index: 9;
}

.skeleton-item {
  background-color: #d8d8d8;
  border-color: #d8d8d8;
  overflow: hidden;
  position: relative;
}

.skeleton-item::after {
  animation: shine;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  background: rgba(255, 255, 255, 0.2);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 350%;
  left: -100%;
  opacity: 0;
  position: absolute;
  top: -125%;
  transform: rotate(45deg);
  width: 40px;
}

@keyframes shine {
  from {
    left: -100%;
    opacity: 0.5;
  }
  to {
    left: 200%;
    opacity: 1;
  }
}
.cni-kyc-form-container .skeleton-item {
  height: 105px;
  margin-bottom: 15px;
  width: 90px;
}

.cni-kyc-form-container-info .skeleton-item,
body .skeleton-item.text {
  height: 15px;
  margin-bottom: 15px;
  width: 240px;
}

.cni-kyc-form-container-info {
  text-align: initial;
  width: 100%;
}

.cni-kyc-form-container-info.cni-kyc-form-container-info-part-one {
  width: 250px;
}

html body input[disabled],
html body select[disabled],
html body select[disabled] option {
  background-color: #f1f1f1;
  color: #002050;
  height: 30px;
  opacity: 1;
}

#kyc-sentence-sign {
  text-align: center;
}

.preview {
  color: white;
  font-size: 24px;
}

.kyc-form-container .hide {
  display: none !important;
}

.data-list-target-close {
  color: #6b6b6b;
  cursor: pointer;
  float: right;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-55%);
}

.kyc-subtitle {
  font-family: "Century Gothic";
  font-weight: 700;
  line-height: 25px;
}

*:focus {
  outline: none;
}

#project-preview-falsebutton {
  text-align: center;
}

#kyc-cgp-sign #faitA {
  padding: 0;
}

figure.image-style-side {
  text-align: right;
}

.projectEmbed table:not([style]),
.projectEmbed table:not([style]) td {
  width: 100%;
}

.projectEmbed table:not([style]) tr {
  display: flex;
}

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

.cni-kyc-form-container img[alt] {
  margin: 15px;
}

#siren-kyc .cni-info img {
  left: -30px;
  position: relative;
}

#siren-kyc .cni-info-pm img {
  left: -15px;
  position: relative;
}

.previous-step-upload {
  top: -10px;
}

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

.cni-info.full-content,
.cni-info-pm.full-content {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.kyc-form-body .mdl-textfield__input {
  width: 100%;
}

figure {
  margin: 0;
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

.home-header-content h3.home-header-content-title:first-of-type {
  margin-top: 25px;
}

a[data-toggle] {
  cursor: pointer;
}

.home-header-content-title + a .home-header-content-button {
  margin-top: -30px;
}

/* #cookie-accept-modal */
.modal.cookie-accept-modal {
  top: 50px;
}

.cookie-accept-modal input[type=checkbox] {
  display: inline-block;
  height: 13px;
  position: relative;
  top: 1px;
}

.cookie-accept-modal .cookie-accept-modal-button {
  border: none;
  display: block;
  margin: auto;
  text-transform: uppercase;
  width: 200px;
}

.cookie-accept-modal .cookie-accept-modal-button,
.cookie-accept-modal-button-accept {
  background-color: #002050;
  color: #fff;
}

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

.cookie-accept-modal .container {
  max-width: 100%;
  width: 720px;
}

.cookie-accept-modal-button-container {
  text-align: center;
}

.cookie-accept-modal-button-container button {
  border: none;
  margin: 0 5px;
  padding: 5px 10px;
}

.cookie-accept-modal p {
  font-weight: normal;
}

.cookie-accept-modal a,
.cookie-accept-modal a[download] {
  font-weight: normal;
  text-decoration: underline;
}

[data-toggle=modal] {
  cursor: pointer;
}

body li.navbar-bar-holder {
  display: none;
}

@media (max-width: 767px) {
  body .mdl-textfield__label::after {
    display: none;
  }
  body .levee-header-bottom-container-box-notif {
    margin-left: 0;
  }
  body .un-row {
    float: left;
    width: 100%;
  }
  body .cgp-form-information .form:nth-of-type(2) {
    margin: 0;
    position: relative;
  }
  body .cgp-form-information button[type=submit] {
    float: right;
  }
  body .nav > li:first-child {
    margin-top: -25px;
    padding: 0;
  }
  html body li.navbar-bar-connect {
    left: 50%;
    margin-bottom: 25px;
    position: absolute;
    top: 17px;
    transform: translateX(-105%);
  }
  html body li.navbar-bar-subscribe {
    position: absolute;
    right: 49%;
    top: 17px;
    transform: translateX(105%);
  }
  html body li.navbar-bar-connect a.head-connexion-button,
  html body li.navbar-bar-subscribe a.head-inscription-button {
    width: 125px;
  }
  html body .nav > li.navbar-bar-holder {
    display: block;
    margin-bottom: 45px;
    visibility: hidden;
  }
  #disconnect .disconnect-modal button {
    min-width: 100px;
  }
  #disconnect .container,
  #disconnect .modal-body {
    padding: 0;
  }
  .cookie-accept-modal-button-container button {
    border: none;
    margin: 5px 0;
    padding: 5px 10px;
    width: 100%;
  }
  .cookie-accept-modal .modal-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    position: relative;
  }
  label[for=cookie-fonctionnel] {
    line-height: 15px;
  }
  body .modal.cookie-accept-modal {
    top: 0;
  }
}
/* End #cookie-accept-modal */
.account-content-section-form-download button {
  font-weight: 700;
}

.dof-statement label {
  display: inline;
}

.projectEmbed figure.image:not(.image-style-side) {
  margin: 0 auto;
  text-align: center;
}

.mdl-textfield--floating-label.is-date .mdl-textfield__label {
  font-family: "Century Gothic";
  font-size: 11px;
  top: 4px;
}

body .mdl-textfield.has-placeholder label,
body .mdl-textfield input:invalid[placeholder] + label,
body .mdl-textfield input:required:valid + label {
  font-size: 11px !important;
  top: 4px;
  visibility: visible;
}

html .dual-radio.is-invalid .mdl-radio__outer-circle {
  border-color: red;
}

html .projectEmbed div {
  max-width: 100%;
}

html body .projectEmbed-uwine .header .parallax::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("https://res.cloudinary.com/daas0isur/image/upload/v1624464931/projet/420/uqjfg5xdlwv7yo5zxjnt.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  inset: -1241px 0 0;
  position: absolute;
  transform: translateZ(-1px) scale(2);
  z-index: -1;
}

html body .projectEmbed-uwine {
  height: inherit;
}

.sign-contract {
  cursor: pointer;
  text-align: center;
}

.sign-contract .sign-contract-picture {
  margin-bottom: 7px;
  width: 40px;
}

.sign-contract .sign-contract-text {
  font-size: 20px;
}

.invoice-download {
  cursor: pointer;
  text-align: center;
}

.invoice-download img {
  margin-right: 10px;
}

.list .confirm {
  cursor: pointer;
}

.confirm-invoice:hover {
  color: #002050;
  transition: 1s;
}

@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: 50%;
  width: 100%;
}

.kyc-bouncer-file.hide {
  display: none;
}

.kyc-form-body .radio-line-container {
  display: flex;
  justify-content: space-around;
  margin: 35px 0 100px;
  position: relative;
}

/* HANDLE MODAL */
.modal-body .title {
  font-size: 1em;
  line-height: normal;
}

/* * HANDLE FILE INPUT */
.input-file-content {
  position: relative;
}

.input-file-content.is-invalid .label-file {
  border-color: #bca275;
  color: #bca275;
}

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

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

.input-file-content .label-file {
  border: 2px solid #002050;
  color: #002050;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  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 #002050;
  border-radius: 8px;
  height: 40px;
  justify-content: center;
  margin-bottom: unset;
  min-width: 200px;
  padding: unset;
  padding-right: unset;
  white-space: pre-wrap;
}

.saved-file::after {
  align-items: center;
  background-color: #002050;
  bottom: 0;
  color: white;
  content: "\f019";
  display: flex;
  font-size: 20px;
  font-weight: 100;
  padding: 18px;
  position: absolute;
  right: 0;
  top: 0;
}

.saved-file-in-array::after {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

.input-file-content.check .label-file {
  background-color: #002050;
  color: white;
}

.input-file-content.check .saved-file::after {
  border-left: 2px solid white;
}

.input-file-content * {
  position: initial;
}

/* Kyc Modals */
.modal .company-directors-container {
  margin-top: 20px;
}

.modal .img-container {
  align-items: center;
  display: flex;
}

.modal .img-container > img {
  align-items: center;
  display: flex;
  margin-right: 35px;
}

.modal .details {
  align-content: center;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: 346px;
}

.modal .details > p {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.modal .details > p > span {
  line-height: initial;
  margin-right: 5px;
}

.mdl-textfield__label {
  z-index: -1;
}

body .mdl-textfield__label {
  bottom: initial;
  height: 25px;
  left: initial;
  right: initial;
  top: initial;
  z-index: 0;
}

body .mdl-textfield .mdl-textfield__label::after,
body .mdl-textfield.is-invalid .mdl-textfield__label::after,
body .mdl-textfield.is-dirty .mdl-textfield__label::after {
  bottom: -21.5px;
  position: absolute;
}

.mdl-textfield input {
  height: 30px;
}

.title_docs {
  display: flex;
}
.title_docs custom-tooltip {
  width: 0;
}

html body {
  padding: 0 !important;
}

@media (min-width: 1200px) {
  .container.container-table-bs {
    width: 1320px;
  }
}
.align-right {
  float: right;
  margin-bottom: 20px;
}

.separator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
}
.separator::after {
  background-color: #002050;
  content: "";
  height: 1px;
  width: 80%;
}

.kyc-form-body > div.kyc-form-body-flex-2_1 {
  display: flex;
}
.kyc-form-body > div.kyc-form-body-flex-2_1 > :nth-child(1) {
  width: 66.63%;
}
.kyc-form-body > div.kyc-form-body-flex-2_1 > :nth-child(2) {
  width: 33.27%;
}

.client-table td .mdl-radio {
  height: 24px;
}
.client-table td,
.client-table th {
  padding: 10px;
  text-align: center;
}
.client-table tbody tr {
  color: #002050;
  text-align: center;
}
.client-table tbody tr:hover {
  background-color: #d5dae1 !important;
}
.client-table tbody tr:nth-of-type(odd) {
  background-color: #e5e5e5;
}
.client-table tbody tr:nth-of-type(even), .client-table tbody tr:nth-last-of-type(1):first-child {
  background-color: #fff;
}

.client-table-control {
  position: relative;
}
.client-table-control::after {
  content: "\f002";
  font-family: fontAwesome;
  position: absolute;
  right: 5px;
  top: 51%;
  transform: translateY(-50%);
}

button.button-primary-color, button.button-secondary-color, button.inscription-button, button.download-button,
a.button-primary-color,
a.button-secondary-color,
a.inscription-button,
a.download-button {
  border-radius: var(--border-radius);
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 200px;
  padding: 15px;
  text-align: center;
  background-color: #002050;
  border-color: #002050;
  color: white;
  /** overwrite the initial button */
}
button.button-primary-color:disabled, button.button-secondary-color:disabled, button.inscription-button:disabled, button.download-button:disabled,
a.button-primary-color:disabled,
a.button-secondary-color:disabled,
a.inscription-button:disabled,
a.download-button:disabled {
  cursor: default;
  background-color: lightgrey;
  border-color: lightgrey;
  color: white;
}
button.button-primary-color:hover:not(:disabled), button.button-primary-color.active, button.button-secondary-color:hover:not(:disabled), button.button-secondary-color.active, button.inscription-button:hover:not(:disabled), button.inscription-button.active, button.download-button:hover:not(:disabled), button.download-button.active,
a.button-primary-color:hover:not(:disabled),
a.button-primary-color.active,
a.button-secondary-color:hover:not(:disabled),
a.button-secondary-color.active,
a.inscription-button:hover:not(:disabled),
a.inscription-button.active,
a.download-button:hover:not(:disabled),
a.download-button.active {
  background-color: #bca275;
  border-color: #bca275;
  color: white;
}

.subHeader {
  align-items: center;
  background-image: url("/img/Ycap-header-connexion.png");
  background-position: center;
  background-size: 100% 100%;
  color: #fff;
  display: flex;
  height: 320px;
  justify-content: center;
  margin-bottom: 35px;
  margin-top: 0;
}
.subHeader.background {
  background-image: url("/img/Ycap-header-compte.png");
  color: #002050;
}

.download-kyc-file,
.files-download {
  background-color: transparent;
  border: none;
}

.waiting-room-logo .a {
  fill: var(--secondary-color);
}
.waiting-room-logo .b {
  fill: #fff;
}

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