.OuterCircle {
    background: #FFFFFF;
    border-radius: 50%;
    height:30px;
    width:30px;
    position: relative;
    box-shadow: 0 0 10px rgba(111,112,114,1); 
    -moz-box-shadow: 0 0 10px rgba(111,112,114,1);
    -webkit-box-shadow: 0 0 10px rgba(111,112,114,1); 
    -o-box-shadow: 0 0 10px rgba(111,112,114,1);
    text-align: center;
}
.InnerCircle {
    position: absolute;
    background: #C21C1D;
    border-radius: 50%;
    height:26px;
    width:26px;
    top:50%;
    left:50%;
    line-height: 26px;
    color: #FFFFFF;
    margin: -13px 0px 0px -13px; /* minus half of the width and minus half of the height */
    text-align: center;
}