﻿.alerts {
    margin: 7.5px 0;
}

.alerts .alert {
    position: relative;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    align-items: center;
    text-align: justify;
    padding: 8px 15px;
    display: flex;
    margin: 0;
}

.alerts .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
	text-align: center;
}

.alerts .alert-warning {
    color: #fff;
    background-color: #f39c12;
    border-color: #f39c12;
    text-align: center;
}

.alerts .alert-info {
    color: #fff;
    background-color: #23678E;
    border-color: #12384D;	
    text-align: center;
}

.alerts .alert + .alert {
    margin-top: 5px;
}

.alerts .alert span:first-of-type {
    padding-right: 10px;
    flex: 1;
}

.alerts .alert .close {
    cursor: pointer;
}

.alert .icon {
    margin-right: 10px;
}
.alert h5 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 1.5em;
	font-weight: 600;
    color: inherit;
}