body{
	font-family: 'Roboto', sans-serif;
}

#centeredBody {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 800px;
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	height:100%;
}

#creatorPanes {
	display: flex;
	width: 790px;
	margin-top:auto;
	margin-bottom:auto;
	border: solid;
	border-width: 5px;
}

#characterPane {
	width: 395px;
	height: 600px;
	border-right-style: solid;
    border-right-width: 2.5px;
	background-color: #FFFFFF;
}

#optionsPane {
	width: 395px;
	height: 600px;
	border-left-style: solid;
    border-left-width: 2.5px;
	background-color: #FFFFFF;
}

.characterLayer {
	position: absolute;
	margin-top:10px;
	margin-left:7px;
}

#charShoes {
	-webkit-filter: url(#filter_shoes);
  	filter:  url(#filter_shoes);
}

#charShirt {
	-webkit-filter: url(#filter_shirt);
	  filter:  url(#filter_shirt);
}

#charPants {
	-webkit-filter: url(#filter_pants);
  	filter:  url(#filter_pants);
}

.defs-only {
	position: absolute;
	height: 0; width: 0;
	overflow: none;
	left: -100%;
}

.elementPicker {
	border: 3px solid black;
	margin: 5px;
	margin-top: 15px;
	padding-left: 15px;
	padding-bottom: 5px;
}

.pickerTitle {
	background-color: white;
    position: relative;
    top: -10px;
    margin-left: -10px;
	padding-left: 2px;
    padding-right: 5px;
}

.pickerSelect {
	margin-top: -5px;
    margin-bottom: 5px;
    width: 95%;
	font-size: 1em;
}

.colorText {
	display: inline-block;
    font-size: .9em;
    font-weight: bold;
}

.colorPicker {
	width: 20px;
    height: 20px;
    border-radius: 0%;
	margin-left: 2px;
    margin-right: 2px;
}

.hideColors {
	display: none;
}

@media (max-width: 850px) {
	#centeredBody {
		width:100%;
	}
	
	#creatorPanes {
		flex-direction: column;
		width: 390px;
		margin-left: auto;
		margin-right:auto;
	}
	
	#characterPane {
		width: 390px;
		border-right-width: 5px;
		border-right-style: solid;
	}
	
	#optionsPane {
		width: 390px;
		border-right-width: 5px;
		border-right-style: solid;
		border-left-style: solid;
    	border-left-width: 0px;
	}
	
	.characterLayer {
		margin-left:5px;
	}
}