body {
	font-family: "Open Sans", sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #080808;
	background: url('../img/watermark.png');
}

.container {
	width: 960px;
	margin: 0 auto;
	margin-top: 2em;
}

.thread-list {
	width: 100%;
	margin: 0 1em;
	table-layout: fixed;
	border-collapse: collapse;
	border: 1px solid rgb(70, 77, 90);
	margin-bottom: 2em;
}

.thread-list-header {
	background-color: #40394e;
	color: white;
	font-size: 0.8em;
	line-height: 1.5em;
}

.thread-list-header th {
	font-weight: normal;
}

.thread-row {
	background-color: rgb(239, 242, 246);
	height: 3em;
}

.thread-row:nth-child(2n) {
	background-color: rgb(253, 254, 255);
}

.thread-row td {
	padding: 0.25em;
	vertical-align: middle;
	border: 1px solid rgb(200, 210, 220);
}

.thread-icon {
	text-align: center;
}

.thread-subject {
	padding-left: 0.5em !important;
}

.thread-subject a {
	text-decoration: none;
}

.thread-subject .thread-new {
	background-color: #f28e30;
	color: white;
	font-weight: bold;
	padding: 0 4px;
	border-radius: 4px;
}

.thread-platform {
	text-align: center;
}

.thread-word-count {
	text-align: center;
}

.thread-posted {
	text-align: right;
	padding-right: 0.5em !important;
}

.post-container {
	border: 1px solid rgb(200, 210, 220);
	margin: 1em;
}

.post-row {
	display: flex;
}

.user-info {
	min-width: 200px;
	background-color: rgb(239, 242, 246);
}

.user-name {
	font-weight: bold;
	text-align: center;
	font-size: 1.2em;
	margin: 0;
	margin-top: 0.5em;
}

.user-date {
	font-size: 0.8em;
	text-align: center;
	color: #343434;
	margin: 0;
	margin-top: 0.2em;
	margin-bottom: 0.75em;
}

.user-avatar {
	text-align: center;
}

.user-avatar img {
	
}

.user-avatar-text {
	font-size: 0.75em;
	text-align: center;
	padding: 0 12px;
}

.user-avatar img {
	max-width: 150px;
	max-height: 150px;
	border: 1px solid #aaa;
}

.user-avatar-no-border img {
	border: none;
}

.post-header {
	margin: 0 auto;
	width: 680px;
	height: 180px;
	box-shadow: 0 0 4px 4px rgb(253, 254, 255) inset;
}

.post-misc {
	text-align: center;
	font-size: 0.8em;
}

.post-content {
	font-family: "Atkinson Hyperlegible", sans-serif;
	font-size: 18px;
	line-height: 1.5;
	text-align: justify;
	padding: 1rem;
	background-color: rgb(253, 254, 255);
}

.post-content hr {
	width: 50%;
	color: #EEE;
	background-color: #EEE;
	margin-top: 2em;
	margin-bottom: 2em;
}

.post-bottom-row {
	background-color: #40394e;
	color: white;
	display: flex;
}

.post-info {
	min-width: 200px;
	padding: 1em 0;
	text-align: center;
	vertical-align: middle;
}

.post-actions {
	padding: 1em 0;
	text-align: right;
	flex-grow: 8;
	margin-right: 1em;
}

.post-action-buttons {
	margin: 0;
	list-style: none;
	text-align: right;
}

.post-action-button {
	display: inline;
	text-align: center;
	background-color: rgb(239, 242, 246);
	border-radius: 3px;
	padding: 0.25em 1em;
	margin-left: 1em;
	color: #343434;
	text-decoration: none;
}

.post-action-button:hover {
	background-color: white;
}

.post-action-buttons a {
	text-decoration: none;
}

.clears-list {
	background-color: #fffef5;
	padding: 1em;
	border: 1px solid rgb(200, 210, 220);
	margin: 1em;
}

.clears-list aside {
	color: rgb(140, 150, 160);
	text-align: right;
	font-style: italic;
}

.clears-list h2::before {
	content: "🎖️ ";
}

.disclaimer {
	line-height: calc(1ex / 0.32);
	text-align: center;
	color: #bbb;
	margin: 2em auto;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.5em;
}

@media only screen and (max-width: 960px) {
	.container {
		width: 100%;
	}

	.user-info {
		display: none;
	}

	.links {
		text-align: center;
	}

	.thread-list {
		margin: 0 0;
	}

	.thread-icon-header {
		display: none;
	}

	.thread-icon {
		display: none;
	}
}

@media only screen and (max-width: 720px) {
	.post-header {
		width: 100%;
	}
}