body>.toast-container {
    position: fixed;
    right: 60px;
    top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .25rem;
    z-index: 100000
}

@media screen and (max-width: 850px) {
    body>.toast-container {
        right: 1.5rem
    }
}

body>.toast-container>.toast {
    cursor: pointer;
    font-size: .75rem;
    font-variation-settings: "wght" 310;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    line-height: 1rem;
    display: flex;
    align-items: center;
    height: fit-content;
    padding: .1rem .3rem;
    border-radius: 7px;
    color: #fff;
    background-color: #6c7276;
    white-space: pre
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -120px, 0) scaleY(.8)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(.9)
    }
}

body>.toast-container>.slideInDown {
    animation-name: slideInDown;
    animation-duration: .4s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0, 1.5, 0.5, 1)
}

body>.toast-container>.hide {
    animation-name: fadeOut;
    animation-duration: .15s;
    animation-fill-mode: both;
    animation-timing-function: linear
}