.npc-features {
	padding: 8px 0;
}

.npc-feature {
	position: relative;
	display: flex;
	align-items: flex-start;

	padding: 9px 12px;
	margin-bottom: 3px;

	background: linear-gradient(
		90deg,
		rgba(90, 62, 35, 0.07) 0%,
		rgba(40, 29, 22, 0.035) 60%,
		transparent 100%
	);

	border-top: 1px solid rgba(110, 82, 57, 0.08);
	border-bottom: 1px solid rgba(110, 82, 57, 0.08);
}

.npc-feature:last-child {
	margin-bottom: 0;
}

.npc-feature__marker {
	flex: 0 0 auto;

	width: 5px;
	height: 5px;
	margin: 7px 12px 0 2px;

	background: #a77a3f;
	border: 1px solid #70502e;

	transform: rotate(45deg);

	box-shadow: 0 0 3px rgba(190, 139, 65, 0.15);
}

.npc-feature__text {
	color: #c4b9ad;

	font-size: 15px;
	font-weight: 500;
	line-height: 19px;
}

.npc-feature__text b {
	color: #d4a65f;
	font-weight: 600;
}

.npc-feature__muted {
	display: block;
	margin-top: 2px;

	color: #92877d;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
}

.wiki-icon-container,
.table,
.table__tr,
.table__td {
	overflow: visible !important;
}

.raid-tooltip {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
	z-index: 100;
}

.raid-tooltip:hover {
	z-index: 99999;
}

.raid-tooltip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 16px;
	height: 16px;

	border: 1px solid #b69862;
	border-radius: 50%;

	background: linear-gradient(
		to bottom,
		#4c4130 0%,
		#2e281f 50%,
		#17130f 100%
	);

	color: #e7cf9c;
	font-size: 11px;
	font-weight: bold;
	line-height: 16px;

	cursor: help;

	box-shadow:
		inset 0 0 3px rgba(255, 220, 150, 0.25),
		0 0 4px rgba(0, 0, 0, 0.8);

	transition: 0.15s ease;
}

.raid-tooltip:hover .raid-tooltip__icon {
	color: #fff1c5;
	border-color: #e0bd79;

	box-shadow:
		inset 0 0 5px rgba(255, 220, 150, 0.4),
		0 0 6px rgba(210, 170, 90, 0.35);
}

.raid-tooltip__content {
	position: absolute;

	left: 0;
	bottom: calc(100% + 10px);

	width: 270px;
	padding: 10px 12px;

	background: linear-gradient(
		to bottom,
		rgba(48, 41, 31, 0.98),
		rgba(20, 18, 15, 0.98)
	);

	border: 1px solid #8c744c;
	border-radius: 3px;

	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.75),
		inset 0 0 10px rgba(196, 156, 85, 0.08);

	color: #cfc5b3;
	font-size: 12px;
	line-height: 17px;
	text-align: left;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transform: translateY(4px);

	transition:
		opacity 0.15s ease,
		transform 0.15s ease,
		visibility 0.15s ease;

	z-index: 999999;
}

.raid-tooltip:hover .raid-tooltip__content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.raid-tooltip__content::after {
	content: "";

	position: absolute;
	top: 100%;
	left: 10px;

	border-width: 6px;
	border-style: solid;
	border-color:
		#8c744c
		transparent
		transparent
		transparent;
}

.raid-tooltip__title {
	display: block;

	margin-bottom: 6px;
	padding-bottom: 5px;

	border-bottom: 1px solid rgba(183, 151, 94, 0.35);

	color: #e4c888;
	font-size: 13px;
	font-weight: bold;
}

.raid-tooltip__line {
	display: block;
	margin-top: 3px;
}

.server-time-note {
	display: flex;
	align-items: center;
	gap: 10px;

	padding: 9px 14px;
	margin: 12px 0;

	background: rgba(24, 18, 15, 0.55);

	border-top: 1px solid rgba(122, 92, 60, 0.25);
	border-bottom: 1px solid rgba(122, 92, 60, 0.25);
}

.server-time-note__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 26px;
	width: 26px;
	height: 26px;

	border: 1px solid #66503a;
	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(125, 86, 38, 0.18) 0%,
			rgba(20, 15, 12, 0.85) 70%
		);

	color: #d8a34d;

	font-size: 14px;
	font-weight: bold;

	box-shadow:
		inset 0 0 5px rgba(203, 148, 71, 0.08),
		0 0 0 3px rgba(95, 68, 42, 0.12);
}

.server-time-note__content {
	line-height: 15px;
}

.server-time-note__title {
	color: #d5b07a;

	font-size: 13px;
	font-weight: bold;

	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.server-time-note__text {
	margin-top: 2px;

	color: #91867c;
	font-size: 15px;
	font-weight: 600;
}

.server-time-note__text b {
	color: #cfa75f;
	font-weight: bold;
}