.def-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px; 
}

.def-search-filter {
    flex-basis: 505px;
}

.def-tax-filter {
    flex-basis: 365px;
}

.def-tax-filter {
    display: flex;
    gap: 24px;
    align-items: center;
}

.def-tax-filter label {
    white-space: nowrap;
    opacity: 0.5;
}

.alphabet-list {
    min-width: 100%;
    padding: 0;
    list-style: none;
    display: flex;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
    user-select: none;
    overflow-x: scroll;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
}
.alphabet-list::-webkit-scrollbar {
    display: none;
}

.alphabet-list li {
    display: flex;
    flex-grow: 1;
    aspect-ratio: 1 / 1;
    min-width: 32px;
    border: 1px solid rgba(227, 198, 255, 0.50);
    background-color: #fff;
    border-left: none;
    justify-content: center;
    align-items: center;
}

.alphabet-list li:first-child {
    border-radius: 10px 0 0 10px;
}

.alphabet-list li:last-child {
    border-radius: 0 10px 10px 0;
    border-left: 1px solid rgba(227, 198, 255, 0.50);
}

.alphabet-list li.disabled {
    opacity: 0.15;
}

.alphabet-list li:not(.disabled) {
    cursor: pointer;
}

.alphabet-list li.active {
    background: linear-gradient(180deg, #C099FF 0%, #9D6CFF 100%);
    font-weight: bold;
    color: #FFF;
}

.definitions-list {
    display: grid;
    grid-gap: 24px;
}

.letter {
    display: grid;
    grid-template-columns: 28px auto;
    padding: 32px;
    box-shadow: 0px 0px 50px 0px rgba(125, 23, 255, 0.07);
    border-radius: 60px;
    background: #FFF;
}

.letter ul {
    list-style: none;
    display: grid;
    grid-gap: 12px 24px;
    grid-template-columns: 1fr;
}

.letter p {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: var(--e-global-color-primary);
}

.letter a {
    color: var(--e-global-color-primary);
    text-decoration: underline;
}

.letter a:hover {
    color: var(--e-global-color-c22872a);
}

@media screen and (min-width: 768px) {
    .letter {
        padding: 32px 92px;
    } 
    .letter ul {
        grid-template-columns: 1fr 1fr;
    }
    .alphabet-list li:not(.disabled):hover {
        background: var(--e-global-color-c22872a);
        color: #FFF;
        font-weight: bold;
    }
}

@media screen and (min-width: 930px) {
    .def-filters {
        padding: 0 46px;;
    }
}

@media screen and (max-width: 929px) {
    .def-search-filter,
    .def-tax-filter,
    .def-alphabet-filter {
        padding: 0 24px;
    }
}