/******************
    toasts
******************/
#toast-container {
    position: fixed;
    top: 85px;
    right: 25px;
    width: 250px;
    height: 1024px;
    pointer-events: none;
    z-index: var(--z-index-popup);
}

#toast-container .toast {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    color: #eee;
    border: 2px solid #600;
    background-color: #a00;
    box-shadow: 4px 4px 9px #000;
    margin: 10px 5px;
    font-weight: 700;
    pointer-events: all;
}

#toast-container .toast > .toast-close {
    position: relative;
    top: -10px;
    right: -158px;
    font-size: 1.2em;
    cursor: pointer;
}