/* Tabs Styling
------------------------------------------------------------ */

/* Tabs - Horizontal
------------------------------------------------------------ */
.arconix-tabs-horizontal {
    clear: both;
    margin-bottom: 25px;

    /* Tabs  */
    ul.arconix-tabs {
        margin: 0 !important;
        padding: 0;
        border-bottom: 1px solid #ddd;
        height: 30px;

        /* Individual Tab */
        li {
            list-style: none !important;
            float: left;
            text-indent: 0;
            padding: 0;
            margin: 0;
            margin-right: 5px;
            position: relative;
            top: -1px;

            /* Indivdual Tab link Text */
            a {
                .radius( 5px, 5px, 0, 0 );
                background-color: #eee;
                border: 1px solid #ccc;
                color: #333;
                display: block;
                font-size: 15px;
                height: 30px;
                line-height: 30px;
                margin: 0;
                padding: 0 10px;
                position: relative;
                text-align: center;
                text-decoration: none;
                min-width: 80px;
                width: auto;

                &:active {
                    outline: none;
                }

                /* Individual Tab Hover state */
                &:hover {
                    background-color: #e9e9e9;
                }

                i.fa {
                    margin-right: 0.5em;
                    &.black { color: @black; }
                    &.blue { color: @blue; }
                    &.green { color: @green; }
                    &.gray, &.grey { color: @gray; }
                    &.orange { color: @orange; }
                    &.purple { color: @purple; }
                    &.red { color: @red; }
                    &.tan { color: @tan; }
                    &.white { color: @white; }
                    &.yellow { color: @yellow; }
                }
            }
        }

        /* Active Tab */
        a.current,
        a.current:hover,
        li.current a {
            background-color: #fbfbfb;
            border-bottom: 1px solid #fbfbfb;
            cursor: default !important;
            color: #333 !important;
        }
    }

    /* Panes */
    .arconix-panes {
        background-color: #fbfbfb;
        border: 1px solid #ccc;
        border-top: none;
        clear: both;
        overflow: hidden;
        padding-bottom: 15px;
        position: relative;
        top: -1px;

        .arconix-pane {
            padding: 20px 15px 0;

            p:last-child {
                margin-bottom: 0;
            }
        }
    }
}