/* Style of star glyph visualization
* Adapted from adapted from http://bl.ocks.org/kevinschaul/8833989
*/

    .wrapper {
        position: relative;
        display: inline-block;
        border: black;
    }

    .chart {
        margin-bottom: 0px;
    }

    .star-origin {
        fill: #333;
    }

    .star-axis {
        stroke-width: 1px;
    }

    .star-path {
        stroke: #8c8c8c;
        stroke-width: 1px;
        fill: #b0b0b0;
        fill-opacity: 1.0;
    }

    .star-interaction {
        opacity: 0;
    }

    .interaction {
        pointer-events: none;
    }

    .interaction.label {
        position: absolute;
        font-size: 11px;
        text-shadow: 0 1px 0 #FFF, 0 -1px 0 #FFF, 1px 0 #FFF, -1px 0 #FFF;
    }

    .interaction.circle {
        fill: #444;
        fill-opacity: 0.6;
        stroke: #444;
    }