.support-docs ul,
.support-docs ol {
    margin: 0;
}

.support-docs ul li,
.support-docs ol li {
    margin: 0;
    padding-left: 0;
    position: static;
}

.support-docs ul li::before,
.support-docs ul li:before,
.support-docs ol li::before,
.support-docs ol li:before {
    content: none !important;
    display: none !important;
}

.support-docs__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.support-docs__control {
    min-width: 260px;
    flex: 1 1 320px;
}

.support-docs__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.support-docs__input {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 10px 12px;
}

.support-docs__category {
    position: relative;
}

.support-docs__category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.support-docs__category-arrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #667085;
    border-bottom: 2px solid #667085;
    transform: rotate(45deg) translateY(-2px);
}

.support-docs__category-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}

.support-docs__category-option {
    width: 100%;
    display: block;
    border: 0;
    border-radius: 4px;
    padding: 10px 12px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.support-docs__category-option:hover,
.support-docs__category-option.is-active {
    background: #f2f4f7;
}

.support-docs__tree {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-docs__section {
    border: 1px solid #eaecf0;
    border-radius: 10px;
    background: #fff;
}

.support-docs__section--root {
    border-color: #d0d5dd;
}

.support-docs__section-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
}

.support-docs__toggle {
    width: 28px;
    height: 28px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #f9fafb;
    cursor: pointer;
    flex: 0 0 28px;
    position: relative;
}

.support-docs__toggle--placeholder {
    visibility: hidden;
}

.support-docs__toggle-icon::before,
.support-docs__toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: #344054;
    transform: translate(-50%, -50%);
}

.support-docs__toggle[aria-expanded="false"] .support-docs__toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.support-docs__section-title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.support-docs__section-title {
    margin: 0;
    font-size: calc(18px - var(--support-docs-depth, 0) * 1px);
}

.support-docs__section-description {
    margin-top: 6px;
    color: #475467;
    font-size: 14px;
}

.support-docs__section-body {
    padding: 0 16px 16px calc(16px + var(--support-docs-depth, 0) * 12px);
}

.support-docs__children {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.support-docs__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-docs__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 14px 16px;
    background: #fcfcfd;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
}

.support-docs__item--link {
    cursor: pointer;
}

.support-docs__item--link:hover,
.support-docs__item--link:focus-visible {
    border-color: #2563eb;
    background: #f6f9ff;
    box-shadow: 0 1px 4px rgba(37, 99, 235, .12);
    outline: none;
}

.support-docs__item-main {
    flex: 1 1 auto;
    min-width: 0;
}

.support-docs__name {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
}

.support-docs__item--link .support-docs__name {
    color: #1a1a1a;
}

.support-docs__item--link:hover .support-docs__name,
.support-docs__item--link:focus-visible .support-docs__name {
    color: #2563eb;
}

.support-docs__description {
    margin-top: 4px;
    color: #475467;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.support-docs__item-meta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.support-docs__file-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    background: #eef4ff;
    border-radius: 999px;
}

.support-docs__file-count-ico {
    display: inline-block;
    width: 14px;
    height: 16px;
    position: relative;
}

.support-docs__file-count-ico::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'><path d='M8 1v4h4l-4-4Zm5 4.5V14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5v4.5h6Z'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'><path d='M8 1v4h4l-4-4Zm5 4.5V14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5v4.5h6Z'/></svg>") no-repeat center / contain;
}

.support-docs__file-count--empty {
    color: #8a93a2;
    background: #f2f4f7;
}

.support-docs__item-arrow {
    font-size: 22px;
    line-height: 1;
    color: #98a2b3;
    transition: transform .15s ease, color .15s ease;
}

.support-docs__item--link:hover .support-docs__item-arrow,
.support-docs__item--link:focus-visible .support-docs__item-arrow {
    color: #2563eb;
    transform: translateX(3px);
}

.support-docs__empty {
    margin-top: 10px;
    color: #475467;
}

.support-docs__item[hidden],
.support-docs__section[hidden] {
    display: none !important;
}

@media (max-width: 640px) {
    .support-docs__item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 12px 14px;
    }

    .support-docs__item-main {
        flex: 1 1 100%;
    }

    .support-docs__item-meta {
        flex: 1 1 100%;
        justify-content: flex-end;
    }
}
