.primaryListItem svg {
    fill: #CABF91;
    width: 100%;
    height: 100%;
}

.primaryListItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.primaryListItem>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9A8E5D;
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
}

.primaryListItem>div:first-of-type img {
    margin-right: -45px;
    z-index: 1;
}

.primaryListItem .icon {
    width: 80px;
    height: 30px;
    margin-right: -20px;
}

.primaryListItem:after {
    content: '';
    position: absolute;
    left: 30px;
    right: 50px;
    height: 1px;
    background: #ffffff1a;
    bottom: 0px;
}

.primaryListItem:last-of-type:after {
    display: none;
}