
#react-notif {
    position: fixed;
    z-index: 9999;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast {
    padding: 2px;
    color: #000;
    background-color: #fff;
    position: relative;
    font-size: 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.3s ease forwards;
    opacity: 1;
    min-width: 150px;
    max-width: 300px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-inline: 5px;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast:last-child {
    transform: translateY(0);
}

.toast-icon {
    padding: 8px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 8px;
}

.toast-message {
    flex: 1;
}

.toast-close {
    cursor: pointer;
}

.toast.success {
    background-color: #fff;
}

.toast-success-fixed { 
    position: relative;
    width: 20px;
    height: 20px;
    background-color: rgba(34, 197, 94, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    animation: Catur 0.15s ease-out forwards;
    animation-delay: 100ms;
}

@keyframes Catur {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.toast-error-fixed {
    width: 20px;
    opacity: 0;
    height: 20px;
    border-radius: 10px;
    background: #ff4b4b;
    position: relative;
    transform: rotate(45deg);
    animation: go2264125279 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
        forwards;
    animation-delay: 100ms;
}

.toast-error-fixed:after,
.toast-error-fixed:before {
    content: "";
    position: absolute;
    border-radius: 3px;
    opacity: 1;
    background: #fff;
    height: 2px;
    width: 12px;
    bottom: 9px;
    left: 4px;
    animation: fadeIn 0.15s ease-out forwards;
}

.toast-error-fixed:before {
    transform: rotate(90deg);
    animation-delay: 180ms;
}

@keyframes go3223188581 {
    0% {
        transform: translate3d(0, -200%, 0) scale(0.6);
        opacity: 0.5;
        transform: translate3d(0px, -200%, 0px) scale(0.6);
        opacity: 0.5;
    }
    
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale(1);
        opacity: 1;
    }
}

@keyframes go1268368563 {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes go2264125279 {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    
    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}
