#global-notification {
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 20px;
    left: 0;
    text-align: center;
    font-weight: 400;
    font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,"Helvetica Neue",sans-serif;
    background: #fff;
}
#global-notification .notification_alert {
    padding: 10px;
    text-align: center;
        line-height: 1;
}
.gn-position-top{
    top: 0;
}
.gn-position-bottom{
    bottom: 0;
}
#global-notification span.notification_close{
    position: absolute;
    top: 38%;
    right: 20px;
}
#global-notification .blink .animation_content,#global-notification .blink .animation_content p {
    animation: blinkingText 1.2s infinite;
    -webkit-animation: blinkingText 1.2s infinite;
    -moz-animation: blinkingText 1.2s infinite;
    -os-animation: blinkingText 1.2s infinite;
}
@keyframes blinkingText {
    0% {
        opacity: 1;
    }
    49% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}