.stat {
    text-align: center;
    max-width: 50%;
}

.stat i {
    width: 150px;
    height: 168px;
    text-align: center;
    color: var(--second-color);
    line-height: 150px;
    font-size: 64px;
    margin: 0 0 16px 0;
    background-image: url('/images/logo-shape.png');
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

.stat h2,
.stat h4 {
    color: #fff;
}

.stat h2 {
    font-size: 24px;
    margin: 0 0 8px 0;
}

.stat h2.secs::after {
    content: " secs";
    font-size: 0.75em;
}

.stat h2.min::after {
    content: " min";
    font-size: 0.75em;
}

.stat h2.percent::after {
    content: "%";
}

.stat h2.pounds::before {
    content: "£";
    margin-right: 4px;
}

.stat h4 {
    margin: 0;
}

input[type=text].non-input.counter {
    text-align: left;
}

@media only screen and (max-width: 480px) {
    .stat i {
       width: 120px;
       height: 134px;
       line-height: 120px;
       font-size: 54px;
    }
}

/* Tooltip */

.tooltip {
    position: relative;
    display: block;
}

.tooltip .tooltip-text {
    cursor: pointer;
    visibility: hidden;
    background-color: lightgrey;
    color: #000;
    white-space: nowrap;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip .tooltip-button {
    display: inline-block;
    font-weight: bold;
    padding: 4px 8px 4px 4px;
    margin-left: -4px;
    border-right: solid 1px grey;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.tooltip .tooltip-button:first-child {
    padding-left: 8px;
}

.tooltip .tooltip-button:last-child {
    border-right: none;
}

.tooltip .tooltip-button:hover {
    color: #fff;
    background-color: grey;
}