.filter-docs {
    /* height: 50vh; */
    overflow-y: auto;
}

.close-filter,
.filter-mobile-btn {
    display: none;
}

.ts-control {
    min-height: 3rem;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

@media (max-width: 992px) {
    .filter-mobile {
        position: fixed;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(26, 32, 44, 0.51);
        display: flex;
        flex-direction: column;
        justify-content: end;
        z-index: 21;
        opacity: 0;
        display: none;
        transition: opacity 0.25s;
    }

    .filter-mobile > div {
        margin-bottom: 0;
        border-radius: 1rem 1rem 0 0;
        position: absolute;
        bottom: -100%;
        left: 0;
        right: 0;
        top: auto;
        transition: bottom 0.3s;
    }

    .filter-mobile .close-filter-div {
        display: flex;
        justify-content: space-between;
    }

    .close-filter {
        display: flex;
        width: 20px;
    }

    .filter-mobile-btn {
        display: flex;
        position: sticky;
        bottom: 2rem;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        z-index: 10;
    }

    .filter-mobile-btn button {
        width: 50%;
        background: #00b3f0;
        color: white;
        padding: 1rem 0;
        border-radius: 2rem;
        font-size: 1.25rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .filter-mobile-btn svg {
        width: 20px;
    }
}

@media (max-width: 400px) {
    .filter-mobile-btn button {
        width: 80%;
    }
}
