// 
// nav.scss
//

.nav-tabs,
.nav-pills {
    >li {
        >a {
            color: $gray-700;
            font-weight: $label-font-weight;
        }
    }
}

.nav-pills {
    >a {
        color: $gray-700;
        font-weight: $label-font-weight;
    }
}


//Navtab custom
.navtab-bg {
    .nav-link {
        background-color: $card-cap-bg;
        margin: 0 5px;
    }
}


// Nav bordered

.nav-bordered {
    border-bottom: 2px solid rgba($gray-600, 0.2) !important;

    .nav-item {
        margin-bottom: -1px;
    }

    li {
        a {
            border: 0 !important;
            padding: 10px 20px;
        }
    }

    a.active {
        border-bottom: 2px solid $primary  !important;
    }
}

.tab-content {
    padding: 20px 0 0 0;
}