/** forum css */


	#forum_home_text {
		padding: 20px;
		border: 1px solid #ffd300;
		border-radius: 5px;
		margin-bottom: 20px;
	}

	#forum_home_text h1 {
		color: #ffd300;
		font-size: 1.3em;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	#forum_home_text p {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.forum_testing {
		opacity: 0.3;
		transition: all 0.5s;
	}

	.forum_testing:hover {
		opacity: 1;
	}


	.dont-break-out {

	  /* These are technically the same, but use both */
	  overflow-wrap: break-word;
	  word-wrap: break-word;

	  -ms-word-break: break-all;
	  /* This is the dangerous one in WebKit, as it breaks things wherever */
	  word-break: break-all;
	  /* Instead use this non-standard one: */
	  word-break: break-word;

	  /* Adds a hyphen where the word breaks, if supported (No Blink) */
	  -ms-hyphens: auto;
	  -moz-hyphens: auto;
	  -webkit-hyphens: auto;
	  hyphens: auto;

	}

	.topic_category_wrapper {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 5px;
		background: #343434;
		padding: 10px;
		transition: all 0.5s;
		border-radius: 5px;
	}

	.topic_category_description {
		margin: 0;
		padding: 0;
		font-size: 0.9em;
	}

	.topic_category_wrapper:hover {
		background: #444444;
	}

	.topic_category_image {
		width: 100px;
	}

	.topic_category_image:hover {
		cursor: pointer;
	}

	.topic_category_image img {
		width: 100%;
		height: auto;
	}

	.topic_category_name {
		flex: 1;
		margin-left: 20px;
		padding: 10px;
	}

	.topic_category_name a {
		font-size: 1.2em;
		text-decoration: none;
		color: #ffffff !important;
	}

	.topic_category_postcount {
		text-align: right;
	}

	.topic_category_postcount i {
		margin-right: 10px;
		

	}
	
	.topic_category_lastpost_by {
		font-size: 0.7em;
		margin-top: 10px;
	}



	#topic_category_description {
		margin-top: 20px;
		margin-bottom: 20px;
		padding: 10px;
		border: 1px solid #343434;
		border-radius: 5px;
	}



	.topic_wrapper {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 5px;
		background: #343434;
		padding: 10px;
		transition: all 0.5s;
		border-radius: 5px;
	}

	.topic_wrapper:hover {
		background: #444444;
	}

	.topic_image {
		width: 75px;
		height: 75px;
		background-size: cover;
		background-position: center;
		border-radius: 50%;
	}

	.topic_image:hover {
		cursor: pointer;
	}



	.topic_title_wrapper {
		flex: 1;
		margin-left: 20px;
		padding: 10px;
	}

	.topic_title a {
		font-size: 1em;
		text-decoration: none;
		color: #ffffff !important;
		
	}

	.topic_title a:hover {
		text-decoration: underline;
	}

	.topic_date_and_author {
		display: inline-block;
		padding: 5px;
		border-radius: 5px;
		font-size: 0.8em;
		margin-top: 5px;
		color: #121212;
	}

	.topic_postcount {
		
		text-align: right;
		background-color: rgba(0, 0, 0, 0);

	}

	.topic_postcount i {
		margin-right: 10px;
	}

	.topic_lastauthor {
		margin: 0;
	}

	.topic_lastauthor span {
		display: inline-block;
		font-size: 0.8em;
		padding: 5px;
		background-color: rgba(0, 0, 0, 0.2);
	}

	.topic_details div {
		margin: 5px;
	}

	.page_numbers {
		margin-top: 50px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.pagenumber {
		border-radius: 5px;
	}

	.pagenumber a {
		display: block;
		padding: 10px;
		background: #000000;
		margin: 5px;
		border-radius: 5px;
	}

	.pagenumber a:hover, .pageactive {
		background: #343434;
	}

	.pagenumber a {
		text-decoration: none;
	}

	.forum_button {
		padding: 8px;
		background: #ffd300;
		margin-bottom: 20px;
		font-family: 'Montserrat', sans-serif;
		border: 1px solid #ffd300;
		font-size: 1.1em;
		border-radius: 5px;
		color: #121212;
		transition: all 0.5s;

	}

	.forum_button:hover {
		opacity: 0.6;
		cursor: pointer;
	}




	#topic {
		display: none;
		background: #343434;
		padding: 10px;
		transition: all 0.5s;
		border: 1px solid #232323;
	}

	#topic_flex {
		background: #454545;
		padding: 10px;
		display: flex;
	}

	#topic_author_wrapper {
		background: #232323;
		padding: 10px;
		margin-top: 5px;
		margin-bottom: 5px;
		display: flex;
	}

	#topic_author_avatar {
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	#topic_author_avatar img {
		width: 100%;
		height: 100%;
		border-radius: 50%;
	}

	#topic_author {
		font-size: 1.2em;
	}

	#topic_date {
		margin-top: 5px;
		font-size: 0.9em;
	}



	.posts_topic_title {
		flex: 1;
		font-size: 1.4em;
		font-weight: bold;
	}



	#topic_media {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	#topic_media img {
		max-width: 600px;
		height: auto;
		border-radius: 10px;
	}

	#topic_message {
		background:  #212121;
		padding: 10px;
		border-radius: 5px;
		margin-bottom: 20px;
		white-space: pre-line;
	}

	/** posts **/

	#posts { display: none; }

	.posts_wrapper {
		background: #343434;
		
		border: 1px solid #232323;
		margin-top: 20px;
	}


	.posts_wrapper {
		display: flex;
	}


	.posts_author {
		background-color: rgba(0, 0, 0, 0.2);
		text-align: center;
		width: 120px;
		padding: 10px;
	}

	.posts_author_image img {
		width: 95px;
		height: 95px;
		border-radius: 5px;
	}

	.posts_author_joindate {
		margin-top: 10px;
		font-size: 0.7em;
	}

	.posts_author_joindate span {
		margin-top: 5px;
		display: block;
		padding: 3px;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.post_message_wrapper {
		padding: 10px;
		flex: 1;
	}

	.posts_message_header {
		display: flex;
		border-bottom: 1px solid #525252;
		padding: 5px;
		margin-bottom: 10px;
	}


	.posts_date_posted {
		font-size: 0.9em;
		
	}

	.posts_share_post {
		font-size: 1.2em;
		flex: 1;
		text-align: right;
		
	}

	.posts_share_post a {
		text-decoration: none;
	}

	.posts_message {
		white-space: pre-line;
	}


	#reply {
		margin-top: 10px;
		background: #343434;
	}

	#reply_title {
		background: #121212;
		color: #ffd300;
		font-size: 1.4em;
		font-weight: bold;
		padding: 10px;
	}

	#reply_text_box {
		padding: 10px;
		height: 200px;
	}

	#reply_text_box textarea {
		width: 100%;
		height: 100%;
		padding: 10px;
		background: #cccccc;
		border: 1px solid #cccccc;
		border-radius: 5px;
		color: #121212;
		font-family: 'Montserrat', sans-serif;
	}

	#reply_button {
		padding: 10px;
	}

	#reply_button .submitme {
		font-family: 'Montserrat', sans-serif;
		font-size: 1.1em;
		background: #121212;
		color: #ffffff;
		padding: 10px;
		border: 1px solid #121212;
		border-radius: 5px;
		transition: all 0.5s;
	}

	#reply_button .submitme:hover {
		cursor: pointer;
		opacity: 0.8;
	}