*{
    margin: 0;
    padding: 0;
}
.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:auto;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
/******************** stars view ******************/
.rate {
    display: inline-block;
    font-size: auto;
    color: #ccc;
}

.star {
    cursor: default; /* Evita que el cursor cambie a un puntero */
}

[data-rate="1"] .star:nth-child(-n+1),
[data-rate="2"] .star:nth-child(-n+2),
[data-rate="3"] .star:nth-child(-n+3),
[data-rate="4"] .star:nth-child(-n+4),
[data-rate="5"] .star:nth-child(-n+5) {
    color: #ffc700; /* Cambia el color de las estrellas según la calificación media */
}