/* Lists */
.icon--list {
    list-style: none;
}

.icon--list li {
    display: inline;
    float: left;
}

.icon--list a {
    color: #000;
}

.arrow--list {
    list-style: none;
    padding: 0;
}

.arrow--list li {
    line-height: 2em;
    padding-left: 30px;
    position: relative;
}

.arrow--list li:before {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    background-image: url('../images/arrow-right-purple.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
    width: 1.5em;
    height: 1.5em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid;
    color: #662d91;
    text-align: center;
    line-height: 1.5em;
    margin-right: 0.5em;
}