// h2:not(.block-heading-wb),
#adminmenu,
#adminmenuback,
#wpadminbar {
    display: none !important;
}

#wpcontent,
#wpfooter {
    margin-left: 0 !important;
    padding: 0 !important;
}
.wp-toolbar {
    padding-top: 0 !important;
}

.main-block-wb .main-part-wrapper-wb {
    padding: 0;
}

#wpfooter {
    display: none !important;
}

#wpbody-content {
    padding: 0 !important;
}

#ui-datepicker-div {
    z-index: 999999999 !important;
}

// main styles
.mail-block-wb-wizard {
    position: fixed;
    top: 0;
    z-index: 9999999999999;
    width: 100vw;
    height: 100vh;

    * {
        font-family: 'Ubuntu', sans-serif !important;
        box-sizing: border-box;
    }

    .container-small-wb {
        max-width: 672px;
        width: 100%;
    }

    // INNER WRAPPER
    .content-main-wb {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        max-height: calc(100% - 112px);
        background-color: #f9fafb;
    }

    .main-part-wrapper-wb {
        height: 100vh;
        display: flex;
        flex-flow: column;
    }

    // HEADER
    .header-main-wb {
        height: 56px;
        border-bottom: 1px solid #e5e7eb;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 32px;
        margin: 0;
        position: relative;

        .header-title-wrapper {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .logo-main-wb {
            margin: 0;

            img {
                width: 32px;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
                object-fit: contain;
            }
        }

        .page-subtitle-wb {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #1f2937;
        }

        .page-title-current {
            font-weight: 400;
            font-size: 18px;
            line-height: 28px;
            letter-spacing: 0%;
            text-align: center;
            color: #374151;
            margin: 0px auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    // PROGRESS
    .progress-wrapper {
        height: 56px;
        background-color: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        padding: 12px 32px;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Progress Bar Container */
        .setup-steps-block-wb-container {
            width: 100%;
            padding: 20px 0;
            margin-bottom: 40px;
            background: #fff;
        }

        /* Progress Bar Steps */
        .setup-steps-block-wb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 116px;
            margin: 0;
            padding: 0;
            list-style: none;

            &::before,
            &::after {
                content: none;
            }
        }

        .setup-steps-block-wb li {
            width: 32px;
            height: 32px;
            min-width: 32px;
            min-height: 32px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #d1d5db;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #9ca3af;
            margin: 0;
            overflow: visible;

            &:not(:last-child)::after {
                content: '';
                width: 100px;
                height: 4px;
                background-color: #e5e7eb;
                position: absolute;
                top: 50%;
                left: calc(100% + 8px);
                transition: 0.3s all ease;
            }

            &.done::after {
                background-color: #14b8a9;
            }
        }

        .setup-steps-block-wb li.active {
            border-color: #14b8a9;
            color: #14b8a9;
            background: #fff;
        }

        .setup-steps-block-wb li.done {
            background-color: #14b8a9;
            border-color: #14b8a9;
            color: #fff;
            background-image: url(../../public//images/icon-complete-white.svg);
            background-repeat: no-repeat;
            background-position: center center;
        }
    }

    // NAVIGATION
    .navigation-wrapper {
        margin-top: auto;
        width: 100%;
        height: 75px;
        border-top: 1px solid #e5e7eb;
        background-color: #ffffff;
        max-width: unset;
        display: flex;
        align-items: center;
        justify-content: center;

        .buttons-block-wb {
            max-width: 960px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 0;
            padding: 0 16px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }
    }

    // BUTTONS
    .button-wbkb-wizard {
        text-decoration: none;
        border-radius: 6px;
        padding: 12px 24px;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        min-width: unset !important;
        border: 1px solid transparent;
        background-color: transparent;
        transition: 0.3s all ease;
        cursor: pointer;

        &:hover {
            text-decoration: none !important;
        }

        &.primary {
            background-color: #14b8a9;
            border-color: #14b8a9;
            color: #ffffff;

            &:hover {
                background-color: darken(#14b8a9, 10);
                border-color: darken(#14b8a9, 10);
            }
        }

        &.secondary {
            border-color: #e5e7eb;
            color: #4b5563;

            &:hover {
                border-color: darken(#e5e7eb, 10);
                background-color: lighten(#4b5563, 90);
                color: #4b5563 !important;
            }
        }

        &.tertiary {
            border-color: #df7237;
            background-color: #df7237;
            color: #ffffff;

            &:hover {
                background-color: darken(#df7237, 10);
            }
        }
    }

    // TABS
    .inner-wrapper-wb {
        &.plain-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-flow: column;
            height: 100%;
        }

        &:not(.plain-panel) {
        }
    }

    // typography
    h1 {
        font-weight: 600;
        font-size: 30px;
        line-height: 36px;
        letter-spacing: 0%;
        text-align: center;
        color: #111827;
        margin: 0;
    }

    h2 {
        font-weight: 600 !important;
        font-size: 24px !important;
        line-height: 32px !important;
        letter-spacing: 0% !important;
        color: #111827 !important;
    }

    h3 {
    }

    h4 {
    }

    p {
        font-weight: 300;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0%;
        color: #4b5563;
        margin: 0;
    }

    // FORM and PANELS
    .fields-wrapper-wb {
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        background-color: #ffffff;
        margin-top: 28px;
        width: 100%;
    }

    .block-heading-wb {
        text-align: left;
    }

    // WELCOME SCREEN
    .welcome-screen-wrapper-wb {
        .setup-welcome-wb {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-flow: column;

            h1 {
                margin-top: 40px;
            }

            p {
                margin-top: 25px;
            }
        }

        .wizard-welcome-buttons {
            margin-top: 32px;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
        }
    }

    .skip-link-wrapper-wb {
        margin-top: 15px;

        a {
            text-decoration: none;
            font-weight: 300;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            text-align: center;
            color: #6b7280;
        }
    }

    .setup-area-wb {
        position: relative;
        width: 100%;
        box-shadow: none;
        height: 100%;
        display: flex;
        flex-flow: column;
        padding: 0;
    }

    .welcome-logo-wb {
        margin-bottom: 40px;
    }

    .welcome-description-wb {
        font-size: 16px;
        line-height: 1.5;
        color: #50575e;
    }

    .welcome-actions-wb {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .launch-wizard-wb {
        min-width: 200px;
    }

    .skip-wizard-link-wb {
        color: #646970;
        text-decoration: none;
    }

    .skip-wizard-link-wb:hover {
        color: #135e96;
        text-decoration: underline;
    }

    /* General Information Fields Styles */
    .field-block-wb {
        margin-bottom: 22px;

        .label-wb {
            margin-bottom: 8px;

            label {
                font-weight: 400;
                font-size: 14px;
                line-height: 100%;
                letter-spacing: 0%;
                color: #374151;
            }
        }
    }

    .field-wrapper-wb {
        position: relative;
    }

    .field-wrapper-wb .wbk-input {
        transition: border-color 0.15s ease-in-out;
        outline: none;
        border-radius: 6px;
        border: 1px solid #d1d5db;
        padding: 8px 12px;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        color: #000000;
        width: 100%;

        &::placeholder {
            color: #adaebc;
        }

        &:focus {
            border-color: #14b8a9;
            outline: none;
            box-shadow: 0 0 0 1px #14b8a9;
        }
    }

    .field-wrapper-wb select.wbk-input {
        padding-right: 30px;
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M5 6l5 5 5-5 2 1-7 7-7-7 2-1z" fill="%23555D66"/></svg>');
        background-repeat: no-repeat;
        background-position: right 5px top 50%;
        background-size: 20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        max-width: unset;
    }

    .field-description-wb {
        font-family: Inter;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #6b7280;
        margin-top: 6.5px;
        display: block;
    }

    /* Two Fields Row Layout */
    .two-fields-row-wb {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .field-half-wb {
        flex: 1;
    }

    /* Price Field with Currency */
    .price-field-wrapper-wb {
        position: relative;
    }

    .price-field-wrapper-wb .currency-symbol {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #2c3338;
        font-size: 14px;
        pointer-events: none;
        z-index: 1;
    }

    .price-field-wrapper-wb .wbk-input {
        padding-left: 28px;
    }

    .wizard-toggle-row-wb {
        margin-top: 12px;
    }

    .wizard-toggle-input-wb {
        display: none;
    }

    .wizard-toggle-label-wb {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .wizard-toggle-track-wb {
        position: relative;
        width: 36px;
        min-width: 36px;
        height: 20px;
        border-radius: 50px;
        background-color: #8a9393;
        flex-shrink: 0;
        pointer-events: none;

        .wizard-toggle-handle-wb {
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s;
            top: 50%;
            left: 1px;
            transform: translateY(-50%);
        }
    }

    .wizard-toggle-row-wb .wizard-toggle-input-wb:checked ~ .wizard-toggle-label-wb .wizard-toggle-track-wb {
        background-color: #1f6763;
    }

    .wizard-toggle-row-wb .wizard-toggle-input-wb:checked ~ .wizard-toggle-label-wb .wizard-toggle-track-wb .wizard-toggle-handle-wb {
        transform: translate(18px, -50%);
    }

    .wizard-toggle-text-wb {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #374151;
    }

    /* Duration hours/mins (DurationField-style) */
    .duration-hms-wrapper-wb {
        position: relative;
    }

    .duration-hms-inputs-wb {
        display: flex;
        gap: 12px;
        align-items: stretch;
    }

    .duration-hms-group-wb {
        display: flex;
        align-items: center;
        flex: 1;
        background: #f9fafb;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        height: 50px;
        padding: 0 20px;
        min-width: 0;

        .duration-hms-value-wb {
            border: none;
            background: transparent;
            font-size: 16px;
            color: #212121;
            outline: none;
            padding: 0;
            margin: 0;
            flex: 0 0 auto;
            min-width: 30px;
            width: 50%;

            &::-webkit-inner-spin-button,
            &::-webkit-outer-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            &[type='number'] {
                -moz-appearance: textfield;
            }
        }

        .duration-hms-unit-wb {
            color: #8a9393;
            font-size: 16px;
            margin-left: auto;
            white-space: nowrap;
        }
    }

    .field-description-minmax-wb {
        display: block;
        margin-top: 6px;
    }

    .field-block-wb.two-fields-row-wb + .field-description-minmax-wb {
        margin-top: -24px;
    }

    /* Duration Field with Minutes (legacy) */
    .duration-field-wrapper-wb {
        position: relative;
    }

    .duration-field-wrapper-wb .minutes-label {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 1;
        font-weight: 300;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #6b7280;
    }

    .duration-field-wrapper-wb .wbk-input {
        padding-right: 70px;
    }

    /* Wizard Tabs */
    .wizard-tab-wb {
        display: none;
        height: 100%;
        overflow: auto;
        padding: 48px 24px;
    }

    .wizard-tab-wb.wizard-tab-active-wb {
        display: block;
    }

    .wbk_hidden {
        display: none !important;
    }

    /* Info Block */
    .info-block-wb {
        margin: 30px 0;
    }

    .info-message-wb {
        background-color: #e5f6fd;
        padding: 15px 20px;
        color: #2271b1;
        font-size: 14px;
        line-height: 1.5;
    }

    .wizard-business-hours-days-wb {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 16px;
    }

    .wizard-day-row-wb {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .wizard-day-header-wb {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .wizard-day-name-wb {
        font-size: 16px;
        font-weight: 400;
        color: #212121;
    }

    .wizard-day-actions-wb {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: auto;
    }

    .wizard-add-slot-wb {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        color: #1f6763;
        font-size: 14px;
        cursor: pointer;
        padding: 0;
        text-decoration: none;

        &:hover {
            color: #155350;
        }
    }

    .wizard-apply-all-wb {
        background: none;
        border: none;
        color: #8a9393;
        font-size: 14px;
        cursor: pointer;
        padding: 0;
        text-decoration: none;

        &:hover {
            color: #212121;
        }
    }

    .wizard-day-slots-wb {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 4px;
    }

    .wizard-no-slots-wb {
        font-size: 14px;
        color: #8a9393;
        padding: 8px 0;
    }

    .wizard-slot-row-wb {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #e5e7eb;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;

        .wbk-input {
            min-width: 120px;
        }
    }

    .wizard-slot-sep-wb {
        font-size: 14px;
        color: #212121;
        margin: 0 4px;
    }

    .wizard-slot-remove-wb {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        margin-left: auto;
        font-size: 18px;
        line-height: 1;
        color: #6b7280;

        &:hover {
            opacity: 0.7;
            color: #374151;
        }
    }

    /* Plans Page Styles */
    .wbk_wizard_plans_page {
        &__heading {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-flow: column;
            gap: 12px;
            text-align: center;

            h2 {
                font-family: Inter;
                font-weight: 700;
                font-style: Bold;
                font-size: 30px;
                leading-trim: NONE;
                line-height: 36px;
                letter-spacing: 0%;
                text-align: center;
                color: #111827;
                margin: 0 !important;
            }

            p {
                font-family: Inter;
                font-weight: 400;
                font-style: Regular;
                font-size: 16px;
                leading-trim: NONE;
                line-height: 24px;
                letter-spacing: 0%;
                text-align: center;
                color: #4b5563;
            }
        }

        &__body {
            margin-top: 36px;
            display: flex;
            align-items: center;
            gap: 15px;
            max-width: 1136px;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;

            @media (max-width: 678px) {
                flex-flow: column;
            }
        }

        &__plan {
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 26px;
            min-height: 478px;
            display: flex;
            flex-flow: column;
            position: relative;

            &--popular {
                border-color: #14b8a9;
                min-height: 500px;
                padding: 28px;
                box-shadow: 0px 10px 15px 0px #0000001a;
                box-shadow: 0px 4px 6px 0px #0000001a;

                .wbk_wizard_plans_page__plan__button {
                    background-color: #14b8a9;
                    color: #ffffff;
                    transition:
                        background-color 0.3s,
                        color 0.3s,
                        border-color 0.3s;

                    &:hover {
                        background-color: #0e9482;
                        color: #ffffff;
                        border-color: #0e9482;
                    }
                }
            }

            &__ribbon {
                width: 114.26953125px;
                height: 25.200012207px;
                border-radius: 9999px;
                angle: 0 deg;
                opacity: 1;
                top: 0px;
                left: 50%;
                background: #14b8a9;
                font-family: Inter !important;
                font-weight: 600;
                font-style: Semi Bold !important;
                font-size: 12px;
                leading-trim: NONE;
                line-height: 100%;
                letter-spacing: 0%;
                text-align: center;
                color: #ffffff;
                align-items: center;
                justify-content: center;
                display: flex;
                position: absolute;
                transform: translate(-50%, -50%);
            }

            &__title {
                font-family: Inter;
                font-weight: 700;
                font-style: Bold;
                font-size: 20px;
                leading-trim: NONE;
                line-height: 28px;
                letter-spacing: 0%;
                color: #111827;
            }

            &__price {
                margin-top: 8px;
                font-family: Inter;
                font-weight: 700;
                font-style: Bold;
                font-size: 36px;
                leading-trim: NONE;
                line-height: 40px;
                letter-spacing: 0%;
                color: #111827;

                span {
                    font-family: Inter;
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 16px;
                    leading-trim: NONE;
                    line-height: 24px;
                    letter-spacing: 0%;
                    color: #6b7280;
                }
            }

            &__description {
                font-family: Inter;
                font-weight: 400;
                font-style: Regular;
                font-size: 14px;
                leading-trim: NONE;
                line-height: 20px;
                letter-spacing: 0%;
                color: #4b5563;
                margin-top: 12px;
            }

            &__features {
                display: flex;
                flex-flow: column;
                gap: 12px;

                li {
                    font-family: Inter;
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 14px;
                    leading-trim: NONE;
                    line-height: 20px;
                    letter-spacing: 0%;
                    color: #000000;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    &::before {
                        content: '';
                        display: flex;
                        width: 12.25px;
                        height: 20px;
                        background-image: url('data:image/svg+xml,<svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1386_206)"><path d="M11.9929 2.88208C12.3347 3.22388 12.3347 3.77895 11.9929 4.12075L4.99294 11.1208C4.65115 11.4625 4.09607 11.4625 3.75427 11.1208L0.254272 7.62075C-0.0875244 7.27896 -0.0875244 6.72388 0.254272 6.38208C0.596069 6.04028 1.15115 6.04028 1.49294 6.38208L4.37498 9.26138L10.757 2.88208C11.0988 2.54028 11.6539 2.54028 11.9957 2.88208H11.9929Z" fill="%2314B8A9"/></g><defs><clipPath id="clip0_1386_206"><path d="M0 0H12.25V14H0V0Z" fill="white"/></clipPath></defs></svg>');
                        background-repeat: no-repeat;
                        background-size: contain;
                        background-position: center center;
                    }
                }

                .wbk_wizard_plans_page__plan__feature--cons {
                    &::before {
                        background-image: url('data:image/svg+xml,<svg width="12" height="2" viewBox="0 0 12 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.375 0.875C11.375 1.35898 10.984 1.75 10.5 1.75H0.875C0.391016 1.75 0 1.35898 0 0.875C0 0.391016 0.391016 0 0.875 0H10.5C10.984 0 11.375 0.391016 11.375 0.875Z" fill="%239CA3AF"/></svg>');
                    }
                }
            }

            &__button {
                display: flex;
                padding: 16px;
                font-family: Inter;
                font-weight: 600;
                font-style: Semi Bold;
                font-size: 16px;
                leading-trim: NONE;
                line-height: 100%;
                letter-spacing: 0%;
                text-align: center !important;
                text-decoration: none;
                color: #14b8a9;
                border: 2px solid #14b8a9;
                transition: all 0.3s ease;
                margin-top: auto;
                cursor: pointer;
                text-align: center;
                border-radius: 8px;
                align-items: center;
                justify-content: center;

                &:hover {
                    background-color: #14b8a9;
                    color: #ffffff;
                    border-color: #14b8a9;
                }
            }
        }

        &__skip-button {
            font-family: Inter;
            font-weight: 500;
            font-style: Medium;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            text-decoration: underline;
            text-decoration-style: solid;
            text-decoration-offset: 0%;
            text-decoration-thickness: 0%;
            text-decoration-skip-ink: auto;
            color: #6b7280;
            margin-top: 40px;
            cursor: pointer;
            transition: 0.3s all ease;

            &:hover {
                color: #000000;
            }
        }
    }

    /* Date Range Styles */
    .date-ranges-container-wb {
        margin-top: 20px;
    }

    .date-range-row-wb {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .date-inputs-wb {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .date-inputs-wb input {
        flex: 1;
    }

    .date-separator {
        color: #646970;
        font-weight: 500;
    }

    .remove-date-range-wb {
        background: none;
        border: none;
        color: #d63638;
        font-size: 20px;
        cursor: pointer;
        padding: 0 5px;
        line-height: 1;
    }

    .remove-date-range-wb:hover {
        color: #b32d2e;
    }

    .add-date-range-wb {
        margin-top: 10px;
        background: #f0f0f1;
        border: 1px solid #2271b1;
        color: #2271b1;
        padding: 6px 12px;
        cursor: pointer;
        font-size: 13px;
    }

    .add-date-range-wb:hover {
        background: #f0f0f1;
        border-color: #0a4b78;
        color: #0a4b78;
    }

    /* Description text styles */
    .intro-text-wb {
        font-size: 14px;
        line-height: 1.5;
        color: #50575e;
        margin-bottom: 30px;
    }

    .description-text-wb {
        font-size: 14px;
        line-height: 1.5;
        color: #646970;
        margin-bottom: 15px;
    }

    .block-subheading-wb {
        font-size: 16px;
        font-weight: 500;
        color: #1d2327;
        margin-bottom: 10px;
    }

    .text-center-wb {
        text-align: center;
    }

    .welcome-logo-wb {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .how-to-link-wb {
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-decoration: underline;
        text-decoration-style: solid;
        text-decoration-offset: 0%;
        text-decoration-thickness: 0%;
        text-decoration-skip-ink: auto;
        color: #4b5563;
    }

    .how-to-link-wb:hover {
        color: #135e96;
        text-decoration: underline;
    }

    .copy-button-wb {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .copy-button-wb img {
        width: 20px;
        height: 20px;
    }

    .close-setup-wb {
        display: inline-flex;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    // SUCCESS SCREEN
    .wizard-success-icon-wrapper-wb {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        background-color: #f0fdfc;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;

        img {
            margin-bottom: 0;
        }
    }

    .wizard-panel-highlight-wb {
        background-color: #f0fdfc;
        padding: 24px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        gap: 16px;
        margin-top: 16px;
        width: 100%;

        .field-block-wb {
            width: 100%;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
        }

        .field-wrapper-wb {
            max-width: 400px;
            width: 100%;
        }

        .field-description-wb {
            margin-top: 14px;
        }
    }

    .wizard-success-top {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .wbk-input-shortcode {
        text-align: center;
    }

    .checkbox-custom-w input:checked ~ .checkmark-w {
        background-color: #14b8a9;
    }

    .wizard-success-container-wb {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
}
