.comboBarChart {
    width: 100%;
    height: 100px;
    position: relative;
}
.comboBarChart line, .comboBarChart path {
    fill: none;
    shape-rendering: crispEdges;
}
.comboBarChart .axis line, .comboBarChart .axis path {
    stroke: #aaa;
}
.comboBarChart .grid line {
    stroke: #aaa;
    opacity: 0.5;
    pointer-events: none;
    stroke-dasharray: 3, 3;
}
.comboBarChart .centerLine line {
    stroke: #000;
    opacity: 0.5;
    pointer-events: none;
}
.comboBarChart .rect {
    opacity: 0.9;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.comboBarChart .rect:hover {
    cursor: pointer;
    opacity: 1;
}

/* TOOLTIP */
.comboBarChart .tooltip {
    position: absolute;
    width: 165px;
    background: #333;
    color: #fff;
    padding: 0.25rem 0.5rem;
    z-index: 10000;
    opacity: 0.9;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.comboBarChart .tooltip:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 73px;
    border: solid;
    border-color: #333 transparent;
    border-width: 12px 12px 0 12px;
    display: block;
    width: 0;
}
.comboBarChart .tooltip p { padding: 0.175rem; margin: 0; text-align: left; }

/* LEGEND */
.comboBarChart .legend {
    right: -200px;
    position: absolute;
    top: 3rem;
    width: 200px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0 0.25rem 0;
}
.comboBarChart .legend ul { margin: 0; padding: 0; }
.comboBarChart .legend ul li {
    list-style-type: none;
    border-left-width: 15px;
    border-left-style: solid;
    padding-left: 0.5rem;
    margin-bottom: 0.175rem;
}
.comboBarChart .showTableIcon {
    right: -200px;
    width: 200px;
    position: absolute;
    top: 1rem;
    padding: 0.5rem 0;
    color: #000;
}
.comboBarChart div.table {
    position: absolute;
    left: 0;
    top: 0;
    padding: 1rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

/* TABLE */
.comboBarChart div.table table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.comboBarChart div.table table td { color: #666; text-align: right; padding: 0.25rem 0.5rem; }
.comboBarChart div.table table th { color: #666; font-weight: normal; padding: 0.25rem 0.5rem; text-align: left; }
.comboBarChart div.table table thead th { text-align: right; color: #000; background: #aaa; }
.comboBarChart div.table table tr:nth-child(2n) > * { background: #eee; }



.comboLineChart {
    width: 100%;
    height: 170px;
    position: relative;
    margin-top: 50px;
}
.comboLineChart line, .comboLineChart path {
    fill: none;
}
.comboLineChart .axis line, .comboLineChart .axis path {
    stroke: #aaa;
    shape-rendering: crispEdges;
}
.comboLineChart .grid line {
    stroke: #aaa;
    opacity: 0.5;
    pointer-events: none;
    stroke-dasharray: 3, 3;
}
.comboLineChart .centerLine line {
    stroke: #000;
    opacity: 0.5;
    pointer-events: none;
}
.comboLineChart path.line {
    stroke-width: 2px;
    opacity: 0.9;
}
.comboLineChart path.line:hover {
    opacity: 1;
}
.comboLineChart .circle {
    opacity: 0.9;
}
.comboLineChart .circle:hover {
    cursor: pointer;
    opacity: 1;
}

/* TOOLTIP */
.comboLineChart .tooltip {
    position: absolute;
    width: 165px;
    background: #333;
    color: #fff;
    padding: 0.25rem 0.5rem;
    z-index: 10000;
    opacity: 0.9;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.comboLineChart .tooltip:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 73px;
    border: solid;
    border-color: #333 transparent;
    border-width: 12px 12px 0 12px;
    display: block;
    width: 0;
}
.comboLineChart .tooltip p { padding: 0.175rem; margin: 0;  text-align: left;}

/* LEGEND */
.comboLineChart .legend {
    right: -200px;
    position: absolute;
    top: 3rem;
    width: 200px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0 0.25rem 0;
}
.comboLineChart .legend ul { margin: 0; padding: 0; }
.comboLineChart .legend ul li {
    list-style-type: none;
    border-left-width: 15px;
    border-left-style: solid;
    padding-left: 0.5rem;
    margin-bottom: 0.175rem;
}
.comboLineChart .showTableIcon {
    right: -200px;
    width: 200px;
    position: absolute;
    top: 1rem;
    padding: 0.5rem 0;
    color: #000;
}
.comboLineChart div.table {
    position: absolute;
    left: 0;
    top: 0;
    padding: 1rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

/* TABLE */
.comboLineChart div.table table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.comboLineChart div.table table td { color: #666; text-align: right; padding: 0.25rem 0.5rem; }
.comboLineChart div.table table th { color: #666; font-weight: normal; padding: 0.25rem 0.5rem; text-align: left; }
.comboLineChart div.table table thead th { text-align: right; color: #000; background: #aaa; }
.comboLineChart div.table table tr:nth-child(2n) > * { background: #eee; }

.comboLineChart.hideXAxis .x.axis .tick{
    display: none;
}


/*Common*/

#button { font-size: 1rem; }

.comboChart{
    padding-top: 15px;
    overflow: hidden;
}

.comboChart .chart-projection-legend {
    position: absolute;
    z-index: 1;
}


.comboChart .chart-projection-legend .legend-item {
    color: #333;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
    padding-left: 0;
    padding-right: 15px;
}

.comboChart .chart-projection-legend .legend-icon {
    display: inline-block;
    height: 15px;
    margin-left: 0;
    margin-right: 5px;
    position: relative;
    top: 3px;
    width: 20px;
}

.comboChart .chart-projection-legend .legend-icon.views-icon {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAABLklEQVR42sWUMU7DMBSGU6UsvQcTJ2Bj4Ao9AoktQVVED8BNEGtXBiqRKgvEKbQMrQQMhTEDcWABtUKEn2eLCCtKRFUPPOnXi+Xnzy+/4zgrBdDQso12v++2Afd3DFdpPVgZRGNzbi2YHz9vMiFPmMimlGc8lqd7l9lWsUm9P4UcNI5DNDXsKttmIl1074H923et7l0OX8gvLuSuqtG1ZUZVeGNs+FE678w+QJ0tqMNPyrl67kyXYFGaeGdJq3IxFV0YClgkB9TBNR+94AeCknI+eqVO0wkX2TnBhybDOZoDpnqPwOEDKmEmVFnRewLK6x0/koGSouvdYjmgfPNXh5Qn6m1IQ7InKDi1HrIaDw+0hzLxxknL4pTfVj5lq+/Q6qbshGHTnPuvu2z/t/kGMdWUpiFjCFkAAAAASUVORK5CYII=");
}

.comboChart .chart-projection-legend .legend-icon.activities-icon {
    background-color: #68c6ea;
}


.comboChart-left-toolbar{
    padding-left: 5px;
    margin-right: 45px;
    padding-right: 10px;
    border-right: #ECECEC;
    border-style: solid;
    border-bottom: none;
    border-left: none;
    border-top: none;
    border-width: thin;
}
.comboChart-left-toolbar md-select {
    padding: 0px 2px 26px;

}

.comboChart-left-toolbar md-radio-button{
    margin : 3px;
}