@font-face {
	font-family: "Philosopher";
	src: url("../Philosopher/Philosopher-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Philosopher";
	src: url("../Philosopher/Philosopher-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Philosopher";
	src: url("../Philosopher/Philosopher-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

:root {
	--cw-bg: #09090b;
	--cw-bg-soft: #101013;
	--cw-surface: rgba(18, 18, 21, 0.96);
	--cw-surface-2: rgba(24, 24, 28, 0.96);
	--cw-line: rgba(255, 255, 255, 0.1);
	--cw-line-strong: rgba(255, 255, 255, 0.17);
	--cw-text: #e7e4e8;
	--cw-muted: #9d98a2;
	--cw-pink: #a93468;
	--cw-pink-2: #d15a97;
	--cw-blue: #58d8ff;
	--cw-green: #71d8a4;
	--cw-red: #f06174;
	--cw-yellow: #f1c76b;
	--cw-scrollbar-track: #0b0b0e;
	--cw-scrollbar-track-2: #161016;
	--cw-scrollbar-thumb: #8e315c;
	--cw-scrollbar-thumb-hover: #d15a97;
	--cw-radius: 0px;
	--cw-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
	--cw-fast: 160ms ease;
	--cw-med: 260ms ease;
}

html {
	min-height: 100%;
	background: var(--cw-bg);
	scrollbar-color: var(--cw-scrollbar-thumb) var(--cw-scrollbar-track);
	scrollbar-width: thin;
}

body {
	min-height: 100%;
	margin: 0;
	padding-bottom: 40px;
	color: var(--cw-text);
	background:
		linear-gradient(90deg, rgba(65, 13, 37, 0.18) 0, rgba(16, 12, 17, 0.12) 24%, rgba(8, 8, 10, 0) 52%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
		linear-gradient(180deg, #121214 0, #09090b 54%, #060607 100%);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	letter-spacing: 0;
	text-shadow: none;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.04), transparent 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	border-radius: 0 !important;
}

* {
	scrollbar-color: var(--cw-scrollbar-thumb) var(--cw-scrollbar-track);
	scrollbar-width: thin;
}

*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: var(--cw-scrollbar-track);
}

*::-webkit-scrollbar-track {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 42%),
		linear-gradient(180deg, var(--cw-scrollbar-track-2), var(--cw-scrollbar-track));
	border: 1px solid rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.48);
}

*::-webkit-scrollbar-thumb {
	background:
		linear-gradient(180deg, rgba(209, 90, 151, 0.88), rgba(142, 49, 92, 0.92)),
		var(--cw-scrollbar-thumb);
	border: 2px solid var(--cw-scrollbar-track);
	box-shadow:
		inset 0 1px rgba(255, 255, 255, 0.18),
		0 0 10px rgba(169, 52, 104, 0.24);
}

*::-webkit-scrollbar-thumb:hover {
	background:
		linear-gradient(180deg, rgba(237, 116, 180, 0.95), rgba(177, 66, 116, 0.96)),
		var(--cw-scrollbar-thumb-hover);
}

*::-webkit-scrollbar-corner {
	background: var(--cw-scrollbar-track);
}

a {
	color: var(--cw-pink-2);
	transition: color var(--cw-fast), opacity var(--cw-fast), transform var(--cw-fast);
}

a:hover,
a:focus {
	color: #ffffff;
	text-decoration: none;
}

*:focus {
	outline: 2px solid rgba(169, 52, 104, 0.55);
	outline-offset: 2px;
}

img {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #ffffff;
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-shadow: 0 1px 10px rgba(169, 52, 104, 0.12);
}

h2 {
	font-size: 22px;
}

h3 {
	margin-top: 4px;
	margin-bottom: 14px;
	font-size: 24px;
}

p {
	color: var(--cw-text);
}

hr {
	border: 0;
	border-top: 1px solid var(--cw-line);
	box-shadow: 0 -1px rgba(0, 0, 0, 0.4);
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	margin-bottom: 22px;
	overflow: visible;
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.22), rgba(12, 12, 15, 0.96) 28%, rgba(88, 216, 255, 0.1)),
		linear-gradient(180deg, rgba(21, 19, 24, 0.96), rgba(9, 9, 11, 0.98));
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(12px);
}

.navbar::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	pointer-events: none;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(209, 90, 151, 0.8), rgba(88, 216, 255, 0.45), transparent);
}

.navbar-inner {
	min-height: 60px;
	padding-right: 0;
	padding-left: 0;
	background: none !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	filter: none;
}

.navbar .container-fluid,
body > .container-fluid {
	max-width: 1420px;
	margin-right: auto;
	margin-left: auto;
}

.navbar .brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	margin-left: 0;
	padding: 0 24px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(169, 52, 104, 0.12), rgba(169, 52, 104, 0.025));
	border-right: 1px solid var(--cw-line);
	border-left: 1px solid var(--cw-line);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 0 12px rgba(169, 52, 104, 0.34);
}

.navbar .brand img {
	width: auto;
	max-height: 36px;
	filter: drop-shadow(0 0 10px rgba(169, 52, 104, 0.26));
}

.navbar .brand span {
	display: inline-block;
	color: #ffffff;
}

.navbar .nav > li > a {
	min-height: 60px;
	padding: 20px 18px 18px;
	color: #c5c0c9;
	font-size: 16px;
	font-weight: 700;
	text-shadow: none;
}

.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus {
	color: var(--cw-pink-2);
	background: rgba(255, 255, 255, 0.03);
}

.navbar .btn-navbar {
	margin-top: 12px;
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--cw-line);
	box-shadow: none;
}

.navbar .btn-navbar .icon-bar {
	background-color: #ffffff;
	box-shadow: none;
}

.navbar .pull-right {
	margin-top: 13px;
	margin-left: 8px;
}

.navbar .pull-right[style] {
	margin-top: 13px !important;
}

.cw-header .navbar-inner {
	--cw-header-control-h: 46px;
	min-height: 76px;
}

.cw-header-shell {
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: 18px;
	padding: 0 20px;
}

.navbar .brand.cw-brand {
	flex: 0 0 auto;
	gap: 13px;
	min-height: 76px;
	padding: 0 24px 0 0;
	background: transparent;
	border-right: 1px solid var(--cw-line);
	border-left: 0;
	white-space: nowrap;
}

.navbar .brand.cw-brand:hover,
.navbar .brand.cw-brand:focus {
	color: #ffffff;
	text-decoration: none;
}

.cw-brand-emblem {
	position: relative;
	display: inline-flex !important;
	flex: 0 0 50px;
	width: 50px;
	height: auto;
	align-items: center;
	justify-content: center;
}

.cw-brand-logo {
	flex: 0 0 50px;
	width: 50px;
	height: auto;
	filter: drop-shadow(0 0 12px rgba(219, 39, 119, 0.34));
}

.navbar .brand .cw-brand-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	line-height: 1;
}

.cw-brand-copy strong {
	color: #ffffff;
	font-size: 23px;
	line-height: 1;
	text-shadow: 0 0 18px rgba(219, 39, 119, 0.34);
}

.cw-brand-copy small {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.cw-header-actions {
	display: flex;
	flex: 1 1 auto;
	height: auto !important;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-left: auto;
	overflow: visible !important;
}

.cw-header-userline,
.cw-header-extra {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cw-header-extra:empty {
	display: none;
}

.cw-header-link,
.cw-mail-link,
.cw-header-chip > a,
.cw-user-toggle {
	position: relative;
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 7px 12px;
	color: var(--cw-text);
	background: linear-gradient(180deg, rgba(28, 24, 29, 0.94), rgba(13, 12, 15, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
	font-weight: 700;
	text-decoration: none;
	transition: background var(--cw-fast), border-color var(--cw-fast), color var(--cw-fast), transform var(--cw-fast);
}

.cw-header-link:hover,
.cw-header-link:focus,
.cw-mail-link:hover,
.cw-mail-link:focus,
.cw-header-chip > a:hover,
.cw-header-chip > a:focus,
.cw-user-toggle:hover,
.cw-user-toggle:focus,
.btn-group.open .cw-user-toggle,
.btn-group.open .cw-header-chip > a {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(49, 31, 42, 0.96), rgba(17, 13, 18, 0.98));
	border-color: rgba(209, 90, 151, 0.54);
	text-decoration: none;
	transform: translateY(-1px);
}

.cw-mail-link {
	width: 44px;
	padding: 0;
}

.cw-mail-link .icon32 {
	display: inline-block;
}

.cw-mail-link .label {
	position: absolute;
	top: -5px;
	right: -7px;
	min-width: 16px;
	padding: 2px 5px;
	line-height: 1;
	text-align: center;
}

.cw-header-chip {
	position: relative;
	display: inline-flex;
}

.cw-header-chip > a {
	flex-direction: column;
	align-items: flex-start;
	min-width: 98px;
	padding: 6px 12px;
	line-height: 1.1;
}

.cw-header-chip > a .caret,
.cw-user-toggle .caret {
	margin-top: 0;
	margin-left: 2px;
}

.cw-header-chip span {
	color: var(--cw-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.cw-header-chip strong {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.1;
	white-space: nowrap;
}

.cw-account-chip strong {
	color: #ead4bd;
}

.cw-balance-chip > a {
	min-width: 132px;
	padding-right: 28px;
}

.cw-balance-chip .caret {
	position: absolute;
	top: 19px;
	right: 10px;
}

.cw-balance-chip .gold,
.cw-balance-chip .silver {
	display: inline-flex;
	align-items: center;
}

.cw-user-menu .dropdown-menu,
.cw-balance-chip .dropdown-menu {
	right: 0;
	left: auto;
	min-width: 220px;
}

.cw-user-toggle {
	min-width: 142px;
	justify-content: flex-start;
}

.cw-user-avatar {
	display: inline-flex;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: rgba(219, 39, 119, 0.18);
	border: 1px solid rgba(219, 39, 119, 0.4);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.cw-user-name {
	max-width: 132px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cw-mini-badge,
.cw-mini-link,
.cw-license-badge,
.cw-lk-closed {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 5px 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cw-mini-badge {
	width: 34px;
	padding: 0;
}

.cw-mini-badge img,
.cw-header-extra .auth_but,
.cw-header-extra .auth_but_succ {
	max-width: 26px;
	max-height: 26px;
	margin: 0;
}

.cw-mini-link {
	color: var(--cw-muted);
	font-size: 12px;
	text-decoration: none;
}

.cw-mini-link:hover,
.cw-mini-link:focus {
	color: #ffffff;
	border-color: rgba(209, 90, 151, 0.42);
	text-decoration: none;
}

.cw-header-extra .btn-group.pull-right {
	float: none;
	margin: 0 !important;
}

.cw-header-extra .btn-group > .btn {
	min-height: 34px;
	padding: 6px 8px;
}

.cw-header-extra .translator {
	min-width: 96px;
}

.cw-header-actions {
	display: grid;
	grid-template-columns: minmax(270px, 1fr) auto;
	align-items: center;
	gap: 18px;
}

.cw-header-nav {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.cw-header-nav-link {
	position: relative;
	display: inline-flex;
	min-height: var(--cw-header-control-h);
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0;
	color: #c8c1ca;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--cw-fast), opacity var(--cw-fast);
}

.cw-header-nav-link::after {
	position: absolute;
	right: 0;
	bottom: 1px;
	left: 0;
	height: 2px;
	content: "";
	background: linear-gradient(90deg, var(--cw-pink-2), var(--cw-blue));
	opacity: 0;
	transform: scaleX(0.45);
	transition: opacity var(--cw-fast), transform var(--cw-fast);
}

.cw-header-nav-link:hover,
.cw-header-nav-link:focus {
	color: #ffffff;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	text-decoration: none;
}

.cw-header-nav-link:hover::after,
.cw-header-nav-link:focus::after {
	opacity: 1;
	transform: scaleX(1);
}

.cw-header-nav-link-accent {
	color: #dff8ff;
	background: transparent;
	border-color: transparent;
}

.cw-header-nav-link-support {
	color: #fff3d2;
	background: transparent;
	border-color: transparent;
}

.cw-nav-icon {
	display: inline-flex;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	color: currentColor;
	opacity: 0.9;
}

.cw-nav-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cw-header-account {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.cw-header-right {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.cw-account-number,
.cw-balance-display {
	position: relative;
	display: flex;
	height: var(--cw-header-control-h);
	min-height: var(--cw-header-control-h);
	flex-direction: column;
	justify-content: center;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.09);
	line-height: 1.1;
}

.cw-account-number span,
.cw-balance-display > span {
	margin-bottom: 5px;
	color: var(--cw-muted);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.cw-account-number strong,
.cw-balance-display strong {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-size: 17px;
	line-height: 1;
	white-space: nowrap;
}

.cw-account-number strong {
	color: #ead4bd;
}

.cw-balance-display .gold,
.cw-balance-display .silver {
	display: inline-flex;
	align-items: center;
}

.cw-mail-link {
	width: var(--cw-header-control-h);
	height: var(--cw-header-control-h);
	min-height: var(--cw-header-control-h);
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(255, 255, 255, 0.11);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.cw-user-toggle {
	height: var(--cw-header-control-h);
	min-height: var(--cw-header-control-h);
	min-width: 154px;
	background:
		linear-gradient(135deg, rgba(219, 39, 119, 0.13), rgba(255, 255, 255, 0.035)),
		rgba(255, 255, 255, 0.035);
	border-color: rgba(255, 255, 255, 0.11);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.cw-user-menu .dropdown-menu {
	right: 0;
	left: auto;
	min-width: 228px;
}

.navbar .btn-group > .btn,
.navbar .btn,
.btn {
	min-height: 34px;
	padding: 7px 13px;
	color: var(--cw-text);
	background: linear-gradient(180deg, rgba(44, 31, 39, 0.82), rgba(22, 16, 22, 0.96));
	border: 1px solid rgba(156, 58, 102, 0.58);
	border-radius: var(--cw-radius);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-weight: 700;
	text-shadow: none;
	transition: transform var(--cw-fast), border-color var(--cw-fast), box-shadow var(--cw-fast), background var(--cw-fast), color var(--cw-fast);
}

.btn:hover,
.btn:focus,
.navbar .btn:hover,
.navbar .btn:focus {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(62, 38, 51, 0.88), rgba(28, 18, 27, 0.98));
	border-color: rgba(209, 90, 151, 0.72);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

.btn:active,
.btn.active {
	transform: translateY(0);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn-primary,
.btn-danger,
.btn-warning,
.btn-inverse {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(58, 33, 48, 0.9), rgba(30, 17, 28, 0.98));
	border-color: rgba(177, 66, 116, 0.68);
}

.btn-success {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(38, 58, 48, 0.84), rgba(18, 32, 26, 0.96));
	border-color: rgba(113, 216, 164, 0.5);
}

.btn-info {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(35, 51, 59, 0.84), rgba(16, 28, 34, 0.96));
	border-color: rgba(88, 216, 255, 0.48);
}

.btn-link {
	color: var(--cw-muted);
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.btn-link:hover,
.btn-link:focus {
	color: var(--cw-pink-2);
	background: transparent;
	box-shadow: none;
}

.dropdown-menu {
	padding: 8px;
	background: rgba(17, 17, 20, 0.98);
	border: 1px solid var(--cw-line-strong);
	border-radius: var(--cw-radius);
	box-shadow: var(--cw-shadow);
}

.dropdown-menu li > a {
	padding: 8px 11px;
	color: var(--cw-text);
	border-radius: 4px;
	font-size: 15px;
}

.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.1);
}

.dropdown-menu .divider {
	background-color: var(--cw-line);
	border-bottom: 0;
}

.caret {
	border-top-color: currentColor;
	opacity: 0.85;
}

.row-fluid {
	animation: cwFadeUp 360ms ease both;
}

.main-menu-span {
	position: relative;
	width: 240px !important;
	margin-left: 0 !important;
	margin-right: 22px;
}

.row-fluid > #content.span10 {
	width: calc(100% - 262px) !important;
	margin-left: 0;
}

.sidebar-nav {
	position: relative;
	overflow: hidden;
	padding: 12px 10px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
		linear-gradient(90deg, rgba(169, 52, 104, 0.045), rgba(8, 8, 10, 0) 42%),
		rgba(10, 10, 13, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--cw-radius);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.045);
}

.well {
	background: var(--cw-surface);
	border: 1px solid var(--cw-line);
	border-radius: var(--cw-radius);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.main-menu {
	margin: 0;
	padding: 0;
	border: 0;
}

.main-menu > li {
	margin: 0 0 5px;
	padding: 0;
	border: 0;
	list-style: none;
}

.main-menu > li[style] {
	margin-left: 0 !important;
}

.main-menu > li.nav-header,
.main-menu .nav-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 15px 7px 9px;
	padding: 0;
	color: #d8a7bf;
	border: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-shadow: 0 0 8px rgba(169, 52, 104, 0.18);
	text-transform: uppercase;
}

.main-menu > li.nav-header:first-child,
.main-menu .nav-header:first-child {
	margin-top: 3px;
}

.main-menu > li.nav-header::after,
.main-menu .nav-header::after {
	display: block;
	flex: 1;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, rgba(169, 52, 104, 0.34), transparent);
}

.main-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	margin: 0 2px;
	padding: 9px 11px;
	color: #d4d0d7;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: var(--cw-radius);
	font-size: 15px;
	font-weight: 700;
	text-shadow: none;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
	transition: transform var(--cw-fast), border-color var(--cw-fast), background var(--cw-fast), color var(--cw-fast), box-shadow var(--cw-fast);
}

.main-menu > li > a > i.icon {
	box-sizing: content-box;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin: 0;
	transform: translateZ(0);
	transition: border-color var(--cw-fast), box-shadow var(--cw-fast), transform var(--cw-fast);
}

.main-menu > li > a .hidden-tablet {
	display: block;
	min-width: 0;
	line-height: 1.2;
}

.main-menu > li > a:hover,
.main-menu > li > a:focus,
.main-menu > li.active > a {
	color: #ffffff;
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.12), rgba(169, 52, 104, 0.035) 58%, rgba(255, 255, 255, 0.018)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.18);
	transform: translateX(4px);
}

.main-menu > li > a:hover > i.icon,
.main-menu > li > a:focus > i.icon,
.main-menu > li.active > a > i.icon {
	transform: scale(1.04);
}

.main-menu > li.active > a {
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.18), rgba(169, 52, 104, 0.06) 62%, rgba(255, 255, 255, 0.02)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
	border-color: rgba(209, 90, 151, 0.42);
}

.main-menu > li.active > a::before {
	position: absolute;
	top: 7px;
	bottom: 7px;
	left: -3px;
	width: 4px;
	content: "";
	background: var(--cw-pink);
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(169, 52, 104, 0.42);
}

.cw-sidebar-head {
	position: relative;
	margin: 0 2px 12px;
	padding: 12px 12px 13px;
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.12), rgba(255, 255, 255, 0.025) 58%, transparent),
		rgba(7, 7, 10, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cw-sidebar-head::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: -1px;
	width: 2px;
	content: "";
	background: var(--cw-pink);
	box-shadow: 0 0 14px rgba(169, 52, 104, 0.42);
}

.cw-sidebar-kicker {
	display: block;
	margin-bottom: 2px;
	color: var(--cw-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.cw-sidebar-head strong {
	display: block;
	color: #fff;
	font-size: 20px;
	line-height: 1.12;
}

.sidebar-nav.cw-menu-ready {
	padding: 10px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
		radial-gradient(circle at 8% 0%, rgba(169, 52, 104, 0.12), transparent 28%),
		rgba(8, 8, 11, 0.96);
	border-color: rgba(255, 255, 255, 0.075);
}

.sidebar-nav.cw-menu-ready .main-menu {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.sidebar-nav.cw-menu-ready .main-menu > li.nav-header,
.sidebar-nav.cw-menu-ready .main-menu .nav-header {
	position: relative;
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 13px 2px 5px;
	padding: 8px 9px;
	color: #c8c1ca;
	background: rgba(255, 255, 255, 0.022);
	border: 1px solid rgba(255, 255, 255, 0.055);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	user-select: none;
	transition: color var(--cw-fast), border-color var(--cw-fast), background var(--cw-fast);
}

.sidebar-nav.cw-menu-ready .main-menu > li.nav-header:first-child,
.sidebar-nav.cw-menu-ready .main-menu .nav-header:first-child {
	margin-top: 0;
}

.sidebar-nav.cw-menu-ready .main-menu > li.nav-header::after,
.sidebar-nav.cw-menu-ready .main-menu .nav-header::after {
	display: none;
}

.sidebar-nav.cw-menu-ready .main-menu > li.nav-header:hover,
.sidebar-nav.cw-menu-ready .main-menu > li.nav-header:focus {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.065);
	border-color: rgba(209, 90, 151, 0.22);
}

.sidebar-nav.cw-menu-ready .collapsible-section-header .collapse-icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.22);
	transition: transform var(--cw-med), border-color var(--cw-fast), background var(--cw-fast);
}

.sidebar-nav.cw-menu-ready .collapsible-section-header .collapse-icon::before {
	position: absolute;
	top: 5px;
	left: 6px;
	width: 5px;
	height: 5px;
	content: "";
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
}

.sidebar-nav.cw-menu-ready .collapsible-section-header.collapsed .collapse-icon {
	transform: rotate(-90deg);
}

.sidebar-nav.cw-menu-ready .menu-item-collapsible {
	max-height: 90px;
	margin: 0;
	overflow: hidden;
	opacity: 1;
	transform: translateY(0);
	transition: max-height var(--cw-med), opacity var(--cw-med), transform var(--cw-med), margin var(--cw-med);
}

.sidebar-nav.cw-menu-ready .menu-item-collapsible.hidden-by-collapse {
	max-height: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	margin: 0 2px;
	padding: 6px 9px 6px 7px;
	color: #d6d1d9;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
		rgba(11, 11, 14, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.062);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.042);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform var(--cw-fast), border-color var(--cw-fast), background var(--cw-fast), color var(--cw-fast), box-shadow var(--cw-fast);
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a::before {
	position: absolute;
	top: 9px;
	bottom: 9px;
	left: -1px;
	width: 2px;
	content: "";
	background: rgba(209, 90, 151, 0);
	transition: background var(--cw-fast), box-shadow var(--cw-fast);
}

.cw-menu-icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	color: #d9d5dc;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
		rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
	transition: color var(--cw-fast), border-color var(--cw-fast), background var(--cw-fast), transform var(--cw-fast);
}

.cw-menu-icon svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cw-menu-icon-money,
.cw-menu-icon-donate {
	color: #79daf7;
}

.cw-menu-icon-pers,
.cw-menu-icon-klan {
	color: #e3b0c9;
}

.cw-menu-icon-top,
.cw-menu-icon-stat,
.cw-menu-icon-stattop {
	color: #f0cf85;
}

.cw-menu-icon-online {
	color: #75d69f;
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a .hidden-tablet {
	display: block;
	min-width: 0;
	overflow: visible;
	line-height: 1.12;
	text-overflow: clip;
	white-space: normal;
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a .label {
	grid-column: 2;
	grid-row: 2;
	justify-self: start;
	align-self: center;
	margin: 2px 0 0;
	padding: 3px 5px;
	border: 1px solid rgba(209, 90, 151, 0.28);
	background: rgba(169, 52, 104, 0.12);
	color: #fff;
	font-size: 10px;
	line-height: 1;
	text-shadow: none;
	white-space: nowrap;
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:hover,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:focus,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible.active > a {
	color: #ffffff;
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.09), rgba(255, 255, 255, 0.028) 58%, rgba(255, 255, 255, 0.014)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.022));
	border-color: rgba(209, 90, 151, 0.26);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.22);
	transform: translateX(3px);
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:hover::before,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:focus::before,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible.active > a::before {
	background: var(--cw-pink);
	box-shadow: 0 0 14px rgba(169, 52, 104, 0.38);
}

.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:hover .cw-menu-icon,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:focus .cw-menu-icon,
.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible.active > a .cw-menu-icon {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.12);
	border-color: rgba(209, 90, 151, 0.32);
	transform: translateX(1px);
}

.sidebar-nav.cw-menu-ready + br + center,
.main-menu-span > center {
	display: block;
	margin-top: 8px;
	padding: 10px;
	color: var(--cw-muted);
	background: rgba(8, 8, 11, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.055);
	font-size: 13px;
	line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
	.sidebar-nav.cw-menu-ready .menu-item-collapsible,
	.sidebar-nav.cw-menu-ready .collapsible-section-header .collapse-icon,
	.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a,
	.cw-menu-icon {
		transition: none;
	}

	.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:hover,
	.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible > a:focus,
	.sidebar-nav.cw-menu-ready .main-menu > li.menu-item-collapsible.active > a {
		transform: none;
	}
}

#content {
	animation: cwFadeUp 420ms ease both;
}

.box {
	overflow: visible;
	margin-bottom: 22px;
	background: var(--cw-surface);
	border: 1px solid var(--cw-line);
	border-radius: var(--cw-radius);
	box-shadow: var(--cw-shadow);
}

.box-header,
.box-header.well {
	min-height: 50px;
	margin: 0;
	padding: 13px 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
	border: 0;
	border-bottom: 1px solid var(--cw-line);
	border-radius: var(--cw-radius) var(--cw-radius) 0 0;
	box-shadow: none;
}

.box-header h2 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: #ffffff;
	font-size: 22px;
}

.box-content {
	padding: 18px;
	color: var(--cw-text);
	background: rgba(10, 10, 12, 0.32);
	border-radius: 0 0 var(--cw-radius) var(--cw-radius);
}

#main_content_div > h3:first-child {
	margin-top: 0;
}

.promo-header-container .promo-header-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
}

.crime-promo-modal {
	width: min(92vw, 390px);
	margin-left: -195px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.crime-promo-modal form {
	margin: 0;
}

.crime-promo-modal .modal-body {
	padding: 32px 28px 34px;
	text-align: center;
	background:
		radial-gradient(circle at 50% 20%, rgba(169, 52, 104, 0.13), transparent 36%),
		linear-gradient(180deg, rgba(20, 20, 23, 0.98), rgba(7, 7, 9, 0.99));
	border: 1px solid rgba(177, 66, 116, 0.42);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.56);
}

.crime-promo-modal .close {
	position: absolute;
	top: 12px;
	right: 16px;
	color: #b9a3ad;
	opacity: 1;
	text-shadow: none;
}

.crime-promo-modal .close:hover,
.crime-promo-modal .close:focus {
	color: #ffffff;
}

.crime-promo-icon {
	display: inline-flex;
	width: 76px;
	height: 76px;
	align-items: center;
	justify-content: center;
	margin: 2px auto 18px;
	background: rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(177, 66, 116, 0.48);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 0 26px rgba(169, 52, 104, 0.16);
}

.crime-promo-icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.crime-promo-modal h3 {
	margin: 0 0 14px;
	color: #f2edf0;
	font-size: 27px;
}

.crime-promo-modal p {
	margin: 0 0 13px;
	color: #c7bdc5;
	font-size: 16px;
	font-weight: 700;
}

.crime-promo-modal input[type="text"] {
	width: min(100%, 215px);
	height: 42px;
	margin: 0 auto 10px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.42);
	border-color: rgba(210, 150, 178, 0.72);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
}

.crime-promo-modal .btn {
	display: block;
	width: min(100%, 215px);
	margin: 0 auto;
	color: #ffffff !important;
	background: linear-gradient(180deg, rgba(74, 42, 59, 0.96), rgba(37, 22, 34, 0.98)) !important;
	border-color: rgba(177, 66, 116, 0.78);
	font-size: 16px;
	font-weight: 700;
}

.popup__overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 3000;
	box-sizing: border-box;
	padding: 44px 16px;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(5px);
	overflow: auto;
}

body.pers-modal-open {
	overflow: hidden !important;
}

body > .popup__overlay {
	position: fixed;
	inset: 0;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
}

.pers-modal-overlay {
	padding: 20px 16px;
}

.pers-modal-overlay .popup {
	display: flex;
	flex-direction: column;
	width: min(94vw, 1040px);
	margin: 0 auto 12px;
}

.pers-modal-overlay.is-role-info-modal .popup {
	width: min(96vw, 1180px);
}

.pers-modal-overlay .modal-body {
	flex: 1 1 auto;
	min-height: 0;
}

.pers-modal-overlay.is-role-info-modal .modal-body {
	min-height: min(56vh, 560px);
}

.popup {
	width: min(94vw, 1080px);
	margin: 0 auto 44px;
	color: var(--cw-text);
	background:
		radial-gradient(circle at 18% 0%, rgba(169, 52, 104, 0.075), transparent 34%),
		linear-gradient(180deg, rgba(18, 18, 23, 0.98), rgba(7, 7, 10, 0.99));
	border: 1px solid rgba(177, 66, 116, 0.3);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	animation: cwFadeUp 0.22s ease both;
}

.popup .modal-header {
	position: sticky;
	top: -44px;
	z-index: 2;
	min-height: 0;
	padding: 16px 54px 15px 20px;
	background: linear-gradient(180deg, rgba(17, 17, 22, 0.98), rgba(10, 10, 14, 0.99));
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.popup .modal-header::before {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(209, 90, 151, 0.45), transparent);
}

.popup .modal-header h3,
.popup #modalHeader {
	margin: 0;
	color: #fff5ed;
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	text-shadow: none;
}

.popup .close {
	position: absolute;
	top: 11px;
	right: 14px;
	width: 34px;
	height: 34px;
	color: #d8cdd3;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
	opacity: 1;
	text-shadow: none;
	transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.popup .close:hover,
.popup .close:focus {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.14);
	border-color: rgba(209, 90, 151, 0.5);
}

.popup .modal-body {
	padding: 18px;
	color: var(--cw-text);
	background: transparent;
	overflow-y: auto;
}

.popup .modal-body p {
	margin: 0;
}

.popup #modalBody {
	margin: 0;
}

.popup table,
.popup .table {
	color: #f2edf0;
	background: rgba(0, 0, 0, 0.22);
	border-color: rgba(255, 255, 255, 0.08);
}

.popup .table th,
.popup .table td,
.popup table th,
.popup table td {
	color: #f2edf0;
	background: rgba(0, 0, 0, 0.18);
	border-color: rgba(255, 255, 255, 0.08);
}

.popup .table thead th,
.popup .table thead td,
.popup table thead th,
.popup table thead td {
	color: #d8cdd3;
	background: rgba(255, 255, 255, 0.04);
	font-weight: 800;
}

.popup input,
.popup select,
.popup textarea {
	color: #ffffff;
	background: rgba(0, 0, 0, 0.32);
	border-color: rgba(255, 255, 255, 0.13);
}

.popup input:focus,
.popup select:focus,
.popup textarea:focus {
	border-color: rgba(209, 90, 151, 0.64);
	box-shadow: 0 0 0 2px rgba(169, 52, 104, 0.14);
}

.popup .label-success,
.popup .label-info,
.popup .label-important {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 3px 8px;
	color: #ffffff;
	background: rgba(169, 52, 104, 0.16);
	border: 1px solid rgba(209, 90, 151, 0.32);
	text-shadow: none;
}

.lk-home {
	display: grid;
	gap: 18px;
}

.lk-home-hero,
.lk-panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
		rgba(9, 9, 12, 0.72);
	border: 1px solid var(--cw-line);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.lk-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 22px;
	border-left-color: rgba(177, 66, 116, 0.38);
}

.lk-home-hero h3,
.lk-panel h4 {
	margin: 0;
	color: #ffffff;
	font-size: 25px;
	line-height: 1.16;
}

.lk-home-hero p,
.lk-panel-head p,
.lk-note {
	margin: 8px 0 0;
	color: #bcb6c0;
	font-size: 15px;
}

.lk-kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: #d8a7bf;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lk-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.lk-overview,
.lk-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: 12px;
}

.lk-stat-card {
	position: relative;
	min-height: 112px;
	padding: 16px 16px 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
		rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.lk-stat-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	content: "";
	background: rgba(255, 255, 255, 0.18);
}

.lk-stat-card-blue {
	border-color: rgba(88, 216, 255, 0.25);
}

.lk-stat-card-blue::before {
	background: rgba(88, 216, 255, 0.54);
}

.lk-stat-card-green {
	border-color: rgba(113, 216, 164, 0.25);
}

.lk-stat-card-green::before {
	background: rgba(113, 216, 164, 0.54);
}

.lk-stat-card-violet {
	border-color: rgba(177, 66, 116, 0.3);
}

.lk-stat-card-violet::before {
	background: rgba(177, 66, 116, 0.58);
}

.lk-stat-card-amber {
	border-color: rgba(241, 199, 107, 0.26);
}

.lk-stat-card-amber::before {
	background: rgba(241, 199, 107, 0.54);
}

.lk-stat-card > span,
.lk-ref-link > span,
.lk-account-item > span,
.lk-bonus-big > span,
.lk-loyalty-summary span {
	display: block;
	margin-bottom: 6px;
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.lk-stat-card strong {
	display: block;
	color: #ffffff;
	font-size: 26px;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.lk-stat-card strong.lk-selected-role-wrap {
	font-size: 18px;
}

.lk-selected-role {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 32px;
}

.lk-selected-role-icon {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.lk-selected-role-name,
.lk-selected-role-level,
.lk-selected-role-empty {
	display: block;
}

.lk-selected-role-name {
	color: #ffffff;
	font-size: 18px;
	line-height: 1.15;
}

.lk-selected-role-level {
	margin-top: 3px;
	color: #d8a7bf;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.lk-stat-card small {
	display: block;
	margin-top: 7px;
	color: #8d8791;
	font-size: 12px;
	font-weight: 700;
}

.lk-panel {
	padding: 18px;
}

.lk-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-panel-head p {
	max-width: 460px;
	text-align: right;
}

.lk-account-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: 14px;
}

.lk-account-item {
	padding: 14px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-account-item strong {
	display: block;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.lk-account-item strong span,
.lk-account-item strong code,
.lk-ip-pill {
	display: inline-flex;
	margin: 0;
	padding: 4px 8px;
	color: #ffffff;
	background: rgba(113, 216, 164, 0.18);
	border: 1px solid rgba(113, 216, 164, 0.32);
	font-size: 15px;
	text-transform: none;
}

.lk-bonus-big {
	min-width: 130px;
	text-align: right;
}

.lk-bonus-big strong {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	color: #ead4bd;
	font-size: 42px;
	line-height: 1;
}

.lk-bonus-big img,
.lk-inline-diamond {
	width: 24px;
	height: 24px;
	object-fit: contain;
	vertical-align: -4px;
}

.lk-loyalty-panel {
	border-top-color: rgba(241, 199, 107, 0.34);
}

.lk-loyalty-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 18px;
	margin: 18px 0 16px;
	padding: 22px 0 6px;
}

.lk-loyalty-line {
	position: absolute;
	top: 33px;
	right: 0;
	left: 0;
	height: 2px;
	background:
		linear-gradient(90deg, rgba(241, 199, 107, 0.72) 0 var(--lk-progress), rgba(255, 255, 255, 0.12) var(--lk-progress) 100%);
}

.lk-loyalty-step {
	position: relative;
	z-index: 1;
	text-align: center;
}

.lk-loyalty-step span {
	display: flex;
	width: 26px;
	height: 26px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	background: #171316;
	border: 2px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.34);
}

.lk-loyalty-step span img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

.lk-loyalty-step.is-active span {
	background: rgba(241, 199, 107, 0.28);
	border-color: rgba(241, 199, 107, 0.82);
	box-shadow: 0 0 0 4px rgba(241, 199, 107, 0.08);
}

.lk-loyalty-step strong,
.lk-loyalty-step em {
	display: block;
	font-style: normal;
	font-weight: 700;
}

.lk-loyalty-step strong {
	color: #ead4bd;
}

.lk-loyalty-step em {
	margin-top: 4px;
	color: var(--cw-muted);
	font-size: 12px;
}

.lk-loyalty-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(160px, 1fr));
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-loyalty-summary div {
	padding: 12px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-loyalty-summary strong {
	display: block;
	color: #ffffff;
	font-size: 18px;
}

.lk-role-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lk-role-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	white-space: nowrap;
}

.lk-role-name {
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lk-role-btn.is-active {
	border-color: rgba(113, 216, 164, 0.54);
}

.lk-role-icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.lk-role-level {
	padding: 2px 6px;
	color: #ffffff;
	background: rgba(177, 66, 116, 0.2);
	border: 1px solid rgba(177, 66, 116, 0.34);
	font-size: 12px;
	font-weight: 700;
}

.lk-ref-link {
	margin-bottom: 14px;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-ref-link a {
	color: #ffffff;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.lk-table-wrap {
	overflow-x: auto;
}

.lk-note-panel ul {
	margin-bottom: 0;
}

.cw-page {
	display: grid;
	gap: 18px;
	text-align: left;
}

.cw-page-hero,
.cw-panel {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
		rgba(9, 9, 12, 0.72);
	border: 1px solid var(--cw-line);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.cw-page-hero::before,
.cw-panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, rgba(209, 90, 151, 0.55), rgba(88, 216, 255, 0.26), transparent);
}

.cw-page-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 22px;
}

.cw-page-hero h3,
.cw-panel-head h4 {
	margin: 0;
	color: #ffffff;
	font-size: 25px;
	line-height: 1.16;
}

.cw-page-hero p,
.cw-panel-head p,
.cw-panel > p,
.cw-note-panel p {
	margin: 8px 0 0;
	color: #bcb6c0;
	font-size: 15px;
}

.cw-hero-metric {
	min-width: 190px;
	padding: 14px 16px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: right;
}

.cw-hero-metric span,
.cw-rate-card > span,
.cw-status-card > span,
.cw-ip-list > span,
.cw-stat-hero-grid span,
.cw-field > label,
.cw-inline-form > label {
	display: block;
	margin-bottom: 6px;
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.cw-hero-metric strong {
	display: block;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.25;
}

.cw-hero-metric code {
	display: inline-flex;
	margin: 0;
}

.cw-panel {
	padding: 18px;
}

.cw-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-panel-head p {
	max-width: 470px;
	text-align: right;
}

.cw-table-scroll {
	width: 100%;
	overflow-x: auto;
}

.cw-table-scroll > .table,
.cw-table-scroll > table {
	min-width: 100%;
	margin-bottom: 0;
}

.cw-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 14px;
	margin: 0;
}

.cw-field {
	min-width: 0;
}

.cw-field-wide,
.cw-form-actions {
	grid-column: 1 / -1;
}

.cw-field .input-prepend {
	display: flex;
	width: 100%;
	margin: 0;
}

.cw-field .input-prepend .add-on {
	display: inline-flex;
	width: 42px;
	height: 42px;
	min-height: 0;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0;
	color: #d8a7bf;
	background: rgba(0, 0, 0, 0.28);
	border-color: rgba(255, 255, 255, 0.13);
	line-height: 1;
	text-shadow: none;
}

.cw-field input,
.cw-field select,
.cw-field textarea,
.cw-inline-form input[type="text"],
.cw-inline-form input[type="number"] {
	width: 100%;
	min-height: 42px;
	margin: 0;
	box-sizing: border-box;
}

.cw-donate-form .cw-donate-field-label {
	display: flex;
	min-height: 25px;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.cw-donate-field-label > span:first-child {
	min-width: 0;
}

.cw-field .input-prepend input {
	flex: 1 1 auto;
	width: 1%;
}

.cw-form-actions {
	display: flex;
	justify-content: flex-start;
	padding-top: 2px;
}

.cw-status-grid,
.cw-rate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.cw-status-card,
.cw-rate-card,
.cw-stat-hero-grid > div {
	padding: 14px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.cw-status-card strong,
.cw-rate-card strong,
.cw-stat-hero-grid strong {
	display: block;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.25;
}

.cw-status-card.is-open {
	border-color: rgba(113, 216, 164, 0.28);
}

.cw-status-card.is-locked {
	border-color: rgba(240, 97, 116, 0.3);
}

.cw-status-action {
	margin-top: 10px;
}

.cw-status-action:empty {
	display: none;
}

.cw-ip-list {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	padding: 13px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-ip-list div {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.cw-ip-list code {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
}

.cw-inline-form {
	display: grid;
	grid-template-columns: minmax(170px, 0.55fr) minmax(220px, 1fr) auto;
	gap: 10px;
	align-items: end;
	margin: 14px 0;
}

.cw-note-panel ul {
	margin: 8px 0 0;
	color: var(--cw-text);
}

.cw-note-panel li + li {
	margin-top: 5px;
}

.cw-muted-note {
	color: var(--cw-muted);
}

.cw-code-accent {
	color: var(--cw-yellow);
}

.cw-loading-line,
.cw-editor-field {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.cw-editor-field textarea,
.cw-editor-field input {
	width: 100%;
}

.cw-shop-filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.cw-shop-filter-row + .cw-shop-filter-row {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-shop-filter-row form {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

.cw-shop-filter-row input[type="text"] {
	width: 190px;
	margin: 0;
}

.cw-shop-tab.btn-danger,
.cw-shop-subtab.btn-danger {
	border-color: rgba(209, 90, 151, 0.78);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(169, 52, 104, 0.12);
}

.cw-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
	gap: 14px;
	place-content: stretch;
}

.cw-shop-grid .shop-block,
.cw-shop-grid .shop-block.span3,
.row-fluid .cw-shop-grid .shop-block {
	float: none;
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 14px;
	text-align: left;
	background:
		radial-gradient(circle at 10% 0%, rgba(169, 52, 104, 0.07), transparent 36%),
		linear-gradient(180deg, rgba(24, 24, 29, 0.97), rgba(8, 8, 11, 0.99));
	border-color: rgba(255, 255, 255, 0.09);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.cw-shop-grid .shop-header {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 58px;
}

.cw-shop-grid .shop-header img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.38));
}

.cw-shop-grid .shop-header div {
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.cw-shop-grid .shop-body {
	margin-top: 12px;
	color: var(--cw-text);
}

.cw-shop-grid .shop-body > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	float: none !important;
	clear: none;
}

.cw-shop-grid .shop-body > div[style*="float: right"] {
	justify-content: flex-end;
	margin-top: 8px;
}

.cw-shop-grid .shop-block span {
	clear: none;
}

.cw-shop-grid .price {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
	color: #ffffff;
}

.cw-shop-grid .notification {
	display: inline-flex;
	position: static;
	align-items: center;
	height: auto;
	min-height: 24px;
	margin: 4px 4px 0 0;
	padding: 3px 7px;
	color: #ffffff;
	background: rgba(169, 52, 104, 0.16);
	border: 1px solid rgba(209, 90, 151, 0.32);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	text-shadow: none;
}

.cw-shop-grid .shop-hot {
	top: 8px;
	left: 8px;
}

.cw-shop-grid .shop-new {
	top: 8px;
	right: 8px;
}

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

.cw-ranking-panel .cw-table-scroll:empty::before {
	display: block;
	padding: 16px;
	color: var(--cw-muted);
	content: "Нет данных";
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-donate-info .cw-panel-head img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.cw-pay-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cw-bonus-line {
	display: block;
	margin-top: 8px;
}

.cw-donate-form {
	display: grid;
	gap: 18px;
	margin: 0;
}

.cw-donate-layout {
	display: grid;
	grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr);
	gap: 20px;
	align-items: stretch;
}

.cw-donate-amount-panel,
.cw-donate-method-panel {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 18px;
	padding: 24px;
}

.cw-donate-card-head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 98px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-donate-card-head h3,
.cw-donate-method-head h3 {
	margin: 0;
	color: #ffffff;
	font-size: 24px;
	line-height: 1.18;
}

.cw-donate-card-head span,
.cw-donate-method-head p {
	display: block;
	margin: 6px 0 0;
	color: var(--cw-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.cw-donate-card-head strong {
	color: var(--cw-blue);
	font-weight: 800;
}

.cw-donate-coin {
	width: 54px;
	height: 54px;
	object-fit: contain;
	filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.42));
}

.cw-donate-control {
	display: grid;
	gap: 9px;
}

.cw-donate-control > label,
.cw-donate-bonus-block > span {
	display: block;
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.cw-donate-amount-input {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 84px;
	padding: 16px 18px;
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.09), rgba(88, 216, 255, 0.05)),
		rgba(0, 0, 0, 0.32);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.cw-donate-amount-input img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.cw-donate-amount-input input[type="number"] {
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 0;
	color: #ffffff;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: none;
}

.cw-donate-amount-input input[type="number"]:focus {
	outline: 0;
	box-shadow: none;
}

.cw-donate-amount-input input[type="number"]::-webkit-outer-spin-button,
.cw-donate-amount-input input[type="number"]::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.cw-donate-presets {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
}

.cw-donate-preset {
	min-height: 38px;
	padding: 8px 10px;
	color: #d8d2dc;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.11);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-shadow: none;
	cursor: pointer;
	transition: background var(--cw-fast), border-color var(--cw-fast), color var(--cw-fast), transform var(--cw-fast);
}

.cw-donate-preset:hover,
.cw-donate-preset:focus,
.cw-donate-preset.is-active {
	color: #ffffff;
	background:
		linear-gradient(180deg, rgba(209, 90, 151, 0.2), rgba(169, 52, 104, 0.12)),
		rgba(0, 0, 0, 0.28);
	border-color: rgba(209, 90, 151, 0.56);
}

.cw-donate-preset:active {
	transform: translateY(1px);
}

.cw-donate-total {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	min-height: 102px;
	padding: 18px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18)),
		rgba(0, 0, 0, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-donate-total span:first-child {
	color: #c9c2cd;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.cw-donate-total strong {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.2;
	text-align: right;
}

.cw-donate-total #sSumText {
	color: #ffffff;
	font-size: 20px;
	font-weight: 800;
}

.cw-donate-bonus-block {
	display: grid;
	gap: 10px;
	margin-top: auto;
}

.cw-donate-bonus-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cw-donate-bonus-chip {
	display: inline-flex;
	align-items: center;
	min-height: 27px;
	padding: 5px 10px;
	color: #bed4c8;
	background: rgba(113, 216, 164, 0.11);
	border: 1px solid rgba(113, 216, 164, 0.18);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	transition: background var(--cw-fast), border-color var(--cw-fast), color var(--cw-fast);
}

.cw-donate-bonus-chip.is-active {
	color: #ffffff;
	background: rgba(113, 216, 164, 0.18);
	border-color: rgba(113, 216, 164, 0.45);
}

.cw-donate-method-head {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-payment-methods {
	display: grid;
	gap: 12px;
}

.cw-payment-method {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	width: 100%;
	min-height: 68px;
	padding: 12px 14px;
	color: var(--cw-text);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
		rgba(0, 0, 0, 0.26);
	border: 1px solid rgba(255, 255, 255, 0.11);
	font-family: inherit;
	text-align: left;
	text-shadow: none;
	cursor: pointer;
	transition: background var(--cw-fast), border-color var(--cw-fast), box-shadow var(--cw-fast), transform var(--cw-fast);
}

.cw-payment-method:hover,
.cw-payment-method:focus,
.cw-payment-method.is-selected {
	background:
		linear-gradient(90deg, rgba(169, 52, 104, 0.13), rgba(88, 216, 255, 0.06)),
		rgba(0, 0, 0, 0.34);
	border-color: rgba(209, 90, 151, 0.48);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 12px 26px rgba(0, 0, 0, 0.22);
}

.cw-payment-method:active {
	transform: translateY(1px);
}

.cw-method-icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background:
		linear-gradient(180deg, rgba(88, 216, 255, 0.22), rgba(169, 52, 104, 0.18)),
		rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
}

.cw-method-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.cw-method-copy strong {
	color: #ffffff;
	font-size: 15px;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.cw-method-copy em {
	color: var(--cw-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.cw-method-arrow {
	color: #e8dce5;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.cw-donate-note-panel {
	padding: 16px 18px;
}

.cw-stat-hero-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(110px, 1fr));
	gap: 10px;
	min-width: min(100%, 520px);
}

.cw-stat-hero-grid > div {
	min-width: 0;
}

.cw-stat-page .table_header {
	display: grid;
	grid-template-columns: repeat(4, minmax(160px, 1fr));
	gap: 12px;
	margin: 0 0 14px;
	padding: 0;
	background: transparent;
	border: 0;
}

.cw-stat-page .table_header > div,
.cw-stat-page .table_header form,
.cw-stat-page .table_header label {
	display: grid;
	gap: 6px;
	margin: 0;
	color: var(--cw-muted);
}

.cw-stat-page .table_header > div {
	padding: 12px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-stat-page .table_header select,
.cw-stat-page .table_header input {
	width: 100% !important;
	margin: 0;
}

.cw-stat-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 12px 0 0;
	color: var(--cw-text);
}

.cw-config-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-config-nav > li {
	margin: 0;
}

.cw-config-nav > li > a {
	min-height: 36px;
	margin: 0;
	padding: 8px 12px;
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 700;
}

.cw-config-nav > .active > a,
.cw-config-nav > .active > a:hover,
.cw-config-nav > li > a:hover,
.cw-config-nav > li > a:focus {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.13);
	border-color: rgba(209, 90, 151, 0.42);
}

.cw-config-panel .tab-content {
	overflow: visible;
	padding: 14px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-config-panel .tab-pane {
	color: var(--cw-text);
}

.cw-savebar {
	position: sticky;
	bottom: 10px;
	z-index: 20;
	display: flex;
	justify-content: center;
	margin-top: 16px;
	padding: 12px;
	background: rgba(8, 8, 11, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(8px);
}

.cw-config-panel .config-cost-token {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 8px;
	margin: 0 8px 8px 0;
	padding: 0 10px 0 40px;
	background-color: rgba(0, 0, 0, 0.24);
	background-position: 12px center;
	background-size: 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.cw-config-panel .config-cost-silver {
	padding-left: 12px;
}

.cw-config-panel .config-cost-token input {
	width: 96px;
	min-height: 42px;
	margin: 0;
}

.cw-config-panel .input-prepend,
.cw-config-panel .input-append {
	display: inline-flex;
	align-items: stretch;
	margin: 0;
	vertical-align: middle;
}

.cw-config-panel .input-prepend .add-on,
.cw-config-panel .input-append .add-on {
	display: inline-flex;
	height: 42px;
	min-height: 0;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 12px;
	color: #d8a7bf;
	background: rgba(0, 0, 0, 0.28);
	border-color: rgba(255, 255, 255, 0.13);
	line-height: 1;
	text-shadow: none;
}

.cw-config-panel .input-prepend input,
.cw-config-panel .input-append input,
.cw-config-panel .input-prepend select,
.cw-config-panel .input-append select {
	height: 42px;
	min-height: 0;
	box-sizing: border-box;
	margin: 0;
}

.cw-shop-filters .cw-panel-head {
	margin-bottom: 12px;
}

.cw-shop-filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 8px;
	padding: 10px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.075);
}

.cw-shop-filter-row + .cw-shop-filter-row {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.cw-shop-filter-row .btn,
.cw-shop-filter-row input[type="text"] {
	min-height: 38px;
	box-sizing: border-box;
	margin: 0;
}

.cw-shop-tab,
.cw-shop-subtab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	padding: 9px 13px;
	text-align: center;
}

.cw-shop-filter-row .btn-add,
.cw-shop-filter-row .btn-delete,
.cw-shop-filter-row .btn-rename {
	display: inline-flex;
	width: 42px;
	align-items: center;
	justify-content: center;
	padding-right: 0;
	padding-left: 0;
}

.cw-shop-filter-row form {
	display: inline-flex;
	align-items: stretch;
	gap: 7px;
	margin: 0;
}

.cw-shop-filter-row input[type="text"] {
	width: 210px;
}

.cw-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 16px;
	align-items: stretch;
}

.cw-shop-grid .shop-block,
.cw-shop-grid .shop-block.span3,
.row-fluid .cw-shop-grid .shop-block {
	position: relative;
	float: none;
	display: flex;
	width: auto;
	min-width: 0;
	min-height: 260px;
	flex-direction: column;
	margin: 0;
	padding: 16px;
	text-align: left;
	background:
		radial-gradient(circle at 16% 0%, rgba(88, 216, 255, 0.055), transparent 34%),
		linear-gradient(180deg, rgba(24, 24, 29, 0.98), rgba(8, 8, 11, 0.99));
	border-color: rgba(255, 255, 255, 0.09);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
	overflow: visible;
}

.cw-shop-grid .shop-header {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	min-height: 62px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-shop-grid .shop-header img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.38));
}

.cw-shop-grid .shop-header div {
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.cw-shop-grid .shop-body {
	display: grid;
	gap: 10px;
	margin-top: 14px;
	color: var(--cw-text);
}

.shop-buy-row {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(86px, auto) auto;
	gap: 10px;
	align-items: center;
	padding: 11px;
	background: rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-buy-meta {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.shop-buy-type {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.shop-qty-control,
.shop-actions,
.cw-shop-grid .price {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.shop-qty-control .btn,
.shop-actions .btn {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	margin: 0;
	line-height: 1;
}

.shop-step {
	width: 34px;
	padding-right: 0;
	padding-left: 0;
}

.shop_count {
	display: inline-flex;
	min-width: 34px;
	min-height: 28px;
	align-items: center;
	justify-content: center;
	padding: 3px 8px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
}

.shop-unit {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
}

.cw-shop-grid .price {
	justify-content: flex-end;
	margin: 0;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.shop-actions {
	justify-content: flex-end;
}

.shop-buy-btn {
	min-width: 104px;
}

.gift-btn {
	width: 38px;
	padding-right: 0;
	padding-left: 0;
}

.shop-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 12px;
}

.cw-shop-grid .notification {
	display: inline-flex;
	position: static;
	align-items: center;
	height: auto;
	min-height: 24px;
	margin: 0;
	padding: 4px 8px;
	color: #ffffff;
	background: rgba(169, 52, 104, 0.16);
	border: 1px solid rgba(209, 90, 151, 0.32);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	text-shadow: none;
}

.shop-admin-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-unavailable {
	padding: 12px;
	background: rgba(169, 52, 104, 0.08);
	border: 1px solid rgba(209, 90, 151, 0.2);
}

.cw-shop-directory {
	display: grid;
	gap: 10px;
	padding: 8px 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-shop-nav-title {
	text-align: center;
}

.cw-shop-nav-title h3 {
	margin: 4px 0 0;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.15;
}

.cw-shop-page .cw-shop-filter-row {
	justify-content: center;
	padding: 0;
	background: transparent;
	border: 0;
}

.cw-shop-page .cw-shop-filter-row + .cw-shop-filter-row {
	margin-top: 0;
	padding-top: 4px;
	border-top: 0;
}

.cw-shop-page .cw-shop-filter-row br {
	display: none;
}

.cw-shop-tabs {
	gap: 10px;
}

.cw-shop-subfilters {
	gap: 8px;
}

.cw-shop-page .cw-shop-tab,
.cw-shop-page .cw-shop-subtab {
	min-width: 108px;
	min-height: 42px;
	box-sizing: border-box;
	border-radius: 4px;
}

.cw-shop-page .cw-shop-subtab {
	min-width: 94px;
	min-height: 38px;
}

.cw-shop-page .cw-shop-filter-row form {
	flex: 0 1 280px;
}

.cw-shop-page .cw-shop-filter-row input[type="text"] {
	width: 100%;
}

.cw-shop-page .cw-shop-catalog {
	margin-top: 18px;
}

.cw-shop-page .cw-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 255px), 300px));
	justify-content: start;
	align-items: stretch;
	gap: 16px;
}

.cw-shop-page .cw-shop-grid .shop-block,
.cw-shop-page .cw-shop-grid .shop-block.span3,
.row-fluid .cw-shop-page .cw-shop-grid .shop-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: auto;
	max-width: none;
	min-height: 0;
	box-sizing: border-box;
	float: none;
	align-items: stretch;
	margin-left: 0;
	padding: 14px;
	background:
		radial-gradient(circle at 18% 0%, rgba(88, 216, 255, 0.07), transparent 34%),
		rgba(12, 12, 16, 0.96);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.cw-shop-page .cw-shop-grid .shop-header {
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 12px;
	min-height: 58px;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	cursor: help;
}

.cw-shop-page .cw-shop-grid .shop-header img {
	width: 48px;
	height: 48px;
}

.cw-shop-page .cw-shop-grid .shop-header div {
	font-size: 16px;
	line-height: 1.25;
}

.cw-shop-page .cw-shop-grid .shop-body {
	display: grid;
	gap: 10px;
	margin: 0;
}

.cw-shop-page .shop-buy-row {
	grid-template-columns: 1fr;
	gap: 9px;
	align-items: stretch;
	padding: 10px;
	background: rgba(0, 0, 0, 0.26);
	border-color: rgba(255, 255, 255, 0.075);
}

.cw-shop-page .shop-buy-meta {
	grid-template-columns: 1fr;
	gap: 8px;
}

.cw-shop-page .shop-buy-type {
	line-height: 1.2;
}

.cw-shop-page .cw-shop-grid .price {
	justify-content: flex-start;
	width: 100%;
	font-size: 15px;
	font-weight: 800;
	white-space: normal;
}

.shop-price-label {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.cw-shop-page .shop-actions {
	justify-content: stretch;
	width: 100%;
	gap: 8px;
}

.cw-shop-page .shop-buy-btn {
	width: 100%;
	min-width: 0;
}

.cw-shop-page .shop-actions .btn {
	flex: 1 1 auto;
}

.cw-shop-page .shop-actions .gift-btn {
	flex: 0 0 38px;
}

.cw-shop-page .shop-badges {
	align-self: stretch;
	align-content: flex-start;
	justify-content: flex-start;
	margin-top: auto;
	padding: 10px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 0;
}

.cw-shop-page .shop-admin-actions {
	margin-top: 0;
	padding-top: 0;
}

.cw-shop-page .cw-shop-grid .shop-hot,
.cw-shop-page .cw-shop-grid .shop-new {
	top: 8px;
}

.popover {
	position: absolute;
	z-index: 1060;
	width: auto;
	max-width: 360px;
	transform: none;
}

.tooltip {
	position: absolute;
	z-index: 1070;
	transform: none;
}

.popover-inner {
	width: auto;
	max-width: 360px;
}

.tooltip-inner {
	max-width: 260px;
}

.top-player-popover {
	display: grid;
	gap: 8px;
	min-width: 250px;
}

.top-player-popover > div:not(.top-player-weapon) {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 10px;
	align-items: baseline;
}

.top-player-popover span {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-player-popover strong {
	color: #ffffff;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.top-player-cell {
	cursor: help;
}

.top-player-row {
	cursor: help;
}

.cw-top-page tr.cw-item-hover {
	display: table-row;
}

.cw-top-page td.cw-item-hover {
	display: table-cell;
}

.top-player-weapon {
	display: grid;
	gap: 7px;
	padding-top: 9px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.top-player-weapon > div {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	min-width: 0;
}

.top-player-weapon img,
.top-player-weapon i {
	display: block;
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	object-fit: contain;
	filter: drop-shadow(0 6px 9px rgba(0, 0, 0, 0.38));
}

.top-player-weapon em {
	color: #9dff9a;
	font-style: normal;
	font-weight: 800;
	text-shadow: 0 0 8px rgba(93, 255, 126, 0.28);
}

.top-player-weapon-empty strong {
	color: var(--cw-muted);
}

.top-class-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 8px;
}

.top-class-card {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	min-height: 58px;
	padding: 8px 9px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
		rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-class-card img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.36));
}

.top-class-card strong,
.top-class-card span {
	display: block;
}

.top-class-card strong {
	color: #ffffff;
	font-size: 14px;
	line-height: 1.2;
}

.top-class-card span {
	margin-top: 2px;
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 700;
}

.cw-rate-list {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.cw-donate-rate-highlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	margin-top: 16px;
	padding: 16px;
	background:
		linear-gradient(90deg, rgba(88, 216, 255, 0.12), rgba(169, 52, 104, 0.1)),
		rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(88, 216, 255, 0.22);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 14px 34px rgba(0, 0, 0, 0.18);
}

.cw-donate-rate-highlight strong {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	color: #ffffff;
	font-size: 24px;
	line-height: 1.15;
}

.cw-donate-rate-highlight .gold {
	font-size: inherit;
}

.cw-donate-rate-caption {
	margin: 0;
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-align: right;
	text-transform: uppercase;
}

.cw-field-rate-note {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 4px;
	margin-left: 0;
	padding: 3px 7px;
	color: #d7d1dc;
	background: rgba(88, 216, 255, 0.08);
	border: 1px solid rgba(88, 216, 255, 0.18);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: none;
	vertical-align: middle;
	white-space: nowrap;
}

.cw-field-rate-note .gold {
	min-height: 15px;
	color: var(--cw-blue);
	font-size: 12px;
}

.cw-rate-row {
	display: grid;
	grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 46px;
	padding: 10px 12px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-rate-row > span {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.cw-rate-row strong,
.cw-hero-metric strong {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.cw-rate-equals {
	color: var(--cw-muted);
	font-weight: 800;
}

.cw-rate-value {
	color: #ffffff;
}

.cw-stat-page .table_header.cw-stat-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin: 0 0 14px;
	padding: 0;
	background: transparent;
	border: 0;
}

.cw-stat-filter-card {
	display: grid;
	min-height: 92px;
	align-content: start;
	gap: 8px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-stat-filter-card > span {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.cw-stat-filter-card form {
	display: grid;
	gap: 8px;
	margin: 0;
}

.cw-stat-filter-card select,
.cw-stat-filter-card input {
	width: 100% !important;
	min-height: 40px;
	margin: 0;
	box-sizing: border-box;
}

.cw-stat-found strong {
	display: flex;
	min-height: 40px;
	align-items: center;
	color: #ffffff;
	font-size: 26px;
	line-height: 1;
}

.cw-stat-search form {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: end;
}

.cw-stat-search .btn {
	grid-column: 1 / -1;
	min-height: 40px;
	margin: 0;
}

@media (max-width: 979px) {
	.cw-page-hero,
	.cw-panel-head,
	.cw-inline-form {
		grid-template-columns: 1fr;
	}

	.cw-panel-head {
		display: grid;
	}

	.cw-panel-head p,
	.cw-hero-metric {
		max-width: none;
		text-align: left;
	}

	.cw-form-grid,
	.cw-ranking-grid,
	.cw-stat-page .table_header,
	.cw-stat-hero-grid {
		grid-template-columns: 1fr;
	}

	.cw-shop-page .cw-shop-grid .shop-block,
	.cw-shop-page .cw-shop-grid .shop-block.span3,
	.row-fluid .cw-shop-page .cw-shop-grid .shop-block {
		grid-template-columns: 1fr;
		grid-template-areas:
			"header"
			"body"
			"badges"
			"admin";
		align-items: stretch;
	}

	.cw-shop-page .shop-badges {
		justify-content: flex-start;
		padding: 10px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-left: 0;
	}
}

@media (max-width: 767px) {
	.cw-page-hero,
	.cw-panel {
		padding: 14px;
	}

	.cw-shop-grid {
		grid-template-columns: 1fr;
	}

	.cw-pay-actions .btn,
	.cw-inline-form .btn {
		width: 100%;
	}

	.cw-shop-nav-title h3 {
		font-size: 24px;
	}

	.cw-shop-page .cw-shop-tab,
	.cw-shop-page .cw-shop-subtab,
	.cw-shop-page .cw-shop-filter-row form {
		flex: 1 1 100%;
	}

	.cw-shop-page .shop-buy-row,
	.cw-shop-page .shop-buy-meta {
		grid-template-columns: 1fr;
	}

	.cw-shop-page .shop-actions {
		justify-content: flex-start;
	}
}

.label,
.badge {
	padding: 4px 8px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 4px;
	font-weight: 700;
	line-height: 1.1;
	text-shadow: none;
}

.label-success,
.badge-success {
	color: #05140e;
	background: linear-gradient(180deg, #8ce7b7, #3faf78);
	border-color: rgba(140, 231, 183, 0.72);
}

.label-important,
.badge-important {
	background: linear-gradient(180deg, rgba(74, 42, 59, 0.94), rgba(37, 22, 34, 0.98));
	border-color: rgba(177, 66, 116, 0.58);
}

.label-info,
.badge-info {
	color: #e8f9ff;
	background: linear-gradient(180deg, rgba(38, 56, 64, 0.92), rgba(18, 30, 36, 0.98));
	border-color: rgba(88, 216, 255, 0.42);
}

.label-inverse,
.badge-inverse {
	background: rgba(7, 7, 9, 0.92);
	border-color: var(--cw-line-strong);
}

.label-warning,
.badge-warning {
	color: #1b1000;
	background: linear-gradient(180deg, #ffd989, #e0a63f);
	border-color: rgba(241, 199, 107, 0.76);
}

.alert {
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--cw-line-strong);
	border-radius: var(--cw-radius);
	text-shadow: none;
}

.alert h4 {
	color: #ffffff;
}

.alert-info {
	background: rgba(88, 216, 255, 0.09);
	border-color: rgba(88, 216, 255, 0.32);
}

.alert-success {
	background: rgba(113, 216, 164, 0.1);
	border-color: rgba(113, 216, 164, 0.32);
}

.alert-warning {
	background: rgba(241, 199, 107, 0.1);
	border-color: rgba(241, 199, 107, 0.32);
}

.alert-error,
.alert-danger {
	background: rgba(240, 97, 116, 0.1);
	border-color: rgba(240, 97, 116, 0.32);
}

.close {
	color: #ffffff;
	opacity: 0.72;
	text-shadow: none;
}

table {
	color: var(--cw-text);
}

.table,
.table-bordered,
.table-striped {
	background: rgba(9, 9, 11, 0.64);
	border-color: var(--cw-line);
	border-radius: var(--cw-radius);
}

.table th,
.table td {
	padding: 9px 10px;
	color: var(--cw-text);
	background-color: transparent;
	border-top-color: rgba(255, 255, 255, 0.08);
}

.table th {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
	font-weight: 700;
}

.table-bordered th,
.table-bordered td {
	border-left-color: rgba(255, 255, 255, 0.08);
}

.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th,
.table-striped tbody tr.odd td {
	background-color: rgba(255, 255, 255, 0.025);
}

.table-hover tbody tr:hover td,
.table tbody tr:hover td,
.table-shop tbody tr:hover td,
.table-shop tbody tr:hover th {
	color: #ffffff;
	background-color: rgba(169, 52, 104, 0.055);
}

tbody tr.odd.minus td,
tbody tr.even.minus td {
	background-color: rgba(240, 97, 116, 0.12);
}

tbody tr.odd.plus td,
tbody tr.even.plus td {
	background-color: rgba(113, 216, 164, 0.12);
}

code,
pre {
	color: #e9d8ff;
	background: rgba(0, 0, 0, 0.35);
	border-color: var(--cw-line);
	text-shadow: none;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	min-height: 34px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--cw-radius);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 18px rgba(0, 0, 0, 0.16);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	transition: border-color var(--cw-fast), box-shadow var(--cw-fast), background var(--cw-fast);
}

.cw-field .input-prepend > .add-on,
.cw-field .input-prepend > input[type="text"],
.cw-field .input-prepend > input[type="password"],
.cw-field .input-prepend > input[type="email"],
.cw-field .input-prepend > input[type="number"],
.cw-config-panel .input-prepend > .add-on,
.cw-config-panel .input-append > .add-on,
.cw-config-panel .input-prepend > input,
.cw-config-panel .input-append > input,
.cw-config-panel .input-prepend > select,
.cw-config-panel .input-append > select {
	height: 42px;
	min-height: 0;
	box-sizing: border-box;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus,
.search_focus {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(177, 66, 116, 0.56);
	box-shadow: 0 0 0 2px rgba(169, 52, 104, 0.1), inset 0 1px rgba(255, 255, 255, 0.08);
	outline: 0;
}

select option {
	color: #111;
	background: #ffffff;
}

.search_init,
.search_focus {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 4px;
}

.form-actions {
	background: rgba(255, 255, 255, 0.035);
	border-top-color: var(--cw-line);
}

.control-label,
.form-horizontal .control-label,
.form-horizontal .control-label1 {
	color: #dcd7df;
	text-shadow: none;
}

.dataTables_wrapper,
.dataTables_info,
.dataTables_length,
.dataTables_filter {
	color: var(--cw-muted);
}

.dataTables_paginate .paginate_button,
.pagination ul > li > a,
.pagination ul > li > span {
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.055);
	border-color: var(--cw-line);
}

.pagination ul > .active > a,
.pagination ul > .active > span,
.pagination ul > li > a:hover {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.14);
}

.gold {
	min-height: 16px;
	padding-left: 19px;
	color: var(--cw-blue);
	background-image: url("../img/DiamondDefault.png") !important;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 15px 15px;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(88, 216, 255, 0.36);
}

.gold_dark {
	color: #85e6ff;
}

.gold_silver,
.silver {
	color: #c8c8d2;
}

.label .gold {
	color: #ffffff;
	text-shadow: 0 0 9px rgba(88, 216, 255, 0.5);
}

.popover-inner,
.popover-content,
.popover-title {
	color: var(--cw-text);
	background: rgba(15, 15, 18, 0.98);
	border-color: var(--cw-line);
}

.popover-title {
	color: #ffffff;
}

.tooltip-inner {
	color: #ffffff;
	background: #151519;
	border: 1px solid var(--cw-line);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.tooltip.top .tooltip-arrow {
	border-top-color: #151519;
}

.tooltip.bottom .tooltip-arrow {
	border-bottom-color: #151519;
}

.tooltip.left .tooltip-arrow {
	border-left-color: #151519;
}

.tooltip.right .tooltip-arrow {
	border-right-color: #151519;
}

.shop_items,
.shop-block,
.mails-block {
	background: rgba(12, 12, 15, 0.96);
	border: 1px solid var(--cw-line);
	border-radius: var(--cw-radius);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
	transition: transform var(--cw-fast), border-color var(--cw-fast), box-shadow var(--cw-fast);
}

.shop-block:hover,
.mails-block:hover {
	border-color: rgba(177, 66, 116, 0.26);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
	transform: translateY(-2px);
}

.mail-item-reward {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: help;
}

.mail-item-reward img {
	flex: 0 0 auto;
}

.mails-content {
	gap: 12px;
}

.mails-content.pers-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(320px, 1fr));
	gap: 18px;
	place-content: stretch;
	align-items: stretch;
}

.row-fluid .pers-list .pers-card,
.pers-list .pers-card,
.pers-list .pers-card.span6 {
	float: none;
	display: flex;
	flex-direction: column;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	position: relative;
	color: var(--cw-text);
	background:
		radial-gradient(circle at 14% 0%, rgba(169, 52, 104, 0.055), transparent 34%),
		linear-gradient(180deg, rgba(24, 24, 29, 0.97), rgba(8, 8, 11, 0.99));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--cw-radius);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	overflow: hidden;
	animation: cwFadeUp 0.28s ease both;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.row-fluid .pers-list .pers-card,
.pers-list .pers-card,
.pers-list .pers-card.span6 {
	overflow: visible;
}

.pers-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(209, 90, 151, 0.42), transparent);
}

.pers-card:hover {
	border-color: rgba(209, 90, 151, 0.2);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 18px rgba(169, 52, 104, 0.045);
	transform: translateY(-2px);
}

.pers-card span {
	clear: none;
}

.pers-card-main {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 14px;
	padding: 18px;
}

.pers-avatar {
	display: grid;
	width: 68px;
	height: 68px;
	border-radius: 100px !important;
	place-items: center;
	background:
		radial-gradient(circle at 35% 22%, rgba(209, 90, 151, 0.1), transparent 32%),
		linear-gradient(145deg, rgba(35, 35, 44, 0.96), rgba(8, 8, 12, 0.98));
	border: 1px solid rgba(209, 90, 151, 0.18);
	box-shadow: 0 11px 22px rgba(0, 0, 0, 0.42), inset 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.pers-class-img {
	display: block;
	width: 54px;
	height: 54px;
	margin: 0;
	border-radius: 0;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.36));
}

.pers-info {
	min-width: 0;
}

.pers-title-row,
.pers-meta-row,
.pers-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pers-title-row {
	gap: 9px;
	margin-bottom: 8px;
}

.pers-name {
	max-width: 100%;
	margin: 0;
	color: #fff5ed;
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	text-shadow: 0 0 18px rgba(255, 245, 237, 0.08);
}

.pers-level {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 4px 9px;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(58, 33, 48, 0.88), rgba(30, 17, 28, 0.98));
	border: 1px solid rgba(177, 66, 116, 0.58);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.pers-meta-row {
	gap: 8px;
	margin-bottom: 11px;
}

.pers-class,
.pers-faction {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	color: #dbcfc9;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.1;
}

.pers-class {
	color: #d8a7bf;
}

.pers-empty {
	color: var(--cw-muted);
}

.pers-faction img {
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 0;
	object-fit: cover;
}

.pers-faction .label {
	padding: 0;
	color: #ffffff;
	background: none;
	border: 0;
	box-shadow: none;
}

.pers-stats {
	gap: 8px;
}

.pers-stat {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	gap: 6px;
	padding: 5px 8px;
	color: #f0e7e5;
	background: rgba(0, 0, 0, 0.38);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.pers-stat span {
	color: var(--cw-muted);
	font-weight: 700;
}

.pers-stat strong {
	color: #ffffff;
	font-weight: 700;
}

.pers-stat-danger strong {
	color: #d8a7bf;
}

.pers-stat-online strong {
	color: #65f2a0;
}

.pers-forbids {
	margin: 0 18px 14px;
	padding: 12px;
	color: #f6e8e8;
	background: rgba(169, 52, 104, 0.045);
	border: 1px solid rgba(209, 90, 151, 0.14);
	border-radius: 7px;
	font-size: 13px;
	line-height: 1.55;
}

.pers-forbids .label {
	margin-bottom: 7px;
}

.pers-forbids hr {
	height: 1px;
	margin: 8px 0 0;
	background: rgba(255, 255, 255, 0.12);
	border: 0;
}

.pers-actions {
	display: grid;
	gap: 8px;
	margin-top: auto;
	padding: 16px 18px 18px;
	background: rgba(0, 0, 0, 0.28);
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pers-actions br {
	display: none;
}

.pers-actions .btn {
    display: inline-flex;
    width: 100% !important;
    min-height: 38px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 9px 12px;
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(58, 33, 48, 0.9), rgba(30, 17, 28, 0.98)) !important;
    border: 1px solid rgba(177, 66, 116, 0.62);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 12px 22px rgba(0, 0, 0, 0.24);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: none;
    white-space: normal;
}

.pers-actions .btn:first-child {
	background: linear-gradient(180deg, rgba(58, 33, 48, 0.92), rgba(30, 17, 28, 0.98)) !important;
    border-color: rgba(177, 66, 116, 0.66);
}

.pers-actions .btn:hover,
.pers-actions .btn:focus {
	color: #ffffff !important;
	border-color: rgba(209, 90, 151, 0.76);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

.pers-actions .btn font {
	color: inherit !important;
}

.pers-actions-bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	gap: 8px;
	align-items: stretch;
	position: relative;
}

.pers-actions-bar-single {
	grid-template-columns: minmax(0, 1fr);
}

.pers-menu-wrap {
	position: relative;
}

.pers-menu-toggle {
	display: inline-flex;
	width: 44px;
	min-height: 38px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	color: #e9dde3;
	background: linear-gradient(180deg, rgba(22, 22, 27, 0.98), rgba(8, 8, 11, 0.98));
	border: 1px solid rgba(177, 66, 116, 0.5);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 18px rgba(0, 0, 0, 0.2);
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.pers-menu-toggle:hover,
.pers-menu-toggle:focus,
.pers-menu-wrap.is-open .pers-menu-toggle {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(42, 27, 36, 0.98), rgba(12, 12, 16, 0.98));
	border-color: rgba(209, 90, 151, 0.74);
	transform: translateY(-1px);
}

.pers-action-menu {
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	z-index: 30;
	display: grid;
	min-width: 245px;
	max-width: min(78vw, 330px);
	gap: 6px;
	padding: 8px;
	background: linear-gradient(180deg, rgba(17, 17, 22, 0.98), rgba(7, 7, 10, 0.99));
	border: 1px solid rgba(177, 66, 116, 0.38);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.44);
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.pers-menu-wrap.is-open .pers-action-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.pers-action-menu::after {
	position: absolute;
	right: 14px;
	bottom: -6px;
	width: 10px;
	height: 10px;
	content: "";
	background: rgba(7, 7, 10, 0.99);
	border-right: 1px solid rgba(177, 66, 116, 0.38);
	border-bottom: 1px solid rgba(177, 66, 116, 0.38);
	transform: rotate(45deg);
}

.pers-action-menu .btn,
.pers-action-menu .btn:first-child {
	justify-content: flex-start;
	min-height: 34px;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.035) !important;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	text-align: left;
}

.pers-action-menu .btn:hover,
.pers-action-menu .btn:focus {
	background: rgba(169, 52, 104, 0.12) !important;
	border-color: rgba(209, 90, 151, 0.48);
}

.pers-details-btn {
	position: relative;
}

.role-info-panel {
	display: grid;
	gap: 8px;
	color: var(--cw-text);
	text-align: left;
}

.role-info-hero {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px;
	background: linear-gradient(180deg, rgba(20, 20, 25, 0.98), rgba(9, 9, 12, 0.99));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-class-icon {
	width: 44px;
	height: 44px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.36));
}

.role-info-hero-main h4,
.role-info-section h4 {
	margin: 0;
	color: #fff5ed;
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	letter-spacing: 0;
}

.role-info-hero-main h4 {
	margin-bottom: 6px;
	font-size: 20px;
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.role-info-tags,
.role-info-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.role-info-tags span,
.role-info-metric,
.role-info-row {
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.075);
}

.role-info-tags span {
	padding: 3px 7px;
	color: #d8cdd3;
	font-size: 12px;
	font-weight: 700;
}

.role-info-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-info-note {
	padding: 7px 9px;
	color: #dbcfd5;
	background: rgba(169, 52, 104, 0.08);
	border: 1px solid rgba(209, 90, 151, 0.22);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.role-info-body-layout {
	display: grid;
	grid-template-columns: minmax(333px, 360px) minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	justify-content: stretch;
}

.role-info-items-col,
.role-info-stats-panel,
.role-info-extra-tables {
	min-width: 0;
}

.role-info-items-col {
	display: grid;
	gap: 8px;
	align-content: start;
}

.role-info-items-col .role-info-items-section {
	width: 333px;
	max-width: 100%;
	box-sizing: content-box;
}

.role-info-stats-panel {
	display: grid;
	gap: 0;
	padding: 11px;
	background: rgba(9, 9, 12, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-stats-list {
	display: grid;
	gap: 4px;
}

.role-info-stats-row {
	display: grid;
	grid-template-columns: minmax(118px, 0.76fr) minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	min-width: 0;
	padding: 7px 8px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.075);
}

.role-info-stats-row > span,
.role-info-stats-row > strong {
	min-width: 0;
	overflow-wrap: break-word;
	word-break: normal;
}

.role-info-stats-row > span {
	color: var(--cw-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
}

.role-info-stats-row > strong {
	color: #f4ecef;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.32;
}

.role-info-stats-row-octet {
	grid-template-columns: 1fr;
	gap: 5px;
}

.role-info-stats-row-octet > strong {
	display: block;
	max-width: 100%;
	font-family: Consolas, "Courier New", monospace;
	font-size: 11px;
	line-height: 1.45;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: break-all;
}

.role-info-extra-tables {
	display: grid;
	gap: 8px;
	margin-top: 8px;
}

.role-info-metric {
	padding: 8px 9px;
}

.role-info-metric span,
.role-info-row span,
.role-info-muted {
	color: var(--cw-muted);
}

.role-info-metric span {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.role-info-metric strong {
	display: block;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.15;
	overflow-wrap: normal;
	word-break: normal;
}

.role-info-metric-accent {
	border-color: rgba(177, 66, 116, 0.34);
	background: rgba(169, 52, 104, 0.08);
}

.role-info-section {
	padding: 10px;
	background: rgba(9, 9, 12, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-section h4 {
	margin-bottom: 8px;
	font-size: 15px;
}

.role-info-section h4 span {
	color: var(--cw-muted);
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 12px;
}

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

.role-info-row {
	display: grid;
	grid-template-columns: minmax(92px, 0.72fr) minmax(0, 1fr);
	gap: 7px;
	align-items: center;
	padding: 6px 7px;
	min-width: 0;
}

.role-info-row span,
.role-info-row strong {
	min-width: 0;
	overflow-wrap: break-word;
	word-break: normal;
}

.role-info-row span {
	font-size: 11px;
	font-weight: 800;
}

.role-info-row strong {
	color: #f4ecef;
	font-size: 12px;
	font-weight: 700;
}

.role-info-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 7px;
	color: #d7ccd1;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-badge-ok {
	color: #78eba6;
	border-color: rgba(101, 242, 160, 0.32);
	background: rgba(101, 242, 160, 0.08);
}

.role-info-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.role-info-table {
	width: 100%;
	margin: 0;
	color: #f2edf0;
	background: rgba(0, 0, 0, 0.16);
	border-collapse: collapse;
	font-size: 12px;
}

.role-info-table th,
.role-info-table td {
	padding: 8px 9px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	vertical-align: middle;
	white-space: nowrap;
}

.role-info-table th {
	color: #d8cdd3;
	background: rgba(255, 255, 255, 0.035);
	font-weight: 800;
	text-transform: uppercase;
}

.role-info-item-name {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 190px;
}

.role-info-item-name img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.role-info-item-summary {
	color: #e8d5df;
	font-weight: 700;
}

.role-info-items-section {
	overflow: hidden;
}

.role-info-equipment-board {
	display: flex;
	justify-content: center;
	max-width: 100%;
	overflow-x: auto;
	padding: 8px 0 2px;
	background:
		linear-gradient(135deg, rgba(175, 163, 129, 0.14), transparent 44%),
		linear-gradient(180deg, rgba(42, 48, 42, 0.9), rgba(22, 22, 18, 0.96));
	border: 1px solid rgba(200, 188, 146, 0.24);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.role-info-player-equipment {
	position: relative;
	flex: 0 0 auto;
	width: 313px;
	height: 273px;
	background: url("../img/iweb/equipment-bg.png") no-repeat;
}

.role-info-player-equipment:before {
	content: "";
	position: absolute;
	left: 120px;
	top: 20px;
	z-index: 0;
	width: 79px;
	height: 150px;
	pointer-events: none;
	opacity: 0.7;
}

.role-info-player-equipment.male:before {
	background: url("../img/iweb/equipment-male.png") no-repeat;
}

.role-info-player-equipment.female:before {
	background: url("../img/iweb/equipment-female.png") no-repeat;
}

.role-info-items-grid {
	--role-slot-size: min(34px, calc((100vw - 92px) / 8));
	display: grid;
	grid-template-columns: repeat(8, var(--role-slot-size));
	gap: 4px;
	align-items: start;
}

.role-info-iweb-items {
	width: 307px;
	max-width: 100%;
	max-height: 152px;
	margin: 0 auto;
	overflow-x: auto;
	overflow-y: auto;
	scrollbar-color: var(--cw-scrollbar-thumb) var(--cw-scrollbar-track);
	scrollbar-width: thin;
}

.role-info-iweb-row {
	display: grid;
	grid-template-columns: repeat(8, 32px);
	column-gap: 6px;
	align-items: start;
	box-sizing: border-box;
	width: 307px;
	height: 38px;
	padding: 3px 4px 3px 5px;
	background: url("../img/iweb/inv_line.jpg") no-repeat;
}

.role-info-item-slot {
	position: relative;
	display: block;
	width: var(--role-slot-size, 34px);
	height: var(--role-slot-size, 34px);
	box-sizing: border-box;
	background:
		linear-gradient(135deg, rgba(255, 245, 177, 0.12), transparent 42%),
		linear-gradient(180deg, rgba(82, 68, 40, 0.94), rgba(32, 25, 15, 0.98));
	border: 1px solid rgba(193, 159, 88, 0.42);
	box-shadow:
		inset 0 1px rgba(255, 255, 255, 0.13),
		inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.role-info-equipment-side .role-info-item-slot {
	background:
		linear-gradient(135deg, rgba(215, 221, 202, 0.14), transparent 45%),
		linear-gradient(180deg, rgba(70, 82, 75, 0.95), rgba(35, 41, 37, 0.98));
	border-color: rgba(178, 190, 169, 0.33);
}

.role-info-item-slot.is-empty:after {
	content: "";
	position: absolute;
	inset: 6px;
	border: 1px solid rgba(255, 255, 255, 0.055);
	background: rgba(0, 0, 0, 0.14);
}

.role-info-item-slot.is-filled {
	border-color: rgba(255, 211, 88, 0.68);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.85),
		0 0 10px rgba(255, 211, 88, 0.2),
		inset 0 1px rgba(255, 255, 255, 0.16);
}

.role-info-item-slot .cw-item-hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	height: 100%;
}

.role-info-item-slot img,
.role-info-item-icon-missing {
	display: block;
	width: calc(var(--role-slot-size, 34px) - 4px);
	height: calc(var(--role-slot-size, 34px) - 4px);
	object-fit: contain;
}

.role-info-item-slot .cw-item-hover:focus {
	box-shadow: 0 0 0 2px rgba(103, 215, 255, 0.72);
}

.role-info-item-slot.is-filled:hover {
	border-color: rgba(255, 232, 126, 0.96);
}

.role-info-iweb-items .role-info-item-slot {
	--role-slot-size: 32px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.role-info-iweb-items .role-info-item-slot.is-empty {
	pointer-events: none;
}

.role-info-iweb-items .role-info-item-slot.is-empty:after {
	display: none;
}

.role-info-iweb-items .role-info-item-slot.is-filled {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.role-info-iweb-items .role-info-item-slot.is-filled:hover {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}

.role-info-iweb-items .role-info-item-slot img,
.role-info-iweb-items .role-info-item-icon-missing {
	width: 32px;
	height: 32px;
}

.role-info-player-equipment > .role-info-equipment-slot {
	--role-slot-size: 32px;
	position: absolute;
	z-index: 2;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.role-info-player-equipment > .role-info-equipment-slot.is-empty {
	pointer-events: none;
}

.role-info-player-equipment > .role-info-equipment-slot.is-empty:after {
	display: none;
}

.role-info-player-equipment > .role-info-equipment-slot.is-filled {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.role-info-player-equipment > .role-info-equipment-slot.is-filled:hover {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}

.role-info-player-equipment .role-info-item-slot img,
.role-info-player-equipment .role-info-item-icon-missing {
	width: 32px;
	height: 32px;
}

.role-info-player-equipment .role-info-item-count {
	top: 16px;
	right: auto;
	bottom: auto;
	left: 3px;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #ffffff;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 11px;
	line-height: 1;
	text-shadow: 0 0 2px #000000;
}

.role-info-iweb-items .role-info-item-count {
	top: 16px;
	right: auto;
	bottom: auto;
	left: 3px;
	min-width: 0;
	padding: 0;
	color: #ffffff;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	text-align: left;
	text-shadow: 0 0 2px #000000;
}

.role-info-player-equipment .role-info-item-refine {
	top: 2px;
	right: auto;
	bottom: auto;
	left: 3px;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 11px;
	line-height: 1;
}

.role-info-iweb-items .role-info-item-refine {
	top: 2px;
	right: auto;
	bottom: auto;
	left: 3px;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 11px;
	line-height: 1;
}

.role-info-player-equipment > .role-info-equipment-slot.cell-0 { top: 93px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-1 { top: 3px; left: 235px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-2 { top: 48px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-3 { top: 48px; left: 46px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-4 { top: 48px; left: 235px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-5 { top: 93px; left: 46px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-6 { top: 93px; left: 235px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-7 { top: 138px; left: 235px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-8 { top: 93px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-9 { top: 138px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-10 { top: 138px; left: 46px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-11 { top: 138px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-12 { top: 3px; left: 84px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-13 { top: 188px; left: 167px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-14 { top: 188px; left: 220px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-15 { top: 188px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-16 { top: 188px; left: 114px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-17 { top: 48px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-18 { top: 48px; left: 84px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-19 { top: 3px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-20 { top: 3px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-21 { top: 3px; left: 46px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-22 { top: 93px; left: 84px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-23 { top: 138px; left: 84px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-24 { top: 3px; left: 197px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-25 { top: 188px; left: 61px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-26 { top: 48px; left: 197px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-27 { top: 93px; left: 197px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-28 { top: 136px; left: 176px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-29 { top: 188px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-32 { top: 238px; left: 8px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-33 { top: 238px; left: 61px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-34 { top: 238px; left: 114px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-35 { top: 238px; left: 167px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-36 { top: 238px; left: 220px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-37 { top: 238px; left: 273px; }
.role-info-player-equipment > .role-info-equipment-slot.cell-38 { top: 138px; left: 197px; }

.role-info-item-count {
	position: absolute;
	right: 1px;
	bottom: 0;
	min-width: 12px;
	padding: 0 2px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 12px;
	text-align: right;
	text-shadow: 0 1px 2px #000000, 0 0 4px #000000;
	border: 0;
	pointer-events: none;
}

.role-info-item-refine {
	position: absolute;
	top: 1px;
	left: 1px;
	min-width: 12px;
	padding: 0 1px;
	color: #ffe58a;
	font-size: 10px;
	font-weight: 800;
	line-height: 12px;
	text-align: left;
	text-shadow: 0 1px 2px #000000, 0 0 4px #000000;
	border: 0;
	pointer-events: none;
}

.role-info-item-expire {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 5px;
	height: 5px;
	background: #ff4e5f;
	border: 1px solid rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	pointer-events: none;
}

.role-info-item-icon-missing {
	background: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.18);
}

.cw-item-hover {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	cursor: help;
	outline: none;
}

.cw-item-hover > span:not(.cw-item-tooltip-template):not(.role-info-item-count):not(.role-info-item-refine):not(.role-info-item-expire):not(.role-info-item-icon-missing) {
	border-bottom: 1px dotted rgba(209, 90, 151, 0.48);
}

.cw-item-hover:hover > span:not(.cw-item-tooltip-template):not(.role-info-item-count):not(.role-info-item-refine):not(.role-info-item-expire):not(.role-info-item-icon-missing),
.cw-item-hover:focus > span:not(.cw-item-tooltip-template):not(.role-info-item-count):not(.role-info-item-refine):not(.role-info-item-expire):not(.role-info-item-icon-missing) {
	color: #ffffff;
	border-bottom-color: rgba(209, 90, 151, 0.9);
}

.cw-item-tooltip {
	position: fixed;
	z-index: 99999;
	display: block;
	width: min(430px, calc(100vw - 24px));
	max-height: min(78vh, 720px);
	overflow: auto;
	color: var(--cw-text);
	background:
		linear-gradient(180deg, rgba(21, 18, 22, 0.98), rgba(8, 8, 11, 0.995)),
		var(--cw-surface);
	border: 1px solid rgba(177, 66, 116, 0.46);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.62), inset 0 1px rgba(255, 255, 255, 0.06);
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity var(--cw-fast), transform var(--cw-fast);
}

.cw-item-tooltip.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.cw-item-tooltip-inner {
	display: grid;
	gap: 10px;
	padding: 12px;
	text-align: left;
}

.cw-item-tooltip-head {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-item-tooltip-head img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

.cw-item-tooltip-head h5 {
	margin: 0 0 7px;
	color: #fff5ed;
	font-size: 18px;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.cw-item-tooltip-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.cw-item-tooltip-chip {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 3px 7px;
	color: #d8cdd3;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.cw-item-tooltip-accent {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.18);
	border-color: rgba(209, 90, 151, 0.48);
}

.cw-item-tooltip-section {
	padding: 10px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.cw-item-tooltip-section h6 {
	margin: 0 0 8px;
	color: #d8a7bf;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.cw-item-tooltip-rows {
	display: grid;
	gap: 5px;
}

.cw-item-tooltip-rows > div,
.cw-item-tooltip-stones > div,
.cw-item-tooltip-bonus {
	display: grid;
	grid-template-columns: minmax(108px, 0.72fr) minmax(0, 1fr);
	gap: 8px;
	align-items: center;
	min-width: 0;
	padding: 6px 7px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.055);
}

.cw-item-tooltip-rows span,
.cw-item-tooltip-bonus span,
.cw-item-tooltip-stones span,
.cw-item-tooltip-stones em,
.cw-item-tooltip-bonus em {
	color: var(--cw-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
}

.cw-item-tooltip-rows strong,
.cw-item-tooltip-bonus strong,
.cw-item-tooltip-stones strong {
	min-width: 0;
	color: #f5edf1;
	font-size: 12px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.cw-item-tooltip-rows code {
	display: block;
	max-width: 100%;
	color: #a8f0ff;
	background: rgba(0, 0, 0, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.07);
	white-space: normal;
	overflow-wrap: anywhere;
}

.cw-item-tooltip-stones,
.cw-item-tooltip-bonuses {
	display: grid;
	gap: 5px;
}

.cw-item-tooltip-stones > div {
	grid-template-columns: 24px minmax(0, 1fr);
}

.cw-item-tooltip-stones img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.cw-item-tooltip-stone-empty {
	width: 22px;
	height: 22px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px dashed rgba(255, 255, 255, 0.12);
}

.cw-item-tooltip-bonus {
	grid-template-columns: minmax(82px, 0.5fr) minmax(0, 1fr);
}

.cw-item-tooltip-bonus em {
	grid-column: 1 / -1;
	color: #706a72;
}

.cw-item-tooltip-bonus.is-refine {
	border-color: rgba(209, 90, 151, 0.34);
	background: rgba(169, 52, 104, 0.1);
}

.cw-item-tooltip-bonus.is-stone {
	border-color: rgba(101, 242, 160, 0.22);
	background: rgba(101, 242, 160, 0.06);
}

.cw-item-tooltip {
	width: min(420px, calc(100vw - 16px));
	max-height: min(82vh, 760px);
	color: #f0f0f0;
	background: #252525;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.66);
}

.cw-item-tooltip-compact {
	display: block;
	padding: 8px 10px 9px;
}

.cw-item-tooltip-compact .cw-item-tooltip-head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	padding: 0 0 5px;
	border: 0;
}

.cw-item-tooltip-compact .cw-item-tooltip-head img {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.35));
}

.cw-item-tooltip-compact .cw-item-tooltip-head h5 {
	margin: 2px 0 0;
	color: #ffd23f;
	font-family: "Philosopher", Georgia, serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.cw-item-refine {
	color: #9dff9a;
	text-shadow: 0 0 8px rgba(93, 255, 126, 0.28);
}

.cw-item-sockets {
	color: #ffd23f;
}

.cw-item-tooltip-lines {
	display: block;
	margin-top: 2px;
}

.cw-item-tooltip-line {
	margin: 2px 0;
	color: #eeeeee;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.24;
}

.cw-item-tooltip-line span {
	color: #f5f5f5;
}

.cw-item-tooltip-line strong {
	color: #ededed;
	font-weight: 700;
}

.cw-item-tooltip-proctype {
	margin-top: 5px;
	color: #67d7ff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.cw-item-tooltip-proctype em {
	display: block;
	color: #80ddff;
	font-style: normal;
}

.cw-item-tooltip-ext-desc {
	margin-top: 6px;
	padding-top: 6px;
	color: #d9d9d9;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.28;
	overflow-wrap: anywhere;
}

.cw-item-tooltip-ext-desc font {
	font-weight: 700;
}

.cw-item-tooltip-ext-desc + .cw-item-tooltip-lines {
	margin-top: 6px;
}

.cw-item-tooltip .cw-item-tooltip-compact .cw-item-tooltip-stones {
	display: block !important;
	width: 100%;
	margin-top: 5px;
}

.cw-item-tooltip-stones-label {
	display: block;
	margin-bottom: 4px;
	color: #f5f5f5;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.24;
}

.cw-item-tooltip .cw-item-tooltip-compact .cw-item-tooltip-stones > div {
	display: flex !important;
	gap: 6px;
	align-items: center;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	margin-top: 5px;
	padding: 6px 8px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-item-tooltip .cw-item-tooltip-compact .cw-item-tooltip-stones img,
.cw-item-tooltip .cw-item-tooltip-compact .cw-item-tooltip-stone-empty {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.cw-item-tooltip .cw-item-tooltip-compact .cw-item-tooltip-stones strong {
	display: block;
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	color: #ededed;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.24;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.cw-item-tooltip-creator {
	margin-top: 5px;
	color: #ffcf47;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.24;
}

.cw-item-tooltip-creator strong {
	color: #ffdf78;
}

.role-info-mask-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	min-width: 150px;
}

.role-info-mask-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 2px 6px;
	color: #dcecf2;
	background: rgba(103, 215, 255, 0.08);
	border: 1px solid rgba(103, 215, 255, 0.18);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.15;
}

.role-info-settings {
	display: grid;
	gap: 16px;
}

.role-info-settings-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: end;
	padding: 16px;
	background: rgba(9, 9, 12, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-settings-head h3 {
	margin: 0 0 6px;
	font-size: 22px;
}

.role-info-settings-head p {
	margin: 0;
	color: var(--cw-muted);
}

.role-info-settings-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.role-info-settings-actions input[type="text"] {
	width: 210px;
	height: 34px;
	margin: 0;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
}

.role-info-settings-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.role-info-settings-group {
	min-width: 0;
	padding: 14px;
	background: rgba(9, 9, 12, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-settings-group-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.role-info-settings-group-head h4 {
	margin: 0;
	font-size: 17px;
}

.role-info-settings-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
}

.role-info-settings-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-height: 34px;
	margin: 0;
	padding: 8px 9px;
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 13px;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color var(--cw-fast), background var(--cw-fast), color var(--cw-fast);
}

.role-info-settings-item:hover {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.08);
	border-color: rgba(209, 90, 151, 0.28);
}

.role-info-settings-item input {
	width: 16px;
	height: 16px;
	margin: 0;
	flex: 0 0 auto;
	accent-color: var(--cw-pink);
}

.auth_but,
.auth_but_succ {
	border-radius: var(--cw-radius);
	box-shadow: 0 0 0 1px var(--cw-line);
}

.translator div {
	border-radius: 4px;
	transition: opacity var(--cw-fast), transform var(--cw-fast), background var(--cw-fast);
}

.translator div:hover,
.translator div.active {
	background: rgba(169, 52, 104, 0.1);
	transform: translateY(-1px);
}

footer {
	max-width: 1420px;
	margin: 24px auto 0;
	padding: 18px 0 0;
	color: var(--cw-muted);
	border-top: 1px solid var(--cw-line);
}

footer table,
footer td {
	color: var(--cw-muted);
}

#container.login-box1 {
	width: min(92vw, 560px);
	height: auto;
	margin: 10vh auto 0;
	color: var(--cw-text);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	animation: cwFadeUp 420ms ease both;
}

#container form,
#container .welcome {
	display: grid;
	width: auto;
	height: auto;
	min-height: 0;
	padding: 28px;
	background: rgba(14, 14, 17, 0.96);
	border: 1px solid var(--cw-line-strong);
	border-radius: var(--cw-radius);
	box-shadow: var(--cw-shadow);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 14px;
}

#container .login,
#container .welcome-user {
	width: auto;
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.18;
	text-shadow: 0 0 12px rgba(169, 52, 104, 0.18);
	grid-column: 1 / -1;
}

#container .username-text,
#container .password-text {
	width: auto;
	margin: 0 !important;
	color: var(--cw-muted);
	font-size: 14px;
	line-height: 1.2;
}

#container .username-field,
#container .password-field,
#container .email-field {
	width: auto;
	height: auto;
	margin: 0 !important;
	padding: 0;
	background: none !important;
}

#container .email-field {
	grid-column: 1 / -1;
}

#container input[type="text"],
#container input[type="password"] {
	width: 100% !important;
	height: 42px;
	margin: 0;
	padding: 8px 11px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--cw-radius);
	font-size: 17px;
}

#container .login-captcha {
	grid-column: 1 / -1;
}

#container input[type="checkbox"] + label {
	width: auto;
	height: auto;
	min-height: 24px;
	margin: 2px 0 0 !important;
	padding-left: 28px;
	color: var(--cw-text);
	background: none;
	line-height: 24px;
	grid-column: 1 / 2;
}

#container input[type="checkbox"] + label::before {
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	content: "";
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--cw-line-strong);
	border-radius: 4px;
}

#container input[type="checkbox"]:checked + label::before {
	background: linear-gradient(180deg, var(--cw-pink-2), var(--cw-pink));
	border-color: rgba(177, 66, 116, 0.62);
	box-shadow: 0 0 10px rgba(169, 52, 104, 0.18);
}

#container .forgot-usr-pwd {
	width: auto;
	margin: 2px 0 0;
	color: var(--cw-muted);
	text-align: right;
	grid-column: 2 / 3;
}

#container input[type="submit"] {
	width: 100%;
	height: 46px;
	margin: 4px 0 0 !important;
	color: #ffffff;
	background: linear-gradient(180deg, rgba(58, 33, 48, 0.92), rgba(30, 17, 28, 0.98));
	border: 1px solid rgba(177, 66, 116, 0.66);
	border-radius: var(--cw-radius);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
	font-size: 18px;
	font-weight: 700;
	text-shadow: none;
	grid-column: 1 / -1;
}

#container input[type="submit"]:hover,
#container input[type="submit"]:focus {
	color: #ffffff;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

#container .register {
	width: auto;
	margin: 0;
	color: var(--cw-muted);
	text-align: center;
	grid-column: 1 / -1;
}

#container .register a,
#container .forgot-usr-pwd a,
.resend {
	color: var(--cw-pink-2);
}

#container .login-btn {
	display: none;
}

.applogin {
	position: static;
	width: min(92vw, 560px);
	margin: 0 auto 12px;
	text-align: right;
}

.vklogin {
	display: inline-block;
	width: 154px;
	height: 34px;
	background: url("../img/vk_login.png") center / contain no-repeat;
	border-radius: var(--cw-radius);
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

#footer {
	width: min(92vw, 560px);
	height: auto;
	margin: 20px auto 0 !important;
	padding-top: 14px;
	color: var(--cw-muted);
	background: none;
	border-top: 1px solid var(--cw-line);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 15px;
}

#footer a {
	color: var(--cw-muted);
}

#footer a:hover,
#footer a:focus {
	color: var(--cw-pink-2);
}

body.cw-register-page {
	display: flex;
	min-height: 100vh;
	padding: 28px 16px 24px;
	flex-direction: column;
}

.cw-register-shell {
	width: min(1180px, 100%);
	margin: 0 auto;
	animation: cwFadeUp 420ms ease both;
}

.cw-register-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding: 12px 0 16px;
	border-bottom: 1px solid var(--cw-line);
}

.cw-register-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: #ffffff;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
}

.cw-register-logo {
	display: block;
	flex: 0 0 auto;
	filter: drop-shadow(0 0 16px rgba(169, 52, 104, 0.28));
}

.cw-register-login-link,
.cw-register-rules {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid var(--cw-line-strong);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
	font-size: 14px;
	font-weight: 700;
}

.cw-register-login-link:hover,
.cw-register-login-link:focus,
.cw-register-rules:hover,
.cw-register-rules:focus {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.12);
	border-color: rgba(209, 90, 151, 0.42);
	transform: translateY(-1px);
}

.cw-register-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
	gap: 20px;
	align-items: stretch;
}

.cw-register-aside,
.cw-register-panel {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(22, 18, 22, 0.98), rgba(11, 10, 12, 0.98)),
		var(--cw-surface);
	border: 1px solid var(--cw-line);
	box-shadow: var(--cw-shadow);
}

.cw-register-aside::before,
.cw-register-panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, rgba(209, 90, 151, 0.55), rgba(255, 255, 255, 0.12), transparent);
}

.cw-register-aside {
	min-height: 100%;
	padding: 30px;
	background:
		linear-gradient(135deg, rgba(169, 52, 104, 0.13), transparent 38%),
		linear-gradient(180deg, rgba(22, 18, 22, 0.98), rgba(10, 9, 11, 0.98));
}

.cw-register-kicker {
	display: inline-flex;
	margin-bottom: 9px;
	color: var(--cw-pink-2);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.cw-register-aside h1 {
	max-width: 360px;
	margin: 0 0 14px;
	font-size: 32px;
}

.cw-register-aside p {
	max-width: 390px;
	margin: 0;
	color: var(--cw-muted);
	font-size: 16px;
}

.cw-register-benefits {
	display: grid;
	gap: 9px;
	margin-top: 28px;
}

.cw-register-benefits span {
	position: relative;
	padding: 10px 12px 10px 34px;
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid var(--cw-line);
}

.cw-register-benefits span::before {
	position: absolute;
	top: 50%;
	left: 13px;
	width: 7px;
	height: 7px;
	content: "";
	background: var(--cw-pink-2);
	box-shadow: 0 0 13px rgba(209, 90, 151, 0.42);
	transform: translateY(-50%) rotate(45deg);
}

.cw-register-panel {
	min-width: 0;
}

.cw-register-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 24px 26px 20px;
	background: rgba(255, 255, 255, 0.018);
	border-bottom: 1px solid var(--cw-line);
}

.cw-register-panel-head h2 {
	margin: 0;
	font-size: 25px;
}

.cw-register-content {
	padding: 22px 26px 26px;
}

.cw-register-tools {
	display: flex;
	justify-content: flex-end;
	min-height: 0;
	margin-bottom: 8px;
}

.cw-register-tools:empty {
	display: none;
}

.cw-register-messages:empty {
	display: none;
}

.cw-register-messages .alert {
	margin-bottom: 14px;
}

.cw-register-form {
	display: grid;
	margin: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
}

.cw-register-form fieldset {
	display: contents;
}

.cw-register-form .control-group {
	margin: 0;
}

.cw-register-field-full,
.cw-register-referral {
	grid-column: 1 / -1;
}

.cw-register-form .control-label {
	float: none;
	width: auto;
	margin: 0 0 7px;
	padding: 0;
	color: #ffffff;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.cw-register-form .controls {
	margin-left: 0;
}

.cw-register-form input[type="text"],
.cw-register-form input[type="password"],
.cw-register-form select,
.cw-register-form textarea {
	width: 100% !important;
	min-height: 42px;
	margin: 0;
	padding: 9px 11px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
	font-family: "Philosopher", "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.25;
	transition: border-color var(--cw-fast), box-shadow var(--cw-fast), background var(--cw-fast);
}

.cw-register-form input[type="text"]:focus,
.cw-register-form input[type="password"]:focus,
.cw-register-form select:focus,
.cw-register-form textarea:focus {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(209, 90, 151, 0.62);
	box-shadow: 0 0 0 2px rgba(169, 52, 104, 0.12);
}

.cw-register-form .help-block,
.cw-register-form p {
	margin: 7px 0 0;
	color: var(--cw-muted);
	font-size: 13px;
	line-height: 1.4;
}

.cw-register-form .chzn-container {
	width: 100% !important;
}

.cw-register-form .chzn-container-single .chzn-single {
	height: 42px;
	padding: 8px 11px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
	line-height: 24px;
}

.cw-register-form .chzn-container-single .chzn-single div {
	top: 8px;
}

.cw-register-form .chzn-container .chzn-drop {
	width: 100% !important;
	color: var(--cw-text);
	background: #111114;
	border-color: var(--cw-line-strong);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.cw-register-form .chzn-container .chzn-results .highlighted {
	color: #ffffff;
	background: rgba(169, 52, 104, 0.35);
}

.cw-register-form .chzn-search input {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.055) !important;
	border-color: var(--cw-line-strong) !important;
}

.cw-register-field-full .controls .center {
	text-align: left;
}

.cw-register-captcha .controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.cw-register-form .cw-register-captcha #kapcha,
.cw-register-form .cw-register-captcha .inputc {
	width: 150px !important;
	flex: 0 0 150px;
	vertical-align: middle;
}

.cw-register-captcha .help-block {
	flex: 1 0 100%;
}

.cw-register-captcha img#image {
	max-height: 42px;
	border: 1px solid var(--cw-line-strong);
	vertical-align: middle;
	cursor: pointer;
}

.cw-register-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 13px 14px;
	color: var(--cw-text);
	background: rgba(255, 255, 255, 0.028);
	border: 1px solid var(--cw-line);
	font-size: 15px;
	line-height: 1.35;
}

.cw-register-check input[type="checkbox"] {
	position: static !important;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	flex: 0 0 auto;
	opacity: 1 !important;
	accent-color: var(--cw-pink);
}

.cw-register-submit {
	margin-top: 4px !important;
	padding-top: 16px;
	border-top: 1px solid var(--cw-line);
}

.cw-register-submit .controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.cw-register-button {
	min-width: 220px;
	min-height: 44px;
	font-size: 16px;
}

.cw-register-button.btn-success {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(58, 33, 48, 0.92), rgba(30, 17, 28, 0.98));
	border-color: rgba(177, 66, 116, 0.58);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.cw-register-button.btn-success:hover,
.cw-register-button.btn-success:focus {
	background: linear-gradient(180deg, rgba(68, 39, 56, 0.96), rgba(34, 19, 31, 0.98));
	border-color: rgba(209, 90, 151, 0.62);
	transform: translateY(-1px);
}

.cw-register-footer {
	display: flex;
	width: min(1180px, 100%);
	margin: auto auto 0;
	padding: 18px 0 0;
	justify-content: space-between;
	gap: 16px;
}

.cw-register-footer p {
	margin: 0;
	color: var(--cw-muted);
}

@keyframes cwFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 979px) {
	.main-menu-span {
		width: 100% !important;
		margin-right: 0;
	}

	.row-fluid > #content.span10 {
		width: 100% !important;
	}

	.navbar .brand {
		padding-right: 16px;
		padding-left: 16px;
	}

	.navbar .nav > li > a {
		min-height: 0;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.navbar .pull-right {
		margin-top: 8px;
	}

	.sidebar-nav {
		margin-bottom: 16px;
	}

	.main-menu > li > a {
		justify-content: flex-start;
	}

	.mails-content.pers-list {
		grid-template-columns: 1fr;
	}

	.lk-home-hero {
		grid-template-columns: 1fr;
	}

	.lk-hero-actions {
		justify-content: flex-start;
	}

	.lk-overview,
	.lk-stat-grid,
	.lk-account-grid {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
	}
}

@media (max-width: 767px) {
	body {
		padding-right: 10px;
		padding-left: 10px;
	}

	.navbar {
		margin-right: -10px;
		margin-left: -10px;
	}

	.navbar .brand {
		width: calc(100% - 64px);
		border-left: 0;
	}

	.box-content {
		padding: 14px;
	}

	.table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	#container form,
	#container .welcome {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	#container .forgot-usr-pwd,
	#container input[type="checkbox"] + label {
		text-align: left;
		grid-column: 1 / -1;
	}

	.pers-card-main {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 12px;
		padding: 14px;
	}

	.pers-avatar {
		width: 54px;
		height: 54px;
	}

	.pers-class-img {
		width: 44px;
		height: 44px;
	}

	.pers-name {
		font-size: 21px;
	}

	.pers-actions {
		padding: 14px;
	}

	.pers-actions-bar {
		grid-template-columns: minmax(0, 1fr) 42px;
	}

	.pers-action-menu {
		right: 0;
		min-width: min(82vw, 280px);
	}

	.role-info-body-layout,
	.role-info-hero,
	.role-info-metrics,
	.role-info-grid {
		grid-template-columns: 1fr;
	}

	.role-info-equipment-board {
		justify-content: flex-start;
		padding-right: 8px;
		padding-left: 8px;
	}

	.role-info-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.role-info-stats-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.role-info-settings-head,
	.role-info-settings-grid,
	.role-info-settings-list {
		grid-template-columns: 1fr;
	}

	.role-info-settings-actions {
		justify-content: flex-start;
	}

	.crime-promo-modal {
		right: 4%;
		left: 4%;
		width: auto;
		margin-left: 0;
	}

	.lk-overview,
	.lk-stat-grid,
	.lk-account-grid,
	.lk-loyalty-summary {
		grid-template-columns: 1fr;
	}

	.lk-home-hero,
	.lk-panel {
		padding: 14px;
	}

	.lk-panel-head {
		display: block;
	}

	.lk-panel-head p {
		max-width: none;
		text-align: left;
	}
}

@media (max-width: 979px) {
	.cw-header-shell {
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
		padding: 0 12px;
	}

	.navbar .brand.cw-brand {
		flex: 1 1 auto;
		width: auto;
		min-height: 58px;
		padding-right: 12px;
		padding-left: 0;
	}

	.cw-header-actions.nav-collapse {
		display: grid;
		grid-template-columns: 1fr;
		flex: 1 0 100%;
		width: 100%;
		height: auto !important;
		gap: 10px;
		padding: 0 0 12px;
		overflow: visible !important;
	}

	.cw-header-nav,
	.cw-header-right,
	.cw-header-account,
	.cw-header-extra {
		flex-wrap: wrap;
	}

	.cw-header-nav-link {
		min-height: var(--cw-header-control-h);
	}

	.cw-header-nav-link::after {
		bottom: 5px;
	}
}

@media (max-width: 620px) {
	.cw-header-actions,
	.cw-header-nav,
	.cw-header-right,
	.cw-header-account {
		width: 100%;
	}

	.cw-mail-link {
		flex: 0 0 var(--cw-header-control-h);
	}

	.cw-header-nav {
		justify-content: flex-start;
		gap: 18px;
	}

	.cw-header-nav-link {
		flex: 0 1 auto;
		min-width: 0;
	}

	.cw-account-number,
	.cw-balance-display {
		flex: 1 1 132px;
	}

	.cw-user-menu {
		flex: 1 1 170px;
	}

	.cw-user-toggle {
		width: 100%;
	}

	.cw-user-menu .dropdown-menu {
		right: auto;
		left: 0;
	}
}

@media (max-width: 920px) {
	body.cw-register-page {
		padding: 18px 12px;
	}

	.cw-register-layout {
		grid-template-columns: 1fr;
	}

	.cw-register-aside {
		min-height: 0;
		padding: 22px;
	}

	.cw-register-aside h1 {
		max-width: none;
		font-size: 27px;
	}

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

@media (max-width: 680px) {
	.cw-register-top,
	.cw-register-panel-head,
	.cw-register-footer {
		display: grid;
		grid-template-columns: 1fr;
	}

	.cw-register-form,
	.cw-register-benefits {
		grid-template-columns: 1fr;
	}

	.cw-register-content,
	.cw-register-panel-head {
		padding-right: 16px;
		padding-left: 16px;
	}

	.cw-register-submit .controls {
		justify-content: stretch;
	}

	.cw-register-button {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 979px) {
	.cw-shop-grid {
		grid-template-columns: 1fr;
	}

	.cw-donate-layout {
		grid-template-columns: 1fr;
	}

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

	.shop-buy-row,
	.cw-rate-row,
	.cw-stat-page .table_header.cw-stat-filters {
		grid-template-columns: 1fr;
	}

	.shop-actions,
	.shop-buy-meta,
	.cw-shop-grid .price {
		justify-content: flex-start;
	}

	.cw-stat-search form {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.cw-donate-amount-panel,
	.cw-donate-method-panel {
		gap: 14px;
		padding: 16px;
	}

	.cw-donate-card-head {
		min-height: 0;
	}

	.cw-donate-card-head h3,
	.cw-donate-method-head h3 {
		font-size: 22px;
	}

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

	.cw-donate-total {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.cw-donate-total strong {
		justify-content: flex-start;
		text-align: left;
	}

	.cw-payment-method {
		grid-template-columns: 40px minmax(0, 1fr) auto;
		gap: 10px;
		padding: 11px 12px;
	}

	.cw-method-icon {
		width: 36px;
		height: 36px;
	}

	.cw-shop-filter-row,
	.cw-shop-filter-row form,
	.cw-shop-filter-row input[type="text"],
	.cw-shop-filter-row select,
	.cw-shop-filter-row .select2-container {
		width: 100%;
	}

	.cw-shop-filter-row {
		grid-template-columns: 1fr;
	}

	.top-class-grid {
		grid-template-columns: 1fr;
	}

	.cw-rate-row {
		align-items: flex-start;
	}

	.cw-donate-rate-highlight {
		grid-template-columns: 1fr;
	}

	.cw-donate-rate-caption {
		text-align: left;
	}

	.cw-donate-form .cw-donate-field-label {
		min-height: 0;
		flex-wrap: wrap;
	}

	.cw-stat-filter-card {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
