/* Alert module */
:root {
    --alert-text: #fff;
    --alert-hover: #fff;
    --alert-default: #CC0000; /*red*/
    --alert-alert: #FF9900; /*gold*/
    --alert-neutral: #496FE2; /* blue */
    --alert-warning: #D64000; /* orange */
}

.alert-box {
    padding: 1.25rem 20px !important;
    color: #FFFFFF;
}

.alert-box a {
    color: #FFFFFF !important;
    border-bottom: none;
    padding-left: 5px;
    margin-left: -5px;
}

.alert-box a:hover, .alert-box a:focus {
    color: #FFFFFF;
    text-decoration: none
}
 
.alert-box a:focus {
    outline: 1px solid #FFFFFF;
    padding-top: 0;
    padding-right: 5px;
    padding-bottom: 3px;
}

.alert-box p {
    margin-top: 1rem;
}

.alert-box p a {
    white-space: pre;
}

.alert-box,
.alert-box.default {
    background-color: #CC0000;
}

.alert-box.warning {
    background-color: #D64000;
}

.alert-box.alert {
    background-color: #FF9900;
}

.alert-box.neutral {
    background-color: #496FE2;
}

.alert-box.alert {
    color: #000000;
}

.alert-box.alert a {
    color: #000000;
    text-decoration: underline;
    border-bottom: none;
}

.alert-box.alert a:hover, .alert-box.alert a:focus {
    color: #000000;
    text-decoration: none;
}

.alert-box.alert a:focus {
    outline: 1px solid #000000;
    padding-top: 0;
    padding-right: 5px;
    padding-bottom: 3px;
    color: #000000;
}

.alert-box h1 {
    margin-top: 10px;
}

.alert-box h2 {
    margin-top: 0px;
    font-family: "Proxima Nova",Helvetica, Arial;
    font-weight: 800;
    font-size: 36px;
    display: block;
}

.link-alert {
    font-weight: bold;
    font-size: 16px;
}

.link-alert:hover {
    border-bottom: none;
}

.link-alert-close {
    font-weight: bold;
    font-size: 16px;
    margin-top: 8px;
}

.link-alert-close:hover {
    border-bottom: none;
}

.alert-box h4 {
    margin-bottom: 0px;
}

@media (min-width: 768px) {

    .alert-box h4 {
        margin-top: 8px !important;
    }

    .alert-box .col-sm-p-6 {
        width: 25%;
    }
}

@media only screen and (max-width:767px) {

    .alert-box.alert h2 {
        color: #000000;
    }

    .alert-box.alert h2 {
        color: #ffffff;
    }

    .alert-box p a {
        white-space: normal;
    }

    .alert-box.default h2 {
        color: #FFFFFF;
    }

    .alert-box.neutral h2 {
        color: #FFFFFF;
    }

    .alert-box.warning h2 {
        color: #FFFFFF;
    }

    .alert-box.alert h2 {
        color: #000000;
    }
}
