﻿@charset "UTF-8";
/* --- RESET --- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Chrome */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Opéra*/
input::-o-inner-spin-button,
input::-o-outer-spin-button {
  -o-appearance: none;
  margin: 0;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
}

textarea {
  resize: none;
}

button,
select,
option {
  cursor: pointer;
}

body {
  font-family: sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

button {
  outline: 0;
  border: 0;
}

/* --- /RESET --- */
/* === OpenSans === */
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
  color: #101F3D;
  font-family: "Roboto";
  font-size: 14px;
}
body input,
body button,
body textarea {
  font-family: "Roboto";
}

.vrai {
  color: green !important;
}

/* === Class globales === */
.hide {
  display: none !important;
}

.no-overflow {
  overflow: hidden !important;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media (width <= 1280px) {
  .container {
    width: 884px;
  }
}
@media (width <= 1024px) {
  .container {
    width: 100%;
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (width <= 768px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (width <= 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion:has(.select--active) {
  overflow: visible;
}
.accordion--active .accordion__content {
  margin-top: 10px;
  grid-template-rows: 1fr;
}
.accordion__head {
  cursor: pointer;
}
.accordion__arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, margin-top 0.3s ease;
}
.accordion__desc, .accordion-list {
  overflow: hidden;
}
.accordion__desc:has(.select--active), .accordion-list:has(.select--active) {
  overflow: visible;
}

.search {
  position: relative;
}
.search__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  position: absolute;
}
.search__icon::before {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: absolute;
  transition: background-color 0.2s ease;
}
.search__icon svg {
  z-index: 1;
}
.search__input {
  width: 216px;
  height: 44px;
  border: 1px solid rgba(15, 72, 129, 0.1019607843);
  border-radius: 8px;
  padding-left: 44px;
  background-color: white;
}

.select {
  border: 1px solid #bbbbbb;
  border-radius: 8px;
  background-color: white;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.select--active {
  border-radius: 8px 8px 0 0;
}
.select--active .select__arrow {
  transform: rotate(-180deg);
}
.select--active .select__content {
  border: 1px solid #bbbbbb;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 5px 20px 0px rgba(16, 31, 61, 0.1);
  grid-template-rows: 1fr;
  opacity: 1;
}
.select--active .select-list__label {
  border-top: 1px solid #bbbbbb;
}
.select--scroll .select-list {
  overflow-y: scroll;
  max-height: 500px;
}
.select--scroll .select-list::-webkit-scrollbar {
  width: 10px;
}
.select--scroll .select-list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #ededed;
  cursor: pointer;
}
.select--scroll .select-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #7e7e7e;
  cursor: pointer;
}
.select:has(input:checked) .select__result {
  color: #101F3D;
  font-weight: 400;
}
.select__head {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select__result {
  color: #bbbbbb;
  font-size: 14px;
  line-height: 18px;
}
.select__arrow {
  transition: transform 0.3s ease;
}
.select__content {
  box-sizing: content-box;
  width: 100%;
  border: 0;
  border-color: #bbbbbb;
  background-color: white;
  display: grid;
  grid-template-rows: 0fr;
  position: absolute;
  left: -1px;
  z-index: 2;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}
.select-list {
  overflow: hidden;
}
.select-list__label {
  width: 100%;
  padding: 10px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.select-list__label:hover {
  background-color: #50B8E4;
  color: white;
}
.select-list__label--suggested {
  background-color: rgba(15, 72, 129, 0.1019607843);
}
input:checked ~ .select-list__label {
  background-color: #50B8E4;
  color: white;
}

.switch {
  width: 48px;
  height: 22px;
  display: inline-block;
  position: relative;
}
.switch__slider {
  width: 100%;
  height: 100%;
  border-radius: 48px;
  background-color: rgba(15, 72, 129, 0.1019607843);
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.switch__slider:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 0px 6px 0px rgba(16, 31, 61, 0.06);
  position: absolute;
  left: 4px;
  transition: all 0.2s ease;
}
.switch__input:checked + .switch__slider {
  background-color: #50B8E4;
}
.switch__input:checked + .switch__slider::before {
  transform: translateX(24px);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox__input {
  flex-shrink: 0;
  margin: 0;
  border: 1.5px solid #101F3D;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-self: center;
}
.checkbox__input::before {
  content: "✔";
  color: white;
  font-weight: 700;
  line-height: 16px;
  opacity: 0;
  -webkit-opacity: 0;
  transition: color 0.15s ease, opacity 0.15s ease, border 0.15s ease;
}
.checkbox__input:checked::before {
  color: #50B8E4;
  opacity: 1;
  -webkit-opacity: 1;
}
.checkbox__input--round {
  flex-shrink: 0;
  margin: 0;
  border: 1.5px solid #101F3D;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
}
.checkbox__input--round::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.15s ease;
}
.checkbox__input--round:checked::before {
  background-color: #50B8E4;
}
.checkbox__input--round::before {
  width: 10px;
  height: 10px;
}
.checkbox__label {
  font-size: 14px;
  line-height: 15px;
  cursor: pointer;
}

.table--scroll .table__head {
  margin-right: 15px;
}
.table--scroll .table-list {
  overflow-y: scroll;
  max-height: 580px;
  padding-right: 5px;
}
.table--scroll .table-list::-webkit-scrollbar {
  width: 10px;
}
.table--scroll .table-list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #ededed;
  cursor: pointer;
}
.table--scroll .table-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #7e7e7e;
  cursor: pointer;
}
.table__head {
  border: 1px solid rgba(15, 72, 129, 0.1019607843);
  border-radius: 8px 8px 0px 0px;
  padding: 15px 10px;
  background: linear-gradient(0deg, rgba(15, 72, 129, 0.05) 0%, rgba(15, 72, 129, 0.05) 100%), #FFF;
  display: grid;
  grid-template-columns: 110px 2fr 2fr 2fr 3fr 1fr;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: -0.26px;
}
.table__column {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.table__column--sort {
  cursor: pointer;
}
.table__column--asc p, .table__column--desc p {
  position: relative;
}
.table__column--asc p::after, .table__column--desc p::after {
  font-size: 18px;
  position: absolute;
  right: -20px;
}
.table__column--asc p::after {
  content: "▾";
  top: 2px;
}
.table__column--desc p {
  position: relative;
}
.table__column--desc p::after {
  content: "▴";
  top: 1px;
}
.table-list {
  display: flex;
  flex-direction: column;
}
.table .item {
  border: 1px solid rgba(15, 72, 129, 0.1019607843);
  border-top: 0;
  padding: 10px;
  background: #FFF;
}
.table .item-list {
  display: grid;
  grid-template-columns: 110px 2fr 2fr 2fr 3fr 1fr;
  gap: 15px;
}
.table .item-list__ele {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.table .item-list__ele--icons {
  display: flex;
  gap: 10px;
}
.table .item-list__img {
  width: 46px;
}

.panel {
  border: 1px solid rgba(15, 72, 129, 0.1019607843);
  border-radius: 10px;
  padding: 30px;
  background-color: white;
  box-shadow: 0px 5px 20px 0px rgba(16, 31, 61, 0.05);
}
.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel__title {
  color: #101F3D;
  font-size: 22px;
  font-weight: 600;
  font-variant: small-caps;
  line-height: 26px;
}
.panel__block {
  display: flex;
  gap: 15px;
}
.panel__link {
  padding: 12px 36px;
  border: 1px solid #50B8E4;
  border-radius: 8px;
  background-color: #50B8E4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-variant: small-caps;
  line-height: 20px;
  cursor: pointer;
}
.panel__hr {
  margin: 15px 0;
  height: 2px;
  border: 0;
  background-color: rgba(15, 72, 129, 0.1019607843);
}
.panel__right {
  display: flex;
  justify-content: flex-end;
}

.global {
  width: 928px;
  max-width: 100%;
  font-family: "OpenSans" !important;
  margin: auto;
}
.global__title {
  color: #272727;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
@media (width <= 1279px) {
  .global__title {
    font-size: 28px;
  }
}
.global__subtitle {
  color: #91929F;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 8px;
}
.global__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  margin-top: 30px;
}
.global__content-title {
  color: #272727;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  background: #E3E8F0;
  display: flex;
  width: 100%;
  padding: 10px 20px;
  font-family: "OpenSans" !important;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.global__btn {
  display: flex;
  width: 300px;
  height: 52px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-family: "OpenSans";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 100%;
}
.global__btn.btn-primary {
  background: #2EA3D4;
}
.global__btn.btn-secondary {
  background: #39C439;
}
.global__btn.btn-dark {
  background: #272727;
}
.global__btn.locked {
  opacity: 0.4;
  cursor: not-allowed;
}
.global__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.global .list {
  width: 100%;
  border: 1px solid #E3E8F0;
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.global .list__el {
  color: #272727;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 10px 20px;
  border-bottom: 1px solid #E3E8F0;
}
.global .list__el:last-child {
  border-radius: 0 0 8px 8px;
}
.global .list__el-module {
  font-weight: 300;
}
.global .list__el.check {
  background: linear-gradient(0deg, rgba(57, 196, 57, 0.1) 0%, rgba(57, 196, 57, 0.1) 100%), #FFF;
}
.global .list__el.locked {
  opacity: 0.4;
  cursor: not-allowed;
}
.global .list__el.locked .list__el-link {
  cursor: not-allowed;
}
.global .list__el-libelle {
  text-align: left;
}
.global .list__el-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global .list__el-bloc {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (width <= 768px) {
  .global .list__el-bloc {
    align-items: flex-start;
  }
  .global .list__el-bloc:last-child {
    display: none;
  }
}
.global .list__el-picto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width <= 768px) {
  .global .list__el-picto img {
    padding: 3px 0;
  }
}
.global .list__el-action {
  border-radius: 100%;
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}
.global .list__el-action img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.global .list__el-action.refresh {
  background: #fff;
  border: 1px solid #E3E8F0;
}
.global .list__el-action.arrow {
  background: #E7EDF2;
}
.global .list__el-action.play {
  background: rgba(46, 163, 212, 0.1490196078);
}
