.overlays {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.55);

    z-index: 999;
    backdrop-filter: blur(2px);
}

#modalLoadingPix {
    background-color: rgb(255, 255, 255);
    width: 350px;
    height: auto;

    padding: 15px;

    border-radius: 15px;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#modalErroGerarPix {
    background-color: rgb(255, 255, 255);
    width: 350px;
    height: auto;

    padding: 15px;

    border-radius: 15px;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#modalPix {
    background-color: rgb(255, 255, 255);
    width: 350px;
    height: auto;

    padding: 15px;

    border-radius: 15px;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.conteudo-modal {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px;
    gap: 25px;
}

.conteudo-modal #btnFecharPix {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.conteudo-modal #qrCode {
    width: 80%;
    background: none;
}

.conteudo-modal #codigoPix {
    width: 100%;

    padding: 10px;

    font-size: 13px;
    font-family: monospace;

    border: 1px solid #d1d5db;
    border-radius: 6px;

    background-color: #f3f4f6;

    /* resize: none; */

    line-height: 1.4;
}

.expiracao-pix {
    border: solid px red;
    border-radius: 5px;
    padding: 5px 40px;
    color: black;
    background-color: rgba(250, 131, 131, 0.336);
}

.expiracao-pix strong {
    font-size: 18px;
    color: rgb(255, 0, 0);
}

.conteudo-modal h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.btnCopiarPix {
    font-weight: 600;
    border: solid 1px black;
    border-radius: 5px;
    padding: 10px 15px;
    color: white;
    background-color: #059669;
}

.btnCopiarPix:hover {
    background-color: #047857;
}

.btnCopiarPix:active {
    transform: scale(0.96);
}


/* Modal de método de pagamento indisponível */

#modalPagamentoIndisponivel {
    text-align: center;
    background-color: rgb(255, 255, 255);
    width: 350px;
    height: auto;

    padding: 15px;

    border-radius: 15px;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#modalPagamentoIndisponivel svg {
    width: 120px;
    height: 120px;
}

.btn-fechar-aviso {
    font-weight: 600;
    border: solid 1px black;
    border-radius: 5px;
    padding: 10px 15px;
    color: white;
    background-color: #059669;
}

.btn-fechar-aviso:hover {
    background-color: #047857;
}

.btn-fechar-aviso:active {
    transform: scale(0.96);
}











/* Ocultar uma TAG*/
.hidden {
    display: none;
}