#mSnackbarContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 16%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    /*height: 70px;*/
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
}

#mSnackbarContainer .mSnackbar {
    line-height: 22px;
    padding: 14px 24px;
    background-color: #323232;
    color: #fff;
    font-size: 14px;
    z-index: 100;
    min-width: 288px;
    max-width: 568px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    /*float: right;*/
    clear: both;
    margin-bottom: 21px;
    margin-top: 21px;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

@-webkit-keyframes slideIn {
    from {
        margin-top: 21px
    }
    to {
        margin-top: 0
    }
}

@keyframes slideIn {
    from {
        margin-top: 21px
    }
    to {
        margin-top: 0
    }
}

@-webkit-keyframes slideOut {
    from {
        margin-top: 0
    }
    to {
        margin-top: 21px
    }
}

@keyframes slideOut {
    from {
        margin-top: 0
    }
    to {
        margin-top: 21px
    }
}

#mSnackbarContainer .mSnackbar.slideIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

#mSnackbarContainer .mSnackbar.slideOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}