.div_nav_murphy{
    position: relative;
    width: 100%;
    height: 50px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.nav_murphys{
    position: relative;
    width: 80%;
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, .2);
    border-left: 1px solid rgba(0, 0, 0, .2);
    line-height: 50px;
    font-size: 25px;
    font-weight: 700;
    padding-left: 20px;
    overflow: hidden;
    
    
}

.nav_murphys label{
    cursor: pointer;
    width: 100%;
    margin-right: 1px;
    transition: all .4s ease;
    padding: 10px;
}

.nav_murphys label:hover, .nav_murphys label.activo{
    background: #FECD56;
    color: aliceblue;
}

.div_categorias{
    position: absolute;
    width: 300px;
    min-height: 0px;
    max-height: 0px;
    overflow: auto;
    background: #fff;
    z-index: 2;
    top: 250px;
    left: 192px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
    border: 1px solid rgba(0, 0, 0, 0, .2);
    display: flex;
    flex-wrap: wrap;
    transition: all .3s ease;
    
}

.div_categorias::-webkit-scrollbar {
    -webkit-appearance: none;
}

.div_categorias::-webkit-scrollbar:vertical {
    width:10px;
}

.div_categorias::-webkit-scrollbar-button:increment,.div_categorias::-webkit-scrollbar-button {
    display: none;
}

.div_categorias::-webkit-scrollbar:horizontal {
    height: 10px;
}

.div_categorias::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.div_categorias::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.div_categorias.activo{
    
    min-height: 100px;
    max-height: 200px;
}

.l_cate{
    position: relative;
    width: 100%;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    transition: all .5s ease;
    cursor: pointer;
}

.lcerrarcate{
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    transition: all .5s ease;
    cursor: pointer;
    right:  0%;
    text-align: center;
    color: rgba(0, 0, 0, .6);
    left: 100%;
    transform: translate(-100%);
}

.lcerrarcate:hover{
    color: rgba(0, 0, 0, .8);
}

.l_cate:hover{
    background: #FECD56;
    color: aliceblue;
}

.flecha_cat{
    position: relative;
    top: 3%;
    
}


.flecha_cat.activo{
    transform: rotate(180deg);
}

.l_menu_responsive{
    display: none;
    position: relative;
    height: 100%;
    line-height: 100%;
    width: 100%;
    left: 0;
}

.menu_pc{
    display: block;
}

.menu_movil{
    display: none;
}

.i_cerrar_menu{
    display: none;
}

/** Responsive menu */
/**Small devices (landscape phones, 280px and up)**/
@media (min-width:280px){
     
    .nav_murphys{
       width: 100%;
       padding-left: 0px;


    }
    
    .menu_pc{
        display: none;
    }

    .menu_movil{
        position: absolute;
        top: 49px;
        display: flex;
        flex-wrap: wrap;
        min-height: 0px;
        max-height: 0px;
        background: #fff;
        z-index: 2;
        transition: all .4s ease;
        overflow: auto;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        
    }
    
    .menu_movil.activo{
        min-height: 200px;
        max-height: 300px;
        
    }
    
    .menu_movil label{
        position: relative;
        cursor: pointer;
        width: 100%;
        margin-right: 1px;
        transition: all .4s ease;
        padding: 10px;
        font-size: 1.2em;
    }

    
    .l_menu_responsive {
        position: relative;
        height: 100%;
        line-height: 100%;
        width: 100%;
        left: 0;
        display: block;
        font-size: 1.2em;
    }


    .div_categorias {
        position: absolute;
        width: 300px;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 350px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }
    
     .flecha_cat {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 3%;
    }
    
    
    .flecha_cat.activo{
        top: 20%;
        transform: translateY(-50%);
        transform: rotate(180deg);
    }
    
    .i_cerrar_menu{
        position: relative;
        font-size: 24px !important;
        display: block;
        width: 100%;
        text-align: right;
        
    }
}

/**Small devices (landscape phones, 360px and up)**/
@media (min-width:320px){

    .nav_murphys{
       width: 100%;
       padding-left: 0px;


    }
    
    .menu_pc{
        display: none;
    }

    .menu_movil{
        position: absolute;
        top: 49px;
        display: flex;
        flex-wrap: wrap;
        min-height: 0px;
        max-height: 0px;
        background: #fff;
        z-index: 2;
        transition: all .4s ease;
        overflow: auto;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        
    }
    
    .menu_movil.activo{
        min-height: 200px;
        max-height: 300px;
        
    }
    
    .menu_movil label{
        position: relative;
        cursor: pointer;
        width: 100%;
        margin-right: 1px;
        transition: all .4s ease;
        padding: 10px;
        font-size: 1.2em;
    }

    
    .l_menu_responsive {
        position: relative;
        height: 100%;
        line-height: 100%;
        width: 100%;
        left: 0;
        display: block;
        font-size: 1.2em;
    }


    .div_categorias {
        position: absolute;
        width: 100%;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 300px;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }
}

/**Small devices (landscape phones, 360px and up)**/
@media (min-width:360px){
    
    .nav_murphys{
       width: 100%;
       padding-left: 0px;


    }
    
    .menu_pc{
        display: none;
    }

    .menu_movil{
        position: absolute;
        top: 49px;
        display: flex;
        flex-wrap: wrap;
        min-height: 0px;
        max-height: 0px;
        background: #fff;
        z-index: 2;
        transition: all .4s ease;
        overflow: auto;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        
    }
    
    .menu_movil.activo{
        min-height: 200px;
        max-height: 300px;
        
    }
    
    .menu_movil label{
        position: relative;
        cursor: pointer;
        width: 100%;
        margin-right: 1px;
        transition: all .4s ease;
        padding: 10px;
        font-size: 1.2em;
    }

    
    .l_menu_responsive {
        position: relative;
        height: 100%;
        line-height: 100%;
        width: 100%;
        left: 0;
        display: block;
        font-size: 1.2em;
    }


    .div_categorias {
        position: absolute;
        width: 100%;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 395px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }
}

/**Small devices (landscape phones, 375px and up)**/
@media (min-width:375px){
     .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 390px;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}

/**Small devices (landscape phones, 390px and up)**/
@media (min-width:390px){
    .nav_murphys{
       width: 100%;
       padding-left: 0px;


    }
    
    .menu_pc{
        display: none;
    }

    .menu_movil{
        position: absolute;
        top: 49px;
        display: flex;
        flex-wrap: wrap;
        min-height: 0px;
        max-height: 0px;
        background: #fff;
        z-index: 2;
        transition: all .4s ease;
        overflow: auto;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        
    }
    
    .menu_movil.activo{
        min-height: 200px;
        max-height: 300px;
        
    }
    
    .menu_movil label{
        position: relative;
        cursor: pointer;
        width: 100%;
        margin-right: 1px;
        transition: all .4s ease;
        padding: 10px;
        font-size: 1.2em;
    }

    
    .l_menu_responsive {
        position: relative;
        height: 100%;
        line-height: 100%;
        width: 100%;
        left: 0;
        display: block;
        font-size: 1.2em;
    }


    .div_categorias {
        position: absolute;
        width: 100%;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 350px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }
    
    

}

/**Small devices (landscape phones, 576px and up)**/
@media (min-width:393px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 345px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}
/**Small devices (landscape phones, 576px and up)**/
@media (min-width:400px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 345px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}
/**Small devices (landscape phones, 576px and up)**/
@media (min-width:412px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 360px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}
/**Small devices (landscape phones, 576px and up)**/
@media (min-width:432px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 360px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}
/**Small devices (landscape phones, 576px and up)**/
@media (min-width:480px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 360px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}

/**Small devices (landscape phones, 540px and up)**/
@media (min-width:540px){
         
}

/**Small devices (landscape phones, 576px and up)**/
@media (min-width:576px){
     .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 450px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}


/**Small devices (landscape phones, 576px and up)**/
@media (min-width:600px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 400px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}

/**Medium devices (tablets, 768px and up)*/
@media (min-width:768px){
   
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 450px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}


/**Small devices (landscape phones, 576px and up)**/
@media (min-width:834px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 450px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
}

/**Large devices (desktops, 992px and up)*/
@media (min-width:992px){

}

/**Extra large devices (large desktops, 1024px and up)*/
@media (min-width:1024px){
    .div_categorias {
        position: absolute;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 400px !important;
        left: 0px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }
    
}

/**Extra large devices (large desktops, 1200px and up)*/
@media (min-width:1200px){
   
}

/**Extra large devices (large desktops, 1280px and up)*/
@media (min-width:1280px){
    
    .div_categorias {
        position: absolute;
        width: 300px;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 300px;
        left: 150px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }
}

/**Extra large devices (large desktops, 1440px and up)*/
@media (min-width:1440px){
    
    .div_nav_murphy {
        position: relative;
        width: 100%;
        height: 50px;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, .2);
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
    }

    .nav_murphys {
        position: relative;
        width: 80%;
        height: 100%;
        border-right: 1px solid rgba(0, 0, 0, .2);
        border-left: 1px solid rgba(0, 0, 0, .2);
        line-height: 50px;
        font-size: 25px;
        font-weight: 700;
        padding-left: 0px;
        overflow: hidden;


    }

    .nav_murphys label {
        cursor: pointer;
        width: 100%;
        margin-right:0px;
        transition: all .4s ease;
        padding: 10px;
        font-size: .8em;
    }

    .nav_murphys label:hover,
    .nav_murphys label.activo {
        background: #FECD56;
        color: aliceblue;
    }

    .div_categorias {
        position: absolute;
        width: 400px;
        min-height: 0px;
        max-height: 0px;
        overflow: auto;
        background: #fff;
        z-index: 2;
        top: 300px !important;
        left: 192px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
        border: 1px solid rgba(0, 0, 0, 0, .2);
        display: flex;
        flex-wrap: wrap;
        transition: all .3s ease;

    }

    .div_categorias.activo {

        min-height: 100px;
        max-height: 200px;
    }

    .l_cate {
        position: relative;
        width: 100%;
        height: 40px;
        font-size: 18px;
        font-weight: 500;
        padding: 10px;
        transition: all .5s ease;
        cursor: pointer;
    }

    .l_cate:hover {
        background: #FECD56;
        color: aliceblue;
    }

    .flecha_cat {
        position: relative;
        top: 3%;

    }


    .flecha_cat.activo {
        transform: rotate(180deg);
    }

    .l_menu_responsive {
        display: none;
        position: relative;
        height: 100%;
        line-height: 100%;
        width: 100%;
        left: 0;
    }

    .menu_pc {
        display: block;
    }

    .menu_movil {
        display: none;
    }

    .menu_pc .flecha_cat{
        position: relative;
        top: 10px;
        left: 0px;
        
    }
    
    
    .flecha_cat.activo {
        top: 0px;
        transform: rotate(180deg);
    }
}




