.card-header .fa-chevron:after {
    content: "\f078";
}
.card-header.collapsed .fa-chevron:after {
    content: "\f054";
}

.card-header {
	background-color: #002C41 !important;
}

.ct-point {
   stroke-width: 3px;
   stroke-linecap: round
}
.ct-line {
   stroke-width: 1px
}
.ct-legend {
    position: relative;
    z-index: 10;
    list-style: none;
    text-align: center;
}
.ct-legend li {
    position: relative;
    padding-left: 23px;
    margin-right: 10px;
    margin-bottom: 3px;
    cursor: pointer;
    display: inline-block;
}


.ct-legend {
    position: relative;
    z-index: 10;
    list-style: none;
    text-align: center;
}

.ct-legend li {
    position: relative;
    padding-left: 20px;
    margin-right: 10px;
    margin-bottom: 3px;
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
}

.ct-legend li:before {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    content: '';
    border: 3px solid transparent;
    border-radius: 2px;
}
.inactive {
   opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}
.ct-legend li.inactive:before {
    background: transparent;
}

.ct-legend li.ct-legend-inside {
    position: absolute;
    top: 0;
    right: 0;
}

.ct-legend li.ct-series-0:before {
    background-color: rgb(57, 106, 177);
    border-color: rgb(57, 106, 177);
}

.ct-legend li.ct-series-1:before {
    background-color: rgb(83, 81, 84);
    border-color: rgb(83, 81, 84);
}
.ct-legend li.ct-series-2:before {
    background-color: rgb(62, 150, 81);
    border-color: rgb(62, 150, 81);
}

.ct-legend li.ct-series-3:before {
    background-color: rgb(146, 36, 40);
    border-color: rgb(146, 36, 40);
}
.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut {
    stroke: rgb(57, 106, 177);
}
.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut {
    stroke: rgb(83, 81, 84);
}
.ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point, .ct-series-c .ct-slice-donut {
    stroke: rgb(62, 150, 81);
}
.ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point, .ct-series-d .ct-slice-donut {
    stroke: rgb(146, 36, 40);
}
.chartist-tooltip {
  position: absolute;
  display: inline-block;
  opacity: 0;
  min-width: 5em;
  padding: .5em;
  background: #292b2c;
  font-size:14px;
  color: #FFF;
  font-family: Oxygen,Helvetica,Arial,sans-serif;
  font-weight: 200;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
}
.chartist-tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: #292b2c; }