/** The !important's are necessary to override wagtail's css **/

/* Large */
@media only screen and (max-width: 1200px) {
    .summary ul.stats li:before {
        font-size: 5em !important;
    }

    .summary ul.stats span {
        font-size: 3em !important;
    }
}

/* Medium */
@media only screen and (max-width: 992px) {
    .summary ul.stats li:before {
        font-size: 4.5em !important;
    }

    .summary ul.stats span {
        font-size: 2.5em !important;
    }
}

/* Small */
@media only screen and (max-width: 768px) {
    .summary ul.stats li:before {
        font-size: 4em !important;
    }

    .summary ul.stats span {
        font-size: 2em !important;
    }
}
