/*VALORACIONES POR ESTRELLAS*/
.valEstrellas {
    margin-left: 0;
    text-align: right;
}

.valEstrellas span {
    font-family: gotham-book, sans-serif;
    font-size: .85em;
    line-height: 100%;
}

.ec-stars-wrapper {
    font-size: 0;
    display: inline-block;
    /* background-image: linear-gradient(90deg, yellow 50%, transparent 50%); */
    background-image: initial;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-stars-wrapper:hover {
    background-image: initial !important;
    -webkit-text-fill-color: initial !important;
}

.ec-stars-wrapper li {
    text-decoration: none;
    display: inline-block;
    /* Volver a dar tamaño al texto */
    font-size: 36px;
    font-size: 2.5rem;
    color: transparent !important;
    cursor: pointer;
    -webkit-text-stroke: 2px var(--rojo) !important;
    /* text-shadow: 0 0 5px #fff; */
    /* text-shadow: 2px 2px 6px rgba(0,0,0,0.4); */
    /* filter: drop-shadow(1px 1px 5px black); */
}

.ec-stars-wrapper:hover li {
    color: var(--rojo) !important;
    /* filter: none; */
}

.ec-stars-wrapper li:hover~li {
    /*El selector de hijo, es necesario para aumentar la especifidad*/
    color: transparent !important;
    -webkit-text-stroke: 2px var(--rojo) !important;
}