.highlight {
    background-color: var(--yellow40);
    -moz-border-radius: 5px;
    /* FF1+ */
    -webkit-border-radius: 5px;
    /* Saf3-4 */
    border-radius: 5px;
    /* Opera 10.5, IE 9, Saf5, Chrome */
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    /* FF3.5+ */
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    /* Saf3.0+, Chrome */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    /* Opera 10.5+, IE 9.0 */
}

.search_result_found {
    position: absolute;
    padding: 5px;
    font-size: 12px;
    font-weight: 200;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .glyphicon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* El icono no intercepta eventos de ratón */
}

.input-with-icon input {
    padding-left: 30px;
    /* Espacio para el icono */
}

@media (max-width: 768px) {
    /* .search_result_found {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 15px;
        padding-top: 10px;
    } */
}