﻿.uNotifyContainer
{
    position:fixed;
    bottom:0px;
    right:0px;

    width:300px;
    z-index:2;
    vertical-align:bottom;
    pointer-events:none;

}

.uNotifyPopup {
    padding: 5px;
    padding-right: 25px;
    transition: opacity 1s;
    margin: 0px;
    background-color: #e5f3fb;
    box-shadow: 2px 2px 6px black;
    text-align: left;
    color: black;
    z-index: 2;
    position: relative;
    margin-bottom: 5px;
    transition: 0.5s;
    right: 0px;
    pointer-events: all;
    animation: TweenIn 0.5s;
}

@keyframes TweenIn
{
    from {
        right: -350px;
    }
    to {
        right: 0px;
    }
}


.uNotifyPopup #Message
{
    white-space:pre-wrap;
}

    .uNotifyPopup .btnClose 
    {
        position: absolute;
        right: 3px;
        top: 3px;
        /* padding: 2px; */
        cursor: pointer;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        border-width: 1px;
        border-style: solid;
        border-radius: 2px;
        font-weight: bold;
        border-color: black;
    }



.uNotifyPopupHide {
   right: -350px;
}



.uNotifyPopupError{
    background-color:#ce352c;


}
.uNotifyPopupSuccess{
    background-color:#60a917;

}

.uNotifyPopupWarning {
    background-color: #fa6800;

}