.databutton {
	float: right;
	display: none;
	cursor: pointer;
	background-color: var(--nav);
	color: var(--text);
	font-size: 18px;
	margin: 12px 15px;
	padding: 0 5px;
}

#container {
	position: relative;
	overflow: hidden;
}

.nomargin {
	margin: 0;
}
.nopadding {
	padding: 0;
}

#header {
	width: 100%;
	height: 50px;
	overflow: hidden;
}
#header h1 {
	font-size: 16px;
	line-height: 150%;
	margin: 0;
}

#expand {
	width: 100%;
	overflow: auto;
}

.dochart {
	cursor: pointer;
}

#chart {
	padding: 5px;
	width: 100%;
	min-width: 200px;
	height: 250px;
}

#map {
	width: 100%;
	height: 200px;
}




.box {
	font-size: 14px;
	background-color: var(--nav);
	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	margin: 10px;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
}
.box:hover {
	box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.box.inline {
	display: inline-block;
	width: 30%;
	margin: 1%;
}

.boxtext {
	padding: 10px;
	color: var(--text);
}
.boxtext a {
	color: var(--text);
}

.current div {
	text-align: center;
	color: var(--current);
	font-size: 48px;
	font-weight: bold;
	line-height: 100%;
}
.cases div {
	text-align: center;
	color: var(--cases);
	font-size: 36px;
	line-height: 100%;
}
.deaths div {
	text-align: center;
	color: var(--deaths);
	font-size: 36px;
	line-height: 100%;
}
.recovered div {
	text-align: center;
	color: var(--recovered);
	font-size: 36px;
	line-height: 100%;
}

.current.active {
	box-shadow: inset 0 0 0 2px var(--current);
}
.cases.active {
	box-shadow: inset 0 0 0 2px var(--cases);
}
.deaths.active {
	box-shadow: inset 0 0 0 2px var(--deaths);
}
.recovered.active {
	box-shadow: inset 0 0 0 2px var(--recovered);
}

.modifydate {
	margin: 5px;
}
.modifydate div {
	text-align: center;
	color: var(--text);
	line-height: 100%;
}


.axis {
	font-family: sans-serif;
	font-size: 10px;
	color: white;
	fill: white;
}
.axis path {
	stroke: white;
}
.axis line {
	stroke: white;
}

.deluline {
	fill: none;
	stroke-width: 2;
}
.deluline.current {
	stroke: var(--current);
}
.deluline.cases {
	stroke: var(--cases);
}
.deluline.deaths {
	stroke: var(--deaths);
}
.deluline.recovered {
	stroke: var(--recovered);
}

.delucircle {
	stroke: none;
	r: 5px;
}
.delucircle.current {
	fill: var(--current);
}
.delucircle.cases {
	fill: var(--cases);
}
.delucircle.deaths {
	fill: var(--deaths);
}
.delucircle.recovered {
	fill: var(--recovered);
}
.delucircle:hover {
	r: 8px;
	cursor: pointer;
}

.delutext {
	fill: var(--text);
}


.leaflet-popup-content-wrapper {
	border-radius: 2px !important;
}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	font-size: 14px;
	color: var(--text);
}


.marker {
	stroke: false;
	color: red;
	fillOpacity: 0.7;
}

.iconhint {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	color: gray;
}

.fbbutton {
	display: inline-block;
	padding: 10px 10px;
	font-size: 13px;
	background: #4965a0;
	border-radius: 2px;
	color: white;
	text-decoration: none;
}
.fbbutton:hover {
	background: #46629e;
	color: white;
	text-decoration: none;
}
.fbbutton i {
    border-right: 1px solid rgba(255,255,255,0.5);
    margin-right: 9px;
    padding-right: 9px;
}

