/*! ng-notifications-bar - v0.0.12 (http://beletsky.net/ng-notifications-bar/) */

body {
    -webkit-backface-visibility: hidden;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot) format("embedded-opentype"),url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/glyphicons-halflings-regular.woof) format("woff");
}

.notifications .notifications-container {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 60px;
    line-height: 60px;
    width: 100%;
    z-index: 1000;
    font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
}

.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: left;
    font-size: 16px;
    padding-left: 40px;
    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 20px;
}

.notifications .error {
    background-color: #e74c3c;
    border-bottom: 1px solid #f31515;
}

.notifications .success {
    background-color: #2ecc71;
    border-bottom: 1px solid #02aa8f;
}

.notifications .warning {
    background-color: #f1c40f;
    border-bottom: 1px solid #e7ba08;
}

.notifications .close-click {
    font-family: 'Glyphicons Halflings';
    cursor: pointer;
	height: 20px;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    right: 3%;
}

.close-click:before {
  content: "\e014";
}


.notifications .icon {
    position: absolute;
    display: block;
    top: 50%;
    left: 15px;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
    font-size: 25px;
}
