/* ********************************************* */
/* **************** EXPLICACIÓN **************** */
/* ********************************************* */

/*

    // Comentarios
        * Comentarios en mayúsculas: Agrupa estilos de un mismo componente o sección.
        * Comentarios en minúscula: Corresponden a subtítulos dentro de un mismo componente o sección.
        * En los media queries, se nombra en mayúscula el dispositivo entrante, y se nombre en minúscula el dispositivo saliente.

    // Estructura y orden de las propiedades
        selectores{
            * Propiedades de estructura
                + Display, tamaños, paddings
            * Propiedades de posición
                + Tipo de posición, posiciones
            * Márgenes
            * Propiedades de estilo
                + backgrounds
            * (Enter)
            * Propiedades prefijadas (separadas con un enter entre sí, y del resto de los estilos)
        }

    // Consideraciones a nivel de estructura
        * No usamos floats, ya que estos rompen el "Normal Document Flow" del sitio; lo cuál muchas veces genera problemas.
        * Los columnados se trabajan todos con display:inline-block; o position:absolute; en su defecto.
        * Para eliminar el white-space entre dos columnas con inline-block (para que entre ambos anchos sumen 100%),
          se le abre un comentario en el html donde termina la primer columna, y se lo cierra donde empieza la segunda columna.
          (Ver en el html)
        * Los margins para separar elementos en el eje vertical los usamos siempre hacia arriba (Salvo excepciones).
          Esto nos permite un mejor control del css a lo largo del sitio.

    // Dispositivos
        * Mobile (xs): 0px a 767px
        * Tablet (sm): 768px a 979px
        * Desktop (md): 980px a 1199px
        * HD (lg): 1200px +

*/





/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
/*body {
    line-height: 1;
}*/
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
article, aside, figure, footer, header, hgroup, menu, nav, section {
    display:block;
}



/* GENERAL */

body{
    font-size:62.5%;
    padding-top:56px;
}
#header,
#header input,
#header select,
#header button{
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust:none;
    font-family: 'Noto Sans', sans-serif;
    font-weight:400;
    color:#545459;
}
#header p{
    text-rendering:optimizeLegibility;
}
#header strong{
    font-weight:700;
}
#header em{
    font-style:italic;
}
#header input,
#header select,
#header button{
    border:none;
    resize:none;
    border-radius:0;
    background-color:transparent;
    -webkit-appearance:none;
    padding:0;
    margin:0;
}
#header input{
    outline:none;
}

#header a,
#header button{
    color:#545459;
    -webkit-tap-highlight-color:rgba(206, 82, 67, 0.3);
    cursor:pointer;

    transition:
        color 200ms ease-out,
        background 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
    -webkit-transition:
        color 200ms ease-out,
        background 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        -webkit-box-shadow 200ms ease-out;
    -moz-transition:
        color 200ms ease-out,
        background 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
    -o-transition:
        color 200ms ease-out,
        background 200ms ease-out,
        border 200ms ease-out,
        opacity 200ms ease-out,
        box-shadow 200ms ease-out;
}



/* HIDDENS */

@media (max-width: 767px) {
    #header .hidden-xs{
        display:none !important;
    }
}
@media (min-width: 768px) and (max-width: 979px) {
    #header .hidden-sm{
        display:none !important;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {
    #header .hidden-md{
        display:none !important;
    }
}
@media (min-width: 1200px) {
    #header .hidden-lg{
        display:none !important;
    }
}



/* HEADER */

#header .wrapper{
    width:100%;
    max-width:1360px;
    margin-right:auto;
    margin-left:auto;
    padding-right:25px;
    padding-left:25px;

    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
#header .notVisible{
    position:absolute;
    top:-9999px;
    left:-9999px;
}
#header .scrollable{
    width:100%;
    height:100%;
    overflow:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}
#header .scrollable.scroll-x{
    height:auto;
    overflow:hidden;
    overflow-x:auto;
}

#header .foto{
    display:block;
    width:100%;
    position:relative;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}
#header .foto[style*="background-image:"]:before{
    content:"";
    display:block;
    width:100%;
    height:0;
    padding-bottom:56.85%;
}
#header .foto img{
    display:block;
    width:100%;
}

#header .bold,
#header .header-heading{
    font-family: 'Montserrat', 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}


/* HEADER */

#header{
    width:100%;
    position:fixed;
    left:0;
    top:0;
    z-index:100;
    background-color:#EC5441;
    box-shadow:0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    text-align:center;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .head{
    height:56px;
    padding:0 50px 0 72px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .head:before{
    content:"";
    display:inline-block;
    vertical-align: middle;
    height:100%;
}
#header .head > .wrapper{
    display:inline-block;
    vertical-align: middle;
    height:auto;
    text-align: left;
    padding:0;
}

#header #logo{
    width:146px;
}
#header #logo a{
    display:block;
    width:100%;
}
#header #logo a img{
    display: block;
    width: 100%;
}

#header #menu-btn{
    display:block;
    width:44px;
    height:44px;
    position:absolute;
    left:6px;
    top:6px;
    background-color:rgba(255, 255, 255, 0);
}
#header #menu-btn:hover{
    background-color:rgba(255, 255, 255, 0.15);
}

#header #menu-btn span{
    display:block;
    width:18px;
    height:2px;
    position:relative;
    margin:0 auto;
    background-color:#fff;
}
#header #menu-btn span:before,
#header #menu-btn span:after{
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:-5px;
    background-color:#fff;
}
#header #menu-btn span:after{
    top:5px;
}

/* Search */

#header .search,
#header .search #search-btn,
#header .search .close-btn{
    display:block;
    width:56px;
    height:56px;
    position:absolute;
    right:0;
    top:0;
    z-index:10;
    background-color:rgba(255, 255, 255, 0);
    padding:6px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .search{
    z-index:10;
    overflow: hidden;

    -webkit-transition: width 350ms ease-out;
    -o-transition: width 350ms ease-out;
    transition: width 350ms ease-out;
}
#header .search #search-btn{
    width:44px;
    height:44px;
    right:auto;
    top:6px;
    left:6px;
    z-index:20;
    padding:0;
    background:no-repeat center;
    background-size:auto 18px;
    background-image:url(../images/search-btn@3.png);
    background-image:url(../images/search-btn.svg), none;
    background-color:rgba(255, 255, 255, 0);
}
#header:not(.showSearch) #search-btn:hover{
    background-color:rgba(255, 255, 255, 0.15);
}
#header .search .form{
    display:none;
    width:100%;
    height:100%;
    min-width:300px;
    position:relative;
    opacity:0;
    padding-right:44px;
    border-radius:8px;
    background-color:rgba(255, 255, 255, 0.2);

    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .search .form .label{
    display:block;
    width:100%;
    height:100%;
    position:relative;
    z-index:10;
    padding-left:44px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .search .form .label:before{
    content:"";
    display:inline-block;
    vertical-align: middle;
    height:100%;
}
#header .search .form .label .input{
    display:inline-block;
    vertical-align: middle;
    width:100%;
    border-left:3px solid rgba(255,255,255,0.3);
    text-transform: none;
    font-size:1.6em;
    padding-left:10px;
    color:#fff;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header .search .form .label .input::-webkit-input-placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
#header .search .form .label .input:-moz-placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
#header .search .form .label .input::-moz-placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
#header .search .form .label :-ms-input-placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
#header .search .close-btn{
    display:block;
    width:44px;
    height:44px;
    position:absolute;
    right:0;
    top:0;
    border-radius:0;
    line-height: 0;
    padding:0;
    background-color:rgba(255, 255, 255, 0);
}
#header .search .close-btn:hover{
    background-color:rgba(255, 255, 255, 0.1);
}
#header .search .close-btn:before,
#header .search .close-btn:after{
    content:"";
    display:block;
    width:18px;
    height:3px;
    margin:0 auto;
    background-color:#fff;
    position:relative;
    top:2px;

    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#header .search .close-btn:after{
    top:-1px;

    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Open Search */

#header.showSearch .search{
    width:100%;
}
#header.showSearch .search #search-btn{
    z-index:0;
}
#header.showSearch .search .form{
    opacity:1;
}
@media (max-width:767px){
    #header.showSearch .wrapper{
        display:none;
    }
}


/* HEADER TABS */

#header .tabs{
    display:none;
}
@media (max-width:767px){
    html.showTabs body{
        padding-top:104px;
    }
}
html.showTabs #header .tabs{
    display:block;
}

#header .tabs{
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
#header .tabs .tab{
    display:inline-block;
    vertical-align: top;
}
#header .tabs .tab a{
    display:block;
    padding: 0 20px;
    height:48px;
    line-height:46px;
    font-size:1.5em;
    color:#fff;
}
#header .tabs .tab:first-child a{
    padding-left: 20px;
}
#header .tabs .tab.active a{
    box-shadow:inset 0px -3px 0px 0px #fff;
}
#header .tabs .tab a:hover{
    background-color:rgba(255, 255, 255, 0.2);
}


/* Fixed tabs */

#header[data-fixed-tabs="true"] .tabs{
    text-align: center;
    overflow:hidden;
}
#header[data-fixed-tabs="true"] .tabs .tab{
    display:inline-block;
    vertical-align: top;
    width:33.333333%;
}



/* NOTIFICATIONS MODAL MOBILE */

@media (max-width: 979px){

    #header .show-notifications {
        display:none;
    }
    #header .notifications-modal {
        width:100%;
        position:fixed;
        left:0;
        bottom:0px;
        z-index:700;
        bottom:0;
        padding:25px 0 30px;
        background-color:#4a494f;
        color:#fff;
        box-shadow:0px -3px 0px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        transition: all ease-out .2s;
        opacity: 0;
        transform: translateY(150px);
    }
    #header .notifications-modal.active {
        transform: translateY(0px);
        opacity: 100;
    }
    #header .notifications-modal .wrapper{
        max-width:400px;
        margin:0 auto;
    }
    #header .notifications-modal p{
        font-size:1.4em;
        line-height: 1.3;
        padding:0 20px 0 65px;
        position:relative;
        text-align: left;
    }
    #header .notifications-modal p:before{
        content:"";
        display:block;
        width:46px;
        height:46px;
        position:absolute;
        left:0;
        top:50%;
        margin-top:-23px;
        border-radius:50%;
        background:#fff no-repeat center/40px;
        background-image:url(../images/icons/notificaciones@3.png);
        background-image:url(../images/icons/notificaciones.svg), none;
    }
    #header .notifications-modal .btn{
        display:block;
        width:100%;
        padding:10px;
        font-size:1.6em;
        color:#fff;
        background-color:#ce5243;
        border-radius:5px;
        margin-top:20px;
    }
    #header .notifications-modal .btn:hover{
        background-color:#EC5441;
    }
    #header .notifications-modal .later{
        display:inline-block;
        padding:3px 0;
        font-size: 1.4em;
        line-height: 1.3;
        margin-top:11px;
        color:#fff;
        border-bottom:1px solid rgba(255,255,255, 0.7);
    }
    #header .notifications-modal .later:hover{
        color:#ce5243;
        border-color:rgba(206, 82, 67, 0.7);
    }

}




/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    /* GENERAL */

    body{
        padding-top:70px;
    }
    html.showTabs body{
        padding-top:118px;
    }
    
    #header .wrapper{
        padding-left:30px;
        padding-right:30px;
    }



    /* HEADER */

    #header{
        box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.1);
    }
    #header .head{
        height:70px;
        padding-left:75px;
    }
    #header .head > .wrapper{
        padding:0;
    }
    #header #logo{
        width:150px;
    }

    #header #menu-btn{
        width:50px;
        height:50px;
        left:10px;
        top:10px;
    }
    #header #menu-btn span{
        display:block;
        width:24px;
        height:3px;
        position:relative;
        margin:0 auto;
        background-color:#fff;
    }
    #header #menu-btn span:before,
    #header #menu-btn span:after{
        top:-7px;
    }
    #header #menu-btn span:after{
        top:7px;
    }

    /* Search */

    #header .search{
        width:70px;
        height:70px;
        padding:10px;
        right:10px;
    }
    #header.showSearch .search{
        width:66.666666%;
    }
    #header .search #search-btn{
        width:50px;
        height:50px;
        top:10px;
        left:10px;
        background-size:25px;
    }
    #header .search .form{
        padding-right:50px;
    }
    #header .search .close-btn{
        width:50px;
        height:50px;
    }
    #header .search .close-btn:before,
    #header .search .close-btn:after{
        width:20px;
    }
    #header .search .form .label{
        padding-left:50px;
    }

    #header .search .form .label .input{
        font-size:1.8em;
        padding-left:14px;
        border-left-width: 4px;
    }

    /* Fixed tabs */

    #header[data-fixed-tabs="true"] .tabs{
        height:100%;
        position:absolute;
        right:110px;
        top:0;
        z-index:0;

        -webkit-transition: 
            top 0ms linear,
            opacity 200ms ease-out 350ms;
        -o-transition: 
            top 0ms linear,
            opacity 200ms ease-out 350ms;
        transition: 
            top 0ms linear,
            opacity 200ms ease-out 350ms;
    }
    #header[data-fixed-tabs="true"].showSearch .tabs{
        opacity:0;
        top:-101%;

        -webkit-transition: 
            top 0ms linear 200ms,
            opacity 200ms ease-out;
        -o-transition: 
            top 0ms linear 200ms,
            opacity 200ms ease-out;
        transition: 
            top 0ms linear 200ms,
            opacity 200ms ease-out;
    }
    #header[data-fixed-tabs="true"] .tabs .tab{
        width:auto;
        height:100%;
        position:relative;
    }
    #header[data-fixed-tabs="true"] .tabs .tab + .tab{
        margin-left:35px;
    }
    #header[data-fixed-tabs="true"] .tabs .tab:before{
        content:"";
        display:inline-block;
        vertical-align: middle;
        height:100%;
    }
    #header[data-fixed-tabs="true"] .tabs .tab a{
        display:inline-block;
        vertical-align: middle;
        font-size:1.6em;
        height:44px;
        line-height:44px;
        box-shadow:none !important;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    #header[data-fixed-tabs="true"] .tabs .tab.active{
        box-shadow:inset 0px -5px 0px 0px #fff;
    }

   

    /* HEADING */

    #header .header-heading{
        font-size:3em;
    }
    #header .header-heading:before{
        width:5px;
        height:25px;
    }
    #header .header-heading.small{
        font-size:2.6em;
    }

}



/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {


    body,
    html.showTabs body{
        padding-top:124px;
    }

    /* TOP BAR */

    #topbar{
        background-color:rgba(0, 0, 0, 0.1);
        text-align: left;
    }
    #topbar,
    #topbar .links .link a,
    #topbar .redes:before{
        height:44px;
    }

    #topbar .links{}
    #topbar .links .link,
    #topbar .links .link a,
    #topbar .links .link a .icon{
        display:inline-block;
        vertical-align: middle;
    }
    #topbar .links .link + .link{
        margin-left:26px;
    }
    #topbar .links .link a{
        font-size:1.4em;
        color:#fff;
        line-height: 42px;
    }
    #topbar .links .link a .icon{
        background:no-repeat center/contain;
        position:relative;
        margin-right:6px;
    }
    #topbar .links .link a .icon.user{
        width:20px;
        height:20px;
        background-image:url(../images/icons/topbar-user@3.png);
        background-image:url(../images/icons/topbar-user.svg), none;
        top:-1px;
        margin-right:5px;
    }
    #topbar .links .link a .icon.email{
        width:23px;
        height:17px;
        background-image:url(../images/icons/topbar-email@3.png);
        background-image:url(../images/icons/topbar-email.svg), none;
        top:-1px;
    }

    #topbar .links .link a:hover{
        opacity:0.5;
    }

    #topbar .redes{
        text-align: right;
    }
    #topbar .redes:before,
    #topbar .redes li{
        display:inline-block;
        vertical-align: middle;
    }
    #topbar .redes:before{
        content:"";
    }
    #topbar .redes li .icon{
        display:block;
        width:34px;
        height:34px;
        line-height:34px;
        font-size: 28px;
        color:#fff;
        background:no-repeat center;
        background-size:30px;
    }
    #topbar .redes li .icon:hover{
        opacity:0.5;
    }
    #topbar .redes li .icon.facebook{
        background-image:url(../images/icons/sn-facebook-w@3.png);
        background-image:url(../images/icons/sn-facebook-w.svg), none;
    }
    #topbar .redes li .icon.twitter{
        background-image:url(../images/icons/sn-twitter-w@3.png);
        background-image:url(../images/icons/sn-twitter-w.svg), none;
    }
    #topbar .redes li .icon.instagram{
        background-image:url(../images/icons/sn-instagram-w@3.png);
        background-image:url(../images/icons/sn-instagram-w.svg), none;
    }
    #topbar .redes li .icon.periscope{
        background-image:url(../images/icons/sn-periscope-w@3.png);
        background-image:url(../images/icons/sn-periscope-w.svg), none;
    }
    #topbar .redes li .icon.youtube{
        background-image:url(../images/icons/sn-youtube-w@3.png);
        background-image:url(../images/icons/sn-youtube-w.svg), none;
    }
    #topbar .redes li .icon.snapchat{
        background-image:url(../images/icons/sn-snapchat-w@3.png);
        background-image:url(../images/icons/sn-snapchat-w.svg), none;
    }
    #topbar .redes li .icon.spotify{
        background-image:url(../images/icons/sn-spotify-w@3.png);
        background-image:url(../images/icons/sn-spotify-w.svg), none;
    }
    #topbar .redes li .icon.rss{
        background-image:url(../images/icons/sn-rss-w@3.png);
        background-image:url(../images/icons/sn-rss-w.svg), none;
    }
    #topbar .redes li .icon.facebook{
        background-image:url(../images/icons/sn-facebook-w@3.png);
        background-image:url(../images/icons/sn-facebook-w.svg), none;
    }
    #topbar .redes li .icon.notificaciones{
        background-image:url(../images/icons/notificaciones-w@3.png);
        background-image:url(../images/icons/notificaciones-w.svg), none;
    }

    /* Notificaciones */

    #topbar .redes .show-notifications{
        display:none;
    }
    #topbar .notifications-holder{
        position:relative;
    }
    #topbar .notifications-holder .notifications-modal{
        display:block;
        width:240px;
        padding:25px;
        position:absolute;
        top:44px;
        right:50%;
        z-index:999;
        margin-right:-120px;
        background-color:#e8e8e8;
        text-align: center;
        border-radius:5px;
        box-shadow:0px 20px 70px -10px rgba(0,0,0,0.3);

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        transition: all ease-out .2s;
        opacity: 0;
        transform: translateY(-30px);
    }
    #topbar .notifications-modal.active {
        opacity: 100;
        transform: translateY(0);
    }
    #topbar .notifications-holder .notifications-modal:before{
        content:"";
        display:block;
        width:0;
        height:0;
        border-left:10px solid transparent;
        border-right:10px solid transparent;
        border-bottom:12px solid #e8e8e8;
        position:absolute;
        left:50%;
        margin-left:-10px;
        top:-10px;
    }
    #topbar .notifications-holder .notifications-modal p{
        font-size: 1.6em;
        line-height: 1.3;
    }
    #topbar .notifications-holder .notifications-modal .btn{
        display:block;
        width:100%;
        padding:10px;
        font-size:1.6em;
        color:#fff;
        background-color:#ce5243;
        border-radius:5px;
        margin-top:20px;
    }
    #topbar .notifications-holder .notifications-modal .btn:hover{
        background-color:#EC5441;
    }
    #topbar .notifications-holder .notifications-modal .later{
        display:inline-block;
        padding:3px 0;
        font-size: 1.4em;
        line-height: 1.3;
        margin-top:11px;
        border-bottom:1px solid rgba(84, 84, 89, 0.7);
    }
    #topbar .notifications-holder .notifications-modal .later:hover{
        color:#ce5243;
        border-color:rgba(206, 82, 67, 0.7);
    }


    /* HEADER */

    #header{
        height:auto;
        padding:0;
        box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0);

        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);

        -webkit-transition: 
            -webkit-box-shadow 200ms ease-out,
            -webkit-transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
        -o-transition: 
            box-shadow 200ms ease-out,
            -o-transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
        transition:
            box-shadow 200ms ease-out,
            transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
    }
    #header.fixed{
        box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.1);

        -webkit-transform: translate3d(0, -44px, 0);
        -ms-transform: translate3d(0, -44px, 0);
        -o-transform: translate3d(0, -44px, 0);
        transform: translate3d(0, -44px, 0);
    }
    #header .head{
        height:80px;
        padding:0 !important;
        position:relative;
    }

    #header #menu-btn{
        left: 15px;
        top: 14px;
    }
    #header.fixed .head #menu-btn{
        top:16px;
    }

    #header .head > .wrapper{
        padding:2px 60px 0 30px;
        text-align: justify;
        line-height: 0;
    }
    /*
    #header .head > .wrapper{
        padding-right:0;
        text-align: justify;
        line-height: 0;
    }
    #header .head > .wrapper:after{
        content:"";
        display:inline-block;
        width:100%;
    }
    #header .dummy{
        display:inline-block;
        vertical-align: middle;
        width:60px;
        height:60px;
    }
    */

    #header #logo{
        width:140px;
    }

    #header #logo,
    #header .nav,
    #header .nav .menu,
    #header .nav .menu > li,
    #header .nav .menu > li > a{
        display:inline-block;
        vertical-align: middle;
        line-height: 1;
        text-align: left;
    }

    #header .nav{
        padding-left:24px;
    }
    #header .nav .menu > li > a{
        color:#fff;
        font-size:1.5em;
        font-weight: 700;
        padding:9px 8px 10px;
    }
    #header .nav .menu > li.children > a{
        padding-right:7px;
    }
    #header .nav .menu > li.children > a:after{
        content:"";
        display:inline-block;
        width:9px;
        height:9px;
        border:solid rgba(255, 255, 255, 0.6);
        border-width:0 3px 3px 0;
        margin-left:8px;
        position:relative;
        top:-2px;

        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

        -webkit-transition: 
            -webkit-transform 200ms ease-out,
            border-color 200ms ease-out;
        -o-transition: 
            -o-transform 200ms ease-out,
            border-color 200ms ease-out;
        transition: 
            transform 200ms ease-out,
            border-color 200ms ease-out;
    }

    #header .nav .menu > li.active > a,
    #header .nav .menu > li > a:hover,
    #header .nav .menu > li.children.show > a{
        color:#ce5243;
        background-color:#fff;
    }
    #header .nav .menu > li.children.active > a:after,
    #header .nav .menu > li.children > a:hover:after,
    #header .nav .menu > li.children.show > a:after{
        border-color:rgba(206, 82, 67, 0.6);
    }

    /* Size Fix */

    #header .nav .menu > li > a{
        font-size:1.4em;
        padding:9px 7px 10px;
    }
    #header .nav .menu > li.children > a{
        padding-right:6px;
    }
    #header .nav .menu > li.children > a:after{
        width:8px;
        height:8px;
        border-width:0 3px 3px 0;
        margin-left:6px;
        top:-2px;
    }

    /* Search */

    #header.showSearch .head:after{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 5;
    }
    #header .nav{
        opacity:1;

        -webkit-transition: opacity 250ms ease-out 300ms;
        -o-transition: opacity 250ms ease-out 300ms;
        transition: opacity 250ms ease-out 300ms;
    }
    #header.showSearch .nav{
        opacity:0;

        -webkit-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    #header .search{
        width:60px;
        height:60px;
        top:10px;
        right:15px;
        padding:5px;
    }
    #header.showSearch .search{
        width:50%;
    }
    #header .search #search-btn{
        top:5px;
        left:5px;
    }


    /* Submenu */

    #header .nav .menu > li.children .holder{
        display:none;
        width:100%;
        height:5000px;
        overflow: hidden;
        position:absolute;
        left:0;
        z-index:10;
    }
    #header .nav .menu > li.children .holder{
        top:80px;
    }


    #header .nav .menu > li.children .holder .submenu{
        display:block;
        width:100%;
        position:relative;
        z-index:1;
        background:#fff;
        padding:6px 0 50px;
        box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.1);

        -webkit-transform: translate3d(0, -101%, 0);
        -ms-transform: translate3d(0, -101%, 0);
        -o-transform: translate3d(0, -101%, 0);
        transform: translate3d(0, -101%, 0);

        -webkit-transition: -webkit-transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
        -o-transition: -o-transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
        transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    #header .nav .menu > li.children .overlay{
        display:block;
        width:100%;
        height:5000px;
        position:absolute;
        top:0;
        left:0;
        z-index:0;
        background:#000;
        opacity:0;
        pointer-events: none;

        -webkit-transition: opacity 250ms ease-out 300ms;
        -o-transition: opacity 250ms ease-out 300ms;
        transition: opacity 250ms ease-out 300ms;
    }

    #header .nav .menu > li.children.show .holder .submenu{
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    #header .nav .menu > li.children.show .overlay{
        opacity:0.4;

        -webkit-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    #header .nav .menu > li.children.overrideOverlay .overlay{
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }


    #header .nav .submenu.secciones{
        padding:0 !important;
        overflow: hidden;
    }
    #header .nav .submenu.secciones .main [class*="col-"],
    #header .nav .submenu.secciones .muted [class*="col-"]{
        margin-top:12px;
    }
    #header .nav .submenu.secciones a{
        display:inline-block;
        font-size:1.6em;
        padding:12px 0;
    }
    #header .nav .submenu.secciones .main,
    #header .nav .submenu.secciones .muted{
        padding-top:20px;
        padding-bottom:40px;
    }
    #header .nav .submenu.secciones .main a{
        color:#ce5243;
        font-weight: 700;
    }
    #header .nav .submenu.secciones .main a:after{
        content:"";
        display:inline-block;
        width:9px;
        height:9px;
        border:solid rgba(206, 82, 67, 0.6);
        border-width:0 3px 3px 0;
        margin-left:8px;
        position:relative;
        top:-1px;

        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

        -webkit-transition: 
            border-color 200ms ease-out;
        -o-transition: 
            border-color 200ms ease-out;
        transition: 
            border-color 200ms ease-out;
    }
    #header .nav .submenu.secciones .main a:hover{
        color:#333;
    }
    #header .nav .submenu.secciones .main a:hover:after{
        border-color:rgba(51, 51, 51, 0.6);
    }

    #header .nav .submenu.secciones .muted{
        background-color: #e8e8e8;
        position:relative;
        padding-left:30px;
    }
    #header .nav .submenu.secciones .muted:before{
        content:"";
        display:block;
        width:5000px;
        height:5000px;
        position:absolute;
        left:0;
        top:0;
        z-index: -1;
        background-color: #e8e8e8;
    }
    #header .nav .submenu.secciones .muted a:hover{
        color:#ce5243;
    }

    /* Nav portal btn */
    
    #header #menu-btn{
        display: none;
    }
    #header[data-navportal-btn="true"] #menu-btn{
        display:block;
    }
    #header[data-navportal-btn="true"] .head > .wrapper{
        padding-left:80px;
    }



    /* NOTIFICATIONS MODAL MOBILE */

    .notifications-modal.mobile{
        display:none !important;
    }


}

@media (min-width: 1024px) {
    #header .nav .menu > li{
        margin-left:5px;
    }
}


/* ********************** de Desktop a HD ********************** */

@media (min-width: 1200px) {

    body,
    html.showTabs body{
        padding-top:142px;
    }

    /* HEADER */
    
    #header .head{
        height:98px;
    }
    #header.fixed .head{
        height:80px;
    }
    #header .head > .wrapper{
        padding-top:3px;
    }
    #header #menu-btn{
        top: 24px;
    }

    #header #logo{
        width:185px;
        position:relative;
        top:-1px;

        -webkit-transform-origin: 0% 50%;
        -moz-transform-origin: 0% 50%;
        -ms-transform-origin: 0% 50%;
        -o-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
        /*
    
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    
        -webkit-transition: -webkit-transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
        -o-transition: -o-transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
        transition: transform 500ms cubic-bezier(0.075, 0.820, 0.165, 1.000);
        */
    }
    #header.fixed #logo{
        -webkit-transform: scale(0.87);
        -ms-transform: scale(0.87);
        -o-transform: scale(0.87);
        transform: scale(0.87);
    }


    #header .nav{
        padding-left:34px;
    }
    #header .nav .menu > li{
        margin-left:0;
    }
    #header .nav .menu > li:first-child{
        margin-left:0;
    }
    #header .nav .menu > li > a{
        font-size:1.6em;
        padding:12px 13px 13px;
    }
    #header .nav .menu > li.children > a{
        padding-right:12px;
    }


    /* Search */

    #header .dummy{
        width:80px;
    }

    #header .search{
        width:70px;
        height:70px;
        top:50%;
        margin-top:-35px;
        right:15px;
    }
    #header.showSearch .search{
        width:50%;
    }
    #header .search #search-btn{
        width:60px;
        height:60px;
        background-size:29px;
    }
    #header .search .form{
        padding-right:60px;
    }
    #header .search .form .label{
        padding-left:60px;
    }
    #header .search .form .label .input{
        font-size:2.2em;
    }
    #header .search .close-btn{
        width:60px;
        height:60px;
    }


    /* Submenu */

    #header .nav .menu > li.children .holder{
        top:98px;
    }
    #header.fixed .nav .menu > li.children .holder{
        top:80px;
    }




}


@media (min-width: 1300px) {

    #header .nav .menu > li{
        margin-left:10px;
    }
    #header .nav .menu > li > a{
        padding-right:15px;
    }
    #header .nav .menu > li.children > a{
        padding-right:13px;
    }

}


/* MAS DEL WRAPPER */

@media (min-width: 1360px) {

    #header #menu-btn{
        left:50%;
        margin-left:-665px;
    }

    /* SEARCH */

    #header .search{
        right:50%;
        margin-right:-665px;
    }
    #header.showSearch .search{
        width:655px;
    }

}











