/* tabs */
.tabs {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 35px;
}

/* navigation */
.nav-tabs {
    margin: 0;
}

    .nav-tabs li {
        display: inline-block;
        float: none;
    }

        .nav-tabs li:last-child a {
            margin-right: 0;
        }

        .nav-tabs li a {
            border-radius: 5px 5px 0 0;
            font-size: 13px;
            font-size: 1.3rem;
            margin-right: 1px;
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav-tabs li a, .nav-tabs li a:hover {
                background: #f4f4f4;
                border-bottom: none;
                border-left: 1px solid #eeeeee;
                border-right: 1px solid #eeeeee;
                border-top: 3px solid #dddddd;
                color: #555555;
                text-decoration: none;
            }

                .nav-tabs li.active a, a:hover {
                    border-bottom-color: transparent;
                    /*border-top: 3px solid #555555; remove hover*/
                    box-shadow: none;
                }

                .nav-tabs li a:active, .nav-tabs li a:focus {
                    border-bottom: 0;
                }
        .nav-tabs li.active a,
        .nav-tabs li.active a:hover,
        .nav-tabs li.active a:focus {
            background: white;
            border-left-color: #eeeeee;
            border-right-color: #eeeeee;
            border-top: 3px solid #B08E61;
            color: #555555;
            font-weight: 700;
        }
/* content */
.tab-content {
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    background-color: #f2f2f2;
    border: 1px solid #eeeeee;
    border-top: 0;
    padding: 15px 0 0 0;
}

    /* content - footer inside */
    .tab-content .panel-footer {
        margin: -15px;
        margin-top: 15px;
    }
