/*
 * @Author: Amirhossein Hosseinpour <https://amirhp.com>
 * @Date Created: 2023/11/22 16:09:05
 * @Last modified by: amirhp-com <its@amirhp.com>
 * @Last modified time: 2023/11/23 04:37:00
 */

toast {
	display: block;
	background: var(--toast-bg, rgba(0, 0, 0, .8));
	color: #fff;
	text-align: center;
	bottom: 0;
	top: auto;
	width: 100vw;
	left: 0;
	padding: 1rem;
	box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	transform: translateY(110%);
	position: fixed;
	z-index: 9999999999999999 !important;
}

toast:empty {
	display: none;
}

toast.active {
	transform: translateY(0);
}

.verify-result-wrapper {
	display: block;
	margin: 1rem 0;
	width: 100%;
	border: 1px solid #ccc;
	min-height: 2rem;
	border-radius: 4px;
	padding: 1rem;
}

.verify-result-wrapper:empty {
	display: none;
}

div.verify-row {
	display: block;
	margin-bottom: 1rem;
}

div.verify-row input {
	padding: 0.5rem;
	width: 100%;
}