

.alertbar {
    background-color: #0097B4;
}

.alertpadding {
    padding-top: 4px;
    padding-bottom: 4px;
}

.alertgrid {
    font-family: 'Open Sans';
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;   /* centers the columns horizontally */
    gap: 0;                 /* adjust spacing */
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    padding: 0 10px;
}

.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: 0;              
        text-align: center;
        color: #ffffff;
    }

}

@media only screen and (max-width: 380px) {

    .alertgrid {
        grid-template-columns: repeat(1, auto);
        text-align: center;
        justify-content: center;

    }

}