/*
Alert-Boxen
*/
/* The alert message box */
.wp-alertbox {
    padding: 20px;
    margin-bottom: 15px;
    display:none;
    opacity: 1;
    transition: opacity 0.6s; /* 600ms to fade out */
}
.wp-alert-error {
    background-color: #f44336; /* Red */
    color: white;
}

.wp-alert-warning {
    background-color: #ffeb3b!important; /* Yellow */
    color: black;
}

.wp-alert-info {
    background-color: #2196F3!important; /* Blue */
    color: white;
}

.wp-alert-success {
    background-color: #4CAF50!important; /* Green */
    color: white;
}
/* The close button */
.wp-closebtn {
    margin-left: 15px;
    /*color: white;*/
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.wp-closebtn:hover {
    color: black;
}