.mostrar-modal {
    margin: auto;
    padding-top: 50px;
}

.congelar_scroll {
    overflow: hidden;
}

.contenedor-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.modal-mostrar {
    z-index: 999;
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.contenedor-modal .marco-modal {
    font-size: 14pt;
    padding: 20px;
    color: black;
    font-weight: 700;
    text-align: left;
    height: 20px;
    border-bottom: rgb(224, 224, 224) solid 1px;
    border-radius: 5px;
}

.cerrar-modal {
    position: relative;
    color: rgb(194, 192, 192);
    border-radius: 5px;
    font-size: 12pt;
    float: right;
    text-align: start;
    cursor: pointer;
}

.cerrar-modal:active {
    color: red;
}

.contenedor-modal .popup {
    background-color: white;
    border-radius: 5px;
    margin: auto;
    width: fit-content;
}

.contenedor-modal .contenido {
    width: auto;
    min-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
}

@media (max-width: 858px) {
    .contenedor-modal .popup {
        width: 100%;
    }
}