:root {
/* --bg-color: #141414;
--bg-color-light: #1d1d1d;
--fg-color: #ccc;
--hl-color: #999999;

--blue: #5385F2;
--blue: #84c590;

*/

--headerheight: 42px;
--headertransition: 0.65s ease;

--bg-color: #141414;
--bg-color-light: #1d1d1d;

--white: #ECEDEC;
--gold: #B8B994;
--green: #5E9F45;
--orange: #B86648;

}


html, body {
	background-color: var(--bg-color);
	color: var(--white);
	font-family: 'Courier New', Courier, monospace;
	font-weight: normal;
	font-size: 18px;
	box-sizing: border-box;
	margin: 0;
}

html, body, div, textarea, select, main, section, h1, h2 {
	box-sizing: border-box;
}

div, section {
	max-width: 100%;
}


a {
	color: var(--blue);
}

header {
	margin: 0;
	padding: 16px 12px 12px;
	background-color: var(--bg-color-light);
	height: var(--headerheight);
	overflow: hidden;
	display: grid;
	grid-template-columns: min-content auto 20px;
	grid-template-rows: var(--headerheight) auto;
	transition: height var(--headertransition);
}

header.open {
	height: auto;
}

main {
	padding: 24px 8px;
	margin: 0;
	padding: 0;
	display: grid;
	grid-column-gap: 24px;
	grid-template-columns: min-content auto;
}

section {
	padding: 12px 8px;
}

a {
	text-decoration: none;
	color: var(--gold);
}

h1 {

	display: inline-block;
	font-weight: normal;
	color: var(--white);
	font-size: 1.6em;
	margin: 0;
	white-space: nowrap;
}

#arrows {
	margin: -10px 0 0 24px;
	transition: 2s;
}

#arrows div {
	display: inline-block;
	font-size: 2.4em;
	transition: 3s;
}

#arrow1 {
	transform: rotate(50deg);

}

#arrow2 {
	transform: rotate(300deg);
}

#menu_button {
	color: var(--white);
	text-align: center;
	transition: all var(--headertransition);
}

#menu_button.open {
	color: var(--orange);
	transform: rotate(180deg);
}

#welcome_message {
	font-weight:  100;
	line-height: 1.4em;
	max-width: 860px;
	margin: 12px auto;
	padding: 4px;
	grid-column: 1 / 4;
	grid-row: 2 / 3;
}

h2 {
	font-weight: normal;
	color: var(--green);
	font-size: 1.4em;
	margin: 18px 0;
}

h3 {
	font-weight: normal;
	color: var(--orange);
	font-size: 1.2em;
	margin: 18px 0;
}


#get_share_link, .plus {
	font-size: 1.1em;
	padding: 0.5px 0px 0;
	margin-left: 8px;
}

#get_share_link {
	padding: 6px 24px;
	margin-left: 0px;
	border: 1px solid var(--white);
	border-radius: 6px;
	text-align: center;
}

#share_area {
	width: 350px;
	/* text-align: center; */
}

input.clocks, input.patch_info, textarea {
	color: var(--white);
	background-color: var(--bg-color);
	font-family: inherit;
	font-size: inherit;
	padding: 2px 6px;
	width: 40px;
	border: 1px solid var(--white);
	border-radius: 0;
}

input.patch_info, textarea {
	width: 340px;
}

select {
	border-radius: 0;
}
select.patch_info {
	width: 340px;
}

textarea {
	padding-top: 4px;
}

#author {
	height: 3.9em;
}

#patch_notes {
	height: 6.9em;
}

.item_category {
	color: var(--gold);
	padding: 0 0 12px 12px;
}

.item {
	display: grid;
	padding-left: 28px;
	opacity: 0.5;
}

.active {
	opacity: 1;
}

.item.patch_info {
	grid-template-columns: 134px min-content auto;
}

.item.clocks {
	grid-template-columns: 130px min-content 110px 104px;
	grid-column-gap: 4px;
}

.item.knobs {
	grid-template-columns: 320px auto;
}

.item.jacks {
	grid-template-columns: 190px 0px max-content max-content;
}

.item.jacks.addtional {
	grid-template-columns: 90px max-content max-content;
}

.item div {
	margin-bottom: 12px;
	display: inline-block;
}


select {
	background-color: var(--bg-color);
	color: var(--white);
	border-color: var(--white);
	font-family: inherit;
	font-size: inherit;
	width: 77px;
	padding: 2px 6px;
	outline-color: var(--orange);
	-webkit-appearance:none;
}

select.clocks {
	width: 109px;
}

select.multiplier {
	width: 44px
}

select.knobs {
	width: 77px;
}

select.jacks {
	width: 364px;
}

.pointy {
	cursor: pointer;
	user-select: none;
}

.footnotes {
	font-size: 0.88em;
}

.hidden {
	visibility: hidden;
}
/* ********* Media Queries ********* */


@media only screen and (max-width: 1700px) {


}

@media only screen and (max-width: 1166px) {

	main {
		grid-template-columns: auto;
	}

}

@media only screen and (min-width: 900px) {

	#welcome_message {
		max-width: 100%;
		margin: 12px 12px;
	}

	#welcome_text {
		width: calc(100% - 340px);
		max-width: 850px;
		float: left;
	}

	#contact_info {
		width: 340px;
		padding-left: 30px;
		/* padding-right: 10px; */
		float: right;
	}
}

@media only screen and (max-width: 630px) {

	header {
		padding: 16px 12px 3px;
	}

	h1 {
		font-size: 1.4em;
	}

	#menu_button {
		text-align: right;
	}

	.item.patch_info, .item.knobs, .item.clocks {
		grid-template-columns: 100%;
	}

	.item.jacks {
		grid-template-columns: calc(100% - 30px) 30px;
	}

	.item.jacks.addtional {
		/* grid-template-columns: 90px max-content max-content; */
	}

	#share_area {
		max-width: 100%;
		text-align: left;
	}

	select.clocks {
		width: 92px;
	}

	select.patch_info, textarea.patch_info {
		width: 80%;
	}

	select.jacks {
		width: 100%;
	}

	.item {
		padding-left: 18px;
	}

}



@media only screen and (max-width: 450px) {


  }


@media only screen and (max-width: 368px) {

	html, body {
		font-size: 14px;
	}

	.item.patch_info, .item.knobs, .item.clocks {
		grid-template-columns: calc(100% - 54px);
	}

	.item.jacks {
		grid-template-columns: calc(100% - 94px) 30px;
	}

}
