/* Base setup */
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
body {
    text-align: center;
}
h1 {
    font-size: 2em; 
    margin-bottom: 0;
}

/* Ratings widget */
.rate {
    display: inline-block;
    border: 0;
    line-height: 0.8;
}
/* Hide radio */
.rate > input {
    display: none;
}
/* Order correctly by floating highest to the right */
.rate > label {
    float: right;
}
/* The star of the show */
.rate > label:before {
    display: inline-block;
    font-size: 2rem;
    padding: 0;
    margin: 0.1rem;
    cursor: pointer;
    /*font-family: FontAwesome;*/
    /*content: "\f005 "; /* full star */
    width: 20px;
    content: url("/shop/web/img/starfull.svg");
}

/* Half star trick */
.rate .half:before {
    content: url("/shop/web/img/starhalf.svg");
    /*content: "\f089 "; /* half star no outline */
    /*position: absolute;*/
    padding-right: 0;
    width: 20px;
    margin: 0.1rem;
  -webkit-transform:rotateY(180deg);
  -moz-transform:rotateY(180deg);
  -o-transform:rotateY(180deg);
  -ms-transform:rotateY(180deg);
}

/* Half star trick */
.rate .empty:before {
    content: url("/shop/web/img/starempty.svg");
    padding-right: 0;
    width: 20px;
    margin: 0.1rem;

}
/* Click + hover color */
/*input:checked ~ label,*/ /* color current and previous stars on checked */
/*ilabel:hover, label:hover ~ label { color: #eb9316;  }*/ /* color previous stars on hover */

/* Hover highlights */
/*iinput:checked + label:hover, input:checked ~ label:hover,*/ /* highlight current and previous stars */
/*iinput:checked ~ label:hover ~ label,*/ /* highlight previous selected stars for new rating */
/*ilabel:hover ~ input:checked ~ label  { color: #C6E746;  }*/ /* highlight previous selected stars */

.rateSelected{color: #eb9316;}

.priceSymbol {
    top: -.5em;
    font-size: 12px;
    position: relative;
}

.priceFull {
    font-size: 21px;
}

.priceDecimal {
    position: absolute;
    opacity: 0;
}

.priceFraction {
    top: -.5em;
    font-size: 12px;
    position: relative;
}


.listPriceDel {
  font-size: 12px;
}