.sa-dangos {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
}

.sa-dango-notice {
	bottom: 20px;
	position: fixed;
	z-index: 999;
	background: #000;
	left: 20px;
	border-radius: 10px;
	padding: 5px;
	width: 500px;
	color: white;
	text-shadow: none;
}

.sa-dango {
	height: 50px;
	width: 50px;
	/* Twemoji by Twitter Inc, licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/ */
	background: url("https://cdn.jsdelivr.net/gh/ScratchAddons/ScratchAddons/addons/dango-rain/dango.svg");
	pointer-events: none;
	position: absolute;
	top: -10%;
	z-index: 9999;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
	animation-name: dangos-fall, dangos-shake;
	animation-duration: 5s, 3s;
	animation-timing-function: linear, ease-in-out;
	animation-iteration-count: infinite, infinite;
	animation-play-state: running, running;
}

.dango-notif-close {
	float: right;
	cursor: pointer;
	background-color: #ffffff26;
	line-height: 10px;
	padding: 5px;
	border-radius: 50%;
}

@keyframes dangos-fall {
	0% {
		top: -10%;
	}

	100% {
		top: 100%;
	}
}

@keyframes dangos-shake {
	0%,
	100% {
		transform: translatex(0);
	}

	50% {
		transform: translatex(80px);
	}
}

@keyframes dangos-fall {
	0% {
		top: -10%;
	}

	100% {
		top: 100%;
	}
}

@keyframes dangos-shake {
	0%,
	100% {
		transform: translatex(0);
	}

	50% {
		transform: translatex(80px);
	}
}
