.bulk-create-controls {
    padding: 16px 0 20px;
}

a.bulk-create-tab {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

a.bulk-create-tab:hover,
a.bulk-create-tab:focus {
    color: var(--bulk-create-accent-dark);
}

.bulk-create-input-note {
    margin: 6px 2px 0;
    color: var(--bulk-create-muted);
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
}

.bulk-create-page[data-slot-count="2"] .bulk-create-inputs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bulk-create-input-control {
    position: relative;
}

.bulk-create-input-control .bulk-create-text-input {
    padding-right: 58px;
}

.bulk-create-input-clear {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #81747a;
    cursor: pointer;
}

.bulk-create-input-clear:hover {
    background: #f5edf1;
    color: var(--bulk-create-accent-dark);
}

.bulk-create-input-clear:focus-visible {
    outline: 2px solid var(--bulk-create-accent);
    outline-offset: 2px;
}

.bulk-create-input-clear[hidden] {
    display: none;
}

.bulk-create-input-clear-icon {
    width: 20px;
    height: 20px;
}

.bulk-create-template-section {
    padding-top: 24px;
    scroll-margin-top: 20px;
}

.bulk-create-page-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bulk-create-template-heading {
    display: block;
    margin: 0 0 12px;
    color: #5f575f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: left;
}

.bulk-create-page[data-has-category-tabs] .bulk-create-template-heading,
.bulk-create-template-section .bulk-create-tabs-row + .bulk-create-template-heading {
    margin-top: 24px;
}

.bulk-create-template-section .bulk-create-tabs-row {
    margin-top: 20px;
    border-bottom: 1px solid #ebe6e9;
}

.bulk-create-parent-tabs {
    gap: 4px;
}

.bulk-create-parent-tabs .bulk-create-tab {
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
}

.bulk-create-parent-tabs .bulk-create-tab:hover,
.bulk-create-parent-tabs .bulk-create-tab:focus-visible {
    background: transparent;
    color: var(--bulk-create-accent-dark);
}

.bulk-create-parent-tabs .bulk-create-tab.is-active {
    border-bottom-color: var(--bulk-create-accent);
    background: transparent;
    color: var(--bulk-create-accent-dark);
}

.bulk-create-parent-tabs .bulk-create-tab:focus-visible {
    outline: 2px solid var(--bulk-create-accent);
    outline-offset: 2px;
}

.bulk-create-child-tabs-row {
    margin-top: 28px !important;
    border-bottom: 0 !important;
}

.bulk-create-child-tabs-row .bulk-create-tabs {
    gap: 10px;
}

.bulk-create-child-tabs-row .bulk-create-tab {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #ded7db;
    border-radius: 12px;
    background: #fff;
    color: #5f575f;
    font-size: 14px;
    line-height: 1.4;
}

.bulk-create-child-tabs-row .bulk-create-tab:hover,
.bulk-create-child-tabs-row .bulk-create-tab:focus-visible {
    border-color: #e89ab9;
    background: #fff8fa;
    color: var(--bulk-create-accent-dark);
}

.bulk-create-child-tabs-row .bulk-create-tab.is-active {
    border-color: #e76598;
    background: #fff5f8;
    color: var(--bulk-create-accent-dark);
}

.bulk-create-tab-pro-icon {
    width: var(--td-pro-icon-size);
    height: var(--td-pro-icon-size);
    margin-left: .25em;
    flex: 0 0 auto;
    vertical-align: -.1em;
    color: var(--td-pro-color);
    fill: currentColor;
}

.bulk-create-tab-pro-icon.is-locked {
    color: var(--td-pro-locked-color);
}

.bulk-create-template-section .bulk-create-tabs-scroll::after {
    background: linear-gradient(90deg, transparent, #fff);
}

.bulk-create-status {
    margin: 24px 0 0;
}

.bulk-create-status[hidden] {
    display: none;
}

.bulk-create-grid {
    grid-template-columns: repeat(var(--bulk-create-grid-columns, 4), minmax(0, 1fr));
    gap: 20px;
    margin-top: 14px;
}

.bulk-create-page-overview {
    max-width: 840px;
    margin: 24px 0 0;
    padding-top: 24px;
    border-top: 1px solid #ebe6e9;
}

.bulk-create-page-overview p {
    margin: 0;
    color: #6b7683;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
}

@media (max-width: 900px) {
    .bulk-create-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .bulk-create-controls {
        padding: 12px 0 14px;
    }

    a.bulk-create-tab {
        font-size: 13px;
    }

    .bulk-create-page[data-slot-count="2"] .bulk-create-inputs {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .bulk-create-template-section {
        padding-top: 18px;
    }

    .bulk-create-template-heading {
        margin-bottom: 10px;
    }

    .bulk-create-template-heading {
        font-size: 15px;
    }

    .bulk-create-page[data-has-category-tabs] .bulk-create-template-heading,
    .bulk-create-template-section .bulk-create-tabs-row + .bulk-create-template-heading {
        margin-top: 18px;
    }

    .bulk-create-template-section .bulk-create-tabs-row {
        margin-top: 0;
    }

    .bulk-create-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 10px;
    }

    .bulk-create-page-overview {
        margin-top: 16px;
        padding-top: 18px;
    }

    .bulk-create-page-overview p {
        font-size: 13px;
    }
}
