﻿@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,500,600,700,800");

.alert {
    position: relative;
    padding: 0;
    min-width: 250px;
    margin-top: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
}

position: relative;
padding: 1rem 1rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;

.alert button.close {
    margin: 0.45rem 1rem;
    opacity: 0.75;
}

        .alert button.close:hover {
            opacity: 1;
        }

.alert-icon, .alert-text {
    display: table-cell;
    vertical-align: middle;
}

.alert-icon {
    min-width: 22px;
    text-align: center;
    font-size: 1.4rem;
    color: white;
    background-color: rgba(0,0,0,0.25);
    padding: .5rem;
}

.alert-text {
    color: #2d3a51;
    padding: 1.5rem;
    width: 100%;
}

    .alert-text > h5 {
        margin-top: 0;
        font-weight: 600;
    }

.alert .alert-link {
    font-weight: normal;
    color: #4790e6;
}

.alert ul {
    margin: 0;
}

    .alert ul li {
        margin-bottom: 0.2rem;
    }

        .alert ul li:last-child {
            margin-bottom: 0;
        }

.alert-warning {
    background-color: #fff8f5;
    border-color: #ffccb3;
}

    .alert-warning .alert-text h5 {
        color: #ff5400;
    }

    .alert-warning button.close {
        color: #ff5400;
    }

    .alert-warning .alert-icon {
        background-color: #ff5400;
    }

.alert-help {
    background-color: #fffcf5;
    border-color: #ffe4ad;
}

    .alert-help .alert-text h5 {
        color: #ffab00;
    }

    .alert-help button.close {
        color: #ffab00;
    }

    .alert-help .alert-icon {
        background-color: #ffab00;
    }

.alert-info {
    background-color: #f7fbff;
    border-color: #cee5ff;
}

    .alert-info .alert-text h5 {
        color: #3592ff;
    }

    .alert-info button.close {
        color: #3592ff;
    }

    .alert-info .alert-icon {
        background-color: #3592ff;
    }

.alert-danger {
    background-color: #fdf5f5;
    border-color: #f6d3d3;
}

    .alert-danger .alert-text h5 {
        color: #d33534;
    }

    .alert-danger button.close {
        color: #d33534;
    }

    .alert-danger .alert-icon {
        background-color: #d33534;
    }

.alert-success {
    background-color: #edf8ed;
    border-color: #b9e4b9;
}

    .alert-success .alert-text h5 {
        color: #42ae42;
    }

    .alert-success button.close {
        color: #42ae42;
    }

    .alert-success .alert-icon {
        background-color: #42ae42;
    }
