/**
* Theme: Gantz FluxCP Premade4 for Hercules and rAthena
* Developer: https://gantzservices.com
* ROMISC Gantz Services
* RaYShiN#3646
*/


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

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

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

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

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

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

@font-face {
  font-family: 'TrajanPro-3';
  src: url('../fonts/trajan-pro-3.otf');
  font-weight: normal;
  font-style: normal;
}

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


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --themeTextColor: #2e2e2e;
  --themeColor: #3f7ff3;
  --themeHover: #3f7ff3;
}

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

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

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--themeColor);
  text-decoration: none;
}

a:hover {
  color: var(--themeHover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #2b2c2f;
	visibility: hidden;
}
  
.preloader:before {
	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;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 40px;
  z-index: 996;
  background: grey;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Server Status
--------------------------------------------------------------*/

.server-status {
  font-family: 'Lucida Sans Console',sans-serif;
	font-size: 14px;
	color: #bababa;
}

.status-value {
  color: #0dcaf0!important;
	background: #1a1d20;
	padding: 3px 10px;
	border-radius: 5px;
	border: 1px solid #343a40;
  margin-right: 10px;
}

.btn-sign-in{
  background: #ff6600;
  border-radius: 3px;
  padding: 0px 10px;
  color: #fff;
  text-decoration: none;
}

.btn-sign-in:hover {
  background: #fb7b26;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.3);
  top: 38px;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.7);
  top: 0px;
  padding: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

.magic-circle {
  position: absolute;
  top: 130px;
	background: url('../img/magic-circle-arcane.png') no-repeat;
  width: 70vw;
	height: 70vw;
	margin-left: 15vw;
	background-position: top center;
	background-size: 100%;
  opacity: 0.6;
	-webkit-animation: rotate 120s linear infinite;
	animation: rotate 120s linear infinite;
  z-index: 1;
}

@media (max-width: 576px) {
  .magic-circle {
    width: 100vw;
    height: 100vw;
    margin-left: 0;
    -webkit-animation: none;
    animation: none;
  }   
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  font-family: 'Gotham-Book';
  font-size: 11pt;
  font-weight: 500;
  color: #8392b3;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1)
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--themeColor);
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: var(--themeColor);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  min-width: 100%;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.3);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul a {
  padding: 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #fff;
}

.navbar .dropdown ul li a:hover {
	font-weight: 400;
  display: block;
  background: rgba(255,255,255,0.2);
	color: #fff;
	padding-left: 25px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
	top: 30px;
	right: 10px;
}

.logo-mobile {
  background: #000;
  border-bottom: 1px solid #25416a;
	padding: 10px !important;
}

.logo-mobile:hover {
  background: #000 !important;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0;
  padding: 0;
  background-color: transparent;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a:hover {
  color: #3775fb;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.dropdown-item:focus, .dropdown-item:hover {
	color: #fff;
	background-color: var(--themeHover);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh; /*100vh 1242px*/
  background: url('../img/main-bg.jpg') top center no-repeat;
  background-size: cover;
}

#hero .main-char-bg {
  width: 100%;
  height: 100vh;
  background: url('../img/main-bg-char.png') top center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 8;
}

#hero .container {
  padding-top: 72px;
}

#hero .slogan {
  margin-top: 20vh;
}

#hero .download a:hover, #hero .featurevideo a:hover  {
  opacity: 0.85;
}

@media (max-width: 991px) {
  #hero, #hero .main-char-bg {
    height: 100vh;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#main {
  position: relative;
  z-index: 9;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  margin: 0 auto !important;
  padding-bottom: 80px;
}

.section-title .news-title {
  background: url('../img/news-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

.section-title .hof-title {
  background: url('../img/hall-famers-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

.section-title .event-title {
  background: url('../img/event-title.png') no-repeat center;
  width: 100%;
  height: 114px;
  display: block;
}

@media (max-width: 575px) {
  .section-title .news-title {
    background: url('../img/news-title-mobile.png') no-repeat center;
    background-size: contain;
  }

  .section-title .hof-title {
    background: url('../img/hall-famers-title-mobile.png') no-repeat center;
    background-size: contain;
  }

  .section-title .event-title {
    background: url('../img/event-title-mobile.png') no-repeat center;
    background-size: contain;
  }
}

@media (max-width: 425px) {
  .section-title {
    padding-bottom: 50px;
  }
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--themeColor);
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--themeHover);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/* --------------------------------
 News & Updates Section
-------------------------------- */
.newsupdates {
  background: #fff;
  background-size: cover;
}

.newsupdates .banners-container {
  background: url('../img/banners/banner-bg.png') no-repeat;
	max-width: 793px;
	max-height: 407px;
	background-size: contain;
	padding-bottom: 20px;
  padding-left: 85px;
}

.newsupdates .banners {
  max-width: 694px;
	max-height: 396px;
  margin-left: 10px;
  background: #faf6f7;
  border: 1px solid #c5c5c5;
}

@media (max-width: 1199px) {
  .newsupdates .banners {
    margin-left: 0px;
  }

  .newsupdates .banners-container{
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .newsupdates .banners {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .newsupdates .banners {
    margin-left: 0px;
  }
}

@media (max-width: 575px) {
  .newsupdates .banners {
    margin-left: 5px;
  }
}

@media (max-width: 525px) {
  .newsupdates .banners-container{
    padding-left: 0px;
    padding-bottom: 0px;
    background: none;
  }
}

.news-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #000;
}

/* owl nav */
.owl-carousel .owl-nav{
  overflow: hidden;
  height: 0px;
  margin-top: 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;
  /* background: rgba(0,0,0,0.5);
	width: 100%; */
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px;
}

.owl-carousel .item {
  text-align: center;
}
.owl-carousel .nav-btn{
  height: 25px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 48% !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: 25px;
  left: 7px;
}
.owl-carousel .next-slide{
  background: url('../img/nav-icon.png') no-repeat scroll -30px 0;
  height: 25px;
  right: 7px;
}
.owl-carousel .prev-slide:hover{
  background-position: 0px -30px;
}
.owl-carousel .next-slide:hover{
  background-position: -30px -30px;
}

.owl-carousel .owl-item{
  transition: .4s ease all;
  transform: scale(1);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: #fff;
	background-color: #000;
}

.nav-pills .nav-link {
  color: #000;
}

.news {
  font-family: 'Montserrat';
}

.news .news-content {
  font-family: 'Montserrat';
	font-size: 11pt;
}

.news-content td.news-category {
  font-size: 10pt;
}

.news-content td.news-category.news {
	color: #42bad5;
}

.news-content td.news-category.events {
	color: #fd511e;
}

.news-content td.news-category.updates {
	color: #37d68d;
}

.news-content td.title a {
  color: #000;
}

.news-content td.title a:hover {
  color: #40abef;
}

.news-content tr:hover {
	left: 10px;
	position: relative;
  transition: 0.3s ease-in-out;
}

.news-content td.date span {
  color: #bbb7b7;
}

/*--------------------------------------------------------------
# famers Server Stats Desc
--------------------------------------------------------------*/
.famers {
  background: url("../img/hall-of-famers-bg.jpg") top center;
  background-size: cover;
  padding: 80px 0;
}

.famers h3 {
  font-family:sans-serif;
  color: #fff;
  font-size: 40pt;
  font-weight: 700;
}

.famers p {
  color: #fff;
}

.event-title{
	text-transform: uppercase;
	font-size: 16pt;
  font-family: 'TrajanPro-Regular';
}

.countdown-bg {
  background: url('../img/countdown-bg.png') no-repeat center;
  margin-bottom: 10px;
  filter: invert(1);
}

.countdown-bg span{
	font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #fff;
  text-align: center;
  text-transform: uppercase;
}

/* ------------------------
	GvG Champ and Castle Owners
--------------------------*/
.agit-castle {
  max-width: 425px;
  min-height: 200px;
  width: 100%;
}

.gvg-champ {
  background: url('../img/gvg-champ-flag.png') no-repeat top center;
}

.gvg-champ img {
  margin-top: 50px;
}

.flag {
  background: url('../img/flag.png') no-repeat center;
  height: 67px;
}

.flag img {
  margin-top: 20px;
}

/* ------------------------
	PVP Ladder
--------------------------*/

.pvp-rankings {
	margin: 0px 30px;
	max-width: 425px;
	width: 100%;
}

.pvp-ladder th {
	font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #ebebeb;
}

.pvp-ladder {
	width: 100%;
	overflow: hidden;
}

.pvp-ladder table {
	max-width: 420px;
	width: 100%;
}

.pvp-ladder td {
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 10pt;
}

.pvp-ladder tr {
	line-height: 24px;
}

.pvp-ladder tr:nth-child(2) {
	background: url(../img/r1.png) no-repeat;
  background-size:contain;
}


.pvp-ladder tr:nth-child(3) {
	background: url(../img/r2.png) no-repeat;
  background-size:contain;
}

.pvp-ladder tr:nth-child(4) {
	background: url(../img/r3.png) no-repeat;
  background-size:contain;
}

.pvp-ladder tr:nth-child(2) td, .pvp-ladder tr:nth-child(3) td, .pvp-ladder tr:nth-child(4) td  {
	color: #fff !important;	
}


/* ------------------------
	In-Game Events
--------------------------*/
.event-content {
  margin: 0 auto;
}

#eventtimers {
  background-color: #fff;
  margin: 0 auto;
}

.event-item {
	margin: 15px 0;
}

.event-item .event-container {
	background: url('../img/events-bg.png') left center no-repeat, #f0f0f0;
  transition: background-color ease-in-out 0.3s;
	padding: 20px;
  border: 1px solid #bfbfc0;
}

#eventtimers .event-item .event-container:hover {
  background-color: #ebe9e9;
  color: #287af6;
}

#eventtimers .event-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#eventtimers .event-item h4 {
	font-family:'Gotham-Medium';
  font-size: 20pt;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#eventtimers .event-item h4 span {
  font-style: italic;
  color: #707070;
  font-weight: normal;
  font-size: 16px;
}

#eventtimers .event-item p {
  color: #fff;
  margin-bottom: 0;
}



/* ------------------------
	Action
--------------------------*/

.action-now{
	position:relative;
	text-align:center;
	padding:100px 0px 100px;
	background-size:cover;
  background: #17253f;
}

.action-now .pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)), url('../img/bg-create.jpg') center fixed;
	background-repeat:no-repeat;
}

.action-now h2{
	position:relative;
	color:#ffffff;
	font-weight:700;
	line-height:1.4em;
}

.action-now h2 span{
	font-weight:400;
}

.action-now .buttons-box{
	position:relative;
	text-align:center;
	margin-top:25px;
}

.action-now .buttons-box .theme-btn{
	margin:0px 10px;
	cursor:pointer;
}

.action-now .buttons-box .theme-btn:hover{
  background: transparent !important;
  color: #fff !important;
}

/* ------------------------
	Server Quick Info
--------------------------*/
.subheading {
  font-family: 'TrajanPro-Regular';
  font-size: 28pt;
  margin-top: -30pt;
}
.subheading-highlight {
  color: #3f7ff3
}

.heading-desc {
  font-family: 'Gotham-Book';
  font-size: 11pt;
  text-transform: uppercase;
}

.server-info, .server-info tr,  .server-info td{
  border: 1px solid #d6d6d6;
  font-family: 'Montserrat';
  font-size: 11pt;
  padding: 25px;
  color: #696464;
}

.server-info tr th {
  background: #f6f6f6;
  border: 1px solid #d6d6d6;
  font-size: 13pt;
  text-align: center;
  padding: 25px;
}

.info-people {
  margin-top: -100px;
  margin-left: -75px;
}

/* @media (max-width: 575.98px) {
  .server-info{
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
} */

/* ------------------------
	Footer
--------------------------*/
.footer-social {
  background: #2c2c2c;
  padding: 20px 0;
}

.btn-social {
	height: 3rem;
	width: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 100%;
  border: 1px solid #464646;
}

.footer {
  background: #1a1a1a;
  padding: 60px 0;
}

.footer .nav-link {
  font-family: 'Gotham-Book';
	text-transform: uppercase;
	font-size: 10pt;
	color: #b7b7b7;
	border-right: 1px solid #817f7f;
	padding: 0 1rem;
	line-height: 9pt;
	margin-bottom: 15px;
}

@media (max-width: 991.98px){	
  .footer .nav-link {
    border: 0;
  }
}

.footer .nav-link:first-child {
	padding: 0 1rem 0 0;
}

.footer .nav-link:last-child {
	border: 0;
}

@media (max-width: 767.98px){	
	.footer .nav-link:first-child {
		padding: 0 1rem;
	}

	.footer .nav-link {
		border: 0;
	}
	
}

.footer .nav-link:hover {
	color: #fff;
}

.footer p {
  font-family: 'Gotham-Book';
	font-size: 10pt;
	color: #757575;
}

.footer p.social-title {
	font-size: 11pt !important;
	color: #a3bfbf !important;
}

.social-links ul {
	list-style: none;
	float: right;
}

.social-links ul li {
	display: inline-block;
	margin: 0 2px;
}




/* --------------------------------
 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: none;
	font-size: 10pt;
}

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

.admin-menu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}

.admin-menu a:after {
	content: ' / ';
	color: var(--themeTextColor);
	text-decoration: none;
}

.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 {
	max-width: 1120px;
	font-family: 'Gotham-Book';
	border-radius: 5px;
	margin: 50px auto;
	color: var(--themeTextColor);
	font-size: 9pt;
	padding: 50px 15px;
  position: relative;
  z-index: 9;
}

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

.global-container p {
	font-family: 'Gotham-Book';
	font-size: 10pt;
}

.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: #fff;
}

	

.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: #fff;
}

	

.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)
}
