
/* Settings Menu */
.CSettingsMenuTable {
	border-collapse: collapse;
	/*
	text-shadow: 0 0 2px rgb(0 0 0 / 50%);
	*/
	-webkit-transition: all .08s cubic-bezier(0.4,0,1,1);
	transition: all .08s cubic-bezier(0.4,0,1,1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	background-color: dimgray;
	position: absolute;
	right: 0;
	bottom: 0;

	font-family: Roboto,Arial,Tahoma,Verdana,sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(0,0,0,.5);
	line-height: 1.3;
	overflow-y: auto;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.CSettingsMenuTableCaption {
	background: rgba(28,28,28,0.9);
	color: #eee;
	cursor: pointer;
	border-bottom: 1px solid gray;
}
.CSettingsMenuTableCaption:hover .CSettingsMenuNameCell {}
.CSettingsMenuNameCell {
	font-weight: bold;
	text-align: left;
}
.CSettingsMenuTable td {
	padding: 12px 12px;
}
.CSettingsMenuValueCell {
	text-align: right;
}
.CSettingsMenuTableRow {
	background: rgba(28,28,28,0.9);
	color: #eee;
	cursor: pointer;
}
.CSettingsMenuTableRow:hover {
	background: rgba(28,28,28,0.5);
}
