#starRatingContainer {
   display: flex; /*fix indent*/
   flex-direction: column;
   flex-wrap: wrap;
   align-items: center; /*fix indent*/
   
   font-size: 1.15em;
}
#svg_star_stroke
{
   height: 0;
}

#starBlockChooser{display: none;}
.starBlock {
   display: inline-flex;
   flex-wrap: nowrap;
   width: fit-content;
}
.starBlock .star svg {
   width: 1.2em;
   height: 1.2em;
   /* padding: 0 0.15em; */
   margin: 0 0.3em;
}
.star-adjustable.star-full {
   fill: #f1f100;
   transform: scale(1.1);
   /* transition: 0.1s */
}
.star-adjustable.star-empty {
   fill: white;
   transform: scale(1);
   /* transition: 0.1s; */
}
.star-adjustable
{
   fill: transparent;
   cursor: pointer;
}
.star
{
   display: inline-flex; /*fix indent*/
   align-items: center; /*fix indent*/
}
#starText
{
   margin-left: 0.25em;
   margin-top: 0.5em;
   font-family: sans-serif;
   font-size: 0.7em;
   line-height: 1em;
}



