.flashes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flash {
	position: absolute;
	width: 40%;

	margin: 16px auto;
	padding: 16px;

	background-color: #ccc;
	color: black;
	border-radius: 8px;
	border: none;
	opacity: 0.9;

	animation: flash 5s forwards;

	text-align: center;
	z-index: 999;

	cursor: default;
}

@keyframes flash {
	0% {
		top: 0;
		opacity: 0.9;
	}
	80% {
		top: 0;
		opacity: 0.9;
	}
	100% {
		top: -150px;
		opacity: 0;
	}
}
