@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    overflow: hidden;
}

p {
    font-family: "Roboto Slab", serif;
    font-size: 19px;
    color: #4A4A4A;
    padding: 2px 0px 2px 0px;
}

.nav-link{
    color: white;
    border-radius: 4px;
    margin: 0px 5px 0px 5px;
}
.nav-link:hover{
    background-color: #0d6efd;
    color: white;
    cursor: pointer;
}

.container_scroll{
    overflow: scroll !important;
}

.select_metier, .select_persona {
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    box-shadow: 0 .4rem .8rem #0005;
    margin: 2px;
    display: none; /* Cacher la div par défaut */
    position: absolute; /* Position absolue */
    z-index: 2; /* Assurez-vous que la div est au-dessus des autres éléments */
    padding: 5px;
    font-size: 16px;
  }

.select_metier, .select_persona p:hover {
    background-color: #c4c4c4;
    cursor: pointer;
  }

 .result_metier{
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    margin: 2px;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    display: none; /* Masquer la div par défaut */
    font-size: 16px;
  }
  .result_metier:not(:empty) {
    display: block; /* Afficher la div si elle n'est pas vide */
  }

  .result_metier p{
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.45);
    border-radius: 5px;
    padding: 4px;
    margin-top: 2px;
    position: relative;
    font-size: 14px;
  }

.result_metier .fa-xmark {
    position: absolute; /* Définir la position absolue pour l'icône */
    top: 0; /* Aligner l'icône en haut */
    right: 0; /* Aligner l'icône à droite */
    font-size: 12px; /* Réduire la taille de la croix */
    opacity: 0.5; /* Rendre l'icône moins opaque */
    padding: 5px;
}

.result_metier .fa-xmark:hover {
  opacity: 1; /* Rendre l'icône moins opaque */
}

.image_blog_feature{
  width: 100%;
  border-radius: 8px;
  object-fit: cover; /* ou object-fit: contain; */
  transition: transform 0.2s ease; /* Ajouter une transition pour une animation fluide */
}

.image_blog_feature:hover{
  cursor: pointer;
  box-shadow: 0 .2rem .4rem rgba(75, 117, 201, 0.759);
  transform: scale(1.2); /* Grossir l'icône de 0.2% au survol */
}

.bouton_article:hover {
  transition: transform 0.2s ease; /* Ajouter une transition pour une animation fluide */
}

.bouton_article:hover {
  cursor: pointer;
  box-shadow: 0 .2rem .4rem rgba(75, 117, 201, 0.759);
  transform: scale(1.2); /* Grossir l'icône de 0.2% au survol */
}













/* Gestion du bouton Switch */

  .switch {
    display: inline-block;
    height: 30px;
    position: relative;
    width: 60px;
  }

  .switch input {
    display:none;
  }

  .slider_checkbox {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    transition: .4s;
    width: 42px;
    height: 25px;
    box-shadow: #c9cfd7 0px 0px 10px;
  }

  .slider_checkbox:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .2s;
    width: 20px;
  }

  input:checked + .slider_checkbox {
    background-color: #66bb6a;
  }

  input:checked + .slider_checkbox:before {
    transform: translateX(15px);
  }

  .slider_checkbox.round {
    border-radius: 34px;
    margin: 0 auto; /* Centre l'image horizontalement */
  }

  .slider_checkbox.round:before {
    border-radius: 50%;
  }






  .circle-svg {
    display: block;
    margin: 2px auto;
    max-height: 45px;
  }
  .circle-svg text {
    text-align:center;
    color:black;
  }
  .circle-svg path.percent {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
  }
  .circle-svg path.around {
      stroke: #c4c4c4;
      fill: none;
      stroke-width: 2.8;
  }








/*
#--------------------------------------------------------------------------------------#
#--------------------------------- Gestion des backlink -------------------------------#
#--------------------------------------------------------------------------------------#
*/

/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 300px;
}

input[type="range"]:hover {
  opacity: 1;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #bcc8dc;
  border-radius: 8px;
  height: 8px;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  background-color: #3273dc;
  border-radius: 34px;
  height: 16px;
  width: 16px;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid #3273dc;
  outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #bcc8dc;
  border-radius: 8px;
  height: 8px;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #3273dc;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 34px;
  height: 16px;
  width: 16px;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid #3273dc;
  outline-offset: 0.125rem;
}

input[type="range"] + label {
  position: absolute;
  top: 75px; /* Ajuste cette valeur selon ton besoin */
  left: 252px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 4px 0;
  text-align: center;
}




.ui-slider-horizontal {
  height: 8px;
  background: #D7D7D7;
}
.ui-slider-horizontal .ui-slider-range {
  top: -1px;
  height: 100%;
}

.ui-slider .ui-slider-handle {
-webkit-appearance: none; /* Override default look */
appearance: none;
background-color: #3273dc;
border-radius: 34px;
height: 16px;
width: 16px;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  height: 8px;
  font-size: .7em;
  display: block;
  border: 1px solid #5BA8E1;
  box-shadow: 0 1px 0 #AAD6F6 inset;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  background: #81B8F3;
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #A0D4F5), color-stop(100%, #81B8F3));
  background-image: -webkit-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: -moz-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: -o-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: linear-gradient(top, #A0D4F5, #81B8F3);
}

#amount:focus{
  outline: none;
}

.card_dashboard {
    width: 300px;
    height: 150px;
}

.card_dashboard:hover {
    cursor: pointer;
}

.scrollable-element {
  scrollbar-width: thin;
}


.circle_logo {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center ;
  border-radius: 50%;
  color: #0d6efd;
  width: 20px;
  height: 20px;
}


#zone_upload_image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Assure que l'image s'adapte sans déformation */
}
