﻿.nav {
    margin-bottom: 0;
}

.nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


    .nav-tabs li {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        text-align: center;
    }

        .nav-tabs li a {
            background-color: #f5f5f5;
            margin-right: 4px;
            color: #7e7e7e;
            border: 1px solid #f5f5f5;
            border-bottom: 1px solid #e4e4e4;
            padding: 8px 0px;
            text-transform: uppercase;
            letter-spacing: normal;
            text-align: center;
            font-size: 16px;
        }

        .nav-tabs li.active a {
            background-color: #fff;
            color: #6d2d72;
            border: 1px solid #e4e4e4;
            border-bottom: 1px solid #fff;
        }

        .nav-tabs li:last-of-type a {
            margin-right: 0px;
        }


.tab-content {
    border: solid 1px #e4e4e4;
    border-top: none;
}

    .tab-content .tab-pane {
        padding: 48px 32px 32px;
    }
