﻿.popup-overlay-tyc {
    /**/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
    display: none;
    flex-direction: column;
}

.popup-content-tyc {
    background-color: #fff;
    width: 80%;
    max-height: 45%;
    overflow-y: auto;
    padding: 20px;
    text-align: justify;
    font-size: 1.2rem;
}

.popup-header-tyc {
    background-color: #fff;
    width: 80%;
    max-height: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    padding: 20px 20px 0;
}

.popup-title-tyc {
    background-color: #fff;
    width: 80%;
    padding-bottom: 10px;
    font-size: 18px;
    margin: 0;
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
}

.popup-bottom-tyc {
    background-color: #fff;
    width: 80%;
    max-height: 60%;
    overflow-y: auto;
    padding: 20px;
    text-align: justify;
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.popup-overlay-detalle-pago {
    /**/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
    display: none;
    flex-direction: column;
}

.popup-header-detalle-pago {
    background-color: #fff;
    width: 95%;
    max-height: 60%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.popup-title-detalle-pago {
    background-color: #fff;
    width: 95%;
}

.popup-content-detalle-pago {
    background-color: #fff;
    width: 95%;
    max-height: 50%;
    overflow-y: auto;
    padding: 0 20px;
    text-align: justify;
    font-size: 1.2rem;
}

.popup-bottom-detalle-pago {
    background-color: #fff;
    width: 95%;
    max-height: 60%;
    overflow-y: auto;
    padding: 10px 20px 20px;
    text-align: justify;
    font-size: 1.2rem;
}

.popup-content-detalle-pago-info {
    display: flex;
}

.popup-content-detalle-pago-info-label {
    font-size: 1.2rem;
    width: 50%;
    text-align: right;
    padding-right: 15px;
}

.popup-content-detalle-pago-info-data {
    font-size: 1.2rem;
    width: 50%;
}

.popup-content-detalle-pago-area-montos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content-detalle-pago-area-montos-info {
    display: flex;
    width: 100%;
}

.popup-content-detalle-pago-area-montos-info-label {
    font-size: 1.2rem;
    width: 50%;
    text-align: right;
    padding-right: 15px;
}

.popup-content-detalle-pago-area-montos-info-symbol {
    font-size: 1.2rem;
    width: 10%;
    text-align: left;
    padding-right: 15px;
}

.popup-content-detalle-pago-area-montos-info-data {
    font-size: 1.2rem;
    width: 40%;
    text-align: right;
    padding-right: 15px;
    display: flex;
    justify-content: flex-end;
    margin-left: -80px;
}


.popup-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

    .popup-container .alerta {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        width: 80%;
    }

        .popup-container .alerta p {
            text-align: justify;
        }

        .popup-container .alerta button {
            float: right;
        }

    .popup-container .pregunta {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        width: 80%;
    }

        .popup-container .pregunta p {
            text-align: justify;
        }

        .popup-container .pregunta .preguntaBotones {
            display: flex;
            justify-content: flex-end;
        }

            .popup-container .pregunta .preguntaBotones .btnCancelar {
                margin-right: 10px;
            }
