/* Toast container width */
#wc-toast-container .toast {
    min-width: 320px;
}

/* Bottom progress border */
.toast-progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #28a745;
    transition: width 5s linear;
}
/* Success */
.wc-toast-success {
    background: #f6fffa;
}

/* Error */
.wc-toast-error {
    background: #fff5f5;
}

.wc-toast-error .toast-progress-bar {
    background: #dc3545;
}

.wc-toast-success .toast-progress-bar {
    background: #28a745;
}
