@charset "utf-8";

/* CSS Document */

/* ------------------------------------------------------------------
  Name         	: SpikeRO | Flux CP Theme for Ragnarok Online
  Contact us	: https://discord.gg/4wGfrg7Q8d 
  Designer		: S1-Lykos Graphic Designs 
  Author       : ROMISC Gantz Services - [ https://www.romisc.cf ] 
 * --------------------------------------------------------------------- */

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

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

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


body,html {
    height: 100%;
	scroll-behavior: smooth;
}

body {
	background: url('../img/main-bg.jpg') center 16px no-repeat #0d0905;
	overflow-x:hidden;
	font-family: 'bodyfont';
	background-color: #0d0905;
	margin: 0;
	padding: 0;
	border: 0;
}

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

.preloader {
	width: 100%;
	max-width: 585px;
	height: 100%;
	max-height: 335px;
	margin: 25vh auto;
	text-align: center;
	font-size: 10pt;
	animation: heartbeat 1s infinite; 
}

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


.my-auto {
	margin: auto 0 !important;
}

.mx-auto {
	margin: 0 auto !important;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-white {
	color: #fff !important;
}

.text-spike {
	color: #ffc663 !important;
}

.text-value {
	color: #bababb !important;
}

.img-fluid {
	width: 100%;
}

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

.top-header {
	background: url(../img/top-header-bg.png);
	background-repeat: repeat-x;
	width: 100%;
	height:81px;
}

.header-content {
	width: 1400px;
	height: 62px;
	margin: 0 auto;
	padding: 10px 0;
	display: flex;
	flex-wrap: nowrap;
	color: #fff;
}

.header-logo {
	width: 430px;
	padding-left: 100px;
}

.server-status {
	width: 870px;
	display: flex;
	flex-wrap: nowrap;
	font-family: GothamMedium;
	font-size: 10pt;
}

.server-status span {
	padding: 0 5px;
}

.status-divider {
	border-right: 1px solid #026c8c;
}

.server-statistics {
	margin-left: 45px !important;
}

.online-stat {
	background: url(../img/online-stat.png) no-repeat;
	width: 196px;
	height: 64px;
	margin-left: 55px;
	padding: 10px;
}

.online-stat table {
	font-family: GothamMedium;
	width: 180px;
}

.up {
	color: #10c755 !important;
}

.sub-header {
	background: rgb(130 91 16 / 50%);
	background-color: rgba(130,91,16,0.5);
	width: 100%;
	height: 35px;
}

.sub-nav {
	width: 1300px;
	margin: 0 auto;
}

.sub-nav ul {
	list-style: none;
	display: inline-flex;
}

.sub-nav ul li {
	padding: 0 43px;
}

.sub-nav ul li a {
	color: #e3ac14;
	text-transform: uppercase;
	font-family: GothamBook;
	font-size: 8pt;
	letter-spacing: 3px;
}

.sub-nav ul li a:hover {
	color: #bfbfbf;
}

.login-container {
	width: 1200px;
	margin: 80px auto;
}

.login-panel {
	background: url(../img/login-bg.png) no-repeat;
	width: 383px;
	height: 228px;
	padding: 250px 0 30px 50px;
	margin-left: 40px;
}

.login_row {
	max-width: 315px;
}

.textClass {
	background-color: #0b0b0b;
	border-color: #171616 !important;
	border-radius: 5px;
	padding: 10px 15px !important;	
	width: 100%;
	margin-bottom: 10px;
	font-family: 'GothamBook' !important;
	font-size: 9pt !important;
}

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

.loginBtn {
	background: url(../img/login-btn.png) no-repeat;
	width: 347px;
	height: 63px;
	border: 0;
	margin-top: 10px;
	margin-bottom: 10px;
}

.loginBtn:hover {
	background: url(../img/login-btnHover.png) no-repeat;
}

.accountAction {
	font-family: 'GothamMedium';
	font-size: 10pt;
	color: #898989;
	text-align: center;	
	width: 347px;
}

.accountAction a{
	color: #ccae35;
}

.accountAction a:hover {
	color: #fff;
}

/* --------------------------------
 News Section
-------------------------------- */
.news-section {
	margin-top: 135px;
}

.news-container {
	width: 1400px;
	margin: 0 auto;
}

.scroll-arrow {
	width: 100px;
	height: 50px;
	margin: auto;
	text-align: center;
	-webkit-animation: scroll-down 1.5s infinite;
	animation: scroll-down 1.5s infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@keyframes scrolldown {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.news-header {
	font-family: 'GothamCondensedMedium';
	font-size: 38pt;
	color: #e1ae48;
	text-transform: uppercase;
}

.news-rss {
	margin-top: -20px;
}

.news-article {
	float: left;
	width: 265px;
	height: 325px;
	background: #111111;
	margin: 0 7px;
}

.news-contain {
	padding: 20px;
	max-height: 120px;
	overflow: hidden;
}

.news-contain .date {
	font-family: 'GothamBook';
	font-size: 8pt;	
	color: #bfbfbf;		
}

.news-contain .article-type {
	color: #ffc663 !important;
	text-transform: capitalize;
	text-align: right;
	float: right;
	font-family: 'GothamMedium';
	font-size: 8pt;
	font-weight: bolder;
}

.news-contain .read-more {
	color: #bfbfbf !important;
	text-transform: capitalize;
	text-decoration:underline;
	text-align: right;
	float: right;
	font-family: 'GothamBook';
	font-size: 6pt;	
}

.news-contain .author{
	font-family: 'GothamMedium';
	font-size: 8pt;
}

.news-contain .title {
	font-family: 'GothamMedium';
	color: #bfbfbf;
	font-size: 14pt;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-contain .title:hover {
	color: #e1ae48;
}

.news-contain p {
	color: #bfbfbf;
	font-family: 'GothamBook';
	font-size: 9pt;
	max-height: 75px;
	overflow: hidden;
}

.tab-news {
	font-family: 'navbarfont'  !important;
	font-size: 27pt;
	color: #fff;
}

.tabcontents {
	max-height:  325px;
	max-width: 1400px;
	overflow: hidden;
	overflow-y: hidden;
	border: 0;
	margin-top: 5px;
}

.tab-news-header {
	width: 620px;
	padding: 7px 0px;
	margin-top: 5px;
	margin-left: 0px;
	border-bottom: 3px solid #ffb600;
	height: 53px;
}

.tabs {
	width: 300px;
	margin-left: 1100px !important;
	padding-bottom: 10px !important;
}

ul.tabs
{
    margin:0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:0px; /*distance between tabs*/
}
        
ul.tabs li a
{
    font-family: 'GothamBook';
    text-decoration: none;
    position: relative;
    padding: 0px 16px;
    color: #bfbfbf;
    outline:none;
	font-size: 8pt;
}

.tabs li{
	background-color: transparent;
	color: #bfbfbf;
	font-family: Arial;
	font-size: 9px;
	border: 0;
	list-style: none;
	display: inline;
}


.tabs li a{
	background-color: transparent;
	color: #bfbfbf;
	font-family: Arial;
	font-size: 9px;
	border: 0;
	text-decoration: none;
	border-right: 1px solid #bfbfbf;
	height: 12px;
	padding: 0 1rem;
}

.tabs li:last-child a{
	border: 0;
}


.tabs li a:hover{
	color: #fdbf1e;
}


.tabs li.selected a{
	color: #fdbf1e;
}



.news-slider-container {

	height: 240px;
	padding-top: 35px;
	padding-left: 14px;
	width: 100%;
	max-width: 592px;
	color: #fff;

}


.tab-content {
	max-width: 620px;
	margin-top: -20px;
	overflow-y: hidden;
	max-height: 333px;
}

.tablinks:hover {
	cursor: pointer;
	color: yellow;
}

.news-content td {
	font-family: 'bodyfont';
	font-size: 9pt;
	color: #fff;
	text-align: left;
	height: 27px;
	border: 0;
}

.news-content tr:nth-child(odd) {
	background-color: rgb(0 0 0 / 30%); 	
}

.news-content td a {
	color: #fff;
	text-decoration: none;
}

.news-content td a:hover {
	color: #f78103;
}

.news-content td.news-ind {
	width: 30px;
	padding-left: 25px;
}



.news-content td.news-cat {
	text-transform: uppercase;
	font-family: 'bodyfont';
	font-size: 9pt;	
	width: 80px;
}



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



.news-content td.news-cat.event {
	color: #fdbf1e;
}



.news-content td.news-cat.update {
	color: #37d68d;
}



.news-content td.author {
	font-family: 'Arial';
	font-size: 9pt;
	color: #b9e1f0;	
	font-style: italic;	
	padding-left: 20px;
	width: 80px;
}

.news-content td.date {
	color: #a3a3a3;
	padding-left: 10px;
}

   #tab1:checked ~ .content #all,
   #tab2:checked ~ .content #news,
   #tab3:checked ~ .content #events,
   #tab4:checked ~ .content #updates {
     display: block;
   }

   
/* --------------------------------
 Slider Section
-------------------------------- */	   
.slider-container {
	background: url(../img/slider-bg.png) no-repeat;
	background-position-x: -50px;
	width: 1460px;
	height: 420px;
	margin: 0 auto;
	padding-top: 86px;
}	

.sliders {
	width: 951px;
	height: 344px;
	margin-left: 457px;
	border: 1px solid #efb700;
}

.sliders .owl-carousel .owl-dots{
	display: none;
}

/* --------------------------------
 Streamer Section
-------------------------------- */	  
 .streamer-container {
	background: url(../img/streamer-bg.png) no-repeat;
	background-position-x: 22px;
	width: 1491px;
	height: 750px;
	margin: 0 auto;
	margin-top: -35px;
	padding-top: 70px;
	display: flex;
	flex-wrap: nowrap;
}	

.streamers {
	width: 496px;
	height: 325px;
	margin-left: 141px;
	border: 1px solid #efb700;
}  

.about-streamers {
	margin-left: 55px;
}

.about-streamers p {
	font-family: 'GothamBook';
	color: #e4e4e4;
	font-size: 12pt;
	max-width: 520px;
	line-height: 21pt;
	margin-top: 15px;
}

.streamer-title {
	font-family: 'GothamCondensedMedium';
	font-size: 57pt;
	max-width: 350px;
	color: #e4e4e4;
	letter-spacing: 1px;
	margin: 0;
}

.join-streamers {
	background: url(../img/join-program.png) no-repeat;
	width: 249px;
	height: 55px;
	display: block;
	margin-top: 20px;
}

.join-streamers:hover {
	background: url(../img/join-programHover.png) no-repeat;	
}

.streamer-desc {
	background: rgb(0 0 0 / 70%);
	height: 30px;
	position: relative;
	top: -48px;
	padding: 9px 20px;
}

.streamer-name {
	font-family: 'GothamMedium';
	font-weight: bolder;
	font-size: 19pt;
	color: #e1ae48;
	text-align: left;
}

.streamer-url {
	font-family: 'GothamBook';
	font-size: 11pt;
	color: #fff;
	float: right;
	text-align: right;
	margin-top: 7px;
}

.owl-theme .owl-dots {
	margin-top: -30px !important;
}


/* --------------------------------
 Castle -> Rankings
-------------------------------- */	

.tab-content {
	max-height:  325px;
	max-width: 1400px;
	overflow: hidden;
	overflow-y: hidden;
	border: 0;
	margin-top: 5px;
}

.tabs-nav {
	width: 370px;
	margin-left: 210px !important;
	padding-bottom: 10px !important;
}

ul.tabs-nav
{
    margin:0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs-nav li
{
    display: inline;
    margin: 0;
    margin-right:0px; /*distance between tabs*/
}
        
ul.tabs-nav li a
{
    font-family: 'GothamMedium';
    text-decoration: none;
    position: relative;
    padding: 0px 16px;
    color: #fff;
    outline:none;
	font-size: 10pt;
}

.tabs-nav li{
	background-color: transparent;
	color: #bfbfbf;
	font-family: Arial;
	font-size: 9px;
	border: 0;
	list-style: none;
	display: inline;
}


.tabs-nav li a{
	background-color: transparent;
	color: #bfbfbf;
	font-family: Arial;
	font-size: 9px;
	border: 0;
	text-decoration: none;
	border-right: 1px solid #bfbfbf;
	height: 12px;
	padding: 0 1rem;
}

.tabs-nav li:last-child a{
	border: 0;
}


.tabs-nav li a:hover{
	color: #fdbf1e;
}


.tabs-nav li.selected a{
	color: #fdbf1e;
}
	

   #tab1:checked ~ .content #Prontera,
   #tab2:checked ~ .content #Alde,
   #tab3:checked ~ .content #Geffen,
   #tab4:checked ~ .content #Payon {
     display: block;
   }

   
.castleholders-rankings {
	margin-top: -375px;
	background: url(../img/ranking-bg.png) top center no-repeat;
}


.castle-container {
	width: 1190px;
	padding: 60px 0;
	padding-bottom: 40px;
	display: flex;
	flex-wrap: nowrap;
}


.castle-holders {
	background: url(../img/castleholders.png) no-repeat;
	width: 600px;
	height: 390px;
	margin-left: 85px;
	padding-top: 85px;
}


.tab-castles {
	width: 415px;
	padding: 7px 0px;
	margin-top: 5px;
	margin-left: 140px;
	height: 50px;	
}


.tab-castles .nav-tabs .nav-item {
	border-right: 1px solid white;
	height: 10px;
}


.tab-castles .nav-tabs .nav-item:last-child{
	border: 0;
}


.tab-castles .nav-tabs .nav-link {
	background-color: transparent;
	color: #fff;
	font-family: 'bodyfont';
	text-transform: capitalize;
	font-size: 10px;
	border: 0;
	padding: 0 0.5rem;
}


.castle-holders .tab-content {
	max-width: 500px;
	margin: 0 auto;
	margin-top: 25px;
	overflow-y: hidden;
	max-height: 333px;	
	background: none;
}


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

.flag {
	background: url(../img/flag.png) no-repeat;
	width: 121px;
	height: 100px;
	padding-top: 52px;
	padding-left: 47px;
	margin-bottom: 20px;
	float: left;
}

.col-md-4 {
	width: 100px;
}

.col-md-6 {
	width: 150px;
}

.flag-offset {
	margin-left: 66px;
}

.top10-rankings {
	margin: 0px 30px;
	max-width: 590px;
}


.item-title {
	font-family: 'GothamCondensedMedium';
	font-size: 32pt;
	font-weight: lighter;
	padding: 0 28px;
	color: #e1ae48;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 29px 0;
}


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


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


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


.pvp-ladder td {
	color: #6d6d6d;
	font-family: 'GothamMedium';
	font-size: 10pt;
}


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

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


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

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

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

/* --------------------------------
 Footer Section
-------------------------------- */	
	
.footer {
	background: url(../img/footer-bg.jpg) top center no-repeat #0c0906;
	border-top: 1px solid #4d3505;
}

.footer-container {
	width: 1247px;
	max-width: 1397px;
	padding: 60px 75px;
}

.d-flex {
	display: flex;
}

.footer-info {
	width: 700px;
}

.footer-info ul {
	list-style: none;
	padding: 0;
}

.footer-info ul li {
	border-right: 1px solid #fff;
	display: inline-block;
	padding: 0 15px;
}

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

.footer-info ul li a{
	font-family: 'GothamBook';
	font-size: 11pt;
	color: #fff;
}

.footer-info ul li a:hover{
	color: #e1ae48;
}

.footer-copyrights {
	font-family: 'GothamBook';
	font-size: 9pt;
	color: #878787;
	margin: 20px 15px;
	text-align: left;
}

.credits {
	text-align: left;
}

.credits img {
	margin: 0 15px;
}

.social-links {
	width: 678px;
	max-width: 697px;
}

.social-tag {
	font-family: 'GothamMedium';
	font-weight: bolder;
	font-size: 11pt;
	color: #fff;
	text-align: right;
	margin-top: 10px;
	float: right;
}

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

.social-links ul li {
	display: inline-block;
}

.soc-container {
	width: 250px;
	float: right;
}

.soc-fb {
	background: url(../img/fb.png) no-repeat;
	width: 40px;
	height: 40px;
	display: block;
}

.soc-fb:hover {
	background: url(../img/fbHover.png) no-repeat;
}

.soc-dis {
	background: url(../img/discord.png) no-repeat;
	width: 40px;
	height: 40px;
	display: block;
}

.soc-dis:hover {
	background: url(../img/discordHover.png) no-repeat;
}

.soc-twit {
	background: url(../img/twitter.png) no-repeat;
	width: 40px;
	height: 40px;
	display: block;
}

.soc-twit:hover {
	background: url(../img/twitterHover.png) no-repeat;
}

.soc-ig {
	background: url(../img/insta.png) no-repeat;
	width: 40px;
	height: 40px;
	display: block;
}

.soc-ig:hover {
	background: url(../img/instaHover.png) no-repeat;
}

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

#submenu {
	color: #fff;
	background: none;
	font-size: 10pt;
}

#submenu a{ 
	color: #ffc663;
}

#submenu a:hover {
	text-decoration: none;
	color: #fff;
}


.admin-menu {
	color: #fff;
	background: none;
	font-size: 10pt;
}

.admin-menu a{
	color: #78aef9;
}

.admin-menu a:hover {
	text-decoration: none;
	color: #fdbf1e;
}



.admin-menu a:after {
	content: ' / ';
	color: white;
	text-decoration: none;
}



.toggler a {
	color: #f7e564;
}



.pages .page-num {
	color: #01d3f5;
}



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



.pages .page-prev, .pages .page-next {
	color: #b9f501;
}

.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: 'GothamMedium';
	border-radius: 5px;
	margin: 100px auto;
	background: rgb(43 31 7 / 50%);
	background-color: rgba(43, 31, 7, 0.5);
	color: #fff;
	font-size: 9pt;
	padding: 35px;
}



.global-container h2,h3 {
	font-size: 35pt;
	text-decoration-color: #42bad5;
	width: unset;
	/* text-align: center; */
	margin: 20px 0px;
	border-bottom: 2px solid #ffc663;
	padding: 5px 0;
	font-family: 'GothamMedium';
	color: #aeadae;
	text-transform: none;
}

h3 {
	font-size: 30pt;
}

.global-container a {
	color: #42bad5;
}



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



.horizontal-table td {
	padding: 5px 10px;
	background: rgb(0 0 0 / 50%);
}

	

.horizontal-table th, .horizontal-table td {
	font-size: 9pt;
	border: 1px solid #ffc663;
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: #2c2d3a;
}



.vertical-table td {
	padding: 5px 10px;
	background: rgb(0 0 0 / 50%);
}

	

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

	font-size: 9pt;
	border: 1px solid #ffc663;
}


.vertical-table th {
	padding: 5px 10px;
	background-color: #2c2d3a;
}


.generic-form {
	border: 1px solid #ffc663;
	background: none;
}


.generic-form-table td p {
	color: #fff;
}

.search-form label, .search-form2 label {
	color: #fff;
}


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


.sortable:hover {
	color: #fff;
}


#pagemenu {
	color: #fff;
}


#pagemenu a{
	color: #dfbd00;
}

.character-stats .stat-name {
	color: #ffc663;
}

.character-stats .stat-value {
	color: #fff;
}


/* --------------------------------
  Responsive Navbar
-------------------------------- */	

nav ul > li {
  padding: 15px;
  display: inline-block;
  transition: all .3s ease;
  margin-left: -5px
}

nav ul > li:last-of-type {
  float: right;
}

nav ul > li:last-of-type a .fa {
  font-size: 21px
}

/* menu */
nav ul > li:last-of-type {
  position: relative;
  display: none
}
nav ul > ol {
	position: absolute;
	top: 117px;
	right: 0;
	background: rgb(0 0 0 / 80%);
	background-color: rgba(0,0,0,0.8);
	text-align: center;
	list-style: none;
	display: none;
	z-index: 1;
}
nav ul > ol > li {
	width: 100vw;
	color: #FFF;
	margin: 0;
	padding: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: all .3s ease;
}
nav ul > ol > li:hover a {
	margin: 20px;
}
nav ul > ol > li:hover {
	background: rgb(130 91 16 / 50%);
	background-color: rgba(130,91,16,0.5);
	cursor: pointer
}
nav ul input {
	opacity: .7;
	padding: 5px;
	float: right;
	display: none
}

.owl-stage-outer {
	max-height: 395px;
}

/* --------------------------------
  Media Query Responsive
-------------------------------- */

@media only screen and (max-width:1400px){
	.header-logo {
		width: 300px;
		max-width: 300px;
	}	
	
	.news-container {
		width: 100%;
	}
	
	.tabs {
		margin-left: 800px !important;
	}
	
	.tabs-nav {
		margin-left: 210px !important;
	}
	
	.tabcontents {
		max-height: 700px;
	}
	
	.slider-container {
		width: 100%;
	}
	
	.sliders {
		margin-left: calc(100vw - 981px);
	}
	
	.streamer-container {
		width: 100%;
		min-height: 822px;
		background-position-x: -100px;
	}
	
	.streamers {
		margin-left: 35px;
	}
	
	.footer-container {
		width: 100%;
	}
	
	.social-links {
		width: calc(100vw - 900px);
	}
}

@media only screen and (max-width:1200px){
	.header-logo {
		width: 200px;
		max-width: 200px;
	}		
		
	.login-container {
		width: 100%;
	}
	
	.sub-nav ul li {
		padding: 0 32px;
	}
	
	.tabs {
		margin-left: 800px !important;
	}
	
	.tabs-nav {
		margin-left: 210px !important;
	}
	
	.slider-container {
		height: auto;
		background-position-x: 300px;
	}
	
	.sliders {
		margin: 0 auto;
		margin-top: 400px;
	}
	
	.streamer-container {
		background-position-x: -300px;
		margin-top: 20px;
	}
	
	.castle-container {
		width: 100%;
	}
	
	.castle-holders {
		margin-left: calc(100vw - 1100px);
	}
}

@media only screen and (min-width:1024.98px) {
	nav ul > ol > li {
		display:none
	}
}

@media only screen and (max-width:1024px){
	.online-stat {
		display: none;
	}
	
	nav ul > li {
		display:none;
	}
	
	nav ul > li:last-of-type {	/* menu burger */
		display: block;
		position: absolute;
		right: 10px;
		top: 80px;
	}
	
	nav ul input {
		display: inline;
	}
  	

	.sub-nav ul li {
		padding: 10px 0;
	}
	
	.news-rss {
		width: 80%;
		margin: 0 auto;
	}
	
	.news-header {
		margin-left: 38%;
	}
	
	.tabs {
		margin-left: 29% !important;
	}
	
	.tabs-nav {
		margin-left: 20px !important;
	}
	
	.tabcontents {
		max-height: 1300px;
	}
	
	.news-article {
		width: 45%;
		height: auto;
		min-height: 325px;
		margin: 15px;
	}
	
	.slider-container {
		background-position-x: 20px;
	}

	.about-streamers {
		margin-left: 15px;
	}
	
	.streamers {
		margin-left: 15px;
	}
	
	.castle-holders {
		margin: 0 15px;
	}
	
	.d-flex {
		display: inline-block;
	}
	
	.soc-container {
		float: none;
		margin: 50px auto;
	}
	
	.footer {
		background-size: cover;
	}
	
	.footer-container {
		width: calc(100vw - 150px);
	}
	
	.social-links {
		width: 100%;
		margin: 50px auto;
	}
	
	.social-links ul {
		float: none;
		padding: 30px;
	}
	
	.footer-info {
		width: calc(100vw - 150px);
		text-align: center;
	}
	
	.footer-copyrights {
		text-align: center !important;
	}
	
	.credits {
		text-align: center !important;
	}
	
}

@media only screen and (max-width:992px){
	.sliders {
		width: 97%;
		height: auto;
	}

	.sliders img {
		width: 100%;
		height: 100%;
	}
	
	.streamer-container {
		height: auto;
		display: inherit;
		background-position-x: -600px;
		background-position-y: 442px;
		padding-bottom: 50px;
	}
	
	.streamers {
		margin: 0 auto;
	}
	
	.castleholders-rankings {
		margin-top: -65px;
	}
	
	.about-streamers {
		margin: 50px auto;
		width: 95%;
	}
}

@media only screen and (max-width:768px){
	.server-time{
		display: none;
	}
	
	.header-logo {
		width: 40vw;
		max-width: 250px;
		padding-left: 30px;
	}
	
	
	.news-header {
		margin-left: 35%;
	}
	
	.tabs {
		margin-left: 31% !important;
		margin-top: 20px !important;
		padding: 0 !important;
	}	
	
	.tabs-nav {
		margin: 0 auto !important;
	}
	
	.tabcontents {
		max-width: 100%;
		max-height: 3100px; 
	}
	
	.news-article {
		margin: 15px 10px;
		width: 97%;
		height: auto;
		min-height: 325px;
	}
	
	.owl-theme .owl-nav {
		display: none;
	}
	
	.castle-container {
		display: inherit;
	}
	
	.castle-holders {
		background-position: top center;
		background-position-x: -15px;
		width: 95%;
		max-width: 441px;
		height: auto;
		margin: 15px auto;	
		padding-bottom: 30px;
	}
	
	.guild-flags {
		max-width: 441px;
		margin: 0 auto;
	}

	.top10-rankings {
		margin: 0px auto;
		max-width: 420px;
	}
	
	.castleholders-rankings {
		background: url(../img/ranking-bg-m.png) top center no-repeat;
	}

	.footer-info ul li {
		border-right: none;
		padding: 15px 15px;
		display: inherit;
	}	
	
}

@media only screen and (max-width:576px){
	.server-statistics {
		display: none;
	}
	
	.online-stat {
		display: block;
	}
	
	body {
		background: url(../img/main-bg.jpg) -800px 16px no-repeat #0d0905;
	}
	
	.login-panel {
		margin: 0 auto;
	}
	
	.preloader img {
		width: 70%;
		height: auto;
	}
	
	.news-header {
		margin-left: 29%;
	}
	
	.tabs {
		margin-left: 23% !important;
		margin-top: 20px !important;
		padding: 0 !important;
	}	
	
	.tabs-nav {
		margin: 0 auto !important;
	}	
	
	.tabcontents {
		max-width: 100%;
		max-height: 3000px; 
	}
	
	.news-article {
		margin: 15px;
		width: 95%;
		height: auto;
		min-height: 325px;
	}
	
	.slider-container {
		background-position-x: -21px;
	}
	
	.streamers {
		width: 95%;
		max-width: 498px;
		margin: 0 auto;
		height: auto;
		max-height: 391px;
	}
	
	.owl-theme .owl-nav {
		display: none;
	}	
	
	.credits img {
		margin: 15px;
		width: 45%;
	}
	
	.social-tag {
		float: none;
		margin: 10px;
	}
}

@media only screen and (max-width:425px){
	.header-logo {
		width: 30vw;
	}		
	
	.news-header {
		margin-left: 87px;
	}
	
	.tabs {
		margin-left: 42px !important;
		margin-top: 20px !important;
	}	
	
	.tabs-nav {
		margin: 0 auto !important;
	}
	
	.loginBtn {
		width: 312px;
		height: 53px;
		background-size: 100%;
	}

	.textClass {
		width: 277px;
	}
	
	.tabcontents {
		max-width: 100%;
		max-height: 3000px; 
	}
	
	.news-article {
		margin: 15px 10px !important; 
	}
	
	.slider-container {
		background-position-x: -47px;
	}

	.streamers {
		max-height: 317px;
	}
	
	.col-md-4, .col-md-6 {
		width: 75px;
	}
	
	.footer-container {
		width: 100%;
		padding: 60px 15px;
	}
	
	.footer-info {
		width: 94%;
	}
	
	.footer-copyrights {
		margin: 20px 0px;
	}
}

@media only screen and (max-width:375px){
	.header-logo {
		width: 23vw;
	}
	
	.login-panel {
		margin-left: -35px;
	}
	
	.news-header {
		margin-left: 60px;
	}

	.tabs {
		margin-left: 0px !important;
	}	
	
	.slider-container {
		background-position-x: -105px;
	}

	.streamers {
		max-height: 279px;
	}
	
	.castle-holders .tab-content {
		max-height: 1000px;
	}
	
	.flag {
		width: 80%;
		text-align: center;
		background-position: center;
	}
	
	.flag img {
		margin-left: -46px;
		margin-top: 10px;
	}
	
	.flag-offset {
		margin-left: 0;
	}
	
	
	.pvp-ladder table {
		width: 100%;
		max-width: 350px;
	}
	
	.top10-rankings {
		max-width: 350px;
	}
}

@media only screen and (max-width:320px){
	.header-logo {
		width: 23vw;
	}
	
	.online-stat {
		display: none;
	}
	
	nav ul > li:last-of-type {
		top: 20px;
	}
	
	nav ul > ol {
		top: 82px;
	}
	
	.login-panel {
		margin-left: -52px;
	}
	
	.news-header {
		margin-left: 35px;
	}

	.tabs {
		margin-left: -1px !important;
		padding: 0 !important;
	}	

	.streamers {
		max-height: 239px;
	}

	ul.tabs-nav li a {
		font-size: 8pt;
	}

	.pvp-ladder table {
		width: 100%;
		max-width: 310px;
	}
	
	.top10-rankings {
		max-width: 310px;
	}	
	
}


.generic-form-table th label , .generic-form-table td div, .horizontal-table td, .horizontal-table th, .vertical-table th, .vertical-table td{
	color: #fff;
}
