.user-rank-table-container {
    margin: 20px;
}
.body-container {
    text-align:center;
}
.user-rank-description{
    text-align: left;
    font-size: 14px;
}
.table-style {
    margin:auto;
}
.table-align-left {
    margin-left: 10px;
    text-align: left;
}

.user-rank-icon-frame {
    display: inline-flex;
}
.user-rank-name-shine {
    position: relative;
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 5s infinite;
}
.font-color-base-white {
    background-image: linear-gradient(
        70deg,
        whitesmoke  45%,
        rgb(211, 209, 209, 0.3) 50%,
        whitesmoke 55%
    );
}
.font-color-base-gray {
    background-image: linear-gradient(
        70deg,
        #5c5c5c 45%,
        whitesmoke 50%,
        #5c5c5c 55%
    );
}

@keyframes shine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}