@font-face {
  font-family: "GT-Walsheim";
  src: url("../fonts/WOFF2/GT-Walsheim-Regular.woff2") format("woff2"), url("../fonts/WOFF/GT-Walsheim-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-Walsheim";
  src: url("../fonts/WOFF2/GT-Walsheim-Bold.woff2") format("woff2"), url("../fonts/WOFF/GT-Walsheim-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: 18px;
  min-height: 100vh;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body main {
  min-height: 80vh;
}
body header, body footer {
  padding: 1rem;
}
body a#skip-to-content {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body a#skip-to-content:focus, body a#skip-to-content:active {
  position: absolute;
  z-index: 100;
  top: 0;
  width: initial;
  height: initial;
  left: 0;
  background-color: #fff;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 20px;
  border: 3px solid #000;
}
body a {
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body img[alt] {
  max-width: 100%;
}

footer {
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 12px;
  }
}
footer .footer-hashbang-logo {
  width: 46px;
  height: auto;
  margin-right: 8px;
}
footer a {
  color: black;
}

.header {
  background-color: #106B66;
  padding: 20px 40px;
  color: white;
}

.header-content {
  display: flex;
  align-items: center;
}
.header-content h1 {
  font-size: 1.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo {
  margin-right: 20px;
  background-color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
}

.header-title {
  font-size: 1.8em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header-title {
    font-size: 1.2rem;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
  }
}

.header-end {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-end {
    flex-direction: column;
    margin-top: 1rem;
  }
}
.header-end div {
  font-size: 1rem;
}
.header-end .header-items {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-end .header-end-item {
  font-size: 1rem;
  border: solid 0.1rem #D87414;
  background-color: #D87414;
  padding: 0.5rem;
  border-radius: 15px;
  font-weight: normal;
  color: white;
}
@media screen and (max-width: 768px) {
  .header-end .header-end-item {
    font-size: 0.8rem;
  }
}
.header-end .header-end-item:hover {
  text-decoration: none;
  background-color: #FBBB97;
}

#main-content {
  background-color: white;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
}
@media screen and (max-width: 768px) {
  #main-content {
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}

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

.m-1 {
  margin: 1rem;
}

.content {
  padding: 1rem;
  padding-bottom: 3rem;
}

.title,
.section-title,
.intro {
  text-align: center;
}

.formateur-section,
.apprenant-section,
.stats {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border: solid 1px #D87414;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

a {
  color: #106B66;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

button,
.button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #106B66;
  color: white;
  cursor: pointer;
  font-weight: bold;
  align-self: center;
}

button:hover,
.button:hover {
  background-color: #0e5c59;
}

.form-error {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: red;
}

hr {
  margin: 30px 0;
}

.projet-layout {
  display: flex;
  min-height: 100vh;
  position: relative;
  background-color: #106B66;
}
.projet-layout .menu-button {
  display: none;
}
.projet-layout .sidebar {
  display: block;
  width: 250px;
  background-color: #106B66;
  color: white;
  padding: 20px;
  padding-left: 2rem;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}
.projet-layout .sidebar .sidebar-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projet-layout .sidebar .sidebar-items li {
  margin-bottom: 15px;
}
.projet-layout .sidebar .sidebar-items a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.projet-layout .sidebar .sidebar-items a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .projet-layout .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    z-index: 12;
  }
  .projet-layout .sidebar-open {
    transform: translateX(0);
  }
  .projet-layout .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 11;
  }
  .projet-layout .overlay-visible {
    opacity: 1;
    visibility: visible;
  }
  .projet-layout .menu-button {
    display: block;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #106B66;
    border: 1px lightgray solid;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    z-index: 10;
  }
}

/* Contenu principal */
.projet-content {
  flex: 1;
  padding: 2rem;
  background-color: #f9f9f9;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
}
@media screen and (max-width: 768px) {
  .projet-content {
    padding: 8rem 1rem;
    padding-top: 5rem;
    max-width: 100%;
  }
}

.html-content {
  margin: 1rem 15%;
}
@media screen and (max-width: 768px) {
  .html-content {
    margin: 1rem 0;
  }
}

.accordion-head-img {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: stretch;
  margin-bottom: 1rem;
}
.accordion-head-img img {
  max-height: 80px;
}
@media screen and (max-width: 768px) {
  .accordion-head-img img {
    max-width: 40px;
  }
}

.is-error {
  color: red;
}

.is-warning {
  color: #B04D04;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.buttons .button {
  margin-top: 0.1rem;
}

.form-step {
  width: 100%;
}
.form-step .container {
  margin: 0 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form-step .container {
    margin: 0;
  }
}
.form-step .container section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-step .container section .form-field {
  margin: 1rem 0;
}

.bouche-form {
  border: solid 1px black;
  border-radius: 10px;
  padding: 1rem;
  margin: 0.5rem 0;
  position: relative;
}
.bouche-form .remove-bouche {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 1rem;
  margin-right: 1rem;
  color: red;
  cursor: pointer;
  border: unset;
  padding: 0;
  background-color: unset;
}

.error-message {
  display: flex;
  color: red;
  margin: 1rem;
  padding: 1rem;
  border: solid 1px red;
  border-radius: 10px;
}

dl {
  display: grid;
  grid-template-columns: max-content auto;
}
@media screen and (max-width: 768px) {
  dl {
    grid-template-columns: 50% 50%;
  }
}

dt {
  grid-column-start: 1;
  font-weight: bold;
}

dd {
  grid-column-start: 2;
}

.step-nav {
  margin: 1rem 0;
}
.step-nav ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-nav li {
  font-weight: normal;
}
.step-nav li + li::before {
  content: "/"/"";
  margin: 0 0.5rem;
}
.step-nav li[aria-current=step] {
  font-weight: bold;
}

.form-layout {
  display: flex;
  flex-direction: columns;
  align-items: center;
}

.defaut-debits {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.defaut-debits table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.defaut-debits table, .defaut-debits th, .defaut-debits td {
  border: 1px solid #ccc;
}

.form-reseau-primaires {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.form-reseau-primaires .connector-lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  height: 100%;
}
.form-reseau-primaires form {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
.form-reseau-primaires form #block-1 {
  border-color: #66BB3A;
}
.form-reseau-primaires form #block-2 {
  border-color: #FFB800;
}
.form-reseau-primaires form #block-3 {
  border-color: #5C9EDC;
}
.form-reseau-primaires form #block-4 {
  border-color: #C21807;
}

.accordion {
  width: 100%;
  margin: 1rem 0;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}
.accordion-item.open .accordion-content {
  display: block;
}

[hidden] {
  display: none !important;
}

.accordion-header {
  display: flex;
  align-items: center;
  background-color: #106B66;
  border-radius: 12px;
}

.accordion-header-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.accordion-header-button:hover, .accordion-header-button:focus {
  background: rgba(0, 0, 0, 0.05);
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

.accordion-content {
  padding: 0 1rem;
  display: none;
}

.remove-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.5rem;
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.remove-button:hover, .remove-button:focus {
  transform: scale(1.1);
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: inherit;
}
.tooltip .tooltip-text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 4;
  padding: 0.5rem;
  font-size: 0.875rem;
  z-index: 1000;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 16;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay .modal {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal {
    max-width: 100%;
    padding: 2rem 0;
  }
}
.modal-overlay .modal .modal-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.modal-overlay .modal .options-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.modal-overlay .modal .options-list .option-item {
  border: 1px solid #106B66;
  width: 28%;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: white;
  align-self: stretch !important;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal .options-list .option-item {
    width: 40%;
  }
}
.modal-overlay .modal .options-list .option-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.modal-overlay .modal .options-list .option-item .option-img {
  max-width: 100%;
  height: auto;
  padding: 0.1rem;
  background-color: white;
}
.modal-overlay .modal .options-list .option-item .option-name {
  margin-top: 8px;
  color: black;
}
.modal-overlay .modal .cancel-button {
  margin-top: 16px;
  padding: 6px 12px;
  background: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.modal-overlay .modal .cancel-button:hover {
  background: red;
}

.radio-buttons {
  border: solid 1px #ccc;
  border-radius: 8px;
  padding-inline: unset;
}
.radio-buttons legend {
  font-weight: bold;
}
.radio-buttons .radio-buttons-options {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.radio-buttons .radio-buttons-options.center {
  justify-content: center;
}
.radio-buttons .radio-buttons-options.wrap {
  flex-wrap: wrap;
}
.radio-buttons .radio-buttons-options .radio-button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.radio-buttons .radio-buttons-options .radio-button .radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.radio-buttons .radio-buttons-options .radio-button .radio-label img.radio-label-img {
  max-height: 100px;
}
.radio-buttons .radio-buttons-options .radio-button .radio-label label {
  margin-bottom: 0;
}

#devis-form {
  max-width: 100%;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.devis {
  width: 100%;
  border-collapse: collapse;
}
.devis .categorie {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
  background-color: lightgrey;
}
.devis .separator {
  font-weight: bold;
}
.devis tr.help-text {
  display: none;
}
.devis th, .devis td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.modal-devis {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-backdrop-devis {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content-devis {
  position: relative;
  width: 400px;
  padding: 1.5em;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  .modal-content-devis {
    width: 300px;
    margin-top: 5rem;
  }
}

.statistics {
  border-collapse: collapse;
}
.statistics th {
  background-color: lightgrey;
}
.statistics th, .statistics td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

body {
  font-family: "GT-Walsheim", sans-serif;
  font-weight: 400;
  background-color: #106B66;
}

h1, h2, h3 {
  font-family: "GT-Walsheim", sans-serif;
  font-weight: 700;
}

/*# sourceMappingURL=app.css.map */
