﻿/* The alert message box */
.alert {
    padding: 15px 25px 15px 25px;
    background-color: #B3B3B3;
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* The close button */
.alert .closebtn {
    margin-left: 15px;
    color: #000;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .alert .closebtn:hover {
        color: #B3B3B3;
    }


/* STATES */
.alert.success {
    border: 1px solid #1B60F1;
    background: #FFF;
    color: #000;
}

/* STATES */
.alert.info {
    border: 1px solid #000;
    background: #FFF;
    color: #000;
}