html,
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	left: 0px;
	top: 0px;
	font-size: 100%;
	font-family: 'Open Sans', sans-serif;
	color: black;
	overflow: hidden;
	background: var(--css-colorBackground);
	display: flex;
	flex-direction: column;
}

.controls-container {
	width: 100%;
	height: 15%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	background: var(--css-colorBackground);
	vertical-align: bottom;
}

.file-box {
	width: 15%; 
	text-align:center;
	margin: 25px;
}

.file-box label {
	display: inline-block;
	padding: 0.5em 0.75em;
/*	color: white;
	font-size: inherit; */
	cursor: pointer;
	line-height: normal;
/*	background-color: #47b8e0;
	border: 1px solid #47b8e0;
	border-bottom-color: #47b8e0; */
	background-color: var(--css-colorCompBackground);
	border: 1px solid var(--css-colorCompBackground);
	border-bottom-color: var(--css-colorCompBackground);
	border-radius: 0.35em;
}

#exfile {
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.audio-controls {
	width: 20%; 
	margin: 25px;
	text-align:center;
	border-radius: 0.35em;
}

audio {
	opacity; 1;
/*	background-color: transparent; */
	background-color: var(--css-colorCompBackground);
	border-radius: 0.35em;
	width: 90%;
}

.change-music-box {
	width: 20%;
	margin: 25px;
	text-align:center;
}

.draw-model-box {
	width: 20%;
	margin: 25px;
	text-align:center;
}

#selectMusic, #selectGraph {
	padding: 0.5em 0.75em;
	margin: 0;
	border: 1px solid var(--css-colorCompBackground);
	width: 90%;
	border-radius: 0px;
	overflow: hidden;
	background-color: var(--css-colorCompBackground);
	background: var(--css-colorCompBackground);
	position: relative;
	font-size: inherit;
	line-height: normal;
	vertical-align: middle;
}

#selectMusic select, #selectGraph select {
	padding: 0.5em 0.75em;
	width: 80%;
	border: none;
	box-shadow: none;
	background-color: var(--css-colorCompBackground);
/*	background-color: transparent; */
	background-image: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#selectMusic:after, #selectGraph:after {
	top: 50%;
	left: 85%;
	border: solid transparent;
	content: " ";
	height: 0px;
	width: 0px;
	position: absolute;
	pointer-events: none;
	border-color: var(--css-colorCompBackground);
	border-top-color: var(--css-colorCompBackground);
	border-width: 5px;
	margin-top: -2px;
/*	z-index: 100; */
}

#selectMusic select:focus, #selectGraph select:focus {
	outline: none;
}

.color-container {
	width: 20%; 
	display: flex;
	flex-direction: column;
	font-weight: 500;
	align-items: left;
	margin: 25px;
}

.test {
	width: 90%;
	height: 33%;
	display: flex;
	flex-direction: row;
}

input[name="color"] {
	position: absolute;
	left: -6px;
	right: -8px;
	top: -8px;
	width: 56px;
	height: 56px;
	border: none;
	cursor: pointer;
}

.color-box {
	position: relative;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: solid 2px #000;
	border-radius: 40px;
	margin-left: 10px;
}

.graph-container {
	width: 100%;
	height: 85%;
	display: flex;
/*  flex-direction: column; */
	align-items: center;
	justify-content: center; 
/*	background-color: #000000; */
	background: var(--css-colorBackground);
}

.canvas2d-container, .canvasgl-container {
/*	position: absolute;
	top: 55%;
	left: 50%; */
	vertical-align: middle;
	position: absolute;
	width: 100%;
	height: 85%;
	justify-content: center; 
/*	text-align: center; 
	transform: translate(-50%,-50%); */
}


#divArtist, #divTitle, #divAlbum {
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 999;
	font-weight: 100;
	font-family: "Roboto", sans-serif;
	/*font-size: 100px;*/
	color: var(--css-colorFont);
	/* visibility: hidden; */
	letter-spacing: -.05em;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	margin-bottom: 15px;
}

#song_info_wrapper {
	position: absolute;
	top: 60%;
	left: 50%;
	position: absolute;
	width: 100%;
	text-align: center; 
	transform: translate(-50%,-50%);
}

#divTitle {
	font-size: 6.5vw;
}

#divArtist {
	font-size: 3vw;
}

#divAlbum {
	font-size: 3vw;
	/*font-size: 40px;*/
	margin-bottom: 0;
}

