.geo-toast-root {
    position: fixed;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    pointer-events: none;
    top: 24px;
    right: 24px;
    left: auto;
    width: min(360px, calc(100vw - 32px));
}

.geo-toast-root.geo-toast-root--anchored {
    top: 0;
    right: auto;
    left: 0;
    width: auto;
}

.geo-toast {
    pointer-events: auto;
    width: 100%;
    padding: 4px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.55;
    font-family: "Microsoft YaHei", sans-serif;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
    border: 0;
    opacity: 0;
    transform: translateX(calc(100% + 24px));
    transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

.geo-toast.is-show {
    opacity: 1;
    transform: translateX(0);
}

.geo-toast.is-hide {
    opacity: 0;
    transform: translateX(calc(100% + 24px));
}

.geo-toast--error {
    background: rgba(69, 26, 26, .96);
    color: #fecaca;
}

.geo-toast--success {
    background: rgba(5, 46, 22, .96);
    color: #bbf7d0;
}

.geo-toast--info {
    background: rgba(15, 23, 42, .96);
    color: #e2e8f0;
}

@media (max-width: 640px) {
    .geo-toast-root:not(.geo-toast-root--anchored) {
        top: 16px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}
