.divModalBg {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    justify-content: center;
    transform: scale(0);    
}

.divModalErro {    
    z-index: 20;
    background-color: white;
    width: max-content;
    max-width: 500px;    
    height: max-content;
    min-height: 50px;
    margin-top: 100px;    
    border-radius: 5px;
    min-width: 400px;
    /* display: grid;
    grid-template-rows: 50px auto;
    align-items: center; */
}

.divModalErro .tituloModalErro {    
    display: none;
    border-bottom: 1px solid #43434D;
    align-self: center;
    padding: 10px 30px 15px;
}

.divModalErro .tituloModalErro h4 {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    color: red;
    font-size: 1.275rem;
    margin: 0;
    
}

.divModalErro .mensagemModalErro {
    /* align-self: center;        
    padding: 15px 30px; */
    padding-inline: 30px;
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.divModalErro .mensagemModalErro span {
    font-family: 'Source Sans 3', serif;
    font-weight: 400;
    color: #43434D;
    font-size: 1rem;
}

.divModalErroAnimationAbrir {
    animation-name: modalErroAnimationAbrir;
    animation-duration: 300ms;
}

.divModalErroAnimationFechar {
    animation-name: modalErroAnimationFechar;
    animation-duration: 300ms;
}

.divModalBgErroAnimationFechar {
    animation-name: modalErroBgAnimationFechar;
    animation-duration: 0ms;
    animation-delay: 250ms;
    animation-fill-mode: forwards;    
}

.caixaBotaoModalErro {
    display: flex;
    justify-content: center;
    width: unset;
    padding: 0px 40px 0px 40px;
    margin-block: 10px;
}

.botaoPequenoModalErro {
    line-height: 18px;
    display: block;
    text-decoration: none;    
    font-size: 18px;
    border: 0;
    height: 40px;
    border-radius: 10px;    
    margin: 10px 0px;
    color: #FFFFFF;
    background: #0B45E4;
    display: inline-block;
    position: relative;

    width: 110px;
    background-position: 90%;
}

.botaoPequenoModalErro:hover {
    background-color: #0d66d0;
}

@keyframes modalErroAnimationAbrir {    
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }    
}

@keyframes modalErroAnimationFechar {    
    0% {
        transform: translateY(0);        
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);        
        opacity: 0;
    }    
}

@keyframes modalErroBgAnimationFechar {
    0% { transform: scale(1)}
    100% { transform: scale(0) }    
}

@media (max-width: 500px) {
    .divModalErro {
        min-width: unset;
        width: 90vw;
        margin-top: 20%;
    }
}