/*
----------------------- ESTILIZANDO ALERTAS -----------------------
*/
div.msgBoxContainer {
    position: relative;
    flex-direction: column;
    display: flex;
    width: 100%;
    margin: 5px 0 5px auto;
    height: 60px;
}

span.msgBox {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    /*height: 50px;*/
    align-items: center;
    justify-content: center;
}

span.msgBox.active {
    border: 1px solid #3f79f5b0;
    border-radius: 5px;
    background-color: #3fa3f57c;
    color: rgb(50, 108, 184);
    font-weight: 600;
    padding: 5px;
}

span.msgBox.activeSuccess {
    border: 1px solid #2db80a4d;
    border-radius: 5px;
    background-color: #28b60c44;
    color: rgb(0, 158, 26);
    font-weight: 600;
    padding: 5px;
}

span.msgBox.activeWarning {
    border: 1px solid #e4e70c31;
    border-radius: 5px;
    background-color: #c9cc0321;
    color: #ebd300;
    font-weight: 600;
    padding: 5px;
}

span.msgBox.activeDanger {
    border: 1px solid #b80a0a4d;
    border-radius: 5px;
    background-color: #b80a0a4d;
    color: rgb(158, 0, 0);
    font-weight: 600;
    padding: 5px;
}

span.msgBox>h1,
h2,
h3,
h4,
h5,
p {
    margin: 1rem 0;
}