.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}



/* time line */

.timeline {
    position: relative;
    margin: 0 auto;
    /* padding: 40px 0; */
    max-width: 700px;
}

/* Timeline item container */
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

/* Timeline marker - circle */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #2ecc71;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.timeline-marker:hover {
    transform: scale(1.2);
}

/* Vertical connecting line between timeline markers */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 25px;
    bottom: 0;
    width: 2px;
    background-color: #2ecc71;
    z-index: 0;
    transition: background-color 0.3s ease;
}

.timeline-item:last-child::before {
    bottom: auto;
    height: 0;
}

/* Timeline content box styling */
.timeline-content {
    position: relative;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease-in-out;
}

.timeline-content:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Title in the content box (status) */
.timeline-content h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content details (date, time, location) */
.timeline-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
}

.timeline-content p strong {
    color: #2c3e50;
}

/* Responsive design */
@media (max-width: 768px) {
    .timeline {
        padding: 20px 0;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-marker {
        width: 16px;
        height: 16px;
        left: 0;
    }

    .timeline-item::before {
        left: 7px;
        width: 1px;
    }

    .timeline-content {
        padding: 10px 15px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}


.tracking-status {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 30px;
    color: #333;
}

.status-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 25%;
    text-align: center;
}
@media(max-width:768px){
	.status-item{height:80px;}
}

.status-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
	z-index: 9;
}

.status-item span {
    font-size: 14px;
    color: #555;
}

/* Status Marker Colors */
.positive {
    background-color: #2ecc71; /* Green for current status */
    color: #fff;
}

.amber {
    background-color: #f39c12; /* Amber for completed statuses */
    color: #fff;
}

.danger {
    background-color: #e74c3c; /* Red for upcoming statuses */
    color: #fff;
}

/* Horizontal connecting line between statuses */
.status-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12.5%;
    right: 0;
    height: 4px;
    background-color: #ccc;
    z-index: 0;
    width: 75%;
}

.status-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: #3cbdfb; /* Default blue connecting line */
    z-index: 0;
}

/* Adjusting line styles for other items */
.status-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    z-index: 0;
}

/* Adjusting line styles for other items */
.status-item:first-child::before {
    left: 100%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.status-item:last-child::before {
    left: 0%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}


/* time line */
.v-hidden{
    visibility: hidden;
    height:0;
}
#result .alert button {
    position: absolute;
    right: 0;
    border: none;
    background: none;
    font-size: 2rem;
    top: 0 !important;
}
.delivery{
    margin-top:2rem;
}
p:empty{display: none;}
#loading-icon{margin:0 auto; clear: both; display: none;}
.all-orders td:nth-child(odd){
    background:#f3f3f3;
}
.swiper-slide h2{font-size:64px;}