/********Order Print Form*****/
.order-details-font {
	text-align: center;
	font-size: 30px;
	/* Reduce font size */
	font-weight: unset;
}

.order-footer {
	text-align: center;
	font-family: Georgia, serif;
	/* Reduce font size */
	font-weight: unset;
}

.order-details-container {
	height: 100px;
	/* Reduce container height */
	background-color: antiquewhite;
	display: flex;
	align-items: center;
}

.bottom-page {
	position: absolute;
	bottom: 80px;

}

.order-details-footer {
	height: 75px;
	/* Reduce footer height */
	background-color: antiquewhite;
	display: flex;
	align-items: center;
}

.order-details, .payment-details {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	/* Reduce margin */
	line-height: 1.2;
	/* Reduce line height */
}

.order-details p, .payment-details p {
	color: #333;
	/* Dark gray text */
	font-size: 12px;
	/* Reduce font size */
	line-height: 18px;
}

.terms-details p {
	color: #333;
	/* Dark gray text */
	font-size: 10px;
	/* Reduce font size */
	line-height: 12px;
}


.order-container {
	font-family: sans-serif;
	line-height: 1.2;

	/* Reduce line height */
}

.order-bottom p {
	color: #333;
	/* Dark gray text */
	font-size: 16px;
	/* Reduce font size */
	padding-right: 8px;
	/* Reduce padding */
}

.table-order-invoice {
	width: 100%;
	height: auto;
	/* Adjust to fit content */
	border-collapse: collapse;
	/* Ensure no extra space between cells */
}

.table-order-invoice th, .table-order-invoice td {
	border-color: transparent;
	height: 30px;
	/* Reduce row height */
	text-align: center;
	font-size: 12px;
	/* Reduce font size */
}


.table-order-invoice th {
	background-color: antiquewhite;
}

@media print {

	.pdf-footer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		text-align: center;
		background: #fff;
		box-shadow: 0 -2px 5px rgba(0, 0, 0, 0);
		font-size: 12px;
		z-index: 1000;
	}

	.pdf-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}
	.pdf-front {

		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}

	.container {
		page-break-before: always;
		page-break-inside: avoid;
	}

    .content-data{

       margin-top: 7rem !important;
    }

.page-break {
		page-break-before: always;
		page-break-inside: avoid;
	}

}
	

