.poupMensagem{
    display: none;
    position: absolute;
    top: 300px;
    right: auto;
    width: 420px;
    height: 220px;
    background-color:rgb(0, 0, 0,0.9) ;
    border-radius: 10px;
    box-shadow: 5px 5px 15px -4px var(--pretoPrincipal);
    z-index: 4;
    animation: animacaoPoup 0.6s linear forwards;
}
.poupConteiner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;

}
.textoExplicativo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.textoExplicativo svg{
    color: var(--pretoPrincipal);
    padding: 5px;
    margin: 5px;
    margin-left: 20px;
}
.explicacao{
    padding: 5px;
    margin: 5px;
    color: rgba(152, 152, 152, 0.9)
}
#iconExclamacao{
    color: rgb(255, 217, 0,0.7);
}
#iconError{
    color: rgba(250, 11, 11, 0.7);
}
#iconCorrect{
    color: rgba(35, 243, 31, 0.7);
}

.poupMensagem img{
    width: 40%;
    padding: 10px;
   
}
.ok{
    width: 100px;
    height: 40px;
    margin: 5px;
    background-color: rgb(5, 123, 202,0.7);
    border: none;
    border-radius: 20px;
    color: var(--brancoLetras);
    transition: all 1s ease-in-out;
    cursor: pointer;
}
.ok:hover{
    transform: scale(1.05);
    background-color: rgba(247, 229, 31, 0.7);
    color: black;
}
@keyframes animacaoPoup {
    0%{
        transform: scale(0);
    }
    80%{
        transform: scale(1.15);
    }
    90%{
        transform: scale(0.9);
    }
    100%{
        transform: scale(1);
    }
    
}
@keyframes animacaoPoupOff {
    0%{
        transform: scale(1);
    }
    20%{
        transform: scale(1.15);
    }
    100%{
        transform: scale(0);
    }
}