.feedhub-posts-list {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
}
.single_post {
	width: calc(50% - .5rem);
	border-radius: .25rem;
	padding: 0;
	border: 1px solid #d1d1d1;
	margin-bottom: 1rem;
	/*font-size: 14px;*/
	background-color: #ffffff;
}
.single_post:nth-child(odd) {
	margin-right: .5rem;
}
.single_post:nth-child(even) {
	margin-left: .5rem;
}

.single_post .single_post_container {
	display: flex;
	align-items: stretch;
}

.single_post .single_post_container .post_summary {
	border-right: 1px solid #d1d1d1;
	/* padding: 15px; */
	flex-grow: 1;
	flex-shrink: 1;
}

.single_post .single_post_container .post_votes {
	padding: 15px;
	text-align: center;
	min-width: 100px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
	flex-grow: 0;
	/* color: #f28007; */
}
.post_votes_counter {
	font-size: 20px;
}

.single_post .single_post_container .post_summary .single_post_topbar {
	padding: 10px 15px;
}

.single_post_container .badge {
	background-color: #425b76 !important;
	color: #ffffff !important;
}

.single_post_header {
	/* margin-bottom: 10px; */
	padding: 15px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
	color: #2863F6 !important;
}

.single_post_content {
	/*font-size: 13px;*/
	margin-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	display: -webkit-box !important;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 65px;
}

.single_post_bottombar {
	padding: 5px 15px;
	margin-top: 10px;
	flex-wrap: wrap;
	display: none !important;
}

/* Post Comments Section */
.post_comment_author {
	font-size: 16px;
	font-weight: 600;
}
.user-profile-image {
	background: #f9f9f9;
	border: 1px solid #d1d1d1 !important;
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.single_post_comment:not(:last-child)::before {
	/* content: ''; */
	position: absolute;
	background: #d1d1d1;
	width: 1px;
	height: calc(100% - 60px);
	left: 20px;
	top: 50px;
	z-index: 2;
}


@media (max-width: 767px) {
	.single_post .single_post_container .post_summary {
		/* padding: 10px; */
	}
	.single_post_header {
		font-size: 18px;
		padding: 5px 15px !important;
		padding-top: 0 !important;
	}
	.single_post_bottombar {
		font-size: 14px;
	}
	.single_post .single_post_container .post_votes {
		padding: 10px;
		min-width: 50px;
		font-size: 14px;
	}
	.post_votes_counter {
		font-size: 20px;
	}
	#newPostModalForm {
		padding: 0 !important;
		padding-top: 1rem !important;
	}

	#feedhub-topbar {
		flex-wrap: wrap;
	}
}

@media (max-width: 992px) {
	#feedhub-topbar #add-post-toggler {
		display: none;
	}
	#feedhub-topbar #mobile-add-post-toggler {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: #1963D1;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		font-weight: 600;
		position: fixed;
		bottom: 1rem;
		left: 1rem;
		z-index: 10000;
		cursor: pointer;
	}
	#feedhub-topbar #mobile-add-post-toggler > i {
		font-size: 30px;
		color: #fff;
	}
}
/* Post Comments Section */


/* css overrides for feedhub content START */
.feedhub_post_content ol,
.feedhub_post_content ul {
	margin: 1rem 0 !important;
	padding-left: 40px !important;
}
.feedhub_post_content ul li {
	list-style: disc;
}
.feedhub_post_content ol ol,
.feedhub_post_content ol ul,
.feedhub_post_content ul ol,
.feedhub_post_content ul ul {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
/* css overrides for feedhub content END */

.feedhub_filters_container .form-floating {
	width: 200px;
	max-width: 200px;
	min-width: 200px;
}
