.tabslet > ul {
    display: table;
    width: 100%;
    padding-left: 0;
}
.tabslet > div p {
    font-weight: 500;
}
.tabslet > ul > li {
    background: #bfb8af;
    color: white;
    display: table-cell;
    border-right: 4px solid white;
    padding: 4px 10px;
    vertical-align: middle;
    line-height: 1;
    height: 25px;
    cursor: pointer;
}
.tabslet > ul > li.tab-count-3 {
    width: 33.33333333333%;
}
.tabslet > ul > li:last-child {
    border-right: none;
}
.tabslet > ul > li.active {
    background: #004c97;
}
.tabslet > ul > li:hover,
.tabslet > ul > li:focus {
    background: #004c97;
}
.tabslet > ul > li a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 13px;
}
.tabslet > ul > li:hover a,
.tabslet > ul > li:focus a {
    text-decoration: none;
}

@media(max-width: 600px) {
    .tabslet > ul {
        display: table;
    }
    .tabslet > ul > li,
    .tabslet > ul > li.tab-count-3 {
        width: 100%;
        display: table-row;
        width: 100%;
        box-sizing: border-box;
        border: none;
        padding-top: 0;
        padding-bottom: 0;
        height: 38px;
        vertical-align: middle;
    }
    .tabslet > ul > li > a,
    .tabslet > ul > li.tab-count-3 > a {
        display: table-cell;
        border-bottom: 10px solid #fff;
        padding-left: 10px;
        padding-right: 10px;
        vertical-align: middle;
        height: 38px;
    }
}
