/* global variables */
/* colours */
/* chart */
/* tooltip */
/* sparkline */
html, h1, h2, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", serif;
  /* create more space for sparkline */
  line-height: 2em;
}
/* text underline animation */
nc-link {
  font-weight: bolder;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

nc-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

nc-link:hover:after {
  width: 100%;
  background: #777;
}

/* sparkline */
nc-sparkline {
  top: -0.125em;
  position: relative;
}

nc-sparkline > svg {
  margin-left: 5px;
  margin-right: 5px;
  background: #f6f6f6;
}

.ct-chart-pie {
  background: none;
}

nc-sparkline .ct-bar {
  stroke-width: 4;
}

span.nc-sparkline-label {
  color: white;
  font-size: 0.75em;
  line-height: 0.75em;
  white-space: nowrap;
  padding: 5px;
  background: #8BC34A;
  position: fixed;
}

/* hide vertical grid line in sparkline */
nc-sparkline .ct-vertical {
  display: none;
}

.nc-maxmin {
  position: absolute;
  line-height: 1em;
  font-size: 0.75em;
  top: 0;
  left: 100%;
}

/* figure */
nc-figure {
  position: relative;
  display: block;

}

.nc-figure-legend {
  text-align: center;
  font-size: 0.75em;
}

.nc-figure-legend span {
  text-transform: capitalize;
  margin-right: 10px;
}

.nc-figure-legend span:before {
  content: '';
  display: inline-block;
  margin-right: 0.5em;
  width: 0.75em;
  height: 0.75em;
  -moz-border-radius: 0.375em;
  -webkit-border-radius: 0.375em;
  border-radius: 0.375em;
}

.nc-figure-legend span:first-child:before {
  background-color: #777;
}

.nc-figure-legend span:last-child:before {
  background-color: #8BC34A;
}

.nc-tooltip {
  color: #fff;
  text-align: center;
  font-size: 0.75em;
  height: 20px;
  white-space: nowrap;
  line-height: 20px;
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0px;
  padding: 2px 10px;
  background: #8BC34A;
}

.nc-tooltip:before {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  left: calc(50% - 10px);
  bottom: 20px;
  border: 10px solid transparent;
  border-bottom-color: #8BC34A;
}

.ct-grid-background {
  fill: #f6f6f6;
}

.ct-grid {
  stroke: #fff;
  stroke-dasharray: none;
}

line.ct-grid.ct-horizontal {
  stroke: #8BC34A;
}

/* hide horizontal grid line in figure and sparkline */
.ct-horizontal {
  display: none;
}

/* highlight colour */
.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point {
  stroke: #777;
}

.ct-series-a .ct-area {
  fill: #777;
}

.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point {
  stroke: #8BC34A;
  stroke-opacity: 0.8;
}

.ct-series-b .ct-area {
  fill: #8BC34A;
}

/* line chart */
.ct-point {
  stroke-width: 5px;
}

.ct-line {
  stroke-width: 2px;
}

/* pie chart */
.ct-series-a .ct-slice-pie {
  fill: #4d4d4d;
}

.ct-series-b .ct-slice-pie {
  fill: #666666;
}

.ct-series-c .ct-slice-pie {
  fill: gray;
}

.ct-series-d .ct-slice-pie {
  fill: #999999;
}

.ct-series-e .ct-slice-pie {
  fill: #b3b3b3;
}

.ct-series-f .ct-slice-pie {
  fill: #cccccc;
}

.ct-series-g .ct-slice-pie {
  fill: #e6e6e6;
}

.nc-pie-highlighted .ct-slice-pie {
  fill: #8BC34A;
}


.header {
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 32px;
  font-weight: bold;

}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: #64b72d;
  color: white;
}

.header-right {
  float: right;
  padding-right: 50px;
}
.uk-padding{
  margin-top: 100px;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: black;
    text-align: center;
     font-size: 12px; 
}