/* Correction bouton fond noir */
.btn-text-secondary[href]:active, .btn-text-secondary[href]:focus {
	color: hsla(0,0%,100%,.6);
}

/* Système de note avec étoiles */
.starrating > input { display: none; }  /* Remove radio buttons */

.starrating > label:before { 
  content: "\f005"; /* Star */
  margin: 2px;
  font-size: 1em;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
}

.starrating > label, .star-unchecked { color: #77838f; } /* Start color when not clicked */
.starrating > input:checked ~ label{ color: #ffca08 ; } /* Set yellow color when star checked */
.starrating > input:hover ~ label { color: #ffca08 ;  } /* Set yellow color when star hover */

.nav-pills .nav-link.active, .nav-pills .show > .nav-link { 
	color: #fff;
	background-color: #65707b;
	border-color: #5f6a74;
}

/* Panier */
.cart-input {
  max-width: 150px;
  min-width: 120px;
}

/* Cacher bouton reCAPTCHA */
div.grecaptcha-badge { display:none; }

/* Montant crédits utilisateur */
.user_credit { font-weight: bold; color: #9fbef8; font-size: 1.2em; }    /* Autres couleurs possibles : #74a4fd (plus sombre)  */
.user_credit[href]:hover{color:#74a4fd ;text-decoration:none; }      /* Autres couleurs possibles : #4880e7 (plus sombre) #5d90ed   */

/* Prenom utilisateur */
.user_prenom { font-weight: bold; color: #9fbef8; font-size: 1em; }    /* Autres couleurs possibles : #74a4fd (plus sombre)  */
.user_prenom[href]:hover{color:#74a4fd ;text-decoration:none; }      /* Autres couleurs possibles : #4880e7 (plus sombre) #5d90ed   */

.text-purple { color: #a50f78; }