/*********/
/* BASIC */
/*********/
:root {
  --trageiqtoires-black: #161617;
  --trageiqtoires-white: #fff;
  --trageiqtoires-orange: #F39200;
  --trageiqtoires-blue: #303F8D;
  --trageiqtoires-gray: #B1B1B1;
  --trageiqtoires-lgray: #F1F1F1;
  --trageiqtoires-red: #F00;
  --trageiqtoires-green: #94C11F;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scrollbar-width: 1vw;
  scrollbar-color: var(--trageiqtoires-blue) var(--trageiqtoires-orange);
}
*:hover {
  font-family: "Lato", sans-serif;
}
*::-moz-placeholder {
  font-family: "Lato", sans-serif;
}
*:-ms-input-placeholder {
  font-family: "Lato", sans-serif;
}
*::placeholder {
  font-family: "Lato", sans-serif;
}
*::-webkit-scrollbar {
  width: 1vw;
}
*::-webkit-scrollbar-track {
  background: var(--trageiqtoires-orange);
}
*::-webkit-scrollbar-thumb {
  background: var(--trageiqtoires-blue);
  border: 0.3vw solid var(--trageiqtoires-orange);
  border-radius: 2vw;
}

.underline:hover {
  text-decoration: underline;
}

body {
  background-color: var(--trageiqtoires-white);
  font-size: 1vw;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: row;
}

.login {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  align-items: center;
  background-color: var(--trageiqtoires-blue);
  position: relative;
}
.login h2 {
  margin-bottom: 3vh;
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.login .error {
  color: var(--trageiqtoires-red);
}
.login img {
  margin-top: 10vh;
  margin-bottom: 8vh;
  width: 50vw;
}
.login__center {
  position: relative;
  background-color: var(--trageiqtoires-white);
  width: 35vw;
  height: 35vh;
  padding: 3vh 6vw 2vh 0;
  margin-left: 4vw;
  display: flex;
  justify-content: flex-end;
}
.login__center img {
  align-self: center;
  justify-self: center;
  position: absolute;
  width: 22vw;
  left: -10vw;
}
.login__center__form {
  width: 20vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login__center__form__information {
  display: flex;
  flex-direction: column;
  row-gap: 4vh;
  width: 100%;
}
.login__center__form__information label {
  color: var(--trageiqtoires-blue);
  font-weight: 900;
  font-size: 1.2vw;
}
.login__center__form__information__email, .login__center__form__information__password {
  display: flex;
  flex-direction: column;
}
.login__center__form__information__email input, .login__center__form__information__password input {
  flex: none !important;
  width: 96% !important;
}
.login__center__form a {
  color: var(--trageiqtoires-gray);
  align-self: flex-end;
  font-size: 0.8vw;
  margin-top: 0.5vh;
}
.login__center__form a:hover {
  text-decoration: underline;
}
.login__center__form button {
  margin-top: 4vh;
  width: 100%;
  font-size: 1.2vw;
  padding: 1vh 0;
  color: white;
  background-color: var(--trageiqtoires-orange);
  border: none;
  text-transform: uppercase;
}

.return {
  display: flex;
  width: 2vw;
  height: 2vw;
  padding: 0.5vh;
  background-color: var(--trageiqtoires-orange);
}
.return img {
  width: 100%;
}

.button {
  border: none;
  cursor: pointer;
  background: none;
  position: absolute;
  height: 100%;
  width: 100%;
}

.button__save {
  background-color: var(--trageiqtoires-green);
}

.button__delete {
  background-color: var(--trageiqtoires-red);
}

.button__add {
  background-color: var(--trageiqtoires-orange);
  width: 13vw;
  padding: 0.8vh 3vw;
  display: flex;
  justify-content: center;
  margin-bottom: 3vh;
  align-items: center;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  font-size: 0.8vw;
  position: relative;
  color: var(--trageiqtoires-white);
  font-weight: 900;
}
.button__add img {
  width: 3vw;
}
.button__add a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.checkbox {
  width: 5vw;
  height: 4vh;
  padding: 0.4vh 0.3vw;
  background: var(--trageiqtoires-red);
  position: relative;
  display: flex;
  align-items: center;
}
.checkbox::before, .checkbox::after {
  color: var(--trageiqtoires-white);
  position: absolute;
  z-index: 0;
  font-weight: 900;
}
.checkbox:after {
  left: 0.4vw;
  content: "OUI";
}
.checkbox:before {
  right: 0.4vw;
  content: "NON";
}
.checkbox label {
  left: 0.2vw;
  align-self: center;
  width: 2.6vw;
  height: 3.3vh;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  background: var(--trageiqtoires-white);
  border-radius: 5vw;
  transition: all 1s ease;
}
.checkbox input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.checkbox input[type=checkbox]:checked + label {
  left: 2.8vw;
}
.checkbox:has(input[type=checkbox]:checked) {
  background: var(--trageiqtoires-green);
}

.multiselect {
  border: none;
  border-left: 0.1vw solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  padding-left: 1vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 1vh;
}
.multiselect__item {
  display: flex;
  -moz-column-gap: 0.3vw;
       column-gap: 0.3vw;
}
.multiselect__item__label {
  flex: 1;
  border: none;
}
.multiselect__item__checkbox {
  width: 1.3vw;
  height: 1.3vw;
  position: relative;
  display: flex;
  align-items: center;
}
.multiselect__item__checkbox label {
  align-self: center;
  text-align: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  background: var(--trageiqtoires-red);
}
.multiselect__item__checkbox input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.multiselect__item__checkbox input[type=checkbox]:checked + label {
  background: var(--trageiqtoires-green);
}

#tutors {
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
  flex: 1;
}
#tutors span {
  color: var(--trageiqtoires-blue);
  font-weight: 900;
  display: flex;
}
#tutors span span {
  font-size: 1vw;
  width: 2vw;
}

.excel {
  width: 10vw;
  margin: 8vh 0 2vh 0;
  text-align: center;
  cursor: pointer;
  border: none;
  background-color: var(--trageiqtoires-blue);
  color: var(--trageiqtoires-white);
  padding: 1vh 0;
  font-size: 1vw;
}

.add_action, .add_formation {
  cursor: pointer;
  background-color: var(--trageiqtoires-orange);
  width: 13vw;
  padding: 2vh 3vw;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 18vh;
  align-items: center;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  font-size: 1vw;
  color: var(--trageiqtoires-white);
  font-weight: 800;
}
.add_action img, .add_formation img {
  width: 2vw;
}

.border {
  border-left: 0.2vw solid var(--trageiqtoires-blue);
  border-right: 0.2vw solid var(--trageiqtoires-blue);
  border-bottom: 0.2vw solid var(--trageiqtoires-blue);
}

header {
  scrollbar-width: none;
  height: 100vh;
  width: 20vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  max-width: 20%;
  background-color: var(--trageiqtoires-blue);
}
header::-webkit-scrollbar {
  display: none;
}
header .nav {
  height: 100vh;
  width: 20vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
header .nav__logo {
  padding: 4vh 2vw 6vh 2vw;
}
header .nav__logo img {
  width: 100%;
}
header .nav__tab {
  display: flex;
  flex-direction: column;
  padding: 0 2vw;
  row-gap: 2vh;
}
header .nav__tab span {
  text-transform: uppercase;
  width: 100%;
}
header .nav__tab img {
  width: 1.3vw;
}
header .nav__tab a {
  width: 100%;
  display: flex;
  -moz-column-gap: 0.2vw;
       column-gap: 0.2vw;
  position: relative;
}
header .nav__tab__item {
  background-color: var(--trageiqtoires-orange);
  padding: 1vh 0.4vw;
  display: flex;
}
header .nav__tab__item a {
  color: var(--trageiqtoires-white);
}
header .nav__tab__item__selected {
  background-color: var(--trageiqtoires-white);
  padding: 1vh 0vw 1vh 0.4vw;
  display: flex;
}
header .nav__tab__item__selected a {
  color: var(--trageiqtoires-orange);
}
header .nav__tab hr {
  border: none;
  border-bottom: 0.1vw solid var(--trageiqtoires-green);
}
header .nav__tab__logout {
  border: 0.1vw solid var(--trageiqtoires-orange);
  padding: 1vh 0.4vw;
  display: flex;
}
header .nav__tab__logout a {
  color: var(--trageiqtoires-orange);
}
header .nav__tab__square {
  border: 0.6vw solid transparent;
  border-top-color: var(--trageiqtoires-blue);
  border-bottom: none;
  rotate: 90deg;
  display: inline-block;
  position: absolute;
  right: -0.4vw;
  align-self: center;
}

.table {
  width: 71vw;
}

.grid-3 {
  grid-template-columns: 33% 33% 33%;
}

.grid-4 {
  grid-template-columns: 25% 25% 25% 25%;
}

.grid-5 {
  grid-template-columns: 20% 20% 20% 20% 20%;
}

.grid-6 {
  grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
}

.grid-7 {
  grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
}

.table__head {
  background-color: var(--trageiqtoires-blue);
  padding: 2vh 0;
  color: var(--trageiqtoires-white);
  text-align: center;
  font-size: 1.3vw;
  display: grid;
  margin-bottom: 4vh;
}
.table__head span {
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  justify-content: center;
}
.table__head span img {
  width: 1vw;
  margin-left: 0.4vw;
}
.table__head span img.up {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.table__head span a {
  color: var(--trageiqtoires-white);
}

.table__body {
  display: grid;
  padding: 2vh 0;
  margin-bottom: 1vh;
  background-color: var(--trageiqtoires-lgray);
}
.table__body span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--trageiqtoires-black);
  text-align: center;
}
.table__body a {
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.table__body .alert {
  width: 2vw;
  position: absolute;
  align-self: center;
}

.menu__actions {
  position: relative;
}
.menu__actions img {
  margin-right: 7.3vw;
  width: 2vw;
}
.menu__actions__list {
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  row-gap: 0.3vh;
  right: -1.5vw;
  top: -1.9vh;
  margin: 1.6vh 0 0 0;
  padding: 0;
  visibility: hidden;
}
.menu__actions__list__item {
  background-color: var(--trageiqtoires-orange);
  padding: 1vh 1vw;
  display: flex;
  position: relative;
}
.menu__actions__list__item .line {
  border: none;
  width: 1.3vw;
  border-bottom: 0.2vw solid var(--trageiqtoires-orange);
  position: absolute;
  align-self: center;
  left: -1.2vw;
}
.menu__actions__list__item span {
  color: var(--trageiqtoires-white);
}

.section {
  margin-left: 20vw;
  width: 80vw;
  padding: 4vh 0 0 4vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

h1 {
  color: var(--trageiqtoires-blue);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.4vw;
}

h2 {
  color: var(--trageiqtoires-orange);
  margin: 1vh 0;
}

h3 {
  color: var(--trageiqtoires-orange);
  font-weight: 300;
  font-size: 1.5vw;
  text-decoration: underline;
}

h4 {
  color: var(--trageiqtoires-orange);
  font-weight: 500;
  font-size: 1.3vw;
}

.title {
  margin-bottom: 4vh;
  display: flex;
  align-items: center;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
}

.form {
  margin-top: 7vh;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 70vw;
}
.form__def {
  position: absolute;
  right: 22.5vw;
  bottom: -2vh;
  color: var(--trageiqtoires-blue);
  font-weight: 800;
  font-size: 0.8vw;
}
.form__div {
  display: flex;
  margin-bottom: 2vh;
  -moz-column-gap: 0.3vw;
       column-gap: 0.3vw;
}
.form__div__contract {
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  flex: 1;
  display: flex;
  align-items: center;
}
.form__div__contract textarea {
  align-self: flex-start;
}
.form__div:has(.alert) {
  position: relative;
}
.form__div:has(.alert) .alert {
  color: var(--trageiqtoires-orange);
  position: absolute;
  bottom: -3vh;
}
.form__div:has(select) {
  position: relative;
}
.form__div:has(select)::after {
  align-self: center;
  content: url("/src/image/icons/arrow-blue.svg");
  color: var(--trageiqtoires-blue);
  width: 1vw;
  position: absolute;
  right: 1.3vw;
}
.form__div:has(select) select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__information {
  color: var(--trageiqtoires-orange);
  font-size: 0.9vw;
  align-self: center;
}
.form__label {
  background-color: var(--trageiqtoires-lgray);
  color: var(--trageiqtoires-blue);
  width: 25vw;
  font-size: 1.2vw;
  padding: 1vh 0 1vh 2vw;
  align-items: center;
  display: flex;
}
.form__buttons {
  display: flex;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  margin-top: 4vh;
  justify-content: space-evenly;
}
.form__buttons__item {
  position: relative;
  padding: 2vh 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  flex: 1;
}
.form__buttons__item img {
  width: 2vw;
}
.form__buttons__item span {
  color: var(--trageiqtoires-white);
  font-size: 1.2vw;
  font-weight: 600;
}
.form__bloc {
  display: flex;
  justify-content: space-between;
}
.form__mh {
  color: var(--trageiqtoires-blue);
  font-weight: 900;
  width: 48%;
  row-gap: 2vh;
  display: flex;
  flex-direction: column;
}
.form__mh__item {
  display: flex;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
  width: 100%;
}
.form__mh__item__div {
  display: flex;
  flex-direction: column;
}
.form__mh div {
  justify-self: flex-end;
}

.input[type=number] {
  color: var(--trageiqtoires-blue);
  border: none;
  border-left: 0.1vh solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  padding-left: 1vw;
  font-size: 1vw;
  height: auto;
}
.input[type=number]:focus {
  outline-width: 0vw;
}

.input[type=text], .input[type=password] {
  background-color: var(--trageiqtoires-white);
  border: none;
  border-left: 0.1vh solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  flex: 1;
  padding-left: 1vw;
  font-size: 1vw;
  height: auto;
  color: var(--trageiqtoires-blue);
}
.input[type=text]:focus, .input[type=password]:focus {
  outline-width: 0vw;
}

.input[type=date] {
  background-color: var(--trageiqtoires-white);
  border: none;
  border-left: 0.1vh solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  padding-left: 1vw;
  font-size: 1vw;
  height: auto;
  width: 10vw;
  color: var(--trageiqtoires-blue);
}
.input[type=date]:focus {
  outline-width: 0vw;
}

::-webkit-calendar-picker-indicator {
  color: var(--trageiqtoires-blue);
  padding: 1vh;
  cursor: pointer;
  width: 1vw;
}

.select {
  background-color: var(--trageiqtoires-white);
  border: none;
  border-left: 0.1vh solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  flex: 1;
  padding-left: 0.8vw;
  font-size: 1vw;
  height: auto;
  color: var(--trageiqtoires-blue);
}
.select:focus {
  outline-width: 0vw;
}

textarea {
  background-color: var(--trageiqtoires-white);
  border: none;
  border-left: 0.1vh solid var(--trageiqtoires-blue);
  border-bottom: 0.1vw solid var(--trageiqtoires-blue);
  flex: 1;
  color: var(--trageiqtoires-blue);
  height: 100%;
  padding-left: 1vw;
  font-size: 1vw;
}
textarea:focus {
  outline-width: 0vw;
}
textarea::-moz-placeholder {
  font-size: 1vw;
}
textarea:-ms-input-placeholder {
  font-size: 1vw;
}
textarea::placeholder {
  font-size: 1vw;
}

.section_user {
  display: none;
}

.section_user__show {
  display: flex;
  width: 66vw;
  padding: 4vh 2vw 0 2vw;
  margin-top: -4vh;
  flex-direction: column;
  margin-bottom: 3vh;
}

.nav_user {
  display: flex;
  align-items: center;
  width: 70vw;
  margin-top: 10vh;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
}
.nav_user__item {
  cursor: pointer;
  padding: 3vh 0;
  color: var(--trageiqtoires-white);
  flex: 1;
  font-weight: 500;
  font-size: 1vw;
  text-transform: uppercase;
  border: none;
  background-color: var(--trageiqtoires-gray);
}
.nav_user__item__active {
  background-color: var(--trageiqtoires-blue);
}

.article {
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  margin-bottom: 3vh;
  display: flex;
  border: 0.1vw solid var(--trageiqtoires-blue);
  width: 69.25vw;
  background-color: var(--trageiqtoires-white);
  color: var(--trageiqtoires-blue);
  font-size: 1.4vw;
  font-weight: 900;
  padding: 2vh 0 2vh 1vw;
}
.article::after {
  content: url("/src/image/icons/arrow-blue.svg");
  width: 2vw;
  position: absolute;
  right: 2vw;
}

.article__show {
  background-color: var(--trageiqtoires-blue);
  color: var(--trageiqtoires-white);
}
.article__show::after {
  content: url("/src/image/icons/arrow-white.svg");
  width: 2vw;
  position: absolute;
  right: 2vw;
}

.stat__section {
  width: 70.4vw;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1vh;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
  margin-bottom: 4vh;
}
.stat__section.show {
  display: grid;
}
.stat__section * {
  font-weight: 700;
  padding: 2vh 1vw;
}
.stat__section__title {
  background-color: var(--trageiqtoires-lgray);
  color: var(--trageiqtoires-blue);
}
.stat__section__data {
  color: var(--trageiqtoires-blue);
  border: none;
  border-left: 0.2vw solid var(--trageiqtoires-blue);
  border-bottom: 0.2vw solid var(--trageiqtoires-blue);
}
.stat__section__data.first {
  text-transform: uppercase;
}
.stat__section__result {
  background-color: var(--trageiqtoires-blue);
  color: var(--trageiqtoires-white);
}

.popup {
  width: 99vw;
  height: 100vh;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.popup__helper {
  position: absolute;
  width: 99vw;
  height: 100vh;
  z-index: 12;
  background-color: rgba(241, 241, 241, 0.7);
}
.popup__body {
  z-index: 12;
  padding: 3vh 2vw;
  opacity: 1;
  background-color: var(--trageiqtoires-white);
  position: relative;
  border: 0.2vw solid var(--trageiqtoires-orange);
  width: 60vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.popup__close {
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 1vw;
  font-weight: 900;
  cursor: pointer;
}
.popup .form {
  width: 98%;
}

.monitorings {
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
.monitorings__item {
  display: flex;
  height: 100%;
  width: 100%;
}
.monitorings__item__date {
  background-color: var(--trageiqtoires-blue);
  border: 0.1vw solid var(--trageiqtoires-blue);
  color: var(--trageiqtoires-white);
  padding: 1vh 1vw;
  display: flex;
  flex-direction: column;
  row-gap: 0.2vh;
  justify-content: center;
  align-items: center;
}
.monitorings__item__text {
  flex: 1;
  border: 0.1vw solid var(--trageiqtoires-blue);
  padding-left: 1vw;
  padding-top: 1vh;
  padding-bottom: 2vh;
  display: flex;
  flex-direction: column;
  row-gap: 2vh;
}
.monitorings__item__text .name {
  color: var(--trageiqtoires-orange);
  font-weight: 700;
  font-size: 1.2vw;
}
.monitorings__item__text .name span:nth-child(2) {
  color: var(--trageiqtoires-black);
}
.monitorings__item__time span:nth-child(2) {
  color: var(--trageiqtoires-orange);
  font-weight: 700;
}
.monitorings__item__remark {
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
  margin-bottom: 2vh;
}
.monitorings__item__remark span:first-child {
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.monitorings__item__attachements {
  position: absolute;
  bottom: 0.6vh;
  left: 10.5vw;
  background-color: var(--trageiqtoires-orange);
  color: white;
  width: 30%;
  text-align: center;
  margin: 1vh 0 0.2vh 0;
  padding: 0.4vh 1vw;
  cursor: pointer;
}

.skills {
  border-bottom: 0.2vw solid var(--trageiqtoires-orange);
  padding-bottom: 1vh;
  margin-bottom: 4vh;
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
}
.skills__title {
  color: var(--trageiqtoires-orange);
  margin-bottom: 2vh;
  font-weight: 900;
  text-transform: uppercase;
}
.skills__item {
  width: 100%;
  display: flex;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
}
.skills__item span {
  flex: 4;
  background-color: var(--trageiqtoires-lgray);
  display: flex;
  padding: 1vh 0.5vw;
  align-items: center;
  color: var(--trageiqtoires-blue);
}
.skills__item select {
  flex: 1;
}
.skills__item:has(select) {
  position: relative;
}
.skills__item:has(select)::after {
  align-self: center;
  content: url("/src/image/icons/arrow-blue.svg");
  color: var(--trageiqtoires-blue);
  width: 1vw;
  position: absolute;
  right: 13vw;
}
.skills__item:has(select) select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.carousel {
  position: relative;
  height: 50vh;
  z-index: 2;
  margin-bottom: 10vh;
}
.carousel__viewport {
  z-index: 1;
  height: 100%;
  display: flex;
  position: relative;
}
.carousel__prev, .carousel__next {
  cursor: pointer;
  width: 2vw;
  position: absolute;
  top: 25vh;
}
.carousel__prev {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  left: -2.3vw;
}
.carousel__next {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  right: -2.3vw;
}
.carousel__slide {
  display: none;
  background-color: var(--trageiqtoires-lgray);
  flex-direction: column;
  position: absolute;
  row-gap: 1vh;
  height: 100%;
  width: 18vw;
  padding: 1vh 1vw;
  padding-bottom: 6vh;
}
.carousel__slide.show {
  display: flex;
}
.carousel__slide__click {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 1vh;
}
.carousel__slide__date {
  color: var(--trageiqtoires-orange);
  margin-bottom: 1vh;
}
.carousel__slide__mail, .carousel__slide__attachements {
  border: none;
  align-self: center;
  width: 90%;
  background-color: var(--trageiqtoires-orange);
  color: var(--trageiqtoires-white);
  padding: 0.5vh 0;
  font-weight: 900;
  text-align: center;
  position: absolute;
  bottom: 1vh;
  cursor: pointer;
}
.carousel__slide__attachements {
  bottom: 5vh;
}
.carousel__slide__text {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
}
.carousel__slide__text span:first-child {
  color: var(--trageiqtoires-orange);
}

.pdf {
  font-size: 15px;
  color: #303F8D;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 10px;
}
.pdf__image {
  width: 40%;
  position: absolute;
  left: 10px;
}
.pdf__image img {
  width: 100%;
}
.pdf__date {
  position: absolute;
  right: 10px;
  font-size: 14px;
}
.pdf__info {
  color: #F39200;
  font-size: 30px;
  font-weight: 900;
  margin-top: 130px;
  width: 100%;
  height: 100px;
}
.pdf__monitoring {
  display: flex;
  flex-direction: column;
}
.pdf__monitoring__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.pdf__monitoring__item div:first-child {
  color: #F39200;
  width: 300px;
  font-weight: 700;
  font-size: 17px;
}
.pdf__monitoring__item div:nth-child(2) {
  width: 300px;
}
.pdf__skills {
  display: flex;
  flex-direction: column;
}
.pdf__skills__item {
  display: flex;
}
.pdf__skills__item div {
  display: inline-block;
  width: 200px;
}
.pdf__skills__title {
  color: #F39200;
  margin: 30px 0 20px 0;
  font-size: 20px;
}

.attachements {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.attachements img {
  width: 6vw;
  margin-bottom: 2vh;
}
.attachements .name {
  color: var(--trageiqtoires-blue);
  font-weight: 900;
  font-size: 1.1vw;
}
.attachements .form {
  align-items: center;
  width: 30%;
}
.attachements .form__buttons {
  width: 100%;
  flex-direction: column;
  row-gap: 1vh;
}
.attachements .form__buttons__item {
  flex: 0;
  width: 100%;
  padding: 1vh 0;
}
.attachements .form__buttons__item img {
  width: 2vw;
  margin-bottom: 0;
}

.btnFilter {
  width: 71vw;
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
  margin-bottom: 2vh;
}

.filter {
  position: relative;
  display: flex;
}
.filter select {
  width: 15vw;
  border: 0.15vw solid var(--trageiqtoires-orange);
  font-size: 1vw;
  padding: 1vh 0vw 1vh 1vw;
  color: var(--trageiqtoires-orange);
  font-weight: 900;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.filter select:focus {
  outline-width: 0vw;
}
.filter::after {
  width: 1vw;
  align-self: center;
  content: url("/src/image/icons/arrow-orange.svg");
  position: absolute;
  right: 1.3vw;
}

.search {
  position: relative;
  display: flex;
}
.search input {
  width: 15vw;
  border: 0.15vw solid var(--trageiqtoires-orange);
  padding: 1vh 0vw 1vh 1vw;
  background-color: var(--trageiqtoires-white);
  color: var(--trageiqtoires-orange);
  font-weight: 900;
  font-size: 1vw;
}
.search input:focus {
  outline-width: 0vw;
}
.search input::-moz-placeholder {
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.search input:-ms-input-placeholder {
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.search input::placeholder {
  color: var(--trageiqtoires-orange);
  font-weight: 900;
}
.search::after {
  position: absolute;
  content: url("/src/image/icons/search.svg");
  width: 2vw;
  right: 1.3vw;
  align-self: center;
}

.userGT {
  color: var(--trageiqtoires-orange);
  font-size: 1.4vw;
  font-weight: 900;
  margin: 2vh 0;
}/*# sourceMappingURL=trageiqtoires.css.map */