.notify,
.notify__icon {
    align-items: center;
    /* display: flex */
}

.notifications-container {
    max-height: 100vh;
    min-width: 320px;
    max-width: 500px;
    pointer-events: none;
    position: fixed;
    width: 100%;
    z-index: 9999988;
}

.notifications-container.notify-is-x-center {
    left: 50%;
    transform: translateX(-50%)
}

.notifications-container.notify-is-y-center {
    top: 50%;
    transform: translateY(-50%)
}

.notifications-container.notify-is-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.notifications-container.notify-is-left {
    left: 0
}

.notifications-container.notify-is-right {
    right: 0
}

.notifications-container.notify-is-top {
    top: 0
}

.notifications-container.notify-is-bottom {
    bottom: 0
}

.notifications-container.notify-is-x-center.notify-is-top {
    top: var(--distance)
}

.notifications-container.notify-is-x-center.notify-is-bottom {
    bottom: var(--distance)
}

.notifications-container>* {
    pointer-events: auto
}

.notify {
    --notify-error: rgb(235, 87, 87);
    --notify-error-progress: rgb(192, 69, 69);
    --notify-success: rgb(245, 73, 3);
    --notify-success-progress: rgb(84, 170, 120);
    --notify-warning: rgb(242, 201, 76);
    --notify-warning-progress: rgb(196, 166, 79);
    --notify-info: rgb(81, 205, 243);
    --notify-info-progress: rgb(84, 169, 196);
    --notify-gray: rgb(51, 51, 51);
    --notify-gray-2: rgb(77, 77, 77);
    --notify-gray-3: rgb(130, 130, 130);
    --notify-white: rgb(255, 255, 255);
    --notify-white-2: rgba(255, 255, 255, 0.8);
    --notify-padding: 0.75rem;
    --notify-icon-size: 32px;
    --notify-close-icon-size: 16px;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    padding: var(--notify-padding);
    position: relative;
    text-decoration: none;
    transition-timing-function: ease;
    width: 100%
}

.notify--type-1 .notify__text,
.notify__title {
    font-family: Poppins, Arial, Helvetica, sans-serif
}

.notify__icon {
    flex-shrink: 0;
    height: var(--notify-icon-size);
    justify-content: center;
    margin-right: 12px;
    width: var(--notify-icon-size)
}

.notify__close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: var(--notify-close-icon-size);
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    user-select: none;
    width: var(--notify-close-icon-size)
}

.notify__close * {
    pointer-events: none
}

.notify__title {
    font-size: 1.25rem;
    font-weight: 600;
    padding-right: calc(var(--notify-padding) + var(--notify-close-icon-size))
}

.notify__text {
    font-size: .875rem;
    margin-top: .25rem
}

.notify--type-1 {
    background-color: #fff;
    border: 1px solid currentColor
}

.notify--type-1 .notify__close {
    color: var(--notify-gray-3);
    min-width: 25px;
    min-height: 25px;
    background: #263045;
    border-radius: 5px
}

.notify--type-1 .notify__close svg path {
    color: #fff
}

.notify--type-1 .notify__title {
    color: var(--notify-gray);
    margin-bottom: 10px
}

.notify--type-1 .notify__text {
    color: var(--notify-gray-2)
}

.notify--type-2 {
    color: var(--notify-gray)
}

.notify--type-3 {
    color: var(--notify-white)
}

.notify--type-3 .notify__text {
    color: var(--notify-white-2)
}

.notify--error.notify--type-1 {
    box-shadow: 0 2px 26px rgba(215, 0, 0, .1);
    color: var(--notify-error)
}

.notify--error.notify--type-2,
.notify--error.notify--type-3 {
    background-color: var(--notify-error)
}

.notify--warning.notify--type-1 {
    box-shadow: 0 2px 26px rgba(242, 201, 76, .1);
    color: var(--notify-warning)
}

.notify--warning.notify--type-2,
.notify--warning.notify--type-3 {
    background-color: var(--notify-warning)
}

.notify--success.notify--type-1 {
    box-shadow: 0 2px 32px rgb(0 0 0 / 25%);
    color: var(--notify-success);
    padding: 20px;
    position: relative;
    transition: .5s ease-in-out
}

.notify--success.notify--type-1:hover {
    animation: .5s alltuchtopdown
}

@keyframes alltuchtopdown {
    0%,
    100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.15)
    }
}

.notify--success.notify--type-1:before {
    content: "";
    position: absolute;
    left: 13%;
    top: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(154.68deg, #8894ff 11.62%, #ff8585 90.47%);
    opacity: .1;
    filter: blur(75px)
}

.notify--success.notify--type-2,
.notify--success.notify--type-3 {
    background-color: var(--notify-success)
}

.notify--info.notify--type-1 {
    box-shadow: 0 2px 26px rgba(84, 175, 202, .1);
    color: var(--notify-info)
}

.notify--info.notify--type-2,
.notify--info.notify--type-3 {
    background-color: var(--notify-info)
}

.notify--fade {
    opacity: 0;
    will-change: opacity
}

.notify--fadeIn {
    opacity: 1
}

.notify--slide {
    opacity: 0;
    will-change: opacity, transform
}

.notify-is-center .notify--slide,
.notify-is-x-center:not(.notify-is-bottom) .notify--slide,
.notify-is-y-center .notify--slide {
    transform: translateY(-20px)
}

.notify-is-x-center.notify-is-bottom .notify--slide {
    transform: translateY(20px)
}

.notify-is-right .notify--slide {
    transform: translateX(calc(var(--distance) + 110%))
}

.notify-is-left .notify--slide {
    transform: translateX(calc((var(--distance) * -1) - 110%))
}

.notify-is-center .notify--slideIn,
.notify-is-x-center.notify-is-bottom .notify--slideIn,
.notify-is-x-center:not(.notify-is-bottom) .notify--slideIn,
.notify-is-y-center .notify--slideIn {
    opacity: 1;
    transform: translateY(0)
}

.notify-is-left .notify--slideIn,
.notify-is-right .notify--slideIn {
    opacity: 1;
    transform: translateX(0)
}

.notify-is-left .notify {
    left: var(--distance)
}

.notify-is-right .notify {
    right: var(--distance)
}

.notify-is-center .notify,
.notify-is-top .notify,
.notify-is-x-center.notify-is-top .notify,
.notify-is-y-center .notify {
    margin-top: 0
}

.notify-is-bottom .notify,
.notify-is-x-center:not(.notify-is-top) .notify {
    margin-bottom: var(--gap)
}

.notify.notify-autoclose {
    --progress-height: 5px;
    padding-bottom: calc(var(--notify-padding) + var(--progress-height))
}

.notify.notify-autoclose::before {
    animation: progress calc(var(--timeout) * 1ms) linear forwards;
    bottom: 0;
    content: '';
    height: var(--progress-height);
    left: 0;
    position: absolute;
    transform: scale3d(1, 1, 1);
    transform-origin: left;
    width: 100%
}

@keyframes progress {
    to {
        transform: scale3d(0, 1, 1)
    }
}

.notify.notify-autoclose.notify--error::before {
    background-color: var(--notify-error-progress)
}

.notify.notify-autoclose.notify--warning::before {
    background-color: var(--notify-warning-progress)
}

.notify.notify-autoclose.notify--success::before {
    background-color: var(--notify-success-progress)
}

.notify.notify-autoclose.notify--info::before {
    background-color: var(--notify-info-progress)
}

.notify {
    border-bottom: 5px solid #f54903 !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important
}

.notify__title {
    margin-bottom: 0 !important;
    font-size: 22px !important;
    border-bottom: 1px solid #ebebeb !important;
    padding-bottom: 3px !important
}

.notify__text {
    margin-top: 100px !important
}

.notify__text,
.notify__title {
    text-align: center;
}

.notify__icon {
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%) scale(2);
    margin-right: 0 !important
}

.backdrop-effect {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 9999988
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    width: 48px;
    height: 48px;
    border: 5px dotted rgb(0, 0, 0);
    border-radius: 50%;
    display: inline-block;
    /* position: relative; */
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}