.toast-title {
    font-weight: 600;
    font-size: 1rem;
}

.toast-message {
    word-wrap: break-word;
    font-size: 0.95rem;
}

    .toast-message a,
    .toast-message label {
        color: #ffffff;
        text-decoration: underline;
    }

        .toast-message a:hover {
            color: #e0e0e0;
            text-decoration: none;
        }

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    opacity: 0.8;
    text-shadow: none !important;
    -ms-filter: alpha(Opacity=80);
    filter: alpha(opacity=80);
}

    .toast-close-button:hover,
    .toast-close-button:focus {
        color: #fff;
        opacity: 1;
        background: none !important;
        outline: none !important;
        box-shadow: none !important;
        text-decoration: none;
    }


.toast {
    font-family: 'Inter', sans-serif;
    border-radius: 0.65rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    padding: 1rem 1.25rem 1rem 3rem;
    background-position: 1rem center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    opacity: 0.95;
    transition: all 0.3s ease;
}

    .toast:hover {
        opacity: 1;
        cursor: pointer;
    }

.toast-success {
    background-color: #50cd89;
}

.toast-error {
    background-color: #f1416c;
}

.toast-info {
    background-color: #7239ea;
}

.toast-warning {
    background-color: #ffc700;
    color: #1e1e2d;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #ffffff;
    opacity: 0.3;
}

#toast-container {
    position: fixed;
    z-index: 10555;
    pointer-events: none;
}

    #toast-container > div {
        margin: 0 0 1rem;
        width: 320px;
        pointer-events: all;
    }

.toast-top-right {
    top: 1.5rem;
    right: 1.5rem;
}

.toast-bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
}

.toast-top-left {
    top: 1.5rem;
    left: 1.5rem;
}

.toast-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
}

.toast-top-center {
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.toast-bottom-center {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.toast-top-full-width,
.toast-bottom-full-width {
    left: 0;
    width: 100%;
    text-align: center;
}
