.small-icons {
    ul {
        list-style-type: none;
        margin: 0 0 10px 10px;
        padding: 0;
    }
    ul>li {
        position: relative;
        padding: 0px 0 5px 15px;
        margin: 0;
    }
    ul>li:before {
        position: absolute;
        top: 2px;
        left: -1em;
        width: 16px;
        height: 16px;
        border-radius: 8px;
        -moz-border-radius: 8px;
        font-size: @xs-font-size;
        line-height: 16px;
        text-align: center;
        color: @dark-grey;
        background: @dark-grey;
        content: " ";
    }
    ul>li ul>li:before {
        background-color: @dark-grey;
    } // Tertiary bullets filled
    ul>li ul>li ul>li:before {
        background-color: transparent;
        border: solid 2px @dark-grey;
    } // Quaternary bullets unfilled
    ul>li ul>li ul>li ul>li:before {
        background-color: @dark-grey;
    }
    ol {
        list-style-type: none;
        list-style-type: decimal !ie;
        /*IE 7- hack*/
        margin: 0;
        margin-left: 3em;
        padding: 0;
        counter-reset: li-counter;
    }
    ol>li {
        position: relative;
        padding: 5px 0 15px 15px;
        margin: 0
    }
    ol>li:before {
        position: absolute;
        top: 0;
        left: -1em;
        width: 28px;
        height: 28px;
        border-radius: 14px;
        -moz-border-radius: 14px;
        font-size: @md3-font-size;
        line-height: 28px;
        text-align: center;
        color: @white;
        background: @dark-grey;
        content: counter(li-counter);
        counter-increment: li-counter;
    }
}

.advantage-medicare {
    .small-icons {
        ul>li:before {
            color: @brand-color;
            background: @brand-color;
        }
        ul>li ul>li:before {
            background-color: transparent;
            border: solid 2px @brand-color;
        } // Tertiary bullets filled
        ul>li ul>li ul>li:before {
            background-color: @brand-color;
        } // Quaternary bullets unfilled
        ul>li ul>li ul>li ul>li:before {
            background-color: transparent;
            border: solid 2px @brand-color;
        }
        ol>li:before {
            background: @brand-color;
        }
    }
}

.ambetter-content {
    ul>li:before {
        color: @brand-secondary-color;
        background: @brand-secondary-color;
    } // Secondary bullets unfilled
    ul>li ul>li:before {
        background-color: transparent;
        border: solid 2px @brand-secondary-color;
    } // Tertiary bullets filled
    ul>li ul>li ul>li:before {
        background-color: @brand-secondary-color;
    } // Quaternary bullets unfilled
    ul>li ul>li ul>li ul>li:before {
        background-color: transparent;
        border: solid 2px @brand-secondary-color;
    }
    ol>li:before {
        color: @white;
        background: @brand-secondary-color;
    }
}