#message_toast {
    /*bottom: 0;*/
    border: 1px solid #3a4b77;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    min-width: 200px;
    max-width: 600px;
    z-index: 2000;


    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);

}
#message_toast > div {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
#message_toast > div > i {
    padding-right: 20px;
}

/* Wiggle animation */
@keyframes wiggle {
    0% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(1deg); }
    50% { transform: translateX(-50%) rotate(-1deg); }
    75% { transform: translateX(-50%) rotate(0.5deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}
.message_static {
    /*bottom: 0;*/
    border: 1px solid #3a4b77;
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
}
.message_static > div {
    border-radius: 4px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.message_static > div > i {
    padding-right: 20px;
}