.ndrPills {position:relative}
.ndrPills ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-left: 0;
    margin-top:0;
    margin-bottom: 0;
    list-style: none;
}
.ndrPills ul li {
    /*flex: 1 1 auto;*/
    text-align: center;
}
.ndrPills ul li a {
    cursor:pointer;
    border: 0;
    border-radius: 10px;
    display: block;
    margin-bottom:10px;
    padding: 0.5rem 1rem;
    background-color:#f7f6f4;
    color: #000;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.ndrPills ul li a.active {
    color: #fff;
    background-color: #ad2028;
}

.ndrPillPanes {position:relative}
.ndrPillPanes > div {
    display:none;
}
.ndrPillPanes > div.active {
    display:block;
}
