main.woocommerce-order {
	overflow: hidden;	
}   
.woocommerce-order > *:not(.woocommerce-breadcrumb) {
	display: none;
}
.woocommerce-order > .thank-you {
	display: flex;
	min-height: calc(100dvh - 106px);
}
main.woocommerce-order:before {
    content: "";
    position: absolute;
    display: flex;
    width: 150vw;
    height: 150vh;
    background: url(/wp-content/themes/shop/img/background-gradient-1.svg);
    background-size: auto;
    background-position: 50% -20%;
}
.thank-you .container {
	display: flex;
	align-items: center;
	gap: 16px;
}
.thank-you .container .h2 {
	text-align: center;
}
.thank-you .container p {
	color: #a5a5a5;
	max-width: 520px;
	text-align: center;
}
.thank-you .container .btn-group {
	margin-top: 15px;
}
@media (max-width: 768px) {
	.thank-you {
		min-height: calc(100dvh - 50px);
	}
	.btn-group {
		gap: 15px;
		flex-direction: column;
	}
	.btn-group a {
		width: 100%;
		box-sizing: border-box;
	}
}
