/* colors style */
.orange {
  color: #FFB72e;
}
.black {
  color: #000;
}
.dark-grey {
  color: #1e1e1e;
}
.mid-grey {
  color: #393939;
}
.light-grey {
  color: #ccc7bd;
}
.white {
  color: #FFF;
}
.red {
  color: #F08080;
}
.green {
  color: #90EE90;
}
.fade-grey {
  color: #FFB72e;
}
.bg-black {
  background-color: #000;
}
.bg-dark-grey {
  background-color: #1e1e1e;
}
.bg-mid-grey {
  background-color: #393939;
}
.bg-light-grey {
  background-color: #ccc7bd;
}
/* colors+helpers for colors styling*/
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 16px;
}
/* styles of text alone with clamp - 4 levels */
.txt-n1 {
  font-size: clamp(1.25rem, calc(2.1875vw + 0.625rem), 2.25rem);
}
@media (min-width: 75rem) {
  .txt-n1 {
    font-size: 2.25rem;
  }
}
.txt-n2 {
  font-size: clamp(0.75rem, calc(1.5625vw + 0.5rem), 1.5rem);
}
@media (min-width: 75rem) {
  .txt-n2 {
    font-size: 1.5rem;
  }
}
.txt-n3 {
  font-size: clamp(1rem, calc(0.9375vw + 0.5rem), 1.1rem);
}
@media (min-width: 75rem) {
  .txt-n3 {
    font-size: 1.1rem;
  }
}
.txt-n4 {
  font-size: clamp(0.625rem, calc(1.5625vw + 0.3125rem), 0.75rem);
}
@media (min-width: 75rem) {
  .txt-n4 {
    font-size: 0.75rem;
  }
}
.txt-n4-light {
  font-size: clamp(0.625rem, calc(1.5625vw + 0.3125rem), 0.75rem);
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 75rem) {
  .txt-n4-light {
    font-size: 0.75rem;
  }
}
.exergue {
  background-color: #393939;
  padding: 15px;
  border-radius: 5px;
  color: #FFF;
  margin-top: 30px;
}
.exergue-login {
  width: 94%;
}
@media (min-width: 768px) {
  .exergue-login {
    width: 93.5%;
  }
}
@media (min-width: 1300px) {
  .exergue-login {
    width: 94.5%;
  }
}
.bold {
  font-weight: bold;
}
/* stack description logic */
.txt-stack-desc {
  font-size: clamp(0.625rem, calc(0.9375vw + 0.625rem), 1.125rem);
}
/* At screen widths larger than 75rem (1200px), set the font size to 1.125rem (18px) */
@media (min-width: 75rem) {
  .txt-stack-desc {
    font-size: 1.125rem;
  }
}
.uptitle-title {
  text-align: center;
}
.uptitle {
  font-weight: 100 !important;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
/* Dynamic rating stars */
.star-rating .fa-star-o {
  font-size: 1.3rem;
  padding: 0 2px;
  cursor: pointer;
  color: #a59474;
}
@media (min-width: 768px) {
  .star-rating .fa-star-o {
    font-size: 1.2rem;
  }
}
.star-rating .fa-star {
  font-size: 1.3rem;
  padding: 0 2px;
  cursor: pointer;
  color: #FFB72E;
}
@media (min-width: 768px) {
  .star-rating .fa-star {
    font-size: 1.2rem;
  }
}
.star-rating .fa-star-o:hover {
  color: #FFB72E;
}
.star-rating .fa-star-o.fa-star:hover {
  color: #FFB72E;
}
.star-rating-label {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .star-rating-label {
    font-size: 0.6rem;
  }
}
@media (min-width: 1200px) {
  .star-rating-label {
    font-size: 0.75rem;
  }
}
/* global text styling */
.btn {
  background-color: #FFB72e;
  /* Couleur de fond */
  color: #000;
  /* Couleur du texte */
  border-radius: 5px;
  /* Coins arrondis */
  padding: 15px 15px;
  /* Marge intérieure */
  border: none;
  /* Supprime la bordure */
  cursor: pointer;
  /* Curseur de la souris */
  text-transform: uppercase;
  font-family: Poppins;
  font-size: 0.875rem;
  border: 1px #FFB72e solid;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn:hover {
  background-color: #FFF;
  border: 1px #000 solid;
}
.btn-alt {
  background-color: #393939;
  color: #FFB72e;
  border: 1px #FFB72e solid !important;
}
.btn-reponse {
  background-color: #000;
  color: #FFB72e;
  border: 1px #FFB72e solid !important;
}
.btn-eval-reponse {
  background-color: #000;
  color: #FFB72e;
  border: 1px #FFB72e solid !important;
  min-width: 82px;
  padding: 8px;
}
@media (min-width: 500px) {
  .btn-eval-reponse {
    min-width: 140px;
  }
}
@media (min-width: 768px) {
  .btn-eval-reponse {
    min-width: 170px;
  }
}
@media (min-width: 992px) {
  .btn-eval-reponse {
    min-width: 225px;
  }
}
.btn-alt:hover {
  background-color: #FFB72e;
  color: #000;
}
.btn-alt-danger:hover {
  background-color: #fc0349;
  color: #000;
  border: 1px #63001c solid !important;
}
.btn-submenu {
  letter-spacing: 1.2px;
  padding: 0px 15px;
  /* Marge intérieure */
  border: none;
  /* Supprime la bordure */
  cursor: pointer;
  /* Curseur de la souris */
  text-transform: uppercase;
  font-family: Poppins;
  color: #FFF;
  font-size: 0.5rem;
  background: none;
}
@media (min-width: 768px) {
  .btn-submenu {
    /* Coins arrondis */
    padding: 7px 15px;
    /* Marge intérieure */
    border: none;
    /* Supprime la bordure */
    font-size: 0.6875rem;
    transition: all 0.3s;
    border: 1px solid #ccc7bd;
    background-color: #ccc7bd;
    border-radius: 0 0 5px 5px;
    /* Coins arrondis */
  }
}
@media (min-width: 768px) {
  .btn-submenu:hover,
  .btn-submenu:active {
    background-color: #FFB72e;
    color: #000;
  }
}
.submenu .button {
  background-color: #000;
  border-top: 3px solid #000;
}
@media (min-width: 768px) {
  .submenu .button {
    border-top: 0px solid #000;
  }
}
.submenu .button:hover {
  background-color: #393939;
  border-top: 3px solid #FFB72e;
}
@media (min-width: 768px) {
  .submenu .button:hover {
    border-top: 0px solid #000;
  }
}
/* mini btn chip */
.btnchip-mini {
  background-color: #FFB72e;
  color: #000;
  border-radius: 3px;
  padding: 2px 4px;
  border: none;
  text-transform: uppercase;
  font-family: Poppins;
  border: 1px #FFB72e solid;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  font-size: x-small;
  margin-left: 5px;
}
/*chip */
.chip {
  display: flex;
  align-items: center;
  background-color: black;
  color: #ccc7bd;
  border-radius: 20px;
  padding: 10px 4px;
  position: relative;
  font-size: 0.65rem;
  margin: 2px;
  line-height: 0;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-height: -webkit-fit-content;
  max-height: fit-content;
  max-width: -moz-fit-content;
  max-height: -moz-fit-content;
}
@media (min-width: 1200px) {
  .chip {
    font-size: 0.75rem;
    padding: 8px 8px;
    line-height: 1.4;
    margin: 5px;
  }
}
.chip-text {
  flex: 1;
}
.chip-close-btn {
  margin-left: 5px;
  border: none;
  background-color: #FFB72e;
  color: white;
  font-size: 14px;
  line-height: 1.2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding-right: 10px;
  padding-left: 6px;
  padding-top: 2px;
  cursor: pointer;
}
.chip-close-btn:hover {
  color: #666;
}
/*MENU KEBAB*/
.menu-kebab-button {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #FFB72e;
  color: #000;
  font-size: 16x;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-kebab-button:hover {
  background-color: #FFF;
}
/*Publish button */
.menu-publish-button-on {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #FFB72e;
  font-size: 26px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 88%;
  top: 10%;
}
@media (min-width: 768px) {
  .menu-publish-button-on {
    left: 92%;
  }
}
.menu-publish-button-off {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #ccc7bd;
  font-size: 26px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 88%;
  top: 10%;
}
@media (min-width: 768px) {
  .menu-publish-button-off {
    left: 92%;
  }
}
.menu-publish-button-on:hover {
  color: #FFF;
  cursor: pointer;
}
.menu-publish-button-off:hover {
  color: #FFF;
  cursor: pointer;
}
/* Copy public portfolio url */
.menu-copy-public-portfolio-url {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #ccc7bd;
  font-size: 26px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 87.5%;
  top: 70%;
}
@media (min-width: 768px) {
  .menu-copy-public-portfolio-url {
    left: 91.5%;
  }
}
.menu-copy-public-portfolio-url:hover {
  color: #FFF;
  cursor: pointer;
}
/*Card Hide/Show button */
.menu-card-show {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #FFB72e;
  font-size: 18px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 90%;
  top: 10%;
}
.menu-card-hide {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #ccc7bd;
  font-size: 18px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 90%;
  top: 10%;
}
.menu-card-show:hover {
  color: #FFF;
  cursor: pointer;
}
.menu-card-hide:hover {
  color: #FFF;
  cursor: pointer;
}
.menu-card-invite {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #393939;
  color: #ccc7bd;
  font-size: 18px;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 90%;
  top: 75%;
}
.menu-card-invite:hover {
  color: #FFF;
  cursor: pointer;
}
.menu-card-invite:hover {
  color: #FFF;
  cursor: pointer;
}
/*play bouton */
.circle-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #FFB72e;
  border: none;
  font-size: 15px;
  position: relative;
  transition: all 0.3s;
}
.circle-action-btn:hover {
  background-color: #FFF;
}
.fa-play {
  position: absolute;
}
.circle-action-btn.big {
  width: 90px;
  height: 90px;
  font-size: 32px;
}
@media (min-width: 768px) {
  .circle-action-btn.big {
    width: 120px;
    height: 120px;
  }
}
.bt-bigplay i {
  padding-left: 7px;
}
.bt-loupe i {
  padding-left: 1px;
}
.bt-fav i {
  padding-top: 1px;
}
.btn-heading {
  display: flex;
  align-items: center;
  width: 290px;
  height: 88px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-heading {
    width: 340px;
    height: 102px;
  }
}
.btn-heading1-image-container {
  display: flex;
  width: 84px;
  height: 87px;
  margin-right: 15px;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: fit-content;
  max-width: -moz-fit-content;
  min-width: -moz-fit-content;
}
@media (min-width: 768px) {
  .btn-heading1-image-container {
    width: 99px;
    height: 102px;
  }
}
.btn-heading:hover img {
  -webkit-filter: contrast(150%) drop-shadow(8px 8px 10px black);
  filter: contrast(150%) drop-shadow(8px 8px 10px black);
}
.btn-heading-img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s;
}
.btn-heading-text-container {
  line-height: 1.5rem;
  font-size: 1.175rem;
}
.btn-heading2-image-container {
  display: flex;
  width: 32px;
  height: 36px;
  margin-right: 15px;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: fit-content;
  max-width: -moz-fit-content;
  min-width: -moz-fit-content;
}
@media (min-width: 768px) {
  .btn-heading2-image-container {
    width: 46px;
    height: 52px;
  }
}
.bt-mail,
.bt-download {
  display: flex;
  align-items: center;
  color: #FFF;
  font-weight: bold;
  margin-bottom: 15px;
  max-width: 350px;
}
.bt-mail:hover,
.bt-download:hover {
  color: #FFB72e;
}
.bt-mail span,
.bt-download span {
  display: inline-block;
  margin-left: 7px;
}
.bt-website {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bt-website:hover {
  color: #FFB72e;
}
.bt-website span {
  display: inline-block;
  margin-left: 7px;
  color: white;
  font-weight: bold;
}
.bt-cancel-create-solution {
  width: 45%;
  margin-right: 10px;
  border: none;
  background-color: #ccc7bd;
}
.bt-cancel-create-solution:hover {
  background-color: #FFF;
}
.flex-align-end-center-column {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
.flex-align-start-column {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.no-click {
  pointer-events: none;
  /* Désactive les événements de clic */
}
.default-cursor {
  cursor: default;
  /* Utilise le curseur par défaut */
}
/* all types of buttons */
/*input */
.form {
  display: flex;
  justify-content: start;
}
.container-form {
  display: flex-start;
  justify-content: flex-start;
}
.form-wrapper {
  width: 100%;
}
label {
  font-size: 0.75rem;
  font-family: "Poppins";
  display: block;
  min-height: 15px;
  margin-bottom: 0px;
  background: none;
  padding: 10px;
  text-align: center;
}
input[type=button] input[type=reset] {
  background-color: #FFB72e;
  color: #000;
  font-size: 0.75rem;
  font-family: "Poppins";
  padding: 10px;
  border: 1px solid #FFB72e;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  margin-left: -1px;
}
.submit-with-input {
  margin-top: -7px;
}
@media (min-width: 768px) {
  .submit-with-input {
    margin-top: -30px;
  }
}
input[type=text],
input[type=password] {
  background-color: #1e1e1e;
  width: 100%;
  padding: 10px 0 10px 10px;
  border: 1px solid #ccc7bd;
  outline: none;
  font-size: 0.75rem;
  font-family: "Poppins";
  color: #ccc7bd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  input[type=text],
  input[type=password] {
    width: 100%;
  }
}
input[type=submit] {
  background-color: #FFB72e;
  width: 104.5%;
  padding: 10px 0 10px 10px;
  border: 1px solid #FFB72e;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 0.75rem;
  font-family: "Poppins";
  color: #000;
  margin-top: 30px;
  cursor: pointer;
  margin-left: -1px;
}
@media (min-width: 768px) {
  input[type=submit] {
    width: 103%;
  }
}
input[type=submit] .direct-ok {
  width: 50%;
}
.question-details1 {
  width: 97.5%;
}
@media (min-width: 1200px) {
  .question-details1 {
    width: 98%;
  }
}
.question-details2 {
  width: 84.5%;
}
@media (min-width: 600px) {
  .question-details2 {
    width: 77%;
  }
}
@media (min-width: 1200px) {
  .question-details2 {
    width: 86%;
  }
}
.junidan-form {
  width: 100%;
  box-sizing: border-box;
}
.junidan-form::-webkit-input-placeholder {
  color: #ccc7bd;
  font-size: 0.75rem;
  font-family: "Poppins";
}
.junidan-form::-moz-placeholder {
  color: #ccc7bd;
  font-size: 0.75rem;
  font-family: "Poppins";
}
.junidan-form:-ms-input-placeholder {
  color: #ccc7bd;
  font-size: 0.75rem;
  font-family: "Poppins";
}
.junidan-form::-ms-input-placeholder {
  color: #ccc7bd;
  font-size: 0.75rem;
  font-family: "Poppins";
}
.junidan-form::placeholder {
  color: #ccc7bd;
  font-size: 0.75rem;
  font-family: "Poppins";
}
/*input with ok button */
.input-container {
  display: flex;
  align-items: center;
}
.junidan-input-field-2 {
  color: #ccc7bd;
  border-radius: 5px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
textarea {
  width: 100%;
  background-color: #1e1e1e;
  padding: 10px 0 10px 10px;
  border: 1px solid #ccc7bd;
  outline: none;
  font-size: 0.75rem;
  font-family: "Poppins";
  color: #ccc7bd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  resize: vertical;
}
#jform .custom-select {
  margin: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: #1e1e1e;
  color: #ccc7bd;
  padding: 12px;
  border-radius: 5px 5px 5px 5px;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, #FFB72e, #FFB72e);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 3em 3.5em;
  background-repeat: no-repeat;
  border: 1px solid #ccc7bd;
}
/* style option list */
#jform .custom-select option {
  height: 44px !important;
  color: #ccc7bd;
}
#jform .custom-select option:focus {
  background-color: #FFB72e !important;
}
/* check box */
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  padding-left: 0px;
}
.form-control + .form-control {
  margin-top: 0em;
}
.form-control--disabled {
  color: grey;
  cursor: not-allowed;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: none;
  /* Not removed via appearance */
  margin: 0;
  text-transform: capitalize !important;
  font: inherit;
  color: #FFB72e;
  width: 1.55em;
  height: 1.55em;
  border: 0.1em solid #FFB72e;
  border-radius: 0em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  margin-right: 10px;
}
input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFB72e;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}
input[type="checkbox"]:disabled {
  color: grey;
  cursor: not-allowed;
}
.formulaire-junidan input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: none;
  margin: 0;
  font: inherit;
  color: #FFB72e;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #FFB72e;
  border-radius: 50%;
  transform: translateY(-0.065em);
  display: flex;
  place-content: center;
  margin-right: 10px;
}
.formulaire-junidan input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFB72e;
  margin-top: 2px;
  /* Windows High Contrast Mode */
  background-color: #FFB72e;
}
.formulaire-junidan input[type="radio"]:checked::before {
  transform: scale(1);
}
.checkbox-ensemble {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkbox-ensemble .form-control {
  min-width: 101px;
}
@media (min-width: 768px) {
  .checkbox-ensemble .form-control {
    min-width: 130px;
  }
}
.subject-checkbox-ensemble {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subject-checkbox-ensemble .form-control {
  min-width: 101px;
}
@media (min-width: 768px) {
  .subject-checkbox-ensemble .form-control {
    min-width: 130px;
  }
}
.custom-file-input {
  color: #FFF;
  width: 100%;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Parcourir';
  color: #FFB72e;
  display: inline-block;
  text-transform: uppercase;
  background: #000;
  border: 1px solid #FFB72e;
  letter-spacing: 1.5px;
  border-radius: 5px;
  padding: 15px 15px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  background-color: #FFF;
  border-color: #FFF;
  color: #000;
}
.custom-file-input:active {
  outline: 0;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
/* Range Slider */
.track {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  width: 90%;
  max-width: 500px;
  outline: none;
  z-index: 99999999;
}
input[type="range"]:focus,
input[type="range"]:active,
input[type="range"]::-moz-focus-inner,
input[type="range"]::-moz-focus-outer {
  border: 0;
  outline: none;
  z-index: 99999999;
}
input[type="range"]::-moz-range-thumb {
  border: none;
  height: 50px;
  width: 50px;
  background-color: transparent;
  background-image: url(/img/thumbs-sprite.png);
  background-position: 0 0;
  background-size: cover;
  transform: scale(0.9) rotateZ(var(--thumb-rotate, 10deg));
  cursor: pointer;
  z-index: 99999999;
}
input[type="range"]::-moz-range-thumb:active {
  background-position: "100% 0px";
  transform: scale(2) rotateZ(var(--thumb-rotate, 10deg));
  z-index: 99999999;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 99999999;
}
input[type="range"]::-moz-range-progress {
  height: 20px;
  background: #4685d7;
  border-radius: 10px;
  cursor: pointer;
  z-index: 99999999;
}
input[type="range"]::-webkit-slider-thumb {
  border: none;
  height: 50px;
  width: 50px;
  background-color: transparent;
  background-image: url(/img/thumbs-sprite.png);
  background-position: 0 0;
  background-size: cover;
  z-index: 99999999;
  transform: scale(0.9) rotateZ(var(--thumb-rotate, 10deg));
  cursor: pointer;
  margin-top: -15px;
  -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb:active {
  background-position: "100% 0px";
  transform: scale(2) rotateZ(var(--thumb-rotate, 10deg));
  z-index: 99999999;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  z-index: 99999999;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-appearance: none;
}
.sliderrange-tooltip {
  padding: 15px;
  color: #FFB72e;
  background-color: #393939;
  font-weight: normal;
  font-size: 13px;
  border-radius: 3px;
  margin-top: 13px;
  position: absolute;
  width: 88%;
  transition: opacity 0.5s ease-out;
  opacity: 0;
  overflow: hidden;
}
@media (min-width: 605px) {
  .sliderrange-tooltip {
    width: 52%;
  }
}
@media (min-width: 768px) {
  .sliderrange-tooltip {
    width: 36%;
  }
}
.label-slider {
  background: #eee;
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  padding: 14px;
  margin-left: 10px;
  font-family: Roboto, 'Helvetica Neue', Arial;
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #000;
  font-weight: bold;
}
/****** Style Star Rating Widget *****/
.rating {
  border: none;
  float: left;
}
.rating > input {
  display: none;
}
.rating > label:before {
  margin: 1px;
  font-size: 1.75em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}
@media (min-width: 768px) {
  .rating > label:before {
    margin: 5px;
    font-size: 2em;
  }
}
.rating > .half:before {
  content: "\f089";
  position: absolute;
}
.rating > label {
  color: #ddd;
  float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #FFD700;
}
/* hover previous stars in list */
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FFD700;
}
/** Password */
.password-container {
  position: relative;
}
/* Styles for the eye icon */
.toggle-password {
  position: absolute;
  top: 69%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}
.toggle-password i {
  color: #FFB72e;
}
/* Styles for the password input field when the eye icon is clicked */
.show-password {
  type: text;
  /* You can add additional styling here, like changing the color or border */
}
/* styles for forms */
.heading {
  display: flex;
  align-items: center;
}
.heading-text-container {
  font-size: 20px;
}
@media (min-width: 1200px) {
  .heading-text-container {
    font-size: 36px;
  }
}
.heading1-image-container {
  display: flex;
  width: 60px;
  height: 62px;
  margin-right: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (min-width: 768px) {
  .heading1-image-container {
    width: 85px;
    height: 85px;
  }
}
.heading-img {
  max-width: 100%;
  max-height: 100%;
}
.heading-text-container {
  display: flex;
  align-items: center;
  flex: 1;
  height: 85px;
}
.heading2-image-container {
  display: flex;
  width: 32px;
  height: 36px;
  margin-right: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (min-width: 768px) {
  .heading2-image-container {
    width: 46px;
    height: 52px;
  }
}
/* style for big buttons or titles with suricate images */
.header {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: black;
}
.header-container {
  margin-left: auto;
  margin-right: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .header-container {
    height: 100px;
  }
}
.button-second {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .button-second {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.button-menu-start {
  padding-right: 7px;
}
@media (min-width: 768px) {
  .button-menu-start {
    padding-right: 12px;
  }
}
.button-menu {
  padding-left: 7px;
  padding-right: 7px;
}
@media (min-width: 768px) {
  .button-menu {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.button-menu-end {
  padding-left: 7px;
}
@media (min-width: 768px) {
  .button-menu-end {
    padding-left: 12px;
  }
}
.question-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.question-progressive-font {
  font-size: 16px;
  margin-bottom: 5px;
}
@media (min-width: 535px) {
  .question-progressive-font {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .question-progressive-font {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .question-progressive-font {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.details-bt {
  font-size: 12px;
}
@media (min-width: 768px) {
  .details-bt {
    font-size: 14px;
  }
}
.project-creation-radio {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
}
@media (min-width: 768px) {
  .project-creation-radio {
    align-content: space-around;
  }
}
.btn-login {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .btn-login {
    margin-right: 30px;
  }
}
.header-buttons {
  display: flex;
  align-items: center;
}
.logo-header {
  max-height: 40px;
}
@media (min-width: 768px) {
  .logo-header {
    max-height: 57px;
  }
}
/*.submenu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: (rgba(57, 57, 57, 0.25));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #000;

  @media(min-width:768px) {

    position: relative;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: (rgba(57, 57, 57, 0.25));
  }

}*/
.header#submenu .submenu {
  display: none;
}
.header#submenu:target .submenu {
  display: block;
}
.submenu {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  background-color: rgba(57, 57, 57, 0.25);
}
.submenu p {
  margin: 0;
  font-size: 12px;
  margin-top: 9px;
  margin-bottom: 5px;
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
}
@media (min-width: 768px) {
  .submenu p {
    margin-right: 20px;
  }
}
.submenu-container {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  height: 57px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .submenu-container {
    height: 33px;
    justify-content: flex-end;
  }
}
.submenu-buttons {
  display: flex;
  align-items: center;
  row-gap: 0;
}
.submenu .first-item {
  border-radius: 0 0 0 5px;
}
.submenu .second-item {
  border-radius: 0 0 0 0px;
}
.submenu .third-item {
  border-radius: 0 0 5px 0px;
}
.sub-bt-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sub-ico img {
  display: block;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .sub-ico img {
    display: none;
  }
}
/* fonds sections */
.fond-black {
  background-color: #000;
}
.fond-deco-courbes {
  background-color: #000;
  background-image: url(../img/fond-courbes-mobile.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-deco-courbes {
    background-image: url(../img/fond-courbes.svg);
    background-size: cover;
  }
}
.fond-suricate-grey {
  background-color: #000;
  background-image: url(../img/fond-gris-suricate-login.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-suricate-grey {
    background-image: url(../img/fond-gris-suricate-login.svg);
    background-size: cover;
  }
}
.fond-tete-suricate-register {
  background-color: #1e1e1e;
  background-image: url(../img/nuages-creation-compte-mobile.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-tete-suricate-register {
    background-image: url(../img/nuages-creation-compte-desktop.svg);
  }
}
.fond-tete-suricate-crea-orga {
  background-color: #1e1e1e;
  background-image: url(../img/nuages-creation-organisation-mobile.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-tete-suricate-crea-orga {
    background-image: url(../img/nuages-creation-orga-desktop.svg);
  }
}
.fond-tete-suricate-crea-portfolio {
  background-color: #1e1e1e;
  background-image: url(../img/nuages-creation-portfolio-mobile.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-tete-suricate-crea-portfolio {
    background-image: url(../img/nuages-creation-portfolio-desktop.svg);
  }
}
.fond-tete-suricate-crea-solution {
  background-color: #1e1e1e;
  background-image: url(../img/nuages-creation-solution-mobile.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .fond-tete-suricate-crea-solution {
    background-position: top center;
    background-image: url(../img/nuages-creation-solution-desktop.svg);
  }
}
.fond-mid-grey {
  background: #1E1E1E;
}
.fond-junidan12 {
  background-color: #000;
  background-repeat: no-repeat;
  min-height: 231px;
  background-position: bottom right;
  background-color: #1E1E1E;
}
@media (min-width: 768px) {
  .fond-junidan12 {
    background-image: url(../img/fond-logo-J12-Home2.svg);
  }
}
.bi-color {
  margin-bottom: 15px;
  background: #000000;
}
@media (min-width: 768px) {
  .bi-color {
    padding-bottom: 78px;
  }
}
@media (min-width: 992px) {
  .bi-color {
    background: linear-gradient(90deg, #000000 50%, #1e1e1e 50%);
  }
}
.bi-color-left {
  background: #000;
}
@media (min-width: 992px) {
  .bi-color-left {
    padding-right: 80px;
    padding-left: 80px;
  }
}
.bi-color-right {
  background: #1e1e1e;
}
@media (min-width: 992px) {
  .bi-color-right {
    padding-left: 80px;
  }
}
/* Headers */
.header-right {
  display: flex;
  flex-direction: row-reverse;
}
@media (min-width: 500px) {
  .header-right {
    padding-right: 60px;
  }
}
.header-right a {
  margin-right: 21px;
}
.header-right p {
  padding-right: 10px;
  text-align: end;
}
.header-left {
  display: flex;
  flex-direction: row;
}
@media (min-width: 500px) {
  .header-left {
    padding-left: 60px;
  }
}
.header-left a {
  margin-left: 10px;
}
.header-left p {
  padding-left: 25px;
}
.cta {
  font-weight: bold;
  font-size: 16px;
  color: #FFF;
  display: flex;
}
@media (min-width: 500px) {
  .cta {
    font-size: 16px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.cta span {
  font-size: 14px;
  color: #FFB72e;
}
@media (min-width: 500px) {
  .cta span {
    font-size: 19px;
  }
}
.cta:hover p {
  color: #FFF;
}
.cta i {
  color: #FFB72e;
  margin-top: 5px;
}
@media (min-width: 500px) {
  .cta i {
    margin-top: 3px;
  }
}
.cta:hover i {
  color: #FFF;
}
/* HERO */
.hero-portfolio {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
.hero-portfolio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-portfolio-content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-portfolio-content {
    align-items: center;
  }
}
.hero-portfolio-content h1 {
  font-size: 20px;
  margin: 0;
  margin-left: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-portfolio-content h1 {
    font-size: 36px;
    margin-left: 50px;
    margin-top: 0;
  }
}
.hero-error-content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-error-content {
    align-items: center;
  }
}
.hero-error-content h1 {
  font-size: 20px;
  margin: 0;
  margin-left: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-error-content h1 {
    font-size: 36px;
    margin-left: 50px;
    margin-top: 0;
  }
}
.hero-portfolio-content .btn {
  min-width: 200px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .hero-portfolio-content .btn {
    margin-left: 50px;
  }
}
.hero-play-button {
  display: block;
  position: absolute;
  top: 4em;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-portfolio .bt-edit {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
}
/* PUBLIC PORTFOLIO */
.public-portfolio-large-hero {
  display: none;
}
@media (min-width: 575px) {
  .public-portfolio-large-hero {
    display: block;
  }
}
.public-portfolio-responsive-hero {
  display: block;
}
@media (min-width: 575px) {
  .public-portfolio-responsive-hero {
    display: none;
  }
}
/** HERO SOLUTIONS **/
.hero-solution {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
.hero-solution img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-solution-content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-solution-content {
    align-items: center;
  }
}
.hero-solution-content h1 {
  display: block;
  position: absolute;
  font-size: 24px;
  top: -5em;
}
@media (min-width: 768px) {
  .hero-solution-content h1 {
    font-size: 36px;
    top: -4em;
  }
}
.hero-solution-content .btn {
  min-width: 200px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .hero-solution-content .btn {
    margin-left: 50px;
  }
}
.hero-solution .bt-edit {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
}
@media (min-width: 768px) {
  .hero-solution .bt-edit {
    top: 5px;
    right: 5px;
  }
}
.empty-solution-exergue {
  position: absolute;
  top: -1em;
  width: 90%;
}
@media (min-width: 768px) {
  .empty-solution-exergue {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .empty-solution-exergue {
    width: 50%;
  }
}
.empty-solution-exergue p {
  background-color: #FFB72E;
  padding: 15px;
  border-radius: 5px;
  color: #000;
  margin-top: 30px;
}
.hero-orga {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
}
.hero-orga img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-orga-content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-orga-content {
    /* */
  }
}
.hero-orga-content h1 {
  font-size: 20px;
  margin: 0;
  margin-left: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-orga-content h1 {
    font-size: 36px;
    margin-left: 50px;
    margin-top: 0;
  }
}
.hero-orga .bt-edit {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
}
@media (min-width: 768px) {
  .hero-orga .bt-edit {
    top: 5px;
    right: 5px;
  }
}
/* slider */
.carousel {
  width: 100%;
  text-align: center;
  overflow: hidden;
  cursor: auto;
}
.slides {
  display: flex;
  position: relative;
  overflow-x: auto;
  overflow: overlay;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /*
        scroll-snap-points-x: repeat(300px);
        scroll-snap-type: mandatory;
        */
}
.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  display: none;
}
.slides::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 128px;
  margin-right: 15px;
  border-radius: 10px;
  background: none;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
@media (min-width: 768px) {
  .slides > div {
    width: 263px;
  }
}
.slider > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.carousel-buttons {
  display: flex;
  justify-content: space-between;
}
.carousel-buttons-v2 {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -200px;
}
.carousel-prev,
.carousel-next {
  padding: 5px 10px;
  position: absolute;
}
.carousel-prev {
  left: -40px;
}
.carousel-next {
  right: -40px;
}
.eval-star {
  display: flex;
  width: 260px;
  justify-content: space-between;
  margin-left: 30px;
}
.eval-star .star-details {
  font-size: smaller;
}
.eval-star .checked {
  color: #FFB72e;
}
/* load spinner */
#load-overlay {
  display: none;
}
#pitch-load-overlay {
  display: none;
}
.load-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
  position: relative;
  left: 80%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .load-centered {
    width: 40%;
    left: 40%;
  }
}
.pitch-load-centered {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-clip-rotate-multiple,
.la-ball-clip-rotate-multiple > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-clip-rotate-multiple {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-clip-rotate-multiple.la-dark {
  color: #333;
}
.la-ball-clip-rotate-multiple > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-clip-rotate-multiple {
  width: 32px;
  height: 32px;
}
.la-ball-clip-rotate-multiple > div {
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-radius: 100%;
  -webkit-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
  -moz-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
  -o-animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
  animation: ball-clip-rotate-multiple-rotate 1s ease-in-out infinite;
}
.la-ball-clip-rotate-multiple > div:first-child {
  position: absolute;
  width: 32px;
  height: 32px;
  border-right-color: transparent;
  border-left-color: transparent;
}
.la-ball-clip-rotate-multiple > div:last-child {
  width: 16px;
  height: 16px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  -o-animation-direction: reverse;
  animation-direction: reverse;
}
.la-ball-clip-rotate-multiple.la-sm {
  width: 16px;
  height: 16px;
}
.la-ball-clip-rotate-multiple.la-sm > div {
  border-width: 1px;
}
.la-ball-clip-rotate-multiple.la-sm > div:first-child {
  width: 16px;
  height: 16px;
}
.la-ball-clip-rotate-multiple.la-sm > div:last-child {
  width: 8px;
  height: 8px;
}
.la-ball-clip-rotate-multiple.la-2x {
  width: 64px;
  height: 64px;
}
.la-ball-clip-rotate-multiple.la-2x > div {
  border-width: 4px;
}
.la-ball-clip-rotate-multiple.la-2x > div:first-child {
  width: 64px;
  height: 64px;
}
.la-ball-clip-rotate-multiple.la-2x > div:last-child {
  width: 32px;
  height: 32px;
}
.la-ball-clip-rotate-multiple.la-3x {
  width: 96px;
  height: 96px;
}
.la-ball-clip-rotate-multiple.la-3x > div {
  border-width: 6px;
}
.la-ball-clip-rotate-multiple.la-3x > div:first-child {
  width: 96px;
  height: 96px;
}
.la-ball-clip-rotate-multiple.la-3x > div:last-child {
  width: 48px;
  height: 48px;
}
/*
  * Animation
  */
@-webkit-keyframes ball-clip-rotate-multiple-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes ball-clip-rotate-multiple-rotate {
  0% {
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-o-keyframes ball-clip-rotate-multiple-rotate {
  0% {
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    -o-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -o-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes ball-clip-rotate-multiple-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* CK Editor */
.ck-content {
  color: #FFF;
}
.ck-content img {
  max-width: 380px;
}
@media (min-width: 768px) {
  .ck-content img {
    max-width: 780px;
  }
}
.ck-content p {
  color: #FFF;
}
.ck-content a {
  color: #FFF;
}
.ck-content h1 {
  color: #FFF;
}
.ck-content h2 {
  color: #FFF;
}
.ck-content h3 {
  color: #FFF;
}
.ck-content h4 {
  color: #FFF;
}
.ck-content strong {
  color: #FFF;
}
/* Accordion */
.accordion {
  margin: 40px 0;
}
.accordion .item {
  border: none;
  margin-bottom: 50px;
  background: none;
}
.t-p {
  color: #c1ced8;
  padding: 40px 30px 0px 30px;
}
.accordion .item .item-header h2 button.btn.btn-link {
  background: #333435;
  color: white;
  border-radius: 0px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  text-decoration: none;
}
.accordion .item .item-header {
  border-bottom: none;
  background: transparent;
  padding: 0px;
  margin: 2px;
}
.accordion .item .item-header h2 button {
  color: white;
  font-size: 20px;
  padding: 15px;
  display: block;
  width: 100%;
  text-align: left;
}
.accordion .item .item-header h2 i {
  float: right;
  font-size: 30px;
  color: #eca300;
  background-color: black;
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
button.btn.btn-link.collapsed i {
  transform: rotate(0deg);
}
button.btn.btn-link i {
  transform: rotate(180deg);
  transition: 0.5s;
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
/* Password modal */
#password-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#password-overlay {
  display: none;
}
.password-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.86);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.password-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.password-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
#password-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#password-form {
  height: 3em;
  border-radius: 5px;
  background-color: #1e1e1e;
  overflow: hidden;
  border-top: 2px solid #393939;
  border-left: 2px solid #393939;
  border-bottom: 2px solid #393939;
}
#password-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#password-box input[type="text"] {
  outline: none;
  font-size: 0.8em;
}
#password-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#password-button:hover {
  background-color: #FFF;
  color: #000;
}
#password-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#password-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
.tete-suricate-simple-register {
  background-image: url(../img/logo-suricate-big.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 20%;
}
@media (min-width: 768px) {
  .tete-suricate-simple-register {
    background-size: 7%;
    background-image: url(../img/logo-suricate-big.png);
  }
}
.password-register-spacer {
  padding-top: 100px;
}
.formulaire-password input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: none;
  margin: 0;
  font: inherit;
  color: #FFB72e;
  width: 1.2em;
  height: 1.2em;
  border: 0.15em solid #FFB72e;
  border-radius: 50%;
  transform: translateY(-0.065em);
  display: flex;
  place-content: center;
  margin-right: 10px;
}
.formulaire-password input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFB72e;
  margin-top: 2px;
  /* Windows High Contrast Mode */
  background-color: #FFB72e;
}
.formulaire-password input[type="radio"]:checked::before {
  transform: scale(1);
}
.formulaire-password input[type=submit] {
  background-color: #FFB72e;
  width: 104.5%;
  padding: 15px 0 15px 15px;
  border: 1px solid #FFB72e;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 0.875rem;
  font-family: "Poppins";
  color: #000;
  margin-top: 30px;
  cursor: pointer;
  margin-left: -1px;
}
@media (min-width: 768px) {
  .formulaire-password input[type=submit] {
    width: 103%;
  }
}
/* Action buttons on Project admin */
.project-action-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7px;
  background-color: #323232;
  border-radius: 7px;
  width: 160px;
  margin: 2px;
  max-height: 80px;
}
@media (min-width: 406px) {
  .project-action-heading {
    width: 11rem;
  }
}
@media (min-width: 433px) {
  .project-action-heading {
    width: 12rem;
  }
}
@media (min-width: 462px) {
  .project-action-heading {
    width: 13rem;
  }
}
@media (min-width: 510px) {
  .project-action-heading {
    width: 226px;
  }
}
@media (min-width: 768px) {
  .project-action-heading {
    width: 280px;
  }
}
@media (min-width: 980px) {
  .project-action-heading {
    width: 216px;
  }
}
@media (min-width: 1200px) {
  .project-action-heading {
    width: 260px;
  }
}
@media (min-width: 1400px) {
  .project-action-heading {
    width: 295px;
  }
}
.project-action-text-area {
  display: flex;
  flex-direction: column;
}
.project-action-heading-image-container {
  display: flex;
  width: 53px;
  height: 58px;
  margin-right: 8px;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: fit-content;
  max-width: -moz-fit-content;
  min-width: -moz-fit-content;
}
@media (min-width: 510px) {
  .project-action-heading-image-container {
    width: 75px;
    height: 75px;
    margin-right: 15px;
  }
}
.project-evaluation-font-size {
  font-size: 7px;
  text-transform: uppercase;
}
@media (min-width: 500px) {
  .project-evaluation-font-size {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .project-evaluation-font-size {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .project-evaluation-font-size {
    font-size: 18px;
  }
}
.project-action-subtext {
  font-size: 0.675rem;
  font-weight: normal;
}
@media (min-width: 510px) {
  .project-action-subtext {
    font-size: 0.775rem;
  }
}
@media (min-width: 1200px) {
  .project-action-subtext {
    font-size: 0.775rem;
  }
}
.project-action-text {
  font-size: 12px;
  margin-bottom: 0;
}
@media (min-width: 500px) {
  .project-action-text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .project-action-text {
    font-size: initial;
  }
}
/* project description */
#project-description-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#project-description-overlay {
  display: none;
}
.project-description-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.project-description-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.project-description-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .project-description-centered {
    width: 50%;
  }
}
#project-description-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#project-description-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#project-description-box input[type="text"] {
  padding: 7px;
  color: #FFB72e;
  outline: none;
  font-size: 1.4em;
}
#project-description-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#search-button:hover {
  background-color: #FFF;
  color: #000;
}
#project-description-close-btn {
  position: fixed;
  top: 3em;
  right: 3em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#project-description-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Level description */
#level-description-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#level-description-overlay {
  display: none;
}
.level-description-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.level-description-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.level-description-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .level-description-centered {
    width: 80%;
  }
}
@media (min-width: 1000px) {
  .level-description-centered {
    width: 60%;
  }
}
#level-description-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#level-description-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#level-description-box input[type="text"] {
  padding: 7px;
  color: #FFB72e;
  outline: none;
  font-size: 1.4em;
}
#level-description-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#level-description-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
@media (min-width: 768px) {
  #level-description-close-btn {
    top: 3em;
    right: 3em;
  }
}
#level-description-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Pitch Data */
#pitch-data-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#pitch-data-overlay {
  display: none;
}
.pitch-data-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.pitch-data-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.pitch-data-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .pitch-data-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .pitch-data-centered {
    width: 80%;
  }
}
#pitch-data-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#pitch-data-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#pitch-data-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#pitch-data-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#pitch-data-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* AI consent */
.pitch-ai-consent-checkbox {
  margin-right: 10px;
  min-width: 2em;
  min-height: 2em;
}
.pitch-ai-consent-checkbox-label {
  font-weight: normal;
  font-size: 0.7rem;
}
/* Issue Creation */
#issue-creation-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#issue-creation-overlay {
  display: none;
}
.issue-creation-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
issue-creation-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.issue-creation-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .issue-creation-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .issue-creation-centered {
    width: 80%;
  }
}
#issue-creation-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#issue-creation-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#issue-creation-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#issue-creation-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#issue-creation-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Invite in portfolio */
#invite-portfolio-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#invite-portfolio-overlay {
  display: none;
}
.invite-portfolio-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
invite-portfolio-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.invite-portfolio-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
  margin-top: 5%;
}
@media (min-width: 768px) {
  .invite-portfolio-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .invite-portfolio-centered {
    width: 80%;
  }
}
#invite-portfolio-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#invite-portfolio-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#invite-portfolio-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#invite-portfolio-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#invite-portfolio-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Update an answer comment */
#evaluation-answer-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#evaluation-answer-overlay {
  display: none;
}
.evaluation-answer-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
evaluation-answer-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.evaluation-answer-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
  margin-top: 5%;
}
@media (min-width: 768px) {
  .evaluation-answer-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .evaluation-answer-centered {
    width: 80%;
  }
}
#evaluation-answer-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#evaluation-answer-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#evaluation-answer-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#evaluation-answer-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#evaluation-answer-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Restart a crashtest */
#restart-crashtest-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#restart-crashtest-overlay {
  display: none;
}
.restart-crashtest-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
restart-crashtest-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.restart-crashtest-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
  margin-top: 15%;
}
@media (min-width: 768px) {
  .restart-crashtest-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .restart-crashtest-centered {
    width: 80%;
  }
}
#restart-crashtest-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#restart-crashtest-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#restart-crashtest-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#restart-crashtest-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#restart-crashtest-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* Portfolio subject */
#portfolio-subject-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#portfolio-subject-overlay {
  display: none;
}
.portfolio-subject-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.portfolio-subject-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}
.portfolio-subject-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .portfolio-subject-centered {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .portfolio-subject-centered {
    width: 80%;
  }
}
#portfolio-subject-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#portfolio-subject-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#portfolio-subject-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#portfolio-subject-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#portfolio-subject-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
/* styles for headers and heros and carousel*/
#toggle .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  padding: 0px;
  background: none;
}
#toggle .switch input {
  display: none !important;
}
#toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #393939;
  transition: 0.4s;
  border-radius: 34px;
}
#toggle .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #FFB72e;
  transition: 0.4s;
  border-radius: 50%;
}
#toggle input:checked + .slider {
  background-color: #CCC;
}
#toggle input:checked + .slider:before {
  transform: translateX(26px);
}
/* hover */
#toggle .slider:hover {
  background-color: #1e1e1e;
}
#toggle input:checked + .slider:hover {
  background-color: #1e1e1e;
}
/* disabled */
#toggle input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.toggle-label-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* use center to ..center the whole form */
}
.toggle-label-wrapper {
  max-width: 360px;
}
.toggle-children-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.toggle-label {
  height: 34px;
  font-weight: normal;
  margin-right: 15px;
}
/*style for togggle button*/
.miniStack {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  padding: 0px;
  border-radius: 5px;
  height: 118px;
  background-color: #393939;
  position: relative;
  /* Ajout d'une position relative pour positionner le bouton */
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .miniStack {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.miniStack img {
  width: 118px;
  height: 118px;
  margin-right: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 0;
}
.miniStack a img {
  margin-top: 5px;
}
.miniStack-content {
  flex: 1;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 75%;
}
@media (min-width: 48rem) {
  .miniStack-content {
    padding-left: 30px;
  }
}
.miniStack-content h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #FFB72e;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 70%;
}
@media (min-width: 768px) {
  .miniStack-content h3 {
    width: 90%;
  }
}
.miniStack-content p {
  margin-top: 0;
  margin-bottom: 5px;
  color: #FFF;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 70%;
}
@media (min-width: 768px) {
  .miniStack-content p {
    width: 90%;
  }
}
.miniStack-content a {
  text-decoration: none;
}
.miniStack .menu-kebab-button {
  position: absolute;
  top: 5px;
  right: 5px;
}
.stack-user-id {
  display: flex;
  justify-content: flex-start;
  background: none;
  max-width: 360px;
}
.stack-chrono-response {
  display: flex;
  justify-content: flex-start;
  background: none;
}
.stack-user-id .infos-container {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 5px;
}
.stack-user-id .img-container {
  width: 29px;
  height: 29px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .stack-user-id .img-container {
    width: 69px;
    height: 69px;
    padding-top: 0px;
  }
}
.stack-chrono-response .img-container {
  display: flex;
  width: 29px;
  height: 29px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .stack-chrono-response .img-container {
    width: 69px;
    height: 69px;
    padding-top: 0px;
  }
}
.stack-user-id .img-container img,
.stack-chrono-response .img-container img {
  border-radius: 40px;
}
.stack-user-id .post-date {
  color: #ccc7bd;
  font-size: 0.5rem;
}
@media (min-width: 500px) {
  .stack-user-id .post-date {
    font-size: 0.625rem;
  }
}
.stack-user-id .user-name {
  font-size: 0.775rem;
  font-weight: bold;
  color: #FFF;
}
@media (min-width: 500px) {
  .stack-user-id .user-name {
    font-size: 0.875rem;
  }
}
.stack-chrono-response .user-name {
  font-size: 0.875rem;
  color: #FFF;
}
.stack-user-id .user-mail {
  color: #ccc7bd;
  font-size: 0.45rem;
}
@media (min-width: 500px) {
  .stack-user-id .user-mail {
    font-size: 0.75rem;
  }
}
.stack-chrono-response .infos-container {
  width: 90%;
  margin: 0;
  padding-top: 2px;
  padding-bottom: 5px;
}
.stack-chrono-response .label-reponse {
  font-size: 0.5625rem;
}
.stack-chrono-response .post-date {
  font-size: 0.5625rem;
  color: #FFF;
}
.stack-chrono-response .reponse-title {
  /*color: @orange;
  font-weight: bold;*/
  padding: 5px;
  border-radius: 4px;
  background-color: #424040de;
}
/*style for all kind of stacks */
.card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
  background-color: #FFB72e;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .card {
    max-width: 360px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.card-image {
  width: 70px;
  height: 70px;
  background-image: url(https://via.placeholder.com/70x70);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 8px;
  align-self: flex-start;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 10px;
  flex: 1;
}
h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
p {
  margin: 0;
  font-size: 14px;
  margin-top: 2px;
  margin-bottom: 15px;
  color: #000;
}
.card-btn-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-left: 0px;
  width: 100%;
}
.card-btn-yes {
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #8ceb34;
  color: #FFF;
  border: none;
  height: 34px;
  margin-left: 0px;
  margin-right: 15px;
  font-size: 14px;
  cursor: pointer;
}
.card-btn-no {
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #eb3434;
  color: #FFF;
  border: none;
  height: 34px;
  margin-left: 0px;
  margin-right: 15px;
  font-size: 14px;
  cursor: pointer;
}
.card-btn-yes:hover {
  background-color: #ceeeb0;
  color: #000;
  border: 5px solid white;
}
.card-btn-no:hover {
  background-color: #e8c1c1;
  color: #000;
  border: 5px solid white;
}
.card-btn-yes-danger {
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #000;
  color: #FFF;
  border: none;
  width: 60px;
  height: 34px;
  margin-left: 0px;
  margin-right: 15px;
  font-size: 14px;
  cursor: pointer;
}
.card-btn-yes-danger:hover {
  background-color: #fc0349;
  color: #FFF;
}
.card-join-organization {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
  background-color: #FFB72e;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .card-join-organization {
    min-width: 330px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.card-center {
  justify-content: center;
  align-items: center;
  max-width: 330px;
  min-width: 330px;
  margin-left: 0px;
  margin-right: 0px;
}
@media (min-width: 768px) {
  .card-center {
    max-width: 450px;
    min-width: 450px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.special-danger-a {
  width: 40px;
  height: 24px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 4px;
}
.modal {
  display: none;
}
.modal:target {
  display: block;
}
.modale-card {
  position: relative;
  width: 234px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
/*modale*/
.modale-content {
  width: 234px;
  height: 108px;
  background-color: #FFB72e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.modale-content p {
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  padding-left: 15px;
  padding-right: 25px;
}
.modale-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modale-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  padding-left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000;
  color: #FFF;
  font-size: 16px;
  line-height: 1;
  border: none;
  cursor: pointer;
}
/* custom grid for card type list */
.card-type-list .col-custom {
  width: 50%;
}
@media (min-width: 576px) {
  .card-type-list .col-custom {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .card-type-list .col-custom {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .card-type-list .col-custom {
    width: 19%;
  }
}
@media (min-width: 1200px) {
  .card-type-list .col-custom {
    width: 16%;
  }
}
@media (min-width: 1400px) {
  .card-type-list .col-custom {
    width: 14%;
  }
}
/* card type project */
.card-type-project {
  background: #FFB72e;
  border-radius: 5px;
  margin-bottom: 30px;
  width: 165px;
}
.card-type-project .text-container {
  background: #393939;
  min-height: 112px;
  border-radius: 0 0 5px 5px;
  padding: 15px;
  padding-bottom: 0px;
}
.card-type-project .up-container {
  display: flex;
  height: 165px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-type-project .picto {
  width: 135px;
  height: 135px;
}
.picto img {
  border-radius: 75px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card-type-project .radiocheck {
  margin-top: 10px;
  position: absolute;
  right: 7px;
  bottom: 5px;
}
.card-type-project input[type="radio"] {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: scale(1.5);
  accent-color: #000;
}
.card-type-project h3 {
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.card-type-project p {
  font-size: 0.625rem;
}
/* card portfolio*/
.card-portfolio {
  width: 263px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.card-portfolio .image-container {
  width: 100%;
  height: 128px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card-portfolio .image-container {
    height: 263px;
  }
}
.card-portfolio .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card-portfolio .text-container {
  padding: 15px;
  background-color: #393939;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.card-portfolio .text-container a {
  color: #FFF;
}
.card-portfolio .text-container a:hover {
  color: #FFB72e;
}
.card-portfolio .text-container h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1rem;
  height: 32px;
  display: -webkit-box;
  max-width: 98%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .card-portfolio .text-container h2 {
    font-size: 1rem;
    max-width: none;
  }
}
.card-portfolio .text-container p {
  margin-top: 8px;
  margin-bottom: 0;
  color: #FFF;
  font-size: 0.75rem;
  text-align: left;
  display: -webkit-box;
  max-width: 98%;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-portfolio .menu-kebab-button {
  position: absolute;
  top: 5px;
  right: 5px;
}
.junidan-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 154px;
}
@media (min-width: 768px) {
  .junidan-overlay {
    display: none;
  }
}
/* card solution */
.card-solution {
  width: 263px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.card-solution .image-container {
  width: 100%;
  height: 128px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .card-solution .image-container {
    height: 263px;
  }
}
.card-solution .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-solution .text-container {
  padding: 15px;
  background-color: #393939;
  min-height: 45px;
}
.card-solution .text-container a {
  color: #FFF;
}
.card-solution .text-container a:hover {
  color: #FFB72e;
}
.card-solution .text-container h2 {
  margin-top: 0;
  margin-bottom: 7px;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.2rem;
  text-align: left;
  display: -webkit-box;
  max-width: 98%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .card-solution .text-container h2 {
    font-size: 1.125rem;
  }
}
.card-solution .text-container h3 {
  margin-top: 0;
  margin-bottom: 7px;
  padding: 0;
  font-size: 0.675rem;
  line-height: 1.2rem;
  text-align: left;
  color: #FFF;
  display: -webkit-box;
  max-width: 98%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .card-solution .text-container h3 {
    font-size: 1.125rem;
  }
}
.card-solution .text-container p {
  margin-top: 0;
  margin-bottom: 0;
  color: #ccc7bd;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .card-solution .text-container p {
    font-size: 0.875rem;
  }
}
.card-solution .overimage-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .card-solution .overimage-btn {
    visibility: hidden;
    opacity: 0;
  }
}
.card-solution .card-action-details {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  margin-top: 15px;
}
.card-solution .chip {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #FFB72e;
  color: #000;
}
.card-solution .menu-kebab-button {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (min-width: 768px) {
  .card-solution .menu-kebab-button {
    visibility: visible;
    opacity: 1;
  }
}
.card-solution .like-button {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 40px;
  right: 5px;
  padding-top: 3px;
}
@media (min-width: 768px) {
  .card-solution .like-button {
    visibility: visible;
    opacity: 1;
  }
}
.card-solution .play-button {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 75px;
  right: 5px;
  padding-top: 1px;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .card-solution .play-button {
    visibility: visible;
    opacity: 1;
  }
}
/* card project */
.card-project {
  min-width: 324px;
  display: flex;
  flex-direction: row;
  background: #393939;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
.card-project .menu-kebab-button {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
}
@media (min-width: 1200px) {
  .card-project .menu-kebab-button {
    top: 5px;
  }
}
.img-container {
  width: 154px;
  height: 154px;
}
@media (min-width: 1200px) {
  .img-container {
    width: 180px;
    height: 180px;
  }
}
.img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 5px 0px 0px 5px;
}
.img-jalon-container {
  width: 100%;
  height: 100%;
}
.img-jalon-container img {
  width: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 5px 0px 0px 5px;
}
@media (min-width: 650px) {
  .img-jalon-container img {
    width: 80%;
  }
}
@media (min-width: 850px) {
  .img-jalon-container img {
    width: 70%;
  }
}
@media (min-width: 1400px) {
  .img-jalon-container img {
    width: 60%;
  }
}
.infos-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 170px;
  padding: 7px 7px 0px 7px;
  position: relative;
}
@media (min-width: 1200px) {
  .infos-container {
    width: 267px;
    padding: 15px 15px 7px 15px;
  }
}
.infos-container h2 {
  margin-top: -30px;
  color: #FFB72e;
  font-size: 14px;
  padding-top: 27px;
}
@media (min-width: 1200px) {
  .infos-container h2 {
    font-size: 18px;
    padding-top: 15px;
  }
}
.suggestion-infos-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 220px;
  padding: 7px;
  position: relative;
}
@media (min-width: 1200px) {
  .suggestion-infos-container {
    width: 320px;
    padding: 15px;
  }
}
.suggestion-infos-container h2 {
  margin-top: -30px;
  color: #FFB72e;
  font-size: 14px;
  padding-top: 27px;
}
@media (min-width: 1200px) {
  .suggestion-infos-container h2 {
    font-size: 18px;
    padding-top: 15px;
  }
}
.project-time {
  font-size: 14px;
  color: #FFF;
}
.range-percentage {
  font-size: 14px;
  font-weight: bold;
  color: #FFB72e;
  line-height: 14px;
  width: 10%;
  display: inline-block;
}
.range-result {
  width: 5%;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
  vertical-align: middle;
}
.range-infos {
  width: 100%;
}
.range-bar {
  width: 85%;
  height: 10px;
  background-color: #1e1e1e;
  border-radius: 10px;
  display: inline-block;
}
.range-bar-fill {
  height: 100%;
  background-color: #FFB72e;
  border-radius: 10px;
}
.project-tags-container {
  display: flex;
  margin-left: -5px;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}
/* tooltip */
.tooltip {
  display: flex;
  position: relative;
  text-align: left;
  flex-direction: row;
  min-width: 324px;
  max-width: 360px;
}
.tooltip .bottom {
  min-width: 324px;
  max-width: 360px;
  top: 40px;
  left: 20%;
  transform: translate(-20%, 0);
  padding: 0px;
  color: #FFF;
  background-color: #837B6A;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
.tooltip:hover .bottom {
  visibility: visible;
  opacity: 1;
}
.tooltip .bottom i {
  position: absolute;
  bottom: 100%;
  left: 20%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}
.tooltip .bottom i::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: #837B6A;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.tooltip-content {
  display: flex;
}
.tooltip img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px 5px 5px 0px;
}
.tooltip-right {
  width: 195px;
  padding: 0;
}
.tooltip-left {
  padding: 15px;
  width: 195px;
}
.tooltip-full {
  padding: 15px;
}
/* mini tootltip */
.mini-tooltip {
  display: inline-block;
  position: relative;
  border-bottom: 1px dotted #666;
  text-align: left;
}
.mini-tooltip .tooltip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  top: 130px;
  transform: translate(-20%, -100%);
  padding: 0px;
  color: #000000;
  background-color: #FFB72e;
  font-weight: normal;
  border-radius: 5px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
.mini-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}
.mini-tooltip .tooltip-content i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}
.mini-tooltip .tooltip-content i::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #FFB72e;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.mini-tooltip p {
  font-size: 12px;
  line-height: 14px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
/* card evaluation */
.card-eval-points-container {
  display: flex;
  flex-direction: column;
  background: #393939;
  border-radius: 5px;
  max-width: 1140px;
}
.card-eval-points {
  /* width:555px;*/
  display: flex;
  flex-direction: row;
  background: #393939;
  border-radius: 5px;
}
.card-eval-points .img-container {
  width: 105px;
  height: 105px;
  margin: 15px;
}
.card-eval-points .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 55px;
}
.card-eval-points .infos-container {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  /* width: 270px;*/
  padding: 10px;
  flex-grow: 2;
  justify-content: flex-start;
}
.card-eval-points .infos-container h2 {
  font-size: 16px;
  color: #FFF;
  margin-bottom: 0;
  padding-top: 25px;
}
@media (min-width: 768px) {
  .card-eval-points .infos-container h2 {
    font-size: 38px;
  }
}
.card-eval-points .project-desc {
  font-size: 10px;
  color: #FFF;
}
@media (min-width: 768px) {
  .card-eval-points .project-desc {
    font-size: 16px;
  }
}
.ctrl-btn-container {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 52px;
}
.up {
  height: 50%;
  border-radius: 0 5px 0 0;
  border-bottom: 1px solid #393939;
  font-size: 38px;
  padding-top: 15px;
  padding-bottom: 0;
}
.down {
  height: 50%;
  border-radius: 0 0 0 0;
  border-top: 1px solid #393939;
  font-size: 38px;
  padding-top: 0px;
  padding-bottom: 15px;
}
.timeline-container {
  background: #000;
  height: 39px;
  padding-top: 15px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* Style for each timeline point */
.timeline li {
  position: absolute;
  top: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #393939;
  border: 2px solid #000;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
/* Style for the tooltip container */
.timeline li .tooltip {
  position: absolute;
  top: -70px;
  left: -55px;
  padding: 5px;
  min-width: 197px;
  min-height: 37px;
  background: #FFB72e;
  color: #000;
  font-size: 12;
  font-weight: bold;
  border-radius: 5px;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 3;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
/* Style for the tooltip arrow */
.timeline li .tooltip:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30%;
  margin-left: -15px;
  border-top: 15px solid #FFB72e;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
/* Show the tooltip when hovering over the point */
.timeline li:hover .tooltip {
  opacity: 1;
  display: flex;
}
.timeline li:hover {
  background-color: #FFB72e;
}
.timeline .activated {
  background-color: #FFB72e;
}
/* Position each timeline point equally along the timeline */
.timeline li:nth-child(1) {
  left: 4%;
}
.timeline li:nth-child(2) {
  left: 19%;
}
.timeline li:nth-child(3) {
  left: 34%;
}
.timeline li:nth-child(4) {
  left: 50%;
}
.timeline li:nth-child(5) {
  left: 65%;
}
.timeline li:nth-child(6) {
  left: 80%;
}
.timeline li:nth-child(7) {
  left: 93%;
}
/* Style for the timeline line */
.timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFB72e;
  z-index: 1;
}
.timeline li span {
  position: absolute;
  top: -40px;
  left: -60px;
  padding: 5px;
  background: #000;
  color: #FFF;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
}
.timeline .tooltip {
  align-items: center;
  justify-content: center;
}
/* card reponse */
.card-response {
  display: flex;
  flex-direction: column;
  background: #393939;
  border-radius: 5px;
}
.card-response h3 {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  color: #FFB72e;
}
.card-response h4 {
  margin-left: 30px;
  margin-bottom: 0px;
}
.card-response p {
  margin-left: 30px;
  color: #FFF;
  margin-bottom: 30px;
}
.card-response-comment {
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
/* Card project large */
/* card project */
.card-project-large {
  display: flex;
  flex-direction: row;
  background: #393939;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
.card-project-large .menu-kebab-button-large {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
}
@media (min-width: 1200px) {
  .card-project-large .menu-kebab-button-large {
    top: 5px;
  }
}
.img-container-large {
  width: 154px;
  height: 154px;
}
@media (min-width: 1200px) {
  .img-container-large {
    width: 180px;
    height: 180px;
  }
}
.img-container-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 5px 0px 0px 5px;
}
.infos-container-large {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 7px;
  position: relative;
}
@media (min-width: 1200px) {
  .infos-container-large {
    padding: 15px;
  }
}
.infos-container-large h2 {
  margin-top: -30px;
  color: #FFB72e;
  font-size: 14px;
  padding-top: 27px;
}
@media (min-width: 1200px) {
  .infos-container-large h2 {
    font-size: 18px;
    padding-top: 15px;
  }
}
.mission-example-container {
  border-left: 5px solid #ffB72E;
  padding: 5px 9px 5px 9px;
  background-color: #2b2b2b;
}
/*style for all kind of card */
#search-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#search-overlay {
  display: none;
}
.search-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
  z-index: 9999999;
}
.search-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
    background: #808080; width: 5px;
    */
}
.search-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .search-centered {
    width: 50%;
  }
}
#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#search-form {
  height: 3em;
  border-radius: 5px;
  background-color: #1e1e1e;
  overflow: hidden;
  border-top: 2px solid #393939;
  border-left: 2px solid #393939;
  border-bottom: 2px solid #393939;
}
#search-text {
  font-size: 14px;
  color: #ccc7bd;
  border-width: 0;
  background: transparent;
}
#search-box input[type="text"] {
  padding: 7px;
  color: #FFB72e;
  outline: none;
  font-size: 1.4em;
}
#search-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.7em;
  width: 65px;
  font-size: 0.875rem;
  color: #000;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #FFB72e;
  border-radius: 0 5px 5px 0px;
  cursor: pointer;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
#search-button:hover {
  background-color: #FFF;
  color: #000;
}
#search-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
}
#search-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
.test {
  display: flex;
}
/*style for search bar and overlay */
/* EVALUTATION HEDER PAGINATION NAV */
.eval-area-container {
  position: relative;
  margin-top: 90px;
  min-height: 200px;
}
.eval-area-container .img-container {
  width: 120px;
  height: 120px;
}
@media (min-width: 768px) {
  .eval-area-container .img-container {
    width: 165px;
    height: 165px;
  }
}
.eval-area-container h2 {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .eval-area-container h2 {
    margin-left: 60px;
  }
}
.eval-area-container-ariane {
  position: relative;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .eval-area-container-ariane {
    position: relative;
    margin-top: 7em;
    margin-left: -5em;
  }
}
@media (min-width: 1200px) {
  .eval-area-container-ariane {
    position: relative;
    margin-top: 9em;
    margin-left: -7em;
  }
}
.eval-area-container-pic {
  margin-right: 0px;
}
@media (min-width: 768px) {
  .eval-area-container-pic {
    margin-right: -2em;
  }
}
.suricate-deco {
  background-image: none;
  background-repeat: no-repeat;
  background-position: -20px 0px;
}
@media (min-width: 768px) {
  .suricate-deco {
    background-image: url('../img/suricate-pour-section.svg');
  }
}
@media (min-width: 1200px) {
  .suricate-deco {
    background-position: -20px 0px;
  }
}
.navcont {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .navcont {
    margin-left: 90px;
  }
}
.left-nav img {
  border-radius: 85px;
}
@media (min-width: 768px) {
  .left-nav img {
    border-radius: 135px;
  }
}
.phase-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #000;
  width: 80px;
  height: 95px;
  border-radius: 98px;
  line-height: 95px;
  padding-left: 15px;
  font-size: 24px;
  font-weight: bold;
  /* transform: translateX(0px); */
  color: #FFB72e;
  border: 2px solid #FFB72e;
  position: absolute;
  top: -38px;
}
@media (min-width: 768px) {
  .phase-nav {
    top: -58px;
  }
}
.phase-nav span {
  font-size: 18px;
}
.eval-left-arrow {
  position: absolute;
  left: -25px;
  transition: all 0.3s;
  cursor: pointer;
}
.eval-right-arrow {
  position: absolute;
  left: 101px;
  cursor: pointer;
}
.eval-right-arrow:hover,
.eval-left-arrow:hover {
  color: #FFF;
}
/*PAGE PROJET 1 */
.projet-title-picto {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.projet-title-picto .infos-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 242px;
}
@media (min-width: 550px) {
  .projet-title-picto .infos-container {
    width: 324px;
  }
}
@media (min-width: 780px) {
  .projet-title-picto .infos-container {
    width: 434px;
  }
}
@media (min-width: 1000px) {
  .projet-title-picto .infos-container {
    width: 374px;
  }
}
.projet-title-picto h1 {
  margin: 0;
}
.projet-title-picto .date {
  margin: 0;
}
.projet-title-picto .img-container {
  width: 120px;
  height: 120px;
}
@media (min-width: 990px) {
  .projet-title-picto .img-container {
    width: 85px;
    height: 85px;
  }
}
@media (min-width: 1200px) {
  .projet-title-picto .img-container {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1375px) {
  .projet-title-picto .img-container {
    width: 165px;
    height: 165px;
  }
}
.projet-title-picto img {
  border-radius: 85px;
}
@media (min-width: 768px) {
  .projet-title-picto img {
    border-radius: 135px;
  }
}
.flex {
  display: flex;
}
.graph-project {
  position: relative;
}
.chart-container {
  position: relative;
  margin: auto;
  min-width: 95vw;
  min-height: 95vw;
}
@media (min-width: 768px) {
  .chart-container {
    min-width: 30vw;
    min-height: 30vw;
    max-width: 560px;
    max-height: 560px;
  }
}
@media (min-width: 768px) {
  .chart-container .radar {
    max-width: 560px;
    max-height: 560px;
  }
}
.bt-link-graph {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 2;
}
.project-percentage-response {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-right: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .project-percentage-response {
    padding-right: 0px;
  }
}
.project-percentage {
  font-size: 10px;
  font-weight: bold;
  color: #FFB72e;
  padding-top: 15px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .project-percentage {
    font-size: 28px;
  }
}
.project-percentage-data {
  font-size: 18px;
  font-weight: bold;
  color: #FFB72e;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .project-percentage-data {
    font-size: 24px;
  }
}
.project-evaluation-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .project-evaluation-title {
    font-size: 28px;
  }
}
.project-public-button-layout {
  display: flex;
  gap: 10px;
}
.project-creation-meerkat {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}
.reponses {
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.reponses .stack-user-id {
  margin-top: 7px;
}
.small-margins {
  margin-top: 10px;
  margin-bottom: 10px;
}
.nav-meerkat-classic-spacer {
  padding-top: 120px;
}
@media (min-width: 768px) {
  .nav-meerkat-classic-spacer {
    padding-top: 165px;
  }
}
.register-spacer {
  padding-top: 97px;
}
@media (min-width: 768px) {
  .register-spacer {
    padding-top: 140px;
  }
}
.portfolio-create-button {
  display: flex;
  justify-content: center!important;
}
@media (min-width: 768px) {
  .portfolio-create-button {
    justify-content: start!important;
    margin-top: 6%;
  }
}
.portfolio-create-button .btn {
  min-width: 200px;
  text-align: center;
}
/** Media / Document - Overlay **/
#media-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.media-overlay {
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
}
.media-block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: #393939 solid 1px;
  margin: 0;
}
.media-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
    background: #808080; width: 5px;
    */
}
.media-centered {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
.media-box {
  position: relative;
  width: 100%;
  margin: 0;
}
.media-close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #FFB72e;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  color: #000;
  line-height: 35px;
  font-size: 14px;
  z-index: 9999;
}
#media-close-btn:hover {
  background: #FFF;
  cursor: pointer;
}
#media-box iframe {
  width: 100%;
  min-height: 600px;
}
#media-box img {
  width: 100%;
}
.user-tokens {
  margin-left: 30px;
  padding-top: 5px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .user-tokens {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/*style for exemples of section - specific section - bootstrap sections */
body {
  font-family: "Poppins";
  font-size: 1rem;
  background-color: grey;
  color: white;
  overflow-x: hidden;
}
.container,
.container-fluid {
  /* correct - reset  bootstrap margin/padding*/
  padding: 0;
}
.responsive-image img {
  max-width: 100%;
  max-height: 100%;
}
.display-inline {
  display: inline-block;
}
a {
  text-decoration: none;
}
h2 {
  font-size: 20px;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 24px;
  }
}
hr {
  border: none;
  border-top: 1px solid #837B6A;
  overflow: visible;
  /* text-align: center; */
  /* height: 5px; */
  margin-left: 30px;
  margin-right: 30px;
}
.logo-user-container {
  width: 100px;
  height: 100px;
}
@media (min-width: 768px) {
  .logo-user-container {
    width: 165px;
    height: 165px;
  }
}
.logo-user {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 80px;
}
/* USEFUL HELPERS ( center and padding / margin ) */
.top-space15 {
  margin-top: 15px;
}
.top-space30 {
  margin-top: 30px;
}
.bottom-space15 {
  margin-bottom: 15px;
}
.bottom-space30 {
  margin-bottom: 30px;
}
.vertical-space60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.bottom-padding {
  padding-bottom: 30px;
}
.top-padding {
  padding-top: 30px;
}
.light-margin15 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.light-padding15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding30 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.remove-top-margin {
  margin-top: 0px;
}
.uppercase {
  text-transform: uppercase;
}
section {
  /* remove section margin */
  margin: 0;
}
.mobile-margin {
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .mobile-margin {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
input::-webkit-calendar-picker-indicator {
  display: none !important;
}
