@charset "UTF-8"; 
#toast {
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 5px 5px;
    transform: translate(-50%, 10px);
    border-radius: 10px;
    overflow: hidden;
    font-size: 1.0rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s, transform .5s;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    z-index: 99009;
	box-sizing: border-box;
}

#toast.reveal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}


#toast_b {
    position: fixed;
    bottom: 50%;
    left: 50%;
	width: 74%;
    padding: 5px 5px;
    transform: translate(-50%, 10px);
    border-radius: 10px;
    overflow: hidden;
    font-size: 1.0rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s, transform .5s;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    z-index: 99009;
	box-sizing: border-box;
	text-align: center;
}

#toast_b.reveal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}




