.EDWB_PercentDonut text.label-text {
    color: #444;
    fill: #444;
    text-anchor: middle;
    font-weight: bold;
    font-family: arial, sans-serif;
}

.EDWB_PercentDonut text.value-text {
    color: #fff;
    fill: #fff;
    text-anchor: middle;
    font-weight: bold;
    font-family: arial, sans-serif;
}


.EDWB_PercentDonut .d3tooltip {
    position: absolute;
    padding: 1px;
    z-index: 10000;

    color: #FFF;
    background-color: #333;
    border: none;

    font-size: 10px;
    text-align: left;
    pointer-events: none;

    white-space: nowrap;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.EDWB_PercentDonut .d3tooltip h3 {
    margin: 0;
    padding: 4px 10px;
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
    font-weight: bold;
}

.EDWB_PercentDonut .d3tooltip p {
    margin: 0;
    padding: 5px 10px;
    text-align: center;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 300;
}

.EDWB_PercentDonut .d3tooltip span {
    display: inline-block;
    margin: 2px 0;
}

.EDWB_PercentDonut .d3tooltip-pending-removal {
    position: absolute;
    pointer-events: none;
}

.EDWB_PercentDonut .arrow-tooltip-down:not(.no-arrow):after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0;
    border-color: #333 transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -10px;
    bottom: -10px;
    left: 50%;
}

.EDWB_PercentDonut .arrow-tooltip-up:not(.no-arrow):after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 10px 10px;
    border-color: #333 transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -10px;
    top: -10px;
    left: 50%;
}

.EDWB_PercentDonut .arrow-tooltip-left:not(.no-arrow):after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #333;
    display: block;
    width: 0;
    z-index: 1;
    margin-top: -10px;
    left: -10px;
    top: 50%;
}

.EDWB_PercentDonut .arrow-tooltip-right:not(.no-arrow):after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent #333;
    display: block;
    width: 0;
    z-index: 1;
    margin-top: -10px;
    right: -10px;
    top: 50%;
}