.sh-button-row .pagination .pages {
	font-size: 12px;
	font-weight: 500;
	color: var(--sh-text-light);
	padding-right: var(--sp-3);
}

.sh-button-row .pagination .pagination_previous,
.sh-button-row .pagination .pagination_page,
.sh-button-row .pagination .pagination_current,
.sh-button-row .pagination .pagination_next {
	background-color: var(--sh-area-background-light);
	color: var(--sh-very-light-clr);
	padding: var(--sp-2);
	border-radius: var(--sp-1);
	transition: all 0.3s ease;
}

.sh-button-row .pagination .pagination_previous:hover,
.sh-button-row .pagination .pagination_next:hover,
.sh-button-row .pagination .pagination_previous:hover,
.sh-button-row .pagination .pagination_page:hover {
	background-color: var(--sh-area-background-reset);
}

.sh-button-row .pagination .pagination_page {
	padding: var(--sp-2) var(--sp-3);
	margin: var(--sp-0) var(--sp-2);
}

.sh-button-row .pagination .pagination_current {
	background-color: var(--sh-link-hover-clr);
	padding: var(--sp-2) var(--sp-3);
	font-weight: 700;
}

.sh-button-row .sh-form-button {
	background-color: var(--sh-area-background-reset);
	padding: var(--sp-2) var(--sp-4);
	font-weight: 700;
	border-radius: var(--sp-1);
	transition: all 0.3s ease;
}

.sh-button-row .sh-form-button:hover {
	background-color: var(--sh-link-hover-clr);
}

.sh-topic .sh-topic-header {
	display: flex;
	margin: var(--sp-4) var(--sp-0);
	grid-gap: var(--sp-10);
}

.sh-topic .sh-topic-header .sh-topic-header-content {
	flex: 1 0 70%;
	background-color: var(--sh-area-background-reset);
	border-radius: var(--sp-2);
	border: 1px solid var(--sh-area-background-light);
	display: flex;
	align-items: center;
	grid-gap: var(--sp-7);
	padding: var(--sp-4) var(--sp-0) var(--sp-4) var(--sp-7);
}

.sh-topic .sh-topic-header .sh-topic-header-content h1 {
	padding-bottom: 2px !important;
}

.sh-topic .sh-topic-header .sh-topic-header-content img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
}

.sh-topic .sh-topic-header .sh-form-button {
    background-color: var(--sh-area-background-reset);
    padding: var(--sp-0) var(--sp-7);
    font-weight: 700;
    border-radius: var(--sp-1);
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
	height: 100%;
}

.sh-topic .sh-topic-header .sh-form-button:hover {
	background-color: var(--sh-link-hover-clr);
}

.sh-topic .sh-topic-header h1 {
	margin: var(--sp-0);
	padding: var(--sp-0);
}

.sh-topic .sh-topic-header-buttons {
	display: flex;
	align-items: center;
	grid-gap: var(--sp-3);
}

.sh-topic .sh-topic-header-buttons form {
	margin-bottom: var(--sp-2) !important;
}

.sh-topic .sh-topic-header-buttons form#moderator_options {
	margin-bottom: var(--sp-0) !important;
}

.sh-topic .sh-topic-header-buttons form select {
	width: 100%;
}

.sh-topic-footer {
	margin: var(--sp-5) var(--sp-0);
}

.sh-topic-footer .sh-topic-footer-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sh-topic-footer .sh-topic-footer-nav a {
	font-size: 14px;
}

.sh-topic-footer .sh-topic-footer-nav a:first-child i {
	padding-right: var(--sp-2);
}

.sh-topic-footer .sh-topic-footer-nav a:last-child i {
	padding-left: var(--sp-2);
}

.sh-topic-footer .sh-form {
	margin-top: var(--sp-6);
}

/* Post */

article.sh-post {
    background-color: var(--sh-area-background-dark);
	display: grid;
	grid-template-columns: 350px 1fr;
	grid-gap: var(--sp-6);
	margin-bottom: var(--sp-4);
	border-radius: var(--sp-2);
	padding-right: var(--sp-6);
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.deleted_post_collapsed {
    background-color: var(--sh-area-background-light);
	margin: var(--sp-4) var(--sp-0);
	border-radius: var(--sp-2);
	padding: var(--sp-4) var(--sp-6);
	box-shadow: 0 0 0 5px rgba( var(--sh-form-input-border-focus), 0.2 );
	border: 1px solid rgba( var(--sh-form-input-border-focus), 1 );
}

.sh-threadnotes-box {
	margin: var(--sp-7) var(--sp-0) var(--sp-7) var(--sp-0) !important;
}

article.sh-post.trow_selected,
article.sh-post.deleted_post,
.sh-threadnotes-box {
	box-shadow: 0 0 0 5px rgba( var(--sh-form-input-border-focus), 0.2 ) !important;
	border: 1px solid rgba( var(--sh-form-input-border-focus), 1 ) !important;
}

article.sh-post aside {
    background-color: var(--sh-area-background-reset);
	border-radius: var(--sp-2);
	padding: var(--sp-9) var(--sp-4);
}

article.sh-post aside>div {
	position: sticky;
	top: var(--sp-8);
}

article.sh-post aside .sh-post-author-buttons {
	margin-bottom: var(--sp-6);
}

article.sh-post aside .sh-post-author-buttons ul {
	padding: var(--sp-0);
	margin: var(--sp-0);
	list-style: none;
	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: var(--sp-4);
}

article.sh-post aside .sh-post-author-buttons ul li a {
	display: block;
    background-color: var(--sh-main-nav-tab);
	padding: var(--sp-5) var(--sp-6);
	border-radius: var(--sp-2);
	font-size: 16px;
	transition: all 0.3s ease;
}

article.sh-post aside .sh-post-author-buttons ul li a:hover {
    color: var(--sh-very-light-clr);
    background-color: var(--sh-register-button-hover);
    box-shadow: 0 0 8px rgb( var(--sh-register-button-hover-shadow), 0.6 );
}

article.sh-post aside h3 {
	font-size: 18px;
	padding: var(--sp-0);
	margin: var(--sp-0);
	text-align: center;
}

article.sh-post aside .sh-post-author-avatar {
	position: relative;
	text-align: center;
	margin-top: var(--sp-6);
}

article.sh-post aside .sh-post-author-avatar img {
	width: 100px;
	height: 100px;
	border-radius: var(--sp-10);
}

article.sh-post aside .sh-post-author-avatar .sh-post-author-status {
	background-color: var(--sh-server-online);
	width: 10px;
	height: 10px;
	border-radius: var(--sp-10);
	position: absolute;
	right: 40%;
	bottom: var(--sp-1);
}

article.sh-post aside .sh-post-author-avatar .sh-post-author-status.sh-post-author-status-offline {
	background-color: var(--sh-server-offline);
}

article.sh-post aside .sh-post-author-avatar .sh-post-author-status.sh-post-author-status-away {
	background-color: var(--sh-server-away);
}

article.sh-post aside .sh-post-author-stats {
	margin-top: var(--sp-6);
}

article.sh-post aside .sh-post-author-stats ul {
	padding: var(--sp-0);
	margin: var(--sp-0);
	list-style: none;
	
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: var(--sp-2);
}

article.sh-post aside .sh-post-author-stats ul li {
    background-color: var(--sh-main-nav-tab);
	padding: var(--sp-4) 20px;
	border-radius: var(--sp-2);
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: var(--sp-2);
}

article.sh-post aside .sh-post-author-stats ul li i {
	vertical-align: middle;
    position: relative;
    top: -2px;
}

article.sh-post aside .sh-post-author-more {
	margin-top: var(--sp-6);
}

article.sh-post aside .sh-post-author-more ul {
	padding: var(--sp-0);
	margin: var(--sp-0);
	list-style: none;
}

article.sh-post aside .sh-post-author-more ul li {
	display: flex;
	align-items: center;
	grid-gap: var(--sp-2);
	margin-top: var(--sp-3);
}

article.sh-post aside .sh-post-author-more ul li:first-child {
	margin-top: var(--sp-0);
}

article.sh-post aside .sh-post-author-more ul li div:first-child {
	font-weight: 600;
}

article.sh-post .sh-post-content {
	position: relative;
	padding-bottom: 90px;
}

article.sh-post .sh-post-content .sh-post-content-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--sp-8) var(--sp-0);
}

article.sh-post .sh-post-content .sh-post-content-head .status_type {
	margin-right: var(--sp-3);
}

article.sh-post .sh-post-content .sh-post-content-head .sh-post-content-head-icon {
    background-color: var(--sh-main-nav-tab);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--sp-2);
    font-size: 16px;
	margin-right: var(--sp-6);
    transition: all 0.3s ease;
}

article.sh-post .sh-post-content .sh-post-content-head .sh-post-content-head-date {
	display: flex;
	align-items: center;
}

article.sh-post .sh-post-content .sh-post-content-head .post_date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
}

article.sh-post .sh-post-content .sh-post-content-head .post_date .post_edit {
	flex: 1 0 100%;
	color: var(--sh-text-light);
	font-size: 12px;
}

article.sh-post .sh-post-content .sh-post-content-head .post_date .post_edit a {
	color: var(--sh-text-light);
}

article.sh-post .sh-post-content .sh-post-content-body {
	font-size: 14px;
	word-break: break-all;
}

article.sh-post .sh-post-content .sh-post-content-footer {
	margin: var(--sp-4) var(--sp-0);
	position: absolute;
	bottom: var(--sp-0);
	width: 100%;
	
	display: flex;
	align-items: center;
	justify-content: space-between;
}

article.sh-post .sh-post-content .sh-post-content-footer ul {
	padding: var(--sp-0);
	margin: var(--sp-0);
	list-style: none;
	display: flex;
	align-items: center;
	
	grid-gap: var(--sp-3);
}

article.sh-post .sh-post-content .sh-post-content-footer ul>li>a {
    background-color: var(--sh-main-nav-tab);	
	display: block;
	padding: var(--sp-4) var(--sp-7);
	font-size: 14px;
	border-radius: var(--sp-10);
	transition: all 0.3s ease;
}

article.sh-post .sh-post-content .sh-post-content-footer ul>li>a i {
    vertical-align: middle;
    position: relative;
    top: -2px;
    padding-left: var(--sp-1);
}

article.sh-post .sh-post-content .sh-post-content-footer ul>li>a:hover,
article.sh-post .sh-post-content .sh-post-content-footer ul>li>a.postbit_multiquote_on {
	cursor: pointer;
	color: var(--sh-very-light-clr);
    background-color: var(--sh-register-button-hover);
    box-shadow: 0 0 8px rgb( var(--sh-register-button-hover-shadow), 0.6 );
}

.sh-custom-menu.sh-post-edit-menu {
	z-index: 9999;
	max-width: 220px;
	min-width: 220px;
}

.sh-custom-menu.sh-post-edit-menu li a {
    display: block;
    padding: var(--sp-3) var(--sp-5);
    color: var(--ns-menu-light-clr);
    transition: all 0.3s ease;
}

.sh-quickreply #message {
	width: 100% !important;
}

.sh-quickreply .sh-message {
    background-color: var(--sh-main-nav-tab);
	text-align: left;
	border: 1px solid transparent;
}

.sh-quickreply .sh-quickreply-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: var(--sp-4);
	margin-top: var(--sp-4);
}

.sh-quickreply .sh-quickreply-buttons button {
    background-color: var(--sh-main-nav-tab);
	font-size: 14px;
	font-weight: 700;
	padding: var(--sp-4) var(--sp-0);
	flex: 1;
}

.sh-quickreply .sh-quickreply-buttons button:hover {
	background-color: var(--sh-register-button-hover);
}

.sh-post-author-mobile {
	display: none;
}

article.sh-post aside.sh-post-author-mobile {
	padding: var(--sp-3) var(--sp-6);
}

article.sh-post aside.sh-post-author-mobile>div {
	position: unset;
	display: flex;
	align-items: center;
	grid-gap: var(--sp-3);
}

article.sh-post aside.sh-post-author-mobile .sh-post-author-avatar {
	margin-top: var(--sp-0);
}

article.sh-post aside.sh-post-author-mobile .sh-post-author-avatar .sh-post-author-status {
	right: var(--sp-0);
}

article.sh-post aside.sh-post-author-mobile .sh-post-author-avatar img {
	width: 40px;
	height: 40px;
}

article.sh-post aside.sh-post-author-mobile h3 {
	text-align: left;
}

article.sh-post aside.sh-post-author-mobile .sh-post-author-head>div:first-child {
	margin-bottom: var(--sp-2);
}

@media screen and (max-width: 979px) {
	.sh-topic .sh-topic-header {
		flex-wrap: wrap;
		grid-gap: var(--sp-2);
	}
	.sh-button-row .pagination .pagination_page,
	.sh-button-row .pagination .pagination_current {
		margin: var(--sp-1) var(--sp-2);
		display: inline-block;	
	}
	.sh-topic .sh-topic-header .sh-topic-header-content {
		flex: 1 0 100%;
		padding: var(--sp-4) var(--sp-6);
	}
	.sh-topic .sh-topic-header-buttons {
		flex-wrap: wrap;
	}
	.sh-topic .sh-topic-header-buttons>* {
		flex: 1 0 100%;
	}
	.sh-topic .sh-topic-header .sh-form-button {
		display: block;
		height: auto;
		padding: var(--sp-3);
		text-align: center;
	}
	article.sh-post {
		grid-template-columns: 1fr;
		padding-right: var(--sp-0);
	}
	article.sh-post .sh-post-content {
		padding-bottom: var(--sp-3);
	}
	article.sh-post aside.sh-post-author,
	article.sh-post .sh-post-content .sh-post-content-head,
	.sh-topic .sh-topic-header .sh-topic-header-content>div:first-child {
		display: none;
	}
	.sh-post-author-mobile {
		display: block;
	}
	article.sh-post .sh-post-content .sh-post-content-body {
		padding: var(--sp-2) var(--sp-6);
	}
	article.sh-post .sh-post-content .sh-post-content-footer {
		position: unset;
		padding: var(--sp-0) var(--sp-6);
	}
	article.sh-post .sh-post-content .sh-post-content-footer,
	article.sh-post .sh-post-content .sh-post-content-footer ul {
		flex-wrap: wrap;
	}
	article.sh-post .sh-post-content .sh-post-content-footer ul>li {
		flex: 1 0 33%;
	}
	article.sh-post .sh-post-content .sh-post-content-footer ul>li>a {
		padding: var(--sp-3);
		text-align: center;
	}
}

		