.g-flat-list {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;

    .g-flat-list-inner-wrapper {
        display: flex;
        flex-flow: column nowrap;
        flex: 1;
        max-height: 100%;
        will-change: transform;
        transition-timing-function: cubic-bezier(0, 0.89, 0.26, 1.02);
        transition-duration: 800ms;

        .g-flat-list-scrollable {
            display: flex;
            height: 100%;
            overflow: auto;
            overscroll-behavior: none;
            flex-flow: column nowrap;

            .g-flat-list-content {
                height: 100%;
            }
        }
    }
}
