/* ==========================
   LALIGA GOXYTV HEADER
========================== */

.lgx-header{
    position:sticky;
    top:0;
    z-index:9999;

    background:#ffffff;

    border-bottom:1px solid #ececec;
}

.lgx-header-container{

    max-width:1400px;

    margin:0 auto;

    padding:0 20px;

    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.lgx-header-logo{

    flex-shrink:0;

    display:flex;
    align-items:center;
}

.lgx-header-logo img{

    max-height:60px;
    width:auto;
    display:block;
}

/* NAVIGATION */

.lgx-header-nav{

    display:flex;
    align-items:center;
    gap:45px;
}

.lgx-header-nav a{

    text-decoration:none;

    color:#6b7280;

    font-size:18px;
    font-weight:600;

    transition:.2s ease;
}

.lgx-header-nav a:hover{

    color:#38bdf8;
}

/* MOBILE BUTTON */

.lgx-mobile-toggle{

    display:none;

    background:none;
    border:none;

    font-size:30px;

    cursor:pointer;
}

/* TABLET */

@media(max-width:1024px){

    .lgx-header-nav{
        gap:25px;
    }

    .lgx-header-nav a{
        font-size:16px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .lgx-header-container{

        height:70px;
    }

    .lgx-mobile-toggle{
        display:block;
    }

    .lgx-header-nav{

        position:absolute;

        top:100%;
        right:0;

        width:100%;

        background:#ffffff;

        border-bottom:1px solid #ececec;

        display:none;

        flex-direction:column;

        gap:0;
    }

    .lgx-header-nav.active{
        display:flex;
    }

    .lgx-header-nav a{

        width:100%;

        text-align:center;

        padding:16px;

        border-bottom:1px solid #f3f4f6;
    }

}