/**
 * WebEngine CMS
 * MU HUAYRA
 * Profile Guild
 * @version 1.0
 * @author Leonardo Soto
 */


/* =========================================================
   PERFIL DEL GUILD
   ========================================================= */

.profiles_guild_card {

    width: 100%;
    max-width: 100%;

    margin: 0 auto 25px;

    padding: 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e3e3e3;

    border-radius: 8px;

    overflow: hidden;
}


/* =========================================================
   CABECERA DEL GUILD
   ========================================================= */

.guild-profile-header {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 150px;

    padding: 20px 24px;

    box-sizing: border-box;

    background: #161616;

    border: 1px solid #b88a43;

    border-radius: 8px;

    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}


/* =========================================================
   LOGO
   ========================================================= */

.guild-profile-logo {

    width: 150px;

    min-width: 150px;

    height: 115px;

    padding-right: 22px;

    margin-right: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    border-right: 1px solid rgba(184,138,67,.35);
}


.guild-profile-logo img {

    max-width: 105px;

    max-height: 105px;

    width: auto;

    height: auto;

    display: block;
}


/* =========================================================
   INFORMACION DEL GUILD
   ========================================================= */

.guild-profile-info {

    flex: 1;

    min-width: 0;
}


/* Nombre */

.guild-profile-name {

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    font-weight: bold;

    line-height: 32px;

    margin: 0 0 18px;

    white-space: nowrap;
}


/* Datos */

.guild-profile-data {

    display: flex;

    align-items: flex-start;

    flex-wrap: wrap;

    gap: 35px;
}


/* Cada dato */

.guild-profile-row {

    display: flex;

    flex-direction: column;

    min-width: 90px;
}


/* Etiqueta */

.guild-profile-label {

    color: #c8a96b;

    font-size: 10px;

    font-weight: bold;

    line-height: 14px;

    text-transform: uppercase;

    letter-spacing: .7px;

    margin-bottom: 4px;

    white-space: nowrap;
}


/* Valor */

.guild-profile-value {

    color: #dddddd;

    font-size: 14px;

    font-weight: normal;

    line-height: 18px;

    white-space: nowrap;
}


/* Guild Master */

.guild-profile-value.guild-master {

    color: #ffd700;

    font-weight: bold;
}


/* =========================================================
   TITULO MIEMBROS
   ========================================================= */

.guild-members-title-wrap {

    width: 100%;

    display: flex;

    align-items: center;

    box-sizing: border-box;

    margin: 30px 0 20px;
}


.guild-members-line {

    flex: 1;

    height: 1px;

    background: #dddddd;
}


.guild-members-title {

    padding: 0 18px;

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    font-weight: bold;

    line-height: 22px;

    text-transform: uppercase;

    letter-spacing: .5px;

    white-space: nowrap;
}


/* =========================================================
   TABLA
   ========================================================= */

.guild-members-table-wrapper {

    width: 100%;

    overflow-x: auto;

    box-sizing: border-box;
}


.guild-members-table {

    width: 100%;

    margin: 0;

    border-collapse: collapse;

    border-spacing: 0;

    table-layout: fixed;

    background: #ffffff;

    font-size: 13px;
}


/* =========================================================
   CABECERA TABLA
   ========================================================= */

.guild-members-table thead {

    background: #eeeeee;
}


.guild-members-table thead th {

    padding: 11px 10px;

    border: none;

    border-bottom: 1px solid #333333;

    background: #ffffff;

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    font-weight: bold;

    line-height: 18px;

    text-align: center;

    white-space: nowrap;

    vertical-align: middle;
}

.guild-members-table thead th i {

    color: #b71919;

    margin-right: 4px;

    font-size: 13px;
}

.guild-members-table thead th:first-child {
    text-align: left;
    padding-left: 14px;
}



/* Columnas restantes */

.guild-members-table thead th:nth-child(2) {
    width: 13%;
}

.guild-members-table thead th:nth-child(3) {
    width: 12%;
}

.guild-members-table thead th:nth-child(4) {
    width: 12%;
}

.guild-members-table thead th:nth-child(5) {
    width: 23%;
}

.guild-members-table thead th:nth-child(6) {
    width: 12%;
}


/* =========================================================
   FILAS
   ========================================================= */

.guild-members-table tbody tr {

    background: #ffffff;

    transition: background .15s ease;
}


.guild-members-table tbody tr:hover {

    background: #fafafa;
}


.guild-members-table tbody td {

    padding: 10px;

    border: none;

    border-bottom: 1px solid #eeeeee;

    color: #555555;

    font-size: 13px;

    line-height: 18px;

    text-align: center;

    vertical-align: middle;

    white-space: nowrap;
}


/* =========================================================
   PERSONAJE
   ========================================================= */

.guild-character-cell {

    text-align: left !important;

    padding-left: 12px !important;

    overflow: hidden;

    text-overflow: ellipsis;
}


.guild-status-dot {

    display: inline-block;

    width: 7px;

    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    vertical-align: middle;

    flex-shrink: 0;
}


.guild-status-dot.online {

    background: #35b653;

    box-shadow: 0 0 5px rgba(53,182,83,.35);
}


.guild-status-dot.offline {

    background: #d94b4b;
}


/* =========================================================
   RANGOS
   ========================================================= */

.guild-rank {

    font-size: 11px;

    font-weight: bold;

    text-shadow: none;
}


.guild-rank.master {

    color: #c49b2e;
}


.guild-rank.assistant {

    color: #d94b4b;
}


.guild-rank.battle-master {

    color: #159bd3;
}


.guild-rank.member {

    color: #888888;
}


/* =========================================================
   BANDERAS
   ========================================================= */

.guild-members-table td img {

    display: inline-block;

    height: 15px;

    width: auto;

    vertical-align: middle;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width: 767px) {

    .guild-profile-header {

        min-height: auto;

        padding: 16px;
    }


    .guild-profile-logo {

        width: 95px;

        min-width: 95px;

        height: 90px;

        padding-right: 15px;

        margin-right: 15px;
    }


    .guild-profile-logo img {

        max-width: 70px;

        max-height: 70px;
    }


    .guild-profile-name {

        font-size: 22px;

        line-height: 26px;

        margin-bottom: 12px;
    }


    .guild-profile-data {

        gap: 15px;
    }


    .guild-profile-label {

        font-size: 9px;
    }


    .guild-profile-value {

        font-size: 13px;
    }


    .guild-members-title {

        font-size: 14px;

        padding: 0 10px;
    }


    .guild-members-table {

        min-width: 650px;
    }

}

/* =========================================================
   TABLA GUILD - PERSONAJE
   ========================================================= */

.guild-members-table th:first-child {
    color: #b71919 !important;
    text-align: left;
}

.guild-character-cell {
    text-align: left !important;
    padding: 10px 12px !important;
}

.guild-character {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guild-character-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
}

.guild-character-avatar img {
    width: 40px !important;
    height: 40px !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 50%;
    display: block;
}

.guild-character-avatar.online {
    border: 2px solid #2ecc71;
}

.guild-character-avatar.offline {
    border: 2px solid #e74c3c;
}

.guild-character-info {
    min-width: 0;
    line-height: 1;
}

.guild-character-name {
    display: block;
    color: #444444 !important;
    font-size: 14px;
    font-weight: bold;
    line-height: 17px;
    margin: 0;
}

.guild-character-name:hover {
    color: #b71919 !important;
}

.guild-character-class {
    display: block;
    color: #999999;
    font-size: 11px;
    line-height: 15px;
    margin-top: 2px;
}