/* Hoja única compatible con navegadores Chromium antiguos / Awesomium */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    background: #080d13;
    color: #e8edf2;
    font-family: Arial, "Segoe UI", sans-serif;
    font-size: 14px;
}

a { color: #d7b45a; }

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    overflow: hidden;
    background: #111820;
    border-bottom: 1px solid #33404d;
    box-shadow: 0 4px 16px rgba(0,0,0,.45);
    z-index: 20;
}

.topbar:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #b88a35;
}

.topbar-inner {
    position: relative;
    width: 100%;
    height: 82px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    position: absolute;
    top: 10px;
    left: 25px;
    height: 62px;
    white-space: nowrap;
}

.brand img {
    display: inline-block;
    width: 58px;
    height: 58px;
    vertical-align: middle;
}

.brand-text {
    display: inline-block;
    margin-left: 11px;
    vertical-align: middle;
}

.brand-text h1 {
    color: #f4f0e5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 27px;
    letter-spacing: 1px;
}

.brand-text span {
    display: block;
    color: #8d9aa7;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.main-nav {
    position: absolute;
    top: 20px;
    right: 24px;
    height: 44px;
    white-space: nowrap;
}

.main-nav a {
    display: inline-block;
    height: 42px;
    margin-left: 3px;
    padding: 0 15px;
    border: 1px solid transparent;
    color: #aab3bd;
    font-size: 13px;
    line-height: 42px;
    text-decoration: none;
    vertical-align: top;
}

.main-nav a:hover, .main-nav a.active {
    color: #fff;
    background: #1d2731;
    border-color: #3b4855;
}

.main-nav a.active {
    border-bottom: 2px solid #d0a34d;
}

.app-container {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 258px;
    overflow: hidden;
    background: #10171f;
    border-right: 1px solid #2d3945;
    z-index: 10;
}

.sidebar-head { display: none; }

.sidebar-scroll {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 17px 35px;
    overflow-x: hidden;
    overflow-y: auto;
}

.menu-group { margin-bottom: 20px; }

.menu-title {
    display: block;
    width: 100%;
    padding: 10px 9px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #2b3540;
    color: #d6dce2;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
}

.menu-icon {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    background: #293541;
    color: #d7b45a;
    line-height: 19px;
    text-align: center;
}

.submenu { display: none; padding-top: 5px; }
.submenu.open { display: block; }

.submenu a {
    display: block;
    position: relative;
    margin: 3px 0;
    padding: 9px 8px 9px 25px;
    border-left: 2px solid transparent;
    color: #96a3af;
    font-size: 13px;
    text-decoration: none;
}

.submenu a:before {
    content: "›";
    position: absolute;
    left: 10px;
    color: #596979;
}

.submenu a:hover, .submenu a.active {
    background: #1c2731;
    border-left-color: #d1a44d;
    color: #fff;
}

.submenu a.active:before { color: #e0b761; }

.submenu-empty {
    display: block;
    padding: 10px 8px 8px 25px;
    color: #667583;
    font-size: 11px;
    font-style: italic;
}

.event-category {
    margin: 8px 0 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid #25313b;
}

.event-category:last-child {
    border-bottom: 0;
}

.event-category-title {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 4px 5px;
    padding: 8px 9px;
    background: #18232c;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 2px solid #b88c3c;
    color: #d9b96f;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .7px;
    text-align: left;
    text-transform: uppercase;
}

.event-category-title:hover,
.event-category-title.open {
    background: #202d37;
    color: #f1cc7c;
}

.event-category-arrow {
    position: absolute;
    top: 7px;
    right: 9px;
    color: #83919d;
    font-size: 13px;
}

.event-category-links {
    display: none;
}

.event-category-links.open {
    display: block;
}

.event-category a {
    padding-left: 31px;
}

.event-category a:before {
    left: 16px;
}

.server-box {
    margin: 28px 4px 0;
    padding: 13px;
    background: #151f28;
    border: 1px solid #2c3945;
    color: #dce3e8;
    font-size: 12px;
}

.server-box small {
    display: block;
    margin: 6px 0 0 19px;
    color: #758493;
    font-size: 10px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    background: #53c47b;
    border-radius: 50%;
}

.content {
    position: absolute;
    top: 0;
    left: 258px;
    right: 0;
    bottom: 0;
    padding: 28px 34px 45px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #090f15 url("../img/banner.jpg") no-repeat center 18%;
    background-size: cover;
}

.content:before {
    content: "";
    position: fixed;
    top: 82px;
    left: 258px;
    right: 0;
    bottom: 0;
    background: rgba(5,10,15,.86);
    pointer-events: none;
}

.content-inner {
    position: relative;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    z-index: 2;
}

.page-title {
    margin-bottom: 22px;
    padding-bottom: 13px;
    border-bottom: 1px solid #34404b;
}

.page-title small {
    display: block;
    margin-bottom: 6px;
    color: #c99e4d;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-title h2 {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: normal;
}

.lead {
    max-width: 780px;
    color: #aeb9c3;
    font-size: 14px;
    line-height: 1.65;
}

.hero {
    position: relative;
    min-height: 132px;
    margin-bottom: 22px;
    padding: 27px 30px;
    background: rgba(17,26,35,.94);
    border: 1px solid #35424e;
    border-left: 3px solid #c79a45;
}

.hero h2 {
    margin-bottom: 9px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: normal;
}

.hero p {
    max-width: 700px;
    color: #aeb8c2;
    line-height: 1.6;
}

.section-heading {
    margin: 27px 0 13px;
    color: #e8edf2;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.card-row {
    width: 100%;
    overflow: hidden;
}

.info-card {
    float: left;
    width: 31.5%;
    min-height: 145px;
    margin-right: 2.75%;
    padding: 18px;
    background: rgba(19,29,38,.95);
    border: 1px solid #303d49;
}

.info-card.last { margin-right: 0; }

.info-card .number {
    color: #d2a750;
    font-family: Georgia, serif;
    font-size: 24px;
}

.info-card h3 {
    margin: 8px 0;
    color: #f2f4f5;
    font-size: 15px;
}

.info-card p {
    color: #8f9da9;
    font-size: 12px;
    line-height: 1.5;
}

.home-page .hero {
    min-height: 94px;
    margin-bottom: 13px;
    padding: 17px 26px;
}

.home-page .hero h2 {
    margin-bottom: 5px;
    font-size: 25px;
}

.home-page .hero p {
    line-height: 1.4;
}

.home-page .section-heading {
    margin: 14px 0 9px;
    font-size: 14px;
}

.home-page .info-card {
    min-height: 103px;
    padding: 11px 15px;
}

.home-page .info-card .number {
    font-size: 19px;
}

.home-page .info-card h3 {
    margin: 4px 0;
    font-size: 14px;
}

.home-page .info-card p {
    line-height: 1.35;
}

.news-list, .event-list {
    border-top: 1px solid #34404a;
}

.news-item {
    position: relative;
    min-height: 92px;
    padding: 17px 20px 16px 132px;
    background: rgba(17,26,34,.94);
    border: 1px solid #303b46;
    border-top: 0;
}

.news-meta {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 95px;
}

.news-meta span {
    display: block;
    color: #c99e4d;
    font-size: 9px;
    letter-spacing: .8px;
}

.news-meta time {
    display: block;
    margin-top: 7px;
    color: #71808e;
    font-size: 10px;
}

.news-item h3 { margin-bottom: 7px; color: #eef1f3; font-size: 15px; }
.news-item p { color: #96a3ae; font-size: 12px; line-height: 1.5; }

.event-item {
    position: relative;
    min-height: 54px;
    padding: 0 110px 0 82px;
    background: rgba(17,26,34,.94);
    border: 1px solid #303b46;
    border-top: 0;
    line-height: 53px;
}

.event-time {
    position: absolute;
    left: 17px;
    color: #d7ad58;
    font-weight: bold;
}

.event-status {
    position: absolute;
    top: 15px;
    right: 16px;
    padding: 4px 8px;
    background: #253440;
    color: #9eabb6;
    font-size: 9px;
    line-height: 14px;
    text-transform: uppercase;
}

.guide-box {
    margin-bottom: 13px;
    padding: 18px 20px;
    background: rgba(18,27,36,.95);
    border: 1px solid #303c48;
}

.guide-box h3 { margin-bottom: 9px; color: #e9edf0; font-size: 15px; }
.guide-box p, .guide-box li { color: #9da9b4; font-size: 13px; line-height: 1.65; }
.guide-box ul { margin-left: 20px; }

.command {
    display: inline-block;
    min-width: 145px;
    color: #d7ad58;
    font-family: Consolas, "Courier New", monospace;
}

.notice {
    margin-top: 18px;
    padding: 13px 16px;
    background: #17232c;
    border-left: 3px solid #4f8fb7;
    color: #aab5be;
    font-size: 12px;
    line-height: 1.5;
}

.gitbook-content {
    margin-top: 22px;
    padding: 21px 23px;
    background: rgba(17,26,34,.95);
    border: 1px solid #303c47;
    color: #aeb8c1;
    font-size: 13px;
    line-height: 1.65;
}

.gitbook-content h2,
.gitbook-content h3,
.gitbook-content h4 {
    margin: 25px 0 11px;
    color: #eef1f3;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
}

.gitbook-content h2:first-child,
.gitbook-content h3:first-child { margin-top: 0; }
.gitbook-content h2 { font-size: 22px; }
.gitbook-content h3 { font-size: 18px; color: #e2bc70; }
.gitbook-content h4 { font-size: 15px; }
.gitbook-content p { margin: 0 0 13px; }
.gitbook-content ul { margin: 0 0 16px 22px; }
.gitbook-content ol { margin: 0 0 16px 25px; }
.gitbook-content li { margin-bottom: 6px; }
.gitbook-content code {
    padding: 2px 5px;
    background: #0b1218;
    color: #e2b760;
    font-family: Consolas, "Courier New", monospace;
}
.gitbook-content pre {
    margin: 15px 0;
    padding: 14px;
    overflow: auto;
    background: #090f14;
    border: 1px solid #2d3943;
}

.guide-image {
    margin: 16px 0 21px;
    padding: 7px;
    background: #0b1218;
    border: 1px solid #34414c;
    text-align: center;
}

.guide-image-followup {
    margin-top: 11px;
}

.gitbook-content img {
    display: inline-block;
    width: auto;
    max-width: 280px;
    max-height: 220px;
    height: auto;
    cursor: pointer;
    vertical-align: middle;
}

@media screen and (max-width: 800px) {
    .gitbook-content img {
        max-width: 100%;
    }
}

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    cursor: pointer;
    table-layout: fixed;
    z-index: 9999;
}

.image-lightbox.open {
    display: block;
}

.image-lightbox-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.image-lightbox img {
    display: block;
    position: absolute;
    top: 28px;
    left: 28px;
    width: auto;
    height: auto;
    max-width: 92%;
    max-height: 86%;
    background: #0b1218;
    border: 2px solid #c69a48;
    box-shadow: 0 8px 35px rgba(0,0,0,.8);
    vertical-align: middle;
}

.image-lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 68px;
    height: 32px;
    background: #18232c;
    border: 1px solid #586673;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.source-link { color: #d3ac5c; }

.external-link {
    display: inline-block;
    margin: 5px 0;
    padding: 10px 15px;
    background: #5865f2;
    border: 1px solid #7580f5;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.external-link:hover {
    background: #6d78f5;
    color: #fff;
}

.external-link.payment-link {
    margin-top: 16px;
    background: #a9792e;
    border-color: #d0a552;
}

.external-link.payment-link:hover {
    background: #bd8b38;
}

.table-scroll { width: 100%; margin: 15px 0 21px; overflow-x: auto; }
.guide-table {
    width: 100%;
    border-collapse: collapse;
    color: #aeb8c1;
    font-size: 12px;
}
.guide-table th {
    padding: 10px 11px;
    background: #202c36;
    border: 1px solid #3a4650;
    color: #e7edf1;
    text-align: left;
}
.guide-table td {
    padding: 9px 11px;
    background: #121b23;
    border: 1px solid #303b45;
    vertical-align: top;
}

.legacy-card-grid {
    width: 100%;
    margin: 15px 0 21px;
    overflow: hidden;
}

.legacy-card {
    float: left;
    width: 48.5%;
    min-height: 92px;
    margin: 0 3% 11px 0;
    padding: 13px 15px;
    background: #121c24;
    border: 1px solid #34414c;
    border-left: 2px solid #c59a49;
}

.gitbook-content img.legacy-card-image {
    float: left;
    width: 92px !important;
    max-width: 92px !important;
    height: 92px !important;
    max-height: 92px !important;
    margin: 0 12px 2px 0;
    border: 1px solid #3b4854;
    background: #0b1218;
    cursor: pointer;
}

.legacy-card-body {
    overflow: hidden;
}

.legacy-card-inner-clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

.legacy-card.even {
    margin-right: 0;
}

.legacy-card strong {
    display: block;
    margin-bottom: 7px;
    color: #e4bd70;
    font-size: 13px;
}

.legacy-card span {
    display: block;
    color: #a9b3bc;
    font-size: 12px;
    line-height: 1.45;
}

.legacy-card-clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

.sidebar-scroll::-webkit-scrollbar, .content::-webkit-scrollbar { width: 7px; }
.sidebar-scroll::-webkit-scrollbar-track, .content::-webkit-scrollbar-track { background: #0e151c; }
.sidebar-scroll::-webkit-scrollbar-thumb, .content::-webkit-scrollbar-thumb { background: #3b4854; }

@media screen and (max-width: 850px) {
    .brand-text span { display: none; }
    .brand-text h1 { font-size: 19px; }
    .main-nav a { padding: 0 8px; font-size: 12px; }
    .sidebar { width: 220px; }
    .content { left: 220px; padding: 23px; }
    .content:before { left: 220px; }
    .info-card { float: none; width: 100%; min-height: 0; margin: 0 0 10px; }
}
