/* =====================
   MENU HEADER BASE
===================== */
#mainMenu {
    position: relative;
    z-index: 1000;
    isolation: isolate;
}
.dextra-top {
    padding-right: 30px;
    padding-left: 15px;
}
.dextra-nav {
    position: relative;
    z-index: 1;
    background: #000000;
    margin-bottom: 0 !important;
    border-color: #000000;
}
/* =====================
   TOP BAR
===================== */
.dextra-logo img {
    height: 52px;
}

.user-links {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.user-links li {
    display: inline-block;
    margin-left: 15px;
    
}

.user-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7em;
    font-weight: 100;
    background-color: #fd6c01;
    padding: 6px 14px;
    border-radius: 10px !important;
    text-transform: uppercase;
}

.user-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 200;
    float:right;
    margin-right: auto;
}
.user-bottom > span:hover{
    text-decoration: underline;
}
.user-bottom img{
    height: 22px;
}
.user-bottom > button{
    padding: 0 15px;
    color: #fd6c01;
    background: transparent;
}
/* .user-bottom .tcStar{ color: #aaa; } */
/* =====================
   MENU BAR
===================== */
.navbar.navbar-default.dextra-nav 
.navbar-nav > li > a {
    color: #ffffff;
    text-transform: uppercase;
    background-color: transparent;
}

.navbar.navbar-default.dextra-nav 
.navbar-nav > li > a.active,
.navbar.navbar-default.dextra-nav 
.navbar-nav > li > a:hover {
    text-decoration: none;
    color: #fd6c01;
}

.navbar-nav > li.menu-search{
    float: right; 
    width: 15%;
}
.navbar-nav > li.menu-search > form {
    padding: 11px 0 11px 11px;
}
.menu-search > form > input[type="text"] {
    height: 2%;
    border: 0;
    border-radius: 15px !important;
    background-image: url(/img/files/Iconos/iconoBuscar.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: 95%;
}

/* ===== MEGA MENU SIZE FIX ===== */
.mega {
    position: static !important;
}

.mega > .dropdown-menu {
    width: 80%;
    max-width: 1250px;
    /* left: 43.5%; */
    transform: translateX(2%) translateY(-2%);
}

/* Altura mínima */
.mega-menu {
    min-height: 200px;
    text-transform: uppercase;
}

/* Evitar que Bootstrap lo achique */
.mega-menu.dropdown-menu {
    border: none;
    background: #363636;
}
.mega-row {
    display: flex;
}
.mega-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
/* COLUMNAS */
.mega-left {
    min-height: 300px;
    /* border-right: 1px solid #eee; */
    background: #000000;
    padding: 0;
    margin: 0;
}
.mega-right {
    min-height: 320px;
    padding: 15px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* LINKS CATEGORÍA */
.mega-cat {
    display: block;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
}

.mega-cat:hover,
.mega-cat.active {
    color: #fd6c01;
    background: #363636;
    text-decoration: none;
}

/* CONTENIDO */
.mega-content {
    display: none;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px 25px;
    overflow-x: hidden;
}

.mega-content.active {
    display: flex;
}

.mega-col {
    /* flex: 0 0 180px; */
    max-width: 145px;
}

.mega-heading {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    width: 100%;
}

.mega-title{
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}
.mega-direct{
    margin-bottom: 9px;
}

.mega-sub {
    display: block;
    font-size: 15px;
    color: #eaeaea;
    padding-left: 12px;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.noChild{
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ffffff;
}

.mega-sub:hover, .mega-title-sub:hover, .noChild:hover {
    color: #ff7a00;
}

/* DESKTOP HOVER */
@media (min-width: 768px) {
    .mega:hover .mega-menu {
        display: block;
    }
    .mega-right {
        max-height: calc(100vh - 220px);
        overflow-y: auto;
    }
}
/* =====================
   MOBILE
===================== */
@media (max-width: 767px) {

    .user-links {
        display: none;
    }

    .dextra-phone {
        text-align: center;
    }

}
/* =====================
   END MENU
===================== */