
* {
	/*-webkit-tap-highlight-color: rgba(0,0,0,0);*/ /* make transparent link selection, adjust last value opacity 0 to 1.0 */
	/*-webkit-user-select:none;
	-webkit-touch-callout:none;*/
}



/*body {
    background-attachment:fixed;
	font-family:'UniversLight', sans-serif;
    font-size:12px;
    position:absolute;
    margin:0px;
    padding:0px;
    width: 100%;
    height: 100%;
}*/
body {
	font-family: sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    overflow: hidden;
    margin: 0;
}

.main {
	display: block;
	position: absolute;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1200px;
	height: 100%;
}

.settings {
	display: block;
	position: absolute;
	top: 50px;
	left: 0;
	width: 300px;
	height: calc(100% - 50px);
	overflow: auto;
	box-sizing: border-box;
	padding: 10px;
}

.icon-display {
	display: block;
	position: absolute;
	width: calc(100% - 300px);
	height: calc(100% - 50px);
	top: 50px;
	left: 300px;
	overflow: auto;
	box-sizing: border-box;
	padding: 10px;
}

h1 {
	margin: 10px 5px;
	color: #666666;
	font-size: 26px;
	font-weight: 500;
}

h3 {
	margin: 25px 5px 5px 5px;
	color: #666666;
	font-weight: 500;
}

h4 {
	color: #777777;
	font-weight: 500;
}

hr {
	border: 0;
	height: 2px;
	background-color: #dddddd;
	border-radius: 1px;
	margin: 5px;
}

input {
	margin: 5px 5px 5px 10px;
}

label {
	font-size: 14px;
}

.color-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.color-list li {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 4px solid #dddddd;
	margin: 5px;
	border-radius: 50%;
}

.color-list li[data-selected="1"] {
	border: 4px solid #888888;
	box-shadow: 0 0 0 2px inset white;
}

.system-colors {
	display: inline-block;
	width: auto;
	padding-top: 5px;
	border-top: 2px solid #dddddd;
	margin-top: 5px;
}

.current-color-hex {
	margin-left: 10px;
	color: #666666;
}

.yes-no-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.yes-no-list li {
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 4px solid #dddddd;
	margin: 5px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	color: #666666;
}

.yes-no-list li[data-selected="1"] {
	border: 4px solid #888888;
}

.icon-categories {
	display: block;
	position: relative;
	margin: 5px;
	padding: 0;
}

.icon-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.icon-list li {
	display: inline-block;
	border: 1px solid #dddddd;
	margin: 5px;
}

li:hover {
	box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.5);
}

.block {
	display: block;
	position: absolute;
}

@media (max-width: 700px) {
	body {
		overflow: auto;
	}

	.main {
		position: relative;
	}

	.settings {
		position: relative;
		width: 100%;
		height: auto;
		top: unset;
		left: unset;
		box-sizing: border-box;
		padding: 10px;
		overflow: inherit;
	}

	.icon-display {
		position: relative;
		width: 100%;
		height: auto;
		top: unset;
		left: unset;
		box-sizing: border-box;
		padding: 10px;
		overflow: inherit;
	}
}

.hitarea {
	cursor: pointer;
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	cursor: default;
}




