﻿.push-notification.hidden {
	top: -100px;
	transition: top 0.2s ease;
}

.push-notification {
	position: fixed;
	/*noinspection CssUnresolvedCustomProperty*/
	top: var(--top);
	right: 10px;
	padding: 10px 20px;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	z-index: 9999;
	transition: top 0.1s ease;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.push-notification.success {
	background: var(--COLOR-GREEN);
}

.push-notification.error {
	background: #e74c3c;
}