::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: #EFEBE6;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #DCD6CF;
}

#toast {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #1E293B;
	color: #FCF9F6;
	text-align: center;
	border-radius: 8px;
	padding: 12px;
	position: fixed;
	z-index: 100;
	left: 50%;
	bottom: 30px;
	font-size: 14px;
	transition: visibility 0s, opacity 0.3s linear;
	opacity: 0;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#toast.show {
	visibility: visible;
	opacity: 1;
}
