.icge-wrap,
.icge-wheel,
.icge-member-public-badges {
	--icge-dark: #0c0a15;
	--icge-brown: #883621;
	--icge-deep-brown: #792314;
	--icge-bg: #faf7f5;
	--icge-white: #ffffff;
	--icge-border: rgba(12, 10, 21, 0.1);
	--icge-shadow: 0 18px 45px rgba(12, 10, 21, 0.08);
}

.icge-wrap {
	color: var(--icge-dark);
	font-family: inherit;
	margin: 24px 0;
}

.icge-wrap *,
.icge-wrap *::before,
.icge-wrap *::after,
.icge-wheel *,
.icge-wheel *::before,
.icge-wheel *::after,
.icge-member-public-badges *,
.icge-member-public-badges *::before,
.icge-member-public-badges *::after {
	box-sizing: border-box;
}

.icge-card,
.icge-hero-card {
	background: var(--icge-white);
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	box-shadow: var(--icge-shadow);
	padding: 24px;
}

.icge-hero-card {
	background: linear-gradient(135deg, #ffffff 0%, #faf7f5 100%);
	margin-bottom: 22px;
}

.icge-grid {
	display: grid;
	gap: 18px;
	margin: 18px 0;
}

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

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

.icge-member-hero,
.icge-member-cell,
.icge-card-header,
.icge-card-footer,
.icge-copy-row {
	align-items: center;
	display: flex;
	gap: 14px;
}

.icge-member-hero {
	margin-bottom: 18px;
}

.icge-member-hero img,
.icge-member-cell img {
	border-radius: 50%;
	flex: 0 0 auto;
}

.icge-member-hero h2,
.icge-card h3,
.icge-hero-card h3,
.icge-level-card h3 {
	color: var(--icge-dark);
	line-height: 1.15;
	margin: 4px 0 8px;
}

.icge-member-hero h2 {
	font-size: 28px;
}

.icge-card h3,
.icge-level-card h3 {
	font-size: 22px;
}

.icge-kicker {
	color: var(--icge-brown);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.icge-muted {
	color: rgba(12, 10, 21, 0.64);
	font-size: 14px;
	margin-bottom: 0;
}

.icge-progress {
	background: #efe5df;
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
	width: 100%;
}

.icge-progress span {
	background: linear-gradient(90deg, var(--icge-brown), var(--icge-deep-brown));
	border-radius: inherit;
	display: block;
	height: 100%;
	min-width: 2px;
	transition: width 220ms ease;
}

.icge-stat {
	background: var(--icge-bg);
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	padding: 16px;
}

.icge-stat span {
	color: var(--icge-deep-brown);
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.icge-stat p {
	color: rgba(12, 10, 21, 0.68);
	font-size: 13px;
	margin: 6px 0 0;
}

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

.icge-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	overflow: visible;
}

.icge-badge,
.icge-pill {
	align-items: center;
	background: linear-gradient(135deg, #ffffff 0%, #fff7f3 100%);
	border: 1px solid rgba(136, 54, 33, 0.18);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(12, 10, 21, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
	color: var(--icge-deep-brown);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	line-height: 1;
	padding: 7px 12px 7px 7px;
	position: relative;
	white-space: nowrap;
}

.icge-badge {
	cursor: help;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.icge-badge:hover,
.icge-badge:focus {
	border-color: rgba(136, 54, 33, 0.34);
	box-shadow: 0 14px 30px rgba(12, 10, 21, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.95);
	transform: translateY(-1px);
	z-index: 20;
}

.icge-badge::after {
	background: var(--icge-dark);
	border-radius: 8px;
	bottom: calc(100% + 10px);
	box-shadow: 0 12px 26px rgba(12, 10, 21, 0.22);
	color: #ffffff;
	content: attr(data-badge-name);
	font-size: 12px;
	font-weight: 800;
	left: 50%;
	line-height: 1;
	opacity: 0;
	padding: 9px 11px;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%) translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
	white-space: nowrap;
	z-index: 30;
}

.icge-badge:hover::after,
.icge-badge:focus::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.icge-badge-icon {
	align-items: center;
	background: linear-gradient(135deg, #883621, #792314);
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	color: #ffffff;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.icge-badge-svg {
	display: block;
	height: 17px;
	width: 17px;
}

.icge-badge-text {
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.icge-badge-support .icge-badge-icon {
	background: linear-gradient(135deg, #a9452b, #792314);
}

.icge-badge-streak .icge-badge-icon {
	background: linear-gradient(135deg, #b95d30, #883621);
}

.icge-badge-referral .icge-badge-icon {
	background: linear-gradient(135deg, #0c0a15, #883621);
}

.icge-badge-subscriber .icge-badge-icon {
	background: linear-gradient(135deg, #c18a57, #883621);
}

.icge-badge-staff {
	background: linear-gradient(135deg, #0c0a15 0%, #271a20 52%, #883621 100%);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.icge-badge-staff .icge-badge-icon {
	background: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.icge-badge-special .icge-badge-icon {
	background: conic-gradient(from 210deg, #883621, #c18a57, #0c0a15, #883621);
}

.icge-badge-locked {
	background: linear-gradient(135deg, #f6f2ef 0%, #ffffff 100%);
	border-color: rgba(12, 10, 21, 0.12);
	border-style: dashed;
	color: rgba(12, 10, 21, 0.52);
	box-shadow: none;
}

.icge-badge-locked .icge-badge-icon {
	background: #6e6462;
}

.icge-member-public-badges {
	clear: both;
	margin: 12px 0;
}

.icge-avatar-badges {
	clear: none;
	display: block;
	margin: 8px 0 0;
	max-width: 360px;
	overflow: visible;
	position: relative;
	z-index: 12;
}

.icge-avatar-badges .icge-badges {
	gap: 6px;
	justify-content: center;
	overflow: visible;
}

.icge-avatar-badges .icge-badge {
	border-color: rgba(136, 54, 33, 0.2);
	box-shadow: 0 8px 18px rgba(12, 10, 21, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	min-height: 34px;
	padding: 4px;
}

.icge-avatar-badges .icge-badge-icon {
	height: 30px;
	width: 30px;
}

.icge-avatar-badges .icge-badge-svg {
	height: 17px;
	width: 17px;
}

.icge-avatar-badges .icge-badge-text {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.icge-has-avatar-badges {
	overflow: visible !important;
	position: relative;
}

#item-header-avatar.icge-has-avatar-badges .icge-avatar-badges,
.item-header-avatar.icge-has-avatar-badges .icge-avatar-badges,
.item-avatar.icge-has-avatar-badges .icge-avatar-badges,
.member-avatar.icge-has-avatar-badges .icge-avatar-badges,
.bp-member-avatar.icge-has-avatar-badges .icge-avatar-badges {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 8px;
	width: 100%;
}

.icge-profile-avatar-badges {
	max-width: 420px;
}

.icge-profile-avatar-badges .icge-badges {
	justify-content: flex-start;
}

#item-header-avatar.icge-has-avatar-badges .icge-profile-avatar-badges .icge-badges,
.item-header-avatar.icge-has-avatar-badges .icge-profile-avatar-badges .icge-badges {
	justify-content: center;
}

.icge-member-loop-badges .icge-badge {
	font-size: 12px;
	padding: 4px;
}

.icge-member-loop-badges .icge-badge-icon {
	height: 24px;
	width: 24px;
}

.icge-member-loop-badges .icge-badge-svg {
	height: 15px;
	width: 15px;
}

.icge-member-loop-badges .icge-badges {
	gap: 5px;
}

.icge-member-loop-badges {
	max-width: 210px;
}

.icge-achievement-catalog {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 16px;
}

.icge-achievement-card {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	display: flex;
	gap: 12px;
	padding: 14px;
}

.icge-achievement-card.is-locked {
	background: #fbfaf9;
}

.icge-achievement-card .icge-badge {
	flex: 0 0 auto;
}

.icge-achievement-card h3 {
	font-size: 16px;
	margin: 0 0 5px;
}

.icge-achievement-card p {
	color: rgba(12, 10, 21, 0.66);
	font-size: 13px;
	line-height: 1.4;
	margin: 0 0 8px;
}

.icge-achievement-card > div > span {
	color: var(--icge-brown);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.icge-points-balance {
	text-align: center;
}

.icge-points-balance strong {
	color: var(--icge-deep-brown);
	display: block;
	font-size: 44px;
	line-height: 1;
	margin: 8px 0 2px;
}

.icge-points-balance > span {
	color: rgba(12, 10, 21, 0.62);
	display: block;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.icge-points-history {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.icge-points-row {
	align-items: center;
	background: var(--icge-bg);
	border: 1px solid rgba(12, 10, 21, 0.08);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: 74px minmax(0, 1fr);
	padding: 12px;
}

.icge-points-row > span {
	border-radius: 999px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
	text-align: center;
}

.icge-points-row .is-positive {
	background: #26724f;
}

.icge-points-row .is-negative {
	background: #a13424;
}

.icge-points-row strong,
.icge-points-row small {
	display: block;
}

.icge-points-row strong {
	color: var(--icge-dark);
	font-size: 14px;
}

.icge-points-row small {
	color: rgba(12, 10, 21, 0.58);
	font-size: 12px;
	margin-top: 3px;
}

.icge-user-gifts {
	margin-top: 18px;
}

.icge-gift-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.icge-gift-chip {
	background: linear-gradient(135deg, #fffaf6, #ffffff);
	border: 1px solid rgba(136, 54, 33, 0.18);
	border-radius: 999px;
	color: var(--icge-deep-brown);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 9px 11px;
}

.icge-wheel {
	bottom: 22px;
	color: var(--icge-dark);
	font-family: inherit;
	position: fixed;
	right: 22px;
	z-index: 99998;
}

.icge-wheel.is-visible {
	animation: icge-wheel-pop 340ms ease both;
}

.icge-wheel.is-claimed {
	pointer-events: none;
	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transition: opacity 240ms ease, transform 240ms ease;
}

.icge-wheel-fab {
	align-items: center;
	background: #0c0a15;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 999px;
	box-shadow: 0 18px 48px rgba(12, 10, 21, 0.24);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 12px;
	font-weight: 900;
	gap: 10px;
	line-height: 1;
	min-height: 56px;
	padding: 8px 16px 8px 8px;
	position: relative;
	text-transform: uppercase;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.icge-wheel-fab:hover,
.icge-wheel-fab:focus {
	box-shadow: 0 22px 56px rgba(12, 10, 21, 0.3);
	transform: translateY(-1px);
}

.icge-wheel-fab::before {
	align-items: center;
	background: conic-gradient(from 225deg, #c98b4f, #883621, #ffffff, #0c0a15, #c98b4f);
	border-radius: 50%;
	color: #0c0a15;
	content: "IH";
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.icge-wheel-fab span {
	display: inline-block;
}

.icge-wheel-panel {
	background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
	border: 1px solid rgba(12, 10, 21, 0.11);
	border-radius: 8px;
	bottom: 76px;
	box-shadow: 0 28px 80px rgba(12, 10, 21, 0.24);
	overflow: visible;
	padding: 22px;
	position: absolute;
	right: 0;
	width: min(368px, calc(100vw - 32px));
}

.icge-wheel-panel[hidden] {
	display: none;
}

.icge-wheel-panel h3 {
	color: var(--icge-dark);
	font-size: 23px;
	line-height: 1.12;
	margin: 5px 34px 16px 0;
}

.icge-wheel-panel-head {
	border-bottom: 1px solid rgba(12, 10, 21, 0.08);
	margin: -2px 0 18px;
	padding-bottom: 12px;
}

.icge-wheel-close {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--icge-border);
	border-radius: 50%;
	color: var(--icge-dark);
	cursor: pointer;
	display: inline-flex;
	font-size: 18px;
	height: 32px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 32px;
}

.icge-wheel-stage {
	margin: 2px auto 16px;
	position: relative;
	width: 246px;
}

.icge-wheel-pointer {
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 22px solid #0c0a15;
	filter: drop-shadow(0 4px 7px rgba(12, 10, 21, 0.24));
	left: 50%;
	position: absolute;
	top: -3px;
	transform: translateX(-50%);
	z-index: 6;
}

.icge-wheel-disc {
	aspect-ratio: 1;
	background: conic-gradient(from -22.5deg, #82301e 0deg 45deg, #f6d8bb 45deg 90deg, #19121f 90deg 135deg, #b76d3b 135deg 180deg, #fff4eb 180deg 225deg, #883621 225deg 270deg, #2c2031 270deg 315deg, #d19a58 315deg 360deg);
	border: 10px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 18px 36px rgba(12, 10, 21, 0.18), inset 0 0 0 1px rgba(12, 10, 21, 0.16), inset 0 0 0 12px rgba(255, 255, 255, 0.13);
	margin: 0 auto;
	position: relative;
	width: 246px;
}

.icge-wheel-disc::before {
	background: radial-gradient(circle at 35% 28%, #ffffff 0%, #f7d8bb 48%, #9b4429 100%);
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(12, 10, 21, 0.24), inset 0 0 0 5px rgba(255, 255, 255, 0.54);
	content: "";
	height: 62px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 62px;
	z-index: 3;
}

.icge-wheel-disc::after {
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	content: "";
	inset: 12px;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.icge-wheel-slice-label {
	color: #ffffff;
	display: block;
	font-size: 10px;
	font-weight: 900;
	left: 50%;
	line-height: 1.1;
	max-width: 54px;
	position: absolute;
	text-align: center;
	text-shadow: 0 1px 4px rgba(12, 10, 21, 0.35);
	text-transform: uppercase;
	top: 50%;
	transform: translate(-50%, -50%) rotate(var(--icge-angle)) translateY(-89px) rotate(var(--icge-counter-angle));
	transform-origin: center;
	z-index: 4;
}

.icge-wheel-slice-label:nth-child(2),
.icge-wheel-slice-label:nth-child(5) {
	color: var(--icge-dark);
	text-shadow: none;
}

.icge-wheel-hub {
	align-items: center;
	background: #0c0a15;
	border: 4px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 10px 18px rgba(12, 10, 21, 0.26);
	color: #ffffff;
	display: flex;
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 46px;
	z-index: 5;
}

.icge-wheel-disc.is-spinning {
	animation: icge-wheel-spin 1.6s cubic-bezier(0.12, 0.74, 0.18, 1) both;
}

.icge-wheel-spin-button {
	justify-content: center;
	width: 100%;
}

.icge-wheel-result {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	margin-top: 12px;
	min-height: 20px;
}

.icge-wheel-result.is-success {
	color: #26724f;
}

.icge-wheel-result.is-error {
	color: #a13424;
}

@keyframes icge-wheel-pop {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes icge-wheel-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(1485deg);
	}
}

.icge-action-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.icge-action-list li {
	background: var(--icge-bg);
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	padding: 12px 14px 12px 34px;
	position: relative;
}

.icge-action-list li::before {
	background: var(--icge-brown);
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 14px;
	position: absolute;
	top: 18px;
	width: 8px;
}

.icge-section-title {
	font-size: 24px;
	margin: 28px 0 14px;
}

.icge-challenge-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icge-card-header,
.icge-card-footer {
	justify-content: space-between;
}

.icge-card-footer {
	color: rgba(12, 10, 21, 0.68);
	font-size: 14px;
	margin: 12px 0;
}

.icge-button {
	background: var(--icge-brown);
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	padding: 12px 16px;
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease;
}

.icge-button:hover,
.icge-button:focus {
	background: var(--icge-deep-brown);
	color: #ffffff;
	transform: translateY(-1px);
}

.icge-button-muted {
	background: #efe5df;
	color: var(--icge-deep-brown);
	cursor: default;
}

.icge-button-ghost {
	background: #ffffff;
	border: 1px solid rgba(136, 54, 33, 0.22);
	color: var(--icge-deep-brown);
}

.icge-button-ghost:hover,
.icge-button-ghost:focus {
	background: #faf7f5;
	color: var(--icge-deep-brown);
}

.icge-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.icge-button-success {
	background: #1f7a4d;
	cursor: default;
}

.icge-inline-form {
	margin: 0;
}

.icge-copy-row input {
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	color: var(--icge-dark);
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 14px;
	width: 100%;
}

.icge-leaderboard {
	background: var(--icge-white);
	border: 1px solid var(--icge-border);
	border-radius: 8px;
	box-shadow: var(--icge-shadow);
	overflow-x: auto;
}

.icge-leaderboard table {
	border-collapse: collapse;
	margin: 0;
	min-width: 620px;
	width: 100%;
}

.icge-leaderboard th,
.icge-leaderboard td {
	border-bottom: 1px solid var(--icge-border);
	padding: 14px 16px;
	text-align: left;
}

.icge-leaderboard th {
	background: var(--icge-bg);
	color: var(--icge-deep-brown);
	font-size: 12px;
	text-transform: uppercase;
}

.icge-sidebar-wrap {
	margin: 0;
}

.icge-sidebar-leaderboard {
	background:
		linear-gradient(135deg, rgba(250, 247, 245, 0.9), rgba(255, 255, 255, 0.96)),
		#ffffff;
	border: 1px solid rgba(136, 54, 33, 0.14);
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(12, 10, 21, 0.08);
	overflow: hidden;
	padding: 16px;
}

.icge-sidebar-leaderboard-head {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.icge-sidebar-leaderboard-head h3 {
	color: var(--icge-dark);
	font-size: 18px;
	line-height: 1.18;
	margin: 3px 0 0;
}

.icge-sidebar-leaderboard-head > span {
	background: #ffffff;
	border: 1px solid rgba(136, 54, 33, 0.16);
	border-radius: 999px;
	color: var(--icge-deep-brown);
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 9px;
}

.icge-sidebar-leaderboard-list {
	counter-reset: none;
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.icge-sidebar-leaderboard-list li {
	align-items: center;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(12, 10, 21, 0.08);
	border-radius: 8px;
	display: grid;
	gap: 9px;
	grid-template-columns: 26px 38px minmax(0, 1fr) auto;
	min-height: 58px;
	padding: 9px;
}

.icge-sidebar-leaderboard-list img {
	border-radius: 50%;
	display: block;
	height: 38px;
	width: 38px;
}

.icge-sidebar-rank {
	align-items: center;
	background: linear-gradient(135deg, var(--icge-brown), var(--icge-deep-brown));
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.icge-sidebar-member {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.icge-sidebar-member strong,
.icge-sidebar-member small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.icge-sidebar-member strong {
	color: var(--icge-dark);
	font-size: 13px;
	line-height: 1.15;
}

.icge-sidebar-member small {
	color: rgba(12, 10, 21, 0.56);
	font-size: 11px;
	line-height: 1.1;
}

.icge-sidebar-score {
	color: var(--icge-deep-brown);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.icge-notifications {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.icge-notice {
	align-items: center;
	background: #fff8f5;
	border: 1px solid rgba(136, 54, 33, 0.18);
	border-left: 4px solid var(--icge-brown);
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	padding: 12px 14px;
}

.icge-dismiss {
	background: transparent;
	border: 0;
	color: var(--icge-dark);
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	margin-left: 12px;
	padding: 2px 6px;
}

@media (max-width: 820px) {
	.icge-grid-2,
	.icge-grid-3,
	.icge-achievement-catalog,
	.icge-challenge-grid,
	.icge-streak-grid {
		grid-template-columns: 1fr;
	}

	.icge-member-hero,
	.icge-card-header,
	.icge-card-footer,
	.icge-copy-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.icge-copy-row .icge-button {
		width: 100%;
	}

	.icge-card,
	.icge-hero-card {
		padding: 18px;
	}

	.icge-sidebar-leaderboard-list li {
		grid-template-columns: 26px 34px minmax(0, 1fr) auto;
	}

	.icge-sidebar-leaderboard-list img {
		height: 34px;
		width: 34px;
	}

	.icge-points-row {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.icge-wheel {
		bottom: 16px;
		right: 16px;
	}

	.icge-wheel-fab {
		min-height: 52px;
		padding-right: 14px;
	}

	.icge-wheel-panel {
		bottom: 82px;
	}

	.icge-wheel-stage,
	.icge-wheel-disc {
		width: 224px;
	}

	.icge-wheel-slice-label {
		transform: translate(-50%, -50%) rotate(var(--icge-angle)) translateY(-80px) rotate(var(--icge-counter-angle));
	}
}
