/* Slider de Precio Custom */
.range-slider { position: relative; width: 100%; height: 5px; background: #ddd; border-radius: 5px; }
.range-selected { height: 100%; left: 0%; right: 0%; position: absolute; border-radius: 5px; background: #a7144c; }
.range-input { position: relative; }
.range-input input { position: absolute; width: 100%; height: 5px; top: -5px; background: none; pointer-events: none; -webkit-appearance: none; -moz-appearance: none; }
.range-input input::-webkit-slider-thumb { height: 20px; width: 20px; border-radius: 50%; border: 2px solid #a7144c; background: #fff; pointer-events: auto; -webkit-appearance: none; cursor: pointer; }
.range-input input::-moz-range-thumb { height: 20px; width: 20px; border: none; border-radius: 50%; background: #a7144c; pointer-events: auto; -moz-appearance: none; cursor: pointer; }

/* WooCommerce Star Rating */
.woocommerce .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.woocommerce .star-rating::before {
    content: "\f005\f005\f005\f005\f005";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    color: #fbbf24; /* yellow-400 */
}
