/* Reset */
@import url(https://codepen.io/chrisdothtml/pen/ojLzJK.css);
@import url(//codepen.io/chrisdothtml/pen/ojLzJK.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);
@import url(https://fonts.googleapis.com/css?family=Mukta:700);
@import url(https://fonts.googleapis.com/css?family=Damion|Muli:400,600);
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

.fa-spinner {
  animation: rotating 1s infinite ease-in-out;
}

.fa-sync {
  animation: rotating 3s infinite linear;
}

input[type=date]::-webkit-input-placeholder {
  visibility: hidden !important;
}

.box {
  padding: 10px;
  position: relative;
  width: 95%;
  height: 95%;
  background-color: white;
  border-radius: 5px;
  border: 1px solid black;
}
.box .titre {
  grid-area: titre;
  text-align: center;
  margin-bottom: 20px;
}
.box .titre h1 {
  font-weight: 600;
}
.box .line.mt20 {
  margin-top: 20px;
}
.box .line h2 {
  font-size: 20px;
  color: rgb(19, 154, 139);
  margin-bottom: 5px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  height: 100vh;
}
body #bodybody {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 0px 10px;
  grid-template-areas: "body_left body_right";
  position: relative;
}
body #bodybody #body_left {
  grid-area: body_left;
  background-color: white;
  color: #525354;
  height: 100vh;
  overflow: scroll;
  z-index: 3000;
}
body #bodybody #body_right {
  grid-area: body_right;
  height: 100vh;
  overflow: scroll;
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "navBar" "body";
  font-family: "Roboto", sans-serif;
}
body #bodybody #messageBottomRight {
  z-index: 1000;
  position: fixed;
  bottom: 0;
  right: 0;
  border-top-left-radius: 5px;
  border-right: none;
  border-bottom: none;
  color: #fff;
}
body #bodybody #messageBottomRight p {
  padding: 10px;
}
body #bodybody #messageBottomRight p i {
  margin-right: 10px;
}
body #bodybody #messageBottomRight.success {
  background-color: #27ae60;
}
body #bodybody #messageBottomRight.error {
  background-color: #b40f0f;
  cursor: pointer;
}
body #bodybody #messageBottomRight.wait {
  background-color: #1e3799;
}

pre {
  max-width: 1000px;
  background-color: white;
}

.button {
  z-index: 1;
  color: rgb(19, 154, 139);
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  padding: 0 20px;
  background-color: transparent;
  transition: all 0.2s ease;
  border-radius: 20px;
  font-family: "Roboto Condensed", sans-serif;
}
.button::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 9px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(19, 154, 139);
  transition: all 0.2s ease;
}
.button i {
  padding-left: 3px;
  padding-bottom: 3px;
  margin-right: 20px;
  color: white;
  font-size: 15px;
}
.button:hover {
  color: white;
}
.button:hover::before {
  left: 0;
  border-radius: 20px;
  width: 100%;
}

.form_box {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dadada;
}
.form_box:last-of-type {
  border-bottom: none;
}

.ligne1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ligne1 select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9b9b9b;
  padding: 10px;
}
.ligne1 select .option_titre {
  color: #9b9b9b;
}
.ligne1 p {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  padding-top: 22px;
  color: rgba(0, 0, 0, 0.5);
}
.ligne1 p input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.ligneSelect .label {
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
  margin-left: 12px;
}
.ligneSelect .label.mt10 {
  margin-top: 18px;
}
.ligneSelect #eo_lg {
  margin-top: 18px;
}

.ligne2 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 10px;
  grid-template-areas: ". .";
}
.ligne2 select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9b9b9b;
  padding: 10px;
}
.ligne2 select .option_titre {
  color: #9b9b9b;
}

.ligne3 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 10px;
  grid-template-areas: ". . .";
}
.ligne3 select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9b9b9b;
  padding: 10px;
}
.ligne3 select .option_titre {
  color: #9b9b9b;
}

.ligne4 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 2fr auto 1fr 2fr auto 1fr;
  grid-template-rows: auto;
  gap: 0px 10px;
  grid-template-areas: ". . . . . .";
}
.ligne4 span {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
}

/*
.input_box {

    input{

    }
    label{

    }
}
   */
.inp {
  position: relative;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.inp .label {
  position: absolute;
  top: 20px;
  left: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}

.inp.error .label {
  color: #b40f0f;
}

.inp .focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}

.inp input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 16px 12px 0 12px;
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  color: #000;
  transition: all 0.15s ease;
}

.inp input:hover {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.inp input:not(:-moz-placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:not(:placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp.error input:not(:-moz-placeholder-shown) + .label {
  color: #b40f0f;
}

.inp.error input:not(:placeholder-shown) + .label {
  color: #b40f0f;
}

.inp input:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 rgb(19, 154, 139);
}

.inp input:focus + .label {
  color: rgb(19, 154, 139);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus + .label + .focus-bg {
  transform: scaleX(1);
  transition: all 0.1s ease;
}

.titre {
  margin-bottom: 10px;
  color: rgb(19, 154, 139);
  font-size: 30px;
  font-weight: bold;
}

#popup {
  z-index: 1000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  text-align: center;
}
#popup p {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#popup p.success {
  background-color: rgb(19, 154, 139);
}
#popup p.error {
  background-color: #b40f0f;
}

.card1 {
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 10px;
}
.card1 .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(19, 154, 139);
  transition: all 0.7s cubic-bezier(0, 1.09, 0.91, 0.99);
  z-index: 1;
}
.card1 .icon .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: all 0.7s cubic-bezier(0, 1.09, 0.91, 0.99);
  color: #fff;
}
.card1 .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: 0.7s;
  color: #fff;
}
.card1 .face {
  width: 200px;
  height: 200px;
  transition: 0.5s;
}
.card1 .face.face1 {
  position: relative;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}
.card1 .face.face1 .content {
  opacity: 1;
  transition: 0.5s;
}
.card1 .face.face1 .content i {
  max-width: 100px;
}
.card1 .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  transform: translateY(-100px);
}
.card1 .face.face2 .content h3 {
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  color: #414141;
}
.card1 .face.face2 .content p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #414141;
}
.card1:hover .face.face1 {
  background: #ff0057;
  transform: translateY(0px);
}
.card1:hover .face.face1 .icon {
  background-color: #008ca5;
}
.card1:hover .face.face1 .content {
  opacity: 1;
}
.card1:hover .face.face1 .content h3 {
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  color: #414141;
}
.card1:hover .face.face1 .content h3 span {
  text-decoration: none;
  color: #414141;
}
.card1:hover .face.face2 {
  transform: translateY(0);
}

.tilesWrap {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  align-content: space-evenly;
  transition: all 0.2s ease-in;
}
.tilesWrap .li {
  position: relative;
  transition: all 0.2s ease-in;
  list-style: none;
}
.tilesWrap .li.hidden {
  transition: all 0.2s ease-in;
}
.tilesWrap .li.hidden .tilesWrapLi {
  transition: all 0.2s ease-in;
  width: 0px;
  overflow: hidden;
  border: none;
  padding: 0px;
  margin: 0px;
}
.tilesWrap .li.hidden .btn_group {
  width: 0px;
  overflow: hidden;
}

.tilesWrap .tilesWrapLi {
  display: inline-block;
  width: 230px;
  padding: 80px 20px 40px;
  position: relative;
  vertical-align: top;
  margin: 10px;
  font-family: "helvetica", sans-serif;
  min-height: 25vh;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  text-align: left;
  z-index: 2;
  transform: translate(0px, 0px);
  transition: all 0.2s ease-in-out;
}
.tilesWrap .tilesWrapLi.open {
  transform: translate(20px, 0px);
}

.tilesWrap .tilesWrapLi h2 {
  font-size: 114px;
  margin: 0;
  position: absolute;
  opacity: 0.05;
  top: 50px;
  right: 10px;
  transition: all 0.3s ease-in-out;
}

.tilesWrap .tilesWrapLi h3 {
  font-size: 20px;
  color: #3a3a3a;
  margin-bottom: 5px;
}

.tilesWrap .tilesWrapLi p {
  font-size: 16px;
  line-height: 18px;
  color: #3a3a3a;
  margin-top: 5px;
}

.tilesWrap .tilesWrapLi ul {
  margin-top: 10px;
  padding-left: 25px;
}

.tilesWrap .tilesWrapLi ul li {
  margin-bottom: 10px;
}

.tilesWrap .tilesWrapLi button {
  background: transparent;
  border: 1px solid rgb(19, 154, 139);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(19, 154, 139);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}

.tilesWrap .tilesWrapLi a {
  background: transparent;
  border: 1px solid rgb(19, 154, 139);
  padding: 10px 20px;
  color: rgb(19, 154, 139);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease-in-out;
  transform: translateY(-40px);
  opacity: 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}

.tilesWrap .tilesWrapLi button:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 120%;
  background: rgb(19, 154, 139);
  top: 0;
  opacity: 0;
  left: -140px;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  transition: all 0.2s ease;
}

.tilesWrap .tilesWrapLi a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 120%;
  background: rgb(19, 154, 139);
  top: 0;
  opacity: 0;
  left: -140px;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  transition: all 0.2s ease;
}

.tilesWrap .tilesWrapLi:hover button {
  opacity: 1;
}

.tilesWrap .tilesWrapLi button:hover {
  color: white;
}

.tilesWrap .tilesWrapLi button:hover:before {
  left: 0;
  opacity: 1;
}

.tilesWrap .tilesWrapLi:hover a {
  transform: translateY(5px);
  opacity: 1;
}

.tilesWrap .tilesWrapLi a:hover {
  color: white;
}

.tilesWrap .tilesWrapLi a:hover:before {
  left: 0;
  opacity: 1;
}

.tilesWrap .tilesWrapLi:hover h2 {
  top: 0px;
  opacity: 0.3;
  color: rgb(19, 154, 139);
}

.tilesWrap .tilesWrapLi:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(19, 154, 139, 0.07);
}

.btn_group {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: stretch;
  background-color: #008ca5;
  width: 40px;
  height: 240px;
  z-index: 1;
  transform: translate(2px, 30px);
  transition: all 0.2s cubic-bezier(0, 0, 0, 1);
}
.btn_group.btn_group_open {
  transform: translate(-10px, 30px);
}
.btn_group.mini {
  height: 120px;
}
.btn_group button {
  color: white !important;
  border: none !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}
.btn_group button::before {
  background-color: transparent !important;
}
.btn_group button:hover {
  transform: rotate(20deg);
}
.btn_group button:hover::before {
  background-color: transparent !important;
}

.line_button_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.line_button_right button {
  width: auto;
}

.reel_button {
  margin-top: 20px;
  z-index: 2;
  display: flex;
  color: white;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.reel_button img {
  width: 50px;
  border-radius: 50%;
  border: 3px solid rgb(19, 154, 139);
  z-index: 1;
}
.reel_button span {
  background-color: rgb(19, 154, 139);
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  transition: all 0.2s ease-in-out;
}
.reel_button span .fa-spinner {
  animation: rotating 1s infinite ease-in-out;
}
.reel_button span i {
  margin-right: 5px;
}
.reel_button:hover img {
  border-color: #008ca5;
}
.reel_button:hover span {
  background-color: #008ca5;
}
.reel_button.red span {
  background-color: #b40f0f;
}
.reel_button.red:hover span {
  background-color: #850b0b;
}

.listVignettes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.listVignettes .vignette {
  background-color: #dadada;
  border: 1px solid white;
  border-radius: 5px;
  min-width: 32%;
  padding: 5px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  cursor: pointer;
  margin: 2px 0px;
}
.listVignettes .vignette:hover {
  background-color: #757575;
  color: white;
}
.listVignettes .vignette.vignetteSelect {
  background-color: rgb(19, 154, 139);
  color: white;
}
.listVignettes .vignette.vignetteFav {
  background-color: #fde74c;
  color: #000;
}
.listVignettes:last-of-type {
  margin-bottom: 0px;
}

#ui-datepicker-div {
  z-index: 9000 !important;
}

.wrapper .line {
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 45px 40px 40px 40px;
  background-color: white;
}

#modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 5000;
  display: none;
  justify-content: center;
  align-items: center;
}
#modal .modal_box {
  z-index: 2001;
  width: 50%;
  padding: 5px;
  border: 1px solid #757575;
  border-radius: 5px;
  height: auto;
  background-color: #fff;
}
#modal #closeModal {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgb(19, 154, 139);
  color: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 30px;
  transition: background-color 0.2s ease;
}
#modal #closeModal:hover {
  background-color: #008ca5;
}
#modal select {
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid rgb(19, 154, 139);
}

#search {
  margin-bottom: 10px;
  padding: 0 10px;
}
#search #search_box {
  background-color: #FFF;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 50px;
  gap: 0px 0px;
  grid-template-areas: "icon input";
  line-height: 50px;
  border-radius: 5px;
}
#search #search_box #search_icon {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  grid-area: icon;
  color: #757575;
  font-size: 28px;
  padding: 0 10px;
  border: 1px solid #757575;
  border-right: none;
}
#search #search_box #search_input {
  grid-area: input;
  font-size: 22px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#search #search_box #search_input input {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  border: 1px solid #757575;
  padding-left: 15px;
}

#navBar {
  grid-area: navBar;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 10px;
}
#navBar #user {
  display: flex;
  justify-content: end;
  width: 150px;
}
#navBar #user a {
  margin: 0 !important;
}
#navBar #nav {
  width: 150px;
  display: flex;
  flex-direction: row;
  width: 110px;
  justify-content: space-between;
}
#navBar #nav #homeButton {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  background-color: rgb(19, 154, 139);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 20px;
}
#navBar #nav #homeButton:hover {
  background-color: #008ca5;
}
#navBar #nav #precButton {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  background-color: rgb(19, 154, 139);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 20px;
}
#navBar #nav #precButton:hover {
  background-color: #008ca5;
}
#navBar #logo {
  padding: 10px;
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}
#navBar #logo #sites {
  margin: 5px;
}
#navBar #logo #sites img {
  height: 50px;
}
#navBar #logo #escale {
  margin: 5px;
}
#navBar #logo #escale img {
  height: 50px;
}

#addEleve_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 40px;
  grid-template-areas: "titre titre" "eleve_left eleve_right" "pread pread" "btn btn";
}
#addEleve_box .titre {
  grid-area: titre;
}
#addEleve_box .eleve_left {
  grid-area: eleve_left;
}
#addEleve_box .eleve_right {
  grid-area: eleve_right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#addEleve_box .pread {
  grid-area: pread;
}
#addEleve_box .btn {
  grid-area: btn;
}

#eleves_box_0 #actifEleve {
  display: none;
}

#eleves_box_1 #attenteEleve {
  display: none;
}

#eleves_box_2 #archiveEleve {
  display: none;
}

#eleves {
  background-color: transparent;
  border: none;
}

#login {
  display: flex;
  justify-content: center;
}
#login .card-container {
  margin: 30px;
  width: 400px;
}
#login .card-container .card {
  font-weight: bold;
  position: relative;
  width: 400px;
}
#login .card-container .card a {
  padding: 30px;
  width: 400px;
  height: 400px;
  border: 2px solid black;
  background: white;
  text-decoration: none;
  color: black;
  display: block;
  transition: 0.25s ease;
}
#login .card-container .card a:hover {
  transform: translate(-30px, -30px);
  border-color: rgb(19, 154, 139);
}
#login .card-container .card a:hover .card--display {
  display: none;
}
#login .card-container .card a:hover .card--hover {
  display: block;
}
#login .card-container .card a .card--display i {
  font-size: 60px;
  margin-top: 200px;
}
#login .card-container .card a .card--display h2 {
  font-weight: bold;
  margin: 20px 0 0;
}
#login .card-container .card a .card--hover {
  display: none;
}
#login .card-container .card a .card--hover h2 {
  margin: 20px 0;
  font-weight: bold;
}
#login .card-container .card a .card--hover p {
  font-weight: normal;
  line-height: 1.5;
}
#login .card-container .card a .card--hover p.link {
  margin: 20px 0 0;
  font-weight: bold;
  color: rgb(19, 154, 139);
}
#login .card-container .card .card--border {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 0;
  top: 0;
  border: 2px dashed black;
  z-index: -1;
}

.form {
  border: 1px solid #000;
  position: relative;
  background-color: white;
  width: 600px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.form #cours_box {
  display: flex;
  flex-direction: column;
}
.form #cours_box #titre_cours {
  margin: 10px 0 10px 0;
  font-size: 16px;
  width: 100%;
}
.form #cours_box #titre_cours p {
  text-align: center;
  margin: 10px 0;
}
.form #cours_box #titre_cours .select {
  padding: 5px 10px;
  background-color: rgb(19, 154, 139);
  color: #fff;
  border: 1px solid #858585;
}
.form #cours_box #titre_cours .fav {
  padding: 5px 10px;
  background-color: #fde74c;
  color: #000;
  border: 1px solid #858585;
}
.form #cours_box #liste_cours {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
.form #cours_box #liste_cours .item_cours {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #858585;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.form #cours_box #liste_cours .unselect {
  background-color: #FFF;
  color: #000;
}
.form #cours_box #liste_cours .unselect:hover {
  background-color: #fff;
}
.form #cours_box #liste_cours .select {
  background-color: rgb(19, 154, 139);
  color: #fff;
}
.form #cours_box #liste_cours .select:hover {
  background-color: #16b19f;
}
.form #cours_box #liste_cours .fav {
  background-color: #fde74c;
  color: #000;
}
.form #cours_box #liste_cours .fav:hover {
  background-color: #feee7e;
}

#homepage {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#homepage #menu {
  /*
  margin-bottom:30px;
  width:100%;
  padding:0 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;

      .card {
          font-weight: bold;
          position: relative;
          width: 200px;


          a {
              width: 200px;
              height: 200px;
              border: 2px solid black;
              background: white;
              text-decoration: none;
              color: black;
              display: block;
              transition: 0.25s ease;
              border-radius: 10px;

              .card_contenu{

                  i{
                      padding:20px;
                      font-size: 20px;
                      color: $blue;
                      transition: all 0.2s ease-in-out;
                  }
                  h2{
                      padding:20px;
                      font-size: 20px;
                      color: $blue;
                      transition: all 0.2s ease-in-out;
                  }
              }

              &:hover{
                  .card_contenu{
                      i{
                          color:$dark-blue;
                          padding-top:50px;
                          padding-bottom: 0px;
                      }
                      h2{
                          color: $dark-blue;
                      }
                  }
              }
          }
      }
      */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 40px 0px;
  grid-template-areas: "carnet" "absences" "donnees" "raccourcis";
}
#homepage #menu .line-card {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
}
#homepage #menu .line-card .card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: rgb(19, 154, 139);
  border-radius: 5px;
  color: white;
}
#homepage #menu .line-card .card-head i {
  font-size: 2.5em;
  margin-bottom: 5px;
}
#homepage #menu .line-card .card-head h1 {
  font-size: 1.2em;
  font-weight: 500;
}
#homepage #menu .line-card .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 5px;
  color: rgb(19, 154, 139);
  margin-left: 20px;
  transition: background-color 0.2s;
}
#homepage #menu .line-card .card:hover {
  background-color: #008ca5;
}
#homepage #menu .line-card .card:hover i {
  color: white;
}
#homepage #menu .line-card .card:hover p {
  opacity: 1;
  transition: opacity 0.5s ease 0.8s;
}
#homepage #menu .line-card .card i {
  transition: color 0.2s;
  font-size: 2.5em;
}
#homepage #menu .line-card .card p {
  position: absolute;
  padding: 10px;
  position: absolute;
  width: auto;
  white-space: nowrap;
  word-wrap: no-wrap;
  border: 1px solid rgba(153, 153, 153, 0.4);
  border-radius: 5px;
  background-color: #fff;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  transform-style: preserve-3d;
  z-index: 200;
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
#homepage #menu .line-card .card p:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateX(-50%);
  background-color: #fff;
  left: 50%;
  top: auto;
  bottom: -8px;
  z-index: 400;
}
#homepage #menu .line-card .card p:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateX(-50%) translateZ(-1px);
  background-color: #fff;
  left: 50%;
  top: auto;
  bottom: -8px;
  z-index: -1;
}
#homepage #menu #cardcarnet {
  grid-area: carnet;
}
#homepage #menu #cardabsences {
  grid-area: absences;
}
#homepage #menu #carddonnees {
  grid-area: donnees;
}
#homepage #menu #cardraccourcis {
  grid-area: raccourcis;
}
#homepage #raccourci_eleves {
  margin-bottom: 30px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
#homepage #raccourci_eleves .card {
  z-index: 2;
  font-weight: bold;
  position: relative;
  width: 200px;
}
#homepage #raccourci_eleves .card a {
  padding: 20px;
  width: 200px;
  height: 60px;
  border: 2px solid black;
  background: white;
  text-decoration: none;
  color: black;
  display: block;
  transition: 0.25s ease;
}
#homepage #raccourci_eleves .card a:hover {
  transform: translate(-10px, -10px);
  border-color: rgb(19, 154, 139);
}
#homepage #raccourci_eleves .card a:hover .card--display {
  display: none;
}
#homepage #raccourci_eleves .card a:hover .card--hover {
  display: block;
}
#homepage #raccourci_eleves .card a .card--display i {
  font-size: 60px;
  margin-top: 15px;
}
#homepage #raccourci_eleves .card a .card--display h2 {
  font-weight: bold;
}
#homepage #raccourci_eleves .card a .card--hover {
  display: none;
}
#homepage #raccourci_eleves .card a .card--hover h2 {
  font-weight: bold;
}
#homepage #raccourci_eleves .card a .card--hover p {
  font-weight: normal;
  line-height: 1.5;
}
#homepage #raccourci_eleves .card a .card--hover p.link {
  font-weight: bold;
  color: rgb(19, 154, 139);
}
#homepage #raccourci_eleves .card .card--border {
  position: absolute;
  width: 200px;
  height: 60px;
  left: 0;
  top: 0;
  border: 2px dashed black;
  z-index: -1;
}

#addEleve {
  width: 100%;
  padding: 10px;
}
#addEleve .titre {
  grid-area: titre;
  color: rgb(19, 154, 139);
  font-size: 30px;
  font-weight: bold;
}
#addEleve .soustitre {
  grid-area: soustitre;
  color: rgb(19, 154, 139);
  font-size: 22px;
  font-weight: bold;
}
#addEleve #infoEleve {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 70px 70px;
  gap: 5px 5px;
  grid-template-areas: "titre titre titre" "nom prenom date" "adresse telephone email";
}
#addEleve #infoEleve .nom {
  grid-area: nom;
}
#addEleve #infoEleve .prenom {
  grid-area: prenom;
}
#addEleve #infoEleve .date {
  grid-area: date;
}
#addEleve #infoEleve .adresse {
  grid-area: adresse;
}
#addEleve #infoEleve .telephone {
  grid-area: telephone;
}
#addEleve #infoEleve .email {
  grid-area: email;
}
#addEleve #infoEcole {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 70px;
  gap: 5px 5px;
  grid-template-areas: "titre titre titre" "eo annee option";
}
#addEleve #infoEcole .eo {
  grid-area: eo;
}
#addEleve #infoEcole .annee {
  grid-area: annee;
}
#addEleve #infoEcole .option {
  grid-area: option;
}
#addEleve #infoThera {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto 70px;
  gap: 5px 5px;
  grid-template-areas: "titre titre titre titre titre" "peda thera ergo doc groupe";
}
#addEleve #infoThera .ref_peda {
  grid-area: peda;
}
#addEleve #infoThera .ref_thera {
  grid-area: thera;
}
#addEleve #infoThera .ergo {
  grid-area: ergo;
}
#addEleve #infoThera .pedopsy {
  grid-area: doc;
}
#addEleve #infoThera .groupe {
  grid-area: groupe;
}
#addEleve #infoTuteurs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 5px 25px;
  grid-template-areas: "titre titre" "tuteur1 tuteur2";
}
#addEleve #infoTuteurs #tuteur1 {
  grid-area: tuteur1;
  margin-top: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 70px 70px 70px;
  gap: 5px 5px;
  grid-template-areas: "soustitre soustitre" "nom prenom" "telephone email" "adresse adresse";
}
#addEleve #infoTuteurs #tuteur1 .nom_tuteur_1 {
  grid-area: nom;
}
#addEleve #infoTuteurs #tuteur1 .prenom_tuteur_1 {
  grid-area: prenom;
}
#addEleve #infoTuteurs #tuteur1 .telephone_tuteur_1 {
  grid-area: telephone;
}
#addEleve #infoTuteurs #tuteur1 .email_tuteur_1 {
  grid-area: email;
}
#addEleve #infoTuteurs #tuteur1 .adresse_tuteur_1 {
  grid-area: adresse;
}
#addEleve #infoTuteurs #tuteur2 {
  grid-area: tuteur2;
  margin-top: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 70px 70px 70px;
  gap: 5px 5px;
  grid-template-areas: "soustitre soustitre" "nom prenom" "telephone email" "adresse adresse";
}
#addEleve #infoTuteurs #tuteur2 .nom_tuteur_2 {
  grid-area: nom;
}
#addEleve #infoTuteurs #tuteur2 .prenom_tuteur_2 {
  grid-area: prenom;
}
#addEleve #infoTuteurs #tuteur2 .telephone_tuteur_2 {
  grid-area: telephone;
}
#addEleve #infoTuteurs #tuteur2 .email_tuteur_2 {
  grid-area: email;
}
#addEleve #infoTuteurs #tuteur2 .adresse_tuteur_2 {
  grid-area: adresse;
}

#carnetliaison {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.line {
  margin-bottom: 10px;
}
.line h2 {
  font-size: 20px;
  color: rgb(19, 154, 139);
  margin-bottom: 5px;
}
.line input:focus {
  color: black;
}

.listEleves {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.listEleves .eleve {
  background-color: #dadada;
  border: 1px solid white;
  border-radius: 5px;
  min-width: 32%;
  padding: 5px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  cursor: pointer;
  margin: 2px 0px;
}
.listEleves .eleve:hover {
  background-color: #757575;
  color: white;
}
.listEleves .eleve.eleveSelect {
  background-color: rgb(19, 154, 139);
  color: white;
}
.listEleves:last-of-type {
  margin-bottom: 0px;
}

.listContextes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.listContextes .contexte {
  background-color: #dadada;
  border: 1px solid white;
  border-radius: 5px;
  min-width: 16%;
  padding: 5px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  cursor: pointer;
  margin: 2px 0px;
}
.listContextes .contexte:hover {
  background-color: #757575;
  color: white;
}
.listContextes .contexte.contexteSelect {
  background-color: rgb(19, 154, 139);
  color: white;
}
.listContextes:last-of-type {
  margin-bottom: 0px;
}

.bottom {
  display: flex;
  justify-content: end;
}

.cl_line {
  font-size: 1em;
  text-rendering: optimizeLegibility;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "cl_head" "cl_body" "cl_footer";
  background-color: white;
  border-radius: 5px;
  margin-top: 25px;
}
.cl_line .cl_head {
  position: relative;
  color: white;
  border-bottom: 3px solid #16b19f;
  background-color: rgb(19, 154, 139);
  border-radius: 5px 5px 0px 0px;
  grid-area: cl_head;
  padding: 40px 40px 5px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "eleves eleves" "intitule intitule" "contexte date";
}
.cl_line .cl_head .eleves {
  grid-area: eleves;
}
.cl_line .cl_head .eleves .cl_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cl_line .cl_head .eleves .cl_list span {
  background-color: #008ca5;
  color: white;
  margin: 5px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #14a393;
}
.cl_line .cl_head .intitule {
  grid-area: intitule;
}
.cl_line .cl_head .intitule .cl_p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4em;
  text-shadow: 1px 1px grey;
}
.cl_line .cl_head .date {
  grid-area: date;
}
.cl_line .cl_head .contexte {
  grid-area: contexte;
}
.cl_line .cl_head h2 {
  font-size: 1.2em;
  color: white;
}
.cl_line .cl_head .btns {
  position: absolute;
  top: 20px;
  right: 20px;
}
.cl_line .cl_head .btns .editCl {
  cursor: pointer;
  transition: color 0.2s ease;
}
.cl_line .cl_head .btns .editCl:hover {
  color: #dadada;
}
.cl_line .cl_head .btns .deleteCl {
  cursor: pointer;
  transition: color 0.2s ease;
  margin-left: 10px;
}
.cl_line .cl_head .btns .deleteCl:hover {
  color: #dadada;
}
.cl_line .cl_head .btns .pdfCl {
  cursor: pointer;
  transition: color 0.2s ease;
  margin-left: 10px;
}
.cl_line .cl_head .btns .pdfCl:hover {
  color: #dadada;
}
.cl_line .cl_body {
  color: #4c4d4e;
  grid-area: cl_body;
  padding: 40px 40px 5px 40px;
}
.cl_line .cl_body ul {
  margin-left: 36px;
}
.cl_line .cl_body ul li {
  line-height: 1.2em;
  margin-top: 4px;
}
.cl_line .cl_body ul li p {
  margin: 2px 0px;
}
.cl_line .cl_body p {
  line-height: 1.2em;
  margin: 10px 0px;
}
.cl_line .cl_body p a {
  color: #757575;
  text-decoration: underline;
  cursor: pointer;
}
.cl_line .cl_body table tr td {
  padding: 4px;
}
.cl_line .cl_footer {
  text-align: right;
  color: #919293;
  grid-area: cl_footer;
  padding: 5px 40px 40px 40px;
}
.cl_line .cl_block {
  margin-bottom: 5px;
}
.cl_line .cl_block h1 {
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(19, 154, 139);
  margin-bottom: 5px;
  margin-top: 10px;
}
.cl_line .cl_block h1:first-of-type {
  margin-top: 0px;
}
.cl_line .cl_block .cl_p p {
  line-height: 1.3em;
  margin-bottom: 10px;
}
.cl_line .cl_block ul {
  margin-left: 40px;
  list-style: square;
}
.cl_line .cl_block ul li {
  margin: 5px 0px;
}
.cl_line .cl_block .cl2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 10px;
  grid-template-areas: ". .";
}

.lireSuite {
  height: 50px;
  border-radius: 25px;
  padding: 10px;
  width: 200px;
  margin: 25px auto;
  background-color: rgb(19, 154, 139);
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lireSuite:hover {
  background-color: #008ca5;
}
.lireSuite .fa-spinner {
  animation: rotating 1.5s linear infinite;
}

#cl_filtre {
  width: 100%;
}
#cl_filtre #filtre_head {
  color: #4c4d4e;
  cursor: pointer;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cl_filtre #filtre_head #chevron {
  transition: transform 0.35s linear;
}
#cl_filtre #filtre_head #chevron.rotate {
  transform: rotate(180deg);
}
#cl_filtre #filtre_body {
  color: #4c4d4e;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.35s linear;
}
#cl_filtre #filtre_body.open {
  transition: all 0.35s linear;
  max-height: 300px;
}
#cl_filtre #filtre_body .filtre_line {
  display: flex;
  transition: all 0.35s ease-in-out;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 40px;
  margin-bottom: 40px;
}
#cl_filtre #filtre_body .filtre_line select {
  padding: 20px;
  text-align: center;
  min-width: 220px;
}
#cl_filtre #filtre_body .filtre_line input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  height: 20px;
  width: 20px;
}
#cl_filtre #filtre_body .filtre_line .filtre_block {
  display: flex;
  flex-direction: column;
}
#cl_filtre #filtre_body .filtre_line p {
  display: flex;
  align-items: center;
}
#cl_filtre #filtre_body .filtre_line p input {
  margin-right: 10px;
}
#cl_filtre #filtre_body .filtre_btn {
  width: 100%;
  padding: 0px 40px 20px 40px;
  display: flex;
  justify-content: end;
}
#cl_filtre #filtre_body .filtre_btn button {
  margin: 0 !important;
}
#cl_filtre #filtre_body .filtre_btn button span .fa-spinner {
  margin-right: 10px;
  animation: rotating 1.5s linear infinite;
}

#donnees {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

#profs {
  background-color: transparent;
  border: none;
}

#cours_box {
  display: flex;
  flex-direction: column;
}
#cours_box #titre_cours {
  margin: 10px 0 10px 0;
  font-size: 16px;
  width: 100%;
}
#cours_box #titre_cours p {
  text-align: center;
  margin: 10px 0;
}
#cours_box #titre_cours .select {
  padding: 5px 10px;
  background-color: rgb(19, 154, 139);
  color: #fff;
  border: 1px solid #858585;
}
#cours_box #titre_cours .fav {
  padding: 5px 10px;
  background-color: #fde74c;
  color: #000;
  border: 1px solid #858585;
}
#cours_box #liste_cours {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
#cours_box #liste_cours .item_cours {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #858585;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
#cours_box #liste_cours .unselect {
  background-color: #FFF;
  color: #000;
}
#cours_box #liste_cours .unselect:hover {
  background-color: #fff;
}
#cours_box #liste_cours .select {
  background-color: rgb(19, 154, 139);
  color: #fff;
}
#cours_box #liste_cours .select:hover {
  background-color: #16b19f;
}
#cours_box #liste_cours .fav {
  background-color: #fde74c;
  color: #000;
}
#cours_box #liste_cours .fav:hover {
  background-color: #feee7e;
}

#pedopsys {
  background-color: transparent;
  border: none;
}

#eos {
  background-color: transparent;
  border: none;
}

#contextes {
  background-color: transparent;
  border: none;
}

.cours_ligne {
  text-align: left;
  margin-top: 20px;
  padding: 10px;
}
.cours_ligne select {
  padding: 5px;
  border: none;
  border-bottom: 1px solid #9b9b9b;
}

#absences {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#absencesEncode {
  display: flex;
  flex-direction: column;
}
#absencesEncode input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
#absencesEncode .abs_date_box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas: "prec date next";
}
#absencesEncode .prec_date {
  grid-area: prec;
  text-align: right;
  cursor: pointer;
  transition: color 0.2s ease;
}
#absencesEncode .prec_date i {
  transition: color 0.2s ease;
}
#absencesEncode .prec_date i:hover {
  color: #008ca5;
}
#absencesEncode .abs_date {
  grid-area: date;
  text-align: center;
  margin: 0 20px;
}
#absencesEncode .abs_date input {
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
}
#absencesEncode .abs_date input:hover {
  background-color: #eee;
}
#absencesEncode .next_date {
  grid-area: next;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
#absencesEncode .next_date i {
  transition: color 0.2s ease;
}
#absencesEncode .next_date i:hover {
  color: #008ca5;
}
#absencesEncode .abs_list_box {
  display: flex;
  justify-content: center;
}
#absencesEncode .abs_list_box table {
  border-collapse: collapse;
}
#absencesEncode .abs_list_box table tbody .tr_head td {
  padding: 5px;
}
#absencesEncode .abs_list_box table tbody .tr_head td:first-of-type {
  vertical-align: bottom;
}
#absencesEncode .abs_list_box table tbody .tr_head td.vert {
  text-orientation: sideways;
}
#absencesEncode .abs_list_box table tbody .tr_head td.vert span {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  text-align: left;
}
#absencesEncode .abs_list_box table tbody .tr_head td.hover.p1 {
  background-color: #fff5ec !important;
}
#absencesEncode .abs_list_box table tbody .tr_head td.hover.p2 {
  background-color: #def2fa !important;
}
#absencesEncode .abs_list_box table tbody .tr_head td.hover.p3 {
  background-color: #cfe2cf !important;
}
#absencesEncode .abs_list_box table tbody tr td {
  text-align: center;
  padding: 5px;
  border: 1px solid #888 !important;
}
#absencesEncode .abs_list_box table tbody tr td input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#absencesEncode .abs_list_box table tbody tr .tdMenu {
  border: 1px solid #888;
}
#absencesEncode .abs_list_box table tbody tr .p1 {
  background-color: peachpuff;
}
#absencesEncode .abs_list_box table tbody tr .p2 {
  background-color: skyblue;
}
#absencesEncode .abs_list_box table tbody tr .p3 {
  background-color: darkseagreen;
}
#absencesEncode .abs_save {
  text-align: right;
}

.text-color {
  color: rgb(19, 154, 139);
  transition-duration: 0.5s;
}

.wrapper {
  min-width: 800px;
  max-width: 1100px;
  margin: 0 auto;
}

.tabs {
  display: table;
  table-layout: fixed;
  width: 100%;
  transform: translateY(5px);
}
.tabs > li {
  transition-duration: 0.25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 25px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: white;
}
.tabs > li:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(100%);
  transition-duration: 0.25s;
  border-radius: 5px 5px 0 0;
}
.tabs > li:hover:before {
  transform: translateY(70%);
}
.tabs > li.active {
  color: rgb(80, 85, 90);
}
.tabs > li.active:before {
  transition-duration: 0.5s;
  background-color: white;
  transform: translateY(0);
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.tab__content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab__content > li .content__wrapper {
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 45px 40px 40px 40px;
  background-color: white;
}

.content__wrapper h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
}
.content__wrapper h2.mt20 {
  margin-top: 18px;
}
.content__wrapper h3 {
  width: 100%;
  text-align: left;
  padding-top: 20px;
  font-weight: 500;
  font-size: 1.2em;
}
.content__wrapper h4 {
  width: 100%;
  text-align: left;
  padding-top: 20px;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
  margin-left: 12px;
}
.content__wrapper .add_parcours_button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content__wrapper .add_parcours_button span {
  padding: 15px;
  color: rgb(19, 154, 139);
  border-radius: 10px;
  border: 1px solid rgb(19, 154, 139);
  cursor: pointer;
  transition: all 0.2s ease;
}
.content__wrapper .add_parcours_button span i {
  margin-right: 15px;
}
.content__wrapper .add_parcours_button span:hover {
  color: white;
  background-color: rgb(19, 154, 139);
}
.content__wrapper .parcours_list {
  list-style: none;
}
.content__wrapper .parcours_list li.add_parcours_list {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 1fr 1fr 5fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 5px;
  grid-template-areas: ". . . . . .";
}
.content__wrapper .parcours_list li.line_parcours_list {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto;
  gap: 0px 5px;
  grid-template-areas: ". .";
  padding: 18px 0px;
}
.content__wrapper .parcours_list li.line_parcours_list div:last-of-type {
  height: 100%;
  line-height: 100%;
  text-align: left;
}
.content__wrapper .parcours_list li .rounded {
  border: 2px solid rgb(19, 154, 139);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: rgb(19, 154, 139);
  cursor: pointer;
  transition: all 0.2s ease;
}
.content__wrapper .parcours_list li .rounded:hover {
  border-color: #008ca5;
  color: #008ca5;
}
.content__wrapper .parcours_list li .parcours_list_block {
  display: flex;
  flex-direction: column;
}
.content__wrapper .parcours_list li .parcours_list_block select {
  padding: 11px;
}
.content__wrapper .parcours_list li .parcours_list_block label {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  text-align: left;
}
.content__wrapper .parcours_list li .parcours_list_block input {
  padding: 10px 10px 11px 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.content__wrapper .parcours_list li .parcours_list_block:first-of-type {
  justify-content: center;
  align-items: center;
}
.content__wrapper .parcours_list li .parcours_list_block p {
  height: 100%;
  line-height: 30px;
}

.charts .line {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 0;
}
.charts .line label input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}
.charts .chartContainer {
  margin: 0 auto;
}
.charts #chartTotalContainer {
  width: 500px;
  height: 500px;
}
.charts #chartPeriodContainer, .charts #chartDayContainer {
  width: 500px;
  height: 500px;
}
.charts #chartEvoContainer {
  height: 500px;
}

.menu_left_block {
  padding: 5px;
}
.menu_left_block h1 {
  color: rgb(19, 154, 139);
  font-size: 1.3em;
}
.menu_left_block ul {
  list-style: none;
}
.menu_left_block ul li {
  padding: 10px;
  transition: all 0.2s;
}
.menu_left_block ul li:hover {
  background-color: #DDD;
}
.menu_left_block ul li a p {
  display: none;
}

#menu_left_open {
  display: flex;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
#menu_left_open:hover {
  background-color: #DDD;
}

#menu_left_home {
  display: flex;
  justify-content: center;
}
#menu_left_home i {
  background-color: rgb(19, 154, 139);
  width: 30px;
  height: 30px;
  border-radius: 15px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu_closed {
  position: relative;
  transition: all 0.4s ease-out;
  overflow: hidden;
  display: block;
}
#menu_closed.isClose {
  display: none;
}

#menu_opened {
  transition: all 0.3s ease-in;
  display: none;
}
#menu_opened.isOpen {
  display: block;
}
#menu_opened #menu_opened_eleves {
  padding: 5px;
}
#menu_opened #menu_opened_eleves li h1 {
  font-weight: 600;
  cursor: pointer;
  color: #008ca5;
  transition: color 0.2s;
  padding: 5px 0px;
}
#menu_opened #menu_opened_eleves li h1:hover {
  color: #777;
}
#menu_opened #menu_opened_eleves li h1 i {
  transition: all 0.2s;
}
#menu_opened #menu_opened_eleves li h1 i.rotate {
  transform: rotate(90deg);
}
#menu_opened #menu_opened_eleves li ul {
  height: 250px;
  max-height: 0px;
  transition: all 0.3s;
  overflow: hidden;
}
#menu_opened #menu_opened_eleves li ul li {
  transition: color 0.2s;
  padding: 5px 5px 5px 15px;
}
#menu_opened #menu_opened_eleves li ul li:hover {
  color: #AAA;
}
#menu_opened #menu_opened_eleves li ul li.copyable {
  font-weight: bold;
  cursor: alias;
}
#menu_opened .menu_eleves_primaire {
  max-height: 30px;
  overflow: hidden;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire h1 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(19, 154, 139);
  line-height: 20px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire h1 i {
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire h1:hover {
  background-color: #DDD;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire {
  padding: 0 15px;
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: hidden;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire h2 {
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(19, 154, 139);
  line-height: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire h2 i {
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire h2 i.rotate {
  transform: rotate(90deg);
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire h2:hover {
  background-color: #DDD;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire .menu_eleves_tertiaire {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire .menu_eleves_tertiaire ul li {
  transition: color 0.2s;
  padding: 5px 5px 5px 15px;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire .menu_eleves_tertiaire ul li:hover {
  color: #AAA;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire .menu_eleves_tertiaire ul li.copyable {
  font-weight: bold;
  cursor: alias;
}
#menu_opened .menu_eleves_primaire .menu_eleves_secondaire .menu_eleves_tertiaire.menuEleveOpen {
  max-height: -moz-min-content;
  max-height: min-content;
}
#menu_opened .menu_eleves_primaire.menuElevesOpen {
  max-height: -moz-max-content;
  max-height: max-content;
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire.menuElevesOpen h1 {
  transition: all 0.2s ease;
}
#menu_opened .menu_eleves_primaire.menuElevesOpen h1 i {
  transform: rotate(90deg);
  transition: all 0.2s ease;
}
.listBilan {
  width: 900px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
  list-style: none;
  max-width: 900px;
}
.listBilan .link-bilan {
  border-radius: 5px;
  background-color: white;
  transition: all 0.2s;
  cursor: pointer;
  color: rgb(80, 85, 90);
  padding: 15px 0px;
}
.listBilan .link-bilan a {
  padding: 15px 30px;
}
.listBilan .link-bilan:hover, .listBilan .link-bilan.active {
  background-color: #008ca5;
  color: white;
}

#bilan h3 {
  margin-bottom: 5px;
}
#bilan #selectCoursBilan {
  margin: 10px 0px;
  padding: 10px;
  width: 100%;
  font-size: 1.2em;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: 5px;
  -webkit-appearance: inherit !important;
     -moz-appearance: inherit !important;
          appearance: inherit !important;
}
#bilan #boxDeleteCours {
  display: flex;
  justify-content: flex-end;
}
#bilan .table_competence {
  width: 100%;
  border-collapse: collapse;
  color: #757575;
}
#bilan .table_competence thead tr td {
  border: 1px solid #9b9b9b;
}
#bilan .table_competence tbody .addCompetence td, #bilan .table_competence tbody .listCompetence td {
  padding: 6px;
  border: 1px solid #9b9b9b;
  text-align: left;
}
#bilan .table_competence tbody .addCompetence td .add_competence_button, #bilan .table_competence tbody .addCompetence td .remove_competence_button, #bilan .table_competence tbody .listCompetence td .add_competence_button, #bilan .table_competence tbody .listCompetence td .remove_competence_button {
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  color: rgb(19, 154, 139);
  border-radius: 50%;
  border: 2px solid rgb(19, 154, 139);
  transition: all 0.2s;
}
#bilan .table_competence tbody .addCompetence td .add_competence_button:hover, #bilan .table_competence tbody .addCompetence td .remove_competence_button:hover, #bilan .table_competence tbody .listCompetence td .add_competence_button:hover, #bilan .table_competence tbody .listCompetence td .remove_competence_button:hover {
  color: #008ca5;
  border-color: #008ca5;
}
#bilan .table_competence tbody .addCompetence td input[type=text], #bilan .table_competence tbody .listCompetence td input[type=text] {
  border: 1px solid #AAA;
  width: 100%;
  padding: 5px;
  color: black;
}
#bilan .table_competence tbody .addCompetence td ul, #bilan .table_competence tbody .listCompetence td ul {
  list-style: none;
}
#bilan .table_competence tbody .addCompetence td ul li label, #bilan .table_competence tbody .listCompetence td ul li label {
  margin: 4px;
  cursor: pointer;
}
#bilan .table_competence tbody .addCompetence td ul li label input, #bilan .table_competence tbody .listCompetence td ul li label input {
  margin-right: 4px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #9b9b9b;
}
#bilan #ListeCL {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  position: relative;
}
#bilan #ListeCL .noteCL, #bilan #ListeCL .noteCLStats {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#bilan #ListeCL .noteCL i, #bilan #ListeCL .noteCLStats i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  cursor: pointer;
  z-index: 3;
  transform: all 0.2s ease;
}
#bilan #ListeCL .noteCL i.fa-eye-slash, #bilan #ListeCL .noteCLStats i.fa-eye-slash {
  left: 9px;
}
#bilan #ListeCL .noteCL h3, #bilan #ListeCL .noteCLStats h3 {
  font-size: 1em;
  background-color: rgb(19, 154, 139);
  color: white;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border: 1px solid rgb(19, 154, 139);
  border-top-right-radius: 10px;
  border-top: 1px solid rgb(19, 154, 139);
  border-left: 1px solid rgb(19, 154, 139);
  border-right: 1px solid rgb(19, 154, 139);
}
#bilan #ListeCL .noteCL .tox, #bilan #ListeCL .noteCLStats .tox {
  border: none;
  border-bottom: 1px solid rgb(19, 154, 139);
  border-left: 1px solid rgb(19, 154, 139);
  border-right: 1px solid rgb(19, 154, 139);
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#bilan #ListeCL .notVisibleCL {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(111, 111, 111, 0.2);
  z-index: 2;
  border-radius: 10px;
  transform: all 0.2s ease;
}
#bilan #ListeCL .notVisibleCL.isVisible {
  display: none;
}
#bilan #bilan_stats .total_absences {
  width: 100%;
  border-collapse: collapse;
  color: #757575;
  table-layout: fixed;
}
#bilan #bilan_stats .total_absences tr td {
  border: 1px solid;
  text-align: center;
  padding: 5px;
}
#bilan #bilan_stats #recapStatsBilan #listeStats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  transition: all 0.2s ease;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats {
  padding: 5px;
  position: relative;
  width: 200px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats .delete_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2000;
  transition: all 0.2s ease;
  opacity: 0;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats .delete_img i {
  width: 60px;
  color: black;
  font-size: 40px;
  z-index: 2000;
  padding: 10px;
  border: 1px solid #9b9b9b;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  opacity: 0;
  transition: all 0.2s ease;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats img {
  transition: all 0.2s ease;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats:hover .delete_img {
  opacity: 1;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats:hover .delete_img i {
  opacity: 1;
}
#bilan #bilan_stats #recapStatsBilan #listeStats .imgStats:hover img {
  filter: grayscale(100%) blur(1px);
}
#bilan #bilan_stats #listContainerCharts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
#bilan #bilan_stats #listContainerCharts .chartContainerBilan {
  width: 45%;
}
.listBilan {
  width: 900px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
  list-style: none;
  max-width: 900px;
}
.listBilan .link-bilan {
  border-radius: 5px;
  background-color: white;
  transition: all 0.2s;
  cursor: pointer;
  color: rgb(80, 85, 90);
  padding: 15px 0px;
}
.listBilan .link-bilan a {
  padding: 15px 30px;
}
.listBilan .link-bilan:hover, .listBilan .link-bilan.active {
  background-color: #008ca5;
  color: white;
}

#cp h1 {
  font-weight: 600;
  text-align: left;
  font-size: 18px;
  margin-top: 10px;
}
#cp h1 i {
  margin-right: 10px;
  cursor: pointer;
}
#cp h2 {
  margin-bottom: 5px;
  font-weight: 600;
}
#cp h3 {
  margin-bottom: 5px;
}
#cp .boxBilanCours {
  padding: 15px;
  border-bottom: 3px solid rgb(19, 154, 139);
  position: relative;
}
#cp .boxBilanCours .coursInvisible {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
}
#cp .boxBilanCours .coursInvisible i {
  padding: 40px;
  border-radius: 50%;
  cursor: pointer;
  background-color: white;
  color: #9b9b9b;
  transition: all 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#cp .boxBilanCours .coursInvisible i:hover {
  color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#cp .boxBilanCours .coursInvisible.isVisible {
  display: none;
}
#cp #selectCoursBilan {
  margin: 10px 0px;
  padding: 10px;
  width: 100%;
  font-size: 1.2em;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: 5px;
  -webkit-appearance: inherit !important;
     -moz-appearance: inherit !important;
          appearance: inherit !important;
}
#cp #boxDeleteCours {
  display: flex;
  justify-content: flex-end;
}
#cp .table_competence {
  width: 100%;
  border-collapse: collapse;
  color: #757575;
}
#cp .table_competence thead tr td {
  border: 1px solid #9b9b9b;
}
#cp .table_competence tbody .addCompetence td, #cp .table_competence tbody .listCompetence td {
  padding: 6px;
  border: 1px solid #9b9b9b;
  text-align: left;
}
#cp .table_competence tbody .addCompetence td .add_competence_button, #cp .table_competence tbody .addCompetence td .remove_competence_button, #cp .table_competence tbody .listCompetence td .add_competence_button, #cp .table_competence tbody .listCompetence td .remove_competence_button {
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  color: rgb(19, 154, 139);
  border-radius: 50%;
  border: 2px solid rgb(19, 154, 139);
  transition: all 0.2s;
}
#cp .table_competence tbody .addCompetence td .add_competence_button:hover, #cp .table_competence tbody .addCompetence td .remove_competence_button:hover, #cp .table_competence tbody .listCompetence td .add_competence_button:hover, #cp .table_competence tbody .listCompetence td .remove_competence_button:hover {
  color: #008ca5;
  border-color: #008ca5;
}
#cp .table_competence tbody .addCompetence td input[type=text], #cp .table_competence tbody .listCompetence td input[type=text] {
  border: 1px solid #AAA;
  width: 100%;
  padding: 5px;
  color: black;
}
#cp .table_competence tbody .addCompetence td ul, #cp .table_competence tbody .listCompetence td ul {
  list-style: none;
}
#cp .table_competence tbody .addCompetence td ul li label, #cp .table_competence tbody .listCompetence td ul li label {
  margin: 4px;
  cursor: pointer;
}
#cp .table_competence tbody .addCompetence td ul li label input, #cp .table_competence tbody .listCompetence td ul li label input {
  margin-right: 4px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #9b9b9b;
}
#cp .ListeCL {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  position: relative;
}
#cp .ListeCL .noteCL, #cp .ListeCL .noteCLStats {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#cp .ListeCL .noteCL i, #cp .ListeCL .noteCLStats i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  cursor: pointer;
  z-index: 3;
  transform: all 0.2s ease;
}
#cp .ListeCL .noteCL i.fa-eye-slash, #cp .ListeCL .noteCLStats i.fa-eye-slash {
  left: 9px;
}
#cp .ListeCL .noteCL h3, #cp .ListeCL .noteCLStats h3 {
  font-size: 1em;
  background-color: rgb(19, 154, 139);
  color: white;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  border-top-left-radius: 10px;
  border: 1px solid rgb(19, 154, 139);
  border-top-right-radius: 10px;
  border-top: 1px solid rgb(19, 154, 139);
  border-left: 1px solid rgb(19, 154, 139);
  border-right: 1px solid rgb(19, 154, 139);
}
#cp .ListeCL .noteCL .tox, #cp .ListeCL .noteCLStats .tox {
  border: none;
  border-bottom: 1px solid rgb(19, 154, 139);
  border-left: 1px solid rgb(19, 154, 139);
  border-right: 1px solid rgb(19, 154, 139);
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#cp .ListeCL .notVisibleCL {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(111, 111, 111, 0.2);
  z-index: 2;
  border-radius: 10px;
  transform: all 0.2s ease;
}
#cp .ListeCL .notVisibleCL.isVisible {
  display: none;
}
#cp #bilan_stats .total_absences {
  width: 100%;
  border-collapse: collapse;
  color: #757575;
  table-layout: fixed;
}
#cp #bilan_stats .total_absences tr td {
  border: 1px solid;
  text-align: center;
  padding: 5px;
}
#cp #bilan_stats #recapStatsBilan #listeStats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  transition: all 0.2s ease;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats {
  padding: 5px;
  position: relative;
  width: 200px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats .delete_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2000;
  transition: all 0.2s ease;
  opacity: 0;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats .delete_img i {
  width: 60px;
  color: black;
  font-size: 40px;
  z-index: 2000;
  padding: 10px;
  border: 1px solid #9b9b9b;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  opacity: 0;
  transition: all 0.2s ease;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats img {
  transition: all 0.2s ease;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats:hover .delete_img {
  opacity: 1;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats:hover .delete_img i {
  opacity: 1;
}
#cp #bilan_stats #recapStatsBilan #listeStats .imgStats:hover img {
  filter: grayscale(100%) blur(1px);
}
#cp #bilan_stats #listContainerCharts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
#cp #bilan_stats #listContainerCharts .chartContainerBilan {
  width: 45%;
}
#pia h2 {
  margin-top: 20px;
}
#pia h3 {
  padding: 0px;
  margin: 0px;
}
#pia h4 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 500;
  margin-left: 12px;
}
#pia .mt20 {
  margin-top: 20px;
}
#pia .ligne2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 15px;
  margin: 5px 0px;
}
#pia .ligne2 > :first-child {
  text-align: right;
  line-height: normal;
}
#pia .ligne2 > :last-child {
  text-align: left;
  line-height: normal;
}
#pia .ligne2 .widthInput {
  line-height: 56px;
}
#pia #pia_tuteurs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px 10px;
}
#pia #persContact {
  margin-top: 15px;
}
#pia .pia_table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
#pia .pia_table tr td {
  border: 1px solid rgba(0, 0, 0, 0.5);
}
#pia .pia_table tr.table_head {
  color: rgba(0, 0, 0, 0.5);
}
#pia .pia_table tr.editable_td td {
  padding: 6px 3px;
}
#pia .pia_table tr.editable_td td i {
  cursor: pointer;
}
#pia .pia_table tr.editable_td td i:hover {
  color: rgb(19, 154, 139);
}
#pia .pia_table tr.editable_td td input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
#pia .pia_table tr #addLinePiaListeProfs {
  padding: 10px;
  margin: 15px;
  border: 1px solid rgb(19, 154, 139);
  color: rgb(19, 154, 139);
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}
#pia .pia_table tr #addLinePiaListeProfs i {
  margin-right: 5px;
}
#pia .pia_table tr #addLinePiaListeProfs:hover {
  color: white;
  background-color: rgb(19, 154, 139);
}
#pia .pia_table tr.forButton {
  padding: 10px;
}
#pia .objectif_box {
  margin-top: 10px;
  margin-bottom: 20px;
}
#pia .objectif_box h3 {
  margin: 10px 0px;
}
#pia #add_objectif_pia {
  display: flex;
  justify-content: center;
  align-items: center;
}
#pia .paragraphe_objectifs {
  font-size: 1em;
  text-align: left;
}
#pia .paragraphe_objectifs p {
  line-height: 1.4em;
  margin: 10px;
}
#pia .paragraphe_objectifs ul, #pia .paragraphe_objectifs ol {
  margin-left: 20px;
}
#pia .paragraphe_objectifs ul li, #pia .paragraphe_objectifs ol li {
  margin-bottom: 10px;
}

@media (orientation: portrait) {
  #bodybody {
    width: 100%;
    display: flex !important;
    flex-direction: column;
  }
  #bodybody #body_left {
    background-color: white;
    color: #525354;
    z-index: 3000;
  }
  #bodybody #body_right {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr;
    gap: 0px 0px;
    grid-template-areas: "navBar" "body";
    font-family: "Roboto", sans-serif;
  }
  #bodybody .menu_left_block {
    padding: 5px;
  }
  #bodybody .menu_left_block h1 {
    color: rgb(19, 154, 139);
    font-size: 1.3em;
  }
  #bodybody .menu_left_block ul {
    list-style: none;
  }
  #bodybody .menu_left_block ul li {
    padding: 10px;
    transition: all 0.2s;
  }
  #bodybody .menu_left_block ul li:hover {
    background-color: #DDD;
  }
  #bodybody .menu_left_block ul li a p {
    display: none;
  }
  #bodybody #menu_left_open {
    display: flex;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
  }
  #bodybody #menu_left_open:hover {
    background-color: #DDD;
  }
  #bodybody #menu_left_home {
    display: flex;
    justify-content: center;
  }
  #bodybody #menu_left_home i {
    background-color: rgb(19, 154, 139);
    width: 30px;
    height: 30px;
    border-radius: 15px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #bodybody #menu_closed {
    position: relative;
    transition: all 0.4s ease-out;
    overflow: hidden;
    display: block;
  }
  #bodybody #menu_closed.isClose {
    display: none;
  }
  #bodybody #menu_opened {
    transition: all 0.3s ease-in;
    display: none;
  }
  #bodybody #menu_opened.isOpen {
    display: block;
  }
  #bodybody #menu_opened #menu_opened_eleves {
    padding: 15px;
  }
  #bodybody #menu_opened #menu_opened_eleves li h1 {
    font-weight: 600;
    cursor: pointer;
    color: #008ca5;
    transition: color 0.2s;
    padding: 5px 0px;
  }
  #bodybody #menu_opened #menu_opened_eleves li h1:hover {
    color: #777;
  }
  #bodybody #menu_opened #menu_opened_eleves li h1 i {
    transition: all 0.2s;
  }
  #bodybody #menu_opened #menu_opened_eleves li h1 i.rotate {
    transform: rotate(90deg);
  }
  #bodybody #menu_opened #menu_opened_eleves li ul {
    height: 250px;
    max-height: 0px;
    transition: all 0.3s;
    overflow: hidden;
  }
  #bodybody #menu_opened #menu_opened_eleves li ul li {
    transition: color 0.2s;
    padding: 5px 5px 5px 15px;
  }
  #bodybody #menu_opened #menu_opened_eleves li ul li:hover {
    color: #AAA;
  }
  #bodybody #menu_opened #menu_opened_eleves li ul li.copyable {
    font-weight: bold;
    cursor: alias;
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border-radius: 0;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

#body {
  grid-area: body;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
#body .btn {
  min-width: 600px;
  width: 100%;
  max-width: 900px;
  position: relative;
}

.ui-datepicker {
  background-color: #fff;
  border: 1px solid #66AFE9;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
  display: none;
  margin-top: 4px;
  padding: 10px;
  width: 240px;
}

.ui-datepicker a,
.ui-datepicker a:hover {
  text-decoration: none;
}

.ui-datepicker a:hover,
.ui-datepicker td:hover a {
  color: #2A6496;
  transition: color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-header {
  margin-bottom: 4px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title {
  font-weight: 700;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: default;
  font-family: "Glyphicons Halflings";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  height: 20px;
  line-height: 1;
  margin-top: 2px;
  width: 30px;
}

.ui-datepicker .ui-datepicker-prev {
  float: left;
  text-align: left;
}

.ui-datepicker .ui-datepicker-next {
  float: right;
  text-align: right;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "<";
}

.ui-datepicker .ui-datepicker-next:before {
  content: ">";
}

.ui-datepicker .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
  width: 100%;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
  text-align: center;
  padding: 4px 0;
}

.ui-datepicker .ui-datepicker-calendar td {
  border-radius: 4px;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-calendar td:hover {
  background-color: #eee;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-calendar td a {
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-current-day {
  background-color: #4289cc;
}

.ui-datepicker .ui-datepicker-current-day a {
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
  background-color: #fff;
  cursor: default;
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
.background {
  z-index: -1;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000000;
  overflow: hidden;
}

.background span {
  width: 2vmin;
  height: 2vmin;
  border-radius: 2vmin;
  backface-visibility: hidden;
  position: absolute;
  animation: move;
  animation-duration: 20;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.background span:nth-child(0) {
  color: #c9c9c9;
  top: 40%;
  left: 84%;
  animation-duration: 199s;
  animation-delay: -247s;
  transform-origin: 5vw -13vh;
  box-shadow: 4vmin 0 1.2942255011vmin currentColor;
}

.background span:nth-child(1) {
  color: #525252;
  top: 1%;
  left: 2%;
  animation-duration: 30s;
  animation-delay: -14s;
  transform-origin: -17vw 9vh;
  box-shadow: -4vmin 0 1.2248044275vmin currentColor;
}

.background span:nth-child(2) {
  color: #525252;
  top: 71%;
  left: 16%;
  animation-duration: 11s;
  animation-delay: -130s;
  transform-origin: -6vw 22vh;
  box-shadow: -4vmin 0 0.7321011467vmin currentColor;
}

.background span:nth-child(3) {
  color: rgb(19, 154, 139);
  top: 59%;
  left: 33%;
  animation-duration: 123s;
  animation-delay: -118s;
  transform-origin: -20vw 6vh;
  box-shadow: -4vmin 0 1.2839366504vmin currentColor;
}

.background span:nth-child(4) {
  color: #525252;
  top: 39%;
  left: 24%;
  animation-duration: 150s;
  animation-delay: -33s;
  transform-origin: 25vw -19vh;
  box-shadow: 4vmin 0 1.4310612744vmin currentColor;
}

.background span:nth-child(5) {
  color: #525252;
  top: 40%;
  left: 71%;
  animation-duration: 231s;
  animation-delay: -280s;
  transform-origin: 17vw 8vh;
  box-shadow: -4vmin 0 0.7486819371vmin currentColor;
}

.background span:nth-child(6) {
  color: #c9c9c9;
  top: 71%;
  left: 13%;
  animation-duration: 257s;
  animation-delay: -294s;
  transform-origin: 17vw -6vh;
  box-shadow: 4vmin 0 1.4567629679vmin currentColor;
}

.background span:nth-child(7) {
  color: #525252;
  top: 32%;
  left: 25%;
  animation-duration: 178s;
  animation-delay: -157s;
  transform-origin: -15vw 11vh;
  box-shadow: -4vmin 0 0.5652034933vmin currentColor;
}

.background span:nth-child(8) {
  color: #525252;
  top: 30%;
  left: 39%;
  animation-duration: 125s;
  animation-delay: -137s;
  transform-origin: -18vw 1vh;
  box-shadow: -4vmin 0 1.018878352vmin currentColor;
}

.background span:nth-child(9) {
  color: #525252;
  top: 64%;
  left: 60%;
  animation-duration: 102s;
  animation-delay: -178s;
  transform-origin: 23vw -15vh;
  box-shadow: 4vmin 0 1.0884688204vmin currentColor;
}

.background span:nth-child(10) {
  color: #525252;
  top: 10%;
  left: 19%;
  animation-duration: 293s;
  animation-delay: -64s;
  transform-origin: 18vw 0vh;
  box-shadow: 4vmin 0 1.0505266409vmin currentColor;
}

.background span:nth-child(11) {
  color: #525252;
  top: 62%;
  left: 16%;
  animation-duration: 144s;
  animation-delay: -8s;
  transform-origin: 21vw -11vh;
  box-shadow: 4vmin 0 1.1200498568vmin currentColor;
}

.background span:nth-child(12) {
  color: #525252;
  top: 18%;
  left: 50%;
  animation-duration: 86s;
  animation-delay: -132s;
  transform-origin: 5vw -16vh;
  box-shadow: -4vmin 0 0.6179233376vmin currentColor;
}

.background span:nth-child(13) {
  color: #c9c9c9;
  top: 3%;
  left: 85%;
  animation-duration: 117s;
  animation-delay: -86s;
  transform-origin: 21vw -7vh;
  box-shadow: -4vmin 0 1.1387813173vmin currentColor;
}

.background span:nth-child(14) {
  color: #525252;
  top: 53%;
  left: 74%;
  animation-duration: 239s;
  animation-delay: -196s;
  transform-origin: -17vw -22vh;
  box-shadow: -4vmin 0 0.5072323298vmin currentColor;
}

.background span:nth-child(15) {
  color: rgb(19, 154, 139);
  top: 13%;
  left: 50%;
  animation-duration: 157s;
  animation-delay: -171s;
  transform-origin: 13vw 10vh;
  box-shadow: -4vmin 0 1.1069968441vmin currentColor;
}

.background span:nth-child(16) {
  color: rgb(19, 154, 139);
  top: 54%;
  left: 23%;
  animation-duration: 124s;
  animation-delay: -275s;
  transform-origin: 24vw 22vh;
  box-shadow: -4vmin 0 1.0455034812vmin currentColor;
}

.background span:nth-child(17) {
  color: #c9c9c9;
  top: 75%;
  left: 59%;
  animation-duration: 282s;
  animation-delay: -253s;
  transform-origin: 22vw 23vh;
  box-shadow: -4vmin 0 1.0015198724vmin currentColor;
}

.background span:nth-child(18) {
  color: #c9c9c9;
  top: 93%;
  left: 69%;
  animation-duration: 259s;
  animation-delay: -13s;
  transform-origin: -9vw 2vh;
  box-shadow: 4vmin 0 0.5110492504vmin currentColor;
}

.background span:nth-child(19) {
  color: rgb(19, 154, 139);
  top: 83%;
  left: 22%;
  animation-duration: 264s;
  animation-delay: -106s;
  transform-origin: 16vw 24vh;
  box-shadow: 4vmin 0 0.8162671892vmin currentColor;
}

.background span:nth-child(20) {
  color: rgb(19, 154, 139);
  top: 94%;
  left: 60%;
  animation-duration: 28s;
  animation-delay: -200s;
  transform-origin: 9vw -22vh;
  box-shadow: 4vmin 0 0.7238763093vmin currentColor;
}

.background span:nth-child(21) {
  color: #525252;
  top: 77%;
  left: 72%;
  animation-duration: 32s;
  animation-delay: -88s;
  transform-origin: -21vw 12vh;
  box-shadow: -4vmin 0 0.7427864747vmin currentColor;
}

.background span:nth-child(22) {
  color: #525252;
  top: 19%;
  left: 98%;
  animation-duration: 270s;
  animation-delay: -115s;
  transform-origin: 7vw 5vh;
  box-shadow: 4vmin 0 1.2092112908vmin currentColor;
}

.background span:nth-child(23) {
  color: #c9c9c9;
  top: 52%;
  left: 45%;
  animation-duration: 109s;
  animation-delay: -212s;
  transform-origin: -9vw 2vh;
  box-shadow: 4vmin 0 1.4752236812vmin currentColor;
}

.background span:nth-child(24) {
  color: #525252;
  top: 65%;
  left: 23%;
  animation-duration: 30s;
  animation-delay: -90s;
  transform-origin: 23vw 11vh;
  box-shadow: -4vmin 0 0.8895557093vmin currentColor;
}

.background span:nth-child(25) {
  color: #c9c9c9;
  top: 80%;
  left: 97%;
  animation-duration: 182s;
  animation-delay: -233s;
  transform-origin: -21vw 22vh;
  box-shadow: 4vmin 0 0.9152875645vmin currentColor;
}

.background span:nth-child(26) {
  color: rgb(19, 154, 139);
  top: 77%;
  left: 71%;
  animation-duration: 53s;
  animation-delay: -144s;
  transform-origin: -7vw 6vh;
  box-shadow: -4vmin 0 1.1335660677vmin currentColor;
}

.background span:nth-child(27) {
  color: #525252;
  top: 80%;
  left: 7%;
  animation-duration: 161s;
  animation-delay: -204s;
  transform-origin: -15vw 2vh;
  box-shadow: 4vmin 0 0.9169338733vmin currentColor;
}

.background span:nth-child(28) {
  color: #c9c9c9;
  top: 75%;
  left: 62%;
  animation-duration: 241s;
  animation-delay: -25s;
  transform-origin: -22vw 2vh;
  box-shadow: -4vmin 0 0.9780131565vmin currentColor;
}

.background span:nth-child(29) {
  color: #c9c9c9;
  top: 67%;
  left: 99%;
  animation-duration: 135s;
  animation-delay: -219s;
  transform-origin: -1vw 12vh;
  box-shadow: -4vmin 0 0.5025338836vmin currentColor;
}/*# sourceMappingURL=style.css.map */