.documents-summary {
  &__filter {
        display:flex;
        flex-flow: wrap;
        justify-content: space-between;
        align-items: flex-end;
            .btn{
                margin-bottom: 20px;
            }
        .wrap{
            display: flex;
            align-items: flex-end;
            gap: 30px;
            @media (--viewport-xs-max) {
                width: 100%;
                gap: 4px;
                flex-direction: column;
                align-items: flex-start;
                .form-select{
                    width: 100%;
                }
                .btn{
                    justify-content: center;
                    width: 100%;
                }
            }
        }
        @media (--viewport-xs-max) {
            .content__btn {
                width: 100%;
                .btn {
                    width: 100%;
                    text-align: center;
                    justify-content: center;
                }
            }
        }
        .access-select-net {
            min-width: max-content;
        }
        
    }
    &__list {
        display: grid;
        grid-template-columns: 1fr 1fr;   
        gap: 30px;  
        @media (--viewport-xs-max) {
            display:flex;
            flex-flow:column;
        }   
        &__item {
            flex-basis: 100%;
        }
    }
    &__link {
        margin-top: 60px;
    }
}