
#android_toast_container {
	width: 100%;
	position: fixed;
	bottom: 12%;
	left: 0
}

#android_toast {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	background-color: #303437;
	color: #f5f5f5;
	font-size: 13px;
	padding: 5px;
	border-radius: var(--border-radius)
	opacity: .95;
	box-shadow: 1px 2px 2px 1px rgba(34, 34, 34, 1);
	text-align: center;
	font-family: Roboto, sans-serif
}

#android_toast em {
	color: #51b4d2;
	font-weight: 700;
	font-style: normal
}

.android_toast_top {
	top: 12%;
	bottom: auto !important
}

.android_toast_fadein {
	animation: android_toast_fadein 1s ease;
}

.android_toast_fadeout {
	animation: android_toast_fadeout 1s ease;
	animation-fill-mode: forwards;
}

@keyframes android_toast_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.95;
    }
}



@keyframes android_toast_fadeout {
	from {
	   opacity: .95;
    }
    to {
	   opacity: 0;
    }
}

