body.goi *:not(input):not(textarea) {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	-webkit-touch-callout: none !important;
}

#goi-protect-toast {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background: #101218;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 14px 16px;
	position: fixed;
	z-index: 1300;
	left: 50%;
	bottom: 30px;
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

#goi-protect-toast.is-on {
	visibility: visible;
	animation: goi-protect-in 0.5s, goi-protect-out 0.5s 2.5s;
}

@keyframes goi-protect-in {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes goi-protect-out {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}
