.sunburst-viz .slice path {
    cursor: pointer;
}

.sunburst-viz text {
    font-family: sans-serif;
    font-size: 15px !important;
    dominant-baseline: middle;
    text-anchor: middle;
    pointer-events: none;
    fill: #222 !important;
}

.sunburst-viz .text-contour {
    fill: none;
    stroke: white;
    stroke-width: 3 !important;
    stroke-linejoin: 'round';
}

.sunburst-viz .main-arc {
    stroke-width: 1px;
    transition: opacity .4s;
}

.sunburst-viz .main-arc:hover {
    opacity: 0.85;
    transition: opacity .05s;
}

.sunburst-viz .hidden-arc {
    fill: none;
}

.sunburst-viz {
    position: relative;
}
.sunburst-viz svg {
        width: 100%;
        height: auto;
}

.sunburst-tooltip {
    display: none;
    position: absolute;
    max-width: 320px;
    white-space: normal !important;
    padding: 5px;
    border-radius: 3px;
    font: 12px sans-serif;
    color: #eee;
    background: rgba(0,0,0,0.65);
    pointer-events: none;
}

.sunburst-tooltip .tooltip-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
