/*  */

/* Mostrar el formulario del buscador al pasar el mouse * /
#search_widget:hover .popup-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#search_widget .popup-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 1000;
}

#search_widget > a[data-toggle="dropdown"] {
    pointer-events: none;
}

*/