@charset "UTF-8";
/* BASE */
body {
  color: #333;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #FFFAEE;
  font-size: 1rem;
  letter-spacing: 0px;
  line-height: 24px;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body a {
  text-decoration: none;
  color: #333;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0px;
  line-height: 50px;
  font-weight: 700;
  font-family: "Candal", helvetica;
}

h2 {
  font-size: 1.8rem;
  letter-spacing: 0px;
  line-height: 36px;
  font-weight: 500;
  font-family: "Candal", helvetica;
  margin-top: 0;
}

p {
  font-size: 1rem;
  letter-spacing: 0px;
  line-height: 24px;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
    gap: 1rem;
  }
}

#footer {
  margin-top: auto;
}

/* LAYOUT */
.header {
  background-color: #00966e;
  margin: 0;
  padding-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.168627451);
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFAEE;
  border-radius: 15px 15px 0 0;
  max-width: 1190px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.header .container-logo {
  display: flex;
  gap: 2rem;
  color: #00966e;
  align-items: end;
}
.header .container-logo p {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header .container-logo {
    padding: 1rem;
    gap: 1rem;
  }
}
.header .hdr-logo {
  margin: 0;
}
.header .hdr-logo-link {
  color: #00966e;
}
.header .hdr-logo-image {
  display: block;
  width: 140px;
  height: auto;
}
.header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .header-actions a {
  color: #00966e;
}
.header .header-actions .language-selector .language-selector__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzAwOEE0NSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat right 0.75rem center;
  background-color: transparent;
  border: 1px solid #00966e;
  color: #00966e;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 999px;
}
.header .header-actions .language-selector .language-selector__select:focus, .header .header-actions .language-selector .language-selector__select:focus-visible {
  outline: none;
  border-color: #00966e;
}
.header .header-actions .language-selector .language-selector__select option {
  color: #00966e;
}

/* COMPONENTS */
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}

.btn-secondary {
  background-color: #12397c;
  color: white;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #FFFAEE;
  border-color: #12397c;
  color: #12397c;
}

/* PAGES */
.section-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.section-home .article-body {
  grid-column: 1/-1;
}
.section-home .home-card {
  border: 1px solid #00966e;
}
.section-home .home-card .home-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.section-home .home-card .home-card__links a:hover {
  color: #00966e;
}
.section-home .home-card__logo {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00966e;
}
.section-home .home-card__logo-circle {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 2px solid #00966e;
  border-radius: 50%;
  box-sizing: border-box;
}
.section-home .home-card__logo-circle img {
  display: block;
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-home .home-card__content {
  padding: 2rem 1.5rem;
}
.section-home .home-card__content-title {
  color: #00966e;
  text-align: center;
}
@media (max-width: 900px) {
  .section-home {
    grid-template-columns: 1fr;
  }
  .section-home .home-card {
    width: 100%;
  }
}

.container-login {
  display: grid;
  grid-template-columns: 3fr 1fr;
  margin-top: 2rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .container-login {
    grid-template-columns: 1fr;
  }
}
.container-login .col-form {
  padding: 2rem;
  background-color: #B6D8F2;
  border-radius: 16px;
}
.container-login .login-username, .container-login .login-password {
  display: flex;
  flex-direction: column;
}
.container-login .textarea, .container-login .input {
  box-shadow: inset 0 0.0625em 0.125em rgba(17, 17, 17, 0.0509803922);
  max-width: 100%;
  width: 100%;
  margin-top: 0.5rem;
  height: 24px;
}
.container-login .select select, .container-login .textarea, .container-login .input {
  background-color: #FFFAEE;
  border-radius: 4px;
  color: #363636;
  border: transparent;
}
.container-login .login-submit {
  display: flex;
  width: 100%;
  justify-content: center;
}
.container-login .login-submit input {
  background-color: #12397c;
  color: white;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  width: 100%;
  border: transparent;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.container-login .container-register {
  display: flex;
  flex-direction: column;
}
.container-login .logos-partenaires {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.container-login .logos-partenaires img {
  width: 200px;
  height: auto;
}

.section-eleves {
  margin-top: 2rem;
}
.section-eleves .eleve-card__header h2 {
  margin-bottom: 0;
}
.section-eleves .eleve-card__header {
  margin-bottom: 4rem;
  border-bottom: 0px;
}
.section-eleves .eleves-table-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.section-eleves #eleves-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 1rem;
}
.section-eleves #eleves-table th,
.section-eleves #eleves-table td {
  text-align: left;
  border: 1px solid #d7d7d7;
  border-right: none;
  border-left: none;
  border-top: none;
}
.section-eleves #eleves-table th a,
.section-eleves #eleves-table td a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
}
.section-eleves #eleves-table tbody tr[data-href] {
  cursor: pointer;
}
.section-eleves #eleves-table th.sortable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.section-eleves #eleves-table th.sortable:hover {
  background-color: #f0f0f0;
}
.section-eleves #eleves-table th .sort-arrows {
  font-size: 0.8em;
  margin-left: 0.5em;
}
.section-eleves .eleve-row:has(.eleve-info:hover) .eleve-info {
  background-color: #f0f0f0;
}
.section-eleves .eleve-row:has(.eleve-info__ecole:hover) .eleve-info__ecole {
  background-color: #f0f0f0;
}
@media (max-width: 768px) {
  .section-eleves #eleves-table thead {
    display: table-header-group;
  }
  .section-eleves #eleves-table thead::before {
    content: "Trier par ↕";
    display: block;
    padding: 0.75rem 0.75rem 0.35rem;
    font-weight: 600;
    text-align: left;
  }
  .section-eleves #eleves-table thead tr {
    display: table-row;
  }
  .section-eleves #eleves-table thead th:first-child,
  .section-eleves #eleves-table tbody td:first-child {
    display: none;
  }
  .section-eleves #eleves-table thead th {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.2;
    font-size: 0.9rem;
  }
}

.eleve-single {
  padding: 2rem 0;
}

.eleve-card {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
}

.eleve-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #d9d9d9;
}

.eleve-card__title {
  margin: 0;
}

.eleve-card__actions {
  display: flex;
  max-width: 960px;
  margin: 1.5rem auto 0;
}

.eleve-card__buttons {
  display: flex;
  align-items: end;
}

.eleve-card__buttons .btn {
  font-family: "Montserrat", sans-serif;
}

.eleve-share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 1rem;
}

.eleve-share-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}

.eleve-share-button__icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* ICONS */
.eleves-icons {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin-bottom: 2rem;
}

.eleves-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  cursor: pointer;
}
.eleves-icon span {
  text-align: center;
  font-size: 14px;
  line-height: 1.1;
  margin-top: 0.5rem;
}
.eleves-icon .icon {
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.eleves-icon .icon img {
  width: 40px;
  height: auto;
}
.eleves-icon:hover .icon {
  border-color: #00966e;
}
.eleves-icon:hover .icon img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(88%) saturate(1048%) hue-rotate(123deg) brightness(89%) contrast(101%);
}
.eleves-icon.is-active {
  color: #00966e;
}
.eleves-icon.is-active .icon {
  border-color: #00966e;
}
.eleves-icon.is-active .icon img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(88%) saturate(1048%) hue-rotate(123deg) brightness(89%) contrast(101%);
}

.eleve-card__section {
  margin-bottom: 32px;
}

.eleve-card__section-title {
  margin: 0 0 12px;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #00966e;
  font-style: italic;
}

.eleve-card__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}

.livret-table__title h3 {
  margin: 0;
}

.livret-table__title p {
  margin-bottom: 1rem;
  font-style: italic;
}

.livret-table__competences {
  align-content: end;
}

.eleve-card__table th,
.eleve-card__table td {
  padding: 14px 16px;
  border-bottom: 1px solid #d9dde3;
  text-align: left;
  vertical-align: top;
  line-height: 1.3;
  font-size: 0.9rem;
}

.eleve-card__table p {
  font-size: 0.9rem;
}

.eleve-card__table th {
  font-weight: 400;
  background: #f7f8fa;
}

.eleve-card__table td {
  color: #374151;
}

.eleve-card__table thead th {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1f2937;
  background: #f3f4f6;
  border-top: 1px solid #d9dde3;
}

.eleve-card__table tbody tr:first-child th,
.eleve-card__table tbody tr:first-child td {
  border-top: 1px solid #d9dde3;
}

.eleve-card__table tbody tr:hover {
  background: #fafafa;
}

.eleve-card__wysiwyg > :first-child {
  margin-top: 0;
}

.eleve-card__wysiwyg > :last-child {
  margin-bottom: 0;
}

.eleve-copy-toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1rem;
  background: rgba(32, 32, 32, 0.92);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.eleve-copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.competence-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.competence-status img {
  width: 25px;
  height: auto;
}

th p {
  margin: 0;
}

@media (max-width: 768px) {
  .eleve-card {
    padding: 1.25rem;
  }
  .eleve-card__header {
    flex-direction: column;
    align-items: stretch;
  }
  .eleve-card__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .eleve-card__table th,
  .eleve-card__table td {
    padding: 12px;
    white-space: normal;
  }
  .eleve-card__section-title {
    font-size: 0.8rem;
  }
}
.section-ecoles {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.section-ecoles .ecoles-list {
  margin-top: 2rem;
  border-top: 1px solid #d9dde3;
}
.section-ecoles .ecole-item {
  border-bottom: 1px solid #d9dde3;
}
.section-ecoles .ecole-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  background: transparent;
  border: 0;
  color: #333;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.section-ecoles .ecole-item__header:hover {
  color: #00966e;
}
.section-ecoles .ecole-item__title {
  font-weight: 500;
}
.section-ecoles .ecole-item__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}
.section-ecoles .ecole-item.is-open .ecole-item__arrow {
  transform: rotate(90deg);
}
.section-ecoles .ecole-item.is-open .ecole-item__header {
  color: #00966e;
}
.section-ecoles .ecole-item__content {
  padding: 0 0 1.5rem;
}
.section-ecoles .ecole-item__body {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.section-ecoles .ecole-item__image {
  flex: 0 0 220px;
}
.section-ecoles .ecole-item__image img {
  display: block;
  width: auto;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-ecoles .ecole-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section-ecoles .ecole-item__text p {
  margin: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section-ecoles .ecole-item__body {
    flex-direction: column;
    gap: 1rem;
  }
  .section-ecoles .ecole-item__image {
    width: 100%;
    flex: none;
  }
  .section-ecoles .ecole-item__image img {
    height: 200px;
  }
}/*# sourceMappingURL=style.css.map */