@charset "utf-8";

/* CSS Document */

/* ------------------------------------------------------------------
  Name         	: FluxCP Theme for WOE Server
  Designer		: s1 Lykos Designs
  Author		: ROMISC Gantz Services - [ https://gantzservices.com ] 
 * --------------------------------------------------------------------- */

@font-face {
    font-family: 'GothamCondensed-Medium';
    src: url('../fonts/GothamCondensed-Medium.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamCondensed-Bold';
    src: url('../fonts/GothamCondensed-Bold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham-Bold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Black';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('../fonts/Inter-ExtraBold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url('../fonts/Inter-ExtraLight.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Light';
    src: url('../fonts/Inter-Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('../fonts/Inter-Thin.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('../fonts/Raleway-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SportyPro-Bold';
    src: url('../fonts/SportyPro-Bold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SportyPro-Regular';
    src: url('../fonts/SportyPro-Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
	--themeTextColor: #c9cdd4;
	--themeTextSubColor: #fff;
	--themeColor: #e03131;
	--themeColorSub: #ff8787;
	--themeHover: #ff8787;
	--tooltipColor: rgba(0, 0, 0, 0.8);

	/* WOE Server — "Crimson & Steel" design tokens */
	--crimson: #e03131;
	--crimson-deep: #c92a2a;
	--ember: #ff8787;
	--steel: #ced4da;
	--base: #0f1115;
	--surface: #1a1d24;
	--surface-2: #21252e;
	--line: rgba(255,255,255,0.08);
	--line-strong: rgba(255,255,255,0.16);
	--glow: rgba(224,49,49,0.45);
}

/* SAFETY NET (blank-screen fix): the whole page content is wrapped in
   data-aos elements, which aos.css sets to opacity:0 until AOS's JS reveals
   them. If AOS fails to init for ANY reason, every page renders BLANK/white.
   Force data-aos content to stay visible so the site never depends on AOS
   JavaScript to show its content. (Disables the fade/zoom animation.) */
[data-aos] {
	opacity: 1 !important;
	transform: none !important;
}

body,html {
	scroll-behavior: smooth;
}

body {
	background: #1a1917 url('../img/main-background.jpg') top center no-repeat;
	background-size: cover;
	color: var(--themeTextColor);
	margin: 0;
	padding: 0;
	border: 0;
}

/* READABILITY FIX: the theme replaces flux.css's white background with a dark
   one but never re-set the text color, so default body text (flux.css
   `body{color:#000}`) and headings (`h2,h3{color:#444}`) stayed near-black on
   the dark background — unreadable. Restore the theme's intended text colors. */
h1, h2, h3, h4, h5, h6 {
	color: var(--themeTextSubColor);
}

#load{
    width:100%;
    height:100%;
    position:fixed;
    z-index:9999;
    background: #000;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #2b2c2f;
	visibility: hidden;
}
  
#preloader:before {
	/* background: url('../img/preloader.gif') no-repeat;
	background-size:contain; */
	content: "";
	position: fixed;
	border: 6px solid #fff;
	border-bottom-color: #2b2c2f; 
	border-radius: 50%;
	width: 50px;
	height: 50px;
	top: calc(50% - (50px /2));
	left: calc(50% - (50px /2));
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
}
}

#msgIndicator{
	position: fixed;
	text-align: center;
	width: 275px;
	top: calc(50% + 50px);
	left: calc(50% - (275px / 2));
	z-index: 9999;
	visibility: hidden;
}

.theme-heading {
	font-family: 'GothamCondensed-Bold';
	font-size: 36pt;
	text-transform: uppercase;
	color: var(--themeColorSub);
}

@keyframes heartbeat {
  0% {
    transform: scale( 1);    
  }
  20% {
    transform: scale( 0.9 ) ;
  } 
  40% {
    transform: scale( 0.8 ) ;
  }
}


@keyframes pulse{
  0% {
    transform: scale(0.95);
  }
  
  70% {
    transform: scale(1);
  }
  
  100% {
    transform: scale(0.95);
  }
}


/* --------------------------------
 Main Styles
-------------------------------- */
.main-container {
	height: auto;
	min-height: 60px;
}

.container {
	max-width: 1400px !important;
}

.content-wrap {
	padding: 0px 0 !important;
}

.text-themetext {
	color: var(--themeTextColor) !important;
}

.text-themecolor {
	color: var(--themeColor) !important;
}

.text-themeHover {
	color: var(--themeHover) !important;
}

.text-themecolorSub{
	color: var(--themeColorSub) !important;
}

.bg-themeGradient {
	background: linear-gradient(360deg, rgba(68,87,41,1) 0%, rgba(68,87,41,1) 0%, rgba(78,117,32,1) 100%);
}

.bg-fbGradient {
	background: linear-gradient(180deg, rgba(60,124,182,1) 30%, rgba(41,64,128,1) 100%) !important;
	padding: 12px 10px !important;
}

.tooltip > .tooltip-inner {background-color: var(--tooltipColor);}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
	border-left-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
	border-right-color: var(--tooltipColor);
}

.animate-faderight-transition {
	animation: fade-in-right 1.5s ease-in-out; 
}

.animate-fadeleft-transition {
	animation: fade-in-left 1.5s ease-in-out; 
}

/* --------------------------------
 Header Section
-------------------------------- */

.main-header {
	min-height: 127px;
}

.container-header {
	max-width: 1400px;
	padding: 0 12px;
	margin: 0 auto !important;
}

.navbar-dark .navbar-nav .nav-link {
	font-family: 'Inter-Regular';
	font-size: 11pt;
	color: var(--themeTextColor);
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--themeHover);
}

.navbar-nav {
	max-width: 600px;
	width: 600px !important;
	justify-content: space-between;
}

.btn-login {
	background: linear-gradient(180deg, rgba(183,5,0,1) 30%, rgba(120,4,1,1) 100%);
	font-family:'GothamCondensed-Medium';
	font-size: 13pt;
	text-transform: uppercase;
	padding: 13px 10px;
	color: #fff;
}

.btn-login:hover {
	background: linear-gradient(180deg, rgba(247,209,84,1) 30%, rgba(189,81,32,1) 100%);
	color: #fff;
}

#dropdownUser1 {
	color: #fff;
}

@media (min-width: 992px) {
	#dropdownUser1 {
		color: var(--themeTextColor);
	}
}

.main-logo {
	position: relative;
	top: 7px;
	animation: bounce-in-top 1.5s ease-in-out;  
}

.bg-navbar {
	background: url('../img/header-bg.png') repeat-x;
	padding: 20px 0;
}

/* Cap the brand logo at all viewports (incl. >=1400px) so the raw 689x362 PNG
   doesn't blow out the fixed navbar height. Below 1400px the <img> is hidden
   (opacity:0) and a sized background logo is shown instead. */
.navbar-brand img {
	height: 78px;
	width: auto;
	max-width: 245px;
}

@media (max-width: 1399.98px) {
	.navbar-brand {
		background: url('../img/WOE_Server_logo.png') center no-repeat;
		background-size: 75%;
		max-width: 245px;
		height: 78px;
		margin-left: -20px;
	}	
	.navbar-brand img {
		opacity: 0;
		max-width: 245px;
	}
}

@media (max-width: 1324.98px) {
	.navbar-nav {
		max-width: 700px;
	}
}

@media (max-width: 1299.98px) {
	.navbar-nav {
		max-width: 660px;
	}
}

@media (max-width: 1244.98px) {
	.navbar-nav {
		max-width: 630px;
	}
}

@media (max-width: 991.98px) {
	.main-section {
		background-size: cover;
	}
	.navbar-brand {
		background-size: 60%;
		max-width: 245px;
		height: 78px;
		display: block;
		left: 5px;
	}

	.navbar-brand img {
		opacity: 0;
		max-width: 245px;
	}
}

.main-logo:hover {
	filter: brightness(1);
	cursor: pointer;
}

#serverstatus {
	color: var(--themeTextColor);
}

#serverstatus table {
	border-spacing: 0 5px;
	border-collapse: separate;
}

#serverstatus td {
	font-family: 'Inter-Medium';
	font-size: 9pt;
	padding: 0 15px;
	color: var(--themeTextColor);
}

.value-bg{
	background: #141414;
	width: 110px;
	padding: 2px 15px !important;
	text-align: start;
}

.server-time {
	width: 155px;
	margin: 0 auto;
}

.theme-button {
	padding: 5px;
	background: rgb(68,87,41);
	background: linear-gradient(360deg, rgba(68,87,41,1) 0%, rgba(68,87,41,1) 0%, rgba(78,117,32,1) 100%);
	display: block;
}

.download-btn {
	font-family: 'Inter-SemiBold';
	font-size: 10pt;
	color: var(--themeTextSubColor);
	text-align: center;
	text-decoration: none;
}

.download-btn:hover {
	filter:brightness(1.2);
	color: var(--themeTextSubColor);
	text-align: center;
	text-decoration: none;
}

.time {
	font-family:'Inter-Regular';
	color: #fff;
	font-size: 10.5pt;
}

.online {
	color: #55a90b !important;
}

.offline {
	color: #c80d1a !important;
}

/* --------------------------------
 Header Main
-------------------------------- */
.column-title {
	font-family: 'SportyPro-Regular';
	font-weight:lighter;
	font-size: 11pt;
	color: #f2f2f2;
}

.left-col, .featured-events{
	width: 100%;
	max-width: 1020px;
}

.right-col, .accountpanel {
	max-width: 330px;
	width: 100%;
}

@media (max-width: 575.98px){
	.left-col, .right-col, .accountpanel{
		max-width: 100%;
	}
}

@media (max-width: 767.98px){
	.left-col, .right-col, .accountpanel{
		max-width: 540px;
	}
}

@media (max-width: 991.98px){
	.left-col, .right-col, .accountpanel{
		max-width: 720px;
	}
}

@media (max-width: 1199.98px){
	.left-col, .right-col, .accountpanel{
		max-width: 1020px;
		/* margin-top: 0; */
	}
}

@media (max-width: 1399.98px){
	.right-col, .accountpanel{
		max-width: 1020px;
		margin-top: -70px;
	}
}

.eventbanners {
	max-width: 1020px;
}

.loginpanel {
	background: #181818;
	border: 1px solid #4a4a4a;
	border-radius: 8px;
	font-family: 'Inter-Regular';
	padding: 15px 30px;
	min-height: 270px;
}

.loginpanel img {
	margin-top: -150px;
}

.login_row_main {
	text-align: start;
}

.login_row_main .panel-label {
	font-family: 'TitilliumWebReg';
	color: #fff;
	font-size: 13pt;
	padding: 5px 10px;
}

.login_row {
	max-width: 100%;
}

.input-label {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: var(--themeTextColor);
	text-transform: uppercase;
	padding-bottom: 5px;
}

.textClass {
	font-family: 'Inter-Medium' !important;
	font-size: 11pt !important;
	background: #33353b;
	border: none !important;
	border-radius: 5px;
	padding: 5px 15px !important;	
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
	color: var(--themeTextColor);
}

.rememberMe {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: var(--themeTextColor);
}

.login_row table{
	width: 100%;
	font-size: 9pt;
}

.loginBtn {
	font-family: 'Inter-Bold';
	width: 100%;
	height: 45px;
	border: 0;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 15pt;
	color: var(--themeTextSubColor);
	cursor: pointer;
}

.loginBtn:hover {
	filter: brightness(1.2);
}

.accountAction {
	font-size: 9pt;
	color: var(--themeTextColor);
	text-align: center;	
	width: 100%;
}

.accountAction a{
	color: var(--themeTextColor)
}

.accountAction a:hover {
	color: var(--themeHover);
}

.logged {
	margin-top: 20px;
	font-size: 13pt;
}


/* --------------------------------
 Owl Carousel Customization
-------------------------------- */
.owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #2caae1;
}

.owl-theme .owl-dots {
	margin: 0 auto!important;
}

.owl-carousel .item {
	text-align: center;
}
.owl-carousel .nav-btn{
	height: 25px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: 43% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
	pointer-events: none;
	opacity: 0.2;
}

.owl-carousel .prev-slide{
	background: url('../img/nav-icon.png') no-repeat scroll 0 0;
	height: 30px;
	width: 32px;
	left: -15px;
}
.owl-carousel .next-slide{
	background: url('../img/nav-icon.png') no-repeat scroll -33px 0;
	height: 30px;
	width: 32px;
	right: -15px;
}
.owl-carousel .prev-slide:hover{
	background-position: 0px -34px;
}
.owl-carousel .next-slide:hover{
	background-position: -33px -34px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 16px;
	height: 9px;
	margin: 5px 2px;
	background: #536479;
	border-radius: 3px
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #97a3b2;
}

/* --------------------------------
 Main Content Column
-------------------------------- */
.maincontent {
	background: #1e1e1e;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	padding: 30px 45px;
	margin-top: 18px !important;
}

@media (max-width: 767.98px){
	.maincontent {
		padding: 30px 10px;
	}
}

.maincontent h5 {
	font-family: 'Inter-Bold';
	font-size: 20pt;
	color: #f2f2f2;
	margin-bottom: 30px;
}

.youtube-video img {
	width: 100%;
}

.server-desc {
	font-family: 'Inter-Regular';
	font-size: 11pt;
	color: var(--themeTextColor);
	text-align: justify;
}

.btn-readmore {
	font-family: 'Inter-Medium';
	font-size: 8pt;
	color: #f2f2f2 !important;
	padding: 5px 20px;
}

.btn-readmore:hover {
	color: #000 !important;
}

hr {
	background-color: darkgray !important;	
}

/* --------------------------------
 Hall of Fame Column
-------------------------------- */

.hall-of-fame {
	background: #1e1e1e;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	padding: 30px 45px;
	margin: 30px 0 70px 0;
}

@media (max-width: 767.98px){
	.hall-of-fame {
		padding: 30px 10px;
	}
}

.fame-render {
	height: 400px;
	width: 550px;
	object-fit: none;
	object-position: 0 0;
	position: relative;
	left: -225px;
}

.fame-char {
	width: 265px;
	height: 420px;
	object-fit: none;
	object-position: -17px 0;
	margin-top: 20px;
}

.pvp-ladder {
	min-width: 260px;
	margin-top: 20px;
	height: fit-content;
}

.text-pvp {
	font-family: 'SportyPro-Regular';
	font-size: 9pt;
	color: #e38445;
	margin: 0 !important;
}

.text-rank {
	font-family: 'SportyPro-Regular';
	font-size: 8pt;
	color: #e38445;
}

.pvp-name {
	font-family: 'Gotham-Book';
	font-size: 8pt;
}

.pvp-score {
	font-family: 'Inter-Regular';
	font-size: 8pt;
	color: #8c8c8c;
}


.pvp-ranking {
	font-family: 'Inter-Bold';
	font-size: 9pt;
	width: 100%;
}

.pvp-ranking td {
	border-bottom: 1px solid #b7b7b7;
	line-height: 12pt;
}

.pvp-ranking tr:last-child td{
	border: 0;
}

ul#pills-tab {
	font-family:'Inter-Regular';
	font-size: 7pt;
}

ul#pills-tab li .nav-link{
	padding: 5px 0px 5px 20px;
}

.pvp-ladder .nav-pills .nav-link {
	color: #626262;
}

.pvp-ladder .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background: transparent;
	color: #e38445;
}

.fame-title {
	font-family: 'Inter-Bold' !important;
	font-size: 18pt !important;
	color: #f2f2f2;
}

.guild-container {
	background: url(../img/emp.png) no-repeat top center;
	background-size: cover;
}

.gotm img.agitlord_emblem {
	margin-left: 47px;
	margin-top: 55px;
}

.agitlord_heading {
	margin-top: -35px;
}

.btn-castleowners {
	font-family: 'SportyPro-Bold';
	font-size: 9pt;
	color: #fff;
	background-color: var(--themeColor);
	padding: 4px 12px;
}

.btn-castleowners:hover {
	color: #fff;
	opacity: 0.8;
}

.agitlord-title {
	font-family:'Inter-Regular';
	font-size: 8.5pt;
	color: #e9e9e9;
}

.agitlord-guildname, .agitlord-guildmaster {
	font-family:'Inter-Bold';
	font-size: 10pt;
	color: #fff;
}

.empires {
	margin: 20px 0 10px 5px;
}

.guild-flags {
	margin: 0;
	overflow: hidden;
}

.gotm {
	background: url(../img/gotm.png) no-repeat;
	/*width: 391px;
	height: 175px; */
}

.flag {
	background: url(../img/flag.png) no-repeat;
	height: 70px;
	padding: 20px 0 0 18px;
	margin-bottom: 20px;
	float: left;
}

.flag-container {
	width: 60px;
}

.text-tourna {
	font-family: 'SportyPro-Regular';
	font-size: 9pt;
	width: 245px;
}

.tourna_1v1, .tourna_7v7 {
	border: 2px solid var(--themeTextSubColor);
	max-width: 300px;
}

.tourna-team {
	font-family: 'Inter-Bold';
	font-size: 10pt;
}

.tourna1v1-entry {
	padding: 0 20px;
	width: 300px;
	max-width: 300px;
}

.border-1v1 {
	border-color: var(--themeTextSubColor) !important;
}

.tourna1v1_thumbnail {
	background: #b5b5b5;
	border-radius: 50%;
	height: 46px;
	width: 46px;
	object-fit: none;
	object-position: center -50px;
}

.tourna1v1-title {
	font-family: 'Gotham-Bold';
	font-size: 9pt;
}

.tourna1v1-winner {
	font-family: 'Gotham-Book';
	font-size: 9pt;
}

.team-photo {
	max-width: 235px;
}


/* --------------------------------
 Footer Section
-------------------------------- */

#footer-section {
	background: url(../img/footer-bg.png) top center no-repeat;
	background-size: cover;
	padding-top: 45px;
	padding-bottom: 45px;
}

.footer-links li a {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: #8c8c8c;
	padding: 0 0.5rem;
}

.footer-links li a:hover {
	color: var(--themeHover);
}

.footer-links li {
	border-right: 1px solid #505050;
}

.footer-links li:last-child {
	border: 0;
}

.footer-copyrights {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	line-height: 10pt;
	color: #575757;	
}

.credits {
	max-width: 500px;
}

@media (max-width: 768px) {
	.footer-links li {
		border: 0;
		padding: .5rem;
	}
}

@media (min-width: 768px) {
	.dev-logo {
		margin-left: -20px;
	}
}

.soc-fb{
	font-family: 'SportyPro-Regular';
	font-size: 10.6pt;
	color: #505050;
	padding: 10px 20px;
	border: 2px solid #505050;
	text-decoration: none;
	display: inline-flex;
	text-align: center;
	align-items: center;
}
.soc-fb svg{
	width: 32px;
	height: 32px;
	margin-right: 5px;
}

.soc-fb:hover {
	color: #fff;
	border: 2px solid #f2f2f2;
}

/* --------------------------------
 Other Pages
-------------------------------- */

.btn-apk{
	background: url(../img/dl-apk.png) no-repeat;
	width: 231px;
	height: 49px;
}

.btn-apk:hover {
	background: url(../img/dl-apk-hover.png) no-repeat;
}

.downloads-page p {
	font-family:'Inter-Medium';
	font-size: 11pt;
}

.downloads-container {
	border: 2px solid #4f7520;
	border-radius: 15px;
}

.downloads-container p {
	font-family: 'Inter-Medium';
	font-size: 9pt;
}

.downloads-container a:hover {
	opacity: 0.8;
}

.heading-container {
	background: linear-gradient(180deg, rgba(106,143,56,1) 30%, rgba(79,117,32,1) 100%);
	font-family: 'Inter-Bold';
	font-size: 12pt !important;
	padding: 5px 20px;
	border-radius: 12px 12px 0 0;
}

.vote-render {
	text-align: right;
}

.vote-render img {
	position: relative;
	right: -80px;
	top: 235px;
}

.vote-page th, .vote-page td, .vote-stats td {
	font-family: 'Inter-Medium';
	font-size: 9pt !important;
	padding: 10px 20px;
	border: 3px solid #fff;
	text-align: center;
}

.bg-themeGradient a {
	color: #fff !important;
	text-decoration: none;
}

.table-label {
	padding: 5px 5px !important;
}

.table-value {
	padding: 5px 20px !important;
}

table.vote-page {
	max-width: 190px !important;
}

.vote-page th {
	font-family: 'SportyPro-Bold';
	font-size: 11pt !important;
}

.bg-votelabel {
	background: #2b2b2b !important;
}

.bg-black {
	background: #1d1d1d !important;
}

.vote-warning p{
	font-size: 8pt !important;
	font-weight: bold;
}

/* --------------------------------
 Flux Pages Design Styles
-------------------------------- */

#submenu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

#submenu a{ 
	color: var(--themeColor);
}

#submenu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}


.admin-menu {
	color: var(--themeTextColor);
	background: rgba(0, 0, 0, 0.35);
	font-family: 'Inter-Medium';
	font-size: 9pt;
	padding: 12px 14px;
	margin: 12px auto;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.admin-menu-label {
	color: var(--themeColorSub);
	font-family: 'GothamCondensed-Bold';
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-right: 4px;
}

.admin-menu a{
	color: var(--themeTextSubColor);
	background: #1e1e1e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	line-height: 1;
	white-space: nowrap;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.admin-menu a:hover {
	text-decoration: none;
	color: #fff;
	background: var(--themeColor);
	border-color: var(--themeColor);
}



.admin-menu a:after {
	content: '';
}



.toggler a {
	color: var(--themeColor);
}



.pages .page-num {
	color: var(--themeColor);
}



.pages .current-page {
	color: #cc9808 !important;
	font-weight: bold;
}



.pages .page-prev, .pages .page-next {
	color: var(--themeTextColor);
}

.horizontal-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0; 
}


.vertical-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0;
}   

.global-container {
	font-family: 'Inter-Regular';
	color: var(--themeTextColor);
	font-size: 9pt;
	padding: 45px;
	background: url(../img/pages-bg.jpg) no-repeat center -100px #1a1917;
	background-size: cover;
	border-radius: 7px;
	min-height: calc(100vh - (127px + 222px));
}

@media (max-width: 575.98px){
	.global-container {
		padding: 80px 15px;
	}
}

@media (min-width: 576px){
	.global-container {
		padding: 80px calc((100vw - 540px) /2);
	}
}

@media (min-width: 768px){
	.global-container {
		padding: 80px calc((100vw - 720px) /2);
	}
}

@media (min-width: 992px){
	.global-container {
		padding: 80px calc((100vw - 960px) /2);
	}
}

@media (min-width: 1200px){
	.global-container {
		padding: 80px calc((100vw - 980px) /2);
	}
}

@media (min-width: 1400px){
	.global-container {
		padding: 80px calc((100vw - 980px) /2);
	}
}

.global-container table {
	font-family: 'Inter-Regular';
	color: var(--themeTextColor);
	font-size: 9pt;
}

.global-container h2,h3 {
	font-size: 20pt;
	text-decoration-color: var(--themeTextColor);
	width: unset;
	margin: 20px 0px;
	padding: 5px 0;
	font-family: 'Inter-Bold';
	color: var(--themeTextColor);
}

.global-container p {
	font-family: 'Inter-Medium';
	font-size: 10pt;
}

/* ------------------------------------------------------------------
   Inner content pages (donate, info, staff, bank, gcash, paypal, g2bank)
   render inside .content-wrap, which sits OUTSIDE .global-container, so the
   themed Inter font and readable text color never reached them — they fell
   back to the flux.css default (Verdana / #212529 dark text on a dark bg).
   Mirror the .global-container treatment here so inner-page typography and
   contrast match the rest of the site.
------------------------------------------------------------------ */
.content-wrap {
	font-family: 'Inter-Regular';
	color: var(--themeTextColor);
}

.content-wrap h1,
.content-wrap h2,
.content-wrap h3,
.content-wrap h4 {
	font-family: 'Inter-Bold';
	color: var(--themeTextColor);
}

.content-wrap p {
	font-family: 'Inter-Medium';
}

.content-wrap a {
	color: var(--themeColor);
}

/* bg-secondary badges are mid-gray (#6c757d); keep their label text white so it
   stays crisp rather than inheriting the lighter #c2c2c2 body color. */
.content-wrap .badge {
	color: #fff;
}

.customborder-bottom {
	padding-bottom: 15px;
	border-bottom: 2px solid var(--themeTextColor);
}

.fs-medium {
	font-size: 90% !important;
}

.fs-small {
	font-size: 75% !important;
}

.security-code {
	background-color: #b7b7b7;
	height: auto;
	border: #8e8e8e;
}

.reg-label {
	font-family: 'Inter-Bold' !important;
	font-size: 9pt !important;
	color: var(--themeTextColor) !important;
}

.birthdate select {
	/* background-color: #212529!important; */
	/* color: #fff!important; */
	padding: 0.4rem 1rem!important;
	-moz-box-shadow: inset 0 0 7px #141414;
	/* -webkit-box-shadow: inset 0 0 7px #141414; */
	/* box-shadow: inset 0 0 7px #141414; */
}

h3 {
	font-size: 30pt;
}

.global-container a {
	color: var(--themeColor);
}


.global-container:empty {
	display: none;
}



.horizontal-table td {
	padding: 5px 10px;
	background: transparent;
}

	

.horizontal-table th, .horizontal-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: transparent;
}



.vertical-table td {
	padding: 5px 10px;
	background: transparent;
}

.woe-table {
	background: transparent !important;
}

.woe-table .time {
	color: var(--themeColor);
}

.important {
	color: var(--themeColor);
}
	
.request {
	background: transparent !important;
}

.vertical-table th, .vertical-table td {

	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}


.vertical-table th {
	padding: 5px 10px;
	background-color: transparent;
}


.generic-form {
	border: 1px solid var(--themeColor);
	background: none;
}


.generic-form-table td p {
	color: var(--themeColor);
}

.search-form label, .search-form2 label {
	color: var(--themeColor);
}


.sortable {
	color: #38a6e8;
	text-decoration: underline;
}


.sortable:hover {
	color: #fff;
}


#pagemenu {
	color: var(--themeTextColor);
}


#pagemenu a{
	color: var(--themeColor);
}

.character-stats .stat-name {
	color: var(--themeColor);
}

.character-stats .stat-value {
	color: var(--themeTextColor);
}


.generic-form-table th label , .generic-form-table td div, .horizontal-table td, .horizontal-table th, .vertical-table th, .vertical-table td{
	color: var(--themeTextColor)
}

/* --------------------------------
 Dropdown Restyle
-------------------------------- */
.dropdown-menu {
	background-color: #1e1e1e;
}

.dropdown-menu li a{
	text-decoration: none;
}

/* --------------------------------
 Extra Restyle
-------------------------------- */
.table>:not(caption)>*>* {
	border-bottom-width: 0;
}

.alert-danger {
	color: #ea868f;
	background-color: #2c0b0e;
	border-color: #842029;
}

.alert-success {
	color: #75b798;
	background-color: #051b11;
	border-color: #0f5132;
}

.alert-light {
	color: #f8f9fa;
	background-color: #343a40;
	border-color: #495057;
}

/* --------------------------------
 Right Sidebar Nav
-------------------------------- */
.sidebar-links ul{
	margin: 0;
	padding: 0;
}

.sidebar-links ul li:nth-of-type(1) a {
	background: url(../img/btn-register.png@v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}
  
.sidebar-links ul li:nth-of-type(2) a {
	background: url(../img/btn-download.png@v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}
  
.sidebar-links ul li:nth-of-type(3) a {
	background: url(../img/btn-streamer.png@v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}

.sidebar-links ul li:nth-of-type(1) a:hover {
	background: url(../img/btn-register-hover.png) no-repeat;
	background-size: contain;	
}

.sidebar-links ul li:nth-of-type(2) a:hover {
	background: url(../img/btn-download-hover.png) no-repeat;	
	background-size: contain;
} 

.sidebar-links ul li:nth-of-type(3) a:hover {
	background: url(../img/btn-streamer-hover.png) no-repeat;	
	background-size: contain;
} 

/* --------------------------------
 Quick Link Sidebar Nav
-------------------------------- */
.quick-links ul {
	padding: 20px 15px;
	background: #181818;
	border-radius: 7px;
	border: 1px solid #4a4a4a;
}

.quick-links ul hr {
	margin: 0;
}

.quick-links ul li {
	text-decoration: none;
	list-style: none;
	border-bottom: 1px solid;
}

.quick-links ul li:last-of-type {
	border: none;
}

.quick-links ul li a{
	font-family: 'Inter-Medium';
	font-size: 15pt;
	color: #f2f2f2;
	padding: 10px 0px 10px 100px;
	text-decoration: none;
	display: block;
	height: 62px;
}

.quick-links ul li:nth-of-type(1) a {
	background: url(../img/review.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(2) a {
	background: url(../img/newbie.png) no-repeat;
	background-position: 33px 10px;
}

.quick-links ul li:nth-of-type(3) a {
	background: url(../img/quest.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(4) a {
	background: url(../img/vote.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(5) a {
	background: url(../img/staff.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(6) a {
	background: url(../img/woe.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(1) a:hover {
	background: url(../img/review_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(2) a:hover {
	background: url(../img/newbie_h.png) no-repeat 33px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(3) a:hover {
	background: url(../img/quest_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(4) a:hover {
	background: url(../img/vote_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(5) a:hover {
	background: url(../img/staff_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(6) a:hover {
	background: url(../img/woe_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

/* ============================================================================
   WOE SERVER — "Crimson & Steel" rebrand (2026-06-15)
   Bolder recolor + component redesign. Appended last so it wins the cascade
   over the original osRO green/gold rules above without editing each one.
   Semantic colors (online-green, offline-red, Bootstrap alerts, Facebook blue)
   are deliberately left untouched.
============================================================================ */

/* ---- base canvas: drop the green-tinted bg image for a crimson glow ---- */
body {
	background: var(--base);
	background-image:
		radial-gradient(1200px 620px at 50% -8%, rgba(224,49,49,.10), transparent 60%),
		radial-gradient(900px 520px at 100% 0%, rgba(206,212,218,.04), transparent 55%);
	background-attachment: fixed;
}

/* ---- brand gradients / accents that were hardcoded green or gold ---- */
.bg-themeGradient {
	background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-deep) 100%);
}
.heading-container {
	background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-deep) 100%);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}
.downloads-container { border: 2px solid var(--crimson); }
.text-pvp, .text-rank,
.pvp-ladder .nav-pills .nav-link.active,
.nav-pills .show > .nav-link { color: var(--ember); }
.pages .current-page { color: var(--ember) !important; }
.sortable { color: var(--ember); }
.sortable:hover { color: #fff; }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--crimson); }

/* ---- surfaces: obsidian/slate cards with hairline borders + depth ---- */
.maincontent,
.hall-of-fame {
	background: linear-gradient(180deg, var(--surface) 0%, #15181f 100%);
	border: 1px solid var(--line);
	box-shadow: 0 18px 40px -24px rgba(0,0,0,.85);
}
.loginpanel,
.quick-links ul { background: var(--surface); border: 1px solid var(--line); }
.dropdown-menu { background-color: var(--surface); border: 1px solid var(--line); }
.admin-menu a { background: var(--surface-2); }
.value-bg { background: #0c0e12; }
.global-container {
	background: radial-gradient(900px 520px at 50% -10%, rgba(224,49,49,.06), transparent 60%), var(--base);
}

/* ---- section headers: crimson accent bar ---- */
.maincontent h5,
.fame-title { position: relative; padding-left: 16px; }
.maincontent h5::before,
.fame-title::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 5px; height: 1em; border-radius: 3px;
	background: linear-gradient(180deg, var(--crimson), var(--ember));
	box-shadow: 0 0 10px var(--glow);
}
.column-title { border-left: 3px solid var(--crimson); padding-left: 10px; letter-spacing: .5px; }

/* ---- buttons: crimson, rounded, glow on hover ---- */
.theme-button {
	background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-deep) 100%);
	border-radius: 8px;
	box-shadow: 0 6px 18px -8px var(--glow);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.theme-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px var(--glow);
	filter: brightness(1.08);
}
.btn-castleowners {
	background-color: var(--crimson);
	border-radius: 6px;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-castleowners:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -8px var(--glow);
	opacity: 1; filter: brightness(1.08);
}
.btn-readmore {
	border-color: var(--crimson) !important;
	border-radius: 6px;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-readmore:hover {
	background: var(--crimson) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px -8px var(--glow);
}
.btn-login:hover {
	background: linear-gradient(180deg, var(--crimson) 30%, var(--crimson-deep) 100%);
	color: #fff;
}

/* ---- nav: crimson animated underline on hover (::before avoids the
        dropdown caret, which Bootstrap draws with ::after) ---- */
.navbar-dark .navbar-nav .nav-link { position: relative; transition: color .2s ease; }
.navbar-dark .navbar-nav .nav-link::before {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px;
	background: linear-gradient(90deg, var(--crimson), var(--ember));
	border-radius: 2px; transform: scaleX(0); transform-origin: center;
	transition: transform .25s ease;
}
.navbar-dark .navbar-nav .nav-link:hover::before { transform: scaleX(1); }
