body {
	background: blue;
	font-family: ModeSeven;
	color: white;
	overflow-x: hidden;
}

a {
	color: white;
}

.header {
	display: flex;
	justify-content: space-around;
}

@font-face {
	font-family: ModeSeven;
	src: url(assets/ModeSeven.ttf);
}

@media (orientation: landscape) and (min-device-width: 769px) {
	.content {
		bottom: 10px;
		width: 100%;
		height: 95vh;
		display: grid;
		grid-template-columns: 55% 1fr;
		left: 0;
		right: 0;
	}
}

@media (orientation: portrait) or (max-device-width: 768px) {
	.content {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
	}
	.right {
		max-height: 12em;
	}
	#stats {
		display: none;
	}
}

.color_stats_individual {
	font-size: 1.5rem;
	display: none;
}
.color_stats {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.color_chart {
	position: relative;
	height: 15rem;
}
.cmc_chart {
	position: relative;
	height: 15rem;
}
.type_chart {
	position: relative;
	height: 20rem;
	width: 640;
}
.stats {
	width: 85%;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE 10 and IE 11 */
  user-select: none;         /* Standard syntax */
 
}

#cube {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.card_block {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	width: 32%;
}

.card_block > a > img {
	width: 100%;
	height: auto;
}

.title {
	text-align: center;
	margin-top: 0;
	font-size: 2em;
	font-weight: bold;
}

button.right-item {
	cursor: pointer;
}

.left {
	overflow-y: scroll;
}

.right {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-around;
	flex-direction: column;
	overflow-y: hidden;
}

.right-item {
	height: 16%;
	width: 95%;
	background: none;
	color: white;
	font-size: 3em;
	border: 3px solid;
	font-family: ModeSeven;
	box-sizing: border-box;
	min-height: 4rem;
}

.left-item {
	height: 30%;
	width: 95%;
	background: none;
	color: white;
	font-size: 3em;
	border: 3px solid;
	font-family: ModeSeven;
	box-sizing: border-box;
}

.right-subitem {
	height: 100%;
	width: 100%;
	background: none;
	color: white;
	font-size: 1em;
	font-family: ModeSeven;
	resize: none;
	border: none;
}

.behind {
	position: relative;
	top: -100%;
	color: grey;
	z-index: -10;
}

.gone {
	display: none;
}

.item {
	font-size: 1.5em;
	text-align: left;
	border: 1px solid;
	margin: 4px;
	padding: 2px;
}

.item-clickable {
	cursor: pointer;
}

.ui-hidden-accessible {
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.warn {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: red;
	z-index: 1000;
	color: white;
	font-size: 4em;
	text-align: center;
	text-transform: uppercase;
	border: 5px solid;
}