.page-main {
    position: relative;
}

.search {
    position: relative;
    z-index: 2000;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 4;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    font-family: Arial, sans-serif;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.suggestion-item:hover {
    background-color: #f0f4f8;
}

.suggestion-item i {
    margin-right: 10px;
    color: #888;
}

.suggestion-item span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newbtn li a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    color: #da291c;
    text-decoration: none;
    font-size: 16px;
}

.newbtn li a i {
    color: #da291c;
    margin-right: 5px;
    font-size: 30px;
    /* Icono más grande */
}


.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    /* Coloca los botones en una columna */
    gap: 10px;
    /* Espacio entre botones */
    z-index: 1000;
}

.floating-buttons .button {
    background-color: #25d366;
    /* Por defecto, WhatsApp */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}


.floating-buttons .button a {
    color: white;
    font-size: 50px;
}

.floating-buttons .button:hover {
    transform: scale(1.1);
}

.floating-buttons .button.info {
    background-color: #007bff;
    /* Color para el botón de llamada */
    position: relative;
}

.floating-buttons .button.fas {
    background-color: rgb(212, 177, 17);
    /* Color para el botón de llamada */
    position: relative;
}


.floating-buttons .button .tooltip {
    position: absolute;
    right: 80px;
    /* Ajusta según el ancho del texto */
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    /* Evita que el texto se rompa */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.floating-buttons .button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 760px) {
    .floating-buttons .button {
        width: 50px;
        height: 50px;
    }

    .floating-buttons .button a {
        font-size: 30px;
    }

    .floating-buttons .button .tooltip {
        right: 50px;
        /* Ajusta según el ancho del texto */
        padding: 5px 8px;
        font-size: 10px;

    }
}


#notification-dropdown {
    z-index: 9999 !important;
    position: fixed;
    left: auto !important;
    right: 5%;
    padding: 10px !important;
    width: 400px !important;
}

#notification-dropdown h4 {
    line-height: 1;
    margin: 1rem auto;
}

#notification-list .description-notify{
    color: #000;
    font-size: 14px;
    font-weight: normal;
}
#notification-list li {
    transition: background-color 0.3s ease-in-out;
}

#notification-list li:hover {
    background-color: rgb(150, 149, 149);
}

#notification-list .btn-notificacion {
    padding: 8px !important;
}



