```css
/* =========================================================
   FUENTES
   ========================================================= */

@font-face {
    font-family: FaceYourFears;
    src: url('../fonts/FaceYourFears.ttf');
}

@font-face {
    font-family: GeosansLight;
    src: url('../fonts/GeosansLight.ttf');
}

@font-face {
    font-family: Quantify;
    src: url('../fonts/Quantify.ttf');
}

@font-face {
    font-family: Square;
    src: url('../fonts/Square.ttf');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    src: local('Cinzel Regular'),
         local('Cinzel-Regular'),
         url('https://fonts.gstatic.com/s/cinzel/v7/8vIJ7ww63mVu7gt79mT7.woff2') format('woff2');
}


/* =========================================================
   GENERAL
   ========================================================= */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    min-width: 1000px;
    height: 100%;
    cursor: url('../img/cursor_normal.cur'), auto;
}

body {
    background: #181818;
    color: #f5f5f5;
    font-family: 'Source Sans Pro', sans-serif;
    cursor: url('../img/cursor_normal.cur'), auto;
    font-size: 14px;
    margin: 0;
    height: 100%;
}

body.hidden-body {
    overflow: hidden;
}

a {
    color: #59a1f4;
    cursor: url('../img/cursor_normal.cur'), auto;
    text-decoration: none;

    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:hover,
a:focus {
    color: #ffda8a;
    cursor: url('../img/cursor_link.cur'), auto;
    text-decoration: none;
}

img {
    border: 0;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    border-top: none !important;
}


/* =========================================================
   FORMULARIOS
   ========================================================= */

.form-control {
    background: #fafafa;
    border: 1px solid #e3e3e3;
    color: #666;
}

.form-control:focus {
    border: 1px solid #ccc;
}

input[type=text],
input[type=password],
input[type=number] {
    background: #191919;
    border: 1px solid #272727;
    color: #f5f5f5;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus {
    border: 1px solid #ccc;
}


/* =========================================================
   UTILIDADES
   ========================================================= */

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.thumbnail {
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #568792;
}


/* =========================================================
   BOTONES
   ========================================================= */

.btn-primary {
    color: #f5f5f5;
    background-color: #2489ca !important;
    border-color: #5b95dc;

    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;

    -moz-border-radius: 5px;
    border-radius: 5px;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #2489ca !important;
    background-color: #f5f5f5 !important;
    border-color: #2489ca !important;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar-inverse {
    background-color: #176093;
}

.navbar-inverse .navbar-nav > li > a,
.top-nav > li > a {
    color: #e4f4ff;
}

.navbar-brand {
    padding: 4px 35px;
}

.contentpadding {
    padding: 10px 0 50px 0;
}

.navbar-top-links li {
    display: inline-block;
}

.navbar-top-links li a {
    padding: 15px;
    min-height: 50px;
    color: #428bca;
}

.navbar-top-links li:last-child {
    margin-right: 15px;
}

.navbar-top-links .dropdown-menu li a div {
    white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
    width: 310px;
    min-width: 0;
}

.navbar-top-links .dropdown-messages {
    margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
    margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
    margin-left: -123px;
}

.navbar-top-links .dropdown-user {
    right: 0;
    left: auto;
}

@media (min-width: 768px) {
    .navbar-right {
        float: right !important;
        margin: 0;
    }
}


/* =========================================================
   LOADER
   ========================================================= */

.container_carga {
    background-color: #181818;
    height: 100%;
    width: 100%;
    position: fixed;
    display: flex;

    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;

    z-index: 10000;
}

.cargando-blue {
    border-top-color: #2489ca;
    border-top-style: groove;
    height: 230px;
    width: 230px;
    border-radius: 50%;
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    margin: auto;

    -webkit-animation: girar_blue 1s linear infinite;
    -o-animation: girar_blue 1s linear infinite;
    animation: girar_blue 1s linear infinite;
}

.cargando-white {
    border-top-color: #f1f1f1;
    border-top-style: groove;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    margin: auto;

    -webkit-animation: girar_white 1s linear infinite;
    -o-animation: girar_white 1s linear infinite;
    animation: girar_white 1s linear infinite;
}

.logoloader {
    height: 190px;
    width: 190px;

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    margin: auto;

    -webkit-animation: logoloader 1.5s linear infinite;
    -o-animation: logoloader 1.5s linear infinite;
    animation: logoloader 1.5s linear infinite;
}

.container_carga.hidden {
    animation: fadeOut 3s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes logoloader {
    0% {
        transform: scale(0.85);
    }

    20% {
        transform: scale(0.87);
    }

    40% {
        transform: scale(0.89);
    }

    60% {
        transform: scale(0.91);
    }

    80% {
        transform: scale(0.93);
    }

    100% {
        transform: scale(0.85);
    }
}

@keyframes girar_blue {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes girar_white {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =========================================================
   HEADER
   ========================================================= */

#header {
    width: 100%;
    min-width: 1000px;
    height: 450px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    color: #fff;

    background: transparent url('../img/header.jpg') no-repeat center center / cover;

    position: relative;
}

@media only screen and (min-width: 1000px) {
    #header > #headervideo {
        position: relative;
        top: -50px;
    }
}

@media only screen and (min-width: 1300px) {
    #header > #headervideo {
        position: relative;
        top: -100px;
    }
}

@media only screen and (min-width: 2000px) {
    #header > #headervideo {
        position: relative;
        top: -150px;
    }
}

#header > .video-shadow {
    background: url('../img/bg_shadow.png') repeat;
    position: absolute;
    width: 100%;
    height: 300px;
    z-index: 1;
}

#header > .header-content-container {
    z-index: 2;
    position: absolute;
    top: 50px;
    width: 100%;
    height: 300px;
}

#header > .header-content-container > .header-content {
    width: 1000px;
    height: 300px;
    margin: 0 auto;
}

#header > .header-front {
    z-index: 2;
}

.site-logo {
    margin-top: 100px;
}


/* =========================================================
   LOGO PRINCIPAL
   ========================================================= */

/*
   IMPORTANTE:
   El logo ya NO ocupa el 100% de la pantalla.
   Se controla por ancho y queda centrado.
*/

#headerLogo {
    width: auto;
    height: 300px;
    max-width: 90%;
    margin: 55px auto 0 auto;
    display: block;
}


/*
   LogoTL:
   posici¨Žn del logo sobre la parte inferior del header.
*/

.LogoTL {
    position: absolute;
    top: 345px;
    left: 0;
    width: 100%;
    height: 120px;

    z-index: 5;
    text-align: center;

    pointer-events: none;
}

.LogoTL img {
    width: 320px;
    max-width: 90%;
    height: auto;

    display: inline-block;
    margin: 0 auto;
}


/* =========================================================
   BARRA DEL HEADER
   ========================================================= */

.Barra {
    background: #1d1d1d;

    position: absolute;

    width: 100%;
    height: 50px;

    top: 445px;

    z-index: 3;

    content: '';

    box-shadow:
        0 3px 0 0 #2489ca,
        0 -30px 0 0 #0000004f;
}


/* =========================================================
   HEADER ELEMENTS
   ========================================================= */

.HeaderTL {
    position: absolute;
    top: 50px;
    z-index: 1;
    width: 100%;
}

.BarraHoraLang {
    position: absolute;
    top: 450px;
    z-index: 10;

    width: 1280px;

    margin-left: auto;
    margin-right: auto;

    left: 0;
    right: 0;
}

.Horario {
    width: 1150px;
    margin-top: -2px;
    margin-left: 5%;
}

.LanTL {
    width: 1280px;
    margin-top: 5px;
    padding-right: 10px;
}

.LanTL img {
    border-radius: 10%;
}

.TextoHeader {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 5px;

    width: 480px;

    margin-right: 25%;

    border-radius: 10px;

    z-index: 10;
}


/* =========================================================
   MARQUEE
   ========================================================= */

#marqueee {
    z-index: 2;
    color: #f5f5f5 !important;

    text-shadow: 1px 1px #565656;

    width: 1150px;
    height: 50px;

    top: 415px;
    left: 50%;

    margin-left: -575px;

    position: absolute;

    font-size: 20px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

#navbar {
    background: #171717;

    z-index: 3;

    width: 100%;
    height: 50px;

    position: absolute;

    box-shadow:
        0 10px 0 0 #0000004f,
        0 0 0 0 #0000004f;
}

#navbar ul {
    text-align: center;
    margin: 0;
    -webkit-padding-start: 0;
}

#navbar ul li {
    font-family: 'Source Sans Pro', sans-serif;
    list-style-type: none;
    display: inline-block;

    font-size: 16px;
    margin: 0 15px;
}

#navbar ul li a {
    display: inline-block;

    color: #f5f5f5 !important;
    text-decoration: none;

    text-shadow: 1px 1px #565656;

    padding: 15px;
}

#navbar ul li a:active,
#navbar ul li a:focus,
#navbar ul li a:hover {
    color: #ffffff !important;
    text-decoration: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

#container {
    width: 1280px;
    height: auto;

    margin: 0 auto;
    padding: 20px 0;

    background: #1d1d1d;
    border: 1px solid #222222;
}

#content {
    width: 100%;
    overflow: auto;

    min-height: 500px;

    padding-top: 20px;
    padding-bottom: 20px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    margin-top: 20px;

    font-family: Orbitron, sans-serif;
    font-size: 14px;

    color: #f1f1f1;

    padding: 20px 0;

    background: #1d1d1d;

    overflow: auto;

    border-top: 1px solid #252525;
}

.footer > .footer-container {
    width: 1000px;
    margin: 0 auto;
}


/*
   Logo del footer:
   Evita que el logo vuelva a ocupar una parte
   enorme de la pantalla.
*/

.footer img {
    max-width: 360px;
    width: 100%;
    height: auto;
}

.creditos-footer {
    font-family: Orbitron, sans-serif;
    font-size: 15px;
    color: #f1f1f1;
    text-align: left;
}

.footer-time {
    font-size: 20px;

    color: #2489ca;
    font-weight: bold;

    position: relative;
    top: -10px;

    text-shadow:
        -1px -1px 0 #252525,
        1px -1px 0 #252525,
        -1px 1px 0 #252525,
        1px 1px 0 #252525;

    font-family: Orbitron, sans-serif;
}


/* =========================================================
   CASTLE SIEGE
   ========================================================= */

.csinfo_container {
    background: url('../img/castle_siege.jpg') no-repeat top right;
    background-size: cover;

    width: 100%;
    height: 200px;

    padding: 20px;

    margin-bottom: 20px;

    border: 1px solid #333;

    -moz-box-shadow: 0 0 10px #555;
    -webkit-box-shadow: 0 0 10px #555;
    box-shadow: 0 0 10px #555;

    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.csinfo_content {
    width: 100%;
    height: 180px;

    margin: 10px 0 0 10px;

    display: inline-block;
}

.csinfo_glogo {
    float: left;
    width: 30%;
    height: 180px;
    text-align: center;
}

.csinfo_ginfo {
    float: left;
    width: 70%;
    padding: 0 10px;
}

.csinfo_ginfo table {
    table-layout: fixed;
    width: 400px;
}

.csinfo_ginfo table tr td {
    padding: 3px 0;
    font-size: 20px;
    color: #fff;
}

.csinfo_ginfo table tr td:first-child {
    color: #9a7e46;
}

.csinfo_glist {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.csinfo_glist li {
    float: left;
    width: 30%;
    padding: 8px 10px;
}

.csinfo_glist li:hover {
    background: #0d0c0b;
}

.castle-siege-banner {
    width: 95%;

    font-size: 27px;

    background: transparent url('../img/cs.jpg') no-repeat center center / cover;

    margin: 0 auto;
    padding: 30px;

    border: 2px solid #252525;

    overflow: auto;

    font-family: GeosansLight;
    color: #fff;

    -moz-border-radius: 10px;
    border-radius: 10px;

    text-align: center;
    text-shadow: 1px 1px #000;
}

.castle-siege-banner img {
    border-radius: 40px;
}

.castle-siege-banner .guild_countdown {
    font-size: 30px !important;
    color: #2489ca;

    text-transform: uppercase;
    font-weight: 600;
}

.cs-guild-title {
    color: #2489ca;
    font-size: 58px;

    text-shadow: 1px 1px #000;

    font-family: Quantify;
}

.cs-guild-guildowner,
.cs-guild-guildowner-2 {
    background-color: #2489ca;
    color: #fff;

    font-weight: bold;
    font-size: 16px;

    position: relative;

    padding: 10px;

    border-radius: 8px;

    box-shadow: 2px 2px #1f1f1f;
}

.cs-guild-guildowner {
    top: -15px;
}

.cs-timeleft {
    font-family: Quantify;
    font-size: 62px;

    color: #fff;

    text-shadow: 2px 2px #1f1f1f;
}

.cs-timeleft span {
    color: #2489ca;
    text-shadow: 2px 2px #1f1f1f;
}


/* =========================================================
   GENERAL PANELS
   ========================================================= */

.panel-general {
    margin-bottom: 30px;

    background: #232323;

    border: 1px solid #e3e3e3;

    -moz-border-radius: 0;
    border-radius: 0;

    color: #333;
}

.panel-body {
    background: #202020;
    color: #fefefe;

    border: #252525 1px solid;
}

.panel-body .panel-title,
.panel-body .Sub-panel-title {
    color: #1b5cac;

    font-family: 'Square', Arial, serif;

    font-size: 18px;

    text-align: center;

    border-bottom: 1px solid #5b95dc;

    margin-bottom: 20px !important;

    font-weight: bold;
}


/* =========================================================
   NEWS
   ========================================================= */

.panel-news {
    margin-bottom: 30px;

    color: #333;

    border: 1px solid #1e1e1e;
}

.panel-news .panel-heading {
    padding-top: 10px;
    padding-bottom: 10px;

    font-family: 'Square', Arial, serif;

    background: #1d1d1d;

    border-bottom: 4px solid #2489ca;
}

.panel-news .panel-title {
    color: #fdfffc;

    font-family: Orbitron, sans-serif;

    font-size: 20px;
}

.panel-news .panel-footer {
    border-top: 2px solid #2489ca;

    background: #202020;

    font-size: 11px;

    height: 40px;

    color: #fdfffc;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.page-title {
    color: #fdfffc;

    font-family: Orbitron, sans-serif;

    text-transform: uppercase;
    font-weight: 600;

    font-size: 25px;

    text-align: center;

    background: #1d1d1d;

    border-bottom: 3px solid #2489ca;
}

.admincp-button {
    position: absolute;
    top: 10px;
    right: 10px;
}


/* =========================================================
   RANKINGS
   ========================================================= */

.rankings-table {
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;

    table-layout: fixed;

    text-align: center;

    border: 1px solid #1e1e1e;
}

.rankings-table img {
    width: 30px;
    height: auto;

    -moz-border-radius: 50%;
    border-radius: 50%;
}

.rankings-table-place {
    color: #2489ca;

    font-weight: bold;
    font-size: 25px;

    text-align: center;
}

.rankings-table tr:nth-child(2) {
    background: #252525;
    color: #fff;
}

.rankings-table tr:nth-child(2) .rankings-table-place {
    font-size: 38px;
}

.rankings-table tr td {
    border-bottom: 1px solid #252525;

    padding: 10px;

    font-size: 19px;

    vertical-align: middle !important;
}

.rankings-table tr:first-child td {
    color: #fdfffc;

    background: #1d1d1d;

    border-bottom: 3px solid #2489ca;

    font-family: Orbitron, sans-serif;
}

.rankings-table tr:nth-child(1n+2):hover {
    background: #252525 !important;
    color: #f1f1f1;

    cursor: pointer;
}

.rankings-update-time {
    text-align: right;

    font-size: 15px;
    color: #f5f5f5;

    padding: 10px 0;
}

.rankings_menu {
    width: 100%;
    overflow: auto;
    text-align: center;
}

.rankings_menu span {
    width: 100%;

    display: inline-block;

    padding: 10px 0;

    color: #2489ca;

    font-size: 24px;
}

.rankings_menu a {
    display: inline-block;

    width: 150px;

    border: 1px solid #252525;

    text-align: center;

    padding: 2px 0;
    margin: 2px;

    background: #202020;

    -moz-border-radius: 2px;
    border-radius: 2px;

    color: #fdfffc;

    font-size: 12px;

    font-family: Orbitron, sans-serif;
}

.rankings_menu a.active {
    color: #ffffff;

    border-color: #272727;

    border-radius: 5px;

    background: #2489ca;

    font-size: 12px;
}

.rankings_guild_logo tr td {
    border: 0 !important;

    padding: 0 !important;
    margin: 0 !important;
}

.rankings-gens-img {
    width: 50px !important;
    height: auto !important;

    border: 0 !important;

    -moz-box-shadow: 0 0 0 #000 !important;
    -webkit-box-shadow: 0 0 0 #000 !important;
    box-shadow: 0 0 0 #000 !important;

    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}


/* =========================================================
   OCULTAR FILTRO DE CLASES
   ========================================================= */

.rankings-class-filter {
    display: none !important;
}


/* =========================================================
   MY ACCOUNT
   ========================================================= */

.myaccount-table {
    width: 100%;

    background: #202020;

    border: 1px solid #252525;
}

.myaccount-table tr td:first-child {
    color: #f5f5f5;
    font-weight: bold;
}

.myaccount-table tr td {
    color: #666;

    border-bottom: 1px solid #252525;

    padding: 15px !important;
}

.myaccount-table tr:last-child td {
    border: 0;
}


/* =========================================================
   GENERAL TABLE
   ========================================================= */

.general-table-ui {
    width: 100%;

    table-layout: fixed;

    background: #202020;

    padding: 10px;
    margin: 10px 0;

    border: 1px solid #252525;
}

.general-table-ui tr td {
    padding: 5px;

    vertical-align: middle !important;

    text-align: center;
}

.general-table-ui tr:first-child td {
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.general-table-ui tr:nth-child(2n+2) td {
    background: #2d2d2d;
}

.general-table-ui img {
    width: 50px;
    height: auto;

    -moz-box-shadow: 0 0 5px #666;
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;

    -moz-border-radius: 0;
    border-radius: 0;
}


/* =========================================================
   USER CP
   ========================================================= */

.panel-usercp {
    background: url('../img/usercp_bg.jpg') no-repeat top center;
}

.panel-usercp ul {
    list-style-type: none;

    padding: 0;
    margin: 0;
}

.panel-usercp ul li {
    display: table;

    width: 100%;

    vertical-align: middle;

    line-height: 30px;
}

.panel-usercp ul li a {
    color: #f5f5f5 !important;
    font-weight: bold;
}

.panel-usercp ul li a:active,
.panel-usercp ul li a:hover {
    color: #2489ca !important;
}

.panel-usercp ul li img {
    position: relative;

    top: -2px;

    padding-right: 10px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.panel-sidebar {
    background: #f1f1f1;

    -moz-border-radius: 0;
    border-radius: 0;

    border: 1px solid #1e1e1e;
}

.panel-sidebar > .panel-heading {
    background: #1d1d1d;

    color: #fdfffc;

    font-size: 16px;

    font-family: 'Square', Arial, serif;

    -moz-border-radius: 0;
    border-radius: 0;

    border-bottom: #2489ca 3px solid;
}

.sidebar-banner {
    text-align: center;

    background: #202020;

    margin: 20px 0;

    border-radius: 5px;

    border: 1px solid #272727;
}

.sidebar-banner img {
    border: 0;

    -moz-border-radius: 2px;
    border-radius: 2px;
}


/* =========================================================
   ADD STATS
   ========================================================= */

.panel-addstats {
    margin-bottom: 30px;

    background: #f1f1f1;

    border: 1px solid #252525;

    -moz-border-radius: 0;
    border-radius: 0;

    color: #333;
}

.panel-addstats .character-avatar img {
    width: 100px;
    height: auto;

    -moz-box-shadow: 0 0 5px #666;
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;

    -moz-border-radius: 0;
    border-radius: 0;
}

.panel-addstats .character-name {
    color: #f5f5f5;

    font-family: 'Cinzel', Arial, serif;

    font-size: 18px;

    border-bottom: 1px solid #252525;

    padding: 20px 0;

    margin-bottom: 20px !important;

    font-weight: bold;
}


/* =========================================================
   EVENTS
   ========================================================= */

#events {
    list-style-type: none;

    padding: 0;
    margin: 0;
}

#events li {
    float: right;

    display: table;

    width: 100%;

    vertical-align: middle;

    line-height: 30px;

    padding-bottom: 10px;
}

#events li span {
    float: right;
}

#events li em {
    color: #777;
}


/* =========================================================
   SERVER
   ========================================================= */

.ServerFree {
    font-size: 16px;

    font-family: Montserrat, sans-serif;

    text-transform: uppercase;

    font-weight: 600;

    text-align: left;
}

.Server1_Players {
    font-size: 12px;

    font-family: Montserrat, sans-serif;

    text-transform: uppercase;

    font-weight: 600;

    text-align: center;
}

.online-status-indicator {
    margin-left: 5px;
    width: 12px !important;
}


/* =========================================================
   PAYPAL
   ========================================================= */

.paypal-gateway-container {
    width: 100%;

    background: #1a2133;

    border: 1px solid #2e374f;
}

.paypal-gateway-logo {
    width: 100%;
    height: 68px;

    background: #fff9ec url('../img/paypal-logo-200-68.png') no-repeat top center;

    margin-bottom: 10px;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.paypal-gateway-content {
    margin: 10px;

    background: #fef2da;

    border: 2px solid #f79433;

    padding: 10px;

    overflow: auto;
}

.paypal-gateway-conversion-rate {
    margin: 0 auto;

    text-align: center;

    color: #000;

    font-size: 18px;

    padding: 10px 0;
}

.paypal-gateway-form {
    width: 100%;

    margin: 0 auto;

    text-align: center;
}

.paypal-gateway-form div {
    display: inline-block;

    padding: 0 10px;

    color: #000;

    font-size: 18px;
}

.paypal-gateway-form input[type=text] {
    width: 40px;
}

.paypal-gateway-continue {
    margin: 0 auto;

    text-align: center;
}

.paypal-gateway-continue input[type=submit] {
    background: url('../img/paypal-submit.jpg') no-repeat;

    width: 200px;
    height: 40px;

    border: 0;
}


/* =========================================================
   PAGSEGURO
   ========================================================= */

.pagseguro-gateway-container {
    width: 100%;

    background: #1a3322;

    border: 1px solid #2a533c;
}

.pagseguro-gateway-content {
    margin: 10px;

    background: #ffffff;

    border: 2px solid #bfbfbf;

    padding: 10px;

    overflow: auto;
}

.pagseguro-gateway-conversion-rate {
    margin: 0 auto;

    text-align: center;

    color: #000;

    font-size: 18px;

    padding: 10px 0;
}

.pagseguro-gateway-form {
    width: 100%;

    margin: 0 auto;

    text-align: center;
}

.pagseguro-gateway-form div {
    display: inline-block;

    padding: 0 10px;

    color: #000;

    font-size: 24px;
}

.pagseguro-gateway-form input[type=text] {
    width: 60px;

    background: #ffffff;

    border: 0;

    border-bottom: 1px dotted #000;

    color: #1c713a;

    font-weight: bold;

    font-size: 24px;
}

.pagseguro-gateway-continue {
    margin: 0 auto;

    text-align: center;

    padding: 10px;
}


/* =========================================================
   TOS
   ========================================================= */

.tos_list li {
    color: #568792;
    margin-bottom: 40px;
}

.tos_list li p {
    color: #ccc;

    text-align: justify;
    text-justify: inter-word;

    text-transform: none;
}


/* =========================================================
   MODULE REQUIREMENTS
   ========================================================= */

.module-requirements {
    font-size: 12px;
    margin-top: 20px;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 12px;
    background-color: #181818;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);

    border-radius: 10px;

    background-color: #181818;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background-color: #212121;

    transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;

    background-color: #2489ca;
}
```
