﻿
.modal-dialog {
    background: none;
}

.modal-content {
    background: transparent;
    box-shadow: none;
    border: none;
}

.modal-body {
    background-color: var(--bgDanger);
    border-radius: 0.375rem;
    box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.25);
    width:100%;
    /*    height: 21.25rem;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*    gap: 2.31rem;*/
/*    original do Mauricio:*/
/*    margin-top: 5.31rem;*/
    margin-top:0px!important;
    padding: 0 2.25rem;
}

.modal-body h3,
.modal-body p {
    color: #fff;
    text-align: center;
}

.modal-body.bg-warning h3,
.modal-body.bg-warning p {
    color: #000;

}
    .modal-body.bg-warning img {
        filter: invert(100%);
    }

.modal-body .btn-close {
    position: absolute;
    top: 0.5rem;
    right: 0.9rem;
    color: transparent !important;
    background: transparent !important;
    opacity: 1;
}

.btn-white{
    background-color:white;
    color:var(--colorPrimary);
}


@media only screen and (min-width: 1025px)
{

    .modal-body {
        width: 100%;
        
    }

    
}