/* Tracking order css */
.tracking-order h2{
	text-align: center;
}
.tracking-nav .num-btn{
	background: transparent!important;
	opacity: 0.5
}
.tracking-nav .active-btn {
	opacity: 1;
	border-bottom: 1px solid #094e72; }
.tracking-form {
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 50px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

.tracking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tracking-form input[type="text"] {
    width: 100%;
		max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.tracking-form input[type=email]{
	width: 100%;
	max-width: 500px;
}
.tracking-form input[type="submit"] {
    padding: 10px 20px;
		margin-top:20px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
		width: 100%;
		max-width: 500px;
}
.tracking-form input[type="submit"]:hover {
    background-color: #005177;
}
.tracking-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tracking-header h3 {
    margin-bottom: 10px;
	  color: #0c0c0c;
    font-size: 20px;
		font-weight: 600;
		text-align: center;
}
.tracking-header h4 {
    margin-bottom: 10px;
	  color: #0c0c0c;
    font-size: 17px;
		font-weight: 600;
		text-align: center;
}
.tracking-checkpoints h4 {
    margin-bottom: 10px;
		margin-top: 20px;
	  color: #0c0c0c;
    font-size: 17px;
		font-weight: 600;
		padding: 0 25px;
}
.tracking-header p {
    margin: 5px 0;
    font-size: 16px;
    color: #0c0c0c;
		text-align: center;
}
.tracking-checkpoints ul {
    list-style-type: none;
    padding-left: 0;
}

/* .tracking-checkpoints li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 4px;
} */
.checkpoint-message {
    color: #333;
}
.tracking-error {
    color: red;
}
.tracking-no-info {
    color: #666;
}
.tracking-header{
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
	border-bottom: 1px solid #ccc;
}
.traking-number{
	display: flex;
}
.checkpoints{
	position: relative;
	padding: 15px 25px;
}
.checkpoint__icon{
	position: absolute;
    left: 0px;
    width: 13px;
    height: 13px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
    transform: translateY(3px);
}
.checkpoints::after{
	position: absolute;
    display: block;
    width: 1px;
    height: calc(100% - 0rem);
    top: 21px;
    bottom: 0px;
    left: 6px;
    content: '';
    background-color: #f0f1f2;
    z-index: 1;
}
.checkpoints:last-of-type:after {
    height: 0rem;
    bottom: 20px;
}
.delivery-bar{
	padding: 15px 25px;
	position: relative;
}
.delivery-bar .meter{	
	height: 12px;
	width: 100%;
	position: relative;
	background: #f0f1f2;
	border-radius: 25px;
	overflow: hidden;
}
.delivery-bar .meter>span{
	display: block;
	height: 100%;
	border-radius: 25px;
	position: relative;
	    width: 100%;
    background-color: rgb(76, 187, 135);
    opacity: 0.6;
}
.bar-dot{
	position: absolute;
    left: calc(100% - 38px);
    width: .75rem;
    height: .75rem;
    z-index: 9;
    top: 15px;
}
.rounded-full{
	position: relative;
	border-radius: 9999px;
	background-color: rgb(76, 187, 135);
	width: .75rem;
	height: .75rem;
}
.comman-text{
	font-weight: 500;
	font-size: 14px;
	--tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.extra-text{
	padding: 8px 25px;
}
@media only screen  and (max-width: 768px)  {
	.tracking-header{
		display : block;
		text-align : center;
	}
	.traking-number{
		display: block;
		margin-bottom: 20px;
	}
	.tracking-header .traking-number img{
		margin: 5px auto;
	}
}