.woocommerce-order > *:not(.woocommerce-breadcrumb) {
    display: none;
}
.woocommerce-order > .thank-you {
    display: flex;
    min-height: calc(100dvh - 106px);
}
.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;
    }
}
