﻿.noty_bar {
    position: relative;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0,0) scale(1,1);
    transform: translate(0,0) scale(1,1);
    -webkit-font-smoothing: subpixel-antialiased;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.1)
}

.noty_body {
    padding: 1rem 1.25rem
}

.noty_close_with_button .noty_body {
    padding-right: 2.5rem
}

.noty_buttons {
    padding: 1rem 1.25rem;
    padding-top: 0;
    text-align: right
}

#noty_layout__bottom, #noty_layout__bottomCenter, #noty_layout__bottomLeft, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight, #noty_layout__top, #noty_layout__topCenter, #noty_layout__topLeft, #noty_layout__topRight, .noty_layout_mixin {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 1050;
    -webkit-transform: translateZ(0) scale(1,1);
    transform: translateZ(0) scale(1,1);
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    max-width: 90%
}

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%
}

    #noty_layout__top .noty_bar:first-child {
        margin-top: 1.25rem
    }

#noty_layout__topLeft {
    top: 1.25rem;
    left: 1.25rem;
    width: 20rem
}

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 20rem;
    -webkit-transform: translate(-50%) translateZ(0) scale(1,1);
    transform: translate(-50%) translateZ(0) scale(1,1)
}

#noty_layout__topRight {
    top: 1.25rem;
    right: 1.25rem;
    width: 20rem
}

#noty_layout__center {
    top: 50%;
    left: 50%;
    width: 20rem;
    -webkit-transform: translate(-50%,-50%) translateZ(0) scale(1,1);
    transform: translate(-50%,-50%) translateZ(0) scale(1,1)
}

#noty_layout__centerLeft {
    top: 50%;
    left: 1.25rem;
    width: 20rem;
    -webkit-transform: translate(0,-50%) translateZ(0) scale(1,1);
    transform: translate(0,-50%) translateZ(0) scale(1,1)
}

#noty_layout__centerRight {
    top: 50%;
    right: 1.25rem;
    width: 20rem;
    -webkit-transform: translate(0,-50%) translateZ(0) scale(1,1);
    transform: translate(0,-50%) translateZ(0) scale(1,1)
}

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%
}

    #noty_layout__bottom .noty_bar:last-child {
        margin-bottom: 1.25rem
    }

#noty_layout__bottomLeft {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 20rem
}

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 20rem;
    -webkit-transform: translate(calc(-50% - 1px)) translateZ(0) scale(1,1);
    transform: translate(calc(-50% - 1px)) translateZ(0) scale(1,1)
}

#noty_layout__bottomRight {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 20rem
}

.noty_progressbar {
    display: none
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: .1875rem;
    width: 100%;
    background-color: rgba(0,0,0,.25)
}

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_effects_close {
    -webkit-animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out
}

.noty_close_with_click {
    cursor: pointer
}

.noty_close_button {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background-color: transparent;
    font-size: 1.37506rem;
    font-weight: 400;
    color: inherit;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity ease-in-out .15s
}

@media (prefers-reduced-motion:reduce) {
    .noty_close_button {
        transition: none
    }
}

.noty_close_button:hover {
    opacity: 1
}

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1040;
    opacity: .35;
    left: 0;
    top: 0
}

    .noty_modal.noty_modal_open {
        opacity: 0;
        -webkit-animation: noty_modal_in .3s ease-out;
        animation: noty_modal_in .3s ease-out
    }

    .noty_modal.noty_modal_close {
        -webkit-animation: noty_modal_out .3s ease-out;
        animation: noty_modal_out .3s ease-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

@-webkit-keyframes noty_modal_in {
    100% {
        opacity: .35
    }
}

@keyframes noty_modal_in {
    100% {
        opacity: .35
    }
}

@-webkit-keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@-webkit-keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_height {
    100% {
        height: 0
    }
}

@keyframes noty_anim_height {
    100% {
        height: 0
    }
}

.noty_theme__limitless.noty_bar {
    margin: .25rem 0;
    position: relative;
    border: 1px solid transparent;
    border-radius: .25rem
}

.noty_theme__limitless.noty_type__alert {
    background-color: #252b36;
    color: #fff;
    border-color: #252b36
}

.noty_theme__limitless.noty_type__warning {
    background-color: #f58646;
    color: #fff;
    border-color: #f58646
}

.noty_theme__limitless.noty_type__error {
    background-color: #ef5350;
    color: #fff;
    border-color: #ef5350
}

.noty_theme__limitless.noty_type__info {
    background-color: #2196f3;
    color: #fff;
    border-color: #2196f3
}

.noty_theme__limitless.noty_type__success {
    background-color: #25b372;
    color: #fff;
    border-color: #25b372
}

.noty_theme__limitless.noty_type__confirm {
    background-color: #fff;
    border-color: rgba(0,0,0,.2);
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.1)
}

    .noty_theme__limitless.noty_type__confirm .noty_body {
        padding: 1.25rem
    }

    .noty_theme__limitless.noty_type__confirm .noty_close_button {
        top: 1.25rem
    }

.ui-pnotify {
    top: 1.25rem;
    right: 1.25rem;
    position: absolute;
    height: auto;
    z-index: 2;
    border-radius: .25rem;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.1)
}

body > .ui-pnotify {
    position: fixed;
    z-index: 1070
}

.ui-pnotify.alert-rounded > .ui-pnotify-container {
    border-radius: 50rem
}

.ui-pnotify[class*=bg-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: transparent;
    color: #fff
}

.ui-pnotify.alert-styled-custom > .ui-pnotify-container, .ui-pnotify[class$="-100"] > .ui-pnotify-container, .ui-pnotify[class*=text-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: inherit;
    color: inherit
}

.ui-pnotify.stack-bottom-left, .ui-pnotify.stack-top-left {
    left: 1.25rem;
    right: auto
}

.ui-pnotify.stack-bottom-left, .ui-pnotify.stack-bottom-right {
    bottom: 1.25rem;
    top: auto
}

.ui-pnotify.stack-modal {
    left: 50%;
    right: auto;
    margin-left: -10rem
}

.ui-pnotify.stack-custom-right {
    top: auto;
    left: auto;
    bottom: 25%;
    right: 25%
}

.ui-pnotify.stack-custom-left {
    top: 25%;
    left: 25%;
    right: auto;
    bottom: auto
}

.ui-pnotify.stack-custom-top {
    right: 0;
    left: 0;
    top: 0
}

.ui-pnotify.stack-custom-bottom {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto
}

.ui-pnotify.ui-pnotify-in {
    display: block !important
}

.ui-pnotify.ui-pnotify-move {
    transition: left .5s ease,top .5s ease,right .5s ease,bottom .5s ease
}

.ui-pnotify.ui-pnotify-fade-slow {
    opacity: 0;
    transition: opacity linear .6s
}

    .ui-pnotify.ui-pnotify-fade-slow.ui-pnotify.ui-pnotify-move {
        transition: opacity .6s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease
    }

.ui-pnotify.ui-pnotify-fade-normal {
    opacity: 0;
    transition: opacity linear .4s
}

    .ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move {
        transition: opacity .4s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease
    }

.ui-pnotify.ui-pnotify-fade-fast {
    transition: opacity .2s linear;
    opacity: 0
}

    .ui-pnotify.ui-pnotify-fade-fast.ui-pnotify.ui-pnotify-move {
        transition: opacity .2s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease
    }

.ui-pnotify.ui-pnotify-fade-in {
    opacity: 1
}

.ui-pnotify-container {
    padding: 1rem 1.25rem;
    height: 100%;
    position: relative;
    left: 0;
    margin: 0;
    border-radius: .25rem
}

    .ui-pnotify-container::after {
        display: block;
        clear: both;
        content: ""
    }

    .ui-pnotify-container.ui-pnotify-sharp {
        border-radius: 0
    }

.ui-pnotify-title {
    display: block;
    margin-top: 0;
    margin-bottom: .3125rem;
    font-size: 1rem
}

.ui-pnotify-text {
    display: block
}

.ui-pnotify-icon {
    display: block;
    float: left;
    line-height: 1
}

    .ui-pnotify-icon > [class^=icon-] {
        margin-top: .375rem;
        margin-right: .625rem
    }

.ui-pnotify-closer, .ui-pnotify-sticker {
    float: right;
    margin-left: .625rem;
    margin-top: .375rem;
    line-height: 1;
    outline: 0
}

.ui-pnotify-modal-overlay {
    background-color: rgba(0,0,0,.35);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%
}

body > .ui-pnotify-modal-overlay {
    position: fixed;
    z-index: 1040
}

.brighttheme {
    border: 1px solid
}

.ui-pnotify[class*=bg-] > .brighttheme {
    background-color: inherit;
    border-color: inherit;
    color: inherit
}

.brighttheme-notice {
    background-color: #fef3ed;
    border-color: #f58646;
    color: #301110
}

.brighttheme-info {
    background-color: #e9f5fe;
    border-color: #2196f3;
    color: #071e31
}

.brighttheme-success {
    background-color: #e9f7f1;
    border-color: #25b372;
    color: #072417
}

.brighttheme-error {
    background-color: #fdeeee;
    border-color: #ef5350;
    color: #301110
}

.brighttheme-icon-closer, .brighttheme-icon-sticker {
    position: relative;
    display: inline-block;
    outline: 0;
    width: .8125rem;
    height: .8125rem
}

    .brighttheme-icon-closer:after, .brighttheme-icon-sticker:after {
        content: '';
        font-family: icomoon;
        font-size: .8125rem;
        display: block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

    .brighttheme-icon-closer:after {
        content: ""
    }

    .brighttheme-icon-sticker:after {
        content: ""
    }

    .brighttheme-icon-sticker.brighttheme-icon-stuck:after {
        content: ""
    }

.ui-pnotify[class*=alert-styled-] {
    border-width: 0;
    padding: 0
}

.ui-pnotify.alert-styled-left .brighttheme {
    border-left-width: 3rem
}

.ui-pnotify.alert-styled-left:after {
    left: 0
}

.ui-pnotify.alert-styled-right .brighttheme {
    border-right-width: 3rem
}

.ui-pnotify.alert-styled-right:after {
    right: 0
}

.brighttheme .ui-pnotify-action-bar input, .brighttheme .ui-pnotify-action-bar textarea {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-bottom: 1.25rem !important;
    color: #333;
    padding: .4375rem .875rem;
    outline: 0;
    border-radius: .25rem
}

.ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea {
    border-color: transparent;
    color: #fff
}

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-webkit-input-placeholder, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-webkit-input-placeholder {
        color: #fff;
        opacity: 1
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-moz-placeholder, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-moz-placeholder {
        color: #fff;
        opacity: 1
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input:-ms-input-placeholder, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea:-ms-input-placeholder {
        color: #fff;
        opacity: 1
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-ms-input-placeholder, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-ms-input-placeholder {
        color: #fff;
        opacity: 1
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::placeholder, .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::placeholder {
        color: #fff;
        opacity: 1
    }

.ui-pnotify-history-container {
    position: absolute;
    top: 0;
    right: 1.25rem;
    border-top: none;
    padding: 0;
    z-index: 1070;
    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 {
        text-align: center;
        margin-bottom: .3125rem
    }

    .ui-pnotify-history-container button {
        cursor: pointer;
        display: block;
        width: 100%
    }

    .ui-pnotify-history-container .ui-pnotify-history-pulldown {
        display: block;
        margin: 0 auto
    }
