div#beautiful-alert-overlay {
    background-color: black;
    opacity: 0.75;
    filter: alpha(opacity=75);
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
div#beautiful-alert-box {
    background-color: white;
    z-index: 99999;
    color: #231F20;
    width: 300px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    opacity: 1;
    display: none;
    border-radius: 5px;
}
div#beautiful-alert-message{
    text-align: left;
    padding: 20px 20px 0px;
}
div#beautiful-alert-close {
    padding: 20px 20px;
    text-align: center;
}
div#beautiful-alert-close span {
    background-color: #B50938;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    color: white;
    width: 80px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    display: block;
    margin: 0 auto;
}
div#beautiful-alert-close span:hover {
    background-color: #B2B3AD;
}
