﻿growl-notifications {
    position: fixed;
    top: 150px;
    right: 10px;
    z-index:9999;
}

growl-notification {
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #fff;
    padding: 15px 30px;
    background: rgba(0, 0, 0,0.7);
    font-size: 17px;
    font-weight: bold;
}

    growl-notification.fading.ng-move {
        opacity: 0.6;
        -webkit-transition: 3s linear all; /* Safari/Chrome */
        transition: 3s linear all; /* All other modern browsers and IE10+ */
    }

        growl-notification.fading.ng-move.ng-move-active {
            opacity: 1;
        }

    growl-notification.fading.ng-leave {
        opacity: 1;
        -webkit-transition: 3s linear all; /* Safari/Chrome */
        transition: 3s linear all; /* All other modern browsers and IE10+ */
    }

        growl-notification.fading.ng-leave.ng-leave-active {
            opacity: 0;
        }

.growl-notification-success {
    border: 1px solid rgba(0,0,0,0.7) !important;
    display:block !important;
}

.growl-notification-fail {
    border: 3px solid #FB3A63 !important;
}
