
.onglets .nav-tabs{ border: none; }
.onglets .nav-tabs li a{
    color: #515151;
    background: #F7F7F7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 20px 11px;
    margin: 0 0 1px 0;
    border: none;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.onglets .nav-tabs li a:hover,
.onglets .nav-tabs li.active a,
.onglets .nav-tabs li.active a:hover{
    color: #f0ad4e;
    background-color: #f7f7f7;
    border: none;
}
.onglets .nav-tabs li a:before,
.onglets .nav-tabs li a:after{
    content: '';
    background-color: #f0ad4e;
    height: 3px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 0.3s ease 0s;
}
.onglets .nav-tabs li a:after{
    height: 45px;
    width: 45px;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: bottom center;
    left: 50%;
    bottom: 0;
}
.onglets .nav-tabs li.active a:before,
.onglets .nav-tabs li a:hover:before{
    width: 100%;
}
.onglets .nav-tabs li.active a:after,
.onglets .nav-tabs li a:hover:after{
    opacity: 0;
    transform: translateX(-50%) scale(1);
}
.onglets .tab-content{
    font-family: "DIN Next Rounded LT Pro";
    color: #000;
    background-color: #fff;
    font-size: 14px;
    /*padding: 30px 25px 20px;*/
    border: 1px solid #e1e1e1;
}

.onglets .tab-content>.tab-pane {
    padding: 30px 25px 20px;
}


@media only screen and (max-width: 479px){
    .onglets .nav-tabs li{
        width: 100%;
        text-align: center;
    }
    .onglets .nav-tabs li a:before{ bottom: 0; }
}