.tab .nav-tabs{
    border-bottom: 0 none;
}

.tab .nav-tabs li{
    margin-right: 2px;
    position: relative;
	font-weight: 500;
    font-size: 15px;
}

.tab .nav-tabs li a{
    border: none;
    padding: 10px 15px;
    color:#fff;
    background:#272e38;
    border-radius:0;
}

.tab .nav-tabs li a i{
    font-size:14px;
    margin-right:10px;
}

.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:focus,
.tab .nav-tabs li.active a:hover{
    border: none;
    background: #0095d9;
    color:#fff;
    transition:background 0.20s linear;
}

.tab .nav-tabs li.active:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 37%;
    border: 15px solid transparent;
    border-bottom-color: #0095d9;
}
/*
.tab .nav-tabs li.active a:after{
    content: "";
    position: absolute;
    top: 5px;
    left: 4%;
    width: 92%;
    height:82%;
    border: 3px solid #fff;
    display: block;
}
*/
.tab .tab-content{
    background: #fdfdfd;
    line-height: 25px;
    padding:10px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border:4px solid #0095d9;
    
}

@media only screen and (max-width: 480px){
    .tab .nav-tabs li{
        width:100%;
        margin-bottom: 5px;
    }
    .tab .nav-tabs li a{
        padding: 20px;
    }
    .tab .nav-tabs li.active:after {
        border:none;
    }
    .tab .nav-tabs li.active a:after{
        width:97%;
        left:1.5%;
    }
    .tab .tab-content{
        margin-top: 5px;
    }
}