/* --- SPECIAL ALERT BAR --- */
#alert-bar {
    background-color: #003876;
	transition: all .2s ease;
    height: 0;
    opacity: 0;
}
#alert-bar .container {
    min-height: 3.25em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#alert-bar span:first-of-type {
    padding: 5px 0;
}
#close-alert {
    font-size: 1.75em;
    color: #7dabdf;
    height: 100%;
    display: block;
    width: 1.5em;
    text-align: center;
	cursor: pointer;
}
#alert-bar a {
    cursor: pointer;
}
