* {
	box-sizing: border-box;
	color-scheme: only light;
	touch-action: pan-x pan-y;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	scrollbar-width: thin;
}
body {
	background: black;	
	color: #fff;
	font-family: monospace;
	font-size: 13px;
}
#list_container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 7px;
	padding: 5px;;
	justify-content: flex-start;
	z-index: 1;
}
.news {
	display: grid;
	grid-template-areas: 'news img';
	grid-template-columns: 1fr 300px;
	grid-gap: 5px;
	padding: 5px;
	border: 1px solid #555;
	border-radius: 5px;
	flex: 1 1 min(500px, 100vw);
	position: relative;
}
.news_not_current {
	background: #f005;
}
.id_keeper {
	position: absolute;
	top: 294px;
	right: 7px;
	font-size: 10px;
}
.news_image {
	grid-area: img;
	height: 300px;
	outline: 1px solid #555;
}
.news_news {
	grid-area: news;
	height: 300px;
	display: grid;
	grid-auto-flow: row;
	gap: 0;
	grid-template-rows: min-content min-content 1fr min-content min-content;
}
.news_title {
	font-weight: bold;
	font-size: 20px;
	padding: 10px 0;
}
.news_content {
	text-align: justify;
	padding: 10px 5px;
	margin-top: -10px;
	margin-left: -5px;
	overflow: auto;
}
label {
	white-space: nowrap;
	display: flex;
	gap: 5px;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}
input[type="checkbox"], input[type="radio"] {
	margin: 0;
}
input, label {
	cursor: pointer;
}
#filters_area {
	padding: 5px 10px;
	position: sticky;
	top: 0;
	background: #232323;
	z-index: 2;
	border-bottom: 1px solid #555555;
}
#filters {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: inherit;
}
a {
	color: #009fff;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	opacity: 0.8;
	cursor: pointer;
}