.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #e0933e63;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}



.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--tj-theme-primary);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.sf-indicator {
	--sf-indicator-size: 8px;
	--sf-indicator-green: #0bbf0b;
	--sf-indicator-red: #c51b1b;
	--sf-indicator-orange: #db8719;
	position: absolute;
	font-size: 12px;
	color: #00ff00;
	font-weight: 500;
	margin-top: 10px;
	right: 0;
	margin-right: 10px;
}

.sf-indicator {
	display: flex;
	align-items: center;
	gap: 10px;
	z-index:999;
}

.sf-indicator .status-dot {
	width: var(--sf-indicator-size);
	height: var(--sf-indicator-size);
	border-radius: 50%;
	position: relative;
}

.sf-indicator .status-dot::before,
.sf-indicator .status-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: sf-indicator-pulse 2s infinite linear;
	opacity: 0.3;
}

.sf-indicator .status-dot::after {
	animation-delay: 1s;
}

@keyframes sf-indicator-pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}

	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

.status-green {
	background-color: var(--sf-indicator-green);
}

.status-red {
	background-color: var(--sf-indicator-red);
}

.status-orange {
	background-color: var(--sf-indicator-orange);
}

.live-bg::after {
	content: '';
	width: 70px;
	height: 40px;
	background-color: #000;
	opacity: 0.7;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	border-bottom-left-radius: 25px;
}
