.cro-admin-alert {
	background: #fc0
		repeating-linear-gradient(-45deg, #fc0, #fc0 60px, #000 60px, #000 120px);
	background-size: 250vw 100%;
	padding: 8px;
	display: flex;
	align-items: center;
	color: #fff;
	animation: cubic-bezier(0.25, 0, 0.75, 1) 30s alternate-reverse infinite
		cycling;
}
@keyframes cycling {
	from {
		background-position: -125vw 0;
	}
	to {
		background-position: 0;
	}
}
.cro-admin-close {
	color: #c11;
	font-weight: bold;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	margin-right: 8px;
}
.cro-admin-close:hover {
	color: #811;
}
.cro-admin-text {
	text-align: center;
	flex-grow: 1;
	mix-blend-mode: exclusion;
}
.cro-admin-text a {
	color: #fff;
	text-decoration: underline;
}
