.map_information {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.map_information h2 {
	color: #fff;
	font-size: 1.5em;
	margin-bottom: 10px;
	text-decoration: underline;
}
.map_completions {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.map_completions .completions_header {
	background-color: #111;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	margin: 15px 0;
	color: #fff;
	justify-content: center;
}
.map_completions .completions {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.map_completions .completions li {
	flex-basis: 12.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.map_completions .completions li h2 {
	color: #fff;
	margin-bottom: 7px;
}
.player_times .style-show {
	margin: 0 7px;
}
.player_times .style-show:not(:first-child) {
	display: none;
}
.player_stats {
	border-top: 1px solid rgba(0, 0, 0, 0.5);
	margin: 15px 7px 0 7px;
}
.player_stats .stats_header {
	background-color: #111;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.player_stats .checkpoint_controls {
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.player_stats .checkpoint_controls li:not(:last-child) {
	margin-right: 10px;
}
.player_stats .checkpoint_controls li {
    box-sizing: border-box;
    cursor: pointer;
    background-color: #303030;
    text-align: center;
    border: 0px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.02);
    border-radius: 2px;
    font-size: 0.8em;
    color: #a3a3a3;
    outline: none;
    font-weight: bold;
    padding: 8px 16px;
    transition: ease 0.1s all;
}
.player_stats .checkpoint_controls li:not(.active):hover {
	background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.player_stats .checkpoint_controls li.active {
	background-color: #738BD7;
    color: #fff;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: unset;
}
.player_stats .stage_controls {
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.player_stats .stage_controls li:not(:last-child) {
	margin-right: 10px;
}
.player_stats .stage_controls li {
    box-sizing: border-box;
    cursor: pointer;
    background-color: #303030;
    text-align: center;
    border: 0px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.02);
    border-radius: 2px;
    font-size: 0.8em;
    color: #a3a3a3;
    outline: none;
    font-weight: bold;
    padding: 8px 16px;
    transition: ease 0.1s all;
}
.player_stats .stage_controls li:not(.active):hover {
	background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.player_stats .stage_controls li.active {
	background-color: #738BD7;
    color: #fff;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: unset;
}
.player_stats .checkpoint_stats .stats-display:not(:first-child), .player_stats .stage_stats .stats-display:not(:first-child) {
	display: none;
}