.single_post .single_post_container {
	display: flex;
	align-items: stretch;
}

.single_post .single_post_container .post_summary {
	padding-right: var(--s-6);
	border-right: 1px solid var(--border-subtle);
	flex-grow: 1;
	flex-shrink: 1;
}

.single_post .single_post_container .post_votes {
	padding-left: var(--s-6);
	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;
}
.post_votes_counter {
	font-size: 24px;
}

.single_post_content {
	display: -webkit-box !important;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single_post_bottombar {
	margin-top: 10px;
}

#feedhub-topbar {
	display: flex;
	align-items: start;
	justify-content: space-between;
	border-color: var(--border-subtle);
}
#feedhub-topbar #feedhub-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-grow: 1;
}
#feedhub-topbar #feedhub-filters > div {
	max-width: calc(25% - .5rem);
	min-width: calc(25% - .5rem);
	width: calc(25% - .5rem);
	margin-right: .5rem;
}
#feedhub-topbar #feedhub-filters > div:nth-child(4n) {
	margin-right: 0;
}
#feedhub-topbar #mobile-add-post-toggler {
	display: none;
}
#feedhub-topbar #feedhub-filters .form-control,
#feedhub-topbar #feedhub-filters .select2-container .select2-selection {
	background-color: #ffffff;
}
#feedhub-topbar #add-post-toggler {
	margin-left: 1rem;
}

/* Post Comments Section */
.post_comment_author {
	font-size: 16px;
	font-weight: 500;
}
.user-profile-image {
	background: #f9f9f9;
	border: 1px solid var(--border-subtle) !important;
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.single_post_comment:not(:last-child)::before {
	/* content: ''; */
	position: absolute;
	background: #b6c7d6;
	width: 1px;
	height: calc(100% - 60px);
	left: 20px;
	top: 50px;
	z-index: 2;
}


@media (max-width: 767px) {
	.single_post_header {
		font-size: 18px;
		padding: 5px 15px !important;
		padding-top: 0 !important;
	}
	.single_post .single_post_container .post_votes {
		min-width: 50px;
	}
	#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%;
		display: flex;
		justify-content: center;
		align-items: center;
		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 */


/* Roadmap */
.timeline_area {
	position: relative;
	z-index: 1;
}
.single-timeline-area {
	position: relative;
	z-index: 1;
	padding-left: 60px;
	padding-bottom: 40px;
}

.single-timeline-area .timeline-date {
	position: absolute;
	width: 0px;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 60px;
}
.single-timeline-area .timeline-date::after {
	position: absolute;
	width: 1px;
	height: 100%;
	content: "";
	background-color: #b6c7d6;
	top: 0;
	right: 31px;
	z-index: 1;
}
.single-timeline-area .timeline-date::before {
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #f69220;
	content: "";
	top: 6px;
	right: 24px;
	z-index: 5;
	/* margin-top: -5.5px; */
}
.single-timeline-area .timeline-section-point-header {
	font-size: 18px;
	font-weight: 500;
	padding-left: 20px;
	position: relative;
}
.single-timeline-area .timeline-section-point-header:before {
	position: absolute;
	width: 33px;
	height: 1px;
	content: "";
	background-color: #b6c7d6;
	top: 13px;
	left: -20px;
	z-index: 1;
}

.single-timeline-area .single-timeline-content {
	position: relative;
	z-index: 1;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	margin-top: 15px;
	border: 1px solid var(--border-subtle);
	cursor: pointer;
	height: calc(100% - 30px);
	background-color: #ffffff;
}
.single-timeline-area .single-timeline-content:hover {
	-webkit-box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.125);
	box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.125);
}
.single-timeline-area .single-timeline-content .checkpoint-footer {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
}

@media only screen and (max-width: 575px) {
	.single-timeline-area .single-timeline-content {
		padding: 20px;
	}
}
.single-timeline-area .single-timeline-content .timeline-text h4 {
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	font-weight: 500;
}
.single-timeline-area .single-timeline-content .timeline-text p {
	/*font-size: 13px;*/
	margin-top: 10px;
	margin-bottom: 40px;
}

#roadmap-topbar {
	margin-bottom: 10px;
	display: flex;
	align-items: end;
	justify-content: space-between;
}
#roadmap-topbar #roadmap-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
#roadmap-topbar #roadmap-filters > div {
	max-width: calc(25% - .5rem);
	min-width: calc(25% - .5rem);
	width: calc(25% - .5rem);
	margin-right: .5rem;
}
#roadmap-topbar #roadmap-filters > div:nth-child(4n) {
	margin-right: 0;
}
#roadmap-topbar #mobile-add-post-toggler {
	display: none;
}
/* Roadmap */

.feedhub_filters_container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
.feedhub_filters_container > div {
	max-width: calc(25% - .5rem);
	min-width: calc(25% - .5rem);
	width: calc(20% - .5rem);
	margin-right: .5rem;
}
.feedhub_filters_container div:nth-child(4n) {
	margin-right: 0;
}

@media print {
	#feedhub-topbar {
		display: none;
	}
}