
			.tracking-order {
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: 100%;
				margin: 20px 0;
				position: relative;
			}
			.tracking-step {
				display: flex;
				flex-direction: column;
				align-items: center;
				width: 20%;
			}
			.step {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 64px;
				height: 64px;
				padding: 16px;
				border-radius: 50%;
				background-color: #f1f1f1;
				color: #fff;
				font-size: 20px;
				margin-bottom: 10px;
			}
			.step-title {
				font-size: 14px;
				text-align: center;
			}
			.tracking-step.active .step {
				background-color: #ff6f61;
			}
			.tracking-step.active .step-title {
				color: #fff;
			}
			
			.tracking-order::before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 2px;
    background-color: #ff6f61;
    z-index: 0;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    position: relative;
}
/* Keyframes for pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    background-color: #ff6f61;
    }
    50% {
        transform: scale(1.1);
    background-color: rgba(255,111,97,0.8);
    }
    100% {
        transform: scale(1);
    background-color: #ff6f61;
    }
}
.tracking-step.passed .step {
    background-color: #ceffce;
    border: 1px solid #3276322e;
}
/* Update styles for active step */
.tracking-step.active .step {
    background-color: #01bd04;
    animation: pulse 2s infinite; /* Apply the pulse animation */
}

.tracking-step.active .step-title {
    color: #ff6f61;
}
.tracking-message {
    background-color: rgba(69, 220, 246, 0.76);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: bold;
    font-family: IRANSansXFaNum;
	}
	.tracking-message-error {
    background-color: rgb(247 0 82 / 76%);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: bold;
    font-family: IRANSansXFaNum;
	}
	.tracking-post{
		background-color: rgba(240,246,69,0.76);
	padding: 20px;
	border-radius: 5px;
	margin-top: 20px;
	font-size: 16px;
	color: #000;
	font-weight: bold;
	font-family: IRANSansXFaNum;
	}
	/* loading rotate animatopn */
	@keyframes rotate {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(-360deg);
		}
	}
	#loading_wrapper img {
		animation: rotate 3s linear infinite;
		width: 50px;
		height: 50px;
		margin-left: 6px;
	}