/*************************************************************************/
/**************************** VER MÁS POP-UPS ****************************/
/*************************************************************************/
#more__pop-up {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 215;
}

.more__pop-up__background {
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
}

.more__pop-up__content {
    padding: 30px 30px 30px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    color: #222;
    transform: translate(-50%, -50%);
    min-width: 800px;
    max-height: 600px;
}

.more__pop-up__text {
    max-height: 540px;
    overflow: auto;
    color: #222;
}

.more__pop-up__close,
.more__pop-up__background {
    cursor: pointer;
}

.more__pop-up__close {
    text-align: right;
    margin-bottom: 15px;
    width: max-content;
    margin-left: auto;
}

.more a {
    cursor: pointer;
}

/* Alineación horizontal de botones dentro de pop-ups */
.more.pop-up {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.more.pop-up a {
    display: inline-block;
    white-space: nowrap;
    padding: 4px 24px;
}

/* Estilos específicos para popups de default-list-sec */
#more__pop-up[data-source="default-list-sec"] .more__pop-up__content {
    background-color: #000;
    color: #fff;
}

#more__pop-up[data-source="default-list-sec"] .more__pop-up__text {
    color: #fff;
}

/* Botón cerrar blanco en desktop para default-list-sec */
#more__pop-up[data-source="default-list-sec"] .more__pop-up__close img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(56%) saturate(645%) hue-rotate(190deg) brightness(114%) contrast(100%);
}

@media (max-width: 805px) {
    .more__pop-up__content {
        min-width: 100%;
        padding-inline: 20px;
        top: 0;
        left: 0;
        bottom: 0;
        transform: unset;
        max-height: 100vh;
        overflow-y: auto;
    }

    .more__pop-up__close {
        width: max-content;
        padding: 10px;
        border-radius: 6px;
        background-color: #727176;
    }

    .more__pop-up__close img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(56%) saturate(645%) hue-rotate(190deg) brightness(114%) contrast(100%);
        width: 16px;
    }

    .more__pop-up__text {
        margin-top: 32px;
        padding-right: 10px;
        max-height: 700px;
    }
}

/*************************************************************************/
/**************************** VER MÁS POP-UPS ****************************/
/*************************************************************************/