/* DEFAULTS */

.ed
{
	color: #808080;
	font-size: 9px;
	font-family: sans-serif;
}

.ed p
{
	font-size: 9px;
}

.ed-main
{
	min-width: 150px;
	height: 100%;
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
}

.ed-block
{
	background: #171717;
}

.ed-row
{
	padding-top: 2px;
	padding-bottom: 2px;
	min-height: 20px;
	padding-left: 6px;
	padding-right: 6px;
	display: inline-flex;
	align-items: center;
}

.ed-column
{
	display: flex;
	flex-direction: column;
}

.ed-title
{
    padding: 6px;
	font-weight: bold;
	color: white;
	background: #202020;
	margin-bottom: 4px;
	cursor: pointer;
}
.ed-title:hover
{
	background: #404357;
}

.ed-name
{
	width: 56px;
	white-space: nowrap;
}

.ed-input
{
	width: 40px;
	height: 18px;
	background:#2b2b2b;
	border: 1px solid #171717;
	color:#ffffff;
	text-align: right;
	padding-right: 5px;
	font-size: 9px;
}

.ed-input:focus
{
	border: 1px solid rgb(29, 128, 234);
}

.ed-string
{
	background:#2b2b2b;
	font-size: 10px;
	color:#ffffff;
	border: 1px solid #171717;
	padding: 3px;
	width: 119px;
}

.ed-btn
{
	background:#4a4949;
	padding: 4px;
	width: 100%;
	text-align: center;
	border-radius: 2px;
	color: white;
	font-size: 8px;
}
.ed-btn:hover
{
	background: rgb(29, 128, 234);
}

/* MENU */

.ed-menu
{
	background: rgba(0,0,0,0.8);
	z-index: 999;
}
.ed-menu-label
{
	font-weight: bold;
	color: white;
	padding: 4px;
}
.ed-menu-item
{
	padding: 4px;
	border-bottom: 1px solid #171717;
}
.ed-menu-item:hover
{
	background: rgb(29, 128, 234);
	color: white;
}

/* LIST */
.ed-list
{
	background: #2b2b2b;
	color:white;
	border: none;
	font-size: 8px;
	padding: 2px;
}


/* CONSOLE */

.ed-console
{
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 999;
	text-align: right;
	color: white;
}

/*
.ed-console .ed-label
{
	background: #0b0b0b;
}
.ed-console-item
{
	border-bottom: 1px solid #171717;
	display: none;
}

.ed-console-item:nth-of-type(2n)
{
	background: #111111;
}
*/


.ed-range
{
	width: 50px;
}

.ed-color
{
	border: none;
	background: none;
	height: 18px;
	width: 40px;
}

.ed-checkbox
{

}