.notification {
    display: none;
    z-index: 9999;
    position: fixed;
    width: 50%;
    left: 25%;
    line-height: 1.3em;
    top: 40%;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.95;
    filter: alpha(opacity=95);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=95)";
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.notification-close-button {
    position: absolute;
    display: block;
    right: 5px;
    top: -1px;
    color: #FFF;
    float: right;
    z-index: 999999;
}

.notification-close-button::before {
    font-family: "Material Icons";
    content: "\e5cd";
    font-size: 17px;
    font-weight: bold;
}

.notification-close-button:active,
.notification-close-button:focus,
.notification-close-button:hover {
    color: #FFF;
}

.notification-content .alert-error {
    background: #535353;
    color: #FFF;
}

@media (max-width: 767px) {
    .notification {
        width: 75%;
        left: 12.5%;
    }
}
