body {
	color: #393939;
	font-size: 16px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.chart-container {
	position: relative;
	margin: auto;
	height: 50vh;
	width: 100%;
	max-width: 1920px;
}

.button_group {
	display: flex;
	justify-content: space-between;
	padding: 0 1rem 0 2rem;
}

.button_group button {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.5rem 1.0rem;
	color: #ee7100;
	background-color: white;
	border: 1px solid #ee7100;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
	font-size: 1rem;
}

.button_group button:hover {
	color: white;
	background-color: #ee7100;
	border: 1px solid #ee7100;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
	cursor: pointer;
}

.spacer {
	flex: 1;
}