/*====================================
 HEADER INTERNO NEXT
====================================*/

.next-header-interno{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:8px 0;
}

.next-header-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 25px;
}

/* LOGO */

.next-header-logo{
    margin-left:40px;
}

.next-header-logo img{
    height:80px;
    width:auto;
}

/* IDIOMA */

.next-header-right{
    display:flex;
    align-items:center;
}

.next-header-right .language-selected{
    font-size:20px;
    font-weight:700;
}

/* TITULO AZUL */

.header-title-next{
    background:#378ccc;
    color:#fff;
    font-size:24px;
    font-weight:800;
    text-transform:uppercase;
    padding:18px 60px;
    letter-spacing:.5px;
}

/* FILTROS */

.header-filter{
    background:#fff;
    padding:12px 50px;
}

/* VEHICULOS */

#row{
    padding-left:50px;
    padding-right:50px;
}

/* MOBILE */

@media(max-width:768px){

    .next-header-container{
        padding:0 15px;
    }

    .next-header-logo{
        padding-left:0;
    }

    .next-header-logo img{
        height:65px;
    }

    .header-title-next{
        padding:15px;
        font-size:18px;
    }

    .header-filter{
        padding:10px;
    }

    #row{
        padding-left:10px;
        padding-right:10px;
    }

}