.toast-container {
    position: fixed !important;
    top: 25px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 1000 !important;
}

.toast {
    position: relative !important;
    width: 320px !important;
    border-radius: 12px !important;
    background: #fff !important;
    padding: 20px 35px 20px 25px !important;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    overflow-x: hidden !important;
    align-items: center !important;
    transform: translateX(calc(100% + 30px)) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35) !important;
}

.toast.active {
    transform: translateX(0%) !important;
}

.toast .toast-content {
    display: flex !important;
    align-items: center !important;
}

.toast-content .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 35px !important;
    min-width: 35px !important;
    font-size: 35px !important;
    color: #fff !important;
}

.toast-content .message {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 15px !important;
}

.message .text {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    font-family: "Outfit", serif !important;
    font-optical-sizing: auto !important;
    font-style: normal !important;
}

.message .text.text-1 {
    font-weight: 600 !important;
    color: #333 !important;
}

.toast .close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    padding: 5px !important;
    cursor: pointer !important;
    opacity: 0.7 !important;
}

.toast .close:hover {
    opacity: 1 !important;
}

.toast .progress {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 3px !important;
    width: 100% !important;
}

.toast .progress:before {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background-color: #4070f4 !important;
}

/* If you edit the timeout variable in the JS, be sure to edit this too */
.progress.active:before {
    animation: progress 5s linear forwards !important;
}

@keyframes progress {
    100% {
        right: 100% !important;
    }
}

/* Toast Type Colors */
.toast.success .icon {
    color: rgb(25 135 84) !important;
}

.toast.error .icon {
    color: rgb(220 53 69) !important;
}

.toast.warning .icon {
    color: rgb(255 193 7) !important;
}

.toast.info .icon {
    color: rgb(13 202 240) !important;
}

.toast.success .progress:before {
    background: rgb(25 135 84) !important;
}

.toast.error .progress:before {
    background: rgb(220 53 69) !important;
}

.toast.warning .progress:before {
    background: rgb(255 193 7) !important;
}

.toast.info .progress:before {
    background: rgb(13 202 240) !important;
}