/* Toast Notifications
****************************************************************************************************/

.footer-notification
{
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 100%;
    z-index: 999999;
}

/*.footer-notification {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 999999;
}*/

.toast-container
{
    overflow: hidden;
    z-index: 100000;
}

.toast-message
{
    width: 350px;
    position: relative;
    margin: 0px 0px 10px 0px;
    color: #ffffff;
    font-size: 13px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.4);
    transition: background-color 200ms;
}

.toast-success
{
    background-color: #72c407;
}

    .toast-success:hover
    {
        background-color: #66AE08;
    }

.toast-info
{
    background-color: #0080D2;
}

    .toast-info:hover
    {
        background-color: #0371B7;
    }

.toast-error
{
    background-color: #d81c29;
}

    .toast-error:hover
    {
        background-color: #C31B26;
    }

.toast-icon
{
    position: relative;
    width: 45px;
    font-size: 24px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    height: 100%;
    background-color: rgba(0,0,0,.2);
}

.toast-text
{
    position: relative;
    height: 65px;
    white-space: normal;
    vertical-align: middle;
    padding: 5px 25px 5px 15px;
    display: table-cell;
    word-break: break-word;
}

.toast-remove
{
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 16px;
    cursor: pointer;
}

.ui-message-container
{
    overflow: hidden;
    position: absolute;
    bottom: 15px;
    left: 0;
    z-index: 100000;
}

    .ui-message-container i
    {
        font-size: 20px;
        vertical-align: middle;
        margin-right: 10px;
    }

        .ui-message-container i.icon-remove-sign
        {
            float: right;
            cursor: pointer;
            font-size: 16px;
            padding-right: 10px;
        }

.ui-message
{
    display: table;
    margin-left: auto;
    min-width: 300px;
    margin: 0 0 5px 0;
    padding: 13px 15px 10px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border: 0;
    line-height: 6px;
}

.ui-message-generic
{
    background: -moz-linear-gradient(top,#0378c5 0,#15669b 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#0378c5),color-stop(100%,#15669b));
    background: -webkit-linear-gradient(top,#0378c5 0,#15669b 100%);
    background: -o-linear-gradient(top,#0378c5 0,#15669b 100%);
    background: -ms-linear-gradient(top,#0378c5 0,#15669b 100%);
    background: linear-gradient(to bottom,#0378c5 0,#15669b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0378c5',endColorstr='#15669b',GradientType=0);
    border-bottom: 1px solid #009aff;
    box-shadow: 0 2px 3px 0 #555;
    text-shadow: 0 1px #003e67;
}

.ui-message-success
{
    background: -moz-linear-gradient(top,#72c307 0,#66a304 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#72c307),color-stop(100%,#66a304));
    background: -webkit-linear-gradient(top,#72c307 0,#66a304 100%);
    background: -o-linear-gradient(top,#72c307 0,#66a304 100%);
    background: -ms-linear-gradient(top,#72c307 0,#66a304 100%);
    background: linear-gradient(to bottom,#72c307 0,#66a304 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#72c307',endColorstr='#66a304',GradientType=0);
    border-bottom: 1px solid #88dc00;
    box-shadow: 0 2px 3px 0 #555;
    text-shadow: 0 1px #348402;
}

.ui-message-error
{
    background: -moz-linear-gradient(top,#eb0303 0,#b60000 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#eb0303),color-stop(100%,#b60000));
    background: -webkit-linear-gradient(top,#eb0303 0,#b60000 100%);
    background: -o-linear-gradient(top,#eb0303 0,#b60000 100%);
    background: -ms-linear-gradient(top,#eb0303 0,#b60000 100%);
    background: linear-gradient(to bottom,#eb0303 0,#b60000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eb0303',endColorstr='#b60000',GradientType=0);
    border-bottom: 1px solid #f33;
    box-shadow: 0 2px 3px 0 #555;
    text-shadow: 0 1px #920000;
}
