/* https://foolishdeveloper.com/animated-right-arrow-css/ */

@keyframes clickNextAnimation {
	from {
		opacity: 0%;
	}
	to {
		opacity: 100%;
	}
}

.clickNext {
	font-size: 30px;
	color: #FFFFFF;
	animation-name: clickNextAnimation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	margin-right: 20px;
}

.btnDisabled {
	background-color: #444444;
	border-color: #444444;
	color: #AAAAAA;
}

.mandatoryWorkflowRow {
	display: inline-flex;
}

.workflowStatus {
	margin-left: 20px;
}

.marginToRight {
	margin-right: 20px;
}

a.whitelink {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: underline;
}

a:hover.whitelink {
	color: #FF4444;
	font-weight: bold;
	text-decoration: underline;
}
