/* Le CSS est défini dans les classes bootstrap.  */
/* Dans ce fichier il n'y a que les modifs des classes bootstrap.  */


/*modifie l'aspect des liens : transition de gauche à droite*/

a {
    color: #ff7f00;
	text-decoration: none;
    background-image: linear-gradient(#ff7f00, #ff7f00);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .3s;
}

a:hover, a:focus {
    text-decoration: none;
	color: #ff7f00;
	background-size: 100% 1px;
}

.text-orange {
  color: #ff7f00 ;
}

h5{
  color :#ff7f00;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ff7f00;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}
.btn-success {
  color: #fff;
  background-color: #ff7f00;
  border-color: #ff7f00;
}

  .btn-link {
  font-weight: 400;
  color: #ff7f00;
  background-color: transparent;
}
.btn-link:hover {
  color: #ff7f00;
  border-color:ff7f00;
  text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}


/*
Pour barre de filtres
*/


.range-slider__value {
  display: inline-block;
  position: relative;
  width: 50px;
  color: #6c757d;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #f8f9fa;
  padding: 5px ;
  margin-left: 8px;

  
}


