﻿.alert {
    color: black;
    border-color: none;
    background-color: inherit;
    /*-webkit-box-shadow: 10px 10px 28px -22px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 28px -22px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 28px -22px rgba(0,0,0,0.75);*/
}

    .alert:hover {
        -webkit-box-shadow: 0px 18px 25px -25px rgba(0,0,0,0.36);
        -moz-box-shadow: 0px 18px 25px -25px rgba(0,0,0,0.36);
        box-shadow: 0px 18px 25px -25px rgba(0,0,0,0.36);
        transition: all .1s ease-in;
    }

.alert-success {
    color: black;
    border: none;
    border-bottom: 2px solid #4cae4c;
}

    .alert-success > ul {
        list-style: none;
    }

        .alert-success > ul li::before {
            content: "\2022";
            color: #4cae4c;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

.alert-danger {
    color: black;
    border: none;
    border-bottom: 2px solid #e60000;
}

    .alert-danger > ul {
        list-style: none;
    }

        .alert-danger > ul li::before {
            content: "\2022";
            color: #e60000;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }



.alert-warning {
    color: black;
    border: none;
    border-bottom: 2px solid #ffcc00;
}

    .alert-warning > ul {
        list-style: none;
    }

        .alert-warning > ul li::before {
            content: "\2022";
            color: #ffcc00;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }


.alert > p {
    padding-left: 15px;
}

    .alert > p > span {
        margin-left: -28px;
    }

.alert-success > p > span {
    color: #4cae4c;
}

.alert-danger > p > span {
    color: #e60000;
}

.alert-warning > p > span {
    color: #ffcc00;
}
