
/******** ACTION ********/
@font-face {
    font-family: 'PP Neue Montreal Medium';
    src: url('../fonts/PPNeueMontreal-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PP Neue Montreal Semi Bold';
    src: url('../fonts/PPNeueMontreal-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
  /* Palette de couleurs */
  --color-bg-tab: #F0EEE5; /* Couleur spécifique vue dans les tabs */
  --color-black: #1C1C1C;
  --color-error: #A91919;
  --color-red: #D52020;
  --color-grey-dark: #666666;
  --color-grey-light: #F0F0F0;
  --color-grey-medium: #CCCCCC;
  --color-purple: #9747FF;
  --color-teal: #00857B;
  --color-teal-light: #E5F0EA;
  --color-teal-dark: #004D47;
  --color-text-sub: #666666;
  --color-white: #FFFFFF;
  --color-filled-bg: #EBF5F2;
  --color-grey-medium: #A1A1A1;
  --color-grey-bg: rgba(28, 28, 28, 0.10); /* Fond grisé pour les overlays */

  --shadow-overlay: 0px 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-card: 0px 1px 12px rgba(0, 0, 0, 0.06), 0px 4px 10px 1px rgba(0, 0, 0, 0.06);
  --shadow-dropdown: 0px 1px 12px rgba(0, 0, 0, 0.06), 0px 4px 10px 1px rgba(0, 0, 0, 0.06);

  /* Typographie */
  --font-inter: 'Inter', sans-serif;
  --font-mono: 'Atkinson Hyperlegible Mono', monospace;
  --font-primary: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
}

body {
  margin: 8px auto;
  width: 1440px;
}

.contain {
    display: flex;
    width: 1440px;
    padding: 80px 56px;
    align-items: flex-start;
    gap: 40px;
    background: var(--grey-white, #FFF);
}

.left-C {
  display: flex;
  width: 32%;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.middle-column {
    display: flex;
    width: 19%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 1 0 0;
    align-self: stretch;
}

.right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.generate-div {
    width: 644px;
    height: 644px;
    position: relative;
    border-radius: 24px;
    background: var(--secondary-beige, #F0EEE5);

}

.modal-export {
  display: none;
  width: 538px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  left: 24px;
  bottom: 132px;
  border-radius: 16px;
  background: var(--grey-white, #FFF);

  /* elevation1 */
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.06), 0 1px 12px 0 rgba(0, 0, 0, 0.06);
}

.modal-export-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.modal-export-title {
  align-self: stretch;
  color: var(--grey-black, #000);
  margin : 0;

  /* title4/desktop */
  font-family: "PP Neue Montreal";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.modal-export-text {
  align-self: stretch;
  color: var(--grey-black, #000);
  margin : 0;

  /* title5/all */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.modal-export-line {
  display: flex;
  align-items: center;
  align-content: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
}

select {
    display: flex;
    padding: 12px 16px 12px 24px;
    align-items: center;
    width: 190px;
    gap: 16px;
    border-radius: 24px;
    border: 1px solid var(--grey-grey63, #A1A1A1);
    background: var(--grey-white, #FFF);
    font-family: "PP Neue Montreal";
    font-size: 20px;
}

select, select::picker(select) {
  field-sizing: content;
  appearance: base-select;
}

select::picker(select) {
  margin-block: 1rem;
  border-radius: 10px;
  border: 1px solid var(--grey-grey63, #A1A1A1);
  background: var(--grey-white, #FFF);
  box-shadow: 0 2px 7px var(--grey-grey63, #A1A1A1);
}

option::checkmark {
  display: none;
}

option:hover {
  background-color: rgb(235, 245, 242);
}

.input-connector, .input-connector-width {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 16px 12px 24px;
  gap: 16px;
  border: 1px solid var(--grey-grey63, #A1A1A1);
  background: var(--grey-white, #FFF);
  border-radius: 10px;
  font-family: "PP Neue Montreal";
  font-size: 20px;
}

.input-connector-width{
  width: 148px;
}

.connector-search{
  width: 586px;
  min-height: 100px;
  max-height: 600px;
  overflow-y: auto;
}

.wire-search{
  width: 586px;
  margin-top: 16px;
  min-height: 0px;
  max-height: 519px;
  overflow-y: auto;
}

.wire-connect-display{
  display: flex;
  height: 680px;
  justify-content: center;
  align-items: flex-start;
  gap: 205px;
  align-self: stretch;
  border-radius: 12px;
  background: var(--secondary-beige, #F0EEE5);
  position: relative;
  overflow: hidden;
}

.connector-search-term{
  min-height: 849.5px;
  max-height: 849.5px;
}

.input-check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.line-title {
    align-self: stretch;
    color: var(--grey-black, #000);

    /* title1/desktop */
    font-family: "PP Neue Montreal Medium";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.line {
    display: flex;
    padding: 12px 0;
    align-items: center;
    gap: 80px;
    align-self: stretch;
    border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.line-2 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.line-3 {
  width: 340px;
}

.antelec_ref {
  display: flex;
  padding: 12px 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: var(--shades-green94, #EBF5F2);
}

.boite_ref {
  flex: 1;
  display: flex;
  max-width: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
}

.style_ref {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.text_ref {
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.gap {
    gap: 40px;
}
.gap-2 {
    gap: 16px;
}

.label {
    width: 263px;
    color: var(--grey-black, #000);
    font-family: "PP Neue Montreal";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 127.273% */
}

.label-2 {
    width: 130px;
    color: var(--grey-black, #000);
    font-family: "PP Neue Montreal";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 127.273% */
}

.label-check {
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

span {
  width: 190px;
  text-align: right;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 130.769% */
}

.img-cac {
    position: absolute;
    width: 340px;
    left: -33px;
    top: 236px;
}

.img-load {
    position: absolute;
    width: 340px;
    left: 160px;
    top: 160px;
}

.button-generate {
    display: flex;
    height: 56px;
    padding: 12px 20px 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    position: absolute;
    left: 213px;
    top: 294px;
    background: var(--primary-green, #00857B);
    border: 1px solid var(--primary-green, #00857B);
    color: var(--grey-white, #FFF);

    /* ui/button */
    font-family: "PP Neue Montreal";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-reload {
    display: flex;
    height: 56px;
    padding: 12px 20px 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--primary-green, #00857B);
    border: 1px solid var(--primary-green, #00857B);
    color: var(--grey-white, #FFF);

    /* ui/button */
    font-family: "PP Neue Montreal";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-export {
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--primary-green, #00857B);
  border: 1px solid var(--primary-green, #00857B);
  color: var(--grey-white, #FFF);

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-export-modal {
    display: flex;
    height: 56px;
    padding: 12px 20px 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 24px;
    bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));
    background: var(--secondary-beige, #F0EEE5);

    /* ui/button */
    font-family: "PP Neue Montreal";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-3d-view {
    display: flex;
    height: 56px;
    padding: 12px 20px 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 175px;
    bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));
    background: var(--secondary-beige, #F0EEE5);

    /* ui/button */
    font-family: "PP Neue Montreal";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-3D-plan-black {
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 8px;
    font-family: "Atkinson Hyperlegible Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 24px;
    background: var(--secondary-green-dark, #111B19);
    border: 0px;
    color: var(--color-white, #FFFFFF);
}

.button-3D-plan-white {
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 8px;
    font-family: "Atkinson Hyperlegible Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 24px;
    background: var(--secondary-beige, #F0EEE5);
    border: 0px;
    color: var(--grey-grey11, #1C1C1C);
}

.button-footprint-white-black {
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 24px;
    background: var(--secondary-green-dark, #111B19);
    border: 0px;
    color: var(--color-white, #FFFFFF);
    font-family: "Atkinson Hyperlegible Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.button-footprint-white {
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 24px;
    background: var(--secondary-beige, #F0EEE5);
    border: 0px;
    color: var(--grey-grey11, #1C1C1C);
    font-family: "Atkinson Hyperlegible Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.icon-close {
  display: flex;
  position: absolute;
  left: 550px;
  bottom: 348px;
  fill: var(--grey-white, #FFF);
}

.span-align{
    align-items: flex-end;
}

/* OSER CSS */
@media (max-width: 1290px) {
  .contain {
    width: 700px;
    display: grid;
  }

  .left-column {
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .middle-column {
      width: 700px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      flex: 1 0 0;
      align-self: stretch;
  }

  .right-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1 0 0;
      align-self: stretch;
  }

  .line-3 {
    height: 340px;
  }
  .img-cac {
      position: absolute;
      left: 172px;
      top: 0px;
  }
}

@media (min-width: 1290px) and (max-width: 1360px) {
  .contain {
    width: 1140px;
  }
  .img-cac {
      width: 275px;
      height: 275px;
      position: absolute;
      left: -30px;
      top: 236px;
  }
  .generate-div {
    width: 544px;
    height: 544px;

  }
  .button-generate {
      left: 163px;
      top: 244px;
  }
}

@media (min-width: 1360px) and (max-width: 1460px) {
  .contain {
    width: 1240px;
  }
  .img-cac {
      width: 275px;
      height: 275px;
      position: absolute;
      left: -21px;
      top: 236px;
  }
  .generate-div {
    width: 544px;
    height: 544px;

  }
  .button-generate {
      left: 163px;
      top: 244px;
  }
}

@media (min-width: 1460px) and (max-width: 1600px) {
  .contain {
    width: 1340px;
  }
  .img-cac {
      position: absolute;
      left: -27px;
      top: 236px;
  }
  .generate-div {
    width: 544px;
    height: 544px;

  }
  .button-generate {
      left: 163px;
      top: 244px;
  }
}

/* CORD STYLE */
.contain-cord-welcome {
  display: flex;
  width: 1440px;
  height: 989px;
  min-height: 989px;
  padding: 24px;
  flex-direction: row;
  align-items: flex-start;
  background: var(--grey-white, #FFF);
}

.image-cord-welcome {
  width: 618px;
  height: 989px;
  aspect-ratio: 614/984;
  background: lightgray 50% / cover no-repeat;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.col-right-cord-welcome, .col-right-connect {
  display: flex;
  padding: 0 72px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
  align-self: stretch;
  background: var(--secondary-beige, #F0EEE5);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.container-cord-welcome, .container-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.text-cord-welcome{
  align-self: stretch;
  color: var(--grey-black, #000);

  /* title1/desktop */
  font-family: "PP Neue Montreal Medium";
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-generate-cord {
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--primary-green, #00857B);
  border: 1px solid var(--primary-green, #00857B);
  color: var(--grey-white, #FFF);

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-generate-cord:disabled {
  background: var(--primary-green, #eee);
  border: 1px solid var(--primary-green, #eee);
  color: #aaa;
  font-style: italic;
}

.button-discover-tool-cord {
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;border-radius: 8px;
  border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.text-1-welcome {
  position: absolute;
  left: 722px;
  bottom: 290px;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.text-contact-welcome {
  align-self: stretch;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contain-nav {
  width: 1440px;
  height: 114px;
  display: flex;
  padding: 0 24px 24px 24px;
  align-items: flex-start;
  flex: 1;
  align-self: stretch;
  background: var(--grey-white, #FFF);
}

.blur-nav {
  filter: blur(8.5px);
}

.column-nav-left {
  width: 35.1%;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.contain-nav-step {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contain-nav-step-2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contain-nav-step-number {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  background: var(--grey-grey94, #F0F0F0);
}

.contain-nav-step-number-green {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid var(--primary-green, #00857B);
  background: var(--secondary-green-extra-light, #E5F0EA);
}

.contain-nav-step-number-check {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;border-radius: 40px;
  background: var(--primary-green, #00857B);
}

.contain-nav-step-number-text {
  color: var(--secondary-green-dark, #111B19);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.contain-nav-step-number-text-check {
  color: var(--color-white, #FFFFFF);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.contain-nav-step-text {
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.option-nav {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.button-nav {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 24px;
}

.button-connect-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border: 0px;
  background-color: var(--grey-white, #FFF);

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-contact-nav {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0px;
  background-color: var(--grey-white, #FFF);

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.text-nav {
  color: var(--secondary-green-dark, #111B19);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contain-cord-form{
  display: flex;
  padding: 0 24px 24px 24px;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  align-self: stretch;
}

.cord-form-column-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.cord-form-column-right{
  display: block;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1 0 0;
  align-self: stretch;
}

.cord-form-column-right-2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.style-search-wire{
  width: 538px;
  height: 112px;
  justify-content: center;
  align-items: center;
}

.diagram-form{
  width: 822px;
  height: 600px;
  border-radius: 12px;
  /* background: var(--secondary-beige, #F0EEE5); */
}

.cord-form-title{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cord-form-title-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0px;
  gap: 8px;
  align-self: stretch;
  color: var(--grey-black, #000);

  /* title4/desktop */
  font-family: "PP Neue Montreal Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cord-form-input-button{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.button-connector-black{
  display: flex;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  background: var(--secondary-green-dark, #111B19);
  border: 0px;
  color: var(--color-white, #FFFFFF);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button-connector-white{
  display: flex;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  background: var(--secondary-beige, #F0EEE5);
  border: 0px;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button-simple-term-black{
  display: flex;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  background: var(--secondary-green-dark, #111B19);
  border: 0px;
  color: var(--color-white, #FFFFFF);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button-simple-term-white{
  display: flex;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  background: var(--secondary-beige, #F0EEE5);
  border: 0px;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cord-form-title-ref{
  flex: 1 0 0;
  color: var(--grey-grey11, #1C1C1C);

  /* title5/all */
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cord-form-title-ref-2{
  flex: 1 0 0;
  margin-bottom: 6px;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.input-search{
  display: flex;
  height: 30px;
  padding: 16px;
  width: 538px;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  border: 0.5px solid var(--grey-grey11, #1C1C1C);
  background: var(--grey-white, #FFF);
}

.cord-form-mib-car{
  align-self: stretch;
  color: var(--grey-grey25, #404040);
  font-family: "PP Neue Montreal";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
}

.cord-form-pos-next-step, .cord-form-pos-next-step-label{
  width: 570px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.cord-form-pos-next-step{
  margin-top: 24px;
}

.cord-form-pos-next-step-label{
  margin-top: 16px;
}

.cord-form-next-step{
  display: flex;
  height: 28.67px;
  width: 18px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--grey-grey63, #A1A1A1);
}

.cord-form-assembly-1{
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.cord-form-assembly-element-1{
  display: flex;
  width: 570px;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cord-form-assembly-element-2{
  display: flex;
  height: 24px;
  padding-left: 32px;
  align-items: flex-start;
  gap: 8px;
}

.cord-form-assembly-element-text{
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  margin: 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.input-check-assembly{
  display: flex;
  width: 20px;
  height: 20px;
  padding-left: 32px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 2px;
  border: 1px solid var(--grey-grey11, #1C1C1C);
  background: var(--grey-white, #FFF);
}

.input-check-assembly:checked {
  accent-color: #00857B;
}

.input-check-assembly:hover {
  filter: drop-shadow(0 0 4px #257b74);
  accent-color: #00857B;
}

.input-check-assembly:focus {
  filter: drop-shadow(0 0 8px #00857B);
  accent-color: #00857B;
}

.cord-form-assembly-2{
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.wire-from-assembly-1, .wire-from-assembly-1-2{
  display: flex;
  width: 571px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.wire-from-assembly-1-2 {
  padding-bottom: 24px;
}

.wire-from-assembly-2{
  display: flex;
  align-items: center;
  gap: 16px;
}

.cord-form-button-create-assembly{
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  margin-top: 24px;
}

.cord-form-button-create-account{
  margin-top: 16px;
}

.input-assembly{
  display: flex;
  position: absolute;
  top: 40px;
  left: 192px;
  width: 52px;
  height: 24px;
  padding: 4px 8px;
  align-items: center;
  gap: 8px;border-radius: 8px;
  border: 0.5px solid var(--grey-grey11, #1C1C1C);
  background: var(--grey-white, #FFF);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: right;
}

.input-assembly:invalid {
  border: 1.6px solid #ff0000;
}

.cord-form-assembly-input{
  height: 196px;
  align-self: stretch;
}

.image-assembly {
  --image-assembly-scale: 0.35;
  width: calc(1382px * var(--image-assembly-scale));
  height: calc(639px * var(--image-assembly-scale));
}

.cord-form-assembly-text{
  width: 506px;
  flex-shrink: 0;
  margin: 0px;
  color: var(--grey-black, #000);

  /* title5/all */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.wire-from-assembly-text{
  color: var(--grey-black, #000);
  margin: 0px;
  /* title5/all */
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cord-form-label-title-1{
  width: 506px;
  flex-shrink: 0;
  color: var(--grey-black, #000);

  /* title5/all */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cord-form-label-title-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border: 0 solid var(--grey-grey80, #CCC);
}

.cord-form-label-title-contain{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cord-form-label-title-text{
  color: var(--grey-black, #000);
  margin: 0px;
  /* title5/all */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cord-form-label-element{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.cod-form-label-contain{
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 570px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.cord-form-input-label-contain{
  display: flex;
  width: 538px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.cord-form-input-label-contain-2{
  display: flex;
  align-items: center;
  gap: 20px;
}

.cord-form-input-label{
  display: flex;
  width: 495px;
  padding: 16px 3px 17px 16px;
  align-items: center;
  border-radius: 8px;
  border: 0.5px solid var(--grey-grey11, #1C1C1C);
  background: var(--grey-white, #FFF);
  flex: 1 0 0;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.cord-form-input-label:disabled {
  background-color: #d0dddc;
  color: #7b8887;
  font-style: italic;
}

.cord-form-input-label-text{
  flex: 1 0 0;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "PP Neue Montreal";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.wire-form-assembly-1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.wire-form-assembly-2{
  display: flex;
  align-items: center;
  gap: 8px;
}

.wire-input-length{
  display: flex;
  width: 80px;
  height: 32px;
  padding: 0 8px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 0.5px solid var(--grey-grey11, #1C1C1C);

  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
}

.wire-length-text-1{
  margin: 0px;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
}

.wire-length-text-2{
  margin: 0px;
  color: var(--grey-grey40, #666);
  font-family: "PP Neue Montreal";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 15px */
}

.button-wire-config-validate{
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--grey-grey80, #CCC);
  border: 1px solid var(--grey-grey80, #CCC);

  color: var(--grey-grey63, #A1A1A1);
  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* CONNECT */

#modal_connect {
  display: none;
  position: absolute;
  width: 1440px;
  --popup-height: 88vh;
  height: var(--popup-height);
  top: calc((100vh - var(--popup-height)) / 2);
  background: var(--grey-white, #FFF);
  z-index: 10;
  box-shadow: 0 0 50px 24px #62626252;
  overflow: scroll;
  border-radius: 15px;
}

.image-connect{
  display: flex;
  width: 45%;
  height: 877px;
  flex-shrink: 0;
  aspect-ratio: 349/436;
  background: lightgray 50% / cover no-repeat;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.col-connect{
  display: flex;
  height: 877px;
  flex-shrink: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background: var(--secondary-beige, #F0EEE5);
}
.text-connect{
  width: 531px;
  color: var(--grey-black, #000);
  margin: 0px;

  /* title1/desktop */
  font-family: "PP Neue Montreal Medium";
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.text-1-connect {
  align-self: stretch;
  color: var(--grey-black, #000);
  margin: 0px;

  /* title1/desktop */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.text-2-connect {
  align-self: stretch;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 18%;
  text-underline-position: from-font;
}

.label-connect{
  flex: 1 0 0;
  color: var(--grey-grey11, #1C1C1C);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.display-title-connect{
  display: flex;
  width: 530px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.display-form-connect{
  display: flex;
  width: 613px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.display-input-connect{
  display: flex;
  width: 613px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.input-connect{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.input-label-connect{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.input-label-connect-column{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 27px;
  flex: 1 0 0;
}

.input-mail{
  display: flex;
  padding: 16px;
  height: 30px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
  border: 0px;

  font-family: "PP Neue Montreal";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.input-password{
  display: flex;
  padding: 16px;
  height: 30px;
  gap: 28px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
  border: 0px;
}

.style-password, .style-search{
  border: 0px;
  height: 30px;
  font-family: "PP Neue Montreal";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.style-search{
  width: 538px;
}

.style-svg-password{
  display: flex;
  align-items: center;
}

input:focus{
  outline: none;
}

.step-contain-create-account{
  display: flex;
  width: 464px;
  align-items: center;
}

.contain-account-step-number {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 2px solid var(--grey-grey80, #CCCCCC);
  background: var(--grey-white, #FFF);
}

.contain-account-step-number-green {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 2px solid var(--primary-green, #00857B);
  background: var(--grey-white, #FFF);
}

.contain-account-step-number-check {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;border-radius: 40px;
  background: var(--primary-green, #00857B);
}

.contain-account-step-number-text-green {
  color: var(--primary-green, #00857B);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.contain-account-step-number-text {
  color: var(--grey-grey40, #666);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}


.contain-account-step-number-text-check {
  color: var(--color-white, #FFFFFF);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.contain-account-step-bar {
  height: 2px;
  width: 160px;
  flex: 1 0 0;
  background: var(--grey-grey80, #CCCCCC);
}

.contain-account-step-bar-green {
  height: 2px;
  width: 160px;
  flex: 1 0 0;
  background: var(--primary-green, #00857B);
}

.text-login{
  align-self: stretch;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 13px;
  margin: 0px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
}

.button-account-return {
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--secondary-beige, #F0EEE5);
  border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-create-account-step-five{
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
  border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.display-account-button{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.display-account-button-2{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.group-crit-password{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.display-crit-password{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.text-crit-password{
  color: var(--grey-black, #000);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "PP Neue Montreal";
  font-size: 14px;
  margin: 0px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

/* MY ACCOUNT */
.my-account-nav{
  padding: 0 30px;
  margin: 0;
}

.my-account-nav * {
  margin: 0;
}

.my-account-nav > * {
  margin-top: 20px;
}

.my-account-nav-container{
  display: flex;
  align-items: center;
  gap: 8px;
}

.my-account-nav-svg, .my-account-nav-p, .my-account-nav-p-bold{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.my-account-nav-p, .my-account-nav-p-bold{
  color: var(--grey-black, #000);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.my-account-nav-p{
  font-family: "PP Neue Montreal";
}

.my-account-nav-p-bold{
  font-family: "PP Neue Montreal Semi Bold";
}

.my-account-container{
  display: flex;
  width: 1440px;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF;
}

.my-account-contain-column{
  display: flex;
  padding: 24px;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  height: 100%;
}

.my-account-contain-column-left{
  display: flex;
  width: 395px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--secondary-beige, #F0EEE5);
}

.my-account-menu, .my-account-menu-select{
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.my-account-menu-select{
  border-radius: 8px;
  background: var(--grey-white, #FFF);

  /* elevation2 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

.my-account-menu-text, .my-account-menu-text-select{
  flex: 1 0 0;color: var(--grey-black, #000);
  font-size: 18px;
  font-style: normal;
  margin: 0px;
  line-height: 130%; /* 23.4px */
}

.my-account-menu-text{
  font-family: "PP Neue Montreal";
  font-weight: 400;
}

.my-account-menu:hover{
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
}

.my-account-menu-text-select{
  font-family: "PP Neue Montreal Semi Bold";
  font-weight: 500;
}

.my-account-column-right{
  display: flex;
  padding-top: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.my-account-title-2{
  display: flex;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.my-account-title-3{
  flex: 1 0 0;
  color: var(--grey-black, #000);
  margin: 0px;

  /* title2/desktop */
  font-size: 42px;
  font-family: "PP Neue Montreal Medium";
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}

.button-create-project{
  display: flex;
  height: 56px;
  padding: 12px 20px 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));
  background: var(--grey-white, #FFF);
  color: var(--grey-black, #000);

  /* ui/button */
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.my-account-data-table-thead{
  display: flex;
  padding: 8px 12px 8px 24px;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: var(--grey-grey94, #F0F0F0);
}

.my-account-data-table-tr{
  display: flex;
  padding: 16px 16px 16px 24px;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.my-account-data-table-tr:hover {
  background-color: #d2f6e038;
}

.my-account-data-table-title{
  flex: 1 0 0;
  color: var(--grey-grey25, #404040);
  font-family: "PP Neue Montreal";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.my-account-data-table-text-ref, .my-account-data-table-text-date{
  flex: 1 0 0;
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin: 0px;
  padding: 3px 12px;
}

.my-account-data-table-text-ref:hover{
  border-radius: 8px;
  width: fit-content;
  background: var(--shades-green94, #EBF5F2);
}

.my-account-data-table-text-project{
  padding: 3px 12px;
  width: fit-content;
  border-radius: 16px;
  background: var(--overlay-grey-1110, rgba(28, 28, 28, 0.10));
  color: var(--grey-grey11, #1C1C1C);
  font-family: "Atkinson Hyperlegible Mono";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0px;
}

.my-account-data-table-icon-contain{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.my-account-data-table-icon {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  background-color: unset;
  border: unset;
}

button.my-account-data-table-icon > svg {
  padding: 0 12px;
}

.my-account-data-table-icon:hover {
  border-radius: 8px;
  background: var(--shades-green94, #EBF5F2);
}

.my-account-form-info{
  display: flex;
  padding: 32px 24px 40px 24px;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--grey-grey94, #F0F0F0);
}

.my-account-form-info-col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}

.my-account-form-info-col-title{
  align-self: stretch;
  color: var(--grey-black, #000);
  margin: 0px;

  /* title4/desktop */
  font-family: "PP Neue Montreal Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.my-account-preview-img {
  position: absolute;
  display: none;
  right: 24px;
  top: -180px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #888;
}

.input-error{
  border-radius: 8px;
  border: 1px solid var(--semantic-alert, #A91919);
}

.input-error-contain{
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.input-error-text{
  flex: 1 0 0;
  color: var(--semantic-alert, #A91919);
  margin: 0px;

  /* text/caption */
  font-family: "PP Neue Montreal";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
}

.select-my-info, .select-my-account{
  display: flex;
  padding: 16px;
  height: 62px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--grey-white, #FFF);
  border: 0px;

  font-family: "PP Neue Montreal";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.select-my-info{
  width: 402.5px;
}

.select-my-account{
  width: 293px;
}

.search-connector-contain, .search-connector-contain-selected{
  display: flex;
  width: 538px;
  padding: 24px 16px;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.search-connector-contain, .select-trem-contain{
  background: var(--grey-white, #FFF);
}

.search-connector-contain:hover, .select-trem-contain:hover{
  background: var(--grey-grey98, #F9F9F9);
}

.search-connector-contain-selected, .select-trem-contain-selected{
  background: var(--secondary-green-extra-light, #E5F0EA);
}

.search-connector-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.search-connector-title{
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.search-connector-title-text{
  color: var(--grey-black, #000);
  margin: 0px;
  /* title5/all */
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.search-connector-text, .search-connector-href{
  margin: 0px;
  font-family: "PP Neue Montreal";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.search-connector-text{
  color: var(--grey-black, #000);
}

.search-connector-href{
  color: var(--secondary-green-dark, #111B19);
}

.search-antelec{
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 13px;
  border-radius: 32px;
  background: var(--primary-green, #00857B);
}

.select-connector{
  display: flex;
  gap: 4px;
}

.nb-connect-select-text{
  position: relative;
  left: 31px;
  top: -14px;
  color: var(--primary-green, #00857B);
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.select-connector-contain{
  display: flex;
  margin-bottom: 8px;
  width: 794px;
  padding: 12px 12px 12px 16px;
  justify-content: space-between;
  align-items: center;
  background: var(--grey-grey98, #F9F9F9);
  border-radius: 12px;
}

.select-connector-contain:hover{
  background-color: var(--color-grey-light);
}

.select-connector-contain[selected] {
  font-weight: bold !important;
  outline: solid #00857B 3px;
}


.button-edit-select-connector{
  display: flex;
  padding: 8px 12px 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--overlay-black-70, rgba(0, 0, 0, 0.70));
  background: var(--grey-grey98, #F9F9F9);

  /* ui/button */
  color: var(--grey-black, #000);
  font-family: "PP Neue Montreal";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.button-edit-select-connector-disabled{
  display: flex;
  padding: 8px 12px 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--grey-grey63, #A1A1A1);
  background: var(--grey-grey98, #F9F9F9);

  /* ui/button */
  color: var(--grey-grey63, #A1A1A1);
  font-family: "PP Neue Montreal";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dispaly-button-wire{
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-term-info{
  display: flex;
  align-items: center;
  gap: 16px;
}

.select-trem-contain, .select-trem-contain-selected{
  display: flex;
  width: 538px;
  padding: 16px 32px 16px 16px;
  justify-content: space-between;
  align-items: center;border-bottom: 1px solid var(--grey-grey80, #CCC);
}

/* Le conteneur parent doit être en position relative */
.tooltip-conteneur, .tooltip-conteneur-2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Le style du popup (caché par défaut) */
.tooltip-conteneur .tooltip-texte {
  width: 360px;
}

.tooltip-conteneur-2 .tooltip-texte {
  white-space: nowrap;
}

.tooltip-conteneur .tooltip-texte, .tooltip-conteneur-2 .tooltip-texte {
  visibility: hidden;
  background-color: #333;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background: var(--secondary-green-extra-light, #E5F0EA);
  color: var(--grey-black, #000);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "PP Neue Montreal Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */

  /* Positionnement au-dessus du texte */
  position: absolute;
  z-index: 1;
  transform: translateX(-50%); /* Pour centrer le popup */

  /* Effet d'apparition */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tooltip-conteneur .tooltip-texte{
  bottom: -480%;
  left: 50%;
}

.tooltip-conteneur-2 .tooltip-texte {
  bottom: -250%;
  left: 50%;
}

/* Ajout d'une petite flèche en bas du popup */
.tooltip-conteneur .tooltip-texte::after, .tooltip-conteneur-2 .tooltip-texte::after {
  content: "";
  position: absolute;
  bottom: 100%; /* On place la flèche tout en haut du tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--secondary-green-extra-light, #E5F0EA) transparent;
}

/* Affichage du popup au survol du conteneur */
.tooltip-conteneur:hover .tooltip-texte, .tooltip-conteneur-2:hover .tooltip-texte {
  visibility: visible;
  opacity: 1;
}

.text-max-connect, .text-max-connect-2{
  color: var(--grey-black, #000);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "PP Neue Montreal";
  margin: 0px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.text-max-connect-2{
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.display-quote-element{
  display: flex;
  width: 453px;
  flex-direction: column;
  align-items: flex-start;
  gap: 39px;
}

.display-quote-element-2{
  display: flex;
  width: 400px;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.display-quote-element-3{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.display-quote-element-4{
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.display-quote-element-5{
  display: flex;
  padding: 32px 24px 40px 24px;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--grey-grey94, #F0F0F0);
  flex-direction: column;
}

.display-quote-element-6{
  display: flex;
  padding: 32px 24px 40px 24px;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}


.display-quote-title{
  display: flex;
  align-items: center;
  gap: 8px;
}

.display-quote-title-2{
  flex: 1 0 0;color: var(--grey-black, #000);
  margin: 0px;
  /* title5/all */
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.display-quote-text{
  flex: 1 0 0;
  color: var(--grey-grey11, #1C1C1C);
  margin: 0px;
  font-family: "PP Neue Montreal";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.display-quote-text-2{
  color: var(--grey-black, #000);
  margin: 0px;
  /* title5/all */
  font-family: "PP Neue Montreal Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.display-quote-text-aera{
  display: flex;
  width: 930px;
  height: 90px;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 332px;
  border-radius: 2px;
  border: 1px solid var(--grey-grey63, #A1A1A1);
  background: var(--grey-white, #FFF);
  color: var(--grey-grey40, #666);
  font-family: "PP Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.input-quote{
  display: flex;
  padding: 16px;
  height: 30px;
  align-self: stretch;
  border-radius: 8px;
  border: 0.5px solid var(--grey-grey11, #1C1C1C);
  background: var(--grey-white, #FFF);

  font-family: "PP Neue Montreal";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.display-quote-first-check{
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-bottom: 1px solid var(--grey-grey80, #CCC);
}

.display-popup-close {
  display: flex;
  position: absolute;
  right: 16px;
  top: 16px;
}

button, [type=button] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled {
  cursor: not-allowed;
}

#menu_veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a9191900;
}

.menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  min-height: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 5px 2px #888;
  overflow: hidden;
  visibility: hidden;
}

.menu button {
  border: unset;
  text-align: left;
  padding: 10px 16px;
}

.menu button:hover {
  background-color: lightgrey;
}

WireColor {
  height: 40px;
}

#menu_colors {
  width: 50px;
}

#nb_remaining_filaments {
  font-family: 'PP Neue Montreal', 'Neue Montreal', sans-serif;
  font-weight: bold;
  position: absolute;
  background: #f0eee5ed;
  right: 0;
  bottom: 0;
  text-align: right;
  padding: 6px 10px;
  box-shadow: -8px -8px 20px 8px #F0EEE5;
}

.cord-form-assembly-label {
  width: unset;
  text-align: left;
  position: absolute;
  font-size: 18px;
}

.cord-form-assembly-length {
  width: unset;
  line-height: unset;
  text-align: right;
  position: absolute;
  font-size: 13px;
}

#left_connector_label {
  top: 110px;
  left: 10px;
}

#right_connector_label_1 {
  top: 65px;
  right: 125px;
}

#right_connector_label_2 {
  top: 161px;
  right: 125px;
}

#fixed_length_label {
  font-size: 16px;
  top: 46px;
  left: 92px;
}

#right_wire_length_1 {
  bottom: 98px;
  right: 211px;
  rotate: -20deg;
  transform-origin: bottom right;
}

#right_wire_length_2 {
  bottom: 16px;
  right: 218px;
  rotate: 22deg;
  transform-origin: bottom right;
}
