/*
escondemos los botones de radio
*/
#testimonials-content input[type="radio"] {
  display: none;
}

/*
damos un color gris a las estrellas, y un tamaño de 28px
*/
#testimonials-content label {
  color:#fff;
}
#testimonials-content label i{
  font-size: 28px!important;
}

/*
La propiedad direction: rtl; cambia la dirección de escritura  de derecha a izquierda ( right to left ). La otra propiedad unicode-bidi ( bidi de bidireccional ) se utiliza junto con la propiedad direction para cambiar  la dirección del texto.
*/
#testimonials-content .clasificacion {
  direction: rtl;
  unicode-bidi: bidi-override;
}

/*
También cambian de color todas las etiquetas <label> precedidas ( ~ ) por aquella <label> que tiene el ratón encima ( hover )
*/
#testimonials-content label:hover,
#testimonials-content label:hover ~ label {
  color: orange;
}

/*
Al marcar el botón de radio ( radio:checked ) todas las etiquetas <label> que le preceden ( ~ ) se vuelven color naranja
*/
#testimonials-content input[type="radio"]:checked ~ label {
  color: orange;
}

/*
Damos a las estrellas color naranja al momento de mostrarse
*/
#testimonials-content .starColor i{color: orange!important;}

/**************************************************/
/**TESTIMONIALS MAVEN**/
.pad_testi {padding: 10px 0px 10px;}.pagination {display: contents;}
.pad_tes{padding: 0 0 75px 0;}.t-gold{color: orange;}
.pad_te{padding: 72px 0 14px 0;}.bg-color1{background: #00285d;}
.pad_t{padding: 0 0 14px 0;}
.smallbnt{width: 45%;font-size: 18px!important;}
.well2 {
    min-height: 20px;
    padding: 19px;
    max-height: 850px;
    margin-bottom: 20px;
    background:linear-gradient(90deg, rgb(13 64 43) 0%, #2c5f34 35%, #568203 100%);
     border: 1px solid #e3e3e3; 
    border-radius: 9px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0px -1px 7px 4px rgb(115 115 115 / 52%);
}
.well{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);

}