#toast-container > div {
    -moz-box-shadow: 0 0 3px #999;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999;
    opacity: 1;
}
#toast-container > div:hover {
    -moz-box-shadow: 0 0 6px #000;
    -webkit-box-shadow: 0 0 6px #000;
    box-shadow: 0 0 6px #000;
}

button.toast-close-button {
    text-shadow: none;
}

#toast-container > div.toast-success,
#toast-container > div.toast-success > button.toast-close-button,
#toast-container > div.toast-success > button.toast-close-button:hover,
#toast-container > div.toast-success > button.toast-close-button:focus,
#toast-container > div.toast-success > button.toast-close-button:active {
    color: var(--success-text-color);
}

.toast-success {
    background-color: var(--success-color);
}

#toast-container > .toast-success {
    background-image: url("../svg/success-s-bhxHH.svg") !important;
}

/* Error */
#toast-container > div.toast-error,
#toast-container > div.toast-error > button.toast-close-button,
#toast-container > div.toast-error > button.toast-close-button:hover,
#toast-container > div.toast-error > button.toast-close-button:focus,
#toast-container > div.toast-error > button.toast-close-button:active {
    color: var(--danger-text-color);
}
.toast-error {
    background-color: var(--danger-color);
}

/* Info */
#toast-container > div.toast-info,
#toast-container > div.toast-info > button.toast-close-button,
#toast-container > div.toast-info > button.toast-close-button:hover,
#toast-container > div.toast-info > button.toast-close-button:focus,
#toast-container > div.toast-info > button.toast-close-button:active {
    color: var(--info-text-color);
}
.toast-info {
    background-color: var(--info-color);
}

/* Warning */
#toast-container > div.toast-warning,
#toast-container > div.toast-warning > button.toast-close-button,
#toast-container > div.toast-warning > button.toast-close-button:hover,
#toast-container > div.toast-warning > button.toast-close-button:focus,
#toast-container > div.toast-warning > button.toast-close-button:active {
    color: var(--warning-text-color);
}
.toast-warning {
    background-color: var(--warning-color);
}
#toast-container > .toast-warning {
    background-image: url("../svg/warning-kH7ZRA_.svg") !important;
}