.toast {
    align-items: center;
    margin: 0 0 32px 32px;
    background-color: white;
    border-left: 50px solid #DFFBEB;
    border-bottom-width: 0;
    border-top-width: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 8px 16px rgb(0 0 0 / 0.2);
    border-radius: 2px;
}

.toast-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: -50px;
}

.toast-close-button {
    height: 18px;
    margin-left: auto;
}

.toast-progress-bar {
    width: calc(100% + 50px);
    height: 5px;
    margin-left: -50px;
}

.toast-title {
    font-weight: 700;
    word-wrap: break-word;
}

.toast-progress-bar.success {
    background-color: #29A72F;
}

.toast-progress-bar.error {
    background-color: #D22F2D;
}

.toast-progress-bar.warning {
    background-color: #E5B000;
}

.toast-progress-bar.info {
    background-color: #166EFA;
}

.toast.success svg {
    color: #29A72F;
}

.toast.error svg {
    color: #D22F2D;
}

.toast.warning svg {
    color: #E5B000;
}

.toast.info svg {
    color: #166EFA;
}

.toast svg.fa-xmark {
    color: #626D7A;
}

.toast.success {
    border-color: #ECFAED;
}

.toast.error {
    border-color: #FFEDEB;
}

.toast.warning {
    border-color: #FFF7D6;
}

.toast.info {
    border-color: #E8F1FF;
}

.toast svg.fa-circle-info,
.toast svg.fa-triangle-exclamation,
.toast svg.fa-circle-exclamation,
.toast svg.fa-circle-check,
.toast svg.fa-xmark {
    height: 18px;
    width: 18px;
}