﻿#lista_productos {
    position: absolute;
    float: right;
    display: inline-block;
    /*z-index: 99 !important;*/
}

    #lista_productos ul {
        list-style-type: none;
        position:relative;
        display: none;
        float: right;
        background-color: #f6f6f6;
        padding: 1px 10px;
        z-index: 9999 !important;
    }

    #lista_productos:hover ul {
        display: inline-block;
        font-size: 100% !important;
        z-index: 9999 !important;
    }

#lista_productos_consulta {
    position: absolute;
    float: right;
    display: inline-block;
}

    #lista_productos_consulta ul {
        list-style-type: none;
        display: none;
        float: right;
        background-color: #ffffff;
        padding: 1px 10px;
    }

    #lista_productos_consulta:hover ul {
        display: inline-block;
        font-size: 100% !important;
    }

@media (max-width: 950px) {
    #lista_productos {
        position: relative;
        width: 100%;
        float: none;
        display: inline-block;
        /*z-index: 99 !important;*/
    }

        #lista_productos ul {
            list-style-type: none;
            position:absolute;
            display: none;
            float: right;
            background-color: #f6f6f6;
            padding: 1px 10px;
            margin-left:30px;
            margin-top: -22px;
            z-index: 9999 !important;
        }
        #lista_productos:hover ul {
            display: block;
            font-size: 100% !important;
            z-index: 9999 !important;
        }

    #lista_productos_consulta {
        position: relative;
        width: 100%;
        float: none;
        display: inline-block;
        z-index: 99 !important;
    }

        #lista_productos_consulta ul {
            list-style-type: none;
            position: absolute;
            display: none;
            float: right;
            background-color: #ffffff;
            padding: 1px 10px;
            margin-left: 5px;
            z-index: 9999 !important;
        }

        #lista_productos_consulta:hover ul {
            display: inline-block;
            font-size: 100% !important;
            z-index: 9999 !important;
        }

}