.toast_views {
    bottom: 0;
    width: -webkit-fill-available;
    position: fixed;
    z-index: 9999;
    background-image: linear-gradient(to bottom, transparent 0%,var(--htmlbk) 100%);
    transition: opacity 0.23s;
    will-change: opacity;
}
.toast {
    width: -webkit-fill-available;
    padding: 16px;
    margin: 16px;
    border-radius: 8px;
    background-color: var(--citcol);
    display: flex;
    align-items: center;
    overflow: hidden;
    animation: toastIn 0.3s ease-out;
    transform: scale(1.0);
    transition: transform 0.23s, opacity 0.23s;
    will-change: transform, opacity;
}
.toast img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.toast a {
    margin-left: auto;
}
.toast_warn {
    background-color: var(--mfont);
}
.toast_warn p {
    color: var(--btnbk5);
}
.toast_warn a {
    color: var(--btnbk5);
}
@keyframes toastIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(48px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.toast_remove {
    transform: scale(0.9) translateY(48px);
    opacity: 0;
    pointer-events: none;
}

@media only screen and (min-width: 1153px) {
    .toast_views {
        top: 65px;
        right: 0;
        height: fit-content;
        width: 400px;
        background-image: linear-gradient(45deg, transparent 0%,transparent 5%,var(--htmlbk) 100%);
    }
    @keyframes toastIn {
        from {
            opacity: 0;
            transform: scale(0.9) translateX(10em);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    .toast_remove {
        transform: scale(0.9) translateX(10em);
        opacity: 0;
        pointer-events: none;
    }
}