/*!
    
 =========================================================
 * WebEngine CMS
 * https://webenginecms.org/
 =========================================================
 
 * Author Lautaro Angelico (https://lautaroangelico.com/)
 * Copyright (c) 2013-2022 Lautaro Angelico, All Rights Reserved
 
 * Licensed under the MIT license
 * http://opensource.org/licenses/MIT
 
 =========================================================
 
*/
html {
	min-width: 1040px;
	height: 100%;
	--theme-page-text: #333333;
	--theme-text-strong: #000000;
	--theme-text-muted: #777777;
	--theme-text-soft: #666666;
	--theme-link: #777777;
	--theme-link-hover: #ffda8a;
	--theme-surface: #ffffff;
	--theme-surface-alt: #f1f1f1;
	--theme-surface-subtle: #fafafa;
	--theme-footer: #efefef;
	--theme-border: #e3e3e3;
	--theme-border-strong: #cacaca;
	--theme-panel-heading: #ffffff;
	--theme-topbar-bg: #101010;
	--theme-topbar-text: #777777;
	--theme-topbar-link: #999999;
	--theme-topbar-link-hover: #ffffff;
	--theme-navbar-bg: rgba(0, 0, 0, 0.3);
	--theme-navbar-link: #fafafa;
	--theme-navbar-link-hover: #ffffff;
	--theme-input-bg: #fafafa;
	--theme-input-border: #e3e3e3;
	--theme-input-focus: #cccccc;
	--theme-shadow-soft: rgba(0, 0, 0, 0.08);
	--theme-shadow-medium: rgba(0, 0, 0, 0.14);
	--theme-header-info-bg: rgba(0, 0, 0, 0.3);
	--theme-header-info-border: rgba(255, 255, 255, 0.1);
	--theme-table-alt: #fafafa;
	--theme-accent: #ff0000;
	--theme-success: #00ff00;
}

html[data-theme="dark"] {
	--theme-page-text: #d7dce7;
	--theme-text-strong: #f4f7fb;
	--theme-text-muted: #a6afbf;
	--theme-text-soft: #c3cad8;
	--theme-link: #c7d0de;
	--theme-link-hover: #ffd38f;
	--theme-surface: rgba(14, 19, 31, 0.94);
	--theme-surface-alt: rgba(20, 27, 43, 0.94);
	--theme-surface-subtle: rgba(28, 36, 55, 0.94);
	--theme-footer: rgba(12, 17, 28, 0.96);
	--theme-border: rgba(255, 255, 255, 0.12);
	--theme-border-strong: rgba(255, 255, 255, 0.2);
	--theme-panel-heading: rgba(10, 14, 24, 0.88);
	--theme-topbar-bg: rgba(8, 11, 18, 0.98);
	--theme-topbar-text: #aab3c1;
	--theme-topbar-link: #d6dde8;
	--theme-topbar-link-hover: #ffffff;
	--theme-navbar-bg: rgba(6, 8, 14, 0.55);
	--theme-navbar-link: #eef3fb;
	--theme-navbar-link-hover: #ffffff;
	--theme-input-bg: rgba(10, 14, 24, 0.92);
	--theme-input-border: rgba(255, 255, 255, 0.12);
	--theme-input-focus: rgba(255, 255, 255, 0.3);
	--theme-shadow-soft: rgba(0, 0, 0, 0.3);
	--theme-shadow-medium: rgba(0, 0, 0, 0.45);
	--theme-header-info-bg: rgba(7, 10, 18, 0.58);
	--theme-header-info-border: rgba(255, 255, 255, 0.14);
	--theme-table-alt: rgba(255, 255, 255, 0.03);
	--theme-usercp-overlay: linear-gradient(rgba(9, 12, 20, 0.72), rgba(9, 12, 20, 0.72));
}

body {
	background: #050218 url('../img/background-26001.jpg') no-repeat top center;
	color: var(--theme-page-text);
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	height: 100%;
}

@media only screen and (min-width: 2000px) {
	body {
		background: #050218 url('../img/background-26001.jpg') no-repeat top center !important;
	}
}
body {
  margin: 0;
  background:
    linear-gradient(
      to bottom,
      
      #870117 0%,
      #3b0a25 30%,
      #1a0f2e 50%,
      #0b0f1a 100%
    )
    no-repeat;

  background-size: 100% 120vh; /* 👈 controla altura del gradiente */
  background-color: #0b0f1a;   /* 👈 color base del resto */
}
a {
	color: var(--theme-link);
	text-decoration: none;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:hover {
	color: var(--theme-link-hover);
}

img {
	border: 0px;
}

input[type=text], input[type=password], input[type=number] {
	background: var(--theme-input-bg);
	border: 1px solid var(--theme-input-border);
	color: var(--theme-text-soft);
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
	border: 1px solid var(--theme-input-focus);
}

#header {
	width: 100%;
	margin: 0px auto;
/*	padding: 80px 0px 10px 0px;*/
	text-align: center;
	color: #fff;
	margin-top: -60px;
}

#container {
	/* background: var(--theme-surface); */
	 background: var(--theme-surface);
	width: 1040px;
	height: auto;
	margin: 0px auto;
	padding: 20px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	-khtml-border-radius: 5px 5px 0px 0px;

	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
    color: #ffffff;
    border: 1px solid var(--theme-header-info-border);
}

#content {
	width: 100%;
	overflow: auto;
	min-height: 500px;
	padding: 10px 20px 0px 20px;
}

.footer {
	background: var(--theme-footer);
	font-family: 'Segoe UI', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'Arial', 'sans-serif';
	width: 1040px;
	font-size: 12px;
	color: var(--theme-text-soft);
	padding: 40px;
	overflow: auto;
	margin: 0px auto 100px auto;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	-khtml-border-radius: 0px 0px 5px 5px;
}
	.footer > .footer-container {
		width: 100%;
		margin: 0px auto;
	}
		.footer > .footer-container a:hover {
			text-decoration: underline !important;
		}
	.footer hr {
		border-top: 1px solid var(--theme-border-strong);
	}
	.footer .footer-social-link {
		filter: grayscale(100%);
		transition: all .3s ease;
	}
	.footer .footer-social-link:hover {
		filter: grayscale(0%);
	}

#navbar {
	width: 100%;
	position: relative;
	backdrop-filter: blur(5px);
	border-bottom: 1px solid var(--theme-header-info-border);
	background-color: var(--theme-navbar-bg);
	text-shadow: 1px 1px 2px #000000;
	z-index: 10;
}

#navbar ul{
	text-align: center;
	margin: 0px;
	-webkit-padding-start: 0px;
}

#navbar ul li {
	list-style-type: none;
	display: inline-block;
	font-size: 16px;
}

#navbar ul li a {
	display: inline-block;
	color: var(--theme-navbar-link) !important;
	text-decoration: none;
	padding: 20px 30px;
	transition: all .3s ease;
	text-transform: uppercase;
}

#navbar ul li a:active, #navbar ul li a:focus, #navbar ul li a:hover {
	color: var(--theme-navbar-link-hover) !important;
	text-decoration: none;
}

.admincp-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ffffff !important;
	border: 2px solid #000000 !important;
	color: #000000 !important;
	font-weight: bold !important;
}

.page-title {
	color: var(--theme-accent);
	font-family: 'PT Sans', sans-serif;
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: bold;
}

/* NEWS MODULE */
.panel-news {
	margin-bottom: 30px;
	color: var(--theme-page-text);
	background: var(--theme-surface);
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 0px var(--theme-shadow-soft);
	-webkit-box-shadow: 0 0 0px var(--theme-shadow-soft);
	box-shadow: 0 0 0px var(--theme-shadow-soft);
}
.panel-news .panel-heading {
	padding-top: 10px;
	padding-bottom: 10px;
}
.panel-news .panel-title {
	color: var(--theme-text-strong);
	font-size: 24px;
	font-weight: bold;
}
.panel-news .panel-title a {
	color: inherit !important;
}
.panel-news .panel-body {
	padding: 10px;
	color: var(--theme-page-text);
	background: transparent;
}
.panel-news .panel-body a:not(.news-readmore) {
	color: var(--theme-link-hover);
}
.panel-news .panel-body img {
	max-width: 100%;
	height: auto;
}
.panel-news .panel-footer {
	border-top: 1px solid var(--theme-border);
	background: var(--theme-panel-heading);
	font-style: italic;
	font-size: 11px;
	height: 40px;
	color: var(--theme-text-muted);
}

/* RANKINGS MODULE */
.rankings-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.rankings-class-image {
	width: 30px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.rankings-table tr td {
	border-bottom: 1px solid var(--theme-border);
	padding: 10px;
	font-size: 18px;
	vertical-align: middle !important;
	text-align: center;
}
.rankings-table-place {
	color: var(--theme-text-soft);
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}
.rankings-table tr:first-child td {
	color: #ff0000;
	border-bottom: 3px solid #ff0000;
}
.rankings-update-time {
	text-align: right;
	font-size: 11px;
	color: var(--theme-text-muted);
	padding: 10px 0px;
}
.rankings_menu {
	width: 100%;
	overflow: auto;
	text-align: center;
	margin-bottom: 10px;
}
.rankings_menu span {
	width: 100%;
	display: inline-block;
	padding: 10px 0px;
	color: var(--theme-text-muted);
	font-size: 24px;
}
.rankings_menu a {
	display: inline-block;
	width: 150px;
	border: 1px solid var(--theme-border);
	text-align: center;
	padding: 2px 0px;
	margin: 2px;
	background: var(--theme-surface-alt);
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: var(--theme-text-muted);
}
.rankings_menu a.active {
	color: var(--theme-page-text);
	border-color: var(--theme-text-soft);
}
.rankings_guild_logo tr td {
	border: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}
.rankings-gens-img {
	width: auto !important;
	height: 30px !important;
	border: 0 !important;
	-moz-box-shadow: 0 0 0px #000 !important;
	-webkit-box-shadow: 0 0 0px #000 !important;
	box-shadow: 0 0 0px #000 !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}

/* MY ACCOUNT MODULE */
.myaccount-table {
	width: 100%;
	background: var(--theme-surface-alt);
	border: 1px solid var(--theme-border);
}
.myaccount-table tr td:first-child {
	color: var(--theme-text-soft);
	font-weight: bold;
}
.myaccount-table tr td {
	border-bottom: 1px solid var(--theme-border);
	padding: 15px !important;
}
.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	background: var(--theme-surface-alt);
	border: 1px solid var(--theme-border);
	padding: 10px;
	margin: 10px 0px;
}
.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
}
.general-table-ui tr:first-child td {
	color: var(--theme-accent);
}
.general-table-ui tr:nth-child(2n+2) td {
	background: var(--theme-table-alt);
}
.general-table-ui tr td {
	text-align: center;
}
.general-table-ui img {
	width: 50px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #aa0000;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 40px;
}
.tos_list li p {
	color: var(--theme-page-text);
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
	font-size: 14px;
	font-weight: normal;
}

/* PAYPAL */
.paypal-gateway-container {
	width: 100%;
}

.paypal-gateway-content {
	background: #fef2da;
	border: 3px solid #f79433;
	padding: 15px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: bold;
}

.paypal-gateway-logo {
	width: 100%;
	height: 100px;
	background: #fff9ec url('../img/paypal-logo-200-68.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.paypal-gateway-conversion-rate {
	margin: 0px auto;
	text-align: center;
	color: #000;
	font-size: 18px;
	padding: 10px 0px;
}

.paypal-gateway-form {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.paypal-gateway-form div {
	display: inline-block;
	padding: 0px 10px;
	color: #000;
	font-size: 24px;
}

.paypal-gateway-form input[type=text] {
	width: 60px;
	font-size: 24px;
	border: 3px solid #f79433;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #f79433;
}

.paypal-gateway-continue {
	margin: 0px auto;
	text-align: center;
}

.paypal-gateway-continue input[type=submit] {
	background: url('../img/paypal-submit.jpg') no-repeat;
	width: 200px;
	height: 40px;
	border: 0px;
}

.module-requirements {
	font-size: 12px;
	margin-top: 20px;
}

/* SIDEBAR */
.panel-sidebar {
	background: var(--theme-surface-alt);
	border: 0px;
	/* -moz-border-radius: 0px; */
	/* border-radius: 0px; */
	-moz-box-shadow: 0 0 10px var(--theme-shadow-soft);
	-webkit-box-shadow: 0 0 10px var(--theme-shadow-soft);
	box-shadow: 0 0 10px var(--theme-shadow-soft);
}

.panel-sidebar > .panel-heading {
	background: var(--theme-panel-heading);
	color: var(--theme-accent);
	font-family: 'PT Sans', sans-serif;
	border: 0px;
	/* -moz-border-radius: 0px; */
	/* border-radius: 0px; */
	border-bottom: 3px solid var(--theme-accent);
}

.panel-usercp {
	background: url('../img/usercp_bg.jpg') no-repeat top center;
	background-size: cover;
}

html[data-theme="dark"] .panel-news {
	background: rgb(20 27 43 / 0%);
}

html[data-theme="dark"] .panel-news .panel-body,
html[data-theme="dark"] .panel-news .panel-body p,
html[data-theme="dark"] .panel-news .panel-body span,
html[data-theme="dark"] .panel-news .panel-body li,
html[data-theme="dark"] .panel-news .panel-body div,
html[data-theme="dark"] .panel-news .panel-footer {
	color: var(--theme-page-text) !important;
}

html[data-theme="dark"] .panel-news hr {
	border-top-color: var(--theme-border);
}

html[data-theme="dark"] .panel-usercp {
	background-image: var(--theme-usercp-overlay), url('../img/usercp_bg.jpg');
}

html[data-theme="dark"] .panel-usercp .panel-body {
	background: rgba(9, 12, 20, 0.2);
}

.panel-usercp ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.panel-usercp ul li {
	display: table;
	width: 100%;
	vertical-align: middle;
	line-height: 30px;
}

.panel-usercp ul li a {
	color: var(--theme-text-soft) !important;
	font-weight: bold;
}
.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
	color: var(--theme-accent) !important;
}

html[data-theme="dark"] .panel-usercp ul li a {
	color: #eef3fb !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-usercp ul li img {
	position: relative;
	top: -2px;
	padding-right: 10px;
}

.sidebar-banner {
	margin: 20px 0px;
	border: 0px;
}

.sidebar-banner img {
	-moz-box-shadow: 0 0 10px var(--theme-shadow-soft);
	-webkit-box-shadow: 0 0 10px var(--theme-shadow-soft);
	box-shadow: 0 0 10px var(--theme-shadow-soft);
	border: 0px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
}

/* GENERAL PANEL STYLING */
.panel-general {
	margin-bottom: 30px;
	background: var(--theme-surface-alt);
	border: 1px solid var(--theme-border);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: var(--theme-page-text);
}

.panel-body .panel-title {
	color: var(--theme-text-soft);
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	border-bottom: 1px solid var(--theme-border);
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* ADD STATS MODULE */
.panel-addstats {
	margin-bottom: 30px;
	background: var(--theme-surface-alt);
	border: 1px solid var(--theme-border);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: var(--theme-page-text);
}
.panel-addstats .character-avatar img {
	width: 100px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.panel-addstats .character-name {
	color: var(--theme-text-soft);
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid var(--theme-border);
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* DOWNLOADS */
.panel-downloads {
	margin-bottom: 30px;
	background: var(--theme-surface-alt);
	border: 1px solid var(--theme-border);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: var(--theme-page-text);
}
	.download-description {
		font-size: 11px;
		position: relative;
		top: -7px;
		color: var(--theme-text-muted);
	}

.online-status-indicator {
	margin-left: 5px;
}

/* WEBENGINE CMS */
.webengine-powered { color: #777 !important; }
.webengine-powered:active, .webengine-powered:hover { color: #ff3214 !important; }

/* GLOBAL TOP BAR */
.global-top-bar {
	width: 100%;
	background: var(--theme-topbar-bg);
	color: var(--theme-topbar-text);
	padding: 7px 0px 2px 0px;
	text-transform: uppercase;
	font-size: 12px;
}
	.global-top-bar .global-top-bar-content {
		width: 1040px;
		margin: 0px auto;
	}
		.global-top-bar .global-top-bar-content .row {
			margin: 0px;
			padding: 0px;
		}
	.global-top-bar a.logout {
		color: var(--theme-accent) !important;
	}
	.global-top-bar a {
		color: var(--theme-topbar-link) !important;
	}
	.global-top-bar a:hover {
		color: var(--theme-topbar-link-hover) !important;
	}
.global-top-bar-nopadding {
	padding: 0px !important;
}
.global-top-bar-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}
.global-top-bar-links {
	display: inline-block;
}
.global-top-bar-separator {
	padding: 0px 5px;
}

.theme-switch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	cursor: pointer;
	color: var(--theme-topbar-link);
	font-size: 10px;
	letter-spacing: 0.08em;
}

.theme-switch-copy {
	color: var(--theme-topbar-link);
}

.theme-switch-control {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.theme-switch-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
}

.theme-switch-slider {
	position: relative;
	display: inline-block;
	width: 42px;
	height: 20px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
	transition: background-color .2s ease, border-color .2s ease;
}

.theme-switch-slider:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	transition: transform .2s ease;
}

.theme-switch-input:checked + .theme-switch-slider {
	background: rgba(255, 0, 0, 0.3);
	border-color: rgba(255, 0, 0, 0.45);
}

.theme-switch-input:checked + .theme-switch-slider:before {
	transform: translateX(22px);
}

.theme-switch-input:focus + .theme-switch-slider {
	outline: 2px solid rgba(255, 255, 255, 0.5);
	outline-offset: 2px;
}

/* LANGUAGE PICKER */
.webengine-language-switcher {
	display: inline-block;
	list-style: none;
	padding: 0px !important;
	margin: 0px !important;
	width: 46px;
	height: 19px;
	overflow: hidden;
	transition: all .3s ease;
}
.webengine-language-switcher:hover {
	width: 400px;
}
	.webengine-language-switcher li {
		display: inline-block;
		list-style-type: none;
		background: var(--theme-navbar-bg);
		padding: 0px 5px 2px 5px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		-khtml-border-radius: 3px;
		transition: all .3s ease;
	}
	.webengine-language-switcher li:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}
	.webengine-language-switcher li a {
		color: var(--theme-topbar-link);
	}
	.webengine-language-switcher li a:hover {
		color: #ffffff !important;
	}

/* WEBSITE LOGO */
.webengine-mu-logo {
	transition: all .3s ease;
	max-width: 900px;
}
	.webengine-mu-logo:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* HEADER INFO */
.header-info-container {
	width: 1040px;
	margin: 0px auto;
	text-align: right;
}
	.header-info-container .header-info {
		display: inline-block;
		width: 350px;
		background: var(--theme-header-info-bg);
		backdrop-filter: blur(5px);
		margin: 0px;
		padding: 20px;
		overflow: auto;
		-moz-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-khtml-border-radius: 5px;
		text-shadow: 1px 1px 3px #000000;	
		color: #ffffff;
		border: 1px solid var(--theme-header-info-border);
		font-size: 12px;
		margin-top: -80px;
	}
		.header-info-container .header-info .header-info-block {
			padding: 0px;
		}
		.header-info-container .header-info .header-info-block #tServerTime, .header-info-container .header-info .header-info-block #tLocalTime {
			color: #ffffff;
		}
		.header-info-container .header-info .header-info-block #tServerDate, .header-info-container .header-info .header-info-block #tLocalDate {
			color: #cccccc;
		}
		.header-info-container .header-info .header-info-block .online-count {
			color: var(--theme-success);
		}
	
/* ONLINE BAR */
.webengine-online-bar {
	width: 100%;
	background: #000000;
	border: 1px solid #555555;
	height: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
	overflow: hidden;
	transition: all .3s ease;
}
	.webengine-online-bar .webengine-online-bar-progress {
		height: 8px;
		background: #00ff00 url('../img/online_progress_bar.jpg') no-repeat left center;
		-webkit-border-radius: 0px 1px 1px 0px;
		-moz-border-radius: 0px 1px 1px 0px;
		-khtml-border-radius: 0px 1px 1px 0px;
		border-radius: 0px 1px 1px 0px;
	}
	.webengine-online-bar:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* MY ACCOUNT CHARACTER LIST */
.myaccount-character-block {
	background: #333;
	border: 1px solid #666;
	padding: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	margin: 0px auto;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
	.myaccount-character-block img {
		width: 100px;
		height: auto;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 0 5px #000;
		-webkit-box-shadow: 0 0 5px #000;
		box-shadow: 0 0 5px #000;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
		.myaccount-character-block img:hover {
			-webkit-filter: brightness(120%);
			filter: brightness(120%);
		}
.myaccount-character-block-location {
	font-size: 12px;
	color: var(--theme-text-strong);
	margin-bottom: 20px;
	margin-top: 2px;
	line-height: 1.2;
}
.myaccount-character-block-level {
	position: relative;
	top: -77px;
	display: inline-block;
	background: rgba(0,0,0,0.5);
	padding: 0px 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
}
.myaccount-character-name a {
	font-weight: bold;
	color: var(--theme-text-strong);
	font-size: 16px;
}

/* RANKINGS FILTER BY CLASS */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: var(--theme-text-strong);
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: var(--theme-text-strong) !important;
	}

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
