/* || General layout rules for narrow screens */

html {
	height: 100%;
	font-family: 'Righteous', cursive;
	font-size: 8px;
	background-color: black;
	background-image: url(../images/pattern.png);
}

body {
	width: 100%;
	height: inherit;
	/*background-color: #5e5757;*/
	/*background-image: url(../images/pattern.png);*/
}

h1, h2, label {
  font-size: 2.2rem;
  font-family: 'Nova Square', cursive;
  text-align: center;
  color: black;
  text-shadow: -1px -1px 1px #aaa,
               0px 1px 1px rgba(255,255,255,0.5),
               0.5px 0.5px 1px rgba(255,255,255,0.7),
               0px 0px 2px rgba(255,255,255,0.4);
  margin: 0;
}

h1 {
  font-size: 3.5rem;
  padding-top: 1.2rem;
}

.wrapper {
	height: 100%;*/
	width: 80%;
	max-width: 800px;
	margin: auto;*/
}

/* || main UI sections */

header {
  height: 120px;
}

canvas {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-bottom: -3px;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.7),
              0 3px 4px rgba(0,0,0,0.7);
}

.controls {
  background-color: rgba(0,0,0,0.1);
  height: calc(100% - 225px);
}

/* || select element styling */

.controls div {
  width: 60%;
  padding-top: 1rem;
}

.controls label, .controls select {
  display: block;
  margin: 0 auto;
}

.controls label {
  width: 100%;
  text-align: left;
  line-height: 3rem;
  padding: 1rem 0;
}

.controls select {
  width: 100%;
  font-size: 2rem;
}

.container {
  width: 100%;
  /*background: gray;*/
   margin: auto;
  /*padding: 10px;*/
	 /*margin: -15% -10%; /*px; */
}

.container-settings {
  width: 40px%;
  /*background: red;*/
	position:relative;
	/*float: left;*/
}

.container-options {
  	/*margin-left: 10px;*/
		text-align: center;
		height: auto;
		background: gray;
		display: inline-block;
		display: grid;
    grid-template-columns: 1fr 1fr;
}

.container-options-hidden {
		display:none;
}

.my-knob-container {
	width: 80px;
	height: 80px;
	display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-knob-visuals {
	width: 80px;
	height: 80px;
	display: flex;
  justify-content: space-between;
  align-items: center;
}




/* || button styling */

button, form a {
    background-color: #0088cc;
    background-image: linear-gradient(to bottom,  #0088cc 0%,#0055cc 100%);
    text-shadow: 1px 1px 1px black;
    text-align: center;
    color: white;
    border: none;
    width: 40%;
    margin: 1rem auto 0.5rem;
    max-width: 35%;
    font-size: 1.6rem;
    line-height: 3rem;
    padding: .5rem;
    display: block;
}

button:hover, button:focus, form a:hover, form a:focus {
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.7);
}

button:active, form a:active {
	box-shadow: inset 2px 2px 3px rgba(0,0,0,0.7);
}

a#activated {
  background-color: #fff;
  background-image: linear-gradient(to bottom,  #f00 0%,#a06 100%);
}

/* || Checkbox hack to control information box display */

label[for="toggle"] {
	font-family: 'NotoColorEmoji';
	font-size: 3rem;
	position: absolute;
	top: 4px;
	right: 5px;
	z-index: 5;
	cursor: pointer;
}

label[for="peakInfo"] {
	font-size: 2.2rem;
	position: relative;
	justify-content: center;
	}

.commonText{
	color: white;
	font-size: 1.6rem;
}

textarea {
	display: block;
 	margin-left: auto;
 	margin-right: auto;
	height: 2.4em;
	width: 4.6em;
	color: black;
	font-size: 0.7em;
	background-color: #CCCCCC;
	/*text-align: center;
	/*display: flex;*/
  justify-content: center;
}

input[type=checkbox] {
   position: absolute;
   top: -100px;
}


aside {
   position: fixed;
   top: 0;
   left: 0;
   padding-top: 1.5rem;
   text-shadow: 1px 1px 1px black;
   width: 100%;
   height: 100%;
   transform: translateX(100%);
   transition: 0.6s all;
   background-color: #999;
	background-image: linear-gradient(to top right, rgba(0,0,0,0), rgba(0,0,0,0.5));
}

aside p, aside li {
	font-size: 1.6rem;
	line-height: 1.3;
	padding: 0rem 2rem 1rem;
	color: white;
}

aside li {
  padding-left: 10px;
}


/* Toggled State of information box */

input[type=checkbox]:checked ~ aside {
  transform: translateX(0);
}

/* || Link styles */

a {
  color: #aaa;
}

a:hover, a:focus {
  text-decoration: none;
}

@media (min-width: 481px) {
  /*CSS for medium width screens*/

  /* || Basic layout changes for the main control buttons */

}

@media all and (min-width: 800px) {
  /*CSS for wide screens*/

  h1 {
    font-size: 5rem;
    padding-top: 2.5rem;
  }

  aside {
   top: 0;
   left: 100%;
   text-shadow: 1px 1px 1px black;
   width: 480px;
   transform: translateX(0);
   border-left: 2px solid black;
  }

  /* Toggled State of information box */

  input[type=checkbox]:checked ~ aside {
    transform: translateX(-480px);
  }

}

@media (min-width: 1100px) {
  /*CSS for really wide screens*/
}
