/* =========================================================
   TRECOMIENDO SMART RANKING V3.0.0
   ========================================================= */

.treco-smart-ranking {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(31,58,95,.07);
}


/* CABECERA */

.treco-smart-ranking .treco-ranking-head {
    padding: 15px 17px 13px;
    background: #1f3a5f;
}

.treco-smart-ranking .treco-ranking-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.treco-smart-ranking .treco-ranking-context {
    margin-top: 3px;
    color: #d7b615;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* LISTA */

.treco-smart-ranking .treco-ranking-list {
    padding: 5px 13px 8px;
}


/* FILA */

.treco-smart-ranking .treco-ranking-row {
    display: grid;
    grid-template-columns:
        28px 64px minmax(0,1fr) auto;

    align-items: center;
    gap: 11px;
    min-height: 84px;
    padding: 9px 3px;
    box-sizing: border-box;
    border-bottom: 1px solid #e9edf3;
    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

.treco-smart-ranking
.treco-ranking-row:last-child {
    border-bottom: 0;
}

.treco-smart-ranking
.treco-ranking-row:hover {
    background: #f8fafc;
    transform: translateX(2px);
}


/* POSICIÓN */

.treco-smart-ranking
.treco-ranking-position {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;
    min-width: 27px;

    box-sizing: border-box;

    border-radius: 999px;

    background: #eef2f6;
    color: #1f3a5f;

    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.treco-smart-ranking
.treco-ranking-row-1
.treco-ranking-position {
    background: #d7b615;
    color: #fff;
}


/* AVATAR */

.treco-smart-ranking
.treco-ranking-avatar-shell {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    min-width: 64px;
}

.treco-smart-ranking
.treco-ranking-avatar-circle {
    position: relative;

    display: block;

    width: 64px;
    height: 64px;

    overflow: hidden;

    box-sizing: border-box;

    border: 2px solid #e1e7ee;
    border-radius: 50%;

    background: #f8fafc;
}

.treco-smart-ranking
.treco-ranking-avatar {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
    border-radius: 50%;

    padding: 0;
    margin: 0;

    box-shadow: none;
}

.treco-smart-ranking
.treco-ranking-row-1
.treco-ranking-avatar-circle {
    border-color: #d7b615;

    box-shadow:
        0 3px 10px
        rgba(215,182,21,.25);
}


/* NOMBRE */

.treco-smart-ranking
.treco-ranking-name {
    min-width: 0;

    overflow: hidden;

    color: #1f3a5f;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;

    white-space: nowrap;
    text-overflow: ellipsis;

    transition: color .2s ease;
}

.treco-smart-ranking
.treco-ranking-row:hover
.treco-ranking-name {
    color: #d7b615;
}


/* PUNTOS */

.treco-smart-ranking
.treco-ranking-points {
    padding-left: 4px;

    color: #1f3a5f;

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;
}


/* LOADING / VACÍO */

.treco-smart-ranking
.treco-ranking-loading,

.treco-smart-ranking
.treco-ranking-empty {
    padding: 30px 10px;

    color: #7a8796;

    font-size: 10px;
    line-height: 1.4;

    text-align: center;
}


/* TABLET */

@media (max-width: 1024px) {

    .treco-smart-ranking
    .treco-ranking-row {
        grid-template-columns:
            27px 58px minmax(0,1fr) auto;

        min-height: 78px;
    }

    .treco-smart-ranking
    .treco-ranking-avatar-shell,

    .treco-smart-ranking
    .treco-ranking-avatar-circle {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }
}


/* MÓVIL */

@media (max-width: 767px) {

    .treco-smart-ranking
    .treco-ranking-row {
        grid-template-columns:
            30px 68px minmax(0,1fr) auto;

        gap: 11px;

        min-height: 92px;
    }

    .treco-smart-ranking
    .treco-ranking-avatar-shell,

    .treco-smart-ranking
    .treco-ranking-avatar-circle {
        width: 68px;
        height: 68px;
        min-width: 68px;
    }

    .treco-smart-ranking
    .treco-ranking-name,

    .treco-smart-ranking
    .treco-ranking-points {
        font-size: 13px;
    }
}