.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 rgba(184, 151, 136, 0.4);
	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::after {
	position: absolute;
	content: "\f176";
	font-family: "Font Awesome 5 Pro";
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	color: var(--color-primary);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--color-primary);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/* Fixed “Bizi Arayın” next to back-to-top */
.tj-fixed-call-btn {
	position: fixed;
	right: 108px;
	bottom: 50px;
	z-index: 99;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px 0 14px;
	border-radius: 999px;
	background-color: var(--tj-color-theme-primary, #0d57d7);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	font-family: inherit;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	-webkit-transition: transform 200ms linear, box-shadow 200ms linear;
	transition: transform 200ms linear, box-shadow 200ms linear;
	white-space: nowrap;
}
.tj-fixed-call-btn .flaticon-call {
	font-size: 18px;
	line-height: 1;
}
.tj-fixed-call-btn:hover,
.tj-fixed-call-btn:focus {
	color: #fff;
	text-decoration: none;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-fixed-call-btn {
		right: 76px;
		bottom: 20px;
	}
}
