
div.myalert{
    position: fixed;
    width: 100%;
    text-align: center;
    top:0px;
    z-index: 999999999;
}

div.myalert>div.content{
    width: 40%;
    margin: auto;
    background-color: green;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 0px 15px #7b7b7b;
}

div.myalert.error>div.content{
    background-color: red;
}

div.myalert>div.content a.close{
    float: right;
    color: white;
    font-size: 16px;
    line-height: 24px;
}

div.myalert .title{
    font-size: 18px;
    font-weight: bold;
    background-color: #06ea06;
    padding: 5px;
    border-radius: 5px;
    display: none;
}
div.myalert.error .title{
    background-color: #ea0606;
}

div.myalert .message{
    padding: 15px;
}