.wikiTable{
	table-layout:fixed;
	margin-top:0;
	margin-bottom:10px;
}

.wikiTableHeader{
	padding: 7px 13px;
	background-color:rgb(25 25 25);
	border-top:1px solid #333;
	border-bottom:1px solid #0007;
	font-weight:bold;
	text-decoration: underline;
}

#wikiFilters{
	width:calc(100% - 40px);
	margin-left:20px;
	height:40px;
}

#wikiCategoriesContainer{
	width:170px;
	height:32px;
	padding:2px 3px 2px 8px;
	background:rgba(25, 25, 25);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
	border:solid 1px rgba(0, 0, 0, 0.21);
	border-radius:19px;
	display:flex;
	align-items:center;
	position:relative;
	float:left;
}

#wikiItemsCategories{
	width:160px;
	height: 36px;
    padding: 0;
    background:none;
    border: 0;
    outline: 0;
    font-size: 12px;
    box-shadow: none;
}

#wikiSearchContainer{
	width:200px;
	height:32px;
	padding:2px 4px;
	background:rgba(25, 25, 25);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
	border:solid 1px rgba(0, 0, 0, 0.21);
	border-radius:19px;
	display:flex;
	align-items:center;
	position:relative;
	float:right;
}

#wikiItemsSearch{
	width:136px;
	height:32px;
	padding:10px 0;
	background:none;
	border:0;
	outline:0;
	font-size:12px;
	box-shadow:none;
	float:left;
}

.wikiSearchIcon{
	width:32px;
	height:32px;
	display:flex;
	justify-content:center;
	align-items:center;
	opacity:0.25;
	float:left;
}

.wikiSearchIcon img{
	width:16px;
	height:16px;
}

#wikiItemsSearchErase:hover{
	opacity:0.6;
	cursor:pointer;
}

#wikiItemsResults{
	width:calc(100% - 60px);
	height:20px;
	margin: 10px 30px;
}

#wikiItemsResultsText{
	width:70px;
	height:20px;
	display:flex;
	align-items:center;
	color:#666;
	font-size:11px;
	float:left;
}

#wikiItemsResultsLine{
	width:calc(100% - 80px);
	height:1px;
	margin-left:10px;
	margin-top:12px;
	background-color:#333;
	float:left;
	
}

.wikiItemRow{
	width:calc(100% - 58px);
	height:32px;
	padding:2px 8px;
	margin-left:20px;
	margin-top:15px;
	background:rgba(25, 25, 25);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
	border:solid 1px rgba(0, 0, 0, 0.21);
	border-radius:19px;
	display:flex;
	align-items:center;
	position:relative;
}

.wikiItemRowImage{
	width:32px;
	height:32px;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}

.wikiItemRowImage img{
	width:32px;
	height:32px;
	image-rendering: pixelated;
}

.wikiItemName{
	width:calc(100% - 510px);
	margin-left:10px;
	font-size:12px;
	font-weight:bold;
	text-transform:capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wikiItemDesc{
	width:280px;
	margin-left:20px;
	font-size:11px;
	font-weight:bold;
	color:#888;
	text-transform:capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wikiItemAttrName{
	margin-right:1px;
	color:#444;
}

.wikiItemAbilitySlots{
	width:180px;
	margin-left:20px;
}

.wikiItemAbilitySlotContainer{
	width:12px;
	height:12px;
	float:left;
	margin-right:5px;
	position:relative;
}

.wikiItemAbilitySlot{
	width:16px;
	height:16px;
	background:rgba(0, 0, 0, 0.5);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.wikiItemAbilitySlot.active::after{
	width:8px;
	height:8px;
	content:'';
	position:absolute;
	left:4px;
	top:4px;
	background:linear-gradient(135deg, rgba(176, 172, 150, 1) 0%, rgba(176, 172, 150, 0.3) 100%);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.wikiItemAbilitySlotsDesc{
	margin-left:8px;
	font-size:11px;
	color:#555;
	text-transform:capitalize;
	float:left;
}