﻿/* ------------------------------------------------------------------------------
 *
 *  # PNotify notifications
 *
 *  Styles for pnotify.min.js - a flexible JavaScript notification plugin
 *
 *  Version: 1.1
 *  Latest update: Mar 10, 2016
 *
 * ---------------------------------------------------------------------------- */
.ui-pnotify {
    top: 20px;
    left: 20px;
    position: absolute;
    height: auto;
    z-index: 2;
    border-radius: 3px;
}

body > .ui-pnotify {
    position: fixed;
    z-index: 1000000040;
}

.ui-pnotify.alert-rounded > .ui-pnotify-container {
    border-radius: 100px;
}

.ui-pnotify[class*=bg-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: transparent;
    color: #fff;
}

.ui-pnotify[class*=text-] > .ui-pnotify-container,
.ui-pnotify[class*=alpha-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
}

.ui-pnotify.stack-top-left,
.ui-pnotify.stack-bottom-left {
    right: 20px;
    left: auto;
}

.ui-pnotify.stack-bottom-right,
.ui-pnotify.stack-bottom-left {
    bottom: 20px;
    top: auto;
}

.ui-pnotify.stack-modal {
    right: 50%;
    left: auto;
    margin-right: -150px;
}

.ui-pnotify.stack-custom-right {
    top: auto;
    right: auto;
    bottom: 200px;
    left: 200px;
}

.ui-pnotify.stack-custom-left {
    top: 200px;
    right: 200px;
    left: auto;
    bottom: auto;
}

.ui-pnotify.stack-custom-top {
    left: 0;
    right: 0;
    top: 0;
}

.ui-pnotify.stack-custom-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
}

.ui-pnotify.ui-pnotify-in {
    display: block !important;
}

.ui-pnotify.ui-pnotify-move {
    -webkit-transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    -o-transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
}

.ui-pnotify.ui-pnotify-fade-slow {
    -webkit-transition: opacity linear 0.6s;
    -o-transition: opacity linear 0.6s;
    transition: opacity linear 0.6s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-slow.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-normal {
    -webkit-transition: opacity linear 0.4s;
    -o-transition: opacity linear 0.4s;
    transition: opacity linear 0.4s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-fast {
    transition: opacity .2s linear;
    -webkit-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-fast.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-in {
    opacity: 1;
    filter: alpha(opacity=100);
}

.ui-pnotify-container {
    padding: 10px 70px 10px 10px;
    height: 100%;
    position: relative;
    right: 0;
    margin: 0;
    border-radius: 10px 16px 16px 10px;
}

    .ui-pnotify-container:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    .ui-pnotify-container.ui-pnotify-sharp {
        border-radius: 0;
    }

.ui-pnotify-title {
    display: block;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 15px;
}

.ui-pnotify-text {
    display: block;
    font-size: 13px;
    font-weight: 400;
}

.ui-pnotify-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translate(0,-50%);
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    line-height: 50px;
    text-align: center;
}

    .ui-pnotify-icon > [class^=icon-] {
        margin-top: 4px;
        margin-left: 15px;
    }

.ui-pnotify-closer,
.ui-pnotify-sticker {
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    line-height: 1;
    outline: 0;
}

.ui-pnotify-modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

body > .ui-pnotify-modal-overlay {
    position: fixed;
    z-index: 100039;
}

.brighttheme {
}

.ui-pnotify[class*=bg-] > .brighttheme {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
}

.brighttheme {
    color: #fff;
}

.brighttheme-notice {
    background-color: #FF9800;
}

.brighttheme-info {
    background-color: #1E88E5;
}

.brighttheme-success {
    background-color: #4CAF50;
}

.brighttheme-error {
    background-color: #FF5722;
}

.brighttheme-icon-closer,
.brighttheme-icon-sticker {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    width: 10px;
    height: 10px;
    outline: 0;
}

    .brighttheme-icon-closer:after,
    .brighttheme-icon-sticker:after,
    .brighttheme-icon-success:after,
    .brighttheme-icon-error:after {
        content: '';
        font-family: 'FontAwesome';
        font-size: 10px;
        display: block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.brighttheme-icon-success:after {
    content: "\f14a";
    font-size: 32px;
}

.brighttheme-icon-error:after {
    content: "\f057";
    font-size: 32px;
}

.brighttheme-icon-closer:after {
    content: "\f00d";
}

.brighttheme-icon-sticker:after {
    content: "\f10c";
}

.brighttheme-icon-sticker.brighttheme-icon-stuck:after {
    content: "\f111";
}

.ui-pnotify[class*=alert-styled-] {
    border-width: 0;
    padding: 0;
}

.ui-pnotify.alert-styled-left:after {
    right: 0;
}

.ui-pnotify.alert-styled-right:after {
    left: 0;
}

.brighttheme .ui-pnotify-action-bar {
    padding-top: 15px;
}

    .brighttheme .ui-pnotify-action-bar textarea,
    .brighttheme .ui-pnotify-action-bar input {
        display: block;
        width: 100%;
        border: 1px solid #ddd;
        background-color: #fff;
        margin-bottom: 15px !important;
        color: #333333;
        padding: 7px 12px;
    }

.ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea,
.ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input {
    border-color: #fff;
    color: #fff;
}

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-moz-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea:-ms-input-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input:-ms-input-placeholder {
        color: #fff;
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-webkit-input-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-webkit-input-placeholder {
        color: #fff;
    }

.ui-pnotify[class*=bg-] .form-control {
    border-bottom-color: #fff;
    color: #fff;
}

    .ui-pnotify[class*=bg-] .form-control::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .ui-pnotify[class*=bg-] .form-control:-ms-input-placeholder {
        color: #fff;
    }

    .ui-pnotify[class*=bg-] .form-control::-webkit-input-placeholder {
        color: #fff;
    }

.ui-pnotify-history-container {
    position: absolute;
    top: 0;
    left: 20px;
    width: 70px;
    border-top: none;
    padding: 0;
    z-index: 10000;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .ui-pnotify-history-container.ui-pnotify-history-fixed {
        position: fixed;
    }

    .ui-pnotify-history-container .ui-pnotify-history-header {
        padding: 2px;
        text-align: center;
    }

    .ui-pnotify-history-container button {
        cursor: pointer;
        display: block;
        width: 100%;
    }

    .ui-pnotify-history-container .ui-pnotify-history-pulldown {
        display: block;
        margin: 0 auto;
    }

@media (max-width: 480px) {
    .ui-pnotify-mobile-able.ui-pnotify {
        position: fixed;
        width: calc(100% - 40px) !important;
        -webkit-font-smoothing: antialiased;
        -moz-font-smoothing: antialiased;
        -ms-font-smoothing: antialiased;
        font-smoothing: antialiased;
    }

        .ui-pnotify-mobile-able.ui-pnotify .ui-pnotify-shadow {
            border-bottom-width: 5px;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .ui-pnotify-mobile-able.ui-pnotify.stack-top-left,
        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left {
            right: 0;
            left: 0;
        }

        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right,
        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left {
            right: 0;
            left: 0;
            bottom: 0;
            top: auto;
        }

            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left .ui-pnotify-shadow {
                border-top-width: 5px;
                border-bottom-width: 1px;
            }

        .ui-pnotify-mobile-able.ui-pnotify.ui-pnotify-nonblock-fade {
            opacity: 0.2;
            filter: alpha(opacity=20);
        }

        .ui-pnotify-mobile-able.ui-pnotify.ui-pnotify-nonblock-hide {
            display: none !important;
        }
}
