// _tabs.scss

.main-subnav {
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 20px;
    padding-top: 30px;

    a {
        border-bottom: 2px solid transparent;
        color: $timberwolf;
        display: inline-block;
        font-size: 18px;
        font-weight: 500;
        margin-right: 30px;
        margin-bottom: -1px;
        padding-bottom: 10px;
        text-decoration: none;

        &:hover {
            border-bottom: 2px solid $timberwolf;
            cursor: pointer;
        }

        &.active {
            border-bottom: 2px solid $gorilla;
            color: $gorilla;
            cursor: pointer;
        }
    }

    .badge {
        background-color: $fox;
        border-radius: $border-radius-base;
        font-weight: $font-weight-bold;
        margin-bottom: 5px;
        margin-left: -25px;
    }
}
