.checkout-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-white-300);
    text-align: center;
    line-height: 36px;
    font-weight: bold;
}

.checkout-step.active .step-number {
    background: var(--bs-black);
    color: var(--bs-white);
}

.checkout-step::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 40px;
    width: 2px;
    height: 100%;
    background: var(--bs-white-300)d;
}

.step-body {
    background: var(--bs-gray-100);
    padding: 25px;
    border-radius: 8px;
    display: none;
}

.checkout-step.active .step-body {
    display: block;
    font-size: 12px;
}

.step-header {
    cursor: pointer;
}

/*------------------------------------
    Checkout Form
------------------------------------*/
.checkout-steps .form-group input {
    padding: 5px;
    background: var(--bs-gray-300);
}

.checkout-steps .form-row {
    margin-bottom: 0px !important;
}

@media (min-width: 768px) {

    .checkout-steps #billing_address_2_field,
    .shipping_address #shipping_address_2_field {
        margin-top: 0px;
    }
}

.shipping_address #shipping_country {
    background-color: var(--bs-gray-300);
}

/*------------------------------------
    Checkout Summary
------------------------------------*/
.woocommerce-checkout-review-order-table .product-name {
    width: 70%;
}

/*------------------------------------
    Checkout Thank You Page
------------------------------------*/
.thankyou-page {
    background: var(--bs-blue-50);
    min-height: 100vh;

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.thankyou-hero {
    background: linear-gradient(180deg, #eaf2ff 0%, #f4f8ff 100%);
}

.thankyou-card {
    background: var(--bs-white);
    border-radius: 20px;
    border: 0;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.thankyou-fail-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-red-100);
    color: var(--bs-red-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.thankyou-btn {
    font-weight: 600;
    transition: 0.3s ease;
}

.thankyou-btn-primary {
    background: var(--bs-blue-600);
    border: 1px solid var(--bs-blue-600);
    color: var(--bs-white);
}

.thankyou-btn-primary:hover {
    background: var(--bs-blue-800);
    border-color: var(--bs-blue-800);
    color: var(--bs-white);
}

.thankyou-btn-outline-primary {
    border: 1px solid var(--bs-blue-600);
    color: var(--bs-blue-600);
    background: transparent;
}

.thankyou-btn-outline-primary:hover {
    background: var(--bs-blue-600);
    color: var(--bs-white);
}

.thankyou-text-primary {
    color: var(--bs-blue-600);
}

.thankyou-info-box {
    border: 1px solid var(--bs-blue-100);
    border-radius: 16px;
    background: var(--bs-white)
}

.thankyou-product-image {
    border-radius: 12px;
    border: 1px solid var(--bs-blue-100);
}

.thankyou-item-border {
    border-bottom: 1px solid var(--bs-blue-50);
}

.thankyou-total-border {
    border-top: 1px solid var(--bs-blue-100);
}

.thankyou-status-badge {
    background: var(--bs-green-100);
    color: var(--bs-green-800);
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 767px) {

    .thankyou-display-title {
        font-size: 2.2rem;
    }

}