#counter {
    margin-top: 4px;
}

#counter li {
    display: inline-block;
    margin: 0 2px;
}

#counter li:nth-child(odd) span {
    width: 32px;
    height: 32px;
    display: block;
    line-height: 32px;
    font-weight: bold;
    background-color: #145fa4;
    color: white;
    border-radius: 4px;
    font-size: 16px;
}

#counter li:nth-child(even) {
    vertical-align: top;
    height: 32px;
    line-height: 32px;
    font-weight: bold;
    font-size: 14px;
}

#counter.animated {
    animation: beat 1s infinite alternate;
}

@keyframes beat{
	to { transform: scale(1.05); }
}

#counter-link {
    margin-top: -13px;
    margin-bottom: 16px;
}

#counter-link a {
    font-weight: bold;
}
