@charset "UTF-8";@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,700&display=swap");

body{
    background-color: black;
}

body.modal-open {
  overflow: hidden;
}

.bu-container {
    font-family: 'Rubik', sans-serif;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center !important;
    transition: max-height 1s ease-in-out;
    position: relative; /* Ajouter position relative à la div parente */
}

.bu-titre {
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.bu-titre h2{
    font-family: 'Rubik', sans-serif;
}

.bu-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.bu-tooltip .bu-tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    /* bottom: -40px; */
    right: 125%; /* Positionne le tooltip à gauche du texte */
    margin-left: 0; /* Réinitialise la marge gauche */
    margin-right: 10px; /* Ajoute une marge à droite pour l'espace entre le texte et le tooltip */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    transform: translateX(10%);
    z-index:99999999 !important;
}

.bu-tooltip .bu-tooltiptext.active {
    visibility: visible;
    opacity: 1;
    width: 70px; 
    padding: 3px; 
    margin-right: 0px; 
    right: 7px;
    /* bottom: -43px; */
}

/* .bu-tooltip .bu-tooltiptext:not(.bu-tooltip-top)::before {
  content: "";
  position: absolute;
  bottom: 100%; 
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;

} */


.bu-tooltip .bu-tooltiptext.bu-tooltip-top.active {
  visibility: visible;
  position: absolute;
  opacity: 1;
  width: 200px; 
  padding: 3px; 
  /* bottom: 50px; */
  top: -30px;
  transform: translateX(70%);
}

span .libelle-question {
    font-size: 20px;
}

  a.link-composant {
    color: black;
  }

  #pagination {
    margin-top: 10px;
    text-align: center;
  }


.bu-type-utilisation{
  padding-right: 3px;
  border-bottom: 1px solid #ccc !important;
}

.delete-button {
    border-bottom: 1px solid #ccc !important;
}

.delete-button .trash-icon {
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
    fill: red;
    cursor: pointer;
    transition: transform 0.3s;
}

.delete-button .trash-icon:hover {
    transform: scale(120%);
}

.edit-button {
  margin-right: 3px;
}

.edit-button .edit-icon {
  width: 23px;
  height: 23px;
  margin-bottom: -4px;
  cursor: pointer;
  transition: transform 0.3s;
}

.edit-button .edit-icon:hover {
  transform: scale(120%);
}

.alert-consommable {
  background-color: #bfd5ff;
  border: 1px solid #90b7ff;
  padding: 15px;
  margin: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.alert-consommable h2 {
  font-family: 'Rubik', sans-serif;
  color: #2872fa;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.alert-consommable p {
  font-size: 14px;
  margin-bottom: 5px;
}

.alert-consommable a {
  color: #2872fa;
  text-decoration: none;
  font-weight: bold;
}


@media screen and (max-width: 1024px) {

  .bu-container {
    display: block;
  }

}

@media screen and (max-width: 985px) {

  .tableau-container {
    overflow: auto;
  }

}




#build-upgrader-form {
  width: 1100px;
}

.bu-entete-build {
  display: flex;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-align: left;
  margin-bottom: -15px;
}

.container-build-upgrade {
  display: flex; /* Make the container a flexbox */
  margin-top: 40px;
}

.list-composants {
  flex: 2; /* Prend 2 parts de l'espace disponible */
  padding: 10px;
}

.recap {
  flex: 1; /* Prend 1 part de l'espace disponible */
  padding: 10px;
}

.recap-list-composants {
  display: flex;
  margin-top: 10px;
  padding: 10px;
  flex-direction: column;
  text-align: left;
  max-height: 200px;
  transition: max-height 0.5s, transform 0.3s ease-in-out;
  /* transition: max-height 0.5s, transform 0.3s ease-in-out; */
  overflow: visible;
}

.recap-list-composants.expanded {
  max-height: 600px;
}

.recap-composant {
  display: flex;
  border-bottom: solid 1px #ccc;
}

.recap-composant.hidden {
  display: none;
}


.recap-composant-compatibility-check {
  width: 10px;
  margin-right: 5px;
  fill:#777777;
}

.recap-composant-name {
  font-size: 16px;
}

.recap-composant-price {
  text-align: right;
  margin-left: auto;
  font-weight: 500;
  min-width: 65px;
}

.recap-separator {
  text-align: center;
  width: 90%;
  border-bottom: solid 1px #ccc;
}

#bu-show-more {
  font-family: 'Rubik', sans-serif;
  margin-top: -10px;
}

#bu-show-more .arrow {
  display: inline-block; /* Nécessaire pour l'animation */
  transition: transform 0.3s ease-in-out;
}

#bu-show-more.expanded .arrow {
  transform: rotate(180deg);
}

.list-title {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-align: left;
  margin-top: -37px;
}

.list-title-2 {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-align: left;
  margin-top: 20px;
}

.composant-upgrade {
  position: relative;
  display: flex;
  margin-top: 15px;
  padding: 10px;
  background-image: linear-gradient(to right, #fff 70%, #eee);
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.composant-upgrade:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}


.composant-upgrade img {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: contain;
}

.display-composant-not-selected {
  display: flex;
  width: 100%;
  align-items: center;
}

.display-composant-selected {
  display: flex;
  width: 100%;
  align-items: center;
}

.infos-composant {
  text-align: left;
}

.infos-composant .title-composant-upgrade {
  margin-bottom: -3px;
}

.infos-composant-upgrade {
  font-size: 14px;
  font-weight: 400;
}

.delete-composant-selected {
  position: relative;
  margin-left: -20px;
  top: -32px;
  left: 20px;
  width: 20px;
  height: 20px;
  padding: 1px;
  background-color: red;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  fill: white;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* .display-composant-selected .price {
  color: #2872fa;
} */

.title-composant-upgrade {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.price {
  margin-top: 10px;
  margin-left: auto;
  font-size: 20px;
  font-weight: 500;
  align-items: center;
}

.img-btn-add-composant-upgrade {
  width: 30px;
  margin-left: auto;
}

.selected-composant {
  border: solid 1px #3264fe;
  margin-top: 13px;
}


.container-loading {
  display: flex;
  position: absolute;
  background-color: #aaaaaa50;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.loading-composant {
  border: 5px solid #f5f5f5; /* Couleur de bordure */
  border-top: 5px solid #2872fa; /* Couleur de la partie animée */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  z-index: 99;
}

.container-recap {
  top: 20px;
  position: sticky;
}

.recapitulatif {
  margin-top: 15px;
  padding: 10px;
  /* background-image: linear-gradient(110deg, #fff 70%, #eee); */
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.title-recap {
font-size: 22px;
font-weight: 600;
margin-bottom: 10px;
}

.recapitulatif .title-budget {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.bu-name-setup {
  border-bottom: 1px solid #ccc !important;
}

.container-name-setup {
  display: flex;
}

.recap-total {
  text-align: right;
}

.title-total {
  font-size: 18px;
  font-weight: 500;
}

.container-btn-recap {
  margin-top: 20px;
  display: flex;
  justify-content: space-between; /* Espace entre les éléments */
  align-items: center; /* Centrer verticalement si nécessaire */
}

.content-btn-left {
  display: flex; /* Assurez-vous que les boutons à l'intérieur s'affichent correctement */
}

.content-btn-right {
  display: flex; /* Assurez-vous que les boutons à l'intérieur s'affichent correctement */
  justify-content: flex-end; /* Aligne les boutons à droite */
}

.recap-btn {
  display: inline-flex;
  background-color: rgb(245, 245, 245);
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  cursor: pointer;
  margin-right: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.recap-btn:hover {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.icon-save {
  width: 25px;
  transition: fill 0.3s, opacity 0.3s;
}

.recap-btn:hover .icon-save {
  fill: #3264fe;
}

.icon-check {
  fill: #3264fe;
}

.icon-trash {
  width: 25px;
  color: black; /* Couleur par défaut */
  transition: color 0.3s;
}

.recap-btn:hover .icon-trash {
  color: #ff2525;
}

#share-build {
  margin-right: 0px;
}

.icon-share {
  width: 25px;
  transition: fill 0.3s, opacity 0.3s;
}

.recap-btn:hover .icon-share {
  fill: #009c00;
}

.icon-folder {
  width: 25px;
  transition: fill 0.3s, opacity 0.3s;
}

.recap-btn:hover .icon-folder {
  fill: #3264fe;
}

.error-recap {
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  color: red;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.error-recap.active {
  opacity: 1;
  margin-top: 15px;
  max-height: 100px;
}

.action {
  margin-top: 15px;
  padding: 10px;
  /* background-image: linear-gradient(110deg, #fff 70%, #eee); */
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s, max-height 0.5s ease-in-out, height 0.5s ease-in-out;
  max-height: initial; /* Initial state */
}

.icon-action-btn {
  width: 24px;
  height: 24px;
  fill: black;
  margin-left: 5px;
  margin-top: 5px;
}

.img-action-btn {
  width: 24px;
  height: 24px;
  margin-left: 5px;
  filter: invert(100%);
}

.btn-tab-action {
  display: flex;
  margin-top: 5px;
  gap: 10px
}

.tab-action-content {
  display: none;
  padding: 5px;
}

.tab-action-content.active {
  display: block;
  margin-top: -10px;
  background-color: #ffffff;
  /* height: 260px; */
  padding: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

.action-btn-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-button-font-family, var(--theme-font-family));
  font-weight: var(--theme-button-font-weight);
  background-color: #f3f3f3;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 4px;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
  transition: background-color 0.3s;
  
}

.action-btn-tab.active {
  background-color: #ffffff;
  box-shadow: 0px -3px 4px rgba(0, 0, 0, 0.2);
}

.action.result-test {
  max-height: 1000px; /* Adjust the maximum height as needed */
  height: 500px;
}

#resultat-test-compatibility {
  text-align: center;
  align-items: center;
  max-height: 0;
  opacity: 0;
  transition: max-height 1s, opacity 0.5s, padding-top 0.5s, height 1s ease-in-out;
}

#resultat-test-compatibility.active {
  max-height: 100px; /* Hauteur maximale du select */
  opacity: 1;
}

#resultat-test-compatibility .title-result-compatibility {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#resultat-test-compatibility .title-result-compatibility.error {
  font-size: 16px;
  font-weight: 400;
  color: red;
  margin-bottom: 20px;
}

#resultat-test-compatibility .list-result-compatibility {
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

#resultat-test-compatibility .preview-result-compatibility {
  display: flex;
}

#resultat-test-compatibility .description-result-compatibility {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}

#resultat-test-compatibility .icon-result-compatibility {
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

#resultat-test-compatibility .icon-error-eye {
  margin-top: 15px;
  width: 25px;
  height: 25px;
}

#resultat-test-compatibility .icon-error-eye:hover {
  fill: #3264fe;
  cursor: pointer;
}

#resultat-test-compatibility .separator-result-compatibility {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 90%;
  border-bottom: solid 1px #aaa;
}

#resultat-test-performance {
  text-align: center;
  align-items: center;
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  transition: max-height 2s;
}

#resultat-test-performance.active {
  max-height: 1000px;
}

#resultat-test-performance .title-result-performance {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.container-loader-result-compatibility {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-result-performance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  transition: max-height 2s;
}

.title-commentaire-score {
  font-size: 19px;
  font-weight: 600;
}

.description-commentaire-score {
  font-size: 15px;
}

.score-result-performance {
  display: flex;
  justify-content: center;
}


.description-result-performance {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  font-size: 14px;
  text-align: left;
}

.description-result-performance span {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}

.percent
{
  width:120px;
  height:120px;
  position:relative;
}
.percent svg
{
  width:120px;
  height:120px;
  position:relative;
}
.percent svg circle
{
  width:100px;
  height:100px;
  cx: 50;
  cy: 50;
  r: 50;
  fill:none;
  stroke-width:7;
  stroke:#000;
  transform:translate(5px,5px);
  stroke-dasharray:311;
  stroke-linecap:round;
}
.percent svg circle:nth-child(1)
{
  stroke-dashoffset:0;
  stroke:#f3f3f3;
}
.percent svg .score-circle
{
  transform: rotate(-90deg);
  transform-origin: 55px 50px;
  stroke-dashoffset:calc(311 - (311 * 0) / 100);
  stroke: #2872fa;
  transition: stroke-dashoffset 2s;
}

.percent .num
{
  top: -3px;
  left: -5px;
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:absolute;
  color:#111;
}
.score
{
  font-size:38px;
  font-weight: 600;
}



/* .circular-progress {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 20px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 100);
  animation: progress-animation 2s linear 0s 1 forwards;
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: #ddd;
}

.circular-progress circle.fg {
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear 0s;
  stroke: #5394fd;
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }
  to {
    --progress: 80;
  }
} */


.loader-result-compatibility {
  border: 5px solid #f3f3f3; /* Couleur de bordure */
  border-top: 5px solid #2872fa; /* Couleur de la partie animée */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

.expand-probleme {
  opacity: 1;
  text-align: left;
  font-size: 14px;
  margin-top: 10px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.expand-probleme.active {
  max-height: 200px;
}

.expand-probleme .solution-probleme {
  margin-top: 10px;
}

.container-btn-action {
  text-align: left;
}

.action-btn {
  margin-bottom: 10px;
  width: 100%;
}

.btn-select-composant-active {
  display: flex;
}

#gen-launch-research {
  width: 85%;
  margin-right: 5px;
}

#gen-cancel-research {
  fill: white;
  width: 13%;
  padding: 0px;
}

/* .btn-select-composant-active .action-btn {
  padding: 5px;
  margin-right: 5px;
} */


.bu-modal {
  align-items: center;
  display: none;
  position: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  z-index: 999;
}

.bu-modal-content {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: #fefefe;
  margin: 5% auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 1100px;
  height: 700px;
}

.bu-modal-titre {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
}


#modal-select-composant {
  align-items: center;
  display: none;
  position: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  gap: 30px;
  z-index: 999;
}

#modal-select-composant .bu-modal-content {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: #fefefe;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 6%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 1100px;
  height: 700px;
}

#modal-select-composant .bu-modal-titre {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
}

#modal-select-composant .bu-modal-content-bis {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: rgb(247, 247, 247);
  margin-top: 5%;
  margin-bottom: 5%;
  margin-right: 6%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 500px;
  height: 700px;
  overflow-y: scroll;
}


.bu-modal-content-bis .bu-modal-container-img {
  width: 400px; /* Définissez une largeur fixe */
  height: 400px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2) !important;
  border-radius: 12px !important;
  background-color: white;
  overflow: hidden;
  margin: 20px auto; /* Centre horizontalement et ajoute une marge verticale */
  display: flex; /* Active Flexbox */
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
}

.bu-modal-content-bis .bu-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bu-modal-loader-detail {
  display: flex;
  flex-direction: column; /* Empile les éléments verticalement */
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  margin-top: 40px;
  gap: 10px; /* Ajoute un espace entre le loader et le texte */
}

.loader-detail {
  border: 5px solid #f3f3f3; /* Couleur de bordure */
  border-top: 5px solid #2872fa; /* Couleur de la partie animée */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

.bu-modal-titre-description-detail {
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  padding-left: 20px;
}

.bu-modal-description-detail {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}


.bu-modal-description-detail .container-detail {
  font-family: 'Rubik', sans-serif;
  display: flex;
  padding: 15px;
  background-color: white; /* Couleur par défaut */
  border-radius: 10px;
  gap: 20px;
}

.bu-modal-description-detail .container-detail:nth-child(even) {
  background-color: rgb(247, 247, 247); 
}

.container-detail .titre-detail {
  flex: 1;
  text-align: left;
  width: 120px;
  font-weight: 500;
  font-size: 16px;
}

.container-detail .description-detail {
  flex: 2;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}


.container-info-build {
  display: flex;
  margin-bottom: -5px;
}

.bu-select2-form {
  margin-bottom: 20px;
}

.select-type-utilisation{
  flex: 1;
  padding-right: 10px;
}

.budget{
  flex: 2;
}

#type-utilisation-selection {
  width: 160px;
}

#bu-input-budget {
  height: 28px;
  border: 1px solid #aaa;
  text-align: right;
  padding-right: 20px;
}


.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  display: block;
  transform: translate(0, -50%);
  top: 29%;
  pointer-events: none;
  width: 25px;
  text-align: center;
	font-style: normal;
}

.input-icon-right > i {
  right: 0;
}


.container-select-modal {
  display: flex;
  margin-top: 20px;
  text-align: left;
  margin-bottom: -20px;
}

.filter-container {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.container-prix-filter {
  display: flex;
  gap: 10px;
}

#bu-input-prix-min, #bu-input-prix-max {
  /* width: 100px; */
  background-color: #f5f5f5;
  border: none;
  padding-right: 25px;
  text-align: right;
  color: black;
  font-weight: 400;
}

.input-icon-filter > i{
  margin-top: 8px;
  color: black;
}


.js-select2-checkbox {
  width: 250px;
}


.filter-container .select2-container {
  height: 70px !important;
}


.filter-container .select2-selection {
  border: none !important;
  background-color: #f5f5f5 !important;
  height: 40px !important;
}

.filter-container .select2-selection__rendered {
  margin-top: 0px !important;
}

.filter-container .select2-search__field {
  margin-top: 0px !important;
}

.filter-container .select2-selection__choice {
  height: 30px;
  line-height: 30px;
  top: 5px !important;
  /* padding-right: 10px !important;
  padding-left: 10px !important;
  padding-top: 2px !important;
  background-color: #2872fa !important;
  color: white !important; */
  padding-right: 0px !important;
  padding-left: 0px !important;
  padding-top: 0px !important;
  background-color: #f5f5f5 !important;
  color: #000 !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-right: 0px !important;
}

/* Croix supprimer option */
.custom-select2-options.select2-dropdown {
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: 1px solid #e2e2e2 !important;
/* margin-top: -30px!important; */
}

.select2-selection__choice__remove {
  display: none !important;
}

.custom-select2-options .select2-results__option {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  background-color: #f5f5f5 !important;
}



.custom-select2-options-single .select2-results__option {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  padding-top: 2px !important;
  padding-bottom: 2px !important;

}

.custom-select2-options-single .select2-search__field {
  height: 29px !important;
  /* width: 150px !important; */
}



.custom-select2-options .select2-results__option:before {
  content: "";
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border: 1px solid #2872fa;
  border-radius: 4px;
  background-color: #f5f5f5;
  margin-right: 10px;
  vertical-align: middle;

}

.custom-select2-options .select2-results__option[aria-selected=true]:before {
  font-family:fontAwesome;
  font-size: 11px;
  content: "\f00c";
  color: #fff;
  background-color: #2872fa;
  border: 0;
  display: inline-block;
  padding-left: 2px;
}

.custom-select2-options .select2-results__option--highlighted[aria-selected] {
  background-color: #f5f5f5 !important;
  color: black !important;
}

.custom-select2-options .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5 !important;
}



table.dataTable tbody tr:hover {
  background-color:#e2e2e2 !important;
}

table.dataTable {
  border: none !important;
}

table.dataTable thead > tr > th {
  background-color: rgb(247, 247, 247) !important;
}

table.dataTable thead > tr > th:first-child { border-top-left-radius: 10px; }
table.dataTable thead > tr > th:last-child { border-top-right-radius: 10px; }

table.dataTable thead > tr > th span.dt-column-order::before,
table.dataTable thead > tr > th span.dt-column-order::after {
  color: #2872fa;
}

table.dataTable>tbody>tr>td:first-child {
  background-color: white !important;
}

#myTable tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#myTable tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#myTable tbody tr td, 
#myTable thead tr th {
  border: none !important;
}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
/* Assurez-vous que l'overlay est au-dessus des autres éléments */
}

.loader {
  border: 5px solid #f3f3f3; /* Couleur de bordure */
  border-top: 5px solid #2872fa; /* Couleur de la partie animée */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg);
}
}


/* Style de la modal */
.bu-modal-user-connection {
  align-items: center;
  display: none;
  position: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  z-index: 9999999;
}

.bu-modal-user-connection-content {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: #fefefe;
  margin: 25% auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 500px;
  height: 180px;
}

.bu-modal-user-connection-titre {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 24px;
}


.bu-modal-delete-build {
  align-items: center;
  display: none;
  position: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  z-index: 9999999;
}

.bu-modal-delete-build-content {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: #fefefe;
  margin: 14% auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 500px;
  height: 170px;
}

.bu-modal-delete-build-titre {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 24px;
}


.bu-modal-load-build {
  align-items: center;
  display: none;
  position: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  z-index: 9999999;
}

.bu-modal-load-build-content {
  font-family: 'Rubik', sans-serif;
  text-align: center;
  background-color: #fefefe;
  margin: 14% auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 7px;
  width: 1000px;
  height: 350px;
}

.bu-modal-load-build-titre {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 24px;
}


.popup-load-build-erreur {
  display: none;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  color: red;
  transition: margin-top 0.5s ease-in-out;
}

.popup-load-build-erreur.active {
  display: block;
  opacity: 1;
  margin-top: -25px; 
  margin-bottom: 5px;
  max-height: 20px;
}


.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  margin-top: 5px;
  padding-left: 5px;
  transition: transform 0.5s ease-in-out; /* Adjust transition duration and easing as needed */
  /* mask-image: repeating-linear-gradient(to right, transparent 20%, black 20%, black 50%, transparent 100%); */
}

.card-build {
  width: 310px;
  height: 150px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  display: flex; /* Make card-build a flex container */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  transition: transform 0.5s, opacity 0.3s ease-in-out;
}

.card-build-default {
  display: flex; /* Make card-build a flex container */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
}

.card-build.next-card {
  transform: scale(0.9);
  /* mask-image: linear-gradient(to right, black 50%, transparent); */
}

.card-build.prev-card {
  transform: scale(0.9);
  /* mask-image: linear-gradient(to left, black 50%, transparent); */
}

.card-build.fade-out {
  transform: scale(0.9);
  opacity: 0;
}

.card-build-container-img {
  flex: 1;
  padding: 10px;
}

.card-build-container-infos {
  flex: 2;
  display: flex;
  flex-direction: column;

}

.card-build-img {
  width: 110px;
}

.card-build-title {
  font-size: 18px;
  font-weight: 600;
}

.card-build-info {
  font-size: 14px;
  font-weight: 400;
}

.card-build-container-btn {
  display: flex;
  padding: 5px;
  margin-top: 5px;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
}

.card-build-btn {
  display: inline-flex;
  background-color: rgb(245, 245, 245);
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  padding: 4px 15px;
  cursor: pointer;
  margin-right: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.card-build-btn:hover {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.card-build-btn .icon-trash {
  height: 25px;
  transition: fill 0.3s, opacity 0.3s;
}

.card-build-btn:not(.disabled):hover .icon-trash {
  fill: red;
}

.card-build-btn .icon-duplicate {
  height: 25px;
  transition: fill 0.3s, opacity 0.3s;
}

.card-build-btn:not(.disabled):hover .icon-duplicate {
  fill: #009c00;
}

.card-build.disabled {
  cursor: default;
}


.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #333;
  transition: transform 0.3s;
}

.prev-btn {
  left: 0;
  width: 40px;
  fill: black;
}

.next-btn {
  right: 0;
  width: 40px;
  fill: black;
}

.prev-btn:hover, .next-btn:hover {
  transform: scale(1.1) translateY(-48%);
}

.new-build .card-build-default {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  transition: opacity 0.3s;
}

.icon-plus {
  width: 75px;
  transition: transform 0.3s;
}

.new-build.active .card-build-default:hover .icon-plus {
  transform: scale(1.1);
}

.card-build-validation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-build-validation-title {
  font-size: 14px;
}

.card-build-validation-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-icon {
  /* Styles pour l'icône de coche */
  width: 80px;
  height: 80px;
  margin-right: 30px;
  fill: #2872fa;
  transition: transform 0.3s;
}

.card-build.active .check-icon:hover {
  transform: scale(1.1);
}

.separator {
  width: 2px;
  height: 80px; /* Ajustez la hauteur en fonction de la taille de vos icônes */
  background-color: #ccc; /* Couleur de la ligne de séparation */
}

.cross-icon {
  /* Styles pour l'icône de croix */
  width: 80px;
  height: 80px;
  margin-left: 30px;
  fill: #d7d7d7;
  transition: transform 0.3s;
}

.card-build.active .cross-icon:hover {
  transform: scale(1.1);
}




.bu-slider-filter .slider{
  width: 250px;
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.bu-slider-filter .slider .progress{
  height: 100%;
  position: absolute;
  border-radius: 5px;
  background: #3264fe;
}

.bu-slider-filter .range-input {
  position: relative;
}

.bu-slider-filter .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.bu-slider-filter input[type="range"]::-webkit-slider-thumb{
  height: 17px;
  width: 17px;
  left: 20px;
  border-radius: 50%;
  background: #3264fe;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.bu-slider-filter input[type="range"]::-moz-range-thumb{
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #3264fe;
  pointer-events: auto;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Style des valeurs affichées */
.bu-slider-filter .value-min, .value-max {
  position: absolute;
  /* background-color: #3264fe; */
  color: #3264fe;
  /* padding: 2px 5px; */
  font-size: 14px;
  font-weight: 500;
  /* border-radius: 4px; */
  /* white-space: nowrap; */
  pointer-events: none;
  transform: translateX(-50%);
}

.bu-slider-filter .value-min {
  top: -35px;
}

.bu-slider-filter .value-max {
  bottom: -30px;
}


.container-slider {
  margin-top: 18px;
  width: 240px;
  margin-left: 5px;
  margin-right: 23px;

}

    /* Styles CSS pour le slider */
    .noUi-target {
      background: #ddd; /* Couleur de fond du slider */
      border: none !important; /* Bordure du slider */
      border-radius: 4px; /* Coins arrondis */
      height: 6px !important;
      box-shadow: none !important;
  }

  .noUi-tooltip {
    border: none;
    background: none;
    padding: 0px;
    color: #3264fe;
    font-size: 14px;
    font-weight: 500;
  }


/* Tooltip de la première poignée (Min) -> En haut */
.range-slider .noUi-handle-lower .noUi-tooltip {
  /* left: 0px; */
  bottom: 120%; /* Place au-dessus de la poignée */
  top: auto;
}

/* Tooltip de la deuxième poignée (Max) -> En bas */
.range-slider .noUi-handle-upper .noUi-tooltip {
  /* right: 0px; */
  top: 120%; /* Place en dessous de la poignée */
  bottom: auto;
}

  .range-slider .noUi-connect {
      background: #3264fe; /* Couleur de la partie sélectionnée */
  }

  .range-slider .noUi-handle {
      background: #3264fe; /* Couleur des poignées */
      border: 3px solid #3264fe; /* Bordure des poignées */
      border-radius: 50%; /* Poignées rondes */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombre des poignées */
      width: 15px; /* Ajuster la largeur des poignées si nécessaire */
      height: 15px; /* Ajuster la hauteur des poignées si nécessaire */
      right: -10px;
      top: -5px;
      cursor: pointer;
  }

  .range-slider .noUi-handle:active {
    background: white; /* Change la couleur de fond en blanc pendant le clic */
    border: 3px solid #3264fe; /* Garde la bordure */
}

  .range-slider .noUi-handle:after,
  .range-slider .noUi-handle:before {
      display: none; /* Supprime les pseudo-éléments par défaut */
  }




  .bu-modal-buy-build {
    align-items: center;
    display: none;
    position: fixed;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 9999999;
  }
  
  .bu-modal-buy-build-content {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    background-color: rgb(242, 242, 242);
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 7px;
    width: 1300px;
    height: 800px;
    margin-top: 4%;
  }
  
  .bu-modal-buy-build-titre {
    font-size: 28px;
    margin-top: 5px;
    margin-bottom: 5px;
  }


  .bu-tabs {
    display: flex;
    justify-content: left;
    margin-left: 20px;
    /* margin-bottom: 20px; */
  }
  
  .bu-tablinks {
    font-family: 'Rubik', sans-serif;
    background-color: #eaeaea;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
    transition: background-color 0.3s;
  }
  
  .bu-tablinks.active {
    background-color: #ffffff;
    font-weight: bold;
    /* border-bottom: 2px solid #0073aa; */
  }
  
  .bu-tabcontent {
    margin-left: 5px;
    padding-left: 15px;

    height: 660px;
    display: none;
    text-align: left;
  }
  
  .bu-tabcontent.active {
    background-color: #ffffff;
    display: block;
    border-radius: 10px;
  }

  .container-container {
    padding-top: 15px;
  }

  .container-list-component-merchants {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 630px;
    overflow-y: scroll;
    padding-right: 15px;
    padding-left: 10px;
    border-radius: 10px;
  }

  .container-component-merchants{
    display: flex;
    background-color: rgb(255, 255, 255);
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px  rgba(0, 0, 0, 0.2);
    /* margin-left: 10px */
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); */
  }

  .container-component-merchants:first-child{
    margin-top: 5px
  }

  .container-component-merchants:last-child{
    margin-bottom: 10px
  }

  .info-component-merchant {
    display: flex;
    width: 180px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .container-image-component-mechant {
    width: 100px;
    /* max-height: 100px; */
    background-color: white;
    border-radius: 10px;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container-image-component-mechant img {
    max-height: 100px;
  }

  .name-component-merchant {
    max-width: 125px;
    margin-top: 5px;
  }

  .type-component-merchant {
    text-align: left;
    font-weight: 500;
  }
  
  .container-merchant {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    margin: auto;
  }

  .merchant-info {
    display: flex;
    gap: 170px;
    width: 100%;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
  }

  .container-merchant .merchant-info:nth-child(odd) {
    background-color: rgb(242, 242, 242);
  }

  .container-merchant .merchant-info:last-child:nth-child(even) {
    padding-bottom: 0px;
  }

  .container-image-merchant {
    max-width: 120px;
    max-height: 80px;
  }



  



  .container-list-merchant {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .container-merchant {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    width: 100%;
  }
  
  .merchant-info {
    display: grid;
    grid-template-columns: 100px 180px 100px 100px;
    align-items: center;
    gap: 170px;
    padding: 10px;
    border-radius: 8px;
  }
  
  .container-merchant .merchant-info:nth-child(odd) {
    background-color: rgb(242, 242, 242);
  }
  
  .merchant-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* .merchant-logo {
    flex: 1;
    max-width: 100px;
  } */
  
  .merchant-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }
  
  /* .merchant-availability {
    flex: 1;
    justify-content: center;
  } */
  
  .label-availability-merchant {
    padding: 4px 10px;
    background-color: #57b957;
    border-radius: 5px;
    color: white;
    font-weight: 500;
  }
  
  .label-availability-merchant.out-of-stock {
    background-color: #dc3545; /* Rouge pour indiquer la rupture de stock */
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
  }

  .merchant-price {
    flex: 1;
    font-weight: 500;
    justify-content: right;
    font-size: 1rem;
  }
  
  .merchant-buy {
    flex: 1;
    justify-content: flex-end;
  }
  
  .btn-buy {
    background-color: #2d6cdf;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .merchant-info {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .merchant-col {
      width: 100%;
      justify-content: space-between;
    }
  
    .merchant-logo img {
      max-height: 40px;
    }
  }



/* Style commun pour les placeholders */
.placeholder-merchant-logo,
.placeholder-merchant-availability,
.placeholder-merchant-price,
.placeholder-merchant-buy {
    background-color: #555555;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Effet miroir/relfét métallique */
.placeholder-merchant-logo::before,
.placeholder-merchant-availability::before,
.placeholder-merchant-price::before,
.placeholder-merchant-buy::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 300%;
    height: 300%;
    opacity: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    animation: shine 2s infinite;
    border-radius: 50%;
}

/* Animation de brillance/reflet */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Ajout de taille spécifique à chaque placeholder */
.placeholder-merchant-logo {
    width: 100px;
    height: 30px;
}

.placeholder-merchant-availability {
    width: 80px;
    height: 30px;
}

.placeholder-merchant-price {
    width: 60px;
    height: 20px;
}

.placeholder-merchant-buy {
    width: 100px;
    height: 30px;
}


.container-list-groups-merchants {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 630px;
  overflow-y: scroll;
  padding-right: 15px;
  padding-left: 10px;
  border-radius: 10px;
}

.container-groups-merchant {
  position: relative; /* Ajouté pour positionner le badge par rapport à ce conteneur */
  display: flex;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  margin-top: 41px;
}

.container-groups-merchant:last-child {
  margin-bottom: 50px;
}

.container-image-mechant {
  position: absolute;
  top: -34px; /* décalage vers le haut */
  left: 20px; /* décalage à gauche */
  height: 34px;
  background-color: white;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-image-mechant img {
  max-width: 100px !important;
  max-width: 80px !important;
}

.components-info {
  display: grid;
  grid-template-columns: 60px 297px 172px 100px 100px;
  align-items: center;
  gap: 100px;
  padding: 10px;
  border-radius: 8px;
}

.container-merchant .components-info:nth-child(odd) {
  background-color: rgb(242, 242, 242);
}

.container-merchant .components-info:last-child:nth-child(even) {
  padding-bottom: 0px;
}

.container-image-component-group {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  padding: 4px;
}

.container-image-component-group img {
  border-radius: 8px !important;
  object-fit: contain;
}


.container-total-mechant {
  position: absolute;
  bottom: -36px;
  right: 20px;
  width: 300px;
  background-color: white;
  padding: 5px 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-total-mechant {
  width: 150px;
}

.text-total-prix-mechant {
  width: 130px;
  margin-left: 15px;
}

.price-merchant {
  font-weight: 500;
  justify-content: right;
  font-size: 1rem;
}




.tab-loader {
  position: relative;
  top: -12px;
  left: -10px;
  height: 2px;
  background-color: #2872fa;
  width: 0;
  opacity: 0;
  transition: width 1.6s ease-out; /* durée animée ici */
}


.tab-loader-compatibility {
  position: relative;
  top: -12px;
  right: -162px;
  height: 2px;
  background-color: #2872fa;
  width: 0;
  opacity: 0;
  transition: width 3.5s ease-out; /* durée animée ici */
}


.test-perf-message {
  margin-top: 7px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgb(45 45 45);
  padding: 10px;
}

.test-perf-message b {
  font-weight: 500;
  color: #000000;
}

.reload-test {
  margin-right: 5px;
  margin-top: -10px;
  text-align: right;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgb(88, 88, 88);
  cursor: pointer;
}

.svg-reload-test {
  width: 13px;
  height: 13px;
}

.reload-test:hover {
  color: rgb(43, 43, 43);
}

.reload-test:hover .svg-reload-test {
  fill: rgb(43, 43, 43); /* couleur changée sur le hover */
}

.reload-test.reload-test-compatibility {
  margin-right: 0px;
  margin-top: 0px;
  text-align: center;
}

.upgrade-perf {
  margin-top: 7px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgb(88, 88, 88);
  cursor: pointer;
}

.result-upgrade-perf {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
}



.result-upgrade-perf h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.upgrade-tip {
  margin-bottom: 15px;
  padding: 12px;
  background: rgb(245, 245, 245);
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.upgrade-tip:last-child { 
  margin-bottom: 0;
}

.tip-number {
  font-weight: bold;
  color: #2872fa;
  font-size: 18px;
}

.tip-price {
  font-weight: bold;
  color: #2872fa;
  margin-left: auto;
  font-size: 17px;
  position: absolute;
  right: 30px;
}

.fps-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 10px;
}

#game-selection {
  width: 150px;
}

#game-quality-selection {
  width: 150px;
}

.container-perf-calculator {
  display: none;
}

.fps-card h4 {
  font-size: 1.2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fps-card .game-select {
  font-weight: bold;
  background: #f4f4f4;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

.fps-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fps-line {
  display: flex;
  justify-content: space-between;
  background: rgb(245, 245, 245);
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.fps {
  font-weight: bold;
  color: #2872fa;
}

.fps-options {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.fps-options label {
  font-family: 'Rubik', sans-serif;
  background: rgb(245, 245, 245);
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  user-select: none;
  height: 35px;
  margin: 0 !important;
}

.fps-options input {
  margin-right: 0.4rem;
}

.fps-score {
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* .fps-options label {
  font-family: 'Rubik', sans-serif;
  width: 65px;
  color: #535353;
  background: rgb(245, 245, 245);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  height: 35px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
} */



.score-block {
  margin-bottom: 24px;
}
.score-block:last-child {
  margin-bottom: 0px;
}
.score-row {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.score-modelisation {
  font-size: 18px;
  color: #2872fa;
}
.bar-wrapper {
  background: #eee;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.label-modelisation {
  margin-bottom: 5px;
}
.bar {
  height: 100%;
  width: 0%;
  background: #2872fa;
  transition: width 1s ease-out; /* durée animée ici */
}

.bar.cinebench-bar {
  background: #2872fa;
}

.bar.blender-bar {
  background: #2872fa; /* Couleur différente pour Blender */
}
.description-modelisation {
  font-size: 0.9rem;
}





.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.perf-block {
  background: rgb(245, 245, 245);
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.content-perf-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: black;
  font-weight: 500;
}

.icon {
  font-size: 18px;
}

.container-score {
  display: flex;
}

.score {
  color: #2872fa;
  font-size: 16px;
  font-weight: 700;
}

.badge {
  width: 100%;
  text-align: center;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9px;
}

.badge {
  transition: background-color 1s ease, color 1s ease;
}

.badge-very-fast {
  background-color: #bfdbfe;
  color: #1e40af;
}

.badge-fast {
  background-color: #bbf7d0;
  color: #166534;
}

.badge-avg {
  background-color: #FDE68A; /* Jaune */
  color: #92400E; /* Orange foncé */
}

.badge-slow {
  background-color: #FDBA74; /* Orange */
  color: #9A3412; /* Rouge foncé */
}

.badge-very-slow {
  background-color: #ffb0b0; /* Rouge */
  color: #B91C1C; /* Rouge très foncé */
}

.badge-pending {
  background-color: #adaaaa;
  color: #161616;
}






.container-add-storage {
  text-align: left;
  margin-left: 50px;
  display: block; /* Toujours block pour permettre l'animation */
  overflow: hidden; /* Important pour cacher le contenu quand réduit */
  max-height: 0px;
  transition: max-height 0.5s ease;
}

.container-add-storage.show {
  max-height: 30px; /* assez grand pour contenir l’élément */
}

.box-add-storage {
  /* background-color: rgb(177, 177, 177); */
  font-size: 13px;
  border-radius: 3px;
  padding: 3px 7px;
  cursor: pointer;
}

.arrow-add-storage {
  margin-top: -1px;
  width: 10px;
  height: 16px;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-bottom-left-radius: 4px;
}

.btn-add-storage:hover {
  color: black;
}




.tooltip-test-perf {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-test-perf .tooltiptext {
  visibility: hidden;
  font-size: 14px;
  font-weight: 400;
  width: 350px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  bottom: 31px;
  right: -80px;
  margin-left: 0;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 99999999 !important;
}


.tooltip-test-perf .tooltiptext b {
  font-weight: 500;
}

.tooltip-test-perf:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.tooltip-test-perf .icon-info-test-perf {
  width: 16px !important;
  height: 16px !important;
}




.test-compatibility-message {
  margin-top: 7px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgb(45 45 45);
  padding: 10px;
}

.test-compatibility-message b {
  font-weight: 500;
  color: #000000;
}



.error-perf {
  text-align: center;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  color: red;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.error-perf.active {
  opacity: 1;
  margin-top: 15px;
  max-height: 100px;
}


.error-compatibility {
  text-align: center;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  color: red;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.error-compatibility.active {
  opacity: 1;
  margin-top: 15px;
  max-height: 100px;
}


.dt-center {
  text-align: center;
}


.dt-right {
  text-align: right;
}
/* table.dataTable>tbody>tr>td {
  border: none !important;
} */


/* .delete {
  overflow: visible;
  position: relative;
  padding: 10px;
  border: 2px solid;
  border-radius: 10px;
  border-image: red;
  -webkit-mask: 
    conic-gradient(from 180deg at top 2px right 2px, red 90deg,red 0)
     var(--_i,200%) 0  /200% var(--_i,2px) border-box no-repeat,
    conic-gradient(at bottom 2px left  2px,  red 90deg,red 0)
     0   var(--_i,200%)/var(--_i,2px) 200% border-box no-repeat,
    linear-gradient(red 0 0) padding-box no-repeat;
  transition: .7s, -webkit-mask-position .7s .7s;
}

.delete-hovered {
--_i: 100%;
color: red;
transition: .7s, -webkit-mask-size .7s .7s;
}

.delete-button {
  background-color: white !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: -20px;
  left: 420px;
  z-index:99999999 !important;
}

.delete-button .trash-icon {
  width: 20px;
  height: 20px;
  fill: red;
}



.svg-wrapper {
position: relative;
margin: 0 auto;
width: 500px;
}
.shape1,
.shape2 {
stroke-dasharray: 1120;
stroke-width: 5px;
fill: transparent;
stroke: #19f6e8;
border-bottom: 5px solid black;
transition-timing-function: linear;
transition: stroke-dashoffset 4s, stroke-dasharray 4s;
}
.shape1 {
stroke-dashoffset: 1120;
}
.shape2 {
stroke-dashoffset: -1120;
}
.text {
font-family: 'Roboto Condensed';
font-size: 22px;
line-height: 32px;
letter-spacing: 8px;
color: #fff;
top: -48px;
position: relative;
}
.svg-wrapper:hover .shape1,
.svg-wrapper:hover .shape2 {
stroke-dashoffset: 0;
stroke-dasharray: 1120;
} */

