.hexo-order-tracking {
	width: 100%;
}

.hexo-order-tracking > .title {
	font-size: 24px;
	text-align: center;
}

.hexo-order-tracking .error {
	font-size: 18px;
	text-align: center;
	color: red;
	background-color: #ff000024;
	border-radius: 5px;
	padding: 20px;
}

.hexo-order-tracking form {
	width: 100%;
}

.hexo-order-tracking form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hexo-order-tracking form .id {
	width: 100%;
	text-align: right;
	padding-right: 10px;
	border-radius: 5px;
	color: black;
}

.hexo-order-tracking form .id::-webkit-outer-spin-button,
.hexo-order-tracking form .id::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hexo-order-tracking button {
	background-color: var(--hot-primary-color);
	color: white;
}

.hexo-order-tracking form button {
	width: 100%;
	border-radius: 5px;
}

.hexo-order-tracking .result {
	margin-top: 10px;
} 

.hexo-order-tracking .result .order {
	padding: 10px;
	border-radius: 5px;
	background-color: #f5f6fa;

}

.hexo-order-tracking .result .order .order-inner {
	padding: 40px;
	border-radius: 5px;
	background: #ffffff;
	color: black;
}

.hexo-order-tracking .result .order .order-inner h3 {
	font-size: 22px;
}

.hexo-order-tracking .result .order .order-inner .order-info {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.hexo-order-tracking .result .order .order-inner .divider {
	width: 100%;
	border-bottom: 2px dashed #eee;
	margin-top: 20px;
	margin-bottom: 20px;
}

.hexo-order-tracking .result .order .order-inner .order-id strong {
	border-bottom: 2px dashed var(--hot-primary-color);
	color: var(--hot-primary-color);
}

.hexo-order-tracking .result .order .order-inner .progress {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: warp;
	margin-top: 25px;
}

.hexo-order-tracking .result .order .order-inner .progress .connector {
	width: 50%;
}

.hexo-order-tracking .result .order .order-inner .progress .connector {
	border-color: #ced2e3;
	position: relative;

    border-bottom: 2px dashed #ced2e3;
    margin: auto 20px;
}

.hexo-order-tracking .result .order .order-inner .progress .connector:before,
.hexo-order-tracking .result .order .order-inner .progress .connector:after{
	border-color: #ced2e3;
	content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border: 2px solid #ced2e3;
    border-radius: 50px;
    right: -10px;
    position: absolute;
    top: -2px;
}

.hexo-order-tracking .result .order .order-inner .progress .connector:after{
    left: -10px;
    right: auto;
}

.hexo-order-tracking .result .order .order-inner .progress .title {
	text-align: center;
	margin: 0;
}

.hexo-order-tracking .result .order .order-inner .progress .creation-date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hexo-order-tracking .result .order .order-inner .progress .creation-date .day {
	color: var(--hot-primary-color);	
	font-weight: 700;
	font-size: 20px;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status {
	padding: 10px;
	border-radius: 5px;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.pending {
    background-color: #ff000024;
    color: #ff0000;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.processing {
    background-color: #ffa50024;
    color: #ffa500;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.on-hold {
    background-color: #80008024;
    color: #800080;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.completed {
    background-color: #00800024;
    color: green;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.cancelled {
    background-color: #ff000024;
    color: red;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.refunded {
    background-color: #80808024;
    color: #808080;
}

.hexo-order-tracking .result .order .order-inner .progress .current-status.failed {
    background-color: #ff000024;
    color: red;
}

.hexo-order-tracking .result .order .order-inner .shipping-info h4 {
	font-size: 14px;
	background-color: var(--hot-primary-color);
	color: white;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 5px;
}

.hexo-order-tracking .result .order .order-inner .shipping-info a.button {
	width: 100%;
	border-radius: 5px;
}

.hexo-order-tracking .result .order .order-inner .products {
	display: flex;
	flex-direction: column;
}

.hexo-order-tracking .result .order .order-inner .products .product-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
	padding-bottom: 15px;
	gap: 10px;
}

.hexo-order-tracking .result .order .order-inner .products .product-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.hexo-order-tracking .result .order .order-inner .products .product-item .product-image {
	width: 80px;
}

.hexo-order-tracking .result .order .order-inner .products .product-item h4 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
}

.hexo-order-tracking .result .order .order-inner .products .product-item .product-meta {
    display: flex;
    flex-direction: column;
}

.hexo-order-tracking .result .order .order-inner .products .product-item .product-total,
.hexo-order-tracking .result .order .order-inner .products .product-item .product-total .amount {
    font-weight: 800;
}

@media (max-width: 768px) {
	.hexo-order-tracking > .title {
		font-size: 20px;
	}
	
	.hexo-order-tracking .result .order .order-inner {
		padding: 10px;
	}

	.hexo-order-tracking .result .order .order-inner .progress {
		flex-direction: column;
		gap: 10px;
	}

	.hexo-order-tracking .result .order .order-inner .progress > div {
		width: 90%;
		text-align: center;
	}

	.hexo-order-tracking .result .order .order-inner .progress .connector {
		width: 83%;
	}
}