.toast.toast-custom {
    padding: 20px;
    background: #fff;
    display: flex;
    border-radius: 12px;
}

.toast.toast-custom .toast-header {
    padding: 0px;
    border-bottom: 0px;
    display: inline;
}

.toast.toast-custom .toast-body {
    padding: 0px;
}

.toast.toast-custom .toast-body .title {
    color: #292929;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.toast.toast-custom .toast-body .content {
    color: #767676;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    background: #fff !important;
}

@media (max-width: 991px) {
    .toast.toast-custom {
        padding: 12px;
        border-radius: 8px;
        gap: 16px !important;
    }

    .toast.toast-custom .toast-header {
        padding: 0px;
        border-bottom: 0px;
        display: inline;
        background-color: unset;
    }

    .toast.toast-custom .toast-body {
        padding: 0px;
    }

    .toast.toast-custom .toast-body .title {
        color: #292929;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
    }

    .toast.toast-custom .toast-body .content {
        color: #767676;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        background-color: unset !important;
    }

    .toast {
        width: 100%;
    }

    .toast.toast-success {
        background: #dcfce7;
    }

    .toast.toast-warning {
        background: #fefce8;
    }

    .toast.toast-error {
        background: #fee2e2;
    }

    .toast.toast-error .title,
    .toast.toast-error .content {
        color: #d7002b !important;
    }
}

.toast-wrapper {
    margin: 24px;
}

@media (max-width: 991px) {
    .toast-wrapper {
        margin: 16px 12px;
    }
}
