.js-loading * {
    transition: none !important;
    animation: none !important;
}
@font-face {
    font-family:"pverdana";
    src: url("verdana-10px.otf.woff2") format("woff");
    font-weight:bold;font-style:normal;}


:root{
    --main-bg-color: #051122;

    --initial-txt-color: #fff;
    --middle-txt-color: #5A2800;
    --side-txt-color: #dddddd;
    --col-side-width: 200px;
    --col-middle-width: 785px;
    --col-gap: 25px;

    --decorative-corner-spacing-horizontal: -5px;
    --decorative-corner-spacing-vertical: -15px;

    --bar-title-color: #fff1da;
    --bar-title-border: #000;

    --bar-icon-color: #b9a075;
    --bar-icon-border: #000;

    --text-shadow-outline: -1px -1px 0 var(--bar-icon-border), 0 -1px 0 var(--bar-icon-border), 1px -1px 0 var(--bar-icon-border), 1px 0 0 var(--bar-icon-border), 1px 1px 0 var(--bar-icon-border), 0 1px 0 var(--bar-icon-border), -1px 1px 0 var(--bar-icon-border), -1px 0 0 var(--bar-icon-border);
   
   
    --text-shadow-outline-tibia: -1px 0 0 var(--bar-icon-border), 1px 0 0 var(--bar-icon-border), 0 -1px 0 var(--bar-icon-border), 0 1px 0 var(--bar-icon-border),  -1px 0 0 var(--bar-icon-border), 1px 0 0 var(--bar-icon-border), 0 -1px 0 var(--bar-icon-border), 0 1px 0 var(--bar-icon-border);

    --linklist-bg-color: #07302e;
        --linklist-bg-color-hover: #ffffff0e;
}

#dragonVideo, #logoVideo{
    display: none;
}
#dragonVideo{
    /*flicker fix*/
    margin-top: 3px;
    margin-left: 1px;

}
.col-side{
    width: var(--col-side-width);
}
.col-middle{
    width: var(--col-middle-width);
    margin-left: var(--col-gap);
    margin-right: var(--col-gap);
}
@font-face {
    font-family: 'tibia';
    src: url('Tibia.ttf')  format('truetype');
}
@font-face {
  font-family: 'Martel';
  src: url('Martel.woff2') format('woff2'),
    url('Martel.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
            background-image: url(img/bg.webp);
    background-color: var(--main-bg-color);
    background-repeat: no-repeat, repeat;
    background-position: center top, left top;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    color: var(--initial-txt-color);
     overflow-x: hidden;
}
a{
    text-decoration: none;
    transition: color ease .2s;
    font-weight: bold;
    color: #004294;
}
.col-middle a:hover {
    text-decoration: underline;
    color: #0063DC;
}
.page-wrapper {
    display: flex;
    justify-content: center; 
}
.container {
    width: calc(var(--col-middle-width) + var(--col-side-width) + var(--col-side-width) + var(--col-gap) + var(--col-gap));
    display: flex;
    flex-wrap: wrap;
    margin: 0; 
}
.logo{
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    background-size: auto 156px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(img/logo.png);
}
.logo-vid{
    display: block;
    height: 200px;
    width: 558px;
    flex: 1;
}
.bar{
    width: 100%;
    background: url(img/bar-green.png) center bottom repeat-x;
    height: 36px;
    border-bottom: 1px solid #000;
    display: block;
}
.bar.red{
    background: url(img/bar-red.png) center bottom repeat-x;
    border-bottom: 0 none;
    height: 35px;
}
.bar.gray{
    background: url(img/bar-gray.png) center bottom repeat-x;
    
}
.bar h2{
    position: relative;
    z-index: 3;
    font-family: 'Martel';
  font-size: 20px;
  font-weight: normal;
    color: var(--bar-title-color);
    margin: 0;
    line-height: 35px;
    padding-left: 14px;
    text-transform: capitalize;
    text-shadow: -1px -1px 0 var(--bar-title-border), 0 -1px 0 var(--bar-title-border), 1px -1px 0 var(--bar-title-border), 1px 0 0 var(--bar-title-border), 1px 1px 0 var(--bar-title-border), 0 1px 0 var(--bar-title-border), -1px 1px 0 var(--bar-title-border), -1px 0 0 var(--bar-title-border);
}
.bar h2 i{
    margin-right: 6px;
    font-size: 19px;
    color: var(--bar-icon-color);
    text-shadow: -1px -1px 0 var(--bar-icon-border), 0 -1px 0 var(--bar-icon-border), 1px -1px 0 var(--bar-icon-border), 1px 0 0 var(--bar-icon-border), 1px 1px 0 var(--bar-icon-border), 0 1px 0 var(--bar-icon-border), -1px 1px 0 var(--bar-icon-border), -1px 0 0 var(--bar-icon-border);
}
.infobar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    width: 100%;
    height: 35px;
    color: #fff;
    padding: 0 10px;
}
.infobar a{
    color: #d9c9c9;
    font-size: 11px;
    display: inline-block;
    font-weight: normal;
    padding: 3px 6px;
    border-radius: 5px;
    transition: background ease .2s;
}
.infobar a::before{
    content: unset !important;
}
.infobar a:hover{
    background: #a3a19659;
    color: inherit;
}
.infobar a i.big{
    font-size: 16px;
    margin-right: 5px;
    color: #fff;
    vertical-align: middle;
}
.infobar a span.txt{
    vertical-align: middle;
    height: 16px;
    display: inline-block;
    line-height: 16px;
}
.infobar .l {
  
}
.infobar .r {
    
}
.box-info{
    background: #ffdd9f24;
    padding: 3px 0 0 0;
    position: relative;
    border-style: solid;
    border-color: inherit;
    border-image-source: url(img/content/table1-border2.png);
    border-image-width: 10px 10px 0 10px;
    border-image-slice: 10 fill;
    border-image-outset: 2px;
    border-image-repeat: repeat;
    border-radius: 3px;
    margin-left: 34px;
    margin-right: 34px;
    color: var(--middle-txt-color);
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    text-shadow: var(--text-shadow-outline);
    position: relative;
    overflow: hidden;
    height: 26px;
}
.box-info .item{
    max-width: calc(var(--col-middle-width) - 90px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 2px auto;
    height: 17px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-150%);
    transition: transform 0.8s ease-in-out;
}

.box-info .item.no-transition {transition: none;}
.box-info .item.active {transform: translateY(0);}
.box-info .item.exiting {transform: translateY(150%);}
.box-1{
    /*background: url(img/paper-only.png);*/
    background-color: #debb9d;
    /* padding: 10px; */
    position: relative;
    border-width: 12px 2px;
    border-style: solid;
    border-color: inherit;
    border-image-source: url(img/border-outerbox3.png);
    border-image-width: 12px 2px;
    border-image-slice: 12;
    border-image-repeat: repeat;
    border-radius: 0;
    /* z-index: 5; */
    color: var(--middle-txt-color);
}
.box-side{
    /*background: url(img/paper-only.png);*/
    position: relative;
    border-width: 21px 21px;
    border-style: solid;
    border-color: inherit;
    border-image: url(img/chainborderfull.png) 21 fill repeat;
    border-image-width: 21px;
    border-radius: 0;
    /* z-index: 5; */
    padding: 0 3px;
    color: var(--side-txt-color);
    margin-bottom: calc(var(--col-gap) - 10px);
}
.box-side::after, .box-side-widget::after, .box-side-widget.gold::after{
    content: "";
    width: 106%;
    height: 28px;
    bottom: -33px;
    left: -3%;
    background: url(img/border-footer2.png) no-repeat center top;
    position: absolute;
    z-index: 4;
    pointer-events: none;
}
.box-side-widget::after, .box-side-widget.gold::after{
bottom: -25px;
}
.widget-title{
    position: relative;
    width: 100%;
    height: 43px;
    background-image: url(img/widgettitle-red-spr.png);
    background-repeat: repeat-x;
    margin-top: -15px;
}
.widget-title img{
position: absolute;
    left: 8px;
    top: 4px;
    z-index: 6;
    filter: drop-shadow(0 0 7px #0007);
    width: 32px;
    height: 32px;
}
.widget-title span{
    position: relative;
    z-index: 4;
    PADDING-LEFT: 24px;
    width: 100%;
    line-height: 43px;
    height: 43px;
    font-size: 17px;
    text-align: center;
    display: block;
    font-family: "Martel";
    text-shadow: var(--text-shadow-outline), 0 0 5px #000;
    color: #fff3c6;
}
.widget-title::before{
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    pointer-events: none;
    z-index: 3;
    background-image: url(img/widgettitle-red-spr.png);
    background-repeat: no-repeat;
    background-position: 0 -44px;
    width: 35px;
    height: 43px;
}
.widget-title::after{
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    pointer-events: none;
    z-index: 3;
    background-image: url(img/widgettitle-red-spr.png);
    background-repeat: no-repeat;
    background-position: 0 -88px;
    width: 35px;
    height: 43px;
}
.widget-title.pink, .widget-title.pink::before, .widget-title.pink::after{
    background-image: url(img/widgettitle-pink-spr.png);
}
.widget-title.blue, .widget-title.blue::before, .widget-title.blue::after{
    background-image: url(img/widgettitle-blue-spr.png);
}
.widget-title.green, .widget-title.green::before, .widget-title.green::after{
    background-image: url(img/widgettitle-green-spr.png);
}
.widget-title.gray span{
    color: #ececde;
}
.box-side-widget{
    background: url(img/paper-only.png);
    position: relative;
    border-width: 7px 7px;
    border-style: solid;
    border-color: inherit;
    border-image: url(img/border-side.png) 7 fill repeat;
    border-image-width: 7px;
    border-radius: 0;
    /* z-index: 5; */
    padding: 0;
    color: rgb(36, 16, 6);
    margin-bottom: calc(var(--col-gap) + 10px);
}
.box-side-widget.gold{
    background: url(img/paper-only.png);
    position: relative;
    border-width: 7px 7px;
    border-style: solid;
    border-color: inherit;
    border-image: url(img/border-side2.png) 7 fill repeat;
    border-image-width: 7px;
    border-radius: 0;
    /* z-index: 5; */
    padding: 0;
    color: rgb(36, 16, 6);
    margin-bottom: calc(var(--col-gap) + 10px);
}
.linkmenu{
    margin: -3px;
}
.box-side .create-link{
    font-size: 13px;
    font-weight: 500;
    color: #efd6b0;
    text-shadow: var(--text-shadow-outline);
    display: block;
        text-align: center;
}
.box-side .create-link:hover{
    color: #ffeaca;
}
.border-1{
  position: relative;
  border: 3px solid transparent;
  border-width: 11px 11px;
  border-image: url(img/cnt-inner.png) 22 fill repeat; 
  border-image-width: 22px 22px;
  margin: 4px;
    position: relative;
    box-sizing: content-box;
    image-rendering: auto !important;
}
.border-2{
    background: url(img/paper-only.png);
    font-size: 13px;
    padding: 6px;
    border-radius: 1px;
    border: 1px solid rgba(0, 0, 0, 0.603);
    box-shadow: 0 0 10px #0007 inset;
    position: relative;
}
.lady{
    width: 180px;
    height: 143px;
    background: url(img/lady.png) left bottom no-repeat;
    position: absolute;
    left: -7px;
    top: -34px;
    z-index: 2;
    pointer-events: none;
}
.content-lady, .content-pointsshop{
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(142deg, #0000002f, transparent);
}
.content-lady .text-desc{
    margin-left: 88px;
    text-align: center;
    font-size: 19px;
    line-height: 16px;
    font-weight: bold;
    font-family: "Martel";
    color: #5e4b35;
    position: absolute;
    right: 5%;
    top: 5%;
    z-index: 1;
    background-image: linear-gradient(130deg, rgb(227 48 114), rgb(135 59 14));
    color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 0 rgba(255, 238, 144, 0.76)) drop-shadow(0 -1px 0 rgba(46, 20, 5, 0.185));
}
.content-lady .button, .content-pointsshop .button{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 3;
}
.content-pointsshop .pointsshop-background{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(img/pointsshop.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    border: 1px solid #b1a771;
}
.content-pointsshop .text-desc{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 50px;
    text-align: center;

    color: #f1f1f1;
    font-size: 9px;
    font-family: 'Verdana';
    filter: drop-shadow(0 0 5px #000);
}
.content-pointsshop .text-desc img{
    margin: 5px;
}
.corner {
    background: url(img/corner-3.png) no-repeat left top;
    width: 38px;
    height: 38px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    /*filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.795));*/
}
.box-side .corner {
    background: url(img/corner.png) 3px 3px no-repeat !important;
}
.corner.lt {
    left: var(--decorative-corner-spacing-horizontal);
    top: var(--decorative-corner-spacing-vertical);
}
.corner.rt {
    right: var(--decorative-corner-spacing-horizontal);
    top: var(--decorative-corner-spacing-vertical);
    transform: rotate(90deg);
}
.corner.rb {
    right: var(--decorative-corner-spacing-horizontal);
    bottom: var(--decorative-corner-spacing-vertical);
    transform: rotate(180deg);
}
.corner.lb {
    left: var(--decorative-corner-spacing-horizontal);
    bottom: var(--decorative-corner-spacing-vertical);
    transform: rotate(270deg);
}
.chain-spacer {
    width: 100%;
    height: var(--col-gap);
    background: url(img/chain-spacer-l.png) 5px -14px repeat-y, url(img/chain-spacer-r.png) calc(100% - 5px) -14px repeat-y;
}
.col-side .chain-spacer{
    margin: -5px 0;
}
.navbar{
    position: relative;
    width: 100%;
    height: 51px;
    background: url(img/red-bar-spr.png) left top repeat-x;
}
.navbar::before{
    content: "";
    position: absolute;
    left: -14px;
    top: 0;
    height: 51px;
    width: 14px;
    background: url(img/red-bar-spr.png) 0 -51px no-repeat;
}
.navbar::after{
    content: "";
    position: absolute;
    right: -14px;
    top: 0;
    height: 51px;
    width: 14px;
    background: url(img/red-bar-spr.png) 0 -101px no-repeat;
}
  .dragon {
    position: relative;
    width: 233px;
    height: 215px;
    overflow: hidden;
    margin: -200px 0 -30px calc((var(--col-side-width) - 233px)/2);
    z-index: 5;
  }

  .dragon-bg {
    position: absolute;
    background-repeat: no-repeat;
    width: 233px;
    height: 215px;
    z-index: 5;
    left: 0;
    top: 0;
    background: url(img/dragon.png);
  }
.pedestal{
    position: relative;
    background-repeat: no-repeat;
    width: 233px;
    height: 215px;
    margin: -200px 0 -30px calc((var(--col-side-width) - 233px)/2);
    z-index: 5;
}
.pedestal{
    background: url(img/pedestal.png) no-repeat center bottom;
    margin-bottom: -11px;
}
.pedestal .txt{
    width: 90px;
    position: absolute;
    bottom: 45px;
    height: 18px;
    left: 72px;
    text-align: center;
    font-size: 12px;
    color: #fffdb7;
}
#status-countdown{
    visibility: hidden;
    opacity: 0;
    font-size: 10px;
    line-height: 10px;

}
#status-countdown .muted{
    opacity: 0.7;
}
.pedestal .statustext:hover #status-original{
    visibility: hidden;
    opacity: 0;
}
.pedestal .statustext:hover #status-countdown{
    visibility: visible;
    opacity: 1;
}
.pedestal #status-original, .pedestal #status-countdown{
    position: absolute;
    transition: opacity ease .2s;
}
.pedestal .statustext{
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 18px;
}
.monster-container {
    position: absolute;
    bottom: 106px;
    right: 106px;
    width: 32px;
    height: 32px;
    transition: all ease .3s;
}
.monster-container:hover {
    background: #ffb71b46;
    box-shadow: 0 0 3px #ffb71b, 0 0 3px #ffb71b inset;
    border-radius: 50%;
}
.rotating-monster {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
    cursor: help;
}
.rotating-monster.hidden {
    opacity: 0;
    pointer-events: none;
}
.col-side .bigbtn{
    width: 100%;
    z-index: 6;
}
.bigbtn{
    background-image: url(img/bigbtn-spr.png);
    background-position-x: center;
    background-repeat: repeat-x;
    height: 49px;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}
.bigbtn.green{
    filter: hue-rotate(295deg);
}
.bigbtn.red{
    filter: hue-rotate(153deg);
}
.bigbtn::before, .bigbtn::after, .bigbtn .hover::before, .bigbtn .hover::after{
    content: "";
    width: 18px;
    height: 49px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(img/bigbtn-spr.png);
    background-position: 0 -98px;
    background-repeat: no-repeat;
}
.bigbtn::after, .bigbtn .hover::after{
    left: 0 !important;
    background-position-y: -49px;
}
.bigbtn .text{
    z-index: 5;
    font-weight: bold;
    font-size: 18px;
    margin: 0 20px;
    color: #d9f7ff;
    text-shadow: 0 1px 3px #0009;
    transition: text-shadow ease .2s, color ease .2s;
    white-space: nowrap;
}
.bigbtn:hover .text{
    color: #fff;
    text-shadow: 0 1px 4px #000;
    text-decoration: none !important;
}
.bigbtn .hover{
    background-image: url(img/bigbtn-spr-hover.png) !important;
    background-position-x: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 49px;
    opacity: 0;
    transition: opacity ease .2s, visibility ease .2s;
    visibility: hidden;
    z-index: 3;
}
.bigbtn:hover .hover{
    opacity: 1;
    visibility: visible;
}
.bigbtn .hover::before, .bigbtn .hover::after{
    background-image: url(img/bigbtn-spr-hover.png) !important;
}
.bigbtn.emerald{
    background-image: url(img/bigbtn3-spr.png) !important;
    filter: none !important;
}
.bigbtn.emerald .hover::before, .bigbtn.emerald .hover::after, .bigbtn.emerald .hover{
    background-image: url(img/bigbtn3-spr-hover.png) !important;
    filter: none !important;
}
.bigbtn.emerald::before, .bigbtn.emerald::after, .bigbtn.emerald .hover::before, .bigbtn.emerald .hover::after{
    background-image: url(img/bigbtn3-spr.png);
    width: 33px;
}
.bigbtn.emerald .text{
    color: #d9fbff;
}
.socials i{
    color: var(--bar-title-color) !important;
}
.menucategory{
    position: relative;
        text-align: center;
        transition: filter ease .2s;

}
.menucategory:hover, .menucategory.active{
    filter: brightness(1.2);
}
.menucategory h2{
    padding-left: 32px;
}
.menucategory img{
    position: absolute;
    left: 0;
    top: 0;
    filter: drop-shadow(0 1px 3px #0009);
}
.menucategory::after{
    content: "";
    position: absolute;
    bottom: 2px;
    right: -1px;
    width: 12px;
    height: 12px;
    background: url(img/plus.gif) no-repeat center center;
}
.menucategory.active::after{
    background: url(img/minus.gif) no-repeat center center;
}
.linklist{
    margin: 0;
    padding: 0;
    background-color: var(--linklist-bg-color);
    list-style: none;
    position: relative;
    overflow: hidden;
    display: none;
}
.linklist li{
    position: relative;
}
.linklist li a{
        position: relative;
    display: block;
    padding: 3px 3px 3px 13px;
    color: #d7d7d7;
    font-weight: 600;
    transition: color ease .2s, background-color ease .1s;
    font-size: 13px;
    border-bottom: 1px solid #48eaff4d;
}
.linklist li a::before{
    content: "";
    left: -8px;
    top: 0;
    position: absolute;
    transition: left ease .2s, transform ease .2s;

    background: url(img/icon-activesubmenu.gif) no-repeat left center;
    width:15px;
    height: 23px;
    display: inline-block;
    vertical-align: top;
    transform: scaleX(0);
}
.linklist li a:hover{
    color: #fff;
    background-color: var(--linklist-bg-color-hover);


}.linklist li a.active{
    color: #fff;
    background: #00ffad17;
}
.linklist li a:hover::before, .linklist li a.active::before{
    left: 1px;
    transform: scale(1);
    opacity: 1;
}
.box-side-widget .btn{
    width: calc(100% - 15px);
    font-family: 'Martel';
    font-size: 16px;
    font-weight: normal !important;
}

.outline{
    text-shadow: var(--text-shadow-outline);
}
.top-players{
    display: flex;
    flex-direction: column;
    margin: -5px;
    z-index: 3;
    position: relative;
}
.player-row{
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #ecd8b3;
    transition: all ease .2s;
}
.player-row:nth-child(even){
    background: #d7c5a4;
}
.player-row:nth-child(odd){
    background: #ceb68a;
}
.player-row .l{
    margin-right: 5px
}
.player-row .l .outfit{
    width: 32px;
    height: 32px;
    display: block;
    background: #ecd8b3;
    border-radius: 50%;
    position: relative;
    margin-left: 3px;
    transition: box-shadow ease .2s;
}
.player-row .l .outfit img{
    position: absolute;
    right: 0;
    bottom: 0;
    user-select: none;
    pointer-events: none;
}
.player-row .r{
    flex: 1;
}
.player-row .m{
position: relative;
    height: 30px;
    display: block;
}
.player-row .name{
    font-weight: 700;
    font-size: 13px;
    display: block;
    height: 17px;
    max-width: calc(var(--col-side-width) - 60px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all ease-out .2s;

}
.player-row .level{
    font-size: 11px;
    color: #5c2a03;
    font-weight: bold;
}
.player-row .vocation{
    color: #272727;
    font-size: 13px;
    margin-left: 3px;
}
.player-row .vocation .fa-fire-flame-curved{color:#9c1f00;}
.player-row .vocation .fa-snowflake{color:#005c79;}
.player-row .vocation .fa-bow-arrow{color:#6e4311;}
.player-row .vocation .fa-sword{color:#4e4e4e;}
.player-row .rank-new{
font-weight: 600;
    font-size: 11px;
    color: #ecd8b3;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    background: #6b3d16;
    vertical-align: middle;
    vertical-align: top;
    text-shadow: 0 0 0 transparent;
}
.player-row .rank{
    font-weight: 600;
    font-size: 11px;
    color: #fff2df;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    border-radius: 50%; 
    background: #0000004d;
    vertical-align: top;
    text-shadow: 0 0 0 transparent
}
.player-row:hover{
    padding-left: 5px;
    background: #ecd8b3;
}
.player-row:hover .name{
    color: #0063DC;
    font-size: 14px;
}
.player-row:hover .outfit{
    box-shadow: 0 0 5px #0006;
}
.footer{
    text-align: center;
    font-size: 11px;
    margin: 5px 0;
}
/* PARALLAX BACKGROUND */
.parallax-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    width: 2688px;
    height: 1050px;
    overflow: hidden;
}
.parallax-stage {
    position: relative;
    width: 2688px;
    height: 1050px;
    overflow: hidden;
}
/* Base layer style */
.layer {
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

/* Background */
.background {
    background-image: url('img/background/background.webp');
    z-index: 1;
    width: 2688px;
    height: 1050px;
    top: 0;
    left: 0;
}
.frame {
    background-image: url('img/background/frame.webp');
    z-index: 4;
    width: 2688px;
    height: 1050px;
    top: 0;
    left: 0;
}
.frame:after {
    content: "";
    background: var(--main-bg-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
}
.character {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}
.character1{
    background-image: url('img/background/char1.webp');
    width: 638px;
    height: 563px;
    right: 260px;
    top: 0;
    transform: translate(30px, -10px);
}
.character2{
    background-image: url('img/background/char2.webp');
    width: 725px;
    height: 418px;
    right: 80px;
    top: 310px;
    transform: translate(30px, 10px);
}
.character3{
    background-image: url('img/background/char3.webp');
    width: 591px;
    height: 577px;
    left: 220px;
    top: 0;
    transform: translate(-30px, -10px);
}
.character4{
    background-image: url('img/background/char4.webp');
    width: 658px;
    height: 603px;
    left: 200px;
    top: 190px;
    transform: translate(-30px, 10px);
}
.effects {
    background-image: url('img/background/dirt.webp');
    z-index: 3;
    top: 0;
    left: 0;
    width: 2688px;
    height: 1050px;
}
.effects2, .mobilefog{
    background-image: url('img/background/fog.webp');
    background-repeat: repeat-x;
    z-index: 1;
    top: 0;
    left: 0;
    height: 1050px;
    width: 2688px;
    animation: slide-bg 90s linear infinite;
}
@keyframes slide-bg {
    from { background-position: 0 0; }
    to   { background-position: 2688px 0; }
}

/* MOBILEB navigation bar */
.mobilenav {
    background-image: url(img/mobilenav.png);
    background-repeat: repeat-x;
    background-size: auto 70px;
    box-shadow: 0 2px 20px #000;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    display: none;
    transition: transform ease .2s, top ease .4s, box-shadow ease .4s;
    z-index: 55;
    justify-content: space-between;
    align-items: center;
}
.mobilenav.hidden {
    top: -70px;
    box-shadow: 0 0 0 transparent;
}
.mobilenav .navlogo {
    height: 50px;
    width: auto;
}

.mobilenav a {
  color: #cccccc;
}
a.menutrigger, a.accpaneltrigger{
    background-image: url(img/navbtn.png);
    background-repeat: no-repeat;
    background-position: center top;
    height: 54px;
    width: 54px;
    text-align: center;
    font-size: 24px;
    position: relative;
    color: #ffdd1c;
    text-shadow: 0 1px 3px #000;
    display: block;
    margin: 8px;
}
a.menutrigger.active, a.accpaneltrigger.active{
    background-position: center bottom;
}
.menutrigger .fa , .accpaneltrigger .fa {
  transition: opacity ease .2s, visibility ease .2s;
  position: absolute;
  left: 0;
  top: 0;
  height: 54px;
  width: 54px;
  line-height: 54px;
}

.menutrigger .fa-xmark,
.menutrigger.active .fa-bars {
  visibility: hidden;
  opacity: 0;
}

.menutrigger.active .fa-xmark {
  visibility: visible;
  opacity: 1;
}

.mobilemenu {
  overflow: auto;
  display: none;
  width: 100%;
  background: rgba(0, 0, 0, 0.658);
  max-width: unset;
  max-height: unset;
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;  
  backdrop-filter: blur(1px);
}
.mobileaccpanel{
    position: absolute;
    right: 1px;
    top: 1px;
    width: 250px;
    background: url(img/paper-only.png);
    background-clip: padding-box; 
    border-image: url(img/paper.png) 9 repeat;
    border-image-width: 9px;
    border-width: 9px; 
    border-style: solid; 
    border-radius: 0;
    filter: drop-shadow(0 1px 5px #000);
    color: var(--middle-txt-color);
    padding: 5px;
}
.mobileaccpanel .bigbtn{
    margin: 2px 0;
    border-radius: 3px;
}
.mobilemenu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.mobilemenu .mobilemenulink {
    width: 250px;
    height: 50px;
    display: block;
    line-height: 50px;
    font-size: 25px;
    padding: 0 20px;
    background: #323232;
    border: 2px solid #0c0c0c;
    font-family: "Martel", serif;
    color: #ffffffeb;
    position: relative;
    text-transform: Capitalize;
}

.mobilemenu .mobilemenulink.active {
    background: #3d3d3d;
    color: #ffc955;
}

.mobilemenu .mobilemenulink::after {
  content: "\2b";
    position: absolute;
     color: #fffc55;
    height: 25px;
    width: 25px;
    line-height: 25px;
    font-size: 20px;
    text-align: center;
    right: 10px;
    top: 10px;
    font-family: 'fontawesome';
    background: linear-gradient(#86e769, #3acb00, #1e6e22);
    border: 1px solid #ffcb0f;
    border-radius: 5px;
    text-shadow: 0 1px 2px #000;
    box-shadow: 0 0 2px #000 inset;
}

.mobilemenu .mobilemenulink.active::After {
    content: "\f00d";
    color: #ffc955;
    background: linear-gradient(#e76969, #cb1e00, #6e1e1e);
}

.mobilemenu ul {
    list-style: none;
    width: 250px;
    margin: 0;
    padding: 0;
    display: none;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}

.mobilemenu ul li a {
    width: 100%;
    display: block;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    font-weight: 500;
    background: rgb(24, 24, 24);
}

.mobilemenu ul li a.active {
    background: rgb(92 75 37);
    color: #fff;
}
.mobilefog {
    display: none;
}

@media only screen and (max-width: 1196px) {
    body{
        background-size: 135%;
    }
  .col-side, .parallax-container {
    display: none;
  }
  .hide-mobile{
    display: none !important;
  }
  .col-middle {
    width: 100%;
    margin: 0 5px;
  }

  .container {
    width: 100%;
  }

  .nav .right {
    display: none;
    position: absolute;
  }
  .container.main {
    margin: 140px auto 50px auto;
  }

  .mobilenav {
    display: flex;
  }
  .logo{
    display: none !important;
  }
  .mobilefog {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: 300%;
}
}
#tooltip {
    position: fixed;
    z-index: 50;
    padding: 0;
    background: transparent;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.2s;
    transform: translate(15px, -15px);
}
#tooltip.active {
    opacity: 1;
}
.tooltip-paper {
border-image: url(img/paper.png) 9 fill;
    border-image-width: 9px;
    border-width: 9px;
    border-style: solid;
    border-radius: 0;
    filter: drop-shadow(0 2px 5px #000000b6);
    color: var(--middle-txt-color);
    padding: 5px;
    max-width: 250px;
    font-size: 12px;
}
.tooltip-paper p{
    margin: 0;
}
.tooltip-paper .label{
    background: #0002;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 900;
    font-size: 9px;
    color: #0e0e0e;
    margin: 0 3px 0 0;
    text-shadow: 0 0 0 transparent;
    background: #dff277;
    border: 1px solid #62512c;
}
.tibiatext{
    font-weight: bold;
    text-shadow: var(--text-shadow-outline);
    text-decoration: none !important;
}
.tibiatext:hover{
    text-decoration: none !important;
}
.tooltip-paper .title{
    font-size: 14px;
    border-bottom: 1px solid #0004;
}
.tibiatext.green{
    color: #00F000;
}

.news-text::first-letter {
    font-family: 'Martel';
    font-size: 37px;
    text-transform: uppercase;
    color: #5a0000;
    line-height: 0.7;
    margin-right: 2px;
}
html.supports-webm-alpha #dragonVideo,
html.supports-webm-alpha #logoVideo {
    display: block;
}
.logo.is-loaded {
    background-image: none !important;
}
.dragon-bg.is-loaded {
    background: none !important;
}
.btn-container{
    display: flex;
    justify-content: space-around;
}
.server-timer{
    
}
.server-timer{
    text-align: center;
    background: #00b1cf1c;
    border-radius: 3px;
    border: 1px solid #00000029;
    padding: 5px;
}
.timer-label{
    display: block;
    font-size: 16px;
    font-weight: bold;
    font-family: "Martel";
    background-image: linear-gradient(360deg, rgb(29 120 116), rgb(0 68 135));
    color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 0 rgba(255, 238, 144, 0.76)) drop-shadow(0 -1px 0 rgba(46, 20, 5, 0.185));
}
#countdown{
padding: 5px 0;
    text-align: center;
    font-size: 19px;
    color: #fff3c6;
    font-weight: 900;
    background-image: linear-gradient(360deg, rgb(189 122 0), rgb(86 74 0));
    color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 0 rgba(255, 238, 144, 0.76)) drop-shadow(0 -1px 0 rgba(46, 20, 5, 0.185));
}
.timer-label{
    display: block;
    font-size: 16px;
    font-weight: bold;
    font-family: "Martel";
    background-image: linear-gradient(360deg, rgb(29 120 116), rgb(0 68 135));
    color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 0 rgba(255, 238, 144, 0.76)) drop-shadow(0 -1px 0 rgba(46, 20, 5, 0.185));
}
.events-timer{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.event-item{
    background: linear-gradient(45deg, #ebc4a3 50%, #c3a185 90%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-shadow: 0 1px 0px #ffffff52;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ffffff57;
    outline: 1px solid #00000070;
}
.event-item.orchid{background: linear-gradient(45deg, #ebc4a3 50%, #d791be 90%);box-shadow: 0 0 7px #d87db7 inset;}
.event-item.orchid .event-title{color: #7e007a;}

.event-item.brown{background: linear-gradient(45deg, #ebc4a3 50%, #cf8d54 90%);box-shadow: 0 0 7px #d79441 inset;}
.event-item.brown .event-title{color: #7e4700;}

.event-item.red{background: linear-gradient(45deg, #ebc4a3 50%, #d37676 90%);box-shadow: 0 0 7px #d87d7d inset;}
.event-item.red .event-title{color: #7e0000;}

.event-item.gray{background: linear-gradient(45deg, #ebc4a3 50%, #ada49d 90%);box-shadow: 0 0 7px #0000005e inset;}
.event-item.gray .event-title{color: #4c4c4c;}



.event-title{
    font-size: 14px;
    font-weight: 700;
    color: #3e1c0b;
}
.event-timer{
    color: #322213d6;
    font-weight: 500;
    font-size: 12px;
}
.events-timer{

}