.tabstrip ul.tabs {
    padding: 0;
    margin: 0;
    display: flex;
    text-align: center;
}

.tabstrip .tabs li {
    width: 14%;
    border-right: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}

.tabstrip .tabs li:last-child {
    border-right: none;
}

.tabstrip .tabs li.selected,
.tabstrip .tabs li:hover {
    border-bottom: 3px solid #FDB81E;
}

.tabstrip > div {
    display: none;
}

.tabstrip > div.selected {
    display: block;
    padding: 10px 15px;
}