.fv-global-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 5000;
    min-width: 280px;
    max-width: min(500px, calc(100vw - 32px));
    min-height: 46px;
    display: grid;
    grid-template-columns: 28px 1fr 24px;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    transform: translateX(-50%);
    border-radius: 5px;
    background: #222;
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    font-size: 12px;
}

.fv-global-toast.success {
    background: #202020;
}

.fv-global-toast.error {
    background: #b42318;
}

.fv-global-toast.warning {
    background: #9a5b13;
}

.fv-global-toast-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.fv-global-toast button {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 720px) {
    .fv-global-toast {
        bottom: 76px;
        min-width: 0;
        width: calc(100% - 28px);
        font-size: 11px;
    }
}
