﻿
.notificationGeneral {
    width:100%;
    position: fixed;
    top:0;
}

.notification {
    position: relative;
    width:100%;
    padding-top: 0px;
    padding-bottom: 0px;
    color: #ffffff;
    z-index: 5;

    visibility: hidden;
    pointer-events: none;
    height:0px;
    margin: -5px 0px;

    transition: transform 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946) 0s, opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946) 0s;
    /*border-radius: 4px;*/
}

.visible {
        visibility: visible;
        pointer-events: fill;
        height:auto;
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 0px 0px;
    }

.notification  p {
    margin: 5px 50px;
  }

.notification  i {
    position: absolute;
    left: 0;
    top: 0;
    margin: -2px 12px;    

    font-size: 32px;
    line-height: 48px;             
  }

    .notification span {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        font-size: 20px;
        padding: 0px 24px;
        line-height: 48px;
        border-left: 1px solid rgba(255,255,255,0.1);
        box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
        -webkit-background-clip: padding-box; /* for Safari */
        -moz-background-clip: padding-box;
        background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
    }

   .notification span:hover {
      background-color: rgba(0,0,0,0.05);
      cursor: pointer;
    }      

.notification-success {
  background: #47b101;
    background-size: 40px 40px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent);
}
.notification-error {
  background: #ed4747;
    background-size: 40px 40px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent);
}
.notification-info {
  background: #0099d2;
    background-size: 40px 40px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent);
}
.notification-warning {
  background: #fa8100;
    background-size: 40px 40px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent);
}

