.custom-tabs-widget .tabs-nav {
    display: flex;
    list-style: none;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 0;
}
.custom-tabs-widget .tabs-nav li {
    margin-right: 10px;
    background: #eee;
    border-radius: 4px;
    transition: all 0.3s;
}
.custom-tabs-widget .tabs-nav li.active {
    background: #333;
    color: #fff;
}
.custom-tabs-widget .tabs-content .tab-content {
    display: none;
}
.custom-tabs-widget .tabs-content .tab-content.active {
    display: block;
}

.custom-tabs-widget .tabs-nav li i,
.custom-tabs-widget .tabs-nav li svg {
    margin-right: 6px;
    vertical-align: middle;
}
