.section-glossary {
    overflow: inherit;
    background: linear-gradient(0deg, #ffffff 0%, rgb(250 250 250 / 90%) 10%), url(../../images/section-faqs_help_center.png) center / cover no-repeat, white;
    padding-top: 64px;
    padding-bottom: 0;
    margin-bottom: 112px;
}

.glossary_title {
    text-align: center;
    margin-bottom: 16px;
}

.glossary_subtitle {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 48px;
}

.glossary-navigation {
    position: sticky;
    top: 73px;
    z-index: 1;
    left: calc(50% - 576px);
    width: calc(100vw - (50% - 576px));
}

.ar .glossary-navigation {
    left: inherit;
    right: calc(50% - 576px);
}

.sticky-nav-marker {
    position: relative;
    top: -100px;
    width: 100%;
    height: 1px;
    pointer-events: none;
    opacity: 0;
}

.glossary-navigation.is-sticky .glossary-letter {
    box-shadow: 0 0px 3px 5px #ffffff;
}

.scrollable-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #8d8d8d transparent;
}

.glossary-navigation_wrap {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.glossary-letter {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36.6px;
    width: 36.6px;
    height: 36.6px;
    color: #595959;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    border: 1px solid #F0F0F0;
    background: #FFF;
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.glossary-letter:hover,
.glossary-letter:focus {
    text-decoration: none;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}

.glossary-letter.active {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}

.glossary-letter.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.glossary-table {
    margin-top: 48px;
}

.glossary-item {
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0px 8px 16px -8px rgba(0, 0, 0, 0.10);
    padding: 24px;
}

.glossary-item:not(:last-child) {
    margin-bottom: 8px;
}

.glossary-term {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 16px;
}

.glossary-definition {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

@media (max-width: 1199px) {
    .section-glossary {
        padding-top: 56px;
        margin-bottom: 96px;
    }

    .glossary_subtitle {
        margin-bottom: 40px;
    }

    .glossary-navigation {
        width: 100%;
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 24px;
        padding-left: 24px;
        left: inherit;
    }

    .ar .glossary-navigation {
        right: inherit;
    }

    .glossary-navigation {
        top: 100px;
    }

    .glossary-letter {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }

    .glossary-table {
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .section-glossary {
        padding-top: 56px;
        margin-bottom: 88px;
    }

    .glossary_title {
        font-size: 44px;
        line-height: 48.4px;
    }

    .glossary-navigation {
        padding-right: 16px;
        padding-left: 16px;
    }

    .glossary-letter {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }
}