
.my-alert {
    display: none;
    position: fixed;
    top: -350px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    min-height: 30px;
    height: 30px;
    width: 600px;
    min-width: 600px;
    text-align: center;
    z-index: 100000001;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 4px;
}

.my-alert-success {
    color: #3c763d;
    font-weight: 700;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    height: 90px;
    font-size: 25px;
    line-height: 70px;
}

.my-alert-info {
    color: #31708f;
    font-weight: 700;
    background-color: #d9edf7;
    border-color: #bce8f1;
    height: 90px;
    font-size: 25px;
    line-height: 70px;
}

.my-alert-warning {
    color: #8a793e;
    font-weight: 700;
    background-color: #fcf8e3;
    border-color: #faebcc;
    height: 90px;
    font-size: 25px;
    line-height: 70px;
}

.my-alert-danger {
    color: #a94442;
    font-weight: 700;
    background-color: #f2dede;
    border-color: #ebccd1;
    height: 90px;
    font-size: 25px;
    line-height: 70px;
}

body {
    color: #494949;
}

