/*
=========================================
THE ARENA
Football Navigation
=========================================
*/

.lb-football-nav{

    background:#081C3A;

    border-bottom:1px solid rgba(255,255,255,.05);
    
}

.lb-football-wrapper{

    display:flex !important;

    flex-direction:row;

    align-items:center;

    justify-content:center;

}

.lb-football-item{

    flex:1 1 0;

    display:flex !important;

    justify-content:center;

    align-items:center;

    white-space:nowrap;

    height:42px;

    text-decoration:none;

    color:#D8E3F0;

    font-size:14px;

    font-weight:600;

}

.lb-football-item:hover{

    color:#FFC72C;

}

.lb-football-item.active{

    color:#38D27A;

}

.lb-football-item.active::after{

    content:"";

    position:absolute;

    left:20%;
    right:20%;

    bottom:0;

    height:3px;

    background:#38D27A;

    border-radius:50px;

}

.lb-football-item:not(:last-child){

    border-right:1px solid rgba(255,255,255,.05);

}
/* ==========================
   STICKY STACK FIX + NAV RESTORE
========================== */
.lb-football-nav{
    position:sticky !important;
    top:139px !important;
    z-index:99998 !important;
    width:100% !important;
    background:#081C3A !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    overflow:hidden !important;
}

.lb-football-wrapper{
    width:100% !important;
    max-width:100% !important;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:center !important;
    margin:0 !important;
    padding:0 !important;
}

.lb-football-item{
    flex:1 1 20% !important;
    min-width:0 !important;
    height:42px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    position:relative !important;
    color:#D8E3F0 !important;
    text-decoration:none !important;
    font-size:14px !important;
    font-weight:600 !important;
    white-space:nowrap !important;
}

.lb-football-item.active{
    color:#38D27A !important;
}

.lb-football-item.active::after{
    content:"" !important;
    position:absolute !important;
    left:20% !important;
    right:20% !important;
    bottom:0 !important;
    height:3px !important;
    background:#38D27A !important;
    border-radius:50px !important;
}

@media(max-width:480px){
    .lb-football-item{
        font-size:13px !important;
    }
}

body.admin-bar .lb-football-nav{
    top:171px !important;
}

@media(max-width:782px){
    body.admin-bar .lb-football-nav{
        top:185px !important;
    }
}
