main {
	padding: 50px 20px;
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1240px) {
	main {
		width: calc(100vw - 40px);
	}
}

h2 {
	font-family: DragonForcE;
	color: #A10000;
	font-size: 45px;
	text-align: center;
	font-weight: bold;
	text-shadow: 4px 4px 5px rgba(0,0,0,0.20);
	letter-spacing: 2px;
}

/* Navbar Search */
.nav_search {
	display: flex;
	justify-content: center;
}

.nav_search_box {
	width: 500px;
	margin-top: 9px;
}

.nav_search input {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	background: #333333 url('../nav/search.svg') 10px 7px/27px no-repeat;
	padding: 12px 20px 12px 45px;
	margin: 0;
	color: #CCCCCC;
}

.nav_search input:focus:hover, .nav_search input:focus, .nav_search input:hover {
	outline: none;
	border-radius: 4px;
	background-color: #1c1c1c;
}

/* Search Mobile */
.nav_search_button {
	display: none;
	margin-top: 9px;
	margin-left: 7px;
	height: 43px;
	width: 43px;
	border-radius: 4px;
	float: right;
	z-index: 4;
	user-select: none;
	background: transparent url('../nav/search.svg') center/35px no-repeat;
}

.nav_search_button:hover {
	background-color: #333333;
}

.nav_search_button + label::before {
	display: none;
}

@media (max-width: 900px) {
	.nav_search {
		display: none;
		width: 100%;
		height: 60px;
		position: fixed;
		background: #222222;
		z-index: 3;
		padding: 0;
	}
	.nav_search_box {
		width: calc(100% - 70px);
		max-width: 500px;
		margin-right: 70px;
	}

	.nav_search_button {
		display: block;
	}

	#nav_search_button:checked ~ .nav_search {
		display: flex;
	}
	.nav_button {
		margin: 0;
	}
}

#nav_search_button:checked ~ .nav_search_button {
	position: fixed;
	right: 7px;
	background: transparent url('../nav/close.svg') center/35px no-repeat;
}

#nav_search_button:checked ~ .nav_search_button:hover {
	background-color: #333333;
}

/* ####################################################################### */
/* Version Filter */
#select_version {
	float: right;
	background: #333333;
	text-align: center;
	border-radius: 4px;
	padding-top: 2px;
	padding-bottom: 8px;
	width: 95px;
	margin-top: 9px;
	cursor: default;
	user-select: none;
}

#select_version:hover {
	background-color: #1c1c1c;
}

#select_version:after {
	content: "";
	display: inline-block;
	height: 24px;
	width: 24px;
	background-image: url("../nav/drop_down.svg");
}

#selection_box {
	display: flex;
	position: fixed;
	border-radius: 5px;
	background-color: #333333;
	z-index: 4;
	top: 58px;
	right: 15%;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.65);
}

#version_main {
	max-height: 40vh;
	direction: rtl;
	overflow-y: auto;
}

#version_main div {
	padding: 8px 12px;
	border-radius: 5px;
	margin-right: 5px;
}

#version_main div:hover {
	background-color: #222222;
}

.version_main_selected {
	border-radius: 5px 0 0 5px !important;
	margin-right: 2px !important;
	background-color: #a10000 !important;
	position: relative;
}

#version_sub {
	max-height: 40vh;
	overflow-y: auto;
	border-radius: 5px;
	background-color: #222222;
}

#version_sub div {
	padding: 8px 12px;
	border-radius: 0 5px 5px 0;
}

.version_sub_selected, #version_sub div:hover {
	background-color: #a10000;
}

.hidden {
	display: none !important;
}

@media (max-width: 1600px) {
	#selection_box {
		right: 10%;
	}
}

@media (max-width: 1350px) {
	#selection_box {
		right: 10px;
	}
}

@media (max-width: 900px) {
	#selection_box {
		right: 60px;
	}
}

/* ####################################################################### */
/* Items */
main {
	transition: margin-top 0.5s ease-in-out;
}

.content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/* Article */
#article_list a {
	width: 250px;
	padding: 20px 40px;
	background: #333333;
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: center;
	position: relative;
	border-radius: 10px;
	position: relative;
	margin: 20px;
}

#article_list a:hover, #article_list a:focus {
	background: #222222;
	outline: none;
	color: inherit;
	text-decoration-line: none;
}

#article_list a:link, #article_list a:visited, #article_list a:active {
	color: inherit;
	text-decoration-line: none;
}

.img_container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.img_container img {
	max-width: 250px;
	margin: 0px auto;
}

.description {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	margin-bottom: 30px;
	text-align: justify;
}

.info {
	font-size: 15px;
	display: flex;
}

.info p {
	display: inline;
	flex-grow: 1;
	text-align: left;
}

.info p:last-child {
	text-align: right;
}

@media (max-width: 400px) {
	#article_list a {
		margin: 20px 0px;
		padding: 20px;
	}
}

/* Hide */
.hide_search {
	display: none !important;
}

.hide_filter {
	display: none !important;
}