/* Toast Messaging Styles */
#toast_msg {
    position: fixed;
    top: 64px;
    left: 50%;
    z-index: 1000;
    display: block;
    margin: 0 auto;
    opacity: 1;
    min-width: 280px;
    max-width: 50%;
    min-height: 36px;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    /* Enable GPU for Animations, if possible */
    -webkit-transform: translate3d(-50%, -50%,0);
    transform: translate3d(-50%, -50%,0);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
#toast_msg.happy { /* Green */
    background: #DBEEDF;
    color: #4B5A68;
}
#toast_msg.mellow { /* Yellow */
    background: #F2EFDF;
    color: #4B5A68;
}
#toast_msg.sad { /* Red */
    background: #FDEAEA;
    color: #4B5A68;
}

#toast_msg.show_toast {
    visibility: visible;
    z-index: 1000;
}
#toast_error_details_dismiss_btn {
    pointer-events: all;
}

#toast_msg.toast_error_details {
    cursor: pointer;
    pointer-events: all;
}

#toast_error_details_dismiss_btn {
    display: inline-block;
    float: right;
}
