/* ALERTS */
.alert {
    border: none;
    font-weight: normal;
    color: #fff;
}

.alert .close {
    color: #fff;
    opacity: 0.5;
    outline: none !important;
}

.alert .close:hover {
    opacity: 1;
}

.alert a,
.alert .alert-link {
    font-weight: normal;
    color: #fff;
    opacity: 0.7;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.alert a:hover,
.alert .alert-link:hover {
    opacity: 1;
    color: #fff;
}

.alert.alert-default {
    background: #acb7bf;
}

.alert.alert-primary {
    background: #0190fe;
}

.alert.alert-secondary {
    background: #6a7a84;
}

.alert.alert-success {
    background: #46be8a;
}

.alert.alert-info {
    background: #0887c9;
}

.alert.alert-warning {
    background: #f39834;
}

.alert.alert-danger {
    background: #fb434a;
}
