/* Chart  Custom Css code */
.chart-holder{
    position: relative;
}
.svg-holder {
    position: relative;
    padding-left: 75px;
}
.svg-holder .svg {
    overflow: visible !important;
}
.y.axis, .x.axis{
    font-size: 14px;
}
#tag {
    color: white;
    background: rgba(0,0,0,0.8);
    width: 150px;
    position: absolute;
    display: none;
    padding: 3px 6px;
    margin-left: -80px;
    font-size: 10px;
}
#tag:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-bottom-color: rgba(0,0,0,0.8);
    top: -20px;
}
.error-msg{
    text-align: center;
}
.error-msg p {
    margin: 30px;
    color: red;
    font-size: 24px;
}

/* Pie Chart Css  */

#pieChart{
    position: relative;
    /*text-align: center;*/
}
path.slice{
    stroke-width:1px;
}

polyline{
    opacity: .3;
    stroke: black;
    stroke-width: 1px;
    fill: none;
}

.toolTipPie {
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: none repeat scroll 0 0 white;
    border: 0 none;
    border-radius: 8px 8px 8px 8px;
    box-shadow: -3px 3px 15px #888888;
    color: black;
    font-size: 12px;
    padding: 5px;
    text-align: center;
}


.chart-title{
    margin-bottom: 50px;
}