.card_new.horizontal .content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /* Número de filas a mostrar */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Añade los puntos suspensivos */
    white-space: normal;
}

.language-select {
    position: relative;
    cursor: pointer;
    height: 100%;

    .selected-lang {
        padding: 10px;
        width: 3rem;
        aspect-ratio: 1 / 1;
        text-align: center;
        border-radius: .5rem;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            width: 3rem !important;
            height: auto !important;
        }

        &:hover {
            background-color: #c8c8c851;
        }
    }

    .lang-options {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        max-height: 0;
        background-color: #9FBA27;
        border-radius: .5rem;
        justify-content: center;
        align-items: center;
        z-index: 1;
        transition: all;
        overflow: hidden;
        transition: all 1s ease;

        &.active {
            max-height: 10rem;
            height: fit-content;
        }

        .lang-option {
            padding: 10px;
            cursor: pointer;
            text-align: center;

            img {
                width: 2rem !important;
                height: auto !important;
            }
        }
    }

    &:hover {
        .lang-options {
            max-height: 10rem;
            height: fit-content;
        }
    }
}


/*********************** Inicio *********************/
section.last_news .grid .card_new:nth-child(3n+1) .content .icon {
    bottom: 115%;
}

/****************************************************/
/*div.bg-modal-advice-exit, */
div.disclaimer#disclaimerAlertEntry {
    display: none;
    .modal-exit-2 button{
        width: 180px;
        padding: 8px 6px;
    }
}

#cookiesAlert {
    display: none; /* Ocultar el popup por defecto */
}