/*! ng-notifications-bar - v0.0.13 (http://beletsky.net/ng-notifications-bar/) */

body {
    -webkit-backface-visibility: hidden;
}

.notifications .notifications-container {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 60px;
    line-height: 60px;
    width: 100%;
    z-index: 1999;
}

.notifications .error, .notifications .notification, .notifications .success, .notifications .warning {
    position: relative;
    -webkit-animation: fadeInDown 1s ease .2s 1 both;
    -moz-animation: fadeInDown 1s ease .2s 1 both;
    animation: fadeInDown 1s ease .2s 1 both;
    -webkit-animation-backface-visibility: hidden;
    -moz-animation-backface-visibility: hidden;
    -ms-animation-backface-visibility: hidden;
    -o-animation-backface-visibility: hidden;
    animation-backface-visibility: hidden;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.notifications .message {
    padding: 0 12px;
}

.notifications .error {
    background-color: #F64747;
    border-bottom: 1px solid #f31515;
}

.notifications .success {
    background-color: #03C9A9;
    border-bottom: 1px solid #02aa8f;
}

.notifications .warning {
    background-color: #F7CA18;
    border-bottom: 1px solid #e7ba08;
}

.notifications .close-click {
    font-size: 12px;
    cursor: pointer;
    padding: 10px;
    margin: 0 auto;
}
