/* ==========================================================================
   SKYSTONE - COMPONENT / QUICK INFO
   Único CSS responsável pela barra de informações rápidas.
   ========================================================================== */

body.template-skystone .sky-quick-info {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

body.template-skystone .sky-quick-info__grid {
    width: 100%;
    min-height: 58px;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    border-top: 1px solid #cfe1e6;
    border-bottom: 1px solid #cfe1e6;
    border-left: 1px solid #cfe1e6;

    background: rgba(247, 252, 253, .90);
    box-shadow: 0 9px 26px rgba(50, 95, 110, .05);
}

body.template-skystone .sky-quick-info__item {
    min-width: 0;
    min-height: 58px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-right: 1px solid #cfe1e6;

    white-space: nowrap;
}

body.template-skystone .sky-quick-info__label {
    min-width: 0;

    color: #6d9aac;

    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .55px;
}

body.template-skystone .sky-quick-info__value {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;

    color: #174f65;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

body.template-skystone .sky-quick-info__value.is-online {
    color: #0ca67b;
}

body.template-skystone .sky-quick-info__value.is-offline {
    color: #e2535d;
}

body.template-skystone .sky-quick-info__value.is-unknown {
    color: #829ca6;
}

body.template-skystone .sky-quick-info__value.is-players {
    color: #174f65;
}

@media (max-width: 900px) {
    body.template-skystone .sky-quick-info__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.template-skystone .sky-quick-info__item {
        border-bottom: 1px solid #cfe1e6;
    }

    body.template-skystone .sky-quick-info__item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    body.template-skystone .sky-quick-info__grid {
        grid-template-columns: 1fr;
    }

    body.template-skystone .sky-quick-info__item:last-child {
        grid-column: auto;
    }
}


/* ==========================================================================
   QUICK INFO V4 - 765px
   5 colunas de aproximadamente 153px.
   Sem truncar os valores.
   ========================================================================== */

body.template-skystone .sky-quick-info__grid {
    min-height: 48px;
}

body.template-skystone .sky-quick-info__item {
    min-height: 48px;
    padding: 0 7px;
    gap: 5px;
}

body.template-skystone .sky-quick-info__label {
    flex: 0 0 auto;
    font-size: 8px;
    letter-spacing: .2px;
    white-space: nowrap;
}

body.template-skystone .sky-quick-info__value {
    flex: 0 1 auto;
    min-width: 0;

    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;

    font-size: 9px;
    letter-spacing: -.1px;
}

body.template-skystone .sky-quick-info__item:nth-child(3) {
    padding-left: 5px;
    padding-right: 5px;
    gap: 4px;
}

body.template-skystone .sky-quick-info__item:nth-child(3)
.sky-quick-info__label {
    font-size: 7.5px;
}

body.template-skystone .sky-quick-info__item:nth-child(3)
.sky-quick-info__value {
    font-size: 8.5px;
}

@media (max-width: 790px) and (min-width: 601px) {
    body.template-skystone .sky-quick-info__label {
        font-size: 7.5px;
    }

    body.template-skystone .sky-quick-info__value {
        font-size: 8.5px;
    }
}
