/*
 Font Declarations
 ********************/
@font-face {
    font-family: "morpheus";
    src: url(../fonts/MORPHEUS.TTF);
    font-weight: bold;
}

/*
 Document Styling
 ********************/
HTML, BODY {
    margin: 0;
    background: url('../img/Background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-size: 13px;
}

a, a:visited {
    color: #F3AF00;
    text-decoration: none;
    transition: color .5s;
    display: block;
}
a:hover {
    color: #fffa75;
}

h3 {
    text-align: center;
    font-size: 14px;
}
.tab h3 {
    cursor: pointer;
}

.about h3, .posts h3, .roster h3, .footer, .tab h3, .tab > div, .admin-panel > h3, .member > h3, .member-panel, .about div, .registration h3, .application h3, .gallery h3, .forgot-password h3, .register-success h3, .activation h3, .create-password h3, .user-activity h3 {
    padding:10px 10px 15px;
    border-radius: 3px;
    background: -webkit-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.0) 95%); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.0) 95%); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.0) 95%); /* For Firefox 3.6 to 15 */
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.0) 95%);
}

.post, .latest-forum-posts > div, .roster > div, .admin-panel > div, .member > div, .registration > div, .error, .application > div, #lightgallery, .forgot-password > div, .logged-out, .register-success div, .activation > div, .create-password > div, .user-activity > div {
    padding:10px 15px 30px 15px;
    border-radius: 3px;
    background: -webkit-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 90%, rgba(0,0,0,0.0) 100%); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 90%, rgba(0,0,0,0.0) 100%); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 90%, rgba(0,0,0,0.0) 100%); /* For Firefox 3.6 to 15 */
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85) 90%, rgba(0,0,0,0.0) 100%);
}

input[type=button], input[type=submit] {
    background-color: #262626;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
    color: #F3AF00;
    outline:none;
    transition: background-color .5s, color .5s;
}
input[type=button]:hover, input[type=submit]:hover {
    background-color: #353535;
    color: #fffa75;
}

/*
 Header Styling
 ********************/
.header {
    width:100%;
    max-width: 1240px;
    margin: 10px auto;
}

/*
 Member Login/Regisration Styling
 ********************/
.member-panel {
    width:200px;
    float: right;
    margin-bottom: 20px;
    margin-right: 10px;
}
.member-panel form, .forgot-password form {
    position: relative;
}
.member-panel input[type=checkbox] {
    position: relative;
    top: 3px;
}
.submit-btn {
    background: #242e3b;
    border: none;
    display: table;
    border-radius: 3px;
    margin: 5px auto;
    position: relative;
    transition: background .5s;
}
.submit-btn:hover {
    background: #39495e;
}
#submit-login {
    padding: 0px 35px;
    background: #242e3b;
    border: none;
    border-radius: 3px;
    font-family: "morpheus";
    font-size: 22px;
    line-height: 22px;
    background: linear-gradient(to bottom, rgba(186, 90, 5, 1) 22%, rgba(255, 250, 117, 0.9) 49%, rgba(243, 175, 0, 1) 57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: text-shadow .5s;
    text-decoration: none;
    cursor: pointer;
}
#submit-login:hover {
    text-shadow: 0px 0px 1px #FFFA75;
}
#login-err, #frgt-err, #crtpw-err, #update-profile-email-err, #update-profile-password-err, #reg-err, #application-err {
    color: #fff;
    background: firebrick;
    border-radius: 5px;
    padding: 0px 5px;
    position: absolute;
    width: 200px;
    top: 0px;
    right: 100%;
    margin-right: 8px;
    transition: opacity 0.5s;
}
#frgt-err, #crtpw-err, #update-profile-email-err, #update-profile-password-err, #reg-err, #application-err {
    right: 0px;
    position: relative;
}
#frgt-err, #crtpw-err, #reg-err, #application-err {
    margin: 10px auto 0;
}
#login-err::before {
    content: " ";
    position: absolute;
    right: -16px;
    top: 35%;
    border-top: 8px solid transparent;
    border-left: 8px solid firebrick;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    transition: opacity 0.5s;
}
.err-active, .err-active:before {
    opacity: 1 !important;
}

.loading {
    text-align: center;
    display: none !important;
    background: none !important;
    margin: auto;
}
.loading img {
    display: inline-block;
    margin: auto;
    width: 20px;
}
.loading.active {
    display: block !important;;
}

    /*
     Logo Styling
     ********************/
.logo {
    float: left;
    padding: 40px;
    max-width: 600px;
    min-width: 260px;
}
.logo img {
    width: 100%;
}

/*
 Navigation Menu Styling
 ********************/
.nav {
    clear: both;
    text-align: center;
}
.button {
    width: 210px;
    position: relative;
    margin: 5px;
    display: inline-block;
}
.button > div {
    opacity: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0;
    transition: opacity .5s;
    background: radial-gradient(rgba(50,205,50,0.9) 45%, rgba(0,0,0,0), rgba(0,0,0,0));
}
.button:hover > div {
    opacity: 0.5;
}
.button a {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index:2;
    text-align: center;
    line-height:64px;
    font-family:"morpheus";
    font-size:27px;
    background: linear-gradient(to bottom, rgba(186, 90, 5, 1) 22%, rgba(255, 250, 117, 0.9) 49%, rgba(243, 175, 0, 1) 57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    transition: text-shadow .5s;
    text-decoration: none;
}
.button a:hover {
    text-shadow: 0px 0px 1px #FFFA75;
}
.button img {
    width:100%;
    position:relative;
    z-index:1;
}

/*
 Main Document Styling
 ********************/
.container {
    max-width: 1240px;
    margin: 10px auto;
    padding: 10px;
}

/*
 Left Sidebar Styling
 ********************/
.left-sidebar {
    float:left;
    width:17%;
}

/*
 User Activity Tab Styling
 ********************/
.user-activity-tab p {
    margin: 0px;
}
.user-activity-tab a {
    font-size: 12px;
}

/*
 Latest Forum Posts Tab Styling
 ********************/
.forum-post {
    font-size :10px;
    margin-bottom: 20px;
}
.forum-post span {
    display:block;
}
.forum-post a {
    display:inline-block;
}
.forum-post-title {
    font-size :12px;
}

/*
 Center Content Styling
 ********************/
.content {
    margin: 0 1%;
    float:left;
    width:64%;
}

/*
 Simple Message Display Pages Styling
 ********************/
.error, .logged-out {
    width: 100%;
    left: -10px;
    position: relative;
    padding: 10px 15px 30px 5px;
}

/*
 Post Archives Styling
 ********************/
.post img {
    max-width: 100%;
    margin: 10px 0 0 0;
}
.news-post p {
    margin: 5px 0px 10px;
}
.post-author,.post-date {
    font-size: 12px;
}
.post-reply, .post-author {
    display:inline-block;
}
.post-reply {
    margin:0 0 0 5px;
}

/*
 Character Application Styling
 *********************/
.application form > div {
    display:table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 2px;
}
.application form > div > div, .application form > div > div > div > label {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}
.application form > div > div > div {
    display: table;
    width: 100%;
    padding: 5px 0px;
}
.application form p {
    margin:  0;
}
#comments {
    width: 100%;
    height: 60px;
}


.character div {
    display:inline-block;
    padding:5px;
    width: 100px;
    background: #191818;
    margin: 1px -1px 1px 0px;
    text-align: center;
}
.character p {
    margin: 0px;
}

/*
 Roster Styling
 *********************/
.character {
    display:inline-block;
}
.character div {
    display:inline-block;
    padding:5px;
    width: 100px;
    background: #191818;
    margin: 1px -1px 1px 0px;
    text-align: center;
}
.character p {
    margin: 0px;
}

/*
 Registration Styling
 *********************/
.registration form > div:first-child {
    display: table;
    table-layout: fixed;
    border-spacing: 10px;
}
.registration form > div:last-child {
    width: 100%;
    background: transparent;
    text-align: center;
}
.registration form > div > div {
    display: table-cell;
    width: 50%;
    background: #191919;
    padding: 10px;
}

/*
 Forgot Password Styling
 **********************/
.forgot-password > div {
    text-align: center;
}
#submit-forgot {
    margin: 10px 10px 0px;
}

/*
 Gallery Display Styling
 **********************/
.gallery a {
    display:inline-block;
    width: 19.5%;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.gallery img.frontend_gallery {
    width:100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*
 Profile Page Styling
 *********************/
div.profile-settings, div.profile-display {
    display:none;
}
.user-applications, .users {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-spacing: 2px;
}
.user-applications > div, .users > div {
    display: table-row;
}
.user-applications > div > div, .users > div > div{
    display: table-cell;
    padding: 5px;
    text-align: center;
}
.user-applications > div > div:last-child, .users > div > div:last-child {
    width: 27px;
}
.user-applications > div:first-child, .users div.row:first-child {
    text-align: center;
}
.user-applications > div:nth-child(n+2) > div, .users div.row:nth-child(n+2) > div {
    background-color: #3e3e3e;
    border-radius: 5px;
}

/*
 Administration Page Styling
 *********************/
.admin-tabs > button {
    background: #0f0f0f;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #fff;
    outline:none;
}
.admin-tabs > button.active {
    background: #191919;
    color: #fff;
}
.admin-menus > div {
    background: #191919;
    padding: 10px;
    margin-bottom: 35px;
    display:none;
}
.admin-menus > div.active, .profile-settings.active, .profile-display.active {
    display:block;
}
.class-recruiting {
    display: table;
    width:100%;
    position: relative;
    border-spacing: 2px;
}
.class-recruiting div.row {
    display: table-row;
    position: relative;
}
.class-recruiting div.cell {
    width: 30%;
    display: table-cell;
    position: relative;
    background: #3e3e3e;
    padding: 10px;
}
.class-recruiting div.cell h3, .class-recruiting div.cell select {
    text-transform: capitalize;
}
.class-recruiting div.cell > div {
    margin: 2px 0;
}
.class-recruiting div.cell > div label {
    width: 50%;
    display: inline-block;
    margin-left: 10px;
    text-transform: capitalize;
}

/*
 User Activity Page Styling
 ********************/
.user-activity > div {
    display: table;
    width:100%;
    table-layout: fixed;
    border-spacing: 2px;
}
.user-activity > div > div {
    display: table-row;
}
.user-activity > div > div:first-child {
    text-align: center;
}
.user-activity > div > div > div {
    display: table-cell;
    width: 25%;
    padding: 5px;
}
.user-activity > div > div > div:nth-child(2) {
    width: 20%;
    text-align: center;
}
.user-activity > div > div > div:last-child {
    width: 55%;
}
.user-activity > div > div:nth-child(n+2) > div {
    background-color: #3e3e3e;
    border-radius: 5px;
}

/*
 Right Sidebar Styling
 *********************/
.right-sidebar {
    float:left;
    width:17%;
}

/*
 Recruiting Tab Styling
 *********************/
.recruiting a{
    text-align: center;
}
.character-class {
    font-size: 12px;
    position: relative;
}
.character-class img {
    width: 18px;
    height: 18px;
}
.character-class span {
    position: relative;
    top: -5px;
}
.character-class > div {
    display: inline-block;
    position: absolute;
    right: 0;
}
.character-class img.high {
    opacity: 1.0;
}
.character-class img.medium {
    opacity: 0.55;

}
.character-class img.low {
    opacity: 0.2;

}
.character-class img.closed {
    opacity: 0.075;
}

/*
 Raid Progress Tab Styling
 *********************/
.raid {
    position: relative;
}
.raid img {
    width: 100%;
}
.raid span {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 12px;
}

/*
 Raid Logs Tab Styling
 *********************/
.raid-logs {
    font-size:11px;
    text-align: center;
}
.raid-name {
    display: inline-block;
}

/*
 Message Box Tab Styling
 *********************/
.messages > div {
    padding:10px;
}
.messages > div > div {
    height:400px;
    overflow-x: hidden;
    overflow-y: auto;
}
.message {
    background: #333;
    border: solid 1px #000;
    font-size: 12px;
    position: relative;
}
.message span {
    width: 100%;
    display:block;
    padding: 5px;
}
.message a {
    display:inline-block;
}
.message p {
    margin: 0px;
    text-align: right;
    font-size: 9px;
}

/*
 Bottom Div Styling (Used to correct the Container Div height.)
 *********************/
.bottom {
    clear:both !important;
    float: none !important;
}

/*
 Footer Styling
 *********************/
.footer {
    clear:both;
    width:100%;
    max-width: 1240px;
    margin: 10px auto;
    font-size:12px;
    text-align: center;
}
.footer p {
    margin: 5px 0 20px;
}
.footer a {
    display: inline-block;
}