﻿.reg-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	background: #f0f0f0;
	border: 1px solid #ddd;
	color: #999;
}

	.reg-dot.reg-dot-active {
		background: #07C160;
		border-color: #07C160;
		color: #fff;
	}

	.reg-dot.reg-dot-done {
		background: #07C16018;
		border-color: #07C160;
		color: #07C160;
	}

.reg-lbl {
	font-size: 11px;
	color: #999;
	margin-top: 5px;
	white-space: nowrap;
}

	.reg-lbl.reg-lbl-active {
		color: #07C160;
		font-weight: 500;
	}

.reg-line {
	flex: 1;
	height: 1px;
	background: #e0e0e0;
	margin-top: 14px;
	min-width: 16px;
}

	.reg-line.reg-line-done {
		background: #07C160;
	}

.reg-spinner {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	border: 2px solid #07C16030;
	border-top-color: #07C160;
	border-radius: 50%;
	animation: reg-spin .9s linear infinite;
}

@@keyframes reg-spin {
	to {
		transform: rotate(360deg);
	}
}
