.toast {
    font-size: unset;
}

#toast-container > div {
    min-width: 286px;
    max-width: 350px;
    width: unset;
    border-radius: 8px;
    opacity: 1;
    
    color: var(--bs-black);

    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
}
#toast-container > div:hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
}
.toast-title {
    font-weight: normal;
}
.toast-message {
    font-size: 14px;
    color: var(--base-grey-50);
}
.toast-progress {
    background-color: #D2EFD7;
    opacity: 0.7;
}

#toast-container>.toast-success {
    background: linear-gradient(90deg, #D2EFD7 0%, rgba(255,255,255,1) 46%) !important;
}

