.ToastWrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000000;
    pointer-events: none;
}

.ToastWrapperUl {
    position: relative;
    min-height: 320px;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
}

.ToastWrapperUl > li {
    pointer-events: auto;
}

.ToastWrapperli {
    position: absolute;
    width: 0;
    overflow: hidden;
    transition: width 0.35s ease, opacity 0.25s ease;
}

.ToastWrapperli-in {
    width: 380px;
}

.toastCard {
    position: relative;
    background-color: rgba(9, 9, 9, 0.88);
    color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px 14px 14px 14px;
    z-index: 20000;
    max-width: 380px;
    min-width: 340px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.toastCard-head {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.toastCard-head div {
    padding: 0;
}

.toastCard-body {
    display: block;
    overflow-wrap: break-word;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 4px;
}

.toastCard-close {
    color: #fff;
    border: none;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    margin: -6px -6px -6px 4px;
    line-height: 0;
    opacity: 0.85;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.toastCard-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.12);
}

.toastCard-close i {
    font-size: 22px;
    display: block;
}
