.nav-tabs {
    border: none;
    .nav-item {
        &:first-of-type {
            margin-right: map-get($spacers, 4);
        }
        .nav-link.active {
            color: $theme-text-color;
            background-color: transparent;
            border-color: $theme-text-color;
            border: none;
            border-bottom: map-get($spacers, 1) solid $theme-text-color;
        }
        .nav-item.show {
            .nav-link {
                color: $theme-text-color;
                background-color: transparent;
                border-color: $theme-text-color;
                border: none;
            }
        }
        .nav-link {
            color: $theme-text-color;
            border: none;
            padding-left: map-get($spacers, 0);
            padding-right: map-get($spacers, 0);
            &:hover {
                color: $theme-text-color;
                background-color: transparent;
                border-color: $theme-text-color;
                border: none;
                border-bottom: map-get($spacers, 1) solid $theme-text-color;
            }
            &:focus {
                color: $theme-text-color;
                background-color: transparent;
                border-color: $theme-text-color;
                border: none;
                border-bottom: map-get($spacers, 1) solid $theme-text-color;
            }
        }
    }
}