#dialogConfirm[open] {
    min-width: 30%;
    min-height: 30%;
    max-width: 60%;
    box-shadow: var(--box-shadow-padrao);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: var(--border-radius-padrao);
    background: var(--cor-primaria);

    .alert-body{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #btnFecharConfirm {
        width: 30%;
        min-width: 40px;
    }
    #btnConfirmar{
        width: 30%;
        min-width: 40px;
    }

    /*.botao_padrao {*/
    /*    background-color: var(--cor-azul-escuro);*/
    /*    font-weight: 700;*/
    /*    color: #FFFFFF;*/
    /*    border-radius: var(--border-radius-padrao);*/
    /*    border: none;*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    box-shadow: var(--box-shadow-padrao);*/
    /*    height: 35px;*/
    /*    width: 175px;*/
    /*    align-self: end;*/
    /*}*/

    .botao_padrao:focus {
        border: none;
        outline: none;
    }

    .icone_enviar {
        width: 20px;
        height: auto;
        margin-right: 10px;
    }

    h2 {
        font-weight: 700;
        font-size: 20px !important;
        text-align: center;
        color: white !important;
        font-family: 'Poppins', sans-serif !important
    }

    p {
        text-align: center;
        font-size: 15px !important;
        padding: 15px 25px;
        font-weight: 500;
        font-family: Poppins, sans-serif;
    }

    .alert-header{
        width: 100%;
        color: white;
        background-color: var(--cor-terciaria);
        padding: 10px;
        display: flex;
        flex-direction: row;
        position: relative;

        span{
            color: var(--cor-azul-claro);
        }
    }

    .container-botoes-dialog {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin-bottom: 15px;
        gap: 25px;
    }
    .close {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        text-align: center;
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 10;
        background-color: white;
        border: 1px;
        color: #000;
        font-weight: 700;
    }
    .close:hover{
        color: red;
        cursor: pointer;
    }

}

#dialogConfirm::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /*filter: blur(30px);*/
}

@media (max-width: 768px){
    #dialogConfirm[open] {
        max-width: 90%;
    }
     h2 {
        font-size: 16px !important;
    }
}