.content, #mobile_content {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	width: fit-content;
	max-width: 85vw;
	margin-top: 50px;
	margin-bottom: 50px;
	border: #5B5B5B 3px solid;
	background-color: #292929;
}

text {
	color: white;
	background-color: transparent;
	height: 100%;
}

table_head {
	width: 100%;
}

th, td {
	text-align: left;
	padding: 5px 10px 5px 10px;
}

th {
	border-bottom: 3px #5B5B5B solid;
}

td {
	border-top: 1px #5B5B5B solid;
}

table {
	display: table;
	width: 100%;
	border-collapse: collapse;
	user-select: none;
	position: relative;
}

.wrap {
	overflow-wrap: anywhere;
}

#mobile_content {
	display: none;
	max-width: auto;
	flex-direction: column;
	gap: 30px;
	border: 0;
	background-color: transparent;
}

#mobile_content > table {
	border: #5B5B5B 3px solid;
	background-color: #292929;
}

#mobile_content tr {
	font-size: 24px;
}

.hide {
	cursor: pointer;
}

.review {
	position: relative;
}

.review::before {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	content: "Reveal";
	cursor: pointer;
	background-color: black;
}

.review:not(.hide)::before {
	display: none;
}

.hide text {
	color: black;
	background-color: black;
}

@media (max-width:800px) {
	.content {
		display: none;
	}
	
	#mobile_content {
		display: flex;
	}
	
	th {
		border-bottom: 0;
		border-top: 1px #5B5B5B solid;
		border-right: 3px #5B5B5B solid;
	}
	
	td {
		min-width: 100%;
	}
}