@font-face {
    font-family: 'icomoon';
    src: url('/icons/icomoon.v1.woff2') format('woff2'), /* Modern */
    url('/icons/icomoon.v1.woff') format('woff'); /* Legacy */
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Only the pseudo-element uses the icon font, not the whole element/container */
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

.icon-book:before {
    content: "\e900";
}

.icon-check-circle:before {
    content: "\e901";
}

.icon-check-square:before {
    content: "\e902";
}

.icon-chevron-circle-left:before {
    content: "\e903";
}

.icon-chevron-circle-right:before {
    content: "\e904";
}

.icon-shopping-cart:before {
    content: "\e905";
}

/* space icons from text, if needed */
.icon-check-circle, .icon-check-square {
    margin-right: .375rem;
    font-size: 1rem; /* adjust overall icon size */
}

.icon-book, .icon-chevron-circle-left, 
.icon-chevron-circle-right, .icon-shopping-cart {
    font-size: 1rem; /* adjust overall icon size */
}


/* List using icomoon icons as bullets */
.icon-ul {
    list-style: none;
    margin: 0;
    padding-left: 1.5rem; /* space for the icon */
}
    .icon-ul > li {
        position: relative;
    }
        .icon-ul > li .li-icon {
            position: absolute;
            left: -1.5rem; /* aligns like FA bullets */
            top: .2rem; /* tweak vertical alignment as needed */
            width: 1rem;
            text-align: center;
            line-height: 1;
        }
