.dialog {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(40,49,60,0.8);
	z-index: 999999;
}

.dialogContent {
	position: relative;
	display: flex;
	/*margin: 10% auto 10px auto;*/
	background-color: #FFFFFF;
	width: 60%;
	max-width: 500px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	max-height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dialogContent:after {
	clear: both;
	content:"";
	display: block;
}

.dialogContent li {
	padding: 10px 15px;
	cursor: pointer;
}

.dialogLeft {
	flex: 1;
	display: block;
	background-color: #000;
	color: #FAFAFA;
	width: 50%;
}

.dialogRight {
	flex: 1;
	display: block;
	background-color: #ececec;
	width: 50%;
	overflow-y: auto;
	overflow-x: hidden;
}

.dialogClose {
	position: absolute;
	top: 0;
	right: 0;
	padding: 5px;
	background-color: #ececec;
	cursor: pointer;
}

.sampleSetList,
.sampleList {
	list-style: none;
}

.sampleSetList{
	font-size: 14px;
	font-weight: bolder;
}

.sampleList{
	font-weight: lighter;
	font-size: 12px;
}

.sampleSetList .isActive,
.sampleList .isActive {
	background-color: #28313c;
}