.zcm_toast_container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.zcm_toast_panel{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    top: 50%;
    left: 50%;
    max-width: 20em;
    text-align: center;
    transform: translate(-50%,-50%);
    padding: 30px;
    color: #fff;
    background-color : rgba(0,0,0,0.7);
    font-size: 28px;  /*px*/
    border-radius: 8px; /*px*/
    z-index: 999;
    img{
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}