/*!
    
 =========================================================
 * 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 {
	height: 100%;
}

body {
	background: #000000 url('../img/background.png') no-repeat top center;
	background-size: 100% auto;
	color: #333;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	height: 100%;
}

*, *:before, *:after {
	box-sizing: border-box;
}

@media only screen and (min-width: 2000px) {
	body {
		background: #000000 url('../img/background.png') no-repeat top center !important;
		background-size: 100% auto !important;
	}
}

a {
	color: #777;
	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: #ffda8a;
}

img {
	border: 0px;
	max-width: 100%;
	height: auto;
}

input[type=text], input[type=password], input[type=number] {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	color: #666;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
	border: 1px solid #ccc;
}

#header {
	width: 100%;
	margin: 0px auto;
	padding: 80px 0px 10px 0px;
	text-align: center;
	color: #fff;
}

#container {
	background: #ffffff;
	width: 1040px;
	max-width: 100%;
	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;
}

#content {
	width: 100%;
	overflow: auto;
	min-height: 500px;
	padding: 10px 20px 0px 20px;
}

.footer {
	background: #efefef;
	font-family: 'Segoe UI', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'Arial', 'sans-serif';
	width: 1040px;
	max-width: 100%;
	font-size: 12px;
	color: #666666;
	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 #cacaca;
	}
	.footer .footer-social-link {
		filter: grayscale(100%);
		transition: all .3s ease;
	}
	.footer .footer-social-link:hover {
		filter: grayscale(0%);
	}

#navbar {
	width: 100%;
	backdrop-filter: blur(5px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-toggle-mobile {
	display: none;
}

#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: #cccccc !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: #ffffff !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: #ff0000;
	font-family: 'PT Sans', sans-serif;
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: bold;
}

/* NEWS MODULE */
.panel-news {
	margin-bottom: 30px;
	color: #333;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 0px #e3e3e3;
	-webkit-box-shadow: 0 0 0px #e3e3e3;
	box-shadow: 0 0 0px #e3e3e3;
}
.panel-news .panel-heading {
	padding-top: 10px;
	padding-bottom: 10px;
}
.panel-news .panel-title {
	color: #000000;
	font-size: 24px;
	font-weight: bold;
}
.panel-news .panel-body {
	padding: 10px;
}
.panel-news .panel-footer {
	border-top: 1px solid #e7e7e7;
	background: #fff;
	font-style: italic;
	font-size: 11px;
	height: 40px;
	color: #777;
}

/* 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 #e3e3e3;
	padding: 10px;
	font-size: 18px;
	vertical-align: middle !important;
	text-align: center;
}
.rankings-table-place {
	color: #666;
	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: #ccc;
	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: #ccc;
	font-size: 24px;
}
.rankings_menu a {
	display: inline-block;
	width: 150px;
	border: 1px solid #e3e3e3;
	text-align: center;
	padding: 2px 0px;
	margin: 2px;
	background: #f1f1f1;
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: #ccc;
}
.rankings_menu a.active {
	color: #333;
	border-color: #333;
}
.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: #f1f1f1;
	border: 1px solid #e3e3e3;
}
.myaccount-table tr td:first-child {
	color: #666;
	font-weight: bold;
}
.myaccount-table tr td {
	border-bottom: 1px solid #e3e3e3;
	padding: 15px !important;
}
.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	padding: 10px;
	margin: 10px 0px;
}
.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
}
.general-table-ui tr:first-child td {
	color: #ff0000;
}
.general-table-ui tr:nth-child(2n+2) td {
	background: #fafafa;
}
.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: #444;
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
	font-size: 14px;
	font-weight: normal;
}

/* PAYPAL */
.donation-notice {
	background: #fff8e8;
	border: 1px solid #f0d38b;
	border-left: 4px solid #ff0000;
	border-radius: 6px;
	color: #6c4a00;
	line-height: 1.45;
	margin: 16px 0px 18px 0px;
	padding: 14px 16px;
}

.donation-pack-card {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 42%),
		linear-gradient(180deg, #202020 0%, #101010 100%);
	border: 1px solid #3a3a3a;
	border-left: 4px solid #ff0000;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.18);
	color: #ffffff;
	display: flex;
	gap: 18px;
	margin: 14px 0px;
	min-height: 112px;
	overflow: hidden;
	padding: 18px;
	position: relative;
	transition: all .2s ease;
}

.donation-pack-card:before {
	background: linear-gradient(90deg, rgba(255,0,0,0.3), rgba(255,218,138,0.2), transparent);
	content: "";
	height: 1px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

.donation-pack-card:hover {
	border-color: #666666;
	border-left-color: #ffda8a;
	box-shadow: 0 14px 28px rgba(0,0,0,0.26);
	transform: translateY(-1px);
}

.donation-pack-icon {
	align-items: center;
	background: radial-gradient(circle at 35% 30%, #fff2b9 0%, #e8b944 35%, #9c6818 72%, #4a2608 100%);
	border: 1px solid rgba(255,218,138,0.55);
	border-radius: 8px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 0 16px rgba(255,218,138,0.18);
	display: flex;
	flex: 0 0 76px;
	height: 76px;
	justify-content: center;
	position: relative;
	width: 76px;
}

.donation-pack-icon:before,
.donation-pack-icon:after,
.donation-pack-icon span {
	background: linear-gradient(180deg, #fff1a6 0%, #d79a27 55%, #8e5312 100%);
	border: 2px solid #ffd66d;
	border-radius: 50%;
	box-shadow: inset -5px -5px 0 rgba(92,48,8,0.25), 0 4px 7px rgba(0,0,0,0.25);
	content: "";
	display: block;
	height: 24px;
	position: absolute;
	width: 24px;
}

.donation-pack-icon:before {
	left: 16px;
	top: 34px;
}

.donation-pack-icon:after {
	right: 16px;
	top: 26px;
}

.donation-pack-icon span {
	height: 30px;
	left: 23px;
	top: 16px;
	width: 30px;
}

.donation-pack-main {
	flex: 1 1 auto;
	min-width: 0;
}

.donation-pack-kicker {
	color: #ffda8a;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.donation-pack-credits {
	color: #ffffff;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.1;
}

.donation-pack-credits span {
	color: #d9d9d9;
	font-size: 16px;
	font-weight: bold;
}

.donation-pack-price {
	color: #a9a9a9;
	font-size: 14px;
	font-weight: bold;
	margin-top: 7px;
}

.donation-pack-action {
	flex: 0 0 auto;
	text-align: right;
}

.donation-pack-button,
.donation-pack-action .btn-success,
.donation-pack-action button.btn-success {
	background: #ff0000 !important;
	border: 1px solid #cc0000 !important;
	border-radius: 4px !important;
	box-shadow: 0 6px 14px rgba(255,0,0,0.25);
	color: #ffffff !important;
	font-weight: bold;
	min-width: 112px;
	padding: 9px 18px !important;
	text-transform: uppercase;
}

.donation-pack-button:hover,
.donation-pack-action .btn-success:hover,
.donation-pack-action button.btn-success:hover {
	background: #cc0000 !important;
	border-color: #990000 !important;
	color: #ffffff !important;
}

.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: #f1f1f1;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
}

.panel-sidebar > .panel-heading {
	background: #fff;
	color: #ff0000;
	font-family: 'PT Sans', sans-serif;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border-bottom: 3px solid #ff0000;
}

.panel-sidebar > .panel-heading .panel-title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: space-between;
	line-height: 1.3;
}

.panel-sidebar > .panel-heading .panel-title .btn {
	float: none !important;
	white-space: normal;
}

.panel-usercp {
	background: url('../img/usercp_bg.jpg') no-repeat top center;
	background-size: cover;
}

.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: #444 !important;
	font-weight: bold;
}
.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
	color: #ff0000 !important;
}

.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 #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
	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: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}

.panel-body .panel-title {
	color: #666;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	border-bottom: 1px solid #e3e3e3;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* ADD STATS MODULE */
.panel-addstats {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}
.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: #666;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid #e3e3e3;
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* DOWNLOADS */
.panel-downloads {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}
	.download-description {
		font-size: 11px;
		position: relative;
		top: -7px;
		color: #777;
	}

.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: #101010;
	color: #777777;
	padding: 7px 0px 2px 0px;
	text-transform: uppercase;
	font-size: 12px;
}
	.global-top-bar .global-top-bar-content {
		width: 1040px;
		max-width: 100%;
		margin: 0px auto;
		padding: 0px 15px;
	}
		.global-top-bar .global-top-bar-content .row {
			margin: 0px;
			padding: 0px;
		}
	.global-top-bar a.logout {
		color: #ff0000 !important;
	}
	.global-top-bar a {
		color: #999999 !important;
	}
	.global-top-bar a:hover {
		color: #ffffff !important;
	}
.global-top-bar-nopadding {
	padding: 0px !important;
}
.global-top-bar-separator {
	padding: 0px 5px;
}

/* 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: #333333;
		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: #999999;
	}
	.webengine-language-switcher li a:hover {
		color: #ffffff !important;
	}

/* WEBSITE LOGO */
.webengine-mu-logo {
	transition: all .3s ease;
}
	.webengine-mu-logo:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* HEADER INFO */
.header-info-container {
	width: 1040px;
	max-width: 100%;
	margin: 0px auto;
	text-align: right;
	padding: 0px 15px;
}
	.header-info-container .header-info {
		display: inline-block;
		width: 350px;
		background: rgba(0, 0, 0, 0.3);
		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 rgba(255,255,255,0.1);
		font-size: 12px;
	}
		.header-info-container .header-info .header-info-block {
			padding: 0px;
			color: #aaaaaa;
		}
		.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: #00ff00;
		}
	
/* 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: #000;
	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: #000;
	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: #000000;
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: #000000 !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%);
}

@media only screen and (max-width: 1199px) {
	body {
		background-size: 100% auto;
	}
}

@media only screen and (max-width: 991px) {
	body {
		background-position: top center;
		background-size: auto 520px;
	}

	#navbar {
		background: rgba(10, 10, 10, 0.92);
		position: relative;
		z-index: 20;
	}

	#navbar .navbar-toggle-mobile {
		align-items: center;
		background: transparent;
		border: 0px;
		color: #cccccc;
		display: flex !important;
		font-size: 12px;
		gap: 10px;
		justify-content: space-between;
		letter-spacing: 0;
		margin: 0px auto;
		max-width: 1040px;
		padding: 14px 16px;
		text-transform: uppercase;
		width: 100%;
	}

	.navbar-toggle-mobile:focus {
		outline: 1px solid rgba(255,255,255,0.35);
		outline-offset: -4px;
	}

	.navbar-toggle-icon {
		display: inline-block;
		height: 16px;
		position: relative;
		width: 24px;
	}

	.navbar-toggle-icon span {
		background: #ffffff;
		display: block;
		height: 2px;
		left: 0px;
		position: absolute;
		transition: all .2s ease;
		width: 24px;
	}

	.navbar-toggle-icon span:nth-child(1) {
		top: 0px;
	}

	.navbar-toggle-icon span:nth-child(2) {
		top: 7px;
	}

	.navbar-toggle-icon span:nth-child(3) {
		top: 14px;
	}

	#navbar.nav-open .navbar-toggle-icon span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}

	#navbar.nav-open .navbar-toggle-icon span:nth-child(2) {
		opacity: 0;
	}

	#navbar.nav-open .navbar-toggle-icon span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}

	#navbar ul {
		display: none;
		padding: 0px 16px 12px 16px;
		text-align: left;
	}

	#navbar.nav-open ul {
		display: block;
	}

	#navbar ul li {
		display: block;
		font-size: 14px;
	}

	#navbar ul li a {
		border-top: 1px solid rgba(255,255,255,0.08);
		display: block;
		padding: 14px 0px;
	}

	#header {
		padding: 55px 15px 15px 15px;
	}

	.webengine-mu-logo {
		max-width: 270px;
		width: 62vw;
	}

	.header-info-container {
		text-align: center;
	}

	.header-info-container .header-info {
		width: 100%;
		max-width: 420px;
		text-align: left;
	}

	#container {
		width: calc(100% - 30px);
	}

	#content {
		min-height: 420px;
		padding: 15px 10px 0px 10px;
	}

	#content > .col-xs-8,
	#content > .col-xs-4,
	#content > .content-main,
	#content > .content-sidebar {
		float: none !important;
		width: 100% !important;
	}

	.content-sidebar {
		margin-top: 20px;
	}

	.footer {
		width: calc(100% - 30px);
		margin-bottom: 40px;
		padding: 30px 25px;
	}
}

@media only screen and (max-width: 767px) {
	body {
		background-size: auto 500px;
		font-size: 13px;
	}

	.global-top-bar {
		font-size: 11px;
	}

	.global-top-bar .global-top-bar-content {
		padding: 0px 12px;
	}

	.webengine-language-switcher:hover {
		width: 46px;
	}

	#header {
		padding: 48px 15px 18px 15px;
	}

	.header-info-container {
		padding: 0px 12px;
	}

	.header-info-container .header-info {
		padding: 15px;
	}

	#container {
		width: calc(100% - 20px);
		padding-top: 12px;
	}

	#content {
		min-height: 360px;
		padding: 10px 5px 0px 5px;
	}

	.page-title {
		font-size: 26px;
	}

	.panel-news .panel-title {
		font-size: 20px;
	}

	.sidebar-banner img {
		width: 100%;
	}

	.rankings-table,
	.general-table-ui,
	.myaccount-table,
	.table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
		width: 100%;
	}

	.rankings-table tr td {
		font-size: 14px;
		padding: 8px;
	}

	.rankings-table-place {
		font-size: 18px;
	}

	.rankings_menu a {
		width: calc(50% - 8px);
	}

	.rankings-class-filter {
		padding: 10px 0px;
	}

	.rankings-class-filter-selection {
		width: 66px;
	}

	.donation-pack-card {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 14px;
		padding: 15px;
	}

	.donation-pack-icon {
		flex-basis: 60px;
		height: 60px;
		width: 60px;
	}

	.donation-pack-icon:before,
	.donation-pack-icon:after,
	.donation-pack-icon span {
		height: 20px;
		width: 20px;
	}

	.donation-pack-icon span {
		height: 24px;
		width: 24px;
	}

	.donation-pack-credits {
		font-size: 22px;
	}

	.donation-pack-action {
		text-align: left;
		width: 100%;
	}

	.donation-pack-button,
	.donation-pack-action .btn-success,
	.donation-pack-action button.btn-success {
		width: 100%;
	}

	.castle-siege-block #siegeTimer {
		font-size: 34px;
	}

	.castle-siege-block #siegeTimer span {
		font-size: 18px;
	}

	.footer {
		width: calc(100% - 20px);
		padding: 25px 20px;
	}

	.footer > .footer-container > .row > .col-xs-8,
	.footer > .footer-container > .row > .col-xs-4 {
		width: 100%;
	}

	.footer > .footer-container > .row > .col-xs-4 {
		margin-top: 15px;
	}
}

@media only screen and (max-width: 420px) {
	body {
		background-size: auto 470px;
	}

	.global-top-bar .col-xs-6 {
		width: 100%;
		text-align: center !important;
	}

	.global-top-bar .col-xs-6 + .col-xs-6 {
		margin-top: 4px;
	}

	#header {
		padding-top: 40px;
	}

	.webengine-mu-logo {
		max-width: 230px;
		width: 64vw;
	}

	.header-info-container .header-info {
		font-size: 11px;
	}

	#container {
		width: 100%;
		border-radius: 0px;
	}

	.footer {
		width: 100%;
		border-radius: 0px;
		margin-bottom: 0px;
	}

	.rankings_menu a {
		width: 100%;
	}
}
