div.centered {
    margin: 20px auto;
    display: block;
    text-align: center;
    width: 60%;
}

table.lm-table {
    /*display: block;*/
    margin: 20px auto;
    border: 3px solid #D1D1D1;
    border-collapse: collapse;
    background: #B5C7DA;
    -moz-box-shadow:    inset 0 0 20px #000000;
    -webkit-box-shadow: inset 0 0 20px #000000;
    box-shadow:         inset 0 0 20px #000000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

table.lm-table tr {

}

table.lm-table td.border-left {
    border-left: 2px solid #5A626B;
}

table.lm-table td.border-right {
    border-right: 2px solid #5A626B;
}

table.lm-table td.border-upper {
    border-top: 2px solid #5A626B;
}

table.lm-table td.border-bottom {
    border-bottom: 2px solid #5A626B; /* D1D1D1 */ /* B9B9B9 */ /* FAFAFA */
}

table.lm-table td {
    text-align: center;
    vertical-align: middle;
    width: 65px;
    height: 65px;
}

table.lm-table td img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    margin:0 auto;
    width: 60px;
    height: 60px;
    /*width: 100%;
    height: 100%;*/
}

div.move-buttons {
    display: none;
    /*position: absolute;
    margin-top: 120px;*/
    /*float: right;
    display: block;
    width: 30%;
    position: absolute;
    left: 70%;
    top: 30%;*/
}

div.action-buttons {
    text-align: center;
}

table.stats-table {
    margin: 10px 0;
}

table.stats-table td {
    padding: 5px;
}

table.stats-table tr td:first-child {
    padding-top: 10px;
}

.game-body {
    background-color: #FAFAFA !important;
}

.game-tip {
    display: block;
    width: 50%;
    margin: 5px auto;
    padding: 10px !important;
}

.cmn-t-pulse {
    animation: pulse 1s ease infinite;
    /* transition: transform 0.2s; */
}
.cmn-t-pulse:hover {
    color: #fff;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

div#my-rating {
    display: none;
}