@import url('https://fonts.googleapis.com/css?family=Nunito:400,400i,700,700i');
/*   font-family: 'Nunito', sans-serif;   */

/*
 * General styling
 */

* {

	font-family: 'Nunito', sans-serif;
	margin: 0;
	padding: 0;
}

body {

	background: #424242;
}

.title {

	color: #a1b0ff;
	font-size: 23px;
}

a, .link {

	text-decoration: none;
	color: rgba(255, 244, 188, 0.25);
	transition: color 0.5s ease;
}

a:hover, .link:hover {

	color: rgba(255, 244, 188, 1);
	cursor: pointer;
}

.content {

	font-size: 20px;
	color: #ddd;
}

.content:hover {

	color: #ddd;
}

#body {

	opacity: 0;
	transition: opacity 0.25s ease;
}

/*
 * Header
 */

#header {

	background: #525252;
	padding: 15px;
	color: #bcffc0;
	font-size: 25px;
	position: relative;
	z-index: 10;
}

#header * {

	text-align: left;
	vertical-align: top;
	display: inline-block;
	background: #525252;
}

#header .prefix {

	padding-right: 25px;
	z-index: 10;
	vertical-align: middle;
}

#header nav a {

	font-size: 20px;
	padding-left: 10px;
}

#header .suffix {

	float: right;
	font-size: 22px;
	vertical-align: bottom;
}

#header .suffix * {

	padding-left: 10px;
}

/*
 * Forum
 */

.forum {

	width: 94%;
	margin-left: 2%;
}

.forum .wrapper {

	width: 100%;
}

.forum .block {

	background: #515151;
	padding-top: 10px;
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 5px;
	position: relative;
	left: 0;
	transition: all 0.5s ease;
	border-left: solid 3px #3c3c3c;
}

.forum .block:hover {

	left: 18px;
}

.forum .block * {

	padding: 10px;
	width: 100%;
	display: table-cell;
	color: #f4964b;
	cursor: pointer;
}

.forum .title {

	margin: 8px;
}

.forum .help-block {

	margin-bottom: 9px;
}

.forum .help-block * {

	color: #e3f982;
}

/*
 * Containers
 */

.container {

 	width: 95%;
 	margin: 20px 0;
 	margin-left: 2.5%;
 	background: #515151;
 	border-left: solid 3px #3c3c3c;
}

.container * {

	padding: 20px;
}

.danger {

	display: block;
	border-left: solid 3px #ff4545;
	transition: color 0.5s ease;
}

.danger:hover {

	color: #ff4545;
}

.warning {

	display: block;
	border-left: solid 3px #fd8e52;
	transition: color 0.5s ease;
}

.warning:hover {

	color: #fd8e52;
}

/*
 * Forums
 */

form {}

form input, form textarea {

	background: #515151;
	border: none;
	padding: 5px;
	outline: none;
	display: block;
}

form input.title {

	font-size: 23px;
	width: 50%;
}

form textarea {

	width: 50%;
	min-width: 50%;
	max-width: 50%;
	min-height: 100px;
	max-height: 550px;
}

form textarea.content {

	font-size: 18px;
}

form input[type="submit"] {

	background: transparent;
	font-size: 23px;
}

/*
 * Notication
 */

#notification {

	position: absolute;
	top: -100px;
	animation: slideFromUpDown 5s;
	width: 100%;
	background: #545454;
	color: #81bed4;
	z-index: 9;
	padding: 15px 0px;
	font-size: 30px;
	text-align: center;
}