.ezServerIndexShell {
	max-width: var(--container--width);
	margin: 0 auto;
	padding: 0 10px 46px;
	color: #dcd7d1;
}

.ezServerIndexTools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 14px;
}

.ezServerIndexTools__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	background: rgba(255,255,255,.05);
	color: #dcd7d1;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.ezServerIndexTools__button:hover {
	border-color: rgba(255,255,255,.2);
	background: rgba(255,255,255,.09);
	color: #fff;
	text-decoration: none;
}

.ezServerIndexTools__button--add {
	border-color: rgba(46,164,79,.38);
	background: rgba(46,164,79,.14);
	color: #aee0b5;
}

.ezServerIndexTools__button--add:hover {
	border-color: rgba(46,164,79,.58);
	background: rgba(46,164,79,.22);
	color: #c9f5d7;
}

.ezServerIndexIntro {
	max-width: 820px;
	margin: 0 auto 24px;
	color: #9c9288;
	font-size: 13px;
	line-height: 1.65;
	text-align: center;
}

.ezServerIndexIntro p:first-child {
	margin-top: 0;
}

.ezServerIndexIntro p:last-child {
	margin-bottom: 0;
}

.ezServerIndexSection {
	margin: 0;
}

.ezServerCategoryGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	list-style: none;
}

.ezServerCategoryCard.ipsDataItem {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 16px;
	background: #262320;
	box-shadow: 0 8px 22px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.03);
	overflow: hidden;
	text-align: center;
	transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ezServerCategoryCard.ipsDataItem + .ezServerCategoryCard.ipsDataItem {
	border-top: 1px solid rgba(255,255,255,.12);
}

.ezServerCategoryCard.ipsDataItem:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.2);
	background: #2a2723;
	box-shadow: 0 11px 28px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.05);
}

.ezServerCategoryCard__link {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 16px;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.ezServerCategoryCard__link:hover {
	color: inherit;
	text-decoration: none;
}

.ezServerCategoryCard__link:focus-visible {
	outline: 2px solid rgba(205,64,43,.65);
	outline-offset: -4px;
	border-radius: 14px;
}

.ezServerCategoryCard__currentServer {
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 24px;
	padding: 0 9px;
	border: 1px solid rgba(99,199,121,.3);
	border-radius: 12px;
	background: rgba(27,39,29,.96);
	box-shadow: 0 3px 9px rgba(0,0,0,.32);
	color: #9ae5aa;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .045em;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.ezServerCategoryCard__currentServerDot {
	width: 6px;
	height: 6px;
	flex: 0 0 6px;
	border-radius: 50%;
	background: #63c779;
	box-shadow: 0 0 0 3px rgba(99,199,121,.12);
}

.ezServerCategoryCard__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	min-width: 112px;
	max-width: 112px;
	min-height: 112px;
	max-height: 112px;
	margin: 0 auto 15px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 27px;
	background: #1a1915;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 6px 16px rgba(0,0,0,.24);
	overflow: hidden;
}

.ezServerCategoryCard__thumb img {
	display: block;
	width: 112px;
	height: 112px;
	min-width: 112px;
	max-width: 112px;
	min-height: 112px;
	max-height: 112px;
	border-radius: 27px;
	object-fit: cover;
	opacity: 1;
	filter: none;
	transform: scale(1);
	transition: transform .2s ease, filter .2s ease;
}

.ezServerCategoryCard:hover .ezServerCategoryCard__thumb img {
	transform: scale(1.035);
	filter: brightness(1.06);
}

.ezServerCategoryCard__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.ezServerCategoryCard__title {
	margin: 0;
	color: #fff;
	font-size: 17px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -.25px;
	transition: color .15s ease;
}

.ezServerCategoryCard:hover .ezServerCategoryCard__title {
	color: #ffb09b;
}

.ezServerCategoryCard__population {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	max-width: 100%;
	min-height: 22px;
	margin: 8px auto 0;
	padding: 4px 9px;
	color: #aee0b5;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.ezServerCategoryCard__population:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	flex: 0 0 6px;
	border-radius: 999px;
	background: #6fba78;
	box-shadow: 0 0 0 3px rgba(46,164,79,.12);
}

.ezServerCategoryCard__population.is-loading,
.ezServerCategoryCard__population.is-unknown {
	border-color: rgba(255,255,255,.10);
	background: rgba(0,0,0,.16);
	color: #9c9288;
}

.ezServerCategoryCard__population.is-loading:before,
.ezServerCategoryCard__population.is-unknown:before {
	background: #8f867e;
	box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}

.ezServerCategoryCard__population.is-empty {
	border-color: rgba(212,169,74,.28);
	background: rgba(212,169,74,.10);
	color: #d4a94a;
}

.ezServerCategoryCard__population.is-empty:before {
	background: #d4a94a;
	box-shadow: 0 0 0 3px rgba(212,169,74,.12);
}

.ezServerCategoryCard__description {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	margin: 10px 0 15px;
	color: #9c9288;
	font-size: 12px;
	line-height: 1.55;
}

.ezServerCategoryCard__descriptionInner {
	display: -webkit-box;
	max-height: 74px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.ezServerCategoryCard__descriptionInner p {
	margin: 0;
}

.ezServerCategoryCard__descriptionInner br {
	display: none;
}

.ezServerCategoryCard__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	margin-top: auto;
	padding: 9px 12px;
	border: 1px solid rgba(46,164,79,.38);
	border-radius: 999px;
	background: rgba(46,164,79,.14);
	color: #aee0b5;
	font-size: 12px;
	font-weight: 850;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.ezServerCategoryCard:hover .ezServerCategoryCard__button {
	transform: translateY(-1px);
	border-color: rgba(46,164,79,.58);
	background: rgba(46,164,79,.22);
	color: #c9f5d7;
}

.ezFeatureTable {
	margin: 0;
	padding: 0 0 42px;
	background: transparent;
	color: #dcd7d1;
}

.ezFeatureTable__tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0 0 14px;
}

.ezFeatureTable__toolsLeft {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
}

.ezFeatureTable__toolsLeft .ezFeatureSectionNav__link {
	flex: 0 0 auto;
	margin: 0;
}

.ezFeatureTable__toolsRight {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
	margin-left: auto;
	gap: 10px;
}

.ezFeatureTable__toolsRight .ez-faq-actionBtn,
.ezFeatureTable__toolsRight .ez-faq-ddBtn {
	flex: 0 0 auto;
	margin: 0;
}

.ezFeatureTable__sort {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
}

.ezFeatureTable .ez-faq-ddBtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 999px;
	background: rgba(255,255,255,.03);
	color: inherit;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	transition: background .12s ease, border-color .12s ease, transform .08s ease;
}

.ezFeatureTable .ez-faq-ddBtn:hover {
	transform: translateY(-1px);
	border-color: rgba(255,255,255,.18);
	background: rgba(255,255,255,.06);
	color: inherit;
	text-decoration: none;
}

.ezFeatureTable .ez-faq-ddBtn.is-open {
	border-color: rgba(205,64,43,.45);
	background: rgba(205,64,43,.16);
}

.ezFeatureTable .ez-faq-actionBtn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border: 1px solid rgba(46,164,79,.35);
	border-radius: 4px;
	background: rgba(46,164,79,.12);
	color: #9be3b2;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.ezFeatureTable .ez-faq-actionBtn i {
	font-size: 12px;
	opacity: .9;
}

.ezFeatureTable .ez-faq-actionBtn:hover {
	border-color: rgba(46,164,79,.6);
	background: rgba(46,164,79,.2);
	color: #c9f5d7;
	text-decoration: none;
}

.ezFeatureTable .ez-faq-actionBtn:active {
	transform: translateY(1px);
}

.ezFeatureGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	list-style: none;
}

.ezFeatureCard.ipsDataItem {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 290px;
	height: 100%;
	margin: 0;
	padding: 15px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 13px;
	background: #262320;
	box-shadow: 0 8px 22px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.025);
	overflow: hidden;
	transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.ezFeatureCard.ipsDataItem + .ezFeatureCard.ipsDataItem {
	border-top: 1px solid rgba(255,255,255,.10);
}

.ezFeatureCard.ipsDataItem:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.20);
	background: #2a2723;
	box-shadow: 0 10px 26px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.045);
}

.ezFeatureCard.ipsModerated {
	opacity: .68;
}

.ezFeatureCard__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	height: 100%;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.ezFeatureCard__link:hover {
	color: inherit;
	text-decoration: none;
}

.ezFeatureCard__link:focus-visible {
	outline: 2px solid rgba(205,64,43,.65);
	outline-offset: 3px;
	border-radius: 10px;
}

.ezFeatureCard__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.ezFeatureCard__title {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.ezFeatureCard__excerpt {
	display: -webkit-box;
	max-height: 74px;
	margin: 8px 0 0;
	overflow: hidden;
	color: #b9b0a5;
	font-size: 11.5px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.ezFeatureCard__excerpt p {
	margin: 0;
}

.ezFeatureCard__excerpt br {
	display: none;
}

.ezFeatureCard__excerpt img,
.ezFeatureCard__excerpt video,
.ezFeatureCard__excerpt iframe,
.ezFeatureCard__excerpt table,
.ezFeatureCard__excerpt pre,
.ezFeatureCard__excerpt blockquote,
.ezFeatureCard__excerpt figure,
.ezFeatureCard__excerpt hr {
	display: none;
}

.ezFeatureCard__excerpt h1,
.ezFeatureCard__excerpt h2,
.ezFeatureCard__excerpt h3,
.ezFeatureCard__excerpt h4,
.ezFeatureCard__excerpt h5,
.ezFeatureCard__excerpt h6 {
	display: inline;
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.ezFeatureCard__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: calc(100% - 18px);
	min-height: 36px;
	margin: 18px auto 0;
	padding: 8px 12px;
	border: 1px solid rgba(46,164,79,.38);
	border-radius: 999px;
	background: rgba(46,164,79,.14);
	color: #aee0b5;
	font-size: 11.5px;
	font-weight: 800;
	line-height: 1;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.ezFeatureCard:hover .ezFeatureCard__button {
	transform: translateY(-1px);
	border-color: rgba(46,164,79,.58);
	background: rgba(46,164,79,.22);
	color: #c9f5d7;
}

.ezFeatureTable__empty {
	margin: 20px 0 30px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #978e83;
	font-size: 13px;
	text-align: center;
}

.ezFeatureTable__pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.ezFeatureTable__pagination.ipsHide {
	display: none;
}

.ezFeatureTable__pagination .ipsPagination {
	margin: 0;
}

@media screen and (max-width: 1250px) {
	.ezFeatureGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1200px) {
	.ezServerCategoryGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1100px) {
	.ezServerCategoryGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 980px) {
	.ezFeatureGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.ezServerIndexShell {
		padding-right: 0;
		padding-left: 0;
	}

	.ezServerIndexShell .ez-bm-summary {
		padding: 22px 14px;
	}

	.ezServerIndexShell .ez-bm-summary-title {
		font-size: 28px;
	}

	.ezServerIndexShell .ez-bm-summary-sub {
		font-size: 13px;
	}

	.ezServerIndexIntro {
		padding: 0 14px;
		text-align: left;
	}

	.ezServerIndexTools {
		flex-wrap: wrap;
		justify-content: stretch;
		padding: 0 10px;
	}

	.ezServerIndexTools__button {
		flex: 1 1 160px;
	}

	.ezServerCategoryGrid {
		grid-template-columns: 1fr;
	}

	.ezServerCategoryCard__thumb,
	.ezServerCategoryCard__thumb img {
		width: 96px;
		height: 96px;
		min-width: 96px;
		max-width: 96px;
		min-height: 96px;
		max-height: 96px;
		border-radius: 24px;
	}
}

@media screen and (max-width: 640px) {
	.ezFeatureGrid {
		grid-template-columns: 1fr;
	}

	.ezFeatureCard.ipsDataItem {
		min-height: 260px;
	}

	.ezFeatureCard__icon {
		width: 66px;
		height: 66px;
		flex-basis: 66px;
		border-radius: 17px;
		font-size: 26px;
	}
}

.ezFeatureCard__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	flex: 0 0 86px;
	margin: 4px auto 15px;
	padding: 7px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 21px;
	background: #1a1915;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 5px 14px rgba(0,0,0,.22);
	overflow: hidden;
	transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.ezFeatureCard__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(1);
	transition: transform .18s ease;
}

.ezFeatureCard__fallbackIcon {
	color: #cd402b;
	font-size: 29px;
}

.ezFeatureCard:hover .ezFeatureCard__icon {
	transform: translateY(-1px);
	border-color: rgba(255,255,255,.18);
	background: #1e1c18;
}

.ezFeatureCard:hover .ezFeatureCard__icon img {
	transform: scale(1.06);
}

.ezFeatureCard:hover .ezFeatureCard__fallbackIcon {
	color: #ff765f;
}

@media screen and (max-width: 640px) {
	.ezFeatureCard__icon {
		width: 76px;
		height: 76px;
		flex-basis: 76px;
		border-radius: 19px;
	}

	.ezFeatureCard__fallbackIcon {
		font-size: 26px;
	}
}

.ezFeatureSectionNav {
	display: flex;
	align-items: center;
	margin: 0 0 12px;
}

.ezFeatureSectionNav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	background: rgba(0,0,0,.35);
	box-shadow: 0 6px 16px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.03);
	color: #e3ddd6;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.ezFeatureSectionNav__link i {
	color: #cd402b;
	font-size: 14px;
	line-height: 1;
}

.ezFeatureSectionNav__link:hover {
	transform: translateY(-1px);
	border-color: rgba(255,255,255,.22);
	background: radial-gradient(140% 120% at 0% 0, rgba(205,64,43,.16) 0, rgba(205,64,43,0) 60%),
		rgba(0,0,0,.45);
	color: #fff;
	text-decoration: none;
}

.ezFeatureSectionNav__link:active {
	transform: translateY(0);
}

.ezFeatureRecordShell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 12px 10px 48px;
	color: #dcd7d1;
}

.ezFeatureRecordCard {
	position: relative;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 20px;
	background: #262320;
	box-shadow: 0 12px 32px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.03);
	overflow: hidden;
}

.ezFeatureRecordImage {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.055), transparent 58%),
		#1a1915;
	overflow: hidden;
}

.ezFeatureRecordImage img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
}

.ezFeatureRecordImage--empty {
	min-height: 220px;
}

.ezFeatureRecordImageActions {
	position: absolute;
	z-index: 5;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	max-width: calc(100% - 28px);
}

.ezFeatureRecordImageAction {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 4px;
	background: rgba(22,20,17,.88);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}

.ezFeatureRecordImageAction i {
	font-size: 11px;
}

.ezFeatureRecordImageAction:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.ezFeatureRecordImageAction:active {
	transform: translateY(0);
}

.ezFeatureRecordImageAction--revisions {
	border-color: rgba(127,183,232,.65);
	background: rgba(52,105,151,.82);
	color: #d6ebfc;
}

.ezFeatureRecordImageAction--revisions:hover {
	border-color: rgba(127,183,232,.82);
	background: rgba(52,105,151,.94);
	color: #fff;
}

.ezFeatureRecordImageAction--edit {
	border-color: rgba(231,76,60,.65);
	background: rgba(153,52,43,.82);
	color: #ffe0dc;
}

.ezFeatureRecordImageAction--edit:hover {
	border-color: rgba(255,125,111,.82);
	background: rgba(177,59,49,.94);
	color: #fff;
}

.ezFeatureRecordHeader {
	display: block;
	padding: 28px 32px 24px;
}

.ezFeatureRecordTitle {
	min-width: 0;
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: -.65px;
	text-align: center;
	overflow-wrap: anywhere;
}

.ezFeatureRecordBody {
	width: calc(100% - 96px);
	max-width: 880px;
	margin: 0 auto;
	padding: 6px 0 32px;
}

.ezFeatureRecordContent {
	color: #d0c9c1;
	font-size: 15px;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

.ezFeatureRecordContent > :first-child {
	margin-top: 0;
}

.ezFeatureRecordContent > :last-child {
	margin-bottom: 0;
}

.ezFeatureRecordContent p {
	margin: 0 0 16px;
}

.ezFeatureRecordContent h1,
.ezFeatureRecordContent h2,
.ezFeatureRecordContent h3,
.ezFeatureRecordContent h4,
.ezFeatureRecordContent h5,
.ezFeatureRecordContent h6 {
	margin: 30px 0 12px;
	color: #fff;
	font-weight: 800;
	line-height: 1.3;
}

.ezFeatureRecordContent h1 {
	font-size: 25px;
}

.ezFeatureRecordContent h2 {
	font-size: 21px;
}

.ezFeatureRecordContent h3 {
	font-size: 18px;
}

.ezFeatureRecordContent h4,
.ezFeatureRecordContent h5,
.ezFeatureRecordContent h6 {
	font-size: 16px;
}

.ezFeatureRecordContent a {
	color: #cd402b;
	font-weight: 650;
	text-decoration: none;
	border-bottom: 1px solid rgba(205,64,43,.42);
	transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.ezFeatureRecordContent a:hover {
	border-bottom-color: #ff6a52;
	background: rgba(205,64,43,.10);
	color: #ff6a52;
	text-decoration: none;
}

.ezFeatureRecordContent ul,
.ezFeatureRecordContent ol {
	margin: 14px 0 18px 24px;
	padding: 0;
}

.ezFeatureRecordContent li {
	margin: 7px 0;
}

.ezFeatureRecordContent img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.ezFeatureRecordContent blockquote {
	margin: 20px 0;
	padding: 14px 18px;
	border-left: 3px solid rgba(205,64,43,.55);
	border-radius: 0 10px 10px 0;
	background: rgba(255,255,255,.035);
	color: #c7beb4;
}

.ezFeatureRecordContent code {
	padding: 2px 6px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 5px;
	background: rgba(0,0,0,.25);
	color: #eee8df;
	font-size: .92em;
}

.ezFeatureRecordContent pre {
	max-width: 100%;
	margin: 18px 0;
	padding: 14px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 11px;
	background: #1a1915;
	overflow-x: auto;
}

.ezFeatureRecordContent pre code {
	padding: 0;
	border: 0;
	background: transparent;
}

.ezFeatureRecordContent table {
	display: block;
	max-width: 100%;
	margin: 18px 0;
	border-collapse: collapse;
	overflow-x: auto;
}

.ezFeatureRecordContent th,
.ezFeatureRecordContent td {
	padding: 9px 11px;
	border: 1px solid rgba(255,255,255,.09);
}

.ezFeatureRecordContent th {
	background: rgba(255,255,255,.05);
	color: #fff;
	font-weight: 750;
}

.ez-faq-contrib {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.08);
}

.ez-faq-contribTitle {
	margin-bottom: 10px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .2px;
	text-transform: uppercase;
	opacity: .8;
}

.ez-faq-contribCloud {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.ez-faq-contribAvatar {
	display: inline-flex;
	text-decoration: none;
}

.ez-faq-contribAvatarInner {
	position: relative;
}

.ez-faq-contribAvatarInner .ipsUserPhoto,
.ez-faq-contribAvatarInner img {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 999px;
}

.ez-faq-contribCount {
	position: absolute;
	z-index: 2;
	right: -2px;
	bottom: -2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: rgba(0,0,0,.75);
	font-size: 9px;
	font-weight: 800;
	line-height: 16px;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
}

.ezFeatureRecordMissing {
	margin: 30px 0;
	color: #978e83;
	font-size: 13px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.ezFeatureRecordShell {
		padding-right: 0;
		padding-left: 0;
	}

	.ezFeatureRecordCard {
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.ezFeatureRecordHeader {
		padding: 24px 18px 22px;
	}

	.ezFeatureRecordTitle {
		font-size: 26px;
	}

	.ezFeatureRecordImage--empty {
		min-height: 180px;
	}

	.ezFeatureRecordImageActions {
		top: 10px;
		right: 10px;
		left: 10px;
		flex-wrap: wrap;
	}

	.ezFeatureRecordImageAction {
		min-height: 32px;
		padding: 0 10px;
		font-size: 11px;
	}

	.ezFeatureRecordBody {
		width: calc(100% - 36px);
		padding: 4px 0 28px;
	}

	.ezFeatureRecordContent {
		font-size: 14px;
		line-height: 1.7;
	}
}

.ezFeatureEditShell {
	max-width: 1320px;
	margin: 0 auto;
	padding: 16px 10px 48px;
	color: #dcd7d1;
}

.ezFeatureEditForm {
	margin: 0;
}

.ezFeatureEditError {
	margin: 0 0 16px;
}

.ezFeatureEditLayout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 18px;
	align-items: start;
}

.ezFeatureEditRecord {
	min-width: 0;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 20px;
	background: #262320;
	box-shadow: 0 12px 32px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.03);
	overflow: hidden;
}

.ezFeatureEditImage {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.055), transparent 58%),
		#1a1915;
	overflow: hidden;
	transition: background .15s ease;
}

.ezFeatureEditImage__preview {
	display: block;
	width: 100%;
	min-height: 0;
}

.ezFeatureEditImage__preview img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-width: none !important;
	margin: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	object-fit: contain !important;
}

.ezFeatureEditImage--empty {
	min-height: 360px;
}

.ezFeatureEditImage--empty .ezFeatureEditImage__preview {
	min-height: 360px;
}

.ezFeatureEditImage:after {
	content: "";
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	height: 125px;
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,.62));
	pointer-events: none;
}

.ezFeatureEditImage--empty:after {
	display: none;
}

.ezFeatureEditImage__emptyState {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: none;
	width: calc(100% - 48px);
	transform: translate(-50%, -50%);
	color: #d8d1c9;
	text-align: center;
	pointer-events: none;
}

.ezFeatureEditImage--empty .ezFeatureEditImage__emptyState {
	display: block;
}

.ezFeatureEditImage__emptyTitle {
	color: #eee8df;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.ezFeatureEditImage__emptyText {
	margin-top: 5px;
	color: #81776d;
	font-size: 11px;
	line-height: 1.45;
}

.ezFeatureEditImage__controls {
	position: absolute;
	z-index: 5;
	right: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ezFeatureEditImage--empty .ezFeatureEditImage__controls {
	top: calc(50% + 48px);
	right: auto;
	bottom: auto;
	left: 50%;
	flex-direction: column;
	gap: 7px;
	transform: translateX(-50%);
}

.ezFeatureEditImage__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 9px;
	background: rgba(22,20,17,.88);
	box-shadow: 0 6px 18px rgba(0,0,0,.34);
	color: #eee8df;
	font-size: 11px;
	font-weight: 750;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.ezFeatureEditImage__button i {
	color: #cd402b;
	font-size: 12px;
}

.ezFeatureEditImage__button:hover {
	transform: translateY(-1px);
	border-color: rgba(205,64,43,.48);
	background: rgba(37,30,25,.96);
	color: #fff;
}

.ezFeatureEditImage__button:active {
	transform: translateY(0);
}

.ezFeatureEditImage__hint {
	color: rgba(255,255,255,.58);
	font-size: 9.5px;
	line-height: 1;
	text-shadow: 0 1px 3px rgba(0,0,0,.75);
	white-space: nowrap;
}

.ezFeatureEditImage--empty .ezFeatureEditImage__hint {
	color: #776d64;
	text-shadow: none;
}

.ezFeatureEditImage__native {
	position: absolute !important;
	top: 0 !important;
	left: -10000px !important;
	display: block !important;
	width: 360px !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ezFeatureEditImage__native .ipsFieldRow,
.ezFeatureEditImage__native .ipsFieldRow_content {
	display: block !important;
	width: 360px !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ezFeatureEditImage.is-dragging {
	background: radial-gradient(circle at 50% 45%, rgba(205,64,43,.14), transparent 62%),
		#1a1915;
}

.ezFeatureEditImage.is-dragging:before {
	content: "";
	position: absolute;
	z-index: 8;
	inset: 12px;
	border: 2px dashed rgba(205,64,43,.65);
	border-radius: 13px;
	background: rgba(205,64,43,.06);
	pointer-events: none;
}

.ezFeatureEditImage.is-dragging .ezFeatureEditImage__button {
	border-color: rgba(205,64,43,.65);
	background: rgba(205,64,43,.22);
	color: #fff;
}

@media screen and (max-width: 767px) {
	.ezFeatureEditImage--empty,
	.ezFeatureEditImage--empty .ezFeatureEditImage__preview {
		min-height: 290px;
	}

	.ezFeatureEditImage__controls {
		right: 12px;
		bottom: 12px;
	}

	.ezFeatureEditImage--empty .ezFeatureEditImage__controls {
		top: calc(50% + 48px);
		right: auto;
		bottom: auto;
	}

	.ezFeatureEditImage__button {
		min-height: 34px;
		padding: 0 11px;
	}
}

@media screen and (max-width: 520px) {
	.ezFeatureEditImage--empty,
	.ezFeatureEditImage--empty .ezFeatureEditImage__preview {
		min-height: 240px;
	}

	.ezFeatureEditImage__controls {
		right: 10px;
		bottom: 10px;
	}

	.ezFeatureEditImage__hint {
		display: none;
	}

	.ezFeatureEditImage--empty .ezFeatureEditImage__hint {
		display: block;
	}
}

.ezFeatureEditTitle {
	padding: 26px 38px 0;
}

.ezFeatureEditTitle .ipsFieldRow {
	margin: 0 0 22px;
}

.ezFeatureEditBody {
	width: calc(100% - 76px);
	max-width: 900px;
	margin: 0 auto;
	padding: 0 0 34px;
}

.ezFeatureEditContent .ipsFieldRow {
	margin: 0;
	padding: 0;
}

.ezFeatureEditContent .ipsFieldRow_label,
.ezFeatureEditContent .ipsFieldRow_desc {
	display: none;
}

.ezFeatureEditContent .ipsFieldRow_content {
	width: 100%;
	margin: 0;
	padding: 0;
}

.ezFeatureEditContent textarea {
	width: 100%;
	min-height: 420px;
}

.ezFeatureEditContent .ipsEditor {
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 13px;
	background: rgba(0,0,0,.12);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
	overflow: hidden;
}

.ezFeatureEditContent .ipsEditor_toolList {
	border-bottom-color: rgba(255,255,255,.08);
}

.ezFeatureEditAdditional {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.08);
}

.ezFeatureEditAdditional .ipsFieldRow {
	margin-bottom: 18px;
}

.ezFeatureEditAdditional .ipsFieldRow:last-child {
	margin-bottom: 0;
}

.ezFeatureEditSidebar {
	position: static;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.ezFeatureEditPanel {
	position: relative;
	padding: 15px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 14px;
	background: #262320;
	box-shadow: 0 8px 22px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.025);
}

.ezFeatureEditPanel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 13px;
}

.ezFeatureEditPanel__title {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}

.ezFeatureEditPanel__description {
	margin-top: 3px;
	color: #978e83;
	font-size: 10.5px;
	line-height: 1.45;
}

.ezFeatureItemPicker__native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.ezFeatureItemPicker__selected {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	width: 100%;
	min-width: 0;
	padding: 10px;
	border: 1px solid rgba(255,255,255,.11);
	border-radius: 11px;
	background: #1a1915;
	color: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}

.ezFeatureItemPicker__selected:hover,
.ezFeatureItemPicker.is-open .ezFeatureItemPicker__selected {
	border-color: rgba(205,64,43,.38);
	background: #1e1c18;
}

.ezFeatureItemPicker__selectedIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 12px;
	background: rgba(255,255,255,.035);
	overflow: hidden;
}

.ezFeatureItemPicker__selectedIcon img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 4px;
	object-fit: contain;
}

.ezFeatureItemPicker__selectedEmpty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #736a61;
	font-size: 20px;
}

.ezFeatureItemPicker__selectedText {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 3px;
}

.ezFeatureItemPicker__selectedText strong {
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ezFeatureItemPicker__selectedText small {
	min-width: 0;
	overflow: hidden;
	color: #8f857b;
	font-size: 10px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ezFeatureItemPicker__caret {
	color: #847a70;
	font-size: 10px;
	transition: transform .15s ease;
}

.ezFeatureItemPicker.is-open .ezFeatureItemPicker__caret {
	transform: rotate(180deg);
}

.ezFeatureItemPicker__dropdown {
	position: absolute;
	z-index: 50;
	top: calc(100% - 6px);
	right: 14px;
	left: 14px;
	padding: 10px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 12px;
	background: #1b1916;
	box-shadow: 0 16px 34px rgba(0,0,0,.48);
}

.ezFeatureItemPicker__search {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	padding: 0 10px;
	border: 1px solid rgba(255,255,255,.11);
	border-radius: 9px;
	background: rgba(0,0,0,.24);
}

.ezFeatureItemPicker__search i {
	color: #81776d;
	font-size: 11px;
}

.ipsApp .ezFeatureItemPicker__search input[type="search"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex: 1;
	min-width: 0;
	width: 100%;
	max-width: none;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: transparent;
	background-color: transparent;
	box-shadow: none;
	color: #eee8df;
	font-size: 11px;
}

.ipsApp .ezFeatureItemPicker__search input[type="search"]:focus {
	border: 0;
	outline: 0;
	background: transparent;
	background-color: transparent;
	box-shadow: none;
}

.ezFeatureItemPicker__list {
	display: flex;
	flex-direction: column;
	gap: 3px;
	max-height: 390px;
	overflow-y: auto;
}

.ezFeatureItemPicker__option {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 6px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.ezFeatureItemPicker__option:hover,
.ezFeatureItemPicker__option.is-selected {
	border-color: rgba(205,64,43,.27);
	background: rgba(205,64,43,.10);
}

.ezFeatureItemPicker__optionIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: rgba(255,255,255,.035);
	overflow: hidden;
}

.ezFeatureItemPicker__optionIcon img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px;
	object-fit: contain;
}

.ezFeatureItemPicker__optionText {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px;
}

.ezFeatureItemPicker__optionText strong {
	overflow: hidden;
	color: #eee8df;
	font-size: 11px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ezFeatureItemPicker__optionText small {
	overflow: hidden;
	color: #81776d;
	font-size: 9.5px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ezFeatureItemPicker__more {
	width: 100%;
	margin-top: 7px;
	padding: 8px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 8px;
	background: rgba(255,255,255,.035);
	color: #bdb5ac;
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}

.ezFeatureItemPicker__more:hover {
	border-color: rgba(255,255,255,.17);
	background: rgba(255,255,255,.07);
	color: #fff;
}

.ezFeatureItemPicker__status {
	padding: 8px 4px 1px;
	color: #81776d;
	font-size: 9.5px;
	line-height: 1.4;
	text-align: center;
}

.ezFeatureServerPicker__field .ipsFieldRow {
	margin: 0;
	padding: 0;
}

.ezFeatureServerPicker__field .ipsFieldRow_label,
.ezFeatureServerPicker__field .ipsFieldRow_desc {
	display: none;
}

.ezFeatureServerPicker__field .ipsFieldRow_content {
	width: 100%;
	margin: 0;
	padding: 0;
}

.ezFeatureServerPicker__field select {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255,255,255,.11);
	border-radius: 10px;
	background-color: #1a1915;
	color: #eee8df;
}

.ezFeatureServerPicker__field .ipsSelectTree,
.ezFeatureServerPicker__field .ipsSelectTree_nodes,
.ezFeatureServerPicker__field .ipsField_autocomplete {
	width: 100%;
	border-color: rgba(255,255,255,.11);
	border-radius: 10px;
	background: #1a1915;
}

.ezFeatureServerPicker__field .ipsSelectTree_item,
.ezFeatureServerPicker__field .ipsField_autocompleteToken {
	border-color: rgba(205,64,43,.28);
	border-radius: 999px;
	background: rgba(205,64,43,.12);
	color: #f0c1b8;
}

.ezFeatureServerPicker__field .ipsFieldRow_content > ul {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ezFeatureServerPicker__field .ipsFieldRow_content > ul > li,
.ezFeatureServerPicker__field .ipsFieldRow_content label {
	margin: 0;
}

.ezFeatureServerPicker__field input[type="checkbox"] + label,
.ezFeatureServerPicker__field input[type="radio"] + label {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 9px;
	background: #1a1915;
	color: #d8d1c9;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.ezFeatureServerPicker__field input[type="checkbox"]:checked + label,
.ezFeatureServerPicker__field input[type="radio"]:checked + label {
	border-color: rgba(46,164,79,.42);
	background: rgba(46,164,79,.13);
	color: #b6e9c4;
}

.ezFeatureEditSave {
	padding: 2px 0 0;
}

.ezFeatureEditSave__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(46,164,79,.48);
	border-radius: 11px;
	background: rgba(46,164,79,.18);
	color: #b6e9c4;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}

.ezFeatureEditSave__button:hover {
	transform: translateY(-1px);
	border-color: rgba(46,164,79,.72);
	background: rgba(46,164,79,.27);
	color: #dcf8e4;
}

.ezFeatureEditSave__button:active {
	transform: translateY(0);
}

@media screen and (max-width: 1000px) {
	.ezFeatureEditLayout {
		grid-template-columns: 1fr;
	}

	.ezFeatureEditSidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ezFeatureEditSave {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 767px) {
	.ezFeatureEditShell {
		padding-right: 0;
		padding-left: 0;
	}

	.ezFeatureEditRecord {
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.ezFeatureEditImage--empty .ezFeatureEditImage__preview {
		min-height: 260px;
	}

	.ezFeatureEditTitle {
		padding: 22px 18px 16px;
	}

	.ezFeatureEditBody {
		width: calc(100% - 36px);
		padding-bottom: 28px;
	}

	.ezFeatureEditSidebar {
		grid-template-columns: 1fr;
		padding: 0 10px;
	}

	.ezFeatureEditSave {
		grid-column: auto;
	}

	.ezFeatureItemPicker__dropdown {
		position: fixed;
		z-index: 10000;
		top: 12%;
		right: 12px;
		bottom: 12%;
		left: 12px;
		display: flex;
		flex-direction: column;
	}

	.ezFeatureItemPicker__list {
		flex: 1;
		max-height: none;
	}
}

@media screen and (max-width: 520px) {
	.ezFeatureEditImage--empty .ezFeatureEditImage__preview {
		min-height: 220px;
	}
}

.ezFeatureEditImage__status {
	position: absolute;
	z-index: 6;
	left: 18px;
	bottom: 18px;
	display: none;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	background: rgba(18,17,14,.88);
	box-shadow: 0 5px 14px rgba(0,0,0,.3);
	color: #d8d1c9;
	font-size: 10px;
	font-weight: 750;
	line-height: 1;
	backdrop-filter: blur(8px);
}

.ezFeatureEditImage__status:not(:empty) {
	display: inline-flex;
}

.ezFeatureEditImage__status:before {
	content: "";
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: #d4a94a;
	box-shadow: 0 0 0 3px rgba(212,169,74,.12);
}

.ezFeatureEditImage__status.is-success {
	border-color: rgba(46,164,79,.38);
	color: #b6e9c4;
}

.ezFeatureEditImage__status.is-success:before {
	background: #6fba78;
	box-shadow: 0 0 0 3px rgba(46,164,79,.14);
}

.ezFeatureEditImage__status.is-error {
	border-color: rgba(231,76,60,.42);
	color: #ffb3aa;
}

.ezFeatureEditImage__status.is-error:before {
	background: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231,76,60,.14);
}

.ezFeatureEditImage--empty .ezFeatureEditImage__status {
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
	.ezFeatureEditImage__status {
		left: 12px;
		bottom: 12px;
	}

	.ezFeatureEditImage--empty .ezFeatureEditImage__status {
		left: 50%;
		bottom: 20px;
	}
}

@media screen and (max-width: 520px) {
	.ezFeatureEditImage__status {
		right: 10px;
		left: 10px;
		justify-content: center;
	}

	.ezFeatureEditImage--empty .ezFeatureEditImage__status {
		right: 10px;
		left: 10px;
		transform: none;
	}
}

@media screen and (max-width: 767px) {
	.ezFeatureSectionNav {
		padding: 0 10px;
	}
}


@media screen and (max-width: 767px) {
	.ezFeatureTable__tools {
		flex-wrap: nowrap;
		padding: 0 10px;
	}

	.ezFeatureTable__toolsLeft {
		flex: 0 1 auto;
	}

	.ezFeatureTable__toolsRight {
		flex: 0 0 auto;
		flex-wrap: nowrap;
		margin-left: auto;
	}
}

@media screen and (max-width: 560px) {
	.ezFeatureTable__tools {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.ezFeatureTable__toolsLeft {
		width: 100%;
		flex: 1 0 100%;
	}

	.ezFeatureTable__toolsRight {
		width: 100%;
		flex: 1 0 100%;
		justify-content: flex-end;
		margin-left: 0;
	}
}

.ezServerIndexShell--listing .ez-bm-summary {
	margin-bottom: 6px;
}

.ezServerIndexShell--listing .ezFeatureTable {
	padding-bottom: 0;
}

.ezFeatureRecordNavigator {
	width: 100%;
	margin-top: 26px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ezFeatureRecordNavigator__header {
	margin-bottom: 14px;
}

.ezFeatureRecordNavigator__eyebrow {
	margin-bottom: 3px;
	color: #9c9288;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ezFeatureRecordNavigator__title {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -.3px;
}

.ezFeatureRecordExploreGrid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.ezFeatureRecordExploreCard {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 178px;
	padding: 12px 10px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 14px;
	background: #1d1b18;
	color: #dcd7d1;
	text-align: center;
	text-decoration: none;
	transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.ezFeatureRecordExploreCard:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.20);
	background: #26231f;
	box-shadow: 0 8px 20px rgba(0,0,0,.24);
	color: #fff;
	text-decoration: none;
}

.ezFeatureRecordExploreCard:focus-visible {
	outline: 2px solid rgba(205,64,43,.65);
	outline-offset: 3px;
}


.ezFeatureRecordExploreCard__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 9px;
	padding: 6px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 16px;
	background: #171613;
	color: #cd402b;
	font-size: 23px;
	overflow: hidden;
}

.ezFeatureRecordExploreCard__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .15s ease;
}

.ezFeatureRecordExploreCard:hover .ezFeatureRecordExploreCard__icon img {
	transform: scale(1.06);
}

.ezFeatureRecordExploreCard__title {
	display: -webkit-box;
	max-width: 100%;
	overflow: hidden;
	color: #eee8df;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media screen and (max-width: 1100px) {
	.ezFeatureRecordExploreGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.ezFeatureRecordNavigator {
		margin-top: 22px;
		padding: 0 10px;
	}

	.ezFeatureRecordNavigator__title {
		font-size: 18px;
	}

	.ezFeatureRecordExploreGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ezFeatureRecordExploreCard {
		min-height: 154px;
	}

	.ezFeatureRecordExploreCard__icon {
		width: 56px;
		height: 56px;
		border-radius: 14px;
	}
}

@media screen and (max-width: 520px) {
	.ezFeatureRecordExploreGrid {
		grid-template-columns: 1fr;
	}

	.ezFeatureRecordExploreCard {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 10px;
		min-height: 70px;
		padding: 9px 10px;
		text-align: left;
	}

	.ezFeatureRecordExploreCard__icon {
		width: 48px;
		height: 48px;
		margin: 0;
		border-radius: 12px;
	}

	.ezFeatureRecordExploreCard__title {
		-webkit-line-clamp: 2;
	}
}

@media screen and (max-width: 420px) {
	.ezFeatureRecordImageActions {
		gap: 6px;
	}

	.ezFeatureRecordImageAction {
		flex: 0 1 auto;
		padding: 0 9px;
	}

	.ezFeatureRecordImageAction span {
		white-space: nowrap;
	}
}

.ezServerCategoryCard--pureChase {
	isolation: isolate;
}

.ezServerCategoryCard--pureChase .ezServerCategoryCard__title {
	transition: color .15s ease, transform .15s ease;
}

.ezServerCategoryCard--pureChase.is-pure-shy,
.ezServerCategoryCard--pureChase.is-pure-escaping {
	cursor: pointer;
}

.ezServerCategoryCard--pureChase.is-pure-shy .ezServerCategoryCard__link,
.ezServerCategoryCard--pureChase.is-pure-escaping .ezServerCategoryCard__link {
	cursor: pointer;
}

.ezServerCategoryCard--pureChase.is-pure-shy .ezServerCategoryCard__title,
.ezServerCategoryCard--pureChase.is-pure-escaping .ezServerCategoryCard__title {
	color: #e2bc6a;
}

.ezServerCategoryCard--pureChase.is-pure-shy .ezServerCategoryCard__button,
.ezServerCategoryCard--pureChase.is-pure-escaping .ezServerCategoryCard__button {
	border-color: rgba(226,188,106,.6);
	background: rgba(204,151,58,.21);
	color: #f3d795;
}

.ezServerCategoryCard--pureChase.is-pure-escaping {
	border-color: rgba(226,188,106,.32);
	box-shadow: 0 11px 28px rgba(0,0,0,.38), inset 0 0 0 1px rgba(226,188,106,.06), 0 0 22px rgba(204,151,58,.08);
}

.ezServerCategoryCard--pureChase.is-pure-surrender {
	cursor: pointer;
	border-color: rgba(99,199,121,.38);
	box-shadow: 0 11px 28px rgba(0,0,0,.38), inset 0 0 0 1px rgba(99,199,121,.06), 0 0 24px rgba(99,199,121,.08);
}

.ezServerCategoryCard--pureChase.is-pure-surrender .ezServerCategoryCard__link {
	cursor: pointer;
}

.ezServerCategoryCard--pureChase.is-pure-surrender .ezServerCategoryCard__title {
	color: #b8eac2;
}

.ezServerCategoryCard--pureChase.is-pure-surrender .ezServerCategoryCard__button {
	border-color: rgba(99,199,121,.5);
	background: rgba(46,164,79,.2);
	color: #c9f5d7;
	box-shadow: 0 0 0 0 rgba(99,199,121,.18);
	animation: ezPureDefinitelySafe 1.6s ease-in-out infinite;
}

.ezServerCategoryCard--pureChase.is-pure-surrender:hover .ezServerCategoryCard__button {
	transform: translateY(-1px);
	border-color: rgba(99,199,121,.72);
	background: rgba(46,164,79,.28);
	color: #e1ffe7;
}

.ezPureChase__bubble {
	position: absolute;
	z-index: 7;
	top: 11px;
	left: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100% - 22px);
	min-height: 24px;
	padding: 5px 9px;
	border: 1px solid rgba(226,188,106,.3);
	border-radius: 999px 999px 999px 7px;
	background: rgba(32,28,22,.96);
	box-shadow: 0 5px 14px rgba(0,0,0,.28);
	color: #efd28e;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .025em;
	line-height: 1.15;
	opacity: 0;
	transform: translateY(5px) scale(.94) rotate(-2deg);
	transform-origin: left bottom;
	transition: opacity .15s ease, transform .18s ease, border-color .15s ease, background .15s ease, color .15s ease;
	white-space: nowrap;
	pointer-events: none;
}

.ezPureChase__bubble:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 11px;
	width: 7px;
	height: 7px;
	border-right: 1px solid rgba(226,188,106,.3);
	border-bottom: 1px solid rgba(226,188,106,.3);
	background: rgba(32,28,22,.96);
	transform: rotate(45deg);
}

.ezServerCategoryCard--pureChase.is-pure-shy .ezPureChase__bubble,
.ezServerCategoryCard--pureChase.is-pure-escaping .ezPureChase__bubble,
.ezServerCategoryCard--pureChase.is-pure-surrender .ezPureChase__bubble {
	opacity: 1;
	transform: translateY(0) scale(1) rotate(-2deg);
}

.ezServerCategoryCard--pureChase.is-pure-escaping .ezPureChase__bubble {
	border-color: rgba(226,188,106,.48);
	background: rgba(42,34,22,.97);
}

.ezServerCategoryCard--pureChase.is-pure-escaping .ezPureChase__bubble:after {
	border-color: rgba(226,188,106,.48);
	background: rgba(42,34,22,.97);
}

.ezServerCategoryCard--pureChase.is-pure-surrender .ezPureChase__bubble {
	border-color: rgba(99,199,121,.48);
	background: rgba(25,40,29,.97);
	color: #b8eac2;
	transform: translateY(0) scale(1) rotate(1deg);
}

.ezServerCategoryCard--pureChase.is-pure-surrender .ezPureChase__bubble:after {
	border-color: rgba(99,199,121,.48);
	background: rgba(25,40,29,.97);
}

.ezServerCategoryCard--pureChase.is-pure-jumping:after {
	content: "✦";
	position: absolute;
	z-index: 8;
	top: 18px;
	right: 18px;
	color: #f3d795;
	font-size: 20px;
	line-height: 1;
	text-shadow: 0 0 12px rgba(226,188,106,.5);
	animation: ezPureSparkle .42s ease both;
	pointer-events: none;
}

.ezServerCategoryCard--pureChase.is-pure-jumping .ezPureChase__bubble {
	animation: ezPureBubblePop .42s ease both;
}

@keyframes ezPureDefinitelySafe {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(99,199,121,.12);
	}

	50% {
		box-shadow: 0 0 0 5px rgba(99,199,121,0);
	}
}

@keyframes ezPureSparkle {
	0% {
		opacity: 0;
		transform: scale(.25) rotate(-30deg);
	}

	45% {
		opacity: 1;
		transform: scale(1.15) rotate(8deg);
	}

	100% {
		opacity: 0;
		transform: scale(.8) rotate(28deg) translateY(-8px);
	}
}

@keyframes ezPureBubblePop {
	0% {
		opacity: 0;
		transform: translateY(8px) scale(.82) rotate(-5deg);
	}

	60% {
		opacity: 1;
		transform: translateY(-1px) scale(1.05) rotate(-1deg);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1) rotate(-2deg);
	}
}

@media screen and (max-width: 767px) {
	.ezPureChase__bubble {
		top: 9px;
		left: 9px;
		max-width: calc(100% - 18px);
		font-size: 8.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ezServerCategoryCard--pureChase,
	.ezServerCategoryCard--pureChase *,
	.ezServerCategoryCard--pureChase:after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

.ezPureSplashShell {
	max-width: var(--container--width);
	margin: 0 auto;
	padding: 12px 10px 52px;
	color: #dcd7d1;
}

.ezPureSplashNav {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.ezPureZeroHero {
	margin: 2px auto 58px;
	padding: 4px 0 0;
	text-align: center;
}

.ezPureZeroHero__direct,
.ezPureServerChoice__bubble {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100% - 24px);
	min-height: 24px;
	padding: 5px 9px;
	border: 1px solid rgba(226,188,106,.3);
	border-radius: 999px 999px 999px 7px;
	background: rgba(32,28,22,.96);
	box-shadow: 0 5px 14px rgba(0,0,0,.28);
	color: #efd28e;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .025em;
	line-height: 1.15;
	transform: rotate(-2deg);
	transform-origin: left bottom;
	white-space: nowrap;
}

.ezPureZeroHero__direct {
	margin-bottom: 11px;
}

.ezPureServerChoice__bubble {
	margin-bottom: 13px;
	transform: rotate(1deg);
}

.ezPureZeroHero__direct:after,
.ezPureServerChoice__bubble:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 11px;
	width: 7px;
	height: 7px;
	border-right: 1px solid rgba(226,188,106,.3);
	border-bottom: 1px solid rgba(226,188,106,.3);
	background: rgba(32,28,22,.96);
	transform: rotate(45deg);
}

.ezPureZeroHero__copy {
	max-width: 760px;
	margin: 0 auto;
}

.ezPureZeroHero__copy h1 {
	margin: 0;
	color: #fff;
	font-size: 38px;
	letter-spacing: -1px;
	line-height: 1.08;
}

.ezPureZeroHero__copy p {
	max-width: 680px;
	margin: 12px auto 0;
	color: #aa9f93;
	font-size: 14.5px;
	line-height: 1.65;
}

.ezPureZeroHero__copy p strong {
	color: #ded6cd;
	font-weight: 850;
}

.ezPureEmptyFeatureGrid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin: 30px 0 56px;
	overflow: hidden;
}

.ezPureEmptyFeatureCard {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	min-height: 215px;
	padding: 18px 14px 14px;
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 13px;
	background: #211f1c;
	opacity: .52;
}

.ezPureEmptyFeatureCard__icon,
.ezPureEmptyFeatureCard__title,
.ezPureEmptyFeatureCard__tags span,
.ezPureEmptyFeatureCard__button {
	display: block;
	border: 1px solid rgba(255,255,255,.035);
	background: rgba(255,255,255,.06);
}

.ezPureEmptyFeatureCard__icon {
	width: 70px;
	height: 70px;
	border-radius: 18px;
}

.ezPureEmptyFeatureCard__title {
	width: 58%;
	height: 12px;
	margin-top: 17px;
	border-radius: 999px;
}

.ezPureEmptyFeatureCard__tags {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	max-width: 100%;
	margin-top: 17px;
}

.ezPureEmptyFeatureCard__tags span {
	width: 34px;
	height: 17px;
	border-radius: 999px;
}

.ezPureEmptyFeatureCard__button {
	width: 100%;
	height: 35px;
	margin-top: auto;
	border-radius: 999px;
}

.ezPureMissingSection {
	padding: 0;
}

.ezPureMissingSection__header {
	max-width: 780px;
	margin: 0 auto 25px;
	text-align: center;
}

.ezPureMissingSection__title {
	margin: 0;
	color: #fff;
	font-size: 34px;
	letter-spacing: -.7px;
	line-height: 1.18;
}

.ezPureMissingSection__sub {
	max-width: 720px;
	margin: 9px auto 0;
	color: #aa9f93;
	font-size: 14.5px;
	line-height: 1.45;
}

.ezPureMissingFeatureGrid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	align-items: start;
	margin-top: 0;
}

.ezPureMissingFeatureGrid .ezFeatureCard--pureMissing {
	height: auto !important;
	min-height: 0 !important;
	padding: 14px !important;
}

.ezPureMissingFeatureGrid .ezFeatureCard--pureMissing .ezFeatureCard__link {
	flex: 0 0 auto;
	height: auto;
}

.ezPureMissingFeatureGrid .ezFeatureCard--pureMissing .ezFeatureCard__content {
	flex: 0 0 auto;
}

.ezPureMissingFeatureGrid .ezFeatureCard--pureMissing .ezFeatureCard__icon {
	margin-bottom: 13px;
}

.ezPureMissingFeatureGrid .ezFeatureCard--pureMissing .ezFeatureCard__button {
	width: calc(100% - 8px);
	margin: 15px auto 0;
}

.ezFeatureCard__serverTags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: 12px;
}

.ezFeatureCard__serverTag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 20px;
	padding: 0 7px;
	border: 1px solid rgba(205,64,43,.24);
	border-radius: 999px;
	background: rgba(205,64,43,.10);
	color: #ffb09b;
	font-size: 10px;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
}

.ezFeatureCard--pureMissing {
	position: relative;
}

.ezFeatureCard__missingRibbon {
	position: absolute;
	z-index: 6;
	top: 13px;
	right: -37px;
	display: block;
	width: 134px;
	padding: 6px 0;
	border-top: 1px solid rgba(255,255,255,.38);
	border-bottom: 1px solid rgba(51,36,12,.28);
	background: #e2bc6a;
	box-shadow: 0 2px 7px rgba(0,0,0,.24);
	color: #100d08;
	font-size: 8.5px;
	font-weight: 950;
	letter-spacing: .055em;
	line-height: 1;
	text-align: center;
	text-shadow: 0 1px 0 rgba(255,255,255,.18);
	text-transform: uppercase;
	transform: rotate(39deg);
	transform-origin: center;
	pointer-events: none;
}

.ezPureServerChoice {
	margin-top: 64px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ezPureServerChoice__header {
	position: relative;
	max-width: 680px;
	margin: 0 auto 24px;
	text-align: center;
}

.ezPureServerChoice__header h2 {
	margin: 0;
	color: #fff;
	font-size: 27px;
	letter-spacing: -.45px;
	line-height: 1.2;
}

.ezPureServerChoice__header p {
	margin: 6px 0 0;
	color: #aaa096;
	font-size: 12px;
	line-height: 1.5;
}

.ezPureServerChoice__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 13px;
}

.ezPureServerChoiceCard {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 15px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 16px;
	background: #292622;
	box-shadow: 0 7px 20px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.02);
	color: inherit;
	text-decoration: none;
	transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.ezPureServerChoiceCard:hover {
	transform: translateY(-3px);
	border-color: rgba(255,255,255,.19);
	background: #2d2a26;
	box-shadow: 0 11px 26px rgba(0,0,0,.31), inset 0 0 0 1px rgba(255,255,255,.035);
	color: inherit;
	text-decoration: none;
}

.ezPureServerChoiceCard img {
	display: block;
	width: 74px;
	height: 74px;
	flex: 0 0 74px;
	margin-right: 13px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 5px 14px rgba(0,0,0,.24);
	transition: transform .18s ease;
}

.ezPureServerChoiceCard:hover img {
	transform: scale(1.04) rotate(-1deg);
}

.ezPureServerChoiceCard__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.ezPureServerChoiceCard__titleRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}

.ezPureServerChoiceCard__body h3 {
	min-width: 0;
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.ezPureServerChoiceCard__population {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	flex: 0 0 auto;
	margin-left: auto;
	color: #aee0b5;
	font-size: 10px;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
}

.ezPureServerChoiceCard__population:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	flex: 0 0 6px;
	border-radius: 999px;
	background: #6fba78;
	box-shadow: 0 0 0 3px rgba(46,164,79,.12);
}

.ezPureServerChoiceCard__population.is-loading,
.ezPureServerChoiceCard__population.is-unknown {
	color: #9c9288;
}

.ezPureServerChoiceCard__population.is-loading:before,
.ezPureServerChoiceCard__population.is-unknown:before {
	background: #8f867e;
	box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}

.ezPureServerChoiceCard__population.is-empty {
	color: #d4a94a;
}

.ezPureServerChoiceCard__population.is-empty:before {
	background: #d4a94a;
	box-shadow: 0 0 0 3px rgba(212,169,74,.12);
}

.ezPureServerChoiceCard__body p {
	margin: 6px 0 11px;
	color: #9f958b;
	font-size: 10.5px;
	line-height: 1.45;
}

.ezPureServerChoiceCard__body > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: #aee0b5;
	font-size: 9.5px;
	font-weight: 850;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.ezPureServerChoiceCard__body > span i {
	transition: transform .15s ease;
}

.ezPureServerChoiceCard:hover .ezPureServerChoiceCard__body > span i {
	transform: translateX(2px);
}

.ezPureServerChoice__footer {
	margin-top: 20px;
	color: #9e9388;
	font-size: 10.5px;
	line-height: 1.5;
	text-align: center;
}

.ezPureServerChoice__footer span {
	color: #e2bc6a;
	font-size: 13px;
}

@media screen and (max-width: 1380px) {
	.ezPureMissingFeatureGrid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1120px) {
	.ezPureEmptyFeatureGrid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ezPureEmptyFeatureCard:nth-child(n+5) {
		display: none;
	}

	.ezPureMissingFeatureGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 920px) {
	.ezPureServerChoice__grid {
		grid-template-columns: 1fr;
	}

	.ezPureServerChoiceCard {
		max-width: 760px;
		width: 100%;
		margin: 0 auto;
	}

	.ezPureServerChoiceCard img {
		width: 68px;
		height: 68px;
		flex-basis: 68px;
	}
}

@media screen and (max-width: 820px) {
	.ezPureZeroHero__copy h1 {
		font-size: 35px;
	}
}

@media screen and (max-width: 767px) {
	.ezPureSplashShell {
		padding-right: 0;
		padding-left: 0;
	}

	.ezPureSplashNav {
		padding: 0 10px;
	}

	.ezPureZeroHero {
		margin-bottom: 46px;
		padding: 0 10px;
	}

	.ezPureZeroHero__copy {
		padding: 0 6px;
	}

	.ezPureZeroHero__copy h1 {
		font-size: 31px;
		letter-spacing: -.7px;
	}

	.ezPureZeroHero__copy p {
		font-size: 13px;
		line-height: 1.6;
	}

	.ezPureEmptyFeatureGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		margin-top: 25px;
		margin-bottom: 46px;
	}

	.ezPureEmptyFeatureCard {
		min-height: 166px;
		padding: 13px 9px 10px;
		border-radius: 11px;
	}

	.ezPureEmptyFeatureCard:nth-child(n+4) {
		display: none;
	}

	.ezPureEmptyFeatureCard__icon {
		width: 48px;
		height: 48px;
		border-radius: 13px;
	}

	.ezPureEmptyFeatureCard__title {
		height: 9px;
		margin-top: 13px;
	}

	.ezPureEmptyFeatureCard__tags {
		gap: 3px;
		margin-top: 12px;
	}

	.ezPureEmptyFeatureCard__tags span {
		width: 23px;
		height: 13px;
	}

	.ezPureEmptyFeatureCard__button {
		height: 27px;
	}

	.ezPureMissingSection {
		padding: 0 10px;
	}

	.ezPureMissingSection__title {
		font-size: 29px;
		letter-spacing: -.55px;
	}

	.ezPureMissingSection__sub {
		font-size: 13px;
		line-height: 1.55;
	}

	.ezPureMissingFeatureGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.ezPureServerChoice {
		margin-top: 52px;
		padding: 0 10px;
	}
}

@media screen and (max-width: 640px) {
	.ezPureZeroHero__direct,
	.ezPureServerChoice__bubble {
		white-space: normal;
		text-align: center;
	}

	.ezPureServerChoice__header h2 {
		font-size: 25px;
	}
}

@media screen and (max-width: 560px) {
	.ezPureMissingFeatureGrid {
		grid-template-columns: 1fr;
	}

	.ezPureServerChoiceCard {
		align-items: flex-start;
		padding: 14px;
	}

	.ezPureServerChoiceCard img {
		width: 62px;
		height: 62px;
		flex-basis: 62px;
		margin-right: 11px;
		border-radius: 16px;
	}

	.ezPureServerChoiceCard__body p {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
	.ezPureEmptyFeatureGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.ezPureEmptyFeatureCard:nth-child(3) {
		display: none;
	}

	.ezPureServerChoiceCard__population {
		font-size: 9px;
	}

	.ezPureServerChoiceCard__body h3 {
		font-size: 15px;
	}
}

@media screen and (max-width: 390px) {
	.ezPureZeroHero {
		padding-right: 8px;
		padding-left: 8px;
	}

	.ezPureZeroHero__copy h1 {
		font-size: 28px;
	}

	.ezPureEmptyFeatureGrid {
		gap: 7px;
	}

	.ezPureEmptyFeatureCard {
		min-height: 154px;
		padding: 11px 8px 9px;
	}

	.ezPureMissingSection,
	.ezPureServerChoice {
		padding-right: 8px;
		padding-left: 8px;
	}

	.ezPureServerChoiceCard {
		padding: 12px;
	}

	.ezPureServerChoiceCard img {
		width: 56px;
		height: 56px;
		flex-basis: 56px;
		margin-right: 10px;
		border-radius: 14px;
	}

	.ezPureServerChoiceCard__titleRow {
		gap: 7px;
	}

	.ezPureServerChoiceCard__population {
		gap: 5px;
		font-size: 8.5px;
	}

	.ezPureServerChoiceCard__population:before {
		width: 5px;
		height: 5px;
		flex-basis: 5px;
	}

	.ezPureServerChoiceCard__body p {
		font-size: 10px;
	}

	.ezPureServerChoiceCard__body > span {
		font-size: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ezPureSplashShell *,
	.ezPureSplashShell *:before,
	.ezPureSplashShell *:after {
		transition-duration: .01ms !important;
	}
}
