path{
	cursor: pointer;
	stroke: black;
	stroke-width: solid 1px black;
	
	-moz-transition: all .5s ease;;
    -webkit-transition: all .5s ease;;
    -i-transition: all .5s ease;;
    transition: all .5s ease;;
}

path:hover{
	stroke: black;
	stroke-width: 5;
}

.tooltip{
	width: auto;
	background-color: black;
	text-align: center;
	color: white;
	border-radius: 6px;
	box-shadow: 10px 10px 5px grey;
	display: none;
	position: fixed !important;
	text-transform: capitalize;
	font-size: 20px;
	padding: 10px 15px;
	opacity: .8;
}

.tooltip:empty{
	padding: 0px;
}

#overlay{
  z-index: 500;	
  cursor: pointer;
}

.box{
	width: 60%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	margin-left: 20%;
	background-color: transparent;
	color: white;
	opacity: .9;
	display: none;
	z-index: 510;
	font-weight: bold;
}

.box .box-content{
	font-size: 20px;
	margin-top: 5%;
	margin-left: 5%;
}

.box .close{
	color: gray;
	position: absolute;
	left: 95%;
	top: 5%;
	font-size: 30px;
	cursor: pointer !important;
	
	-moz-transition: color .5s ease;
    -webkit-transition: color .5s ease;
    -i-transition: color .5s ease;
    transition: color .5s ease;
}

.box .close:hover{
	color: red;
}

.svggraph {
	background-color: white;
    width: 50% !important;
    margin-left: 20%;
    margin-top: 5%;
}

.province{
	text-transform: capitalize;
}

.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.8);z-index:2}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
