.topic-editor-thing > .editor-wrap > .editor-contents {
	box-shadow: none;
}

/* New Topic CSS */

.topic-post {
	display: block;
	position: relative;
	padding: 20px 0;
	transition: 0.3s border-left-width, border-left-color, padding-left;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	background: #fff;
	border-radius: 6px;
	margin: 0 0 10px 0;
}
.topic-post:nth-child(even) {
	background-color: rgb(247, 247, 247);
}
.topic-post.highlighted {
	border: 1px solid #6092e2 !important;
}

.topic-post > .the_collapser {
	position: absolute;
	top: 5px;
	left: 5px;
	cursor: pointer;
}
.topic-post > .collapsed {
	display: none;
	font-style: italic;
	padding: 0 20px;
	color: rgb(119, 119, 119);
	max-width: 800px;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}
@media(max-width: 1000px)
{
	.topic-post > .collapsed { 
		white-space: initial; 
		overflow: auto;
		max-width: none;
	}
}
.topic-post.collapsed > .collapsed {
	display: block;
}
.topic-post.collapsed > .inner-post, .topic-post.collapsed > .user-information { display: none; }
.topic-post > .user-information,.topic-post > .inner-post {
	margin: 5px 110px;
}
.topic-post > .user-information > .avatar {
	position: absolute;
	top: 20px;
	left: 15px;
	max-width: 150px;
}
.topic-post > .user-information > div > .username {
	font-weight: bold;
	color: inherit;
}
.topic-post > .user-information .fal {
	margin-left: 5px;
}
.topic-post > .user-information > .avatar > img {
	border-radius: 50%;
	max-width: 75px;
	max-height: 75px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.topic-post > .user-information > div > .extra {
	font-size: 11px;
	color: rgb(180, 180, 180);
}
.topic-post > .user-information > div > .extra > a {
	color: rgb(180, 180, 180);
}

@media(max-width: 900px){
	.topic-post > .user-information > .avatar > img {
		border-radius: 50%;
		max-width: 50px;
		max-height: 50px;
	}
	.topic-post {
		padding: 10px;
		margin: 0px 0;
	}
	.topic-post > .user-information {
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		justify-content: flex-start; /* TODO: Talk to Loren about how it looks on his phone */
	}
	.topic-post > .user-information,.topic-post > .inner-post {
		margin: 0;
	}
	.topic-post > .user-information > .avatar {
		position: static;
		max-width: 55px;
		margin-right: 10px;
	}
}
.topic-post > .inner-post > .post {
	padding: 10px 0;
	word-break: break-word;
}
.topic-dataset {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-gap: 10px;

}
.topic-dataset.g1 {
	grid-template-columns: 100%;
}
.topic-dataset.g2 {
	grid-template-columns: 50% 50%;
}
.topic-dataset.g3 {
	grid-template-columns: 33% 33% 33%;
}
.topic-dataset.g4 {
	grid-template-columns: 25% 25% 25% 25%;
}
@media screen and (max-width: 901px)
{
	.topic-dataset {
		display: block;
	}
}
.topic-post .inner-post > .post pre {
	text-align: left;
}
.topic-dataset > .topic-dataset-container > div.image > img,
.topic-dataset > .topic-dataset-container > a > div.image > img {
	max-width: 100%;
	display: block;
	margin: 0 !important;
}
.topic-post .inner-post > .post .image > img,
blockquote > div > .image > img{
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 100%;
}
.topic-post > .inner-post > .post > h1,.topic-post > .inner-post > .post > h2,.topic-post > .inner-post > .post > h3 {
	text-align: left;
	font-size: 36px;
	line-height: 36px;
	font-weight: bold;
	padding: 0 !important;
}
.topic-post > .inner-post > .post > h2 {
	font-size: 24px;
	line-height: 24px;
}
.topic-post > .inner-post > .post > h3 {
	font-size: 18px;
	line-height: 18px;
}





.topic-post > .inner-post > .like-bar {
	padding: 10px 0 0 0;
}
.topic-post > .inner-post > .like-bar > .dropdown {
	float: right;
}
.topic-post > .inner-post > .like-bar > .dropdown > .dropdown-menu {
	left: auto !important;
	right: 0 !important;
	border: 1px solid #ccc;
	border-radius: 0;
	max-width: 180px;
}
.topic-post > .inner-post > .like-bar > .dropdown > a {
	font-weight: bold;
	text-decoration: none;
	margin-left: 5px;
	color: steelblue;
	font-size: 12px;
}
.topic-post > .inner-post > .like-bar > div {
	font-size: 12px;
	color: inherit;
	display: inline-block;
	position: relative;
}
.topic-post > .inner-post > .like-bar > .voting > .vote-module {
	opacity: 1;
	pointer-events: auto;
}
.topic-post > .inner-post > .like-bar > div > .vote-module {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom:0;
	background: rgba(255,255,255,0.8);
	color: #000;
	text-align: center;
	padding: 5px;
	opacity: 0;
	transition: opacity 0.1s;
	pointer-events: none;
}

.topic-post:hover > .inner-post > .like-bar .edit-bay {
	visibility: visible;
	opacity: 1;
}
.topic-post > .inner-post > .like-bar .edit-bay {
	margin-left: 5px;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.2s linear;
}
@media(max-width: 1000px){
	.topic-post > .inner-post > .like-bar .edit-bay {
		display: block;
		margin-top: 5px;
		margin-left: 0;
		opacity: 1 !important;
		visibility: visible !important;
	}
}
.topic-post > .inner-post > .like-bar > div > span.PostLikeBtn,
.topic-post > .inner-post > .like-bar > div > span.PostDislikeBtn,
.topic-post > .inner-post > .like-bar > div > span.ReportBtn,
.topic-post > .inner-post > .like-bar .edit-bay > a,
.topic-post > .inner-post > .like-bar .edit-bay > span {
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
	margin: 0 5px;
	transition: color 0.4s;
	color: steelblue;
	cursor: pointer;
}

.topic-post > .inner-post > .like-bar > div > span.PostLikeBtn.Checked,.topic-post > .inner-post > .like-bar > div > span.PostLikeBtn:hover {
	color: #009c58 !important;
}
.topic-post > .inner-post > .like-bar > div > span.PostDislikeBtn.Checked,.topic-post > .inner-post > .like-bar > div > span.PostDislikeBtn:hover {
	color: #c20046 !important;
}
.topic-post > .inner-post > .like-bar > div > .vote-count {
	margin-left: 10px;
}
.topic-post > .inner-post > .like-bar > .vote-count > .PostDislikeBtn { margin-left: 10px; }
.topic-post > .inner-post > .like-bar > .vote-count > .PostLikeBtn { margin-right: 10px; }

.topic-post > .inner-post > .like-bar > div > span.ReportBtn.Done {
	color: inherit;
	cursor: default;
	font-weight: normal;
}

/* Subscribe */
.notify-me > .notify-me-btn {
	color: #fff;
	background: rgb(80,149,217);
	padding: 6px;
	display: flex;
	justify-content: left;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.1s;
	opacity: 1;
	border-radius: 30px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.notify-me.favourite > .notify-me-btn {
	background-color: #992f21;
}
.notify-me-btn.subscribed,
.notify-me.favourite > .notify-me-btn.subscribed {
	color: #000;
	background: #fff;
}
.notify-me-btn.updating {
	opacity: 0.3;
}
.notify-me > span > .unsubscribe { display: none; }
.notify-me > .reply-btn {
	flex: 0;
}
.notify-me > span > .notification,.reply-btn > .notification {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right: 10px;
	cursor: pointer;
	background-color: rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
}

.notify-me > span.subscribed > .notification {
	background-color: rgba(20, 65, 164, 0.8);
	color: #fff;
	font-weight: bold;
}
.notify-me.favourite > span.subscribed > .notification {
	background-color: rgba(255, 87, 87, 0.8);
}
.notify-me > span.subscribed > .subscribe { display: none; }
.notify-me > span.subscribed > .unsubscribe { display: inline; }

@media(max-width: 1000px){
/*
	.notify-me > span {
		flex: 0; 
	}
	.notify-me > span > .subscribe,
	.notify-me > span > .unsubscribe { display: none !important; }
*/
}

.forum-topic-post-leader {
	display: flex;
	background: #fff;
	margin: 10px 0;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 8px;
	align-items: center;
	color: #000;
	transition: all .2s ease-in-out;
}
.forum-topic-post-leader:hover {
	transform: scale(1.1);
}
.forum-topic-post-leader > .ava {
	width: 45px;
}
.forum-topic-post-leader > .ava > img {
	border-radius: 50%;
}
.forum-topic-post-leader > span.info > a {
	display: block;
	color: inherit;
}
.forum-topic-post-leader > span.info > span.karma {
	font-size: 11px;
	display: block;

}
a.forum-karma-stats-link-muted {
	color: inherit;
}
a.forum-karma-stats-link-muted:hover {
	text-decoration: underline;
}