/*START - Emergency Message Alert*/
.emergency {
    display: none;
    margin: 0 auto;
    width: 100%;
    padding: 8px 20px 12px 20px;
    background-color: #b70304;
    color: #fff;
}

.emergency-heading {
    font-family: Arial, sans-serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    margin-left: 40px;
}

.emergency-heading span:first-child {
    font-weight: bold;
    text-transform: uppercase;
}

.emergency-meta {
    font-size: 1.1em;
    margin-bottom: 0;
}

.emergency-details {
    border-top: 1px solid #fff;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 20px;
}

.emergency-alert {
    box-sizing: border-box;
    background: #b70304;
    border: 1px solid #b70304;
    border-radius: 8px;
    color: #fff;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
    position: relative;
}

.emergency-alert::after {
    content: "\f071";
    font-family: FontAwesome;
    font-size: 27px;
    position: absolute;
    left: 0;
    top: 8px;
}

.emergency-alert h1 {
    color: #fff;
    border-bottom: 1px solid #fff;
}
/*END - Emergency Message Alert*/