#toast_wrapper {
    display: none;
    text-align: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
}

#toast {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% + 300px);
}

#toast_inner {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    box-shadow: 0 0 6px #808080;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-size: 13px;
}
