/* Notif clipboard */
.notif-clipboard {
	position: fixed;
	top: 50%;
	left: 50%;
	padding: 10px 20px;
	border-radius: 5px;
	color: white;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
	background-color: #28a745;
}

.notif-clipboard.animate {
	opacity: 0;
	transition: all 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.notif-clipboard.animate.active {
	opacity: 1;
	transform: translateX(-50%) translateY(-50%);
}

.notif-clipboard.slide-in-down {
	transform: translateY(-100%) translateX(-50%);
}