@media screen and (min-width: 0) {
  .mobile > .usersCounter {
    display:block;
  }
  .usersCounter a {
    text-decoration:none;
  }
  
  .usersCounter {
    background:#EEE;
    display:block;
    margin-left:-15px;
    margin-bottom:25px;
    padding:25px 15px;
    text-align: center;
    width:100%;  
  }
    
  .usersCounter p.number {
    background: none repeat scroll 0 0 #c72b2b;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-family: Arial;
    font-size: 50px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
    margin-right: 1px;
    padding: 2px 5px;
    text-align: center;
  }
  
  .usersCounter p.caption {
    color: #392d3d;
    font-size: 30px;
    line-height: 30px;
    margin-top: 25px;
    text-align: center;
    font-weight: bold;    
  }

  .usersCounter p.caption-small {
    color: #666;
    font-size: 16px;
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .mobile > .usersCounter {
    display:none;
  }
  
  .usersCounter {
  background: none repeat scroll 0 0 #eee;
  display: block;
  margin-left: -15px;
  padding: 15px;
  text-align: center;
  width: 100%;
  }
    
  .usersCounter p.number {
    background: none repeat scroll 0 0 #c72b2b;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-family: Arial;
    font-size: 35px;
    font-weight: normal;
    height: 35px;
    line-height: 35px;
    margin-right: 1px;
    padding: 1px 3px;
    text-align: center;
  }
  
  .usersCounter p:nth-child(3) {
    margin-right:4px;
  }
}

@media screen and (min-width: 1150px) {

  .usersCounter {
    padding: 25px 15px 15px;
    width: 100%;
  }

  .usersCounter p.number {
    font-size: 50px;
    height: 50px;
    line-height: 50px;
    padding: 2px 5px;
  }

  .usersCounter p:nth-child(3) {
    margin-right: 3px;
  }
}