
/************************* VER MÁS POP UP*****************************/
/* z-index superior al header (#header z-index: 10000) para que el modal quede siempre por encima */
#more__pop-up {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
}

.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;
    transform: translate(-50%, -50%);
    min-width: 800px;
}

.more__pop-up__content * {
    color: #000;
}

.more__pop-up__text {
    max-height: 80vh;
    overflow: auto;
    scrollbar-gutter: stable;
    padding-right: 15px;
}

.more__pop-up__close {
    margin-left: auto;
    margin-right: 0px;
}

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

.more__pop-up__close {
    text-align: right;
    margin-bottom: 15px;
}

.more a {
    cursor: pointer;
}

@media (max-width: 805px) {
    .more__pop-up__content {
        min-width: 100%;
    }
}

/************************* FIN  VER MÁS POP UP*****************************/