.loading-wrapper { background-color: rgba(0,0,0,0.8); position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; display: none; }
.loading-outer { display: table; width: 100%; height: 100%; }
.loading-inner { display: table-cell; vertical-align: middle; }

.loader {
    width: 150px;
    height: 150px;
    line-height: 150px;
    margin: 100px auto;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
}

.loader:before,
.loader:after {
    opacity: 0;
    box-sizing: border-box;
    content: "\0020";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 5px solid #fff;
    box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
}

.loader:after {
    z-index: 1;
    -webkit-animation: gogoloader 2s infinite 1s;
}

.loader:before {
    z-index: 2;
    -webkit-animation: gogoloader 2s infinite;
}

@-webkit-keyframes gogoloader {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

/*==================================================
  Pnotify
==================================================== */
/* -- Notice */
.ui-pnotify {
    top: 25px;
    right: 25px;
    position: absolute;
    height: auto;
    /* Ensures notices are above everything */
    z-index: 9999;
}
.ui-pnotify .alert {
    border-radius: 0;
}
/* Hides position: fixed from IE6 */
html > body > .ui-pnotify {
    position: fixed;
}
.ui-pnotify .ui-pnotify-shadow {
    -webkit-box-shadow: 0 2px 10px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0 2px 10px rgba(50, 50, 50, 0.5);
    box-shadow: 0 2px 10px rgba(50, 50, 50, 0.5);
}
.ui-pnotify-container {
    background-position: 0 0;
    padding: .8em;
    height: 100%;
    margin: 0;
}
.ui-pnotify-sharp {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ui-pnotify-title {
    display: block;
    margin-bottom: .4em;
    margin-top: 0;
}
.ui-pnotify-text {
    display: block;
}
.ui-pnotify-icon,
.ui-pnotify-icon span {
    display: block;
    float: left;
    margin-right: .2em;
}
/* Alternate stack initial positioning. */
.ui-pnotify.stack_top_left,
.ui-pnotify.stack_bottom_left {
    left: 15px;
    right: auto;
}
.ui-pnotify.stack_bottom_right,
.ui-pnotify.stack_bottom_left {
    bottom: 25px;
    right: 8px;
    top: auto;
}
.ui-pnotify.stack_bottom_right {
    right: 12px;
}
.ui-pnotify-closer,
.ui-pnotify-sticker {
    float: right;
    margin-left: .2em;
}
.ui-pnotify.stack_bar_top {
    right: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
}
.ui-pnotify.stack_bar_top .alert {
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
}
.ui-pnotify.stack_bar_bottom {
    right: auto;
    top: auto;
    left: auto;
    margin-left: 15%;
    bottom: 0;
    border-radius: 0;
}
/*wrapper */
.ui-pnotify {
    top: 70px;
    right: 8px;
}
/*with icon*/
.ui-pnotify-icon,
.ui-pnotify-icon span {
    font-size: 30px;
    min-height: 40px;
    line-height: 40px;
    padding-right: 3px;
}