/* ===== SECTION: Thank You Page - Start ===== */
.thank-you-page {
	background: var(--cream);
	color: var(--brown);
}
.thank-you-section {
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--header-height));
	padding: 60px 0;
}

.thank-you-section .one-column {
	text-align: center;
	gap: 20px;
}

.thank-you-section .icon-element {
	margin-bottom: 10px;
}

.thank-you-section .h1 {
	color: var(--brown);
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.thank-you-section .icon-element img {
	min-width: 60px;
	width: 60px;
	height: 60px;
	filter: brightness(0);
}

.thank-you-section .thank-you-description {
	color: var(--brown);
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Order Number Block - Start */
.order-number-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin: 20px auto;
	padding: 25px 40px;
	background: var(--light-gray);
	border-radius: var(--radius-medium);
	max-width: fit-content;
}

.order-number-label {
	font-size: 14px;
	line-height: 17px;
	color: var(--dark-gray);
	margin: 0;
}

.order-number-value {
	font-family: var(--font-family-1);
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
	color: var(--black);
	margin: 0;
}
/* Order Number Block - End */

.thank-you-section .items-group {
	margin-top: 20px;
	justify-content: center;
}

@media (max-width: 1279px) {
	.thank-you-section {
		padding: 40px 0;
	}

	.thank-you-section .one-column {
		gap: 15px;
	}

	.thank-you-section .items-group .btn {
		width: 100%;
	}

	.order-number-block {
		padding: 20px 30px;
		margin: 15px auto;
	}

	.order-number-value {
		font-size: 20px;
		line-height: 24px;
	}
}

/* Woocommerce Order - Start */
.thank-you-section-woo {
	padding-bottom: 60px;
}
.order-info-group .product-item .custom-quantity-input {
	border: none!important;
}
.order-info-group .product-item .custom-quantity-input .quantity-display {
	width: 18px;
}
.thank-you-section-woo .items-group .btn {
	padding: 0 35px;
	flex-grow: 1;
}
.thank-you-section-woo .thank-you-description {
	max-width: 450px;
}
.thank-you-section-woo .order-info-head {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}
.thank-you-section-woo .order-info-head .order-number-value {
	font-family: var(--font-family-2);
	font-weight: 400;
	color: #5E5E5E;
	text-decoration: underline;
}
.thank-you-section-woo .cart-all-items {
	display: flex;
	flex-direction: column;
	overflow: auto;
	max-height: 200px;
	margin-top: 20px;
}
.thank-you-section-woo .order-total-row {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}
.thank-you-section-woo .order-total-row .order-total-value {
	font-size: 18px;
}
@media (max-width: 1279px) {
	.thank-you-section-woo .product-item__quantity {
		margin-left: 0;
	}
	.thank-you-section-woo .product-item__price {
		margin-bottom: 0;
	}
	.thank-you-section-woo .product-item__total {
		height: fit-content;
	}
}
/* Woocommerce Order - End */