#ohsnap .alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: fixed;
    bottom: 0;
    right: 21px;
    /* Each alert has its own width */
    float: right;
    clear: right;
    background-color: white;
    z-index: 99999;
}
#ohsnap .alert-red {
    color: white;
    background-color: #DA4453;
}
#ohsnap .alert-green {
    color: white;
    background-color: #37BC9B;
}
#ohsnap .alert-blue {
    color: white;
    background-color: #4A89DC;
}
#ohsnap .alert-yellow {
    color: white;
    background-color: #F6BB42;
}
#ohsnap .alert-orange {
    color: white;
    background-color: #E9573F;
}

@media only screen and (max-width: 1200px) {
    #ohsnap .alert {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}
