.message-container {
    text-align: center;
    position: fixed;
    right:-600px;
    bottom:50px;
    width:33.333333%;
    height:200px;

    z-index:500;
    box-shadow: 0px 0px 30px black;
    border-radius: 5px;
    color:white;
}
.message-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height:20%;
    padding: 7px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    font-size: 21px;
}
.message-icon {
    height:60%;
    width:25%;
    padding: 7px;
    float:left;
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: 7px 30px;
}
.message-danger .message-icon {
    background-image: url("/images/validation-icons/unchecked.png");
}
.message-warning .message-icon {
    background-image: url("/images/validation-icons/minus.png");
}
.message-info .message-icon {
    background-image: url("/images/validation-icons/info.png");
}
.message-success .message-icon {
    background-image: url("/images/validation-icons/checked.png");
}
.message-icon img {
    width: 100%;
    box-shadow: 0px 0px 15px black;
    margin-top: 20px;
    border-radius: 50px;
}
.message-body {
    height:60%;
    width:75%;
    padding: 7px;
    text-align: justify;
    float:left;
}
.message-footer {
    height:20%;
    padding: 7px;
    border-top: 1px solid rgba(0,0,0,0.2);
    float: right;
    width: 100%;
}
.message-exit {
    position: absolute;
    right: 10px;
    top: 4px;
    background-color: inherit;
    border-radius: 5px;
    border: none;
}
.message-danger {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1;
}
.message-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.message-info .message-header {
    color: #31708f;
    background-color: #d9edf7;
}
.message-info {
    background-color: white;
    color:black;
}
.message-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}