/* Purposefully empty, we shouldn't duplicate shared CSS */

@supports(position:sticky) {
    @media screen and (min-width : 1024px) {
        .FAFFilters---inner {
            margin-bottom: 32px;
            position: -webkit-sticky;
            position: sticky;
            top: 107px;
            max-height: calc(100vh - 139px);
            overflow: auto;
            padding-right: 3px;
        }

            .FAFFilters---inner::-webkit-scrollbar-track {
                border-radius: 5px;
                background-color: #F5F5F5;
            }

            .FAFFilters---inner::-webkit-scrollbar {
                width: 5px;
                background-color: #F5F5F5;
            }

            .FAFFilters---inner:hover::-webkit-scrollbar {
                background-color: aliceblue;
            }

            .FAFFilters---inner::-webkit-scrollbar-thumb {
                border-radius: 5px;
                background-color: #ccc;
            }
    }
}
  