/* contenedor principal */
.static-message-container{
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

.fade-out {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.fade-out.hide {
    opacity: 0;
}

.static-message-color-ok{
    background-color: #c8e6c9;
    border-left: .5rem solid rgb(67.1875, 147.8125, 69.875);
    color: hsl(122, 37.5%, 21.0784313725%);;
}

.static-message-color-warning{
    background-color: #ffecb3;
    border-left: .5rem solid #ffc107;
    color: #7f6003;
}

.static-message-color-error{
    background-color: #ffcdd2;
    border-left: .5rem solid #ef5350;
    color: #b71c1c;
}

.static-message-color-info{
    background-color: #b3e5fc;
    border-left: .5rem solid #03a9f4;
    color: #01579b;
}
