#chartdiv {
  width: 100%;
  height: 500px;
  font-size: 11px;
}

#chartdiv .amcharts-pie-slice {
  transform: scale(1);
  transform-origin: 50% 50%;
  transition-duration: 0.3s;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  cursor: pointer;
  box-shadow: 0 0 30px 0 #000;
  fill: #1F4384;
  stroke: 0.5pt;
}

#chartdiv .amcharts-pie-slice:hover {
  transform: scale(1.1);
  fill: #EF4E22;
}							


#chartdiv .amcharts-pie-slice:active {
  fill: #EF4E22;
}	

#chartdiv .amcharts-pie-label {
	font-family: Chivo;
	fill: #1F4384;
}

#chartdiv .amcharts-pie-item area-label {
	display: none;
}

#chartdiv a {
	display: none;
	visibility: hidden;
}