.dialog--comfirm {
    width: auto;
    margin: 0 auto;
    pointer-events: none;
    max-width: 480px;
    top: 10%;
    position: relative;
}

.dialog--container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    opacity: 1;
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
}

.dialog--content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--primary-background);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
	outline: 0;
	
	color: var(--primary-color);
}

.dialog--header,
.dialog--footer {
	padding: 16px;
	
	font-weight: 600;
}

.dialog--body {
    padding: 16px 16px 32px;
}

.dialog--footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-top: 1px solid var(--primary-border);
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOutTop {
    100% {
        opacity: 0;
        transform: translate(0, -100%);
    }
    0% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInTop {
    100% {
        transform: none;
    }
    0% {
        transform: translate(0, -100%);
    }
}

.dialog--container .au-enter {
    transform: translate( 0, 100%);
}

.dialog--container .au-enter-active {
    animation: fadeInTop 0.3s;
}

.dialog--container .au-leave-active {
    animation: fadeOutTop 0.3s;
}

.notifier-bottom {
    margin: 0px auto;
    bottom: 32px;
    left: 0px;
    right: 0px;
    width: 600px;
}

.notifier-top {
    margin: 0px auto;
    top: 32px;
    left: 0px;
    right: 0px;
    width: 600px;
}

.notifier-top-right {
    top: 32px;
    right: 16px;
    width: 400px;
}


.notifier-bottom-right {
    bottom: 32px;
    right: 16px;
    width: 400px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.notifier {
    padding: 8px 16px;
    border-radius: 4px;
    margin: 8px 0;
}

.notifier.success {
    background: var(--color-300);
    color: var(--color-50);
}

@keyframes notifier-animation-enter-opacity {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes notifier-animation-leave-opacity {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


ul[class*=notifier-] {
    list-style: none;
    display: inline-block;
    position: fixed;

    transition: all 0.5s ease-in-out;
    z-index: 1031;

    animation-iteration-count: 1;
    display: inline-block;



}

ul[class*=notifier-]>li {
    background-position: center left 16px;
    background-repeat: no-repeat;
    background-size: 36px;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 16px 16px 16px 68px;
    word-wrap: break-word;
    width: 100%;
}

ul[class*=notifier-]>li:focus,
ul[class*=notifier-]>li:hover {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

ul[class*=notifier-]>li:not(:last-of-type) {
    margin-bottom: 16px;
}

ul[class*=notifier-]>li>.message {
    color: #ffffff;
}

ul[class*=notifier-]>li>.title {
    color: #ffffff;
    font-weight: 700;
}

ul[class*=notifier-]>li.au-enter-active {
    animation: notifier-animation-enter-opacity 1s;
}

ul[class*=notifier-]>li.au-leave-active {
    animation: notifier-animation-leave-opacity 0.5s;
}

.notifier-success {
    background: #388d54;
    ;
}

.notifier-warning {
    background: #FFB74D;
}

.notifier-danger {
    background: #B71C1C;
}

.notifier-info {
    background: #4DD0E1;
}

@media (max-width: 568px) {
    .notifier-bottom {
        width: calc(100% - 32px);
    }
}


/*# sourceMappingURL=app~3d9b8e9e.9863907586a667278403.bundle.map*/