

.alertbar {
    background-color: #df110b;
}

.alertpadding {
    padding-top: 4px;
    padding-bottom: 4px;
}

.alertgrid {
    font-family: "Montserrat", serif;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;   /* centers the columns horizontally */
    gap: 40px;                 /* adjust spacing */
    width: 100%;
    text-align: center;
    color: #ffffff;
    white-space: nowrap;
}

.alertgrid a {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

.alertgrid a:hover, .alertgrid a:active, .alertgrid a:focus {
    color: rgba(255, 255, 255, 0.8) !important;
}

.alertgrid a i {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-left: 2px;
    font-size: 12px;
}

.alertimage {
    max-width: 125px;
}
.alertimage img {
    width: 100%;
}

.alertcontent {
    text-transform: uppercase;
}


@media only screen and (max-width: 600px) {

    .container.alertpadding {
        width: 100% !important;
        padding-right: 5px;
        padding-left: 5px;
    }

    .alertgrid {
        justify-content: space-between;  
        gap: 10px;              
        text-align: center;
        color: #ffffff;
    }

    .alertgrid a {
        color: #ffffff;
        font-weight: 700;
        font-size: 11px;
    }

    .alertimage {
        max-width: 100px;
    }


}

@media only screen and (max-width: 380px) {

    .alertgrid {
        grid-template-columns: repeat(1, auto);
        text-align: center;
        justify-content: center;

    }

    .alertimage, .alertimage img {
        display: none;
    }


}