.ecs-counter {
    position: relative;
    text-align: center;
    margin: 20px auto;
    background: var(--topbar-bg, #333);
    border:solid 1px #ccc;
    border-radius:100%;
    width:250px;
    height:250px;
}

.ecs-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ecs-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--topbar-link-color, #fff);
    margin: 0;
}

.ecs-label {
    display: block;
    margin-top: 15px;
    padding:10px;
    border-radius:5px;
    font-size: 0.9rem;
    line-height: 1.3rem;
    text-align:center;
    background: var(--topbar-bg, #333);
    color: var(--topbar-link-color, #fff);
    font-weight:700;
}

@media only screen and (max-width: 450px) {
  .ecs-number {
    font-size: 2.8rem;
    }
}