/* Service Form Styles */
:root {
    --secondary-color: #e9af3d;
    --secondary-hover: #d99c1e;
    --text-color: #333;
    --light-bg: #f9f7f1;
    --white: #ffffff;
    --error-color: #ff4444;
    --border-color: #e0e0e0;
    --container-width: 1200px;
    --container-padding: 20px;
}

/* Container and Layout Styles */
.main-content-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-light);
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Grid Layout */
/* .main-step-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
    width: 100%;
} */

.left-step-container {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Grid */
@media (max-width: 767px) {
    .main-step-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .left-step-container {
        width: 100%;
        padding: 20px;
    }
}

/* Service Form Styles */
.continue_to_checkout.first {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--secondary-hover) 100%
    );
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.4;
    padding: 14px 30px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(233, 175, 61, 0.2);
}

.steps-main .steps-content {
    background: white;
    padding: 0;
}

/* Header Styles */
.step-header {
    background: var(--light-bg);
    margin: 0;
    padding: 35px 45px 50px 45px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 175, 61, 0.2);
    margin-bottom: 20px;
}
.border_bottom {
    border-bottom: 4px solid var(--secondary-color);
}

/* Frame Layout */
.frame {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
}

.frame-col {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
}

/* Part Block Component */
.part-block-component {
    /* background:  #f9f7f1; */
    padding: 22px;
    border-radius: 15px;
    margin-bottom: 30px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
    /* border: 1px solid var(--border-color); */
}

/* .part-block-component:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 38, 71, 0.12);
    border-color: var(--secondary-color);
} */

/* Header Components */
.pb-header {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    padding-bottom: 10px;
    border-bottom: 2px solid  #e9af3d
}

.pb-header img {
    width: 18px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pb-header i {
    font-size: 26px;
    margin-right: 15px;
    color: var(--text-dark);
}

.pb-header strong {
    font-size: 1.3em;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Tooltip Styles */
.pb-header .tooltip {
    position: relative;
    display: flex;
    margin-left: 10px;
    cursor: pointer;
}

.pb-header .tooltip:after {
    content: "i";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    /* font-style: italic; */
    font-weight: 700;
}

.pb-header .tooltip .slide {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px 15px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pb-header .tooltip .slide::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.pb-header .tooltip:hover .slide {
    visibility: visible;
    opacity: 1;
}

/* Form Grid */
.small-input-grid {
    margin-top: 13px;
    /* margin-top: 25px; */
}

.row {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.item {
    flex: 1;
    min-width: 220px;
}

/* Name fields row - responsive handling */
.row.name-fields-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.row.name-fields-row .item.name-field-item {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 150px;
}

/* Address fields: city, state, zip in 3 columns */
.row.address-city-state-zip-row .item.col-1-3 {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 0;
}

.item label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0.3px;
}

/* Form Inputs */
/* input[type="text"],
input[type="email"],
input[type="phone"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.05em;
    transition: all 0.3s ease;
    color: var(--text-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(233, 175, 61, 0.1);
    outline: none;
} */

/* Select Dropdown */
/* .custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.05em;
    appearance: none;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.763L10.825 4z'/%3E%3C/svg%3E") no-repeat right 18px center;
    transition: all 0.3s ease;
    color: var(--text-color);
} */

.custom-select select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(233, 175, 61, 0.1);
    outline: none;
}

/* Buttons */
.btn.next {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--secondary-hover) 100%
    );
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(233, 175, 61, 0.2);
}

.btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 175, 61, 0.3);
}

.btn.next:active {
    transform: translateY(0);
}

/* Error States */
.error {
    border-color: var(--error-color) !important;
    color: var(--error-color) !important;
}
.county_red_message_fee{
    color: var(--error-color);
    font-size: 0.9em;
    margin-top: 8px;
    font-weight: 500;
}

.error-message {
    color: var(--error-color);
    font-size: 0.9em;
    margin-top: 8px;
    font-weight: 500;
}

/* Skip Link */

.skip-contact-information:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-header {
        padding: 25px 20px 35px 20px;
    }

    .frame {
        flex-direction: column;
    }

    .main-step-container {
        flex-direction: column;
        gap: 20px;
    }
    /*
    .left-step-container {
        padding-right: 0;
    } */

    .row {
        flex-direction: column;
        gap: 15px;
    }

    /* Name fields on mobile - stack vertically */
    .row.name-fields-row {
        flex-direction: column;
        gap: 12px;
    }

    .row.name-fields-row .item.name-field-item {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
    }

    /* Address City/State/Zip row – stack vertically on mobile */
    .row.address-city-state-zip-row {
        flex-direction: column;
        gap: 12px;
    }

    .row.address-city-state-zip-row .item.col-1-3 {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .item {
        width: 100%;
    }

    .continue_to_checkout.first {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .part-block-component {
        padding: 20px;
    }

    .btn.next {
        width: 100%;
        text-align: center;
    }

    .btn-add, .btn-remove {
        padding: 8px 0;
    }

    .additional_question {
        padding: 15px;
    }
}

/* Service Check Mark */
.service-check-mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("/images/service-check-mark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.check-block-component {
    margin-bottom: 10px;
}

.check-block-component .cb-heading {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
}

.check-block-component .label {
    flex: 1;
}

/* Global link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Specific styling for links that should have underline */
a.underline {
    text-decoration: underline !;
}

#selected_service_name {
    font-size: 45px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--primary);
}

.additional-services-col-custom .right-box h1::after {
    border-bottom: 3px solid #e9af3d;
    content: '';
    display: block;
    margin-left: 25%;
    width: 50%;
    margin-top: 5px;
}

#selected_state {
    font-size: 45px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--primary);
}
#total_order_price {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--primary);
}

#order_total_price {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--primary);
}

.font_size-22 {
    font-size: 22px;
}

.font_size-24 {
    font-size: 24px;
}

/* Field description text above radio/checkbox groups */
.field-description {
    margin-bottom: 10px;
}

/* Service Type Radio Buttons Styling */
.radio-group-component {
    margin-bottom: 20px;
}

.radio-group-component label {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

/* Make <br> act as a flex line break so the price badge wraps below text */
.radio-group-component label br {
    flex-basis: 100%;
    height: 0;
}

.radio-group-component input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-group-component .fake-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #e9af3d;
    border-radius: 50%;
}

.radio-group-component input[type="radio"]:checked ~ .fake-radio {
    border: 2px solid #e9af3d;
}

.radio-group-component input[type="radio"]:checked ~ .fake-radio:after {
    content: "";
    position: absolute;
    display: block;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e9af3d;
}

.radio-group-component label p {
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
}

/* Radio option expanded detail panel (shown when selected) */
.show_if_radio_checked {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    background: #faf6ed;
    border-left: 3px solid #e9af3d;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a4a4a;
}

/* Highlighted option title (e.g. "Albany package") */
.yellow-line-option {
    display: inline-block;
    border-bottom: 2px solid #e9af3d;
    padding-bottom: 1px;
    line-height: 1.3;
}

/* Descriptive note inside radio options */
.question-note {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 6px 0 4px;
}

/* Price tag inside a radio label (e.g. "$99 - Annual Fee") */
.radio-group-component label > .mark {
    display: inline-block;
    color: #2b355a;
    font-size: 14px;
    font-weight: 700;
    background: #fdf6e3;
    border: 1px solid #e9af3d;
    border-radius: 6px;
    padding: 2px 10px;
    margin: 0 6px 0 0;
    line-height: 1.4;
    white-space: nowrap;
    align-self: baseline;
}

/* Price highlight inside expanded detail panel (e.g. "Registered Agent Service - Free") */
.show_if_radio_checked .mark {
    display: block;
    color: #2b355a;
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
    background: none;
    padding: 0;
}

/* Bullet list inside radio option details */
.question-list {
    margin: 8px 0 4px;
    padding-left: 20px;
    list-style: disc;
}

.question-list-item {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 4px;
}

/* Bold title inside radio label (e.g. "I do not wish to list a Registered Agent.") */
.lig-title {
    font-weight: 600;
    color: #2b355a;
}

/* Service Type Item in Order Summary */
.order-summery-ul li{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.order-summery-ul li:last-child {
    border-bottom: none !important;
}

.order-summery-ul li .service-check-mark-with-box {
    margin-top: 3px;
    margin-right: 15px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    position: relative;
    border: 2px solid var(--primary);
    background: #fff;
    border-radius: 2px;
}

.order-summery-ul li .service-check-mark-with-box::before {
    opacity: 1;
    top: -3px;
    left: 1px;
    position: absolute;
    width: 21px;
    height: 9px;
    border: 2px solid transparent;
    border-color: var(--primary) var(--primary) transparent transparent;
    content: "";
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(135deg);
}

.order-summery-ul li span {
     color: var(--text-dark);
}

.order-summery-ul li .last-child {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    margin-left: 10px;
}

.order-summery-ul li.with-discount {
    position: relative;
    padding-bottom: 10px;
}

.order-summery-ul li.with-discount span.discount-note {
    color: var(--primary);
    font-size: 14px;
    position: absolute;
    top: 25px;
    right: 30px;
}

/* li[data-type="base_service"] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

li[data-type="base_service"] .service-check-mark-with-box {
    margin-top: 3px;
    margin-right: 15px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #e9af3d;
    background: #fff;
    border-radius: 2px;
}

li[data-type="base_service"] .service-check-mark-with-box::before {
    opacity: 1;
    top: -3px;
    left: 1px;
    position: absolute;
    width: 21px;
    height: 9px;
    border: 1px solid transparent;
    border-color: #e9af3d #e9af3d transparent transparent;
    content: "";
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(135deg);
}

li[data-type="base_service"] span:not(.last-child) {
    font-size: 18px;
    font-weight: 400;
}

li[data-type="base_service"] .last-child {
    color: #e9af3d;
    font-weight: 400;
} */

/* li[data-type="additional_services"] .service-check-mark-with-box {
    margin-top: 3px;
    margin-right: 15px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #e9af3d;
    background: #fff;
    border-radius: 2px;
}

li[data-type="additional_services"] .service-check-mark-with-box::before {
    opacity: 1;
    top: -3px;
    left: 1px;
    position: absolute;
    width: 21px;
    height: 9px;
    border: 1px solid transparent;
    border-color: #e9af3d #e9af3d transparent transparent;
    content: "";
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(135deg);
}

li[data-type="additional_services"] span:not(.last-child) {
    font-size: 18px;
    font-weight: 400;
}

li[data-type="additional_services"] .last-child {
    color: #e9af3d;
    font-weight: 400;
} */

/* li[data-type="expediting"] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

li[data-type="expediting"] .service-check-mark-with-box {
    margin-top: 3px;
    margin-right: 15px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #e9af3d;
    background: #fff;
    border-radius: 2px;
}

li[data-type="expediting"] .service-check-mark-with-box::before {
    opacity: 1;
    top: -3px;
    left: 1px;
    position: absolute;
    width: 21px;
    height: 9px;
    border: 1px solid transparent;
    border-color: #e9af3d #e9af3d transparent transparent;
    content: "";
    -webkit-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    transform: rotate(135deg);
}

li[data-type="expediting"] span:not(.last-child) {
    font-size: 18px;
    font-weight: 400;
}

li[data-type="expediting"] .last-child {
    color: #e9af3d;
    font-weight: 400;
} */

/* Law Text Styling */
.law-text {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #f9f7f1;
    border-left: 3px solid #e9af3d;
    font-size: 14px;
    line-height: 1.5;
}

.law-text a {
    color: #e9af3d;
    text-decoration: underline;
}

.law-text a:hover {
    color: #d19b2c;
}

/* Responsive adjustments */
@media (max-width: 767px) {

    #selected_service_name {
        font-size: 26px;
    }

    #selected_state {
        font-size: 26px;
    }

    #order_total_price {
        font-size: 26px;
    }

    .radio-group-component label {
        padding-left: 25px;
    }

    .radio-group-component .fake-radio {
        height: 18px;
        width: 18px;
    }

    .radio-group-component input[type="radio"]:checked ~ .fake-radio:after {
        top: 2px;
        left: 2px;
        width: 9px;
        height: 9px;
    }

    .radio-group-component {
        margin-bottom: 14px;
    }

    .show_if_radio_checked {
        padding: 10px 12px;
        font-size: 13px;
    }

    .yellow-line-option {
        font-size: 16px !important;
    }

    .question-note {
        font-size: 13px;
    }

    .radio-group-component label > .mark {
        font-size: 13px;
        padding: 2px 8px;
    }

    .show_if_radio_checked .mark {
        font-size: 14px;
    }

    .question-list-item {
        font-size: 12px;
    }
}

/* .small-input-grid .ssn .sep {
    background:
  #000;
    font-size: 0;
    height: 2px;
    margin:
  26px 10px 0;
    width: 8px;
  } */

/* Additional Entity Button Styles */
.btn-add {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add.invert {
    color: var(--secondary-color);
}

.btn-add .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #edb33e;
    border-radius: 50%;
    margin-right: 10px;
}

.btn-add .icon-circle i {
    color: white;
    font-size: 12px;
}

.btn-add:hover {
    color: var(--secondary-hover);
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    color: #ff4444;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-remove svg {
    margin-right: 5px;
}

.btn-remove:hover {
    color: #cc0000;
    text-decoration: underline;
}
.btn-remove-saved-section {
    display: inline-flex;
    align-items: center;
    color: #ff4444;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-remove-saved-section svg {
    margin-right: 5px;
}

.btn-remove-saved-section:hover {
    color: #cc0000;
    text-decoration: underline;
}

.additional_question {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.additional_question .sub-section-title {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.lig-yellow {
    margin: 0 0 5px;
    color: #e9af3d;
    font-size: 20px;
    font-weight: 500;
}

.title-div {
    background-color: #e9af3d;
    padding-inline: 5px;
    width: fit-content;
}

.back-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #e9af3d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 5px;
}
@keyframes spin {
    to {transform: rotate(360deg);}
}
.back-button.loading .spinner {
    display: inline-block;
}

        .sticky-footer-buttons {
            position: sticky;
            bottom: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            border-top: 1px solid #e5e7eb;
            border-radius: 15px;
            z-index: 100;
            display: block !important;
            margin-top: 20px;
        }

        .sticky-footer-buttons .container {
            max-width: 100%;
        }

        .sticky-footer-buttons .buttons-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sticky-footer-buttons .left-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sticky-footer-buttons .continue_to_checkout.first {
            margin-left: 0;
        }

        /* Add padding to the main content to prevent overlap with sticky footer */
        .main-content-wrapper {
            padding-bottom: 100px;
        }

        /* Mobile: footer is non-sticky; buttons stack as 3 rows */
        @media (max-width: 640px) {
            .sticky-footer-buttons {
                position: relative;
                padding: 12px 0;
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }

            .sticky-footer-buttons .buttons-wrapper {
                flex-direction: column;
                gap: 0.75rem;
            }

            .sticky-footer-buttons .left-buttons {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
            }

            .sticky-footer-buttons .left-buttons .back-button,
            .sticky-footer-buttons .left-buttons .save-as-draft-btn {
                width: 100%;
                justify-content: center;
            }

            .sticky-footer-buttons .continue_to_checkout {
                width: 100%;
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                justify-content: center;
            }

            .main-content-wrapper {
                padding-bottom: 24px;
            }
        }
