/* CSS Document */
* {
	box-sizing: border-box;
}
body {
	font-family: 'PT Serif', serif;
	font-size: 16px;
	font-weight: 400;
	color: #5a4419;
}
header {
	text-align: center;
}
footer, #nav {
	text-align: center;
	margin: 20px auto;
	display: inline-block;
	border: 1px solid #ddd;
	border-radius: 20px;
	background-color: #f9f9f9;
	padding: 10px 30px;
	white-space: normal;
}
h1 {
	font-size: 26px;
	font-weight: 700;
	color: #97702d;
}
h2 {
	font-size: 22px;
	font-weight: 700;
	color: #97702d;
}
a {
	color: #33261e;
}
#container {
	text-align: center;
	width: 100%;
}
#nav > a, footer > a {
	margin: 0 10px;
	white-space: nowrap;
}
#main {
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 20px;
	background-color: #f9f9f9;
	padding: 0 30px 30px;
	display: block;
}
#support {
	margin: 10px auto;
	border: 1px solid #ddd;
	border-radius: 20px;
	background-color: #f9f9f9;
	padding: 0 30px 30px 30px;
	display: block;
	text-align: left;
}
/* mobile grid */
@media screen and (max-width: 759px) {
	#main {
		padding: 0 5px 30px;
	}
	.nomobile {
		display: none;
	}
}
.grayital {
	color: #97702d;
	font-style: italic;
}
.redital {
	color: red;
	font-style: italic;
}
.smaller {
	font-size: .9em;
}
.round_input {
	font-family: "PT Sans", Sans-serif;
	border-radius: 5px;
	border: solid 1px #ddd;
	padding: 5px;
	font-size: 16px;
	background-color: white;
	margin: 5px 3px;
	box-sizing: border-box;
}
.round_input:focus {
	background-color: #d5d2ca;
}
select {
	font-family: "PT Sans", Sans-serif;
	font-size: 16px;
	appearance: none;
	border: solid 1px #ddd;
	line-height: 1;
	background-color: white;
	margin: 5px 3px;
	box-sizing: border-box;
}
.cool_button {
	font-family: "PT Sans", Sans-serif;
	display: inline-block;
	vertical-align: baseline;
	margin: 5px 3px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	padding: 6px 18px;
	border-radius: .5em;
	color: white;
	border: none;
	background: #97702d;
	-webkit-appearance: none;
}
.cool_button:hover {
	background: #5a4419;
}
.cool_button:active {
	background: #33261e;
}
.codewrapper {
	float: left;
	margin: 0 20px 20px 0;
}
.code {
	font-family: 'Fira Mono', monospace;
	font-weight: 400;
	font-size: .9em;
	color: black;
	border: 1px solid #ddd;
	border-radius: 10px;
	background-color: white;
	padding: 10px 20px;
	margin: 5px 0 0 0;
	word-wrap: break-all;
}
.codearea {
	font-family: 'Fira Mono', monospace;
	font-weight: 400;
	font-size: .9em;
	color: black;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background-color: white;
	resize: vertical;
	overflow: auto;
	box-sizing: border-box;
	word-wrap: break-all;
}
.wrapme {
	/*word-wrap: break-word;*/
	/*overflow-wrap: break-word;*/
	/*word-break: break-all;*/
	display: table-cell;
	word-break: break-word; /* This doesn't work on Firefox but seems to work everywhere else. */
}
#blackbottom {
	animation: popup 0s 30s forwards;
	visibility: hidden;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.67;
	z-index: 998;
	height: 350px;
	width: 100%;
}
#donate_popup_30 {
	animation: popup 0s 30s forwards;
	visibility: hidden;
	z-index: 999;
	border: 1px solid black;
	background-color: #f9f9f9;
	max-width: 360px;
	height: 300px;
	padding: 0 20px;
	position: fixed;
	bottom: 25px;
	left: 50%;
	margin-top: -125px;
	margin-left: -180px;
	border-radius: 10px;
}
@keyframes popup {
	to {
		visibility: visible;
	}
}