.iziToast-wrapper-topCenter {
    padding-top: 20px;
    pointer-events: none;
}

.iziToast-wrapper-topCenter .iziToast-capsule {
    pointer-events: auto;
}

.iziToast.fpt-toast {
    font-family: var(--font-family-base, "Roboto", ui-sans-serif, system-ui, sans-serif);
    display: flex;
    align-items: stretch;
    min-height: 0;
    width: 100%;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--border-card-6, #f0e7e0);
    background: var(--white, #fff);
    box-shadow:
        0 4px 6px rgba(41, 27, 14, 0.04),
        0 12px 28px rgba(41, 27, 14, 0.1);
    overflow: hidden;
}

.iziToast.fpt-toast::before {
    content: "";
    flex: 0 0 3px;
    align-self: stretch;
    background: var(--toast-accent, var(--color-1, #fb6104));
}

.iziToast.fpt-toast::after {
    display: none !important;
}

.iziToast.fpt-toast > .iziToast-progressbar {
    left: 3px;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
    z-index: 2;
}

.iziToast.fpt-toast > .iziToast-progressbar > div {
    height: 2px;
    border-radius: 0;
    background: var(--toast-accent, var(--color-1, #fb6104));
    opacity: 0.55;
}

.iziToast.fpt-toast > .iziToast-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    opacity: 0.35;
    background: none !important;
    background-size: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    transition: opacity 0.2s ease;
}

.iziToast.fpt-toast > .iziToast-close::before {
    content: "\00d7";
    font-size: 22px;
    line-height: 1;
    color: var(--text-body-3, #555);
    font-weight: 300;
}

.iziToast.fpt-toast > .iziToast-close:hover {
    opacity: 0.7;
}

.iziToast.fpt-toast > .iziToast-body {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 14px 40px 14px 14px;
    min-height: 0;
    height: auto;
    text-align: left;
}

.iziToast.fpt-toast > .iziToast-body::after {
    display: none;
}

.iziToast.fpt-toast > .iziToast-body .iziToast-icon {
    position: static;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    background-image: none !important;
    background-color: var(--toast-icon-bg, #fff3eb);
    color: var(--toast-accent, var(--color-1, #fb6104));
}

.iziToast.fpt-toast > .iziToast-body .iziToast-icon i {
    display: block;
    font-size: 16px;
    line-height: 1;
}

.iziToast.fpt-toast > .iziToast-body .iziToast-texts {
    flex: 1;
    min-width: 0;
    float: none;
    display: block;
    margin: 0;
    padding: 2px 0 0;
    width: auto;
}

.iziToast.fpt-toast > .iziToast-body .iziToast-title {
    float: none;
    display: block;
    color: var(--text-heading, #222);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px;
    padding: 0;
    white-space: normal;
}

.iziToast.fpt-toast > .iziToast-body .iziToast-message {
    float: none;
    display: block;
    color: var(--text-body-3, #555);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    white-space: normal;
}

.iziToast.fpt-toast--success {
    --toast-accent: #16a34a;
    --toast-icon-bg: #ecfdf3;
}

.iziToast.fpt-toast--warning {
    --toast-accent: #ea580c;
    --toast-icon-bg: #fff7ed;
}

.iziToast.fpt-toast--error {
    --toast-accent: #dc2626;
    --toast-icon-bg: #fef2f2;
}

.iziToast.fpt-toast--info {
    --toast-accent: #2563eb;
    --toast-icon-bg: #eff6ff;
}

@media only screen and (min-width: 568px) {
    .iziToast.fpt-toast {
        min-width: 340px;
        max-width: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 567px) {
    .iziToast-wrapper-topCenter {
        padding-left: 12px;
        padding-right: 12px;
    }

    .iziToast.fpt-toast {
        width: 100%;
    }

    .iziToast.fpt-toast > .iziToast-body {
        padding: 12px 36px 12px 12px;
        gap: 10px;
    }
}
